/* =========================================================
   Elektron Labs — global stylesheet
   Sections:
     1. Reset & base
     2. Design tokens (custom properties)
     3. Background layers (grid + orbs)
     4. Typography utilities
     5. Layout primitives (container, sections)
     6. Buttons
     7. Cards (glass + variants)
     8. Navigation
     9. Hero
    10. Section components (services, packages, AI/API, process, etc.)
    11. Forms
    12. Footer
    13. Reveal animations
    14. Responsive
    15. Reduced motion
   ========================================================= */

/* 1. Reset --------------------------------------------------*/
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; min-height: 100vh; font-family: var(--font-sans); color: var(--text); background: var(--bg-0); line-height: 1.55; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, svg { max-width: 100%; display: block; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
input, select, textarea, button { font-family: inherit; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

/* 2. Tokens -------------------------------------------------*/
:root {
  --bg-0: #07070d;
  --bg-1: #0b1024;
  --bg-2: #11173a;
  --electric: #2b6cff;
  --cyan: #22d3ee;
  --purple: #8b5cf6;
  --magenta: #e879f9;
  --text: #e7ecff;
  --text-dim: #9aa3c7;
  --text-mute: #6b75a3;
  --border: rgba(123, 162, 255, 0.18);
  --border-strong: rgba(123, 162, 255, 0.32);
  --surface: rgba(15, 22, 56, 0.55);
  --surface-strong: rgba(20, 28, 70, 0.78);

  --grad-primary: linear-gradient(120deg, #2b6cff 0%, #22d3ee 35%, #8b5cf6 70%, #e879f9 100%);
  --grad-soft: linear-gradient(120deg, rgba(43,108,255,.18), rgba(34,211,238,.18), rgba(139,92,246,.18), rgba(232,121,249,.18));

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --glow-cyan: 0 0 24px rgba(34,211,238,.35);
  --glow-magenta: 0 0 28px rgba(232,121,249,.4);
  --glow-soft: 0 10px 40px -10px rgba(43, 108, 255, 0.45);

  --font-sans: "Inter", "Space Grotesk", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, SFMono-Regular, Menlo, monospace;

  --container: 1180px;
  --section-y: clamp(64px, 9vw, 128px);
}

/* 3. Background layers --------------------------------------*/
body::before,
body::after { content: ""; position: fixed; inset: 0; pointer-events: none; z-index: -2; }
body::before {
  background:
    radial-gradient(1100px 700px at 80% -10%, rgba(34,211,238,.18), transparent 60%),
    radial-gradient(1000px 800px at -10% 110%, rgba(139,92,246,.22), transparent 60%),
    radial-gradient(700px 500px at 50% 130%, rgba(232,121,249,.18), transparent 65%),
    linear-gradient(180deg, var(--bg-0) 0%, #050811 40%, var(--bg-1) 100%);
}
body::after {
  background-image:
    linear-gradient(rgba(123,162,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123,162,255,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
}

/* floating light orbs ----- */
.orbs { position: fixed; inset: 0; pointer-events: none; z-index: -1; overflow: hidden; }
.orb { position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; will-change: transform; }
.orb.cyan    { width: 520px; height: 520px; background: radial-gradient(circle, #22d3ee 0%, transparent 60%); top: -120px; right: -80px; animation: drift-a 18s ease-in-out infinite alternate; }
.orb.purple  { width: 620px; height: 620px; background: radial-gradient(circle, #8b5cf6 0%, transparent 60%); bottom: -220px; left: -160px; animation: drift-b 22s ease-in-out infinite alternate; }
.orb.magenta { width: 380px; height: 380px; background: radial-gradient(circle, #e879f9 0%, transparent 60%); top: 40%; left: 50%; transform: translate(-50%, -20%); animation: drift-c 26s ease-in-out infinite alternate; opacity: .35; }

@keyframes drift-a { from { transform: translate(0, 0) scale(1); } to { transform: translate(-40px, 60px) scale(1.08); } }
@keyframes drift-b { from { transform: translate(0, 0) scale(1); } to { transform: translate(60px, -50px) scale(1.05); } }
@keyframes drift-c { from { transform: translate(-50%, -20%) scale(1); } to { transform: translate(-45%, -10%) scale(1.1); } }

/* 4. Typography utilities -----------------------------------*/
h1, h2, h3, h4 { font-family: var(--font-sans); font-weight: 700; letter-spacing: -0.02em; line-height: 1.1; margin: 0 0 .4em; color: var(--text); }
h1 { font-size: clamp(2.4rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.4vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 1.6vw, 1.4rem); }
p  { color: var(--text-dim); margin: 0 0 1em; }
.gradient-text { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: var(--font-mono); font-size: .98rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); padding: 8px 20px; border: 1px solid transparent; border-radius: 999px; background: none; }
/* .section-eyebrow::before removed */

@keyframes osc-border {
  0%   { border-color: #2b6cff; box-shadow: 0 0 8px #2b6cff66, inset 0 0 8px #2b6cff11; }
  25%  { border-color: #22d3ee; box-shadow: 0 0 12px #22d3ee88, inset 0 0 10px #22d3ee18; }
  50%  { border-color: #8b5cf6; box-shadow: 0 0 8px #8b5cf666, inset 0 0 8px #8b5cf611; }
  75%  { border-color: #e879f9; box-shadow: 0 0 12px #e879f988, inset 0 0 10px #e879f918; }
  100% { border-color: #2b6cff; box-shadow: 0 0 8px #2b6cff66, inset 0 0 8px #2b6cff11; }
}
.section-title { margin-top: 18px; }
.stacked-head { display: inline-flex; flex-direction: column; align-items: stretch; line-height: 1.05; }
.stacked-head .stack-top { white-space: nowrap; }
.stacked-head .stack-bottom { display: flex; justify-content: space-between; font-size: 1.22em; }
.section-head.who-section { max-width: none; margin-bottom: 18px; }
.who-head { margin-bottom: 0; }
.who-head .combined-head-right .section-lead { max-width: none; }
.section-lead { font-size: clamp(1rem, 1.2vw, 1.12rem); color: var(--text-dim); max-width: 62ch; }
.text-center { text-align: center; }
.center { margin-inline: auto; }
.muted { color: var(--text-mute); }

/* 5. Layout -------------------------------------------------*/
.container { width: min(var(--container), 100% - 40px); margin-inline: auto; }
section { padding-block: var(--section-y); position: relative; }
#what { padding-top: clamp(20px, 3vw, 48px); padding-bottom: clamp(20px, 3vw, 40px); }
.section-head { max-width: 780px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head.center .section-lead { margin-inline: auto; }

/* 6. Buttons ------------------------------------------------*/
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 14px 24px; border-radius: 999px; font-weight: 600; font-size: .98rem; letter-spacing: .01em; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease; white-space: nowrap; }
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  position: relative;
  color: var(--text);
  background: rgba(7, 7, 13, 0.6);
  border: 1px solid transparent;
  background-clip: padding-box;
  box-shadow: 0 0 0 0 rgba(34,211,238,0);
  isolation: isolate;
}
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: var(--grad-primary);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 1;
}
.btn-primary:hover {
  box-shadow:
    0 0 18px rgba(34,211,238,.45),
    0 0 32px rgba(139,92,246,.35),
    0 0 50px rgba(232,121,249,.25);
}
.btn-ghost { color: var(--text); background: rgba(255,255,255,.02); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn-ghost:hover { border-color: var(--cyan); box-shadow: var(--glow-cyan); }
.btn-arrow::after { content: "→"; transition: transform .25s ease; }
.btn-arrow:hover::after { transform: translateX(4px); }
.btn-block { width: 100%; }

/* Whole CTA card is a button */
.cta-card {
  display: block;
  cursor: pointer;
  text-decoration: none;
  transition: transform .35s ease, box-shadow .35s ease;
}
/* Make the whole card border look like the little gradient button */
.cta-card.cta-strip::before {
  padding: 2px;
  opacity: 1;
  background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #2b6cff, #22d3ee);
  background-size: 300% 300%;
  animation: chip-border-flow 5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
}
.cta-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 30px rgba(34,211,238,.4),
    0 0 60px rgba(139,92,246,.3),
    0 24px 60px rgba(0,0,0,.45);
}
.cta-card-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
  background: rgba(7,7,13,.5);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-card-action::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #2b6cff, #22d3ee);
  background-size: 300% 300%;
  animation: chip-border-flow 5s ease-in-out infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  z-index: -1;
}
.cta-card:hover .cta-card-action::after { transform: translateX(5px); }

/* 7. Cards (glass) ------------------------------------------*/
.glass {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 28px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, background .35s ease;
}
.glass::before {
  content: ""; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad-primary); opacity: .0;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  transition: opacity .35s ease;
  pointer-events: none;
}
.glass:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: 0 30px 60px -30px rgba(0,0,0,.55); }
.glass:hover::before { opacity: .55; }

.card-icon {
  width: 46px; height: 46px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(43,108,255,.25), rgba(232,121,249,.25));
  border: 1px solid var(--border-strong);
  color: var(--cyan);
  margin-bottom: 18px;
  box-shadow: inset 0 0 18px rgba(34,211,238,.25);
}
.card-title { font-size: 1.18rem; margin-bottom: 8px; }
.card-text { color: var(--text-dim); font-size: .98rem; margin: 0; }

/* Card grid utility */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

/* 8. Navigation ---------------------------------------------*/
.site-nav {
  position: sticky; top: 0; z-index: 50;
  padding: 14px 0;
  transition: background .3s ease, backdrop-filter .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.site-nav.scrolled { background: rgba(7, 7, 13, 0.75); backdrop-filter: blur(14px); border-bottom-color: var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: center; gap: 24px; }
.nav-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 700; letter-spacing: .02em; padding: 8px 12px; text-decoration: none; }
.nav-brand img { width: 64px; flex-shrink: 0; }
.brand-wordmark { font-family: var(--font-sans); font-size: 1.1rem; font-weight: 800; letter-spacing: .06em; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; white-space: nowrap; }
.nav-brand-name { font-size: 1.02rem; }
.nav-brand-name .dot { color: var(--cyan); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a { padding: 10px 14px; border-radius: 999px; color: var(--text-dim); font-size: .94rem; font-weight: 500; transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--text); background: rgba(255,255,255,.04); }
.nav-links a.active { color: var(--text); background: rgba(34,211,238,.08); box-shadow: inset 0 0 0 1px var(--border-strong); }
.nav-cta { display: inline-flex; }
.nav-toggle { display: none; background: transparent; border: 1px solid var(--border-strong); width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--text); }
.nav-toggle span { display: block; width: 18px; height: 2px; background: currentColor; position: relative; border-radius: 2px; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: currentColor; border-radius: 2px; transition: transform .25s ease, top .25s ease; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top:  6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* 9. Hero ---------------------------------------------------*/
.hero { padding-block: clamp(56px, 8vw, 110px) clamp(20px, 2vw, 36px); }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 56px; align-items: center; }
.hero-eyebrow { margin-bottom: 22px; }
.hero h1 { margin-bottom: 22px; }
.hero .lead { font-size: clamp(1.05rem, 1.3vw, 1.18rem); color: var(--text-dim); max-width: 56ch; margin-bottom: 18px; }
.hero .para { color: var(--text-mute); margin-bottom: 32px; max-width: 58ch; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-meta { display: flex; gap: 28px; margin-top: 38px; flex-wrap: wrap; color: var(--text-mute); font-size: .88rem; }
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* Logo + blob stage */
.hero-stage { position: relative; aspect-ratio: 1 / 1; display: grid; place-items: center; width: min(100%, clamp(280px, 32vw, 400px)); justify-self: center; }
.hero-stage canvas { position: absolute; inset: 0; width: 100%; height: 100%; border: none; outline: none; background: transparent; mask-image: radial-gradient(circle, black 55%, transparent 75%); -webkit-mask-image: radial-gradient(circle, black 55%, transparent 75%); }
.hero-logo-wrap { position: relative; z-index: 2; width: 48%; aspect-ratio: 1/1; display: grid; place-items: center; padding: 18px; border-radius: 50%; background: radial-gradient(circle at center, rgba(7,7,13,.85), rgba(7,7,13,.4) 70%, transparent 100%); }
.hero-logo-wrap img { width: 110%; height: auto; filter: drop-shadow(0 0 18px rgba(34,211,238,.45)); }
.hero-wordmark { position: absolute; bottom: 6%; left: 0; right: 0; text-align: center; font-family: var(--font-mono); font-size: .82rem; letter-spacing: .42em; color: var(--text-dim); text-transform: uppercase; }
.hero-wordmark strong { color: var(--text); font-weight: 600; letter-spacing: .32em; }

/* 10. Section blocks ----------------------------------------*/

/* Services / generic feature grids handled by .grid + .glass */

/* Services Timeline */
.services-timeline { position: relative; margin-top: 48px; margin-left: -30px; margin-right: 30px; }
#timeline-line { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }
.timeline-steps { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; z-index: 1; }
.timeline-step { text-align: center; padding: 0 16px; }
.step-circle { width: 112px; height: 112px; border-radius: 50%; border: 1.5px solid; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.step-circle svg { width: 42px; height: 42px; }
.step-num { display: none; }
.step-title { font-size: 1.08rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.step-desc { font-size: .87rem; color: var(--text-dim); line-height: 1.65; }

/* Pricing / packages */
.packages-grid { display: grid; gap: 24px; grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
.package { display: flex; flex-direction: column; padding: 32px; }
.package h3 { font-size: 1.35rem; margin-bottom: 6px; }
.package .tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .22em; color: var(--cyan); text-transform: uppercase; }
.package .desc { color: var(--text-dim); margin: 14px 0 22px; }
.package ul { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.package ul li { display: flex; gap: 10px; align-items: flex-start; color: var(--text-dim); font-size: .96rem; }
.package ul li::before { content: ""; flex: 0 0 18px; height: 18px; margin-top: 3px; border-radius: 50%; background: var(--grad-primary); opacity: .9; -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat; mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/14px no-repeat; }
.package .btn { margin-top: auto; }
.package.featured {
  background: linear-gradient(180deg, rgba(232,121,249,.10), rgba(34,211,238,.06)), var(--surface-strong);
  box-shadow: 0 30px 60px -30px rgba(232,121,249,.45), inset 0 0 0 1px rgba(232,121,249,.25);
}
.package.featured::before { opacity: .9; }
.package .badge { position: absolute; top: -14px; right: 24px; padding: 6px 14px; border-radius: 999px; background: var(--grad-primary); color: #0a0d20; font-size: .76rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; box-shadow: var(--glow-magenta); }

/* ===== Pricing page (revamped) ============================ */
.packages-hero { padding-top: clamp(28px, 4vw, 52px); padding-bottom: clamp(40px, 6vw, 72px); }
.packages-hero-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 0.75fr); gap: clamp(24px, 3vw, 44px); align-items: stretch; }
.packages-hero .section-head { display: flex; flex-direction: column; }
.packages-hero .section-head > .section-eyebrow { align-self: flex-start; }
.hero-explain { display: grid; gap: 12px; }
.hero-explain .explain-card { padding: 14px 16px; }
.hero-explain .explain-card h3 { font-size: .92rem; margin: 8px 0 6px; }
.hero-explain .explain-card > p { font-size: .76rem; margin-bottom: 10px; line-height: 1.45; }
.hero-explain .explain-list { gap: 6px; }
.hero-explain .explain-list li { font-size: .74rem; padding-left: 18px; line-height: 1.4; }
.hero-explain .explain-list li::before { top: 6px; width: 6px; height: 6px; }
.hero-explain .explain-note { font-size: .68rem; padding-top: 8px; line-height: 1.45; }
.hero-explain .section-eyebrow { font-size: .78rem; }

/* Compact provide card inside hero left column */
.packages-hero .provide-card { margin-top: 26px; padding: 18px 20px; display: flex; flex-direction: column; flex: 1 1 auto; }
.packages-hero .provide-card .section-eyebrow { display: block; font-size: .78rem; margin-bottom: 14px; }
.packages-hero .provide-list { gap: 8px 22px; margin: 0 0 16px; }
.packages-hero .provide-list li { font-size: .82rem; padding-left: 20px; }
.packages-hero .provide-list li::before { top: 4px; width: 12px; height: 12px; }
.packages-hero .provide-note { margin-top: auto; padding: 12px 14px; font-size: .76rem; line-height: 1.5; }

.pricing-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}
.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px;
}
.price-card .price-head { min-height: 70px; }
.price-card .tag { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; color: var(--cyan); text-transform: uppercase; }
.price-best { color: var(--text-dim); font-size: .9rem; margin: 8px 0 0; line-height: 1.5; }

.price-amounts { margin: 18px 0 20px; padding: 18px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.price-build { display: flex; align-items: baseline; gap: 8px; }
.price-num { font-size: 1.9rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; line-height: 1; }
.price-num.price-quote { font-size: 1.45rem; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }
.price-unit { font-size: .8rem; color: var(--text-mute); text-transform: uppercase; letter-spacing: .08em; }
.price-care { margin-top: 8px; font-size: 1.02rem; font-weight: 600; color: var(--cyan); }
.price-care span { font-size: .82rem; font-weight: 400; color: var(--text-mute); }
.price-deposit { margin-top: 10px; font-size: .85rem; color: var(--text-dim); }

.price-feats { display: grid; gap: 11px; margin: 0 0 20px; flex: 1; }
.price-feats li { position: relative; padding-left: 24px; color: var(--text-dim); font-size: .9rem; line-height: 1.5; }
.price-feats li strong { color: var(--text); font-weight: 600; }
.price-feats li::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-primary); opacity: .9;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
}
.price-exclude { margin: 0 0 22px; padding: 12px 14px; border-radius: var(--radius-md); background: rgba(123,162,255,.05); border: 1px solid var(--border); }
.price-exclude span { display: block; font-family: var(--font-mono); font-size: .66rem; letter-spacing: .18em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 5px; }
.price-exclude p { margin: 0; font-size: .82rem; color: var(--text-dim); line-height: 1.5; }
.price-card .btn { margin-top: auto; }

/* Featured (Most Popular) */
.price-card.featured {
  background: linear-gradient(180deg, rgba(232,121,249,.10), rgba(34,211,238,.06)), var(--surface-strong);
  box-shadow: 0 30px 60px -30px rgba(232,121,249,.45);
}
.price-card.featured::before {
  opacity: 1;
  padding: 1.5px;
  background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #2b6cff, #22d3ee);
  background-size: 300% 300%;
  animation: chip-border-flow 6s ease-in-out infinite;
}
.price-card .badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 6px 16px; border-radius: 999px; background: var(--grad-primary);
  color: #0a0d20; font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  box-shadow: var(--glow-magenta); white-space: nowrap;
}
.price-card.premium::before { opacity: .55; background: linear-gradient(120deg, var(--purple), var(--electric)); }
.price-card.custom { background: linear-gradient(180deg, rgba(34,211,238,.08), rgba(43,108,255,.04)), var(--surface); }
.price-card.custom::before { opacity: .5; background: linear-gradient(120deg, var(--cyan), var(--electric)); }

.price-disclaimer { margin: 26px auto 0; max-width: 80ch; text-align: center; font-size: .82rem; color: var(--text-mute); line-height: 1.6; }

/* Comparison table */
.compare-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.pricing-section { padding-bottom: clamp(20px, 3vw, 36px); }
.section-divider { margin: clamp(28px, 4vw, 48px) 0 0; }
.compare-section { padding-top: clamp(14px, 2.2vw, 28px); padding-bottom: clamp(20px, 3vw, 36px); }
.addons-section { padding-top: clamp(14px, 2.2vw, 28px); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 560px; background: var(--surface); }
.compare-table th, .compare-table td { padding: 14px 16px; text-align: center; font-size: .9rem; border-bottom: 1px solid var(--border); }
.compare-table thead th { font-size: .82rem; letter-spacing: .04em; color: var(--text); font-weight: 700; background: rgba(20,28,70,.6); position: sticky; top: 0; }
.compare-table tbody th[scope="row"] { text-align: left; color: var(--text-dim); font-weight: 500; font-size: .86rem; }
.compare-table td { color: var(--text-dim); }
.compare-table td.yes { color: var(--text); }
.compare-table td.no { color: var(--text-mute); }
.compare-table .is-popular { background: rgba(232,121,249,.07); color: var(--text); }
.compare-table thead th.is-popular { color: var(--magenta); }
.compare-table tbody tr:hover td, .compare-table tbody tr:hover th { background: rgba(123,162,255,.05); }
.compare-table tbody tr:hover .is-popular { background: rgba(232,121,249,.1); }
.compare-table tr:last-child th, .compare-table tr:last-child td { border-bottom: none; }

/* Explain cards (revisions / care plan) */
.explain-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.explain-card { padding: 30px; }
.explain-card h3 { font-size: 1.3rem; margin: 14px 0 10px; }
.explain-card > p { color: var(--text-dim); margin-bottom: 16px; }
.explain-list { display: grid; gap: 12px; margin: 0 0 16px; }
.explain-list li { position: relative; padding-left: 22px; color: var(--text-dim); font-size: .92rem; line-height: 1.55; }
.explain-list li strong { color: var(--text); }
.explain-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad-primary); }
.explain-note { margin: 0; padding-top: 14px; border-top: 1px solid var(--border); font-size: .84rem; color: var(--text-mute); line-height: 1.6; }

/* What you'll need to provide */
.provide-card { padding: 32px; }
.provide-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 28px; margin: 0 0 24px; }
.provide-list li { position: relative; padding-left: 24px; color: var(--text-dim); font-size: .95rem; }
.provide-list li::before {
  content: ""; position: absolute; left: 0; top: 5px; width: 14px; height: 14px; border-radius: 50%;
  background: var(--grad-primary); opacity: .9;
  -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
          mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/11px no-repeat;
}
.provide-note { margin: 0; padding: 16px 18px; border-radius: var(--radius-md); background: rgba(232,121,249,.06); border: 1px solid rgba(232,121,249,.25); font-size: .9rem; color: var(--text-dim); line-height: 1.6; }
.provide-note strong { color: var(--text); }

/* Add-ons */
.addons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.addon { display: flex; align-items: center; justify-content: flex-start; gap: 14px; padding: 18px 20px; }
.addon-name { color: var(--text-dim); font-size: .92rem; }
.addon-price { font-weight: 700; color: var(--text); font-size: 1.05rem; white-space: nowrap; }
.addon-price small { display: block; font-weight: 400; font-size: .68rem; color: var(--text-mute); text-align: right; }



/* Local businesses chip grid */
.chips { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.chip {
  position: relative;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(15,22,56,.45);
  color: var(--text-dim);
  font-size: .92rem;
  overflow: hidden;
  isolation: isolate;
  transition: color .25s, background .25s, box-shadow .35s, transform .35s;
}
/* Animated gradient border */
.chip::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #2b6cff, #22d3ee);
  background-size: 300% 300%;
  animation: chip-border-flow 6s ease-in-out infinite;
  animation-delay: var(--d, 0s);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: .45;
  transition: opacity .35s;
  z-index: -1;
}
/* Shine sweep */
.chip::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 70%;
  height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.18), transparent);
  transform: skewX(-18deg);
  transition: left .6s ease;
  z-index: -1;
}
.chip:hover {
  color: var(--text);
  background: rgba(34,211,238,.08);
  box-shadow: var(--glow-cyan);
  transform: translateY(-3px);
}
.chip:hover::before { opacity: 1; }
.chip:hover::after { left: 130%; }
@keyframes chip-border-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.chip:nth-child(4n+1)::before { animation-delay: 0s; }
.chip:nth-child(4n+2)::before { animation-delay: -1.5s; }
.chip:nth-child(4n+3)::before { animation-delay: -3s; }
.chip:nth-child(4n+4)::before { animation-delay: -4.5s; }

/* Process timeline */
.process { display: grid; gap: 22px; counter-reset: step; }
.process-step { position: relative; padding-left: 80px; }
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute; left: 0; top: 0;
  width: 60px; height: 60px; border-radius: 18px;
  display: grid; place-items: center;
  font-family: var(--font-mono); font-size: 1.05rem; font-weight: 700; color: var(--text);
  background: linear-gradient(135deg, rgba(43,108,255,.25), rgba(232,121,249,.25));
  border: 1px solid var(--border-strong);
  box-shadow: inset 0 0 22px rgba(34,211,238,.18);
}
.process-step::after {
  content: ""; position: absolute; left: 30px; top: 70px; bottom: -22px; width: 1px;
  background: linear-gradient(180deg, rgba(34,211,238,.5), rgba(232,121,249,.1));
}
.process-step:last-child::after { display: none; }
.process-step h3 { margin-bottom: 6px; }
.process-step p { margin: 0; }

/* Portfolio placeholders */
.portfolio-card { padding: 0; overflow: hidden; }
.portfolio-thumb { aspect-ratio: 16/10; position: relative; overflow: hidden; display: grid; place-items: center; background: linear-gradient(135deg, #0e1538, #1a0d3a 60%, #2a0d34); }
.portfolio-thumb::before { content: ""; position: absolute; inset: -40%; background: conic-gradient(from 0deg, rgba(34,211,238,.5), rgba(139,92,246,.4), rgba(232,121,249,.45), rgba(43,108,255,.4), rgba(34,211,238,.5)); filter: blur(60px); opacity: .55; animation: spin 18s linear infinite; }
.portfolio-thumb::after { content: ""; position: absolute; inset: 12px; border-radius: 16px; background: linear-gradient(180deg, rgba(7,7,13,.65), rgba(7,7,13,.85)); border: 1px solid var(--border); }
.portfolio-thumb svg { position: relative; z-index: 2; width: 64%; height: 64%; }
.portfolio-meta { padding: 22px 24px 26px; }
.portfolio-meta .tag { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .22em; color: var(--cyan); text-transform: uppercase; }
.portfolio-meta h3 { margin-top: 6px; }
@keyframes spin { to { transform: rotate(1turn); } }

/* CTA strip */
.cta-strip {
  position: relative;
  padding: 56px;
  text-align: center;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(34,211,238,.12), transparent 55%),
    radial-gradient(120% 180% at 100% 100%, rgba(232,121,249,.14), transparent 55%),
    radial-gradient(80% 120% at 50% 110%, rgba(139,92,246,.16), transparent 60%),
    var(--surface);
  border: 1px solid transparent;
  overflow: hidden;
}
.cta-strip::before { opacity: .9; background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #8b5cf6, #2b6cff, #22d3ee); background-size: 300% 300%; animation: border-company-flow-reverse 6s ease-in-out infinite; }
.cta-strip::after {
  content: ""; position: absolute; inset: -1px;
  background: radial-gradient(60% 80% at 50% 0%, rgba(34,211,238,.18), transparent 70%);
  pointer-events: none;
}
.cta-strip > * { position: relative; z-index: 1; }
.cta-strip h2 { margin-bottom: 14px; }
.cta-headline { font-size: clamp(1.25rem, 2vw, 1.7rem); line-height: 1.4; font-weight: 600; }
.gradient-text.sparkle {
  background: linear-gradient(100deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #2b6cff, #22d3ee);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: sparkle-flow 5s linear infinite;
}
@keyframes sparkle-flow {
  to { background-position: 200% center; }
}
.cta-strip .actions { display: inline-flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; justify-content: center; }
#cta { padding-top: clamp(8px, 1.5vw, 18px); }

/* 11. Forms -------------------------------------------------*/
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.contact-info p { color: var(--text-dim); }
.contact-info ul { display: grid; gap: 18px; margin-top: 30px; }
.contact-info li { display: flex; gap: 14px; align-items: flex-start; color: var(--text); }
.contact-info li span:first-child { width: 36px; height: 36px; border-radius: 12px; background: var(--grad-soft); display: grid; place-items: center; color: var(--cyan); border: 1px solid var(--border); flex: 0 0 36px; }
.contact-info li small { display: block; color: var(--text-mute); font-size: .85rem; margin-top: 2px; }

.form { padding: 34px; }
.form .row { display: grid; gap: 18px; }
.form .row.cols-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.field { display: flex; flex-direction: column; gap: 8px; }
.field label { font-size: .88rem; color: var(--text-dim); font-weight: 500; letter-spacing: .01em; }
.field label .req { color: var(--magenta); margin-left: 2px; }
.field input, .field select, .field textarea {
  appearance: none; -webkit-appearance: none;
  background: rgba(7,7,13,.55);
  border: 1px solid var(--border);
  color: var(--text);
  border-radius: var(--radius-md);
  padding: 13px 16px;
  font-size: .98rem;
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(34,211,238,.15); background: rgba(7,7,13,.78); }
.field input::placeholder, .field textarea::placeholder { color: var(--text-mute); }
.field select { background-image: linear-gradient(45deg, transparent 50%, var(--cyan) 50%), linear-gradient(135deg, var(--cyan) 50%, transparent 50%); background-position: calc(100% - 22px) 50%, calc(100% - 16px) 50%; background-size: 6px 6px, 6px 6px; background-repeat: no-repeat; padding-right: 40px; }
.field .error-msg { color: var(--magenta); font-size: .82rem; min-height: 0; display: none; }
.field.invalid .error-msg { display: block; }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--magenta); box-shadow: 0 0 0 4px rgba(232,121,249,.15); }

.check { display: flex; gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid var(--border); border-radius: var(--radius-md); background: rgba(7,7,13,.45); cursor: pointer; transition: border-color .2s, background .2s; }
.check:hover { border-color: var(--border-strong); }
.check input { appearance: none; width: 20px; height: 20px; border-radius: 6px; border: 1px solid var(--border-strong); background: rgba(7,7,13,.7); display: inline-grid; place-items: center; flex: 0 0 20px; margin-top: 1px; cursor: pointer; transition: background .2s, border-color .2s; }
.check input:checked { background: var(--grad-primary); border-color: transparent; }
.check input:checked::after { content: ""; width: 12px; height: 12px; background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><path d='M3 8.5l3 3 7-7' fill='none' stroke='white' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/></svg>") center/12px no-repeat; }
.check span { color: var(--text); font-size: .94rem; }
.check span small { display: block; color: var(--text-mute); font-size: .82rem; margin-top: 2px; }

.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-top: 10px; }
.form-status { font-size: .9rem; color: var(--text-dim); min-height: 1.2em; }
.form-status.success { color: var(--cyan); }
.form-status.error { color: var(--magenta); }

/* 12. Footer ------------------------------------------------*/
.site-footer { padding: 64px 0 36px; border-top: 1px solid var(--border); margin-top: 80px; background: rgba(7,7,13,.5); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; }
.footer-brand p { max-width: 36ch; }
.footer-col h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .22em; color: var(--text-dim); margin-bottom: 14px; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--text-dim); font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--cyan); }
.footer-base { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 32px; margin-top: 40px; border-top: 1px solid var(--border); color: var(--text-mute); font-size: .85rem; }
.footer-legal { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-legal a { color: var(--text-mute); text-decoration: none; font-size: .82rem; transition: color .2s; }
.footer-legal a:hover { color: var(--cyan); }

/* 13. Reveal ------------------------------------------------*/
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

.nav-cta { display: none !important; }
.nav-toggle { display: none !important; }
.nav-panel { display: none !important; }

/* Combined "What We Do + Why" section ----------------------*/
.combined-head {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 28px;
}
.combined-head-left .section-title { max-width: 20ch; font-size: clamp(1.8rem, 3vw, 2.6rem); line-height: 1.15; }
.combined-head-left h1.section-title { font-size: clamp(2.1rem, 3.6vw, 3.1rem); max-width: 28ch; }
.combined-head-right {
  padding-top: 0;
  padding-left: 0;
  margin-left: 0;
  position: relative;
  display: flex;
  align-items: center;
}
.combined-head-right::before {
  content: "";
  position: absolute;
  left: -20px;
  top: -18px;
  bottom: -18px;
  width: 1px;
  background: linear-gradient(180deg,
    transparent 0%,
    #22d3ee 16%,
    #2b6cff 33%,
    #8b5cf6 50%,
    #e879f9 66%,
    #8b5cf6 75%,
    #2b6cff 83%,
    #22d3ee 91%,
    transparent 100%);
  background-size: 100% 200%;
  opacity: .85;
  filter: drop-shadow(0 0 5px rgba(34,211,238,.45));
  animation: slash-company-flow 6s ease-in-out infinite;
}
.combined-head-right .section-lead {
  margin: 0;
  margin-top: 28px;
  font-size: clamp(1.05rem, 1.25vw, 1.2rem);
  line-height: 1.65;
  max-width: 64ch;
}
.combined-divider {
  height: 1px;
  width: 100%;
  background: linear-gradient(90deg,
    transparent 0%,
    #22d3ee 16%,
    #2b6cff 33%,
    #8b5cf6 50%,
    #e879f9 66%,
    #8b5cf6 75%,
    #2b6cff 83%,
    #22d3ee 91%,
    transparent 100%);
  background-size: 200% 100%;
  margin-bottom: 28px;
  opacity: .85;
  filter: drop-shadow(0 0 6px rgba(34,211,238,.45));
  animation: divider-company-flow-reverse 6s ease-in-out infinite;
}
@keyframes divider-company-flow {
  0%   { background-position: 0% 0%;   filter: drop-shadow(0 0 6px rgba(34,211,238,.45)); }
  50%  { background-position: 100% 0%; filter: drop-shadow(0 0 6px rgba(232,121,249,.45)); }
  100% { background-position: 0% 0%;   filter: drop-shadow(0 0 6px rgba(34,211,238,.45)); }
}
@keyframes brand-hue {
  0%   { filter: drop-shadow(0 0 6px rgba(139,92,246,.35)) hue-rotate(0deg); }
  100% { filter: drop-shadow(0 0 6px rgba(139,92,246,.35)) hue-rotate(360deg); }
}
@keyframes brand-hue-spin {
  0%   { filter: hue-rotate(0deg); }
  100% { filter: hue-rotate(360deg); }
}
@keyframes border-company-flow {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes border-company-flow-reverse {
  0%   { background-position: 100% 50%; }
  50%  { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}
@keyframes divider-company-flow-reverse {
  0%   { background-position: 100% 0%; filter: drop-shadow(0 0 6px rgba(232,121,249,.45)); }
  50%  { background-position: 0% 0%;   filter: drop-shadow(0 0 6px rgba(34,211,238,.45)); }
  100% { background-position: 100% 0%; filter: drop-shadow(0 0 6px rgba(232,121,249,.45)); }
}
@keyframes slash-company-flow-reverse {
  0%   { background-position: 0% 100%; filter: drop-shadow(0 0 5px rgba(232,121,249,.45)); }
  50%  { background-position: 0% 0%;   filter: drop-shadow(0 0 5px rgba(34,211,238,.45)); }
  100% { background-position: 0% 100%; filter: drop-shadow(0 0 5px rgba(232,121,249,.45)); }
}

.services-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 64px;
}
.service-item {
  position: relative;
  padding: 8px 28px;
  color: var(--accent, var(--cyan));
  text-align: left;
}
.service-item + .service-item::before {
  content: "";
  position: absolute;
  left: 0; top: 12%;
  width: 1px; height: 76%;
  background: linear-gradient(180deg,
    transparent 0%,
    #22d3ee 16%,
    #2b6cff 33%,
    #8b5cf6 50%,
    #e879f9 66%,
    #8b5cf6 75%,
    #2b6cff 83%,
    #22d3ee 91%,
    transparent 100%);
  background-size: 100% 200%;
  opacity: .8;
  filter: drop-shadow(0 0 5px rgba(34,211,238,.45));
  animation: slash-company-flow 6s ease-in-out infinite;
}
@keyframes slash-company-flow {
  0%   { background-position: 0% 0%;   filter: drop-shadow(0 0 5px rgba(34,211,238,.45)); }
  50%  { background-position: 0% 100%; filter: drop-shadow(0 0 5px rgba(232,121,249,.45)); }
  100% { background-position: 0% 0%;   filter: drop-shadow(0 0 5px rgba(34,211,238,.45)); }
}
.service-item:nth-child(3)::before { animation-name: slash-company-flow-reverse; }

/* Service detail list (services page — horizontal rows) */
.service-detail-list { display: grid; gap: 20px; }
.service-detail {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 36px;
  align-items: center;
  padding: 8px 0;
}
.service-detail .service-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  margin-bottom: 0;
}
.service-detail-body { display: flex; flex-direction: column; }
.service-detail .service-name { font-size: 1.22rem; }
.service-detail .service-text { font-size: 1rem; color: var(--text-dim); line-height: 1.7; margin: 0; }

.service-illustration {
  width: 100%;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, color-mix(in oklab, var(--accent, #22d3ee) 8%, transparent), transparent);
  border: 1px solid color-mix(in oklab, var(--accent, #22d3ee) 22%, transparent);
  margin-bottom: 22px;
  box-shadow: inset 0 0 38px color-mix(in oklab, var(--accent, #22d3ee) 10%, transparent);
}
.service-illustration svg { width: 78%; height: 78%; color: var(--accent, var(--cyan)); }
.service-name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
}
.service-underline {
  display: block;
  width: 38px; height: 2px;
  background: var(--accent, var(--cyan));
  border-radius: 2px;
  margin-bottom: 12px;
  box-shadow: 0 0 12px color-mix(in oklab, var(--accent, #22d3ee) 60%, transparent);
}
.service-text { color: var(--text-dim); font-size: .92rem; line-height: 1.6; margin: 0; }

.goal-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 40px;
  text-align: left;
  background:
    radial-gradient(120% 180% at 0% 0%, rgba(34,211,238,.10), transparent 55%),
    radial-gradient(120% 180% at 100% 100%, rgba(232,121,249,.10), transparent 55%),
    var(--surface);
  border: 1px solid transparent;
  overflow: hidden;
}
.goal-strip::before {
  opacity: .9;
  background: linear-gradient(120deg, #22d3ee, #2b6cff, #8b5cf6, #e879f9, #8b5cf6, #2b6cff, #22d3ee);
  background-size: 300% 300%;
  animation: border-company-flow 6s ease-in-out infinite;
}
.goal-strip::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(34,211,238,.05) 50%, transparent 100%);
  pointer-events: none;
}
.goal-icon {
  width: 84px; height: 84px;
  display: grid; place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(34,211,238,.18), rgba(139,92,246,.18) 55%, rgba(232,121,249,.20));
  border: 1px solid var(--border-strong);
  box-shadow:
    inset 0 0 28px rgba(34,211,238,.22),
    0 0 32px rgba(139,92,246,.22);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.goal-icon img {
  width: 64%;
  height: 64%;
  object-fit: contain;
  filter: drop-shadow(0 0 12px rgba(34,211,238,.55));
}
.goal-title {
  font-size: clamp(1.1rem, 1.55vw, 1.4rem);
  line-height: 1.35;
  color: var(--text);
  margin: 0 0 8px;
  position: relative; z-index: 1;
}
.goal-detail { color: var(--text-dim); margin: 0; font-size: .98rem; line-height: 1.6; position: relative; z-index: 1; }

.goal-ohio {
  position: relative;
  z-index: 1;
  width: clamp(110px, 12vw, 150px);
  flex-shrink: 0;
}
.goal-ohio img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 22px rgba(34,211,238,.35)) drop-shadow(0 0 14px rgba(139,92,246,.25));
}

.studio-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; padding: 48px; }
.studio-copy .section-lead { color: var(--text-dim); font-size: .98rem; line-height: 1.7; margin: 0; }
.studio-location { margin-top: 20px; font-size: .82rem; font-family: 'JetBrains Mono', monospace; letter-spacing: .12em; text-transform: uppercase; background: linear-gradient(120deg,#2b6cff,#22d3ee,#8b5cf6,#e879f9); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.studio-values { display: flex; flex-direction: column; gap: 20px; }
.studio-value-item { display: flex; align-items: flex-start; gap: 14px; }
.studio-value-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--dot); flex-shrink: 0; margin-top: 7px; box-shadow: 0 0 8px var(--dot); }
.studio-value-item p { color: var(--text-dim); font-size: .98rem; line-height: 1.6; margin: 0; }
@media (max-width: 768px) { .studio-grid { grid-template-columns: 1fr; gap: 28px; padding: 24px; } }

.service-outcome { margin-top: 16px; background: rgba(34,211,238,.06); border: 1px solid rgba(34,211,238,.14); border-radius: 8px; padding: 12px 16px; font-size: .9rem; color: var(--text-dim); line-height: 1.6; }
.outcome-label { display: block; font-size: .72rem; font-family: 'JetBrains Mono', monospace; letter-spacing: .1em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.ai-teaser { padding: 48px; }
.ai-teaser-copy .section-lead { max-width: 56ch; }
.ai-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; }
@media (max-width: 768px) { .ai-teaser { padding: 24px; } }

.legal-body { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; padding-bottom: 64px; }
.legal-section { padding: 28px 32px; }
.legal-section h2 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 10px; }
.legal-section p { color: var(--text-dim); font-size: .95rem; line-height: 1.75; margin-bottom: 10px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--cyan); text-decoration: none; }
.legal-section a:hover { text-decoration: underline; }
.legal-highlight { border-color: rgba(34,211,238,.3); background: rgba(34,211,238,.04); }
.legal-highlight h2 { color: var(--cyan); }
.legal-nav { display: flex; flex-wrap: wrap; gap: 12px; padding-top: 8px; }
@media (max-width: 768px) { .legal-section { padding: 20px; } .legal-nav { flex-direction: column; } }

.goal-pulse {
  position: relative;
  width: 84px; height: 84px;
  display: grid; place-items: center;
  flex-shrink: 0;
  z-index: 1;
}
.pulse-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--grad-primary);
  box-shadow: 0 0 18px rgba(34,211,238,.7);
  z-index: 2;
}
.pulse-ring, .pulse-ring.delay {
  position: absolute;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid #22d3ee;
  opacity: 0;
  animation: goal-pulse 2.8s ease-out infinite;
}
.pulse-ring.delay { animation-delay: 1.4s; border-color: #e879f9; }
@keyframes goal-pulse {
  0%   { transform: scale(.5); opacity: .8; }
  80%  { transform: scale(2.4); opacity: 0; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* 14. Responsive -------------------------------------------*/
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .timeline-steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  #timeline-line { display: none; }
  .combined-head { grid-template-columns: 1fr; gap: 20px; align-items: start; }
  .services-row { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .service-item:nth-child(3)::before { display: none; }
  .goal-strip { grid-template-columns: auto 1fr; }
  .goal-pulse { display: none; }
  .goal-ohio { display: none; }
  .packages-grid { grid-template-columns: 1fr; }
  .packages-hero-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .price-card.featured { order: -1; }
  .explain-grid { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-stage { max-width: 460px; margin: 0 auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --section-y: clamp(56px, 12vw, 96px); }
  .nav-links, .nav-cta.desktop { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav.open .nav-panel { display: block; }
  .nav-panel { display: none; position: absolute; top: 100%; left: 0; right: 0; padding: 18px; margin: 6px 16px 0; background: rgba(7,7,13,.92); border: 1px solid var(--border); border-radius: var(--radius-lg); backdrop-filter: blur(20px); }
  .nav-panel ul { display: grid; gap: 4px; }
  .nav-panel a { display: block; padding: 12px 14px; border-radius: 12px; color: var(--text); font-weight: 500; }
  .nav-panel a:hover, .nav-panel a.active { background: rgba(34,211,238,.08); }
  .nav-panel .nav-cta { display: flex; margin-top: 14px; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .provide-list { grid-template-columns: 1fr; }
  .addons-grid { grid-template-columns: 1fr; }
  .services-row { grid-template-columns: 1fr; row-gap: 32px; }
  .service-item::before { display: none !important; }
  .goal-strip { grid-template-columns: 1fr; text-align: center; justify-items: center; padding: 24px; }
  .goal-icon { margin: 0 auto; }
  .form .row.cols-2 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-step { padding-left: 64px; }
  .process-step::before { width: 48px; height: 48px; border-radius: 14px; }
  .process-step::after { left: 24px; top: 56px; }
  .cta-strip { padding: 36px 24px; }
  .form { padding: 24px; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-meta { gap: 14px; }
  .nav-brand-name { display: none; }
}

/* 15. Reduced motion ---------------------------------------*/
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
  .orb { animation: none; }
}

/* 16. Oscilloscope bullet effect ---------------------------*/
@keyframes osc-pulse {
  0%   { background: #2b6cff; box-shadow: 0 0 6px 2px #2b6cff, 0 0 14px #2b6cff88; transform: scale(1); }
  25%  { background: #22d3ee; box-shadow: 0 0 8px 3px #22d3ee, 0 0 18px #22d3ee88; transform: scale(1.35); }
  50%  { background: #8b5cf6; box-shadow: 0 0 6px 2px #8b5cf6, 0 0 14px #8b5cf688; transform: scale(1); }
  75%  { background: #e879f9; box-shadow: 0 0 8px 3px #e879f9, 0 0 18px #e879f988; transform: scale(1.35); }
  100% { background: #2b6cff; box-shadow: 0 0 6px 2px #2b6cff, 0 0 14px #2b6cff88; transform: scale(1); }
}

.section-eyebrow::before {
  animation: osc-pulse 2.4s ease-in-out infinite;
}

/* package list bullets */
.package li { position: relative; padding-left: 18px; }
.package li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  animation: osc-pulse 2.4s ease-in-out infinite;
}
.package li:nth-child(2)::before  { animation-delay: .3s; }
.package li:nth-child(3)::before  { animation-delay: .6s; }
.package li:nth-child(4)::before  { animation-delay: .9s; }
.package li:nth-child(5)::before  { animation-delay: 1.2s; }
.package li:nth-child(6)::before  { animation-delay: 1.5s; }
.package li:nth-child(7)::before  { animation-delay: 1.8s; }
.package li:nth-child(8)::before  { animation-delay: 2.1s; }

/* contact info list bullets */
.contact-info li { position: relative; }
.contact-info li > span:first-child svg {
  filter: drop-shadow(0 0 4px #22d3ee);
  animation: icon-glow 2.4s ease-in-out infinite;
}
@keyframes icon-glow {
  0%,100% { filter: drop-shadow(0 0 4px #2b6cff); }
  25%      { filter: drop-shadow(0 0 7px #22d3ee); }
  50%      { filter: drop-shadow(0 0 4px #8b5cf6); }
  75%      { filter: drop-shadow(0 0 7px #e879f9); }
}
