:root {
  --bg: #070b17;
  --bg-soft: #0e1330;
  --surface: rgba(16, 21, 45, 0.55);
  --surface-strong: rgba(18, 24, 52, 0.82);
  --surface-border: rgba(136, 190, 255, 0.18);
  --text: #eef4ff;
  --muted: #99a7d1;
  --cyan: #66f6ff;
  --blue: #3c74ff;
  --violet: #9657ff;
  --magenta: #ff4fd8;
  --lime: #8effca;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
  --radius: 26px;
  --section-width: min(1180px, calc(100vw - 2rem));
  --grid-line: rgba(255, 255, 255, 0.055);
  --spot-x: 50vw;
  --spot-y: 20vh;
  --header-height: 5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 15% 20%, rgba(102, 246, 255, 0.1), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(150, 87, 255, 0.16), transparent 23%),
    radial-gradient(circle at 70% 72%, rgba(255, 79, 216, 0.12), transparent 24%),
    linear-gradient(180deg, #050811 0%, #07101c 35%, #060911 100%);
  color: var(--text);
  font: 400 1rem/1.6 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle 18rem at var(--spot-x) var(--spot-y), rgba(102, 246, 255, 0.12), transparent 70%),
    radial-gradient(circle 20rem at calc(var(--spot-x) + 11rem) calc(var(--spot-y) + 10rem), rgba(255, 79, 216, 0.08), transparent 72%);
  z-index: 0;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  opacity: 0.55;
  z-index: 0;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.3) 0 0.7px, transparent 1px),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.18) 0 0.6px, transparent 1px),
    radial-gradient(circle at 40% 78%, rgba(255, 255, 255, 0.22) 0 0.7px, transparent 1px);
  background-size: 180px 180px, 220px 220px, 160px 160px;
  mix-blend-mode: screen;
  z-index: 1;
}

.cursor-glow,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 100;
}

.cursor-glow {
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(102, 246, 255, 0.18) 0%, rgba(150, 87, 255, 0.08) 38%, transparent 72%);
  filter: blur(10px);
  opacity: 0.9;
}

.cursor-ring {
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  mix-blend-mode: screen;
}

.glass {
  position: relative;
  background: linear-gradient(180deg, rgba(21, 27, 54, 0.62), rgba(11, 15, 30, 0.45));
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  box-shadow: var(--shadow);
}

.glass::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(255, 255, 255, 0.16), transparent 42%);
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.glass:hover::before,
.glass:focus-within::before {
  opacity: 1;
}

.site-header {
  position: sticky;
  top: 1rem;
  width: min(1100px, calc(100vw - 1rem));
  margin: 1rem auto 0;
  min-height: var(--header-height);
  padding: 1rem 1.25rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 20;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.brand-mark {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.95rem;
  background:
    linear-gradient(135deg, rgba(102, 246, 255, 0.95), rgba(150, 87, 255, 0.95) 52%, rgba(255, 79, 216, 0.95));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.18) inset,
    0 0 36px rgba(102, 246, 255, 0.35);
  position: relative;
}

.brand-mark::before,
.brand-mark::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 0.65rem;
  border: 1px solid rgba(255, 255, 255, 0.48);
}

.brand-mark::after {
  inset: auto 0.72rem 0.72rem auto;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.site-nav a {
  font-size: 0.92rem;
  color: var(--muted);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.15rem;
  height: 2px;
  margin: 0.28rem auto;
  background: white;
}

.section {
  position: relative;
  width: var(--section-width);
  margin: 0 auto;
  padding: 8rem 0;
  z-index: 2;
}

.hero {
  min-height: 100vh;
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2.25rem;
  padding-top: 4rem;
}

.hero-grid::before,
.hero-grid::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(22px);
  opacity: 0.6;
  pointer-events: none;
}

.hero-grid::before {
  width: 18rem;
  height: 18rem;
  top: 5rem;
  left: 0;
  background: radial-gradient(circle, rgba(102, 246, 255, 0.25), transparent 70%);
}

.hero-grid::after {
  width: 22rem;
  height: 22rem;
  right: 2rem;
  bottom: 7rem;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.2), transparent 70%);
}

.hero-copy,
.hero-visual,
.section-heading,
.promise-card,
.feature-card,
.included-panel,
.price-card,
.process-step,
.style-card,
.contact-form,
.contact-panel,
.panel-card {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
}

body.ready .hero-copy,
body.ready .hero-visual,
.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.eyebrow,
.mini-label {
  margin: 0;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero-title,
.section-heading h2,
.price-card h3,
.panel-card h3,
.feature-card h3,
.promise-card h3,
.process-step h3,
.style-copy h3 {
  margin: 0;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.hero-title {
  margin-top: 1rem;
  font-size: clamp(3.8rem, 9vw, 7.9rem);
}

.hero-title span {
  display: block;
  background: linear-gradient(90deg, #ffffff 0%, #8defff 20%, #c59dff 52%, #ff8ae7 82%, #ffffff 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradientShift 9s linear infinite;
}

.kinetic-lines span {
  opacity: 0;
  transform: translateY(24px);
  animation: lineIn 0.72s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.kinetic-lines span:nth-child(1) { animation-delay: 0.08s; }
.kinetic-lines span:nth-child(2) { animation-delay: 0.18s; }
.kinetic-lines span:nth-child(3) { animation-delay: 0.28s; }

.hero-subtitle {
  margin: 1.35rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  max-width: 40rem;
}

.glow-text {
  color: #dffcff;
  text-shadow:
    0 0 18px rgba(102, 246, 255, 0.22),
    0 0 34px rgba(150, 87, 255, 0.18);
}

.hero-text,
.section-heading p,
.price-copy,
.feature-card p,
.promise-card p,
.process-step p,
.style-copy p,
.panel-card p,
.contact-panel p,
.contact-form,
.site-footer,
.included-panel,
.contact-form label span {
  color: var(--muted);
}

.hero-text {
  max-width: 38rem;
  font-size: 1.03rem;
  margin-top: 1rem;
}

.hero-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.form-note {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.4rem;
  padding: 0.9rem 1.35rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  cursor: pointer;
  overflow: hidden;
  isolation: isolate;
}

.button::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 60%);
  z-index: -1;
}

.button-primary {
  color: #02111c;
  font-weight: 800;
  background: linear-gradient(90deg, var(--cyan), #91eeff 30%, #b885ff 64%, #ff7ae4);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.22) inset,
    0 14px 32px rgba(102, 246, 255, 0.22),
    0 12px 42px rgba(255, 79, 216, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  transform: translateY(-2px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.28) inset,
    0 18px 36px rgba(102, 246, 255, 0.3),
    0 16px 52px rgba(255, 79, 216, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(102, 246, 255, 0.44);
  background: rgba(102, 246, 255, 0.08);
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-stats li {
  min-width: 9rem;
  padding: 1rem 1.2rem;
  border-radius: 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.hero-stats strong {
  display: block;
  font-size: 1.15rem;
  color: var(--text);
}

.hero-stats span {
  font-size: 0.82rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hero-visual {
  position: relative;
  min-height: 40rem;
  display: grid;
  place-items: center;
}

.hero-stage {
  position: relative;
  width: min(36rem, 100%);
  aspect-ratio: 0.96;
  border-radius: 2.3rem;
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-stage-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(102, 246, 255, 0.13), rgba(150, 87, 255, 0.08), rgba(255, 79, 216, 0.12));
  background-size: 3rem 3rem, 3rem 3rem, 100% 100%;
  mask-image: radial-gradient(circle at center, black 45%, transparent 96%);
  opacity: 0.9;
}

.hero-card {
  position: absolute;
  border-radius: 1.8rem;
  padding: 1.2rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(9, 14, 31, 0.62);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.28);
}

.hero-card-front {
  top: 12%;
  right: 9%;
  width: 58%;
  transform: translateZ(2rem);
}

.hero-card-front h2 {
  margin: 0.8rem 0;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 0.95;
}

.hero-card-rear {
  left: 9%;
  bottom: 12%;
  width: 48%;
  transform: translateZ(1rem);
}

.hero-card p {
  margin: 0;
  color: #b8c2ea;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(8px);
  opacity: 0.9;
}

.orb-a {
  width: 7rem;
  height: 7rem;
  background: radial-gradient(circle, rgba(102, 246, 255, 0.9), transparent 72%);
  left: 2rem;
  top: 4rem;
}

.orb-b {
  width: 9rem;
  height: 9rem;
  background: radial-gradient(circle, rgba(255, 79, 216, 0.7), transparent 72%);
  right: 0;
  top: 9rem;
}

.orb-c {
  width: 11rem;
  height: 11rem;
  background: radial-gradient(circle, rgba(150, 87, 255, 0.68), transparent 72%);
  left: 4rem;
  bottom: 2rem;
}

.pulse-line {
  position: absolute;
  border-radius: 999px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(102, 246, 255, 0.84), rgba(255, 79, 216, 0.7), transparent);
  box-shadow: 0 0 18px rgba(102, 246, 255, 0.4);
}

.pulse-one {
  width: 52%;
  top: 28%;
  left: 8%;
  animation: pulseSlide 5.5s ease-in-out infinite;
}

.pulse-two {
  width: 34%;
  bottom: 30%;
  right: 7%;
  animation: pulseSlide 5.5s ease-in-out infinite reverse;
}

.section-heading {
  max-width: 48rem;
  margin-bottom: 2.2rem;
}

.section-heading h2 {
  margin-top: 0.7rem;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 0.98;
}

.section-heading p {
  margin-top: 1rem;
  max-width: 41rem;
  font-size: 1rem;
}

.promise-grid,
.pricing-grid,
.showcase-grid {
  display: grid;
  gap: 1.2rem;
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-card,
.feature-card,
.price-card,
.process-step,
.style-card,
.panel-card,
.contact-form,
.included-panel {
  border-radius: var(--radius);
}

.promise-card,
.price-card,
.process-step,
.panel-card,
.included-panel,
.feature-card,
.style-card {
  padding: 1.4rem;
}

.card-number,
.process-step span {
  display: inline-grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--cyan);
  font-weight: 700;
  font-size: 0.85rem;
}

.promise-card h3,
.feature-card h3,
.process-step h3,
.style-copy h3,
.panel-card h3 {
  margin-top: 1rem;
  font-size: 1.38rem;
  line-height: 1.05;
}

.included-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1.25rem;
}

.included-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  background:
    linear-gradient(135deg, rgba(102, 246, 255, 0.3), rgba(150, 87, 255, 0.4), rgba(255, 79, 216, 0.28));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.24),
    0 16px 32px rgba(102, 246, 255, 0.16);
}

.feature-icon-two {
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.32), rgba(60, 116, 255, 0.38));
}

.feature-icon-three {
  background: linear-gradient(135deg, rgba(142, 255, 202, 0.28), rgba(102, 246, 255, 0.34));
}

.included-panel h3,
.price-card h3 {
  margin-top: 0.7rem;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.check-list,
.stack-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.check-list li,
.stack-list li {
  position: relative;
  padding-left: 1.45rem;
  color: #d9e3ff;
}

.check-list li::before,
.stack-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.52rem;
  height: 0.52rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--magenta));
  box-shadow: 0 0 14px rgba(102, 246, 255, 0.45);
}

.compact {
  gap: 0.65rem;
}

.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.price-card.featured {
  background:
    linear-gradient(180deg, rgba(28, 35, 78, 0.78), rgba(14, 17, 37, 0.6)),
    radial-gradient(circle at top right, rgba(102, 246, 255, 0.18), transparent 42%);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.style-card {
  overflow: hidden;
}

.style-visual {
  position: relative;
  min-height: 16rem;
  border-radius: 1.35rem;
  background: linear-gradient(135deg, rgba(12, 18, 44, 0.85), rgba(25, 18, 58, 0.7));
  overflow: hidden;
}

.style-visual::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: conic-gradient(from 0deg, rgba(102, 246, 255, 0.12), rgba(150, 87, 255, 0.18), rgba(255, 79, 216, 0.12), rgba(102, 246, 255, 0.12));
  animation: rotateSlow 12s linear infinite;
}

.style-layer {
  position: absolute;
  inset: 18% 16%;
  border-radius: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(102, 246, 255, 0.22), rgba(60, 116, 255, 0.16));
  transform: rotate(-8deg) translateZ(0);
}

.style-layer.secondary {
  inset: 28% 22%;
  background: linear-gradient(135deg, rgba(255, 79, 216, 0.22), rgba(150, 87, 255, 0.16));
  transform: rotate(11deg) translateZ(0);
}

.floating-chip {
  position: absolute;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: drift 7s ease-in-out infinite;
}

.floating-chip:nth-child(1) { left: 12%; top: 18%; }
.floating-chip:nth-child(2) { right: 14%; top: 36%; animation-delay: -1.6s; }
.floating-chip:nth-child(3) { left: 26%; bottom: 18%; animation-delay: -3.2s; }

.style-visual-three {
  display: grid;
  place-items: center;
}

.style-visual-three svg {
  width: 86%;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 18px rgba(102, 246, 255, 0.22));
}

.style-copy {
  margin-top: 1rem;
}

.contact-layout {
  align-items: start;
}

.contact-form {
  padding: 1.4rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.55rem;
  margin-top: 1rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  padding: 0.95rem 1rem;
  appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #7f8caf;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(102, 246, 255, 0.48);
  box-shadow: 0 0 0 4px rgba(102, 246, 255, 0.08);
  outline: none;
}

.checkbox-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.8rem;
}

.checkbox-row input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  padding: 0;
  appearance: auto;
  accent-color: var(--cyan);
  cursor: pointer;
  border-radius: 0.3rem;
  background: transparent;
  box-shadow: none;
}

.form-status {
  min-height: 1.5rem;
  margin-top: 1rem;
  color: #cfe4ff;
}

.form-status.error {
  color: #ff93d0;
}

.form-status.success {
  color: #9dffd3;
}

.contact-panel {
  display: grid;
  gap: 1rem;
}

.panel-card.accent {
  background:
    linear-gradient(180deg, rgba(18, 27, 62, 0.78), rgba(13, 16, 32, 0.6)),
    radial-gradient(circle at top, rgba(255, 79, 216, 0.18), transparent 48%);
}

.site-footer {
  width: var(--section-width);
  margin: 0 auto;
  padding: 0 0 3rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.footer-link {
  color: var(--cyan);
}

.magnetic {
  will-change: transform;
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt] > * {
  transform: translateZ(22px);
}

.reveal {
  will-change: transform, opacity;
}

.floating,
.drifting {
  animation: drift 9s ease-in-out infinite;
}

.orb-b.drifting { animation-delay: -2.6s; }
.orb-c.drifting { animation-delay: -4.8s; }

@supports (animation-timeline: view()) {
  .reveal {
    opacity: 1;
    transform: none;
    animation: sectionEnter linear both;
    animation-timeline: view();
    animation-range: entry 15% cover 40%;
  }

  .style-card .style-visual::before {
    animation-timeline: view();
    animation-range: entry 0% cover 100%;
  }
}

@keyframes lineIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 220% 50%; }
}

@keyframes drift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -16px, 0); }
}

@keyframes rotateSlow {
  to { transform: rotate(360deg); }
}

@keyframes pulseSlide {
  0%, 100% { transform: translateX(-8%) scaleX(0.92); opacity: 0.65; }
  50% { transform: translateX(8%) scaleX(1); opacity: 1; }
}

@keyframes sectionEnter {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 1024px) {
  .hero,
  .included-layout,
  .contact-layout,
  .pricing-grid,
  .showcase-grid,
  .promise-grid,
  .process-track {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding-top: 7rem;
  }

  .included-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 30rem;
  }
}

@media (max-width: 820px) {
  .site-header {
    border-radius: 1.5rem;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 0.5rem;
  }

  .site-nav.open {
    display: flex;
  }

  .hero,
  .included-layout,
  .contact-layout,
  .pricing-grid,
  .showcase-grid,
  .promise-grid,
  .process-track,
  .field-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 8.2rem;
  }

  .hero-stage {
    width: min(100%, 30rem);
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  :root {
    --section-width: min(1180px, calc(100vw - 1.2rem));
  }

  .site-header {
    top: 0.6rem;
    margin-top: 0.6rem;
    padding: 0.9rem 1rem;
  }

  .section {
    padding: 6rem 0;
  }

  .hero-title {
    font-size: clamp(3rem, 16vw, 4.6rem);
  }

  .button,
  .hero-stats li,
  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100%;
  }

  .hero-actions,
  .form-actions {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .cursor-glow,
  .cursor-ring {
    display: none;
  }

  [data-tilt],
  .magnetic {
    transform: none !important;
  }
}

.hero-flash-grid,
.marquee-band,
.pricing-ribbon,
.hero-badge,
.live-meter {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
}

body.ready .hero-flash-grid,
body.ready .marquee-band,
body.ready .hero-badge,
body.ready .live-meter,
.pricing-ribbon.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
  transition:
    opacity 720ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 720ms cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-flash-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  margin-top: 1.4rem;
}

.flash-card {
  padding: 1rem 1rem 1.1rem;
  border-radius: 1.1rem;
  min-height: 100%;
}

.flash-kicker {
  display: inline-flex;
  margin-bottom: 0.55rem;
  padding: 0.22rem 0.65rem;
  border-radius: 999px;
  background: rgba(102, 246, 255, 0.1);
  color: var(--cyan);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.flash-card strong {
  display: block;
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.flash-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.marquee-band {
  position: relative;
  overflow: hidden;
  margin-top: 1.2rem;
  border-radius: 999px;
  padding: 0.95rem 0;
}

.marquee-band::before,
.marquee-band::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 5rem;
  z-index: 1;
  pointer-events: none;
}

.marquee-band::before {
  left: 0;
  background: linear-gradient(90deg, rgba(7, 11, 23, 0.98), transparent);
}

.marquee-band::after {
  right: 0;
  background: linear-gradient(270deg, rgba(7, 11, 23, 0.98), transparent);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: max-content;
  padding-inline: 1rem;
  animation: marqueeSlide 18s linear infinite;
}

.marquee-track span {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.72rem;
  color: #d9e7ff;
}

.marquee-track span::before {
  content: "✦";
  color: var(--magenta);
}

.hero-visual {
  position: relative;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  padding: 0.65rem 0.95rem;
  border-radius: 999px;
  color: #f6fbff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: rgba(14, 19, 48, 0.78);
}

.hero-badge-top {
  top: 3.4rem;
  right: -0.5rem;
  animation-delay: -1.2s;
}

.hero-badge-bottom {
  left: -0.75rem;
  bottom: 3rem;
  animation-delay: -3.4s;
}

.hero-spark {
  position: absolute;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255,255,255,0.95), rgba(102,246,255,0.5) 45%, transparent 72%);
  box-shadow: 0 0 28px rgba(102, 246, 255, 0.5);
  animation: sparkPulse 3.6s ease-in-out infinite;
}

.hero-spark-one { top: 18%; right: 16%; }
.hero-spark-two { top: 44%; right: 28%; animation-delay: -1.2s; }
.hero-spark-three { bottom: 18%; left: 18%; animation-delay: -2.1s; }

.live-meter {
  position: absolute;
  left: 1.25rem;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 3;
  padding: 0.95rem 1rem;
  border-radius: 1rem;
  background: rgba(9, 13, 28, 0.74);
}

.meter-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan);
}

.meter-bar {
  margin-top: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.meter-bar span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--magenta));
  background-size: 180% 100%;
  animation: gradientShift 5s linear infinite;
  box-shadow: 0 0 22px rgba(102, 246, 255, 0.35);
}

.meter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.meter-tags span,
.ribbon-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ebf4ff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.pricing-ribbon {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.3rem 0 2rem;
  padding: 1rem 1.15rem;
  border-radius: 1.2rem;
}

.ribbon-pill {
  background: linear-gradient(135deg, rgba(102, 246, 255, 0.22), rgba(255, 79, 216, 0.22));
  color: #fff;
  font-weight: 800;
}

.ribbon-copy {
  color: #d7e5ff;
  letter-spacing: 0.04em;
}

@keyframes marqueeSlide {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@keyframes sparkPulse {
  0%, 100% { transform: scale(0.75); opacity: 0.45; }
  50% { transform: scale(1.2); opacity: 1; }
}

@media (max-width: 980px) {
  .hero-flash-grid {
    grid-template-columns: 1fr;
  }

  .hero-badge-top {
    right: 0.2rem;
    top: 1rem;
  }

  .hero-badge-bottom {
    left: 0.2rem;
    bottom: 1rem;
  }

  .pricing-ribbon {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 720px) {
  .marquee-band {
    margin-top: 1rem;
  }

  .hero-badge {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .live-meter {
    position: relative;
    inset: auto;
    margin-top: 11rem;
  }
}
