/* ============================================================
   APPRO DIGITAL — v7 "Blackout" theme
   Black canvas. Warm white type. Serif display. Molten orange.
   ============================================================ */
:root {
  color-scheme: light;
  --canvas: #fdfcff;            /* page white */
  --white: #ffffff;             /* card surface */
  --panel: #f3f0fb;             /* elevated surface */
  --ink: #161125;               /* primary text (purple-black) */
  --grey: #6a6480;
  --micro-c: #89819e;
  --body-c: #48425c;
  --line: rgba(22, 17, 37, 0.12);
  --accent: #8b5cf6;
  --accent-soft: #a78bfa;
  --accent-deep: #6d28d9;
  --grad-shine: linear-gradient(115deg, #ddd6fe 0%, #8b5cf6 32%, #6d28d9 58%, #a78bfa 85%, #ddd6fe 100%);
  --grad-btn: linear-gradient(135deg, #c4b5fd 0%, #8b5cf6 55%, #6d28d9 100%);
  --glow: 0 0 44px -10px rgba(139, 92, 246, 0.55);
  --aurora: var(--accent);      /* legacy var */
  --brand-grad: linear-gradient(135deg, #c4b5fd, #6d28d9); /* legacy var */
  --r: 16px;
  --r-card: 20px;
  --shadow-card: 0 22px 45px -28px rgba(35, 26, 52, 0.25);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --serif: 'Instrument Serif', Georgia, 'Times New Roman', serif;
  --script: 'Snell Roundhand', 'Apple Chancery', 'Segoe Script', cursive;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; }
::selection { background: rgba(139, 92, 246, 0.4); color: #fff; }

h1, h2 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.06;
  text-wrap: balance;
}
h1 { font-size: clamp(2.8rem, 6.5vw, 5.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-weight: 700; font-size: 1.12rem; letter-spacing: -0.01em; }

/* Gradient-text emphasis: serif italic, molten orange */
.aurora {
  font-family: var(--serif);
  font-style: italic;
  background: var(--grad-shine);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

.chip {
  display: inline-flex;
  font-size: 11px; font-weight: 700; font-family: var(--font);
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.1rem;
}
.chip-dark { color: var(--accent); }
.sec-head { max-width: 760px; margin: 0 auto 3.2rem; text-align: center; }
.sec-sub { color: var(--grey); font-weight: 500; margin-top: 1rem; font-size: 1.05rem; }
.section { padding: 6.5rem 0; }
@media (max-width: 640px) { .section { padding: 4.5rem 0; } }
.section-inner { max-width: 1180px; margin: 0 auto; padding: 0 1.5rem; }
.section-narrow { max-width: 820px; }
.section-dark, .section-process { background: transparent; }
.section-tint { background: radial-gradient(60% 42% at 50% 0%, rgba(139, 92, 246, 0.07), transparent 70%); }
#founder-cta { background: radial-gradient(55% 50% at 78% 50%, rgba(139, 92, 246, 0.06), transparent 70%); }

/* ============ Buttons ============ */
.btn, .btn-aurora, .btn-glass, .tier-btn, .btn-back {
  font-family: var(--font);
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  font-weight: 600; font-size: 0.95rem;
  text-decoration: none;
  border: 0; border-radius: 999px;
  padding: 0.95rem 1.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease, opacity 0.2s ease, border-color 0.2s ease;
}
.btn-aurora {
  position: relative; overflow: hidden;
  background: var(--grad-btn);
  color: #170f2a;
  box-shadow: 0 10px 30px -12px rgba(139, 92, 246, 0.55);
}
.btn-aurora::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.btn-aurora:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(139, 92, 246, 0.75); }
.btn-aurora:hover::after { left: 130%; }
.btn-glass { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 1.5px var(--line); }
.btn-glass:hover { box-shadow: inset 0 0 0 1.5px rgba(139, 92, 246, 0.65); color: var(--ink); }
.arr { transition: transform 0.2s ease; }
.btn-aurora:hover .arr, .btn-glass:hover .arr { transform: translateX(4px); }

/* ============ Nav ============ */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 60; transition: transform 0.3s ease; }
.nav.nav-hidden { transform: translateY(-110%); }
.nav-inner {
  max-width: 1180px; margin: 0 auto;
  display: flex; align-items: center; gap: 2rem;
  padding: 1.1rem 1.5rem;
  background: rgba(13, 11, 19, 0.72);

  border-bottom: 1px solid var(--line);
  transition: padding 0.3s ease;
}
.nav-scrolled .nav-inner { padding-top: 0.65rem; padding-bottom: 0.65rem; }
.logo { display: flex; align-items: center; text-decoration: none; }
.logo-mark {
  height: 34px; width: 34px; padding: 6px;
  background: #100d19;
  border-radius: 9px;
  filter: invert(1);
  transition: height 0.3s ease, width 0.3s ease;
}
.nav-scrolled .logo-mark { height: 30px; width: 30px; }
.nav-links { display: flex; gap: 1.9rem; margin: 0 auto; }
.nav-links a {
  position: relative;
  text-decoration: none; font-weight: 500; font-size: 0.93rem;
  color: var(--grey); transition: color 0.2s ease;
}
.nav-links a::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -6px;
  height: 2px; border-radius: 2px;
  background: var(--grad-btn);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta {
  background: var(--ink); color: #131022;
  font-weight: 600; font-size: 0.88rem;
  text-decoration: none; border-radius: 999px;
  padding: 0.7rem 1.4rem;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease; white-space: nowrap;
}
.nav-cta:hover {
  transform: translateY(-1px);
  background: var(--grad-btn); color: #170f2a;
  box-shadow: 0 10px 26px -12px rgba(139, 92, 246, 0.6);
}
@media (max-width: 640px) { .nav-links { display: none; } .nav-cta { margin-left: auto; } }

/* ============ Hero ============ */
.hero-v2 {
  position: relative;
  min-height: 88vh;
  display: flex; align-items: center; justify-content: center;
  padding: 9rem 1.25rem 4rem;
  overflow: hidden;
  text-align: center;
}
.hero-center-copy { position: relative; z-index: 2; max-width: 940px; display: flex; flex-direction: column; align-items: center; }
.hero-orbs { display: none; }
.hero-halo {
  position: absolute; left: 50%; top: 42%;
  width: min(920px, 110vw); aspect-ratio: 1.6;
  transform: translate(-50%, -50%);
  background: radial-gradient(50% 50% at 50% 50%, rgba(139, 92, 246, 0.17), rgba(109, 40, 217, 0.06) 45%, transparent 70%);
  filter: blur(30px);
  animation: haloBreathe 9s ease-in-out infinite alternate;
  pointer-events: none;
}
@keyframes haloBreathe {
  from { opacity: 0.7; transform: translate(-50%, -50%) scale(0.96); }
  to   { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}
.hero-glow-follow {
  position: absolute; inset: 0;
  background: radial-gradient(560px circle at var(--mx, 50%) var(--my, 42%), rgba(255, 122, 40, 0.1), transparent 62%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.78rem; font-weight: 600; color: var(--grey);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 1rem;
  margin-bottom: 1.8rem;
  background: rgba(25, 23, 18, 0.7);
}
.ping-dot { position: relative; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); display: inline-block; }
.ping-dot::after { content: ''; position: absolute; inset: 0; border-radius: 50%; background: var(--accent); animation: ping 2s cubic-bezier(0,0,0.2,1) infinite; }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.hero-v2 h1 { font-size: clamp(3rem, 8vw, 6.4rem); line-height: 1.05; }
.rotator { position: relative; display: inline-grid; text-align: center; vertical-align: top; padding: 0 0.05em 0.12em; }
.rotator-word {
  grid-area: 1 / 1;
  white-space: nowrap;
  font-style: italic;
  background: var(--grad-shine);
  background-size: 220% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  animation: molten 7s linear infinite;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity 0.4s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
@keyframes molten { to { background-position: -220% 0; } }
.rotator-word.is-on { opacity: 1; transform: none; pointer-events: auto; }
.rotator-word.is-out { opacity: 0; transform: translateY(-0.45em); }
.rotator::after {
  content: '';
  position: absolute;
  left: 6%; right: 6%; bottom: 0.06em;
  height: 2px; border-radius: 2px;
  background: var(--grad-btn);
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.55);
  opacity: 0.95;
}
.hv { opacity: 0; transform: translateY(16px); animation: hvIn 0.7s cubic-bezier(0.22,1,0.36,1) forwards; }
.hv-1 { animation-delay: 0.08s; } .hv-2 { animation-delay: 0.18s; }
.hv-3 { animation-delay: 0.28s; } .hv-4 { animation-delay: 0.38s; }
@keyframes hvIn { to { opacity: 1; transform: none; } }
.hero-v2 .hero-sub { max-width: 54ch; margin: 1.6rem auto 2.2rem; color: var(--grey); font-size: 1.12rem; font-weight: 500; }
.hero-v2 .hero-ctas { justify-content: center; display: flex; gap: 0.8rem; flex-wrap: wrap; }
.hero-proof { list-style: none; display: flex; flex-wrap: wrap; gap: 0.6rem 1.9rem; justify-content: center; margin-top: 1.8rem; }
.hero-proof li { position: relative; font-size: 0.85rem; font-weight: 600; color: var(--micro-c); padding-left: 1.05rem; }
.hero-proof li::before { content: ''; position: absolute; left: 0; top: 50%; translate: 0 -50%; width: 0.45em; height: 0.45em; border-radius: 999px; background: var(--accent); box-shadow: 0 0 8px rgba(139, 92, 246, 0.7); }
.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; translate: -50% 0; z-index: 2;
  width: 26px; height: 42px;
  border: 1.5px solid var(--line);
  border-radius: 999px;
  display: flex; justify-content: center;
}
.scroll-cue span { width: 4px; height: 9px; border-radius: 999px; background: var(--accent); margin-top: 7px; animation: cueDrop 1.9s ease-in-out infinite; }
@keyframes cueDrop { 0% { transform: translateY(0); opacity: 1; } 70% { transform: translateY(12px); opacity: 0; } 100% { transform: translateY(0); opacity: 0; } }

/* ============ Marquee ============ */
.marquee { overflow: hidden; padding: 1.05rem 0; background: transparent; }
.marquee-track { display: flex; align-items: center; gap: 2.4rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee-track span { color: var(--grey); font-weight: 600; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.16em; white-space: nowrap; }
.marquee-track i { width: 4px; height: 4px; border-radius: 50%; flex: none; background: var(--accent); box-shadow: 0 0 6px rgba(139, 92, 246, 0.8); }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.marquee:hover .marquee-track { animation-play-state: paused; }

/* ============ Our Work ============ */
.work-card { margin-bottom: 1.4rem; }
.work-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}
.work-grid:hover {
  border-color: rgba(139, 92, 246, 0.4);
  box-shadow: 0 30px 70px -40px rgba(139, 92, 246, 0.35), var(--shadow-card);
  transform: translateY(-3px);
}
@media (min-width: 1024px) { .work-grid { grid-template-columns: 1fr 1fr; } .flip .work-media { order: 2; } }
.work-media { line-height: 0; background: var(--panel); }
.work-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.work-body { padding: 2.4rem; display: flex; flex-direction: column; justify-content: center; }
.work-meta { display: flex; align-items: center; gap: 0.6rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tag-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px rgba(139, 92, 246, 0.75); }
.tag-label { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.14em; color: var(--grey); }
.work-badge {
  font-size: 0.62rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.75rem; color: var(--grey);
}
.work-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.9rem; letter-spacing: -0.01em; }
.work-bullets { list-style: none; margin-top: 1.2rem; display: grid; gap: 0.75rem; }
.work-bullets li { position: relative; padding-left: 1.5rem; color: var(--body-c); font-size: 0.95rem; }
.work-bullets li::before { content: ''; position: absolute; left: 0; top: 0.5em; width: 0.45em; height: 0.45em; border-radius: 999px; background: var(--accent); }

/* ============ Process ============ */
.process-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .process-grid { grid-template-columns: 1.05fr 0.95fr; gap: 4rem; } }
.process-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); }
.process-sub { max-width: 46ch; font-size: 0.98rem; margin-top: 0.8rem; }
.process-steps { list-style: none; counter-reset: pstep; display: grid; margin-top: 1.8rem; }
.process-steps li { counter-increment: pstep; position: relative; padding: 1.15rem 0 1.15rem 3.1rem; border-top: 1px solid var(--line); }
.process-steps li:last-child { border-bottom: 1px solid var(--line); }
.process-steps li::before {
  content: counter(pstep, decimal-leading-zero);
  position: absolute; left: 0; top: 1.3rem;
  font-weight: 700; font-size: 0.82rem; color: var(--accent);
  font-variant-numeric: tabular-nums;
}
.process-steps h3 { font-size: 1rem; }
.process-steps p { color: var(--body-c); font-size: 0.9rem; margin-top: 0.25rem; }
.process-video-wrap {
  max-width: 380px; margin: 0 auto; border-radius: var(--r-card); overflow: hidden;
  border: 1px solid rgba(139, 92, 246, 0.28);
  box-shadow: 0 40px 90px -45px rgba(139, 92, 246, 0.45), var(--shadow-card);
}
.process-video { line-height: 0; background: #000; }
.process-video video { width: 100%; height: auto; display: block; }

/* ============ Who we build for ============ */
.grid-6 { display: grid; grid-template-columns: 1fr; gap: 0; max-width: 1080px; margin: 0 auto; border-top: 1px solid var(--line); }
@media (min-width: 640px) { .grid-6 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-6 { grid-template-columns: repeat(3, 1fr); } }
.tile-card { padding: 1.9rem 1.6rem; border-bottom: 1px solid var(--line); transition: background 0.2s ease; }
@media (min-width: 640px) { .tile-card { border-right: 1px solid var(--line); } .grid-6 .tile-card:nth-child(2n) { border-right: none; } }
@media (min-width: 1024px) { .grid-6 .tile-card:nth-child(2n) { border-right: 1px solid var(--line); } .grid-6 .tile-card:nth-child(3n) { border-right: none; } }
.tile-card:hover { background: var(--white); }
.icon-tile {
  width: 42px; height: 42px; border-radius: 11px;
  background: rgba(139, 92, 246, 0.09);
  border: 1px solid rgba(139, 92, 246, 0.28);
  display: grid; place-items: center;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.icon-tile svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.tile-card:hover .icon-tile { border-color: rgba(139, 92, 246, 0.6); box-shadow: 0 0 26px -6px rgba(139, 92, 246, 0.55); }
.tile-card h3 { font-size: 1.02rem; margin-top: 1rem; }
.tile-card p { color: var(--body-c); font-size: 0.9rem; margin-top: 0.35rem; }

/* ============ Concept Lab ============ */
.section-lab { background: radial-gradient(55% 45% at 50% 100%, rgba(139, 92, 246, 0.06), transparent 70%); }
.cl-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.6rem; align-items: start; max-width: 1080px; margin: 0 auto; }
.cl-item { text-align: center; margin: 0; }
.cl-phone {
  position: relative;
  border-radius: 46px;
  background: #060410;
  border: 1px solid rgba(244, 242, 251, 0.16);
  padding: 8px;
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.9), 0 26px 80px -30px rgba(139, 92, 246, 0.28);
  animation: clFloat 7s ease-in-out infinite;
  transition: rotate 0.35s ease, translate 0.35s ease, box-shadow 0.35s ease;
}
.cl-island { position: absolute; top: 18px; left: 50%; translate: -50% 0; width: 72px; height: 20px; border-radius: 999px; background: #060410; z-index: 2; }
.cl-item:nth-child(1) .cl-phone { rotate: -3deg; translate: 0 16px; }
.cl-item:nth-child(2) .cl-phone { rotate: 1.5deg; animation-delay: -1.8s; }
.cl-item:nth-child(3) .cl-phone { rotate: -1.5deg; translate: 0 24px; animation-delay: -3.4s; }
.cl-item:nth-child(4) .cl-phone { rotate: 2.5deg; translate: 0 8px; animation-delay: -5s; }
.cl-item:hover .cl-phone { rotate: 0deg; translate: 0 0; box-shadow: 0 34px 80px -30px rgba(0, 0, 0, 0.92), 0 30px 90px -28px rgba(139, 92, 246, 0.5); }
@keyframes clFloat { 50% { transform: translateY(-9px); } }
.cl-screen { border-radius: 38px; overflow: hidden; aspect-ratio: 9 / 18; background: var(--panel); }
.cl-screen img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cl-item figcaption { margin-top: 1.9rem; }
.cl-item figcaption b { display: block; font-size: 0.95rem; color: var(--ink); }
.cl-item figcaption span { font-size: 0.82rem; color: var(--micro-c); }
.cl-cta { text-align: center; margin-top: 3.4rem; }
.cl-micro { color: var(--micro-c); font-size: 0.85rem; margin-top: 1rem; }
@media (max-width: 1023px) {
  .cl-row { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; gap: 1.2rem; margin: 0 -1.5rem; padding: 1rem 1.5rem 1.4rem; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
  .cl-row::-webkit-scrollbar { display: none; }
  .cl-item { flex: 0 0 216px; scroll-snap-align: center; }
  .cl-row .cl-item .cl-phone { rotate: 0deg; translate: 0 0; }
}

/* ============ Pricing ============ */
.grid-3 { display: grid; grid-template-columns: 1fr; gap: 1.2rem; align-items: stretch; }
@media (min-width: 900px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.price-wrap { position: relative; display: flex; }
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 0;
  width: 100%;
  display: flex; flex-direction: column;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}
.tier-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 0.8rem;
  padding: 1.15rem 1.7rem;
  background: #161125;
}
.tier-bar h3 { color: #f4f2fb; font-size: 1.05rem; letter-spacing: 0.04em; text-transform: uppercase; }
.tier-bar .tier-badge { background: rgba(244, 242, 251, 0.14); color: #d6d2e4; }
.tier-pink .tier-bar { background: var(--grad-btn); }
.tier-pink .tier-bar h3 { color: #170f2a; }
.tier-pink .tier-bar .tier-badge { background: rgba(23, 15, 42, 0.22); color: #170f2a; }
.tier-gold .price-card { border-color: rgba(139, 92, 246, 0.55); }
.tier-gold .tier-bar h3 { color: var(--accent-soft); }
.tier-body { padding: 1.8rem 1.7rem 2.1rem; display: flex; flex-direction: column; flex: 1; }
.tier-divide { border: 0; border-top: 1px solid var(--line); margin: 1.3rem 0 0; }
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(139, 92, 246, 0.35); }
.tier-pink .price-card {
  background: linear-gradient(#161125, #161125) padding-box,
              linear-gradient(150deg, #c4b5fd, #8b5cf6 45%, #7a2e08 90%) border-box;
  border: 1px solid transparent;
  color: var(--ink);
  box-shadow: 0 30px 70px -40px rgba(139, 92, 246, 0.5);
}
.tier-pink .price-card:hover { box-shadow: 0 36px 80px -40px rgba(139, 92, 246, 0.65); }
.price-tag {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  font-size: 0.64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: #170f2a;
  background: linear-gradient(110deg, #8b5cf6, #a78bfa, #8b5cf6);
  background-size: 200% 100%;
  animation: tagShimmer 4.5s linear infinite;
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  white-space: nowrap;
  box-shadow: 0 8px 24px -8px rgba(139, 92, 246, 0.7);
}
@keyframes tagShimmer { to { background-position: -200% 0; } }
.tier-badge {
  font-size: 0.6rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  border-radius: 999px; padding: 0.35rem 0.75rem;
  background: rgba(22, 17, 37, 0.07); color: var(--grey);
  white-space: nowrap;
}
.tier-pink .tier-badge { background: rgba(139, 92, 246, 0.14); color: var(--accent-soft); }
.tier-desc { color: var(--ink); font-weight: 600; font-size: 0.98rem; line-height: 1.5; margin-top: 0.9rem; min-height: 48px; }
.tier-pink .tier-desc { color: var(--ink); }
.price { margin-top: 0.2rem; display: flex; align-items: baseline; gap: 0.55rem; }
.price small { font-size: 0.8rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.12em; color: var(--micro-c); }
.price span { font-family: var(--font); font-weight: 800; font-size: 3.1rem; letter-spacing: -0.035em; font-variant-numeric: tabular-nums; }
.tier-pink .price span {
  background: var(--grad-shine);
  background-size: 200% 100%;
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.tier-btn { margin-top: 1.2rem; background: #161125; color: #f6f4fd; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 800; font-size: 0.88rem; padding: 1.05rem 1.9rem; }
.tier-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -16px rgba(22, 17, 37, 0.35); }
.tier-pink .tier-btn {
  position: relative; overflow: hidden;
  background: var(--grad-btn); color: #170f2a;
  box-shadow: 0 10px 30px -12px rgba(139, 92, 246, 0.55);
}
.tier-pink .tier-btn::after {
  content: '';
  position: absolute; top: 0; bottom: 0; left: -80%;
  width: 55%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.55), transparent);
  transform: skewX(-20deg);
  transition: left 0.55s ease;
  pointer-events: none;
}
.tier-pink .tier-btn:hover::after { left: 130%; }
.tier-includes { font-size: 0.74rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink); margin-top: 1.8rem; }
.price-card ul { list-style: none; margin: 1rem 0 0.3rem; display: grid; gap: 0.85rem; }
.price-card li { font-size: 0.95rem; line-height: 1.45; padding-left: 1.6rem; position: relative; color: var(--body-c); }
.tier-pink .price-card li { color: var(--body-c); }
.price-card li { padding-left: 2.05rem; }
.price-card li::before {
  content: ''; position: absolute; left: 0; top: 0.06em;
  width: 1.3em; height: 1.3em; border-radius: 50%;
  background: var(--grad-btn);
  box-shadow: 0 4px 10px -3px rgba(139, 92, 246, 0.55);
}
.price-card li::after {
  content: ''; position: absolute; left: 0; top: 0.06em;
  width: 1.3em; height: 1.3em;
  background: #f7f5ff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 12.7l3.6 3.6 7.4-8'/%3E%3C/svg%3E") center / 62% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 12.7l3.6 3.6 7.4-8'/%3E%3C/svg%3E") center / 62% no-repeat;
}

/* ============ Founder ============ */
.founder-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .founder-grid { grid-template-columns: 1.1fr 0.9fr; gap: 4rem; } }
.founder-note h2 { margin-bottom: 0.4rem; }
.founder-note p:not(.chip):not(.signature):not(.signature-sub) { color: var(--body-c); margin-top: 1rem; font-size: 1.02rem; }
.signature { font-family: var(--script); margin-top: 2rem; }
.signature-gold, .signature {
  display: inline-block; font-size: 3rem;
  background: linear-gradient(100deg, #c4b5fd, #8b5cf6 35%, #ddd6fe 55%, #6d28d9 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.signature-sub { color: var(--micro-c); font-size: 0.85rem; margin-top: 0.2rem; }
.founder-card-wrap { display: flex; justify-content: center; }
.founder-card {
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(160deg, rgba(139, 92, 246, 0.65), rgba(139, 92, 246, 0.08) 55%, rgba(244, 242, 251, 0.12)) border-box;
  border: 1px solid transparent;
  border-radius: var(--r-card);
  padding: 2.2rem;
  max-width: 420px; width: 100%;
  box-shadow: 0 30px 70px -40px rgba(139, 92, 246, 0.4), var(--shadow-card);
}
.founder-card p { color: var(--body-c); }
.founder-micro { color: var(--micro-c); font-size: 0.85rem; margin-top: 1rem; }

/* ============ FAQ ============ */
.faq-list { display: grid; }
.faq-wrap { border-top: 1px solid var(--line); }
.faq-wrap:last-child { border-bottom: 1px solid var(--line); }
.faq-wrap details { padding: 1.25rem 0.2rem; }
summary { font-weight: 600; font-size: 1.02rem; cursor: pointer; list-style: none; display: flex; align-items: center; gap: 0.7rem; }
summary::-webkit-details-marker { display: none; }
summary em { font-style: normal; font-weight: 700; color: var(--accent); font-variant-numeric: tabular-nums; }
.faq-plus { margin-left: auto; position: relative; width: 15px; height: 15px; flex: none; transition: transform 0.25s ease; }
.faq-plus::before, .faq-plus::after { content: ''; position: absolute; background: var(--grey); border-radius: 2px; transition: background 0.25s ease; }
.faq-plus::before { left: 6.5px; top: 0; width: 2px; height: 15px; }
.faq-plus::after { left: 0; top: 6.5px; width: 15px; height: 2px; }
details[open] .faq-plus { transform: rotate(45deg); }
details[open] .faq-plus::before, details[open] .faq-plus::after { background: var(--accent); }
.faq-wrap details p { color: var(--body-c); margin-top: 0.7rem; padding-left: 2rem; max-width: 62ch; }

/* ============ Footer v2 ============ */
.footer2 { position: relative; background: #131022; color: var(--grey); overflow: hidden; margin-top: 5rem; border-top: 1px solid var(--line); }
.footer2::before {
  content: '';
  position: absolute; left: 0; right: 0; top: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.7), transparent);
}
.footer2-wm {
  position: absolute; right: -2%; bottom: -0.18em;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(8rem, 28vw, 26rem);
  letter-spacing: -0.03em; line-height: 1;
  color: rgba(244, 242, 251, 0.04);
  pointer-events: none; user-select: none; white-space: nowrap;
}
.footer2-inner { position: relative; max-width: 1180px; margin: 0 auto; padding: 4.5rem 1.5rem 2rem; }
.footer2-grid { display: grid; grid-template-columns: 1fr; gap: 2.5rem; }
@media (min-width: 900px) { .footer2-grid { grid-template-columns: 1.3fr 0.7fr 0.9fr 1.1fr; gap: 3rem; } }
.footer2-logo { display: flex; align-items: center; gap: 0.7rem; }
.footer2-logo img { height: 40px; width: 40px; padding: 7px; background: #100d19; border-radius: 10px; filter: invert(1); }
.footer2-logo span { font-weight: 700; font-size: 1.02rem; letter-spacing: 0.02em; color: var(--ink); }
.footer2-tag { margin-top: 1rem; font-size: 0.95rem; max-width: 30ch; }
.footer2-mail { display: inline-flex; align-items: center; gap: 0.55rem; margin-top: 1.1rem; color: var(--ink); font-weight: 600; font-size: 0.93rem; text-decoration: none; }
.footer2-mail:hover { text-decoration: underline; text-decoration-color: var(--accent); }
.footer2-mail svg { width: 18px; height: 18px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.footer2-social { display: flex; gap: 0.6rem; margin-top: 1.3rem; }
.footer2-social a { width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(244, 242, 251, 0.2); display: grid; place-items: center; color: var(--ink); transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.footer2-social a:hover { background: rgba(139, 92, 246, 0.12); border-color: rgba(139, 92, 246, 0.5); transform: translateY(-2px); }
.footer2-social svg { width: 19px; height: 19px; stroke: currentColor; fill: none; stroke-width: 2; }
.footer2-head { font-size: 0.68rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--micro-c); margin-bottom: 1.1rem; }
.footer2-links { display: grid; gap: 0.65rem; }
.footer2-links a { color: var(--body-c); text-decoration: none; font-size: 0.95rem; font-weight: 500; width: fit-content; transition: color 0.2s ease, transform 0.2s ease; }
.footer2-links a:hover { color: var(--ink); transform: translateX(3px); }
.footer2-text { font-size: 0.95rem; max-width: 34ch; }
.footer2-cards { display: grid; grid-template-columns: 1fr; gap: 0.9rem; margin-top: 3.2rem; }
@media (min-width: 640px) { .footer2-cards { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer2-cards { grid-template-columns: repeat(4, 1fr); } }
.f2card { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; background: rgba(244, 242, 251, 0.04); border: 1px solid rgba(244, 242, 251, 0.1); border-radius: 14px; padding: 1.05rem 1.2rem; transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease; }
.f2card:hover { background: rgba(244, 242, 251, 0.07); border-color: rgba(139, 92, 246, 0.4); transform: translateY(-3px); }
.f2icon { flex: none; width: 42px; height: 42px; border-radius: 11px; background: rgba(139, 92, 246, 0.09); border: 1px solid rgba(139, 92, 246, 0.24); display: grid; place-items: center; }
.f2icon svg { width: 20px; height: 20px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.f2card b { display: block; color: var(--ink); font-size: 0.95rem; }
.f2card small { color: var(--micro-c); font-size: 0.8rem; }
.footer2-bottom { display: flex; flex-wrap: wrap; gap: 0.8rem; align-items: center; justify-content: space-between; border-top: 1px solid rgba(244, 242, 251, 0.12); margin-top: 2.6rem; padding-top: 1.5rem; font-size: 0.85rem; }
.footer2-bottom a { color: var(--grey); text-decoration: none; }
.footer2-bottom a:hover { color: var(--ink); }

/* Legacy footer classes (other pages) */
.footer-outer { padding: 0; margin-top: 4rem; }
.footer-card { background: #131022; color: var(--grey); padding: 3rem 1.5rem 2rem; border-top: 1px solid var(--line); }
.footer-bottom { max-width: 1180px; margin: 0 auto; display: flex; flex-wrap: wrap; gap: 0.8rem; justify-content: space-between; font-size: 0.85rem; }
.footer-bottom a { color: var(--grey); text-decoration: none; }
.footer-bottom a:hover { color: var(--ink); }

/* ============ Consent + floating ============ */
.consent { position: fixed; bottom: 1.2rem; left: 1.2rem; z-index: 100; max-width: 400px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); box-shadow: var(--shadow-card); padding: 1.25rem 1.4rem; }
@media (max-width: 520px) { .consent { right: 1.2rem; } }
.consent p { font-size: 0.88rem; color: var(--body-c); }
.consent a { color: var(--ink); font-weight: 600; }
.consent-btns { display: flex; gap: 0.6rem; margin-top: 1rem; }
.btn-consent { border: 0; cursor: pointer; font-family: var(--font); font-weight: 600; font-size: 0.88rem; border-radius: 999px; padding: 0.6rem 1.4rem; transition: transform 0.15s ease; }
.btn-consent:active { transform: scale(0.97); }
.btn-consent.accept { background: var(--grad-btn); color: #170f2a; }
.btn-consent.decline { background: rgba(22, 17, 37, 0.08); color: var(--ink); }
.float-actions { position: fixed; right: 1.2rem; bottom: 1.2rem; z-index: 90; display: flex; flex-direction: column; align-items: flex-end; gap: 0.7rem; opacity: 0; transform: translateY(12px); pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease; }
.float-actions.show { opacity: 1; transform: none; pointer-events: auto; }
.float-top { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow-card); transition: transform 0.2s ease, border-color 0.2s ease; }
.float-top:hover { transform: translateY(-2px); border-color: rgba(139, 92, 246, 0.5); }
.float-top svg { width: 18px; height: 18px; stroke: var(--ink); fill: none; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.float-cta { font-weight: 600; font-size: 0.88rem; color: #170f2a; text-decoration: none; background: var(--grad-btn); border-radius: 999px; padding: 0.75rem 1.4rem; box-shadow: 0 12px 30px -12px rgba(139, 92, 246, 0.65); display: inline-flex; align-items: center; gap: 0.4rem; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.float-cta:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(139, 92, 246, 0.8); }
.float-arr { font-size: 1rem; line-height: 1; }
@media (max-width: 1023px) { .float-cta { display: none; } .float-actions { right: 1rem; bottom: 1rem; } }

/* ============ Blog ============ */
.blog-index { max-width: 1080px; margin: 0 auto; padding: 9rem 1.5rem 4rem; }
.blog-grid { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-top: 1rem; }
@media (min-width: 700px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); overflow: hidden; transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(139, 92, 246, 0.4); }
.blog-card-top { height: 90px; background: linear-gradient(180deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.02)), var(--panel); display: flex; align-items: flex-end; padding: 1rem 1.4rem; }
.blog-card-top span { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent-soft); background: rgba(13, 11, 19, 0.7); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 999px; padding: 0.3rem 0.8rem; }
.blog-card h2 { font-family: var(--serif); font-weight: 400; font-size: 1.35rem; margin: 1.2rem 1.4rem 0; }
.blog-card p { color: var(--body-c); font-size: 0.92rem; margin: 0.5rem 1.4rem 0; }
.blog-read { display: inline-block; margin: 0.9rem 1.4rem 1.4rem; font-weight: 700; font-size: 0.85rem; color: var(--accent); }
.post { max-width: 720px; margin: 0 auto; padding: 9rem 1.5rem 4rem; }
.post-back { font-weight: 600; font-size: 0.9rem; color: var(--grey); text-decoration: none; }
.post-back:hover { color: var(--accent); }
.post-meta { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--micro-c); margin: 1.4rem 0 0.6rem; }
.post h1 { font-size: clamp(2rem, 4.5vw, 2.8rem); }
.post-excerpt { color: var(--grey); font-size: 1.1rem; margin-top: 1rem; }
.post-body { margin-top: 2rem; }
.post-body h2 { font-size: 1.5rem; margin: 2.2rem 0 0.7rem; }
.post-body p { color: var(--body-c); margin-bottom: 1rem; line-height: 1.75; }
.post-cta {
  margin-top: 3rem;
  background: linear-gradient(#161125, #161125) padding-box,
              linear-gradient(150deg, rgba(139, 92, 246, 0.7), rgba(139, 92, 246, 0.1) 55%, rgba(244, 242, 251, 0.12)) border-box;
  border: 1px solid transparent;
  color: var(--ink);
  border-radius: var(--r-card);
  padding: 2.2rem;
  text-align: center;
  box-shadow: 0 30px 70px -40px rgba(139, 92, 246, 0.4);
}
.post-cta h2 { font-size: 1.6rem; margin: 0 auto 0.6rem; color: var(--ink); }
.post-cta p { color: var(--grey); margin-bottom: 1.4rem; }

/* ============ Contact page shell ============ */
.contact-page { min-height: 100vh; }
.form-shell { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-card); box-shadow: var(--shadow-card); }
.flabel { font-weight: 600; font-size: 0.9rem; }
.finput, .fselect, .ftextarea { font-family: var(--font); border: 1px solid var(--line); border-radius: 12px; background: var(--canvas); color: var(--ink); }
.finput:focus, .fselect:focus, .ftextarea:focus { outline: none; border-color: var(--accent); }
.chip-group .pick { border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--ink); font-weight: 600; }
.chip-group .pick.active { background: var(--grad-btn); color: #170f2a; border-color: transparent; }
.progress-bar { background: rgba(139, 92, 246, 0.14); border-radius: 999px; }
.progress-bar i, .progress-bar span { background: var(--grad-btn); }
.ferr { color: #a78bfa; }

/* ============ Legal ============ */
.legal { max-width: 760px; margin: 0 auto; padding: 9rem 1.5rem 5rem; }
.legal h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 2rem; }
.legal h2 { font-family: var(--font); font-weight: 700; font-size: 1.15rem; margin: 2.2rem 0 0.6rem; }
.legal p, .legal li { color: var(--body-c); }
.legal ul { padding-left: 1.2rem; margin-top: 0.4rem; }
.legal a { color: var(--accent); font-weight: 600; text-decoration: underline; }

/* ============ Reveal ============ */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.55s cubic-bezier(0.22,1,0.36,1), transform 0.55s cubic-bezier(0.22,1,0.36,1); }
.reveal.in { opacity: 1; transform: none; }
.grid-6 .reveal:nth-child(2), .grid-3 .reveal:nth-child(2) { transition-delay: 0.07s; }
.grid-6 .reveal:nth-child(3), .grid-3 .reveal:nth-child(3) { transition-delay: 0.14s; }
.grid-6 .reveal:nth-child(4) { transition-delay: 0.21s; }
.grid-6 .reveal:nth-child(5) { transition-delay: 0.28s; }
.grid-6 .reveal:nth-child(6) { transition-delay: 0.35s; }

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

/* Mobile hero */
@media (max-width: 640px) {
  .hero-v2 { min-height: 82vh; padding-top: 7.5rem; }
  .hero-v2 h1 { font-size: clamp(2.4rem, 11vw, 3.2rem); }
  .hero-ctas { flex-direction: column; width: 100%; max-width: 340px; }
  .hero-ctas .btn-aurora, .hero-ctas .btn-glass { width: 100%; }
}

/* ============ Hero v3 — panel composition ============ */
.hero3 { padding: 0; }
.hero3-panel {
  position: relative;
  max-width: none; margin: 0 auto;
  padding: 8.5rem 1.5rem 2.2rem;
  border-radius: 0;
  border: none;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(56% 46% at 16% 52%, rgba(139, 92, 246, 0.5), transparent 62%),
    radial-gradient(50% 52% at 84% 46%, rgba(167, 139, 250, 0.34), transparent 62%),
    radial-gradient(64% 58% at 50% 74%, rgba(76, 29, 149, 0.55), transparent 68%),
    linear-gradient(180deg, #100c08 0%, #0e0b15 42%, #0d0b13 100%);
}
.hero3-panel::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(13, 11, 19, 0.72), transparent 34%),
              radial-gradient(90% 60% at 50% 118%, rgba(13, 11, 19, 0.55), transparent 60%);
}
.hero3-panel > * { position: relative; z-index: 1; }
.hero3-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.8rem; font-weight: 600; color: var(--body-c);
  text-decoration: none;
  border: 1px solid rgba(244, 242, 251, 0.16);
  background: rgba(13, 11, 19, 0.55);
  border-radius: 999px;
  padding: 0.5rem 1.05rem;
  margin-bottom: 1.9rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.hero3-badge em { font-style: normal; color: var(--accent-soft); }
.hero3-badge:hover { border-color: rgba(139, 92, 246, 0.55); color: var(--ink); }
.hero3 h1 { font-size: clamp(2.9rem, 6.2vw, 5.4rem); line-height: 1.04; color: #d6d2e4; }
.hero3-sub { max-width: 52ch; margin: 1.5rem auto 2.1rem; color: var(--grey); font-size: 1.1rem; font-weight: 500; }
.hero3 .hero-ctas { display: flex; justify-content: center; gap: 0.8rem; flex-wrap: wrap; }

.hero3-stage { position: relative; max-width: 1150px; height: 660px; margin: 3.4rem auto 0; }
.h3-phone {
  position: relative; z-index: 2;
  width: fit-content; margin: 0 auto;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.6));
  will-change: transform;
}
.h3-phone img { display: block; height: 645px; width: auto; aspect-ratio: 9 / 18.5; object-fit: contain; }

.h3-card { position: absolute; z-index: 3; left: 3.5%; top: 47%; width: 385px; rotate: -7deg; }
.h3-card-in {
  border-radius: 22px;
  padding: 1.5rem 1.7rem 1.4rem;
  text-align: left;
  background: linear-gradient(140deg, #1e1730, #100d19 70%) padding-box,
              linear-gradient(140deg, #c4b5fd, #8b5cf6 45%, #4c1d95 90%) border-box;
  border: 1px solid transparent;
  box-shadow: 0 40px 90px -35px rgba(0, 0, 0, 0.95), 0 26px 80px -30px rgba(139, 92, 246, 0.4);
  animation: h3Float 7s ease-in-out infinite;
  overflow: hidden;
}
.h3-card-in::before { content: ''; position: absolute; top: -60%; left: -20%; width: 70%; height: 160%; background: radial-gradient(50% 50% at 50% 50%, rgba(167, 139, 250, 0.22), transparent 70%); pointer-events: none; }
.h3-card-top { display: flex; align-items: center; justify-content: space-between; }
.h3-card-brand { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent-soft); }
.h3-nfc { width: 22px; height: 22px; stroke: rgba(244, 242, 251, 0.55); fill: none; stroke-width: 1.8; stroke-linecap: round; }
.h3-as { display: flex; align-items: center; gap: 0.95rem; margin-top: 1.35rem; }
.h3-appicon { flex: none; width: 54px; height: 54px; border-radius: 14px; background: var(--grad-btn); display: grid; place-items: center; box-shadow: 0 10px 26px -10px rgba(139, 92, 246, 0.7); }
.h3-appicon img { width: 30px; height: auto; }
.h3-as b { display: block; font-size: 1.08rem; color: var(--ink); }
.h3-as small { display: block; font-size: 0.8rem; color: var(--micro-c); }
.h3-get { margin-left: auto; background: #f4f2fb; color: #131022; font-weight: 800; font-size: 0.78rem; letter-spacing: 0.05em; border-radius: 999px; padding: 0.5rem 1.15rem; }
.h3-stars { font-style: normal; color: var(--accent-soft); letter-spacing: 0.08em; }
.h3-card-bottom { display: flex; align-items: flex-end; justify-content: space-between; gap: 2rem; margin-top: 1.35rem; }
.h3-card-bottom small { display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--micro-c); }
.h3-card-bottom span { font-size: 0.92rem; font-weight: 600; color: var(--body-c); }

.h3-toast { position: absolute; z-index: 4; left: 57%; top: 12.5%; rotate: 2deg; }
.h3-toast-in {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.8rem 1.05rem;
  border-radius: 16px;
  background: rgba(20, 15, 33, 0.97);
  border: 1px solid rgba(139, 92, 246, 0.38);
  box-shadow: 0 24px 60px -25px rgba(0, 0, 0, 0.9), 0 16px 50px -18px rgba(139, 92, 246, 0.45);
  animation: h3Float 6.5s ease-in-out -3.1s infinite;
  text-align: left;
}
.h3-toast b { display: block; font-size: 0.88rem; color: var(--ink); }
.h3-toast small { display: block; font-size: 0.74rem; color: var(--micro-c); }
.h3-w { position: absolute; z-index: 2; }
.h3-w-in {
  border-radius: 20px;
  background: rgba(18, 14, 28, 0.96);
  border: 1px solid rgba(244, 242, 251, 0.12);
  box-shadow: 0 30px 70px -35px rgba(0, 0, 0, 0.9);
  animation: h3Float 8s ease-in-out infinite;
  text-align: left;
}
@keyframes h3Float { 50% { transform: translateY(-10px); } }
.h3-icon { width: 40px; height: 40px; border-radius: 11px; background: rgba(139, 92, 246, 0.1); border: 1px solid rgba(139, 92, 246, 0.3); display: grid; place-items: center; }
.h3-icon svg { width: 19px; height: 19px; stroke: var(--accent); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.h3-w2 { left: 4%; top: 8%; }
.h3-w2 .h3-w-in { width: 208px; padding: 1.2rem 1.3rem; animation-delay: -4.6s; }
.h3-light { background: #f1eefa !important; border-color: rgba(23, 20, 34, 0.08) !important; }
.h3-light small { display: block; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: #948da8; }
.h3-light b { display: block; font-size: 0.82rem; font-weight: 600; color: #6a6480; margin-top: 0.55rem; }
.h3-light strong { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.9rem; color: #161225; line-height: 1.1; }
.h3-light em { display: inline-block; font-style: normal; font-size: 0.74rem; font-weight: 700; color: #6d28d9; margin-top: 0.5rem; }
.h3-w3 { right: 3%; top: 9%; }
.h3-w4 { right: 5.5%; top: 44%; }
.h3-w3 .h3-w-in { width: 252px; animation-delay: -1.4s; }
.h3-w4 .h3-w-in { width: 252px; animation-delay: -5.8s; }
.h3-table { padding: 0.95rem 1.1rem 1.05rem; }
.h3-th { display: flex; justify-content: space-between; align-items: center; font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--micro-c); padding-bottom: 0.7rem; border-bottom: 1px solid rgba(244, 242, 251, 0.1); }
.h3-live { display: inline-flex; align-items: center; gap: 0.35rem; color: var(--accent-soft); }
.h3-live i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 8px rgba(139, 92, 246, 0.9); }
.h3-tr { display: flex; align-items: center; gap: 0.7rem; padding-top: 0.85rem; font-size: 0.88rem; font-weight: 600; color: var(--body-c); }
.h3-tr b { margin-left: auto; color: var(--accent-soft); font-weight: 700; }
.h3-tr b.h3-dim { color: var(--micro-c); }
.h3-icon-s { width: 30px; height: 30px; border-radius: 9px; flex: none; }
.h3-icon-s svg { width: 15px; height: 15px; }

.hero3-foot { text-align: center; padding: 2.6rem 1rem 0.4rem; }
.hero3-foot b { display: block; font-family: var(--serif); font-weight: 400; font-size: 1.7rem; color: var(--ink); }
.hero3-foot span { display: block; margin-top: 0.4rem; font-size: 0.9rem; color: var(--micro-c); font-weight: 500; }

@media (max-width: 979px) {
  .hero3 { padding-top: 5.2rem; }
  .hero3-panel { padding-top: 3.4rem; padding-left: 0.9rem; padding-right: 0.9rem; }
  .hero3-stage { height: auto; padding-bottom: 15vw; margin-top: 2.6rem; }
  .h3-phone { margin-top: 7vw; }
  .h3-phone img { height: 106vw; }
  .h3-w2 { left: 0; top: 0; }
  .h3-w2 .h3-w-in { width: 36vw; padding: 0.8rem 0.85rem; }
  .h3-light strong { font-size: 1.3rem; }
  .h3-light small { font-size: 0.52rem; }
  .h3-light b { font-size: 0.68rem; margin-top: 0.35rem; }
  .h3-light em { font-size: 0.62rem; margin-top: 0.3rem; }
  .h3-w3 { right: 0; top: 2%; }
  .h3-w3 .h3-w-in, .h3-w4 .h3-w-in { width: 43vw; }
  .h3-table { padding: 0.7rem 0.75rem 0.8rem; }
  .h3-th { font-size: 0.55rem; padding-bottom: 0.5rem; }
  .h3-tr { font-size: 0.7rem; gap: 0.45rem; padding-top: 0.6rem; }
  .h3-icon-s { width: 22px; height: 22px; border-radius: 7px; }
  .h3-icon-s svg { width: 11px; height: 11px; }
  .h3-toast { left: -1%; right: auto; top: 40%; rotate: -2deg; }
  .h3-toast-in { padding: 0.55rem 0.75rem; gap: 0.5rem; }
  .h3-toast b { font-size: 0.72rem; }
  .h3-toast small { font-size: 0.6rem; }
  .h3-w4 { right: -1%; top: 47%; }
  .h3-card { left: 50%; top: auto; bottom: 0; translate: -50% 0; rotate: -5deg; width: min(310px, 76vw); }
  .h3-card-in { padding: 1rem 1.2rem 1rem; }
  .h3-card-brand { font-size: 0.6rem; }
  .h3-nfc { width: 17px; height: 17px; }
  .h3-as { gap: 0.6rem; margin-top: 0.9rem; }
  .h3-as b { font-size: 0.85rem; }
  .h3-as small { font-size: 0.68rem; }
  .h3-appicon { width: 38px; height: 38px; border-radius: 10px; }
  .h3-appicon img { width: 21px; }
  .h3-get { font-size: 0.66rem; padding: 0.4rem 0.9rem; }
  .h3-card-bottom { gap: 1rem; margin-top: 0.9rem; }
  .h3-card-bottom small { font-size: 0.52rem; }
  .h3-card-bottom span { font-size: 0.76rem; }
  .h3-card-bottom { gap: 1.2rem; }
  .hero3 h1 { font-size: clamp(2.5rem, 10vw, 3.4rem); }
  .hero3 .hero-ctas { flex-direction: column; align-items: center; }
  .hero3 .hero-ctas .btn-aurora, .hero3 .hero-ctas .btn-glass { width: 100%; max-width: 340px; }
}

/* ============ Nav — floating pill ============ */
.nav { padding: 0.85rem 1rem 0; }
.nav.nav-hidden { transform: translateY(-130%); }
.nav-inner {
  max-width: 780px;
  border-radius: 999px;
  border: 1px solid rgba(244, 242, 251, 0.13);
  background: rgba(13, 11, 19, 0.94);
  padding: 0.45rem 0.5rem 0.45rem 0.95rem;
  gap: 1.2rem;
  box-shadow: 0 1px 0 rgba(139, 92, 246, 0.14) inset, 0 18px 50px -25px rgba(0, 0, 0, 0.9);
}
.nav-scrolled .nav-inner { padding-top: 0.38rem; padding-bottom: 0.38rem; }
.logo { gap: 0.6rem; }
.logo-mark { height: 38px; width: 38px; padding: 8px; border-radius: 12px; background: #0f0c18; }
.nav-scrolled .logo-mark { height: 34px; width: 34px; }
.nav-links { gap: 0.3rem; }
.nav-links a { font-size: 0.9rem; padding: 0.48rem 0.9rem; border-radius: 999px; transition: background 0.2s ease, color 0.2s ease; }
.nav-links a::after { content: none; }
.nav-links a:hover { background: rgba(244, 242, 251, 0.08); }
.nav-cta {
  background: var(--grad-btn); color: #170f2a;
  padding: 0.6rem 1.3rem;
  box-shadow: 0 10px 26px -12px rgba(139, 92, 246, 0.55);
}
.nav-cta:hover { background: var(--grad-btn); color: #170f2a; box-shadow: 0 14px 32px -12px rgba(139, 92, 246, 0.75); }
@media (max-width: 640px) { .logo-word { display: none; } }

/* ============ Studio (about band) ============ */
.section-about { background: radial-gradient(50% 45% at 18% 30%, rgba(139, 92, 246, 0.05), transparent 70%); }
.ab-head { margin-bottom: 2.4rem; }
.ab-head .chip { margin-bottom: 0.9rem; }
.ab-bento { display: grid; gap: 1.15rem; }
@media (min-width: 1024px) {
  .ab-bento { grid-template-columns: repeat(12, 1fr); }
  .ab-cardA { grid-column: 1 / 9; }
  .ab-cardD { grid-column: 9 / 13; display: flex; flex-direction: column; justify-content: flex-end; }
  .ab-cardD .ab-sprint { margin-bottom: auto; }
  .ab-bento > .ab-card:nth-child(3), .ab-bento > .ab-card:nth-child(4) { grid-column: span 6; }
  .ab-cardS .ab-review, .ab-cardO .ab-term { margin-top: -0.4rem; }
}
.ab-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  padding: 1.9rem;
  transition: border-color 0.25s ease;
}
.ab-card:hover { border-color: rgba(139, 92, 246, 0.35); }
.ab-k { font-size: 0.66rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--micro-c); margin-bottom: 0.8rem; }
.ab-card h3 { font-size: 1.18rem; }
.ab-card > p:not(.ab-k), .ab-cardA-copy > p:not(.ab-k) { color: var(--body-c); font-size: 0.93rem; margin-top: 0.55rem; }
.ab-cardA { display: grid; gap: 1.7rem; align-items: center; }
@media (min-width: 700px) { .ab-cardA { grid-template-columns: 1.05fr 0.95fr; } }
.ab-cardD { position: relative; overflow: visible; display: flex; flex-direction: column; }
.ab-cardD .ab-k { margin-top: 1.5rem; }
.ab-sprint {
  position: relative;
  width: min(238px, 100%);
  margin: -3rem -0.4rem 0 auto;
  rotate: 1.5deg;
  background: #131022;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.9), 0 18px 55px -20px rgba(139, 92, 246, 0.3);
}
.ab-sp-head { display: flex; justify-content: space-between; align-items: center; padding: 0.6rem 0.85rem; border-bottom: 1px solid var(--line); font-weight: 700; font-size: 0.82rem; color: var(--ink); }
.ab-sp-head i { width: 8px; height: 8px; border-radius: 50%; background: var(--grad-btn); box-shadow: 0 0 10px rgba(139, 92, 246, 0.8); }
.ab-sp-days { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 0.55rem 0.7rem 0; font-size: 0.55rem; font-weight: 700; letter-spacing: 0.05em; color: var(--micro-c); text-align: center; }
.ab-sp-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 4px; padding: 0.35rem 0.7rem 0.6rem; }
.ab-sp-grid i { aspect-ratio: 1; border-radius: 6px; background: rgba(244, 242, 251, 0.06); }
.ab-sp-grid i.on { background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3); animation: abGlowSeq 5s ease-in-out infinite; }
.ab-sp-grid i.d2 { animation-delay: 0.5s; } .ab-sp-grid i.d3 { animation-delay: 1s; }
.ab-sp-grid i.d4 { animation-delay: 1.5s; } .ab-sp-grid i.d5 { animation-delay: 2s; }
@keyframes abGlowSeq { 0%, 28%, 100% { box-shadow: none; } 12% { box-shadow: 0 0 12px rgba(139, 92, 246, 0.75); } }
.ab-sp-grid i.hot { background: var(--grad-btn); animation: abPulse 2.8s ease-in-out infinite; }
.ab-sp-foot { display: flex; align-items: center; gap: 0.45rem; padding: 0.5rem 0.85rem 0.65rem; border-top: 1px solid var(--line); font-size: 0.58rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--micro-c); }
.ab-sp-foot i { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); animation: abPulse 2.2s ease-in-out infinite; }
.ab-c5 { color: #8b5cf6; right: -6%; top: 44%; animation-name: abMove5; animation-duration: 12s; }
.ab-c5 span { background: var(--grad-btn); color: #170f2a; }
.ab-cta { text-align: center; margin-top: 2.6rem; }
@keyframes abMove5 { 0%, 100% { transform: translate(0, 0); } 32% { transform: translate(-66px, 28px); } 62% { transform: translate(-26px, 72px); } }
.ab-canvas { position: relative; }
.ab-window { background: #15121f; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.ab-bar { display: flex; align-items: center; gap: 6px; padding: 0.7rem 0.9rem; border-bottom: 1px solid var(--line); }
.ab-bar i { width: 8px; height: 8px; border-radius: 50%; background: rgba(244, 242, 251, 0.18); }
.ab-bar i:first-child { background: rgba(139, 92, 246, 0.7); }
.ab-tab { margin-left: auto; width: 26%; height: 8px; border-radius: 999px; background: rgba(244, 242, 251, 0.1); }
.ab-board { padding: 1.4rem; display: flex; justify-content: center; background: radial-gradient(70% 80% at 50% 0%, rgba(139, 92, 246, 0.05), transparent 70%); }
.ab-artboard { width: min(240px, 70%); background: #110e1b; border: 1px solid rgba(244, 242, 251, 0.13); border-radius: 18px; padding: 1.1rem; display: grid; gap: 0.65rem; }
.ab-line { display: block; height: 9px; border-radius: 999px; background: linear-gradient(100deg, rgba(244, 242, 251, 0.16) 40%, rgba(244, 242, 251, 0.3) 50%, rgba(244, 242, 251, 0.16) 60%); background-size: 220% 100%; animation: abSheen 3.6s linear infinite; }
.ab-line.dim { opacity: 0.55; animation-delay: -1.4s; }
.ab-line.w35 { width: 35%; } .ab-line.w45 { width: 45%; } .ab-line.w55 { width: 55%; } .ab-line.w70 { width: 70%; }
@keyframes abSheen { to { background-position: -220% 0; } }
.ab-heroblk { height: 62px; border-radius: 12px; background: linear-gradient(140deg, rgba(139, 92, 246, 0.22), rgba(139, 92, 246, 0.05) 65%), rgba(244, 242, 251, 0.06); border: 1px solid rgba(139, 92, 246, 0.22); }
.ab-tiles { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.5rem; }
.ab-tiles i { height: 30px; border-radius: 9px; background: rgba(244, 242, 251, 0.08); border: 1px solid rgba(244, 242, 251, 0.09); }
.ab-pill { display: block; height: 24px; width: 58%; margin: 0.15rem auto 0; border-radius: 999px; background: var(--grad-btn); box-shadow: 0 6px 18px -6px rgba(139, 92, 246, 0.6); animation: abPulse 3s ease-in-out infinite; }
@keyframes abPulse { 50% { box-shadow: 0 6px 26px -4px rgba(139, 92, 246, 0.85); } }
.ab-cursor { position: absolute; display: flex; align-items: flex-start; gap: 2px; animation: 14s ease-in-out infinite; }
.ab-cursor svg { width: 15px; height: 15px; fill: currentColor; stroke: #0d0b13; stroke-width: 1.2; transform: translateY(2px); }
.ab-cursor span { font-size: 0.68rem; font-weight: 700; border-radius: 999px; padding: 0.28rem 0.6rem; white-space: nowrap; }
.ab-c1 { color: #8b5cf6; left: 8%; top: 14%; animation-name: abMove1; }
.ab-c1 span { background: var(--grad-btn); color: #170f2a; }
.ab-c2 { color: #f4f2fb; right: 6%; top: 26%; animation-name: abMove2; animation-duration: 16s; }
.ab-c2 span { background: #f4f2fb; color: #131022; }
.ab-c3 { color: #a78bfa; left: 12%; bottom: 16%; animation-name: abMove3; animation-duration: 18s; }
.ab-c3 span { background: rgba(21, 18, 31, 0.95); color: var(--accent-soft); border: 1px solid rgba(139, 92, 246, 0.45); }
.ab-c4 { color: #a78bfa; right: 10%; bottom: 8%; animation-name: abMove4; animation-duration: 15s; }
.ab-c4 span { background: rgba(139, 92, 246, 0.16); color: var(--accent-soft); border: 1px solid rgba(139, 92, 246, 0.35); }
@keyframes abMove1 { 0%, 100% { transform: translate(0, 0); } 22% { transform: translate(52px, 38px); } 48% { transform: translate(14px, 96px); } 74% { transform: translate(70px, 20px); } }
@keyframes abMove2 { 0%, 100% { transform: translate(0, 0); } 26% { transform: translate(-64px, 52px); } 52% { transform: translate(-18px, 118px); } 78% { transform: translate(-84px, 12px); } }
@keyframes abMove3 { 0%, 100% { transform: translate(0, 0); } 24% { transform: translate(66px, -34px); } 50% { transform: translate(120px, -86px); } 76% { transform: translate(28px, -8px); } }
@keyframes abMove4 { 0%, 100% { transform: translate(0, 0); } 28% { transform: translate(-58px, -46px); } 55% { transform: translate(-110px, -12px); } 80% { transform: translate(-26px, -70px); } }
.u-swoosh { position: relative; display: inline-block; }
.u-swoosh::after { content: ''; position: absolute; left: -1%; right: -1%; bottom: 0.02em; height: 5px; border-radius: 999px; background: var(--grad-btn); box-shadow: 0 0 16px rgba(139, 92, 246, 0.6); transform: rotate(-1.2deg); }
@media (max-width: 640px) {
  .ab-card { padding: 1.5rem; }
  .ab-sprint { margin: -2.5rem 0 0 auto; }
}


/* ============ Light canvas: dark islands keep their palette ============ */
.nav-inner, .hero3-panel, .footer2, .footer-card, .tier-pink .price-card, .post-cta,
.form-shell, .h3-w-in:not(.h3-light), .h3-toast-in, .h3-card-in, .ab-sprint, .price-panel {
  --ink: #f4f2fb;
  --grey: #a49dba;
  --micro-c: #8f88a6;
  --body-c: #c6c0d6;
  --line: rgba(244, 242, 251, 0.12);
}
.ab-cursor span { box-shadow: 0 6px 16px -6px rgba(20, 14, 34, 0.35); }
.ab-c2 span { border: 1px solid rgba(22, 17, 37, 0.15); }

/* Pricing: Elite monthly line + add-ons strip */
.price-mo { font-size: 0.95rem; font-weight: 800; color: var(--accent-soft); margin-top: 0.3rem; }
.tier-gold .price-mo { color: #6d28d9; }
.price-addons {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.7rem 1.1rem;
  margin: 1.8rem auto 0; padding: 0.9rem 1.4rem;
  max-width: 860px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.pa-label { font-size: 0.64rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.16em; color: var(--accent); }
.pa-item { font-size: 0.88rem; color: var(--body-c); }
.pa-item b { color: var(--ink); }
@media (max-width: 700px) { .price-addons { border-radius: 18px; flex-direction: column; gap: 0.45rem; text-align: center; } }


/* ============ Pricing: ember panel ============ */
.price-panel {
  position: relative;
  border-radius: 34px;
  border: 1px solid rgba(244, 242, 251, 0.1);
  padding: 3.4rem clamp(1rem, 3vw, 2.8rem) 2.6rem;
  overflow: hidden;
  background:
    radial-gradient(52% 44% at 14% 18%, rgba(139, 92, 246, 0.28), transparent 62%),
    radial-gradient(46% 48% at 88% 82%, rgba(167, 139, 250, 0.2), transparent 62%),
    radial-gradient(70% 60% at 50% 108%, rgba(76, 29, 149, 0.4), transparent 68%),
    linear-gradient(180deg, #131022, #0d0b13);
}
.price-panel > * { position: relative; z-index: 1; }
.price-panel .sec-head { margin-bottom: 2.6rem; }
.price-panel .price-card { border-color: rgba(244, 242, 251, 0.14); }
.price-panel .tier-pink .price-card { border: 1px solid rgba(139, 92, 246, 0.5); box-shadow: 0 34px 80px -38px rgba(139, 92, 246, 0.65), 0 24px 60px -30px rgba(0, 0, 0, 0.8); }
.price-panel .tier-pink .price-card:hover { box-shadow: 0 40px 95px -38px rgba(139, 92, 246, 0.8), 0 24px 60px -30px rgba(0, 0, 0, 0.85); }
.price-panel .price-card:hover { transform: translateY(-6px); }
.price-panel .tier-bar { background: #0e0b15; }
.price-panel .tier-pink .tier-bar { background: var(--grad-btn); }
.price-panel .price-addons { background: rgba(244, 242, 251, 0.06); border-color: rgba(244, 242, 251, 0.16); }
.price-panel .pa-item { color: #c6c0d6; }
.price-panel .pa-item b { color: #f4f2fb; }
@media (max-width: 640px) { .price-panel { border-radius: 24px; padding-top: 2.4rem; } }
.price-panel { color: var(--ink); }
.price-panel .price-wrap:not(.tier-pink) .price-card {
  background: #ffffff;
  color: var(--ink);
  --ink: #161125;
  --grey: #6a6480;
  --micro-c: #89819e;
  --body-c: #48425c;
  --line: rgba(22, 17, 37, 0.12);
}

/* ============ Found-style revamp ============ */
/* Two-line display headlines: small lead + huge caps */
.h2-lead { display: block; font-family: var(--serif); font-style: italic; font-weight: 400; font-size: clamp(1.2rem, 2vw, 1.6rem); color: var(--grey); letter-spacing: 0; margin-bottom: 0.2em; }
.h2-caps { display: block; font-family: var(--font); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; font-size: clamp(2.4rem, 5.4vw, 4.2rem); line-height: 1.02; color: var(--ink); }
.price-panel .h2-caps { color: #f4f2fb; }

/* Ember video behind the hero panel */
.hero3-bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.5; }

/* Full-bleed statement video band */
.vband { position: relative; overflow: hidden; background: #0d0a15; min-height: 68vh; display: grid; place-items: center; text-align: center; padding: 6rem 1.5rem; }
.vband-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.vband::after { content: ''; position: absolute; inset: 0; background: radial-gradient(80% 70% at 50% 50%, rgba(11, 8, 16, 0.25), rgba(11, 8, 16, 0.7)); }
.vband-inner { position: relative; z-index: 1; }
.vband .h2-lead { color: rgba(244, 242, 251, 0.75); }
.vband .h2-caps { color: #f4f2fb; text-shadow: 0 8px 40px rgba(0, 0, 0, 0.6); font-size: clamp(2.2rem, 5.8vw, 4.6rem); }
.vband .btn-aurora { margin-top: 2.2rem; }

/* Values marquee: big bold caps loop */
.marquee-big { background: transparent; padding: 1.7rem 0; }
.marquee-big .marquee-track { gap: 3rem; animation-duration: 30s; }
.marquee-big .marquee-track span { font-size: clamp(1.4rem, 2.6vw, 2.2rem); font-weight: 900; letter-spacing: 0.02em; color: var(--ink); text-transform: uppercase; }
.marquee-big .marquee-track i { width: 9px; height: 9px; box-shadow: 0 0 10px rgba(139, 92, 246, 0.8); }

/* ============ Our Work: NERA-style outcome tiles + build gallery ============ */
.wk-grid { display: grid; gap: 1.2rem; }
@media (min-width: 900px) { .wk-grid { grid-template-columns: 1fr 1fr; } .wk-wide { grid-column: 1 / -1; } }
.wk-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-card);
  overflow: hidden;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.wk-card:hover { transform: translateY(-5px); border-color: rgba(139, 92, 246, 0.45); box-shadow: 0 30px 65px -35px rgba(139, 92, 246, 0.35), var(--shadow-card); }
.wk-media { aspect-ratio: 16 / 9.5; background: var(--panel); }
.wk-wide .wk-media { aspect-ratio: 16 / 6.2; }
.wk-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.wk-body { padding: 1.5rem 1.8rem 1.8rem; }
.wk-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; margin-bottom: 0.9rem; }
.wk-tags span { font-size: 0.62rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--grey); border: 1px solid var(--line); border-radius: 999px; padding: 0.3rem 0.75rem; }
.wk-tags .wk-badge { color: var(--accent-deep); border-color: rgba(139, 92, 246, 0.4); background: rgba(139, 92, 246, 0.07); }
.wk-card h3 { font-family: var(--serif); font-weight: 400; font-size: 1.75rem; letter-spacing: -0.01em; }
.wk-card .wk-body p:last-child { color: var(--body-c); font-size: 0.96rem; line-height: 1.6; margin-top: 0.55rem; max-width: 72ch; }
.wk-gallery { margin-top: 1.4rem; overflow: hidden; }
.wk-track { display: flex; align-items: center; gap: 1rem; width: max-content; animation: marquee 48s linear infinite; }
.wk-gallery:hover .wk-track { animation-play-state: paused; }
.wk-track img { height: 230px; width: auto; border-radius: 16px; border: 1px solid var(--line); object-fit: cover; display: block; box-shadow: var(--shadow-card); }
@media (max-width: 640px) { .wk-track img { height: 160px; } .wk-body { padding: 1.2rem 1.3rem 1.4rem; } }

/* ============ White islands on the dark canvas ============ */
.wk-card, .ab-card, .tile-card, .founder-card {
  background: #ffffff;
  color: #161125;
  --ink: #161125;
  --grey: #6a6480;
  --micro-c: #89819e;
  --body-c: #48425c;
  --line: rgba(22, 17, 37, 0.12);
  --panel: #f1ede4;
  border-color: rgba(22, 17, 37, 0.1);
}
.founder-card {
  background: linear-gradient(#ffffff, #ffffff) padding-box,
              linear-gradient(160deg, rgba(139, 92, 246, 0.65), rgba(139, 92, 246, 0.12) 55%, rgba(22, 17, 37, 0.12)) border-box;
  border: 1px solid transparent;
}
.tile-card:hover { background: #ffffff; }
.wk-card:hover, .tile-card:hover { border-color: rgba(139, 92, 246, 0.5); }
.ab-card:hover { border-color: rgba(139, 92, 246, 0.45); }
.wk-tags span { color: #6a6480; }
.wk-card h3, .ab-card h3, .tile-card h3 { color: #161125; }


/* ============ Full-bleed hero + pricing ============ */
#pricing { padding: 0; }
#pricing .section-inner { max-width: none; padding: 0; }
.price-panel { border-radius: 0; border: none; padding: 5.5rem clamp(1rem, 4vw, 3rem) 4rem; }
.price-panel .sec-head, .price-panel .grid-3 { max-width: 1180px; margin-left: auto; margin-right: auto; }
.hero3-foot { padding-bottom: 0.2rem; }
@media (max-width: 979px) {
  .hero3-panel { padding-top: 6.6rem !important; }
}
@media (max-width: 640px) {
  .price-panel { border-radius: 0; padding-top: 3.6rem; }
}

/* ============ Hero: split layout ============ */
.hero3-grid { max-width: 1240px; margin: 0 auto; display: grid; gap: 2.4rem; align-items: center; }
.hero3-panel { padding-top: 7.6rem; padding-bottom: 1.6rem; }
@media (min-width: 1024px) {
  .hero3-grid { grid-template-columns: 1.04fr 0.96fr; gap: 2rem; }
  .hero3-copy { text-align: left; }
  .hero3-copy .hero3-badge { margin-bottom: 1.6rem; }
  .hero3 .hero3-copy h1 { font-size: clamp(2.8rem, 4.7vw, 4.5rem); }
  .hero3-copy .hero3-sub { margin: 1.4rem 0 2.1rem; max-width: 44ch; }
  .hero3-copy .hero-ctas { justify-content: flex-start; }
  .hero3-stage { height: 600px; margin: 0; width: 100%; }
  .h3-phone img { height: 560px; }
  .h3-w2 { left: 0; top: 3%; }
  .h3-w3 { right: -1%; top: 0; }
  .h3-toast { left: auto; right: -3%; top: 30%; }
  .h3-w4 { right: 0; top: 62%; }
  .h3-card { left: -3%; top: 56%; width: 320px; }
  .h3-card-big-spacer { display: none; }
}
.hero3-foot { margin-top: 1.6rem; }

/* Hero split: contrast + seating */
.hero3-stage::before { content: ''; position: absolute; inset: -6% -10%; background: radial-gradient(48% 44% at 50% 46%, rgba(139, 92, 246, 0.22), transparent 70%); pointer-events: none; }
.h3-w-in { background: rgba(13, 11, 19, 0.92); border-color: rgba(244, 242, 251, 0.17); }
.h3-toast-in { background: rgba(13, 11, 19, 0.94); }
@media (min-width: 1024px) {
  .h3-w4 { top: 58%; }
  .h3-toast { top: 26%; }
}

/* Hero floaters: smaller */
@media (min-width: 1024px) {
  .h3-w2 .h3-w-in { width: 172px; padding: 0.95rem 1.05rem; }
  .h3-light strong { font-size: 1.55rem; }
  .h3-light small { font-size: 0.56rem; }
  .h3-light b { font-size: 0.72rem; }
  .h3-light em { font-size: 0.66rem; }
  .h3-w3 .h3-w-in, .h3-w4 .h3-w-in { width: 212px; }
  .h3-table { padding: 0.8rem 0.9rem 0.9rem; }
  .h3-th { font-size: 0.6rem; }
  .h3-tr { font-size: 0.78rem; gap: 0.55rem; padding-top: 0.7rem; }
  .h3-icon-s { width: 26px; height: 26px; }
  .h3-icon-s svg { width: 13px; height: 13px; }
  .h3-toast-in { padding: 0.65rem 0.85rem; gap: 0.6rem; }
  .h3-toast b { font-size: 0.8rem; }
  .h3-toast small { font-size: 0.68rem; }
  .h3-card { width: 268px; }
  .h3-card-in { padding: 1.15rem 1.3rem 1.1rem; }
  .h3-card-brand { font-size: 0.62rem; }
  .h3-nfc { width: 18px; height: 18px; }
  .h3-as { gap: 0.7rem; margin-top: 1rem; }
  .h3-appicon { width: 42px; height: 42px; border-radius: 11px; }
  .h3-appicon img { width: 24px; }
  .h3-as b { font-size: 0.92rem; }
  .h3-as small { font-size: 0.7rem; }
  .h3-get { font-size: 0.68rem; padding: 0.42rem 0.95rem; }
  .h3-card-bottom { margin-top: 1rem; gap: 1.1rem; }
  .h3-card-bottom small { font-size: 0.56rem; }
  .h3-card-bottom span { font-size: 0.8rem; }
}

/* ============ Our Work: scroll-stacking cards ============ */
.stack { --stk-top: 96px; }
.stk-card {
  position: sticky;
  display: grid;
  gap: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 -18px 50px -30px rgba(22, 17, 37, 0.35), var(--shadow-card);
  min-height: min(72vh, 620px);
}
.stk-card + .stk-card { margin-top: 11vh; }
.stk-card:nth-child(1) { top: var(--stk-top); }
.stk-card:nth-child(2) { top: calc(var(--stk-top) + 22px); }
.stk-card:nth-child(3) { top: calc(var(--stk-top) + 44px); }
.stk-card:nth-child(4) { top: calc(var(--stk-top) + 66px); }
.stk-card:nth-child(5) { top: calc(var(--stk-top) + 88px); }
.stack { padding-bottom: 4vh; }
@media (min-width: 900px) { .stk-card { grid-template-columns: 0.92fr 1.08fr; } }
.stk-copy { padding: clamp(1.6rem, 3.5vw, 3.2rem); display: flex; flex-direction: column; justify-content: center; }
.stk-copy h3 { font-family: var(--serif); font-weight: 400; font-size: clamp(1.9rem, 3.2vw, 2.9rem); letter-spacing: -0.01em; }
.stk-copy p:last-child { font-size: 1rem; line-height: 1.65; margin-top: 0.8rem; max-width: 48ch; color: var(--body-c); }
.stk-media { position: relative; min-height: 280px; }
.stk-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
/* colour variants */
.stk-d1, .stk-d2, .stk-d3 {
  background: radial-gradient(60% 70% at 85% 20%, rgba(139, 92, 246, 0.22), transparent 65%), #131022;
  --ink: #f4f2fb; --grey: #a49dba; --micro-c: #8f88a6; --body-c: #c6c0d6; --line: rgba(244, 242, 251, 0.13);
}
.stk-d2 { background: radial-gradient(60% 70% at 15% 85%, rgba(109, 40, 217, 0.3), transparent 65%), #15121f; }
.stk-d3 { background: linear-gradient(150deg, #1e1533, #131022 55%), radial-gradient(50% 60% at 80% 80%, rgba(196, 181, 253, 0.16), transparent 70%), #131022; }
.stk-w1, .stk-w2 { background: #ffffff; }
.stk-d1 h3, .stk-d2 h3, .stk-d3 h3 { color: #f4f2fb; }
.stk-card .wk-tags { margin-bottom: 1.1rem; }
/* smooth: pinned cards settle back as the next overlaps */
@supports (animation-timeline: view()) {
  .stk-card { animation: stkExit linear both; animation-timeline: view(); animation-range: exit-crossing 0% exit-crossing 90%; will-change: transform, opacity; }
  @keyframes stkExit { to { transform: scale(0.94) translateY(-8px); opacity: 0.55; } }
}
@media (max-width: 899px) {
  .stk-card { min-height: 0; }
  .stk-media { min-height: 220px; order: -1; }
  .stk-card + .stk-card { margin-top: 7vh; }
}

/* ============ Compare table ============ */
.cmp-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.cmp {
  min-width: 660px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cmp-head, .cmp-row {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
}
.cmp-head { background: #131022; }
.cmp-head > * { padding: 1.15rem 1rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.2rem; }
.cmp-head .cmp-feature { align-items: flex-start; justify-content: center; padding-left: 1.6rem; }
.cmp-feature span { font-size: 0.66rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.15em; color: #8f88a6; }
.cmp-col b { color: #f4f2fb; font-size: 0.9rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; }
.cmp-col span { color: #a49dba; font-size: 0.7rem; font-weight: 700; }
.cmp-appro b { background: var(--grad-shine); background-size: 200% 100%; -webkit-background-clip: text; background-clip: text; color: transparent; }
.cmp-appro span { color: var(--accent-soft); }
.cmp-row { border-top: 1px solid var(--line); }
.cmp-row p { padding: 1.05rem 1rem 1.05rem 1.6rem; font-size: 0.97rem; font-weight: 600; color: var(--ink); display: flex; align-items: center; }
.cmp-row .ci { justify-self: center; align-self: center; margin-block: 1rem; }
/* Appro column highlight: one clean full-height band over the second track (1.7+1+1+1 tracks) */
.cmp { position: relative; }
.cmp::before {
  content: '';
  position: absolute; top: 0; bottom: 0;
  left: 36.17%; width: 21.28%;
  background: rgba(139, 92, 246, 0.07);
  border-inline: 1px solid rgba(139, 92, 246, 0.16);
  pointer-events: none;
}
.cmp-head > :nth-child(2) { background: rgba(139, 92, 246, 0.2); }
.cmp-row { transition: background 0.2s ease; }
.cmp-row:hover { background: rgba(139, 92, 246, 0.05); }
/* verdict icons */
.ci { width: 30px; height: 30px; border-radius: 50%; position: relative; flex: none; }
.ci::after { content: ''; position: absolute; inset: 0; }
.ci.y { background: var(--grad-btn); box-shadow: 0 5px 14px -4px rgba(139, 92, 246, 0.6); }
.ci.y::after {
  background: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 12.7l3.6 3.6 7.4-8'/%3E%3C/svg%3E") center / 58% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.5 12.7l3.6 3.6 7.4-8'/%3E%3C/svg%3E") center / 58% no-repeat;
}
.ci.p { background: rgba(22, 17, 37, 0.08); }
.ci.p::after {
  background: var(--grey);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E") center / 52% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.4' stroke-linecap='round'%3E%3Cpath d='M6 12h12'/%3E%3C/svg%3E") center / 52% no-repeat;
}
.ci.n { background: rgba(214, 69, 98, 0.13); }
.ci.n::after {
  background: #c94062;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 50% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3.2' stroke-linecap='round'%3E%3Cpath d='M7 7l10 10M17 7L7 17'/%3E%3C/svg%3E") center / 50% no-repeat;
}
@media (max-width: 640px) {
  .cmp-row p { font-size: 0.88rem; padding-left: 1.1rem; }
}


/* ============ Ambient atmosphere + section blending ============ */
body {
  background-image:
    radial-gradient(42% 30% at 88% 3%, rgba(139, 92, 246, 0.07), transparent 62%),
    radial-gradient(46% 34% at 6% 38%, rgba(196, 181, 253, 0.08), transparent 64%),
    radial-gradient(40% 30% at 92% 72%, rgba(139, 92, 246, 0.05), transparent 60%);
}
#our-work.section {
  background:
    radial-gradient(46% 38% at 92% 8%, rgba(139, 92, 246, 0.08), transparent 62%),
    radial-gradient(42% 34% at 4% 82%, rgba(196, 181, 253, 0.09), transparent 60%);
}
#studio.section {
  background:
    radial-gradient(44% 36% at 6% 12%, rgba(196, 181, 253, 0.1), transparent 62%),
    radial-gradient(42% 34% at 94% 78%, rgba(139, 92, 246, 0.07), transparent 60%);
}
#compare.section {
  background: radial-gradient(60% 55% at 50% 55%, rgba(139, 92, 246, 0.09), transparent 68%);
}
#who-we-build-for.section {
  background: radial-gradient(46% 40% at 88% 90%, rgba(196, 181, 253, 0.09), transparent 62%);
}
/* hero bottom mists into the page */
.hero3-panel::after {
  background:
    radial-gradient(120% 60% at 50% 0%, transparent 60%, rgba(6, 4, 16, 0.55) 100%);
}
/* statement band fades into pricing below */
.vband::after {
  background:
    radial-gradient(80% 70% at 50% 50%, rgba(11, 8, 16, 0.25), rgba(11, 8, 16, 0.7));
}
/* pricing panel: starfield + waves, dark top from the statement band, misty bottom into the page */
.price-panel {
  background:
    linear-gradient(180deg, #0d0b13 0%, rgba(13, 11, 19, 0) 16%),
    radial-gradient(1.6px 1.6px at 18% 22%, rgba(244, 242, 251, 0.5), transparent 100%),
    radial-gradient(1.4px 1.4px at 72% 12%, rgba(244, 242, 251, 0.42), transparent 100%),
    radial-gradient(1.8px 1.8px at 88% 48%, rgba(244, 242, 251, 0.38), transparent 100%),
    radial-gradient(1.3px 1.3px at 8% 64%, rgba(244, 242, 251, 0.4), transparent 100%),
    radial-gradient(1.5px 1.5px at 46% 82%, rgba(244, 242, 251, 0.32), transparent 100%),
    radial-gradient(1.4px 1.4px at 63% 38%, rgba(244, 242, 251, 0.35), transparent 100%),
    radial-gradient(52% 44% at 14% 18%, rgba(139, 92, 246, 0.26), transparent 62%),
    radial-gradient(46% 48% at 88% 82%, rgba(167, 139, 250, 0.2), transparent 62%),
    radial-gradient(70% 60% at 50% 108%, rgba(76, 29, 149, 0.4), transparent 68%),
    linear-gradient(180deg, #131022, #0d0b13);
}
/* footer mists up from the page and gets its own stars */
.footer2 {
  background:
    radial-gradient(1.5px 1.5px at 20% 30%, rgba(244, 242, 251, 0.4), transparent 100%),
    radial-gradient(1.4px 1.4px at 78% 22%, rgba(244, 242, 251, 0.34), transparent 100%),
    radial-gradient(1.6px 1.6px at 55% 68%, rgba(244, 242, 251, 0.3), transparent 100%),
    radial-gradient(48% 42% at 85% 12%, rgba(139, 92, 246, 0.14), transparent 60%),
    radial-gradient(50% 46% at 8% 88%, rgba(109, 40, 217, 0.16), transparent 62%),
    #12101c;
  padding-top: 6.5rem;
}
/* AP Gyms: lavender-tint stack variant + sixth card offset */
.stk-v1 { background: radial-gradient(55% 60% at 88% 15%, rgba(139, 92, 246, 0.14), transparent 62%), #f3f0ff; }
.stk-card:nth-child(6) { top: calc(var(--stk-top) + 110px); }

/* ============ White canvas with a whisper of violet ============ */
body {
  background-color: #fdfcff;
  background-image:
    radial-gradient(52% 30% at 85% 4%, rgba(139, 92, 246, 0.06), transparent 65%),
    radial-gradient(56% 26% at 10% 46%, rgba(196, 181, 253, 0.07), transparent 65%),
    radial-gradient(50% 24% at 88% 82%, rgba(139, 92, 246, 0.05), transparent 65%);
  background-repeat: no-repeat;
}
/* sections go transparent so the nebula runs through them */
.section, .section-dark, .section-about { background-color: transparent; }
.marquee, .marquee-big { background: var(--panel); }
/* white set-piece cards keep dark text on the dark theme */
.stk-w1, .stk-w2, .stk-v1, .stk-cm, .cmp {
  color: #161125;
  --ink: #161125;
  --grey: #6a6480;
  --micro-c: #89819e;
  --body-c: #48425c;
  --line: rgba(22, 17, 37, 0.12);
}
.cmp { background: #ffffff; }


/* Perf: videos and sticky cards on their own layers */
.hero3-bg, .vband-video { will-change: transform; transform: translateZ(0); }

/* ============ Who we build for: glass constellation cards ============ */
.aud-grid { display: grid; gap: 1.1rem; }
@media (min-width: 640px) { .aud-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .aud-grid { grid-template-columns: repeat(3, 1fr); } }
.aud-card {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  padding: 1.9rem 1.8rem 1.7rem;
  background: linear-gradient(165deg, rgba(29, 24, 44, 0.82), rgba(17, 14, 27, 0.9));
  border: 1px solid rgba(244, 242, 251, 0.1);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}
.aud-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(240px circle at var(--mx, 50%) var(--my, 0%), rgba(139, 92, 246, 0.18), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.aud-card:hover { transform: translateY(-6px); border-color: rgba(139, 92, 246, 0.5); box-shadow: 0 26px 60px -30px rgba(139, 92, 246, 0.45), 0 20px 50px -30px rgba(0, 0, 0, 0.8); }
.aud-card:hover::before { opacity: 1; }
.aud-num {
  position: absolute; top: 0.9rem; right: 1.2rem;
  font-weight: 900; font-size: 3rem; line-height: 1;
  color: rgba(244, 242, 251, 0.055);
  letter-spacing: -0.03em;
  pointer-events: none;
}
.aud-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: var(--grad-btn);
  box-shadow: 0 10px 24px -8px rgba(139, 92, 246, 0.65);
  margin-bottom: 1.15rem;
  transition: box-shadow 0.28s ease, transform 0.28s ease;
}
.aud-card:hover .aud-icon { transform: translateY(-2px); box-shadow: 0 14px 30px -8px rgba(139, 92, 246, 0.85); }
.aud-icon svg { width: 22px; height: 22px; fill: none; stroke: #ffffff; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.aud-card:nth-child(2) .aud-icon { background: linear-gradient(135deg, #ddd6fe, #a78bfa 55%, #8b5cf6); }
.aud-card:nth-child(3) .aud-icon { background: linear-gradient(135deg, #c4b5fd, #8b5cf6 50%, #4c1d95); }
.aud-card:nth-child(4) .aud-icon { background: linear-gradient(135deg, #a5b4fc, #818cf8 55%, #6366f1); }
.aud-card:nth-child(5) .aud-icon { background: linear-gradient(135deg, #e9d5ff, #c084fc 55%, #9333ea); }
.aud-card:nth-child(6) .aud-icon { background: linear-gradient(135deg, #c7d2fe, #8b5cf6 60%, #6d28d9); }
.aud-card h3 { font-size: 1.12rem; color: #f4f2fb; letter-spacing: -0.01em; }
.aud-card > p { color: #b9b2cc; font-size: 0.93rem; line-height: 1.6; margin-top: 0.5rem; min-height: 3.2em; }
.aud-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; margin-top: 1.15rem; }
.aud-tags span {
  font-size: 0.64rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.09em;
  color: #a49dba;
  border: 1px solid rgba(244, 242, 251, 0.14);
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.aud-card:hover .aud-tags span { border-color: rgba(139, 92, 246, 0.4); color: #c4b5fd; }
/* staggered reveal */
.aud-card:nth-child(2) { transition-delay: 0.06s; }
.aud-card:nth-child(3) { transition-delay: 0.12s; }
.aud-card:nth-child(4) { transition-delay: 0.08s; }
.aud-card:nth-child(5) { transition-delay: 0.14s; }
.aud-card:nth-child(6) { transition-delay: 0.2s; }


/* ============ Card spotlights (static hover glow) ============ */

.ab-card, .tier-pink .price-card, .f2card { position: relative; }
.ab-card::before, .stk-d1::before, .stk-d2::before, .stk-d3::before, .tier-pink .price-card::before, .f2card::before {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: radial-gradient(260px circle at var(--mx, 50%) var(--my, 50%), rgba(139, 92, 246, 0.16), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.ab-card:hover::before, .stk-d1:hover::before, .stk-d2:hover::before, .stk-d3:hover::before,
.tier-pink .price-card:hover::before, .f2card:hover::before { opacity: 1; }
.ab-card > *, .stk-card > *, .f2card > * { position: relative; z-index: 1; }

/* ============ Speed: skip rendering below-fold sections until near view ============ */
#studio, #who-we-build-for, #compare, #pricing, #founder-cta, #faq {
  content-visibility: auto;
  contain-intrinsic-size: auto 900px;
}



/* ============ Hybrid: audience section as a violet band ============ */
#who-we-build-for.section {
  background:
    radial-gradient(56% 40% at 82% 12%, rgba(139, 92, 246, 0.2), transparent 65%),
    radial-gradient(50% 42% at 12% 86%, rgba(109, 40, 217, 0.18), transparent 65%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='900'%3E%3Cg fill='%23f4f2fb'%3E%3Ccircle cx='84' cy='132' r='1.3' opacity='.5'/%3E%3Ccircle cx='310' cy='58' r='1' opacity='.38'/%3E%3Ccircle cx='522' cy='210' r='1.5' opacity='.45'/%3E%3Ccircle cx='770' cy='96' r='1.1' opacity='.35'/%3E%3Ccircle cx='188' cy='412' r='1.2' opacity='.4'/%3E%3Ccircle cx='648' cy='388' r='1.4' opacity='.5'/%3E%3Ccircle cx='96' cy='688' r='1.4' opacity='.42'/%3E%3Ccircle cx='420' cy='596' r='1.1' opacity='.36'/%3E%3Ccircle cx='300' cy='820' r='1.3' opacity='.45'/%3E%3Ccircle cx='700' cy='760' r='1.2' opacity='.4'/%3E%3C/g%3E%3C/svg%3E"),
    linear-gradient(180deg, #100d19, #0d0b13);
  background-repeat: no-repeat, no-repeat, repeat, no-repeat;
}
#who-we-build-for .h2-caps { color: #f4f2fb; }
#who-we-build-for .h2-lead { color: #a49dba; }
#who-we-build-for .sec-sub { color: #c6c0d6; }
#who-we-build-for .chip { color: var(--accent-soft); }

/* ============ Three-colour rhythm: white / lavender / deep violet ============ */
:root { --lav: #f0ebfe; --lav-deep: #e9e2fd; }
.marquee, .marquee-big { background: linear-gradient(180deg, var(--lav), var(--lav-deep)); }
#studio.section {
  background:
    radial-gradient(52% 44% at 88% 8%, rgba(139, 92, 246, 0.1), transparent 65%),
    radial-gradient(46% 40% at 8% 90%, rgba(255, 255, 255, 0.8), transparent 60%),
    linear-gradient(180deg, var(--lav), var(--lav-deep));
}
#founder-cta.section {
  background:
    radial-gradient(55% 50% at 78% 40%, rgba(139, 92, 246, 0.1), transparent 70%),
    radial-gradient(50% 44% at 10% 85%, rgba(255, 255, 255, 0.85), transparent 60%),
    linear-gradient(180deg, var(--lav), var(--lav-deep));
}
/* lavender sections: crisp white cards need a touch more edge */
#studio .ab-card, #founder-cta .founder-card { box-shadow: 0 26px 55px -30px rgba(76, 29, 149, 0.28); }

/* ============ Scroll progress bar ============ */
.scroll-progress { position: fixed; top: 0; left: 0; right: 0; height: 3px; z-index: 90; background: var(--grad-btn); transform-origin: 0 50%; transform: scaleX(0); pointer-events: none; }


/* ============ Pricing: meta chips + bolded points ============ */
.tier-meta { margin-top: 0.5rem; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--micro-c); }
.price-card li b { color: var(--ink); font-weight: 700; }

/* ---- Glassmorphism nav CTA ---- */
.nav-cta.glass-cta, .float-cta.glass-cta {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center;
  padding: 0; border: 0; background: none;
  border-radius: 9999px;
  box-shadow: 0 8px 40px rgba(129, 140, 248, 0.25);
  transition: transform .3s ease, box-shadow .3s ease;
}
.nav-cta.glass-cta:hover, .float-cta.glass-cta:hover {
  background: none; transform: scale(1.05);
  box-shadow: 0 0 40px 8px rgba(129, 140, 248, 0.35);
}
.glass-cta .gc-shimmer { position: absolute; inset: 0; border-radius: inherit; overflow: hidden; }
.glass-cta .gc-shimmer > span {
  position: absolute; inset: -200%; width: 400%; height: 400%;
  background: conic-gradient(from 225deg, transparent 0, rgba(255,255,255,0.6) 90deg, transparent 90deg);
  animation: gc-rotate 4s linear infinite; will-change: transform;
}
.glass-cta .gc-glass {
  position: absolute; inset: 1px; border-radius: 9999px;
  background: rgba(12, 13, 22, 0.94);
}
.glass-cta .gc-inner {
  position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 9px;
  padding: 9px 12px 9px 16px; color: #fff; font-weight: 600; font-size: 0.92rem; line-height: 1;
  white-space: nowrap;
}
.glass-cta .gc-avatar {
  width: 26px; height: 26px; border-radius: 50%; object-fit: cover; display: block;
  background: #170f2a; box-shadow: 0 0 0 2px rgba(255,255,255,0.12);
}
.glass-cta .gc-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%; background: rgba(255,255,255,0.12); color: #fff;
}
@keyframes gc-rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@media (prefers-reduced-motion: reduce) { .glass-cta .gc-shimmer > span { animation: none; } }

/* Glass CTA — floating variant */
.float-cta.glass-cta {
  padding: 0; background: none; color: #fff;
  box-shadow: 0 8px 40px rgba(129, 140, 248, 0.3);
}
.float-cta.glass-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 0 40px 8px rgba(129, 140, 248, 0.4);
}

/* Glass CTA — hero variants */
.glass-cta.gc-hero {
  position: relative; isolation: isolate; overflow: hidden;
  display: inline-flex; align-items: center; text-decoration: none;
  border-radius: 9999px; color: #fff;
  box-shadow: 0 8px 40px rgba(129, 140, 248, 0.28);
  transition: transform .3s ease, box-shadow .3s ease;
}
.glass-cta.gc-hero:hover { transform: scale(1.05); box-shadow: 0 0 40px 8px rgba(129, 140, 248, 0.38); }
.glass-cta.gc-hero .gc-inner { padding: 12px 16px 12px 22px; font-size: 1rem; gap: 11px; }
.glass-cta.gc-hero .gc-icon { width: 28px; height: 28px; font-size: 1rem; line-height: 1; }
.glass-cta.gc-quiet { box-shadow: none; }
.glass-cta.gc-quiet .gc-shimmer > span { background: conic-gradient(from 225deg, transparent 0, rgba(255,255,255,0.28) 90deg, transparent 90deg); }
.glass-cta.gc-quiet:hover { box-shadow: 0 0 30px 4px rgba(129, 140, 248, 0.22); }

/* ==== Metal pricing: themed tops only, plain white bodies ==== */
/* bodies: force plain white + dark text on all three */
.tier-blue .price-card, .tier-pink .price-card, .tier-gold .price-card {
  background: #ffffff;
  border-color: rgba(190, 186, 210, 0.7);
  box-shadow: 0 24px 60px -38px rgba(60, 50, 110, 0.3);
}
.tier-pink .price-card li, .tier-gold .price-card li,
.tier-pink .tier-desc, .tier-gold .tier-desc { color: var(--ink); }
.tier-pink .price span, .tier-gold .price span {
  background: none; -webkit-background-clip: initial; background-clip: initial; color: var(--ink);
}
.tier-pink .price small, .tier-gold .price small { color: var(--micro-c); }
.tier-pink .tier-includes, .tier-gold .tier-includes { color: var(--ink); }
.tier-pink .tier-btn, .tier-gold .tier-btn { background: #161125; color: #f6f4fd; }
.tier-gold .price-mo { color: #6d28d9; }

/* shine sweep on the top bars */
.tier-bar { position: relative; overflow: hidden; }
.tier-bar::after {
  content: ""; position: absolute; top: 0; left: 0; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 0%, rgba(255,255,255,0.55) 35%, rgba(255,255,255,0.95) 50%, rgba(255,255,255,0.55) 65%, transparent 100%);
  transform: translateX(-170%) skewX(-18deg); animation: bar-shine 2.8s ease-in-out infinite;
  will-change: transform;
}
@keyframes bar-shine { 0% { transform: translateX(-170%) skewX(-18deg); } 70% { transform: translateX(280%) skewX(-18deg); } 100% { transform: translateX(280%) skewX(-18deg); } }
@media (prefers-reduced-motion: reduce) { .tier-bar::after { animation: none; opacity: 0; } }

/* silver top (Starter) */
.price-wrap.tier-blue .tier-bar { background: linear-gradient(120deg, #d7d9e2, #aeb1c0 45%, #eceef4 70%, #c3c5d2); border-bottom: 1px solid rgba(140,143,160,.6); }
.price-wrap.tier-blue .tier-bar h3 { color: #23252f; }
.price-wrap.tier-blue .tier-bar .tier-badge { background: rgba(35, 37, 47, 0.14); color: #23252f; }

/* gold top (Business) */
.price-wrap.tier-pink .tier-bar { background: linear-gradient(120deg, #e8ca79, #c9a03e 45%, #f7ecc4 70%, #d4ad48); border-bottom: 1px solid rgba(170,135,45,.6); }
.price-wrap.tier-pink .tier-bar h3 { color: #3a2c08; }
.price-wrap.tier-pink .tier-bar .tier-badge { background: rgba(58, 44, 8, 0.16); color: #3a2c08; }
.price-wrap.tier-pink .price-tag { background: linear-gradient(120deg, #e8ca79, #c9a03e 45%, #f7ecc4 70%, #d4ad48); color: #3a2c08; }

/* platinum top (App + Platform) — silvery blue */
.price-wrap.tier-gold .tier-bar { background: linear-gradient(120deg, #e3eaf5, #a9bcd6 45%, #f0f5fc 70%, #93a9c8); border-bottom: 1px solid rgba(120,145,180,.6); }
.price-wrap.tier-gold .tier-bar h3 { color: #1c2733; }
.price-wrap.tier-gold .tier-bar .tier-badge { background: rgba(28, 39, 51, 0.14); color: #1c2733; }

/* Fix: middle card inherited dark-panel light text vars; force light-card vars + kill purple glow */
.price-panel .tier-pink .price-card {
  background: #ffffff;
  --ink: #161125; --grey: #6a6480; --micro-c: #89819e; --body-c: #48425c; --line: rgba(22, 17, 37, 0.12);
  color: var(--ink);
  border: 1px solid rgba(190, 186, 210, 0.7);
  box-shadow: 0 24px 60px -38px rgba(60, 50, 110, 0.3);
}
.price-panel .tier-pink .price-card:hover { box-shadow: 0 30px 70px -40px rgba(60, 50, 110, 0.45); }
.price-panel .tier-pink .price-card::before { display: none; }
.tier-pink .price-card li { color: var(--body-c); }
.tier-pink .tier-btn { background: #161125; color: #f6f4fd; }
.tier-pink .tier-btn::after { display: none; }

/* Equal-height metal bars, titles on two lines */
.tier-bar { align-items: center; }
.tier-bar h3 { line-height: 1.15; }

/* ===================== STUDIO v2: iPhone + animations ===================== */
/* animations only run once the card has revealed (.in) — cheap + no lag */
.ab-card:not(.in) *, .ab-card:not(.in) *::before, .ab-card:not(.in) *::after { animation-play-state: paused !important; }

/* --- Card A: iPhone --- */
.ab-stage { position: relative; min-height: 380px; display: grid; place-items: center; }
.ab-phone {
  position: relative; width: 196px; aspect-ratio: 9 / 19; border-radius: 34px;
  background: #0d0b16; border: 6px solid #1c1730; box-shadow: 0 40px 80px -30px rgba(0,0,0,.85), 0 0 0 1px rgba(255,255,255,.06), inset 0 0 0 1px rgba(255,255,255,.04);
  animation: abFloat 6s ease-in-out infinite; will-change: transform;
}
.ab-island { position: absolute; top: 10px; left: 50%; width: 64px; height: 18px; border-radius: 12px; background: #000; transform: translateX(-50%); z-index: 3; }
.ab-screen { position: absolute; inset: 0; border-radius: 28px; overflow: hidden; background: linear-gradient(180deg, #14111f, #0f0c19); padding: 40px 14px 44px; display: flex; flex-direction: column; gap: 9px; }
.ab-status { display: flex; justify-content: space-between; align-items: center; font-size: 9px; font-weight: 700; color: #cfc9e6; margin-bottom: 2px; }
.ab-sig { display: inline-flex; gap: 2px; align-items: flex-end; } .ab-sig i { width: 3px; background: #cfc9e6; border-radius: 1px; } .ab-sig i:nth-child(1){height:4px} .ab-sig i:nth-child(2){height:6px} .ab-sig i:nth-child(3){height:8px}
.ab-wire { display: flex; flex-direction: column; gap: 8px; }
.ab-l { display: block; height: 7px; border-radius: 4px; background: rgba(244,242,251,.14); animation: abInk 9s ease-in-out infinite; }
.ab-l.dim { opacity: .55; } .w60{width:60%} .w40{width:40%} .w75{width:75%} .w50{width:50%}
.ab-hero { height: 76px; border-radius: 14px; background: rgba(244,242,251,.08); border: 1px dashed rgba(244,242,251,.18); animation: abPaint 9s ease-in-out infinite; }
.ab-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.ab-row i { height: 34px; border-radius: 9px; background: rgba(244,242,251,.08); animation: abPaintSoft 9s ease-in-out infinite; }
.ab-row i:nth-child(2) { animation-delay: .15s; } .ab-row i:nth-child(3) { animation-delay: .3s; }
.ab-btn { height: 30px; border-radius: 15px; background: rgba(244,242,251,.10); animation: abPaintBtn 9s ease-in-out infinite; }
.ab-tabbar { position: absolute; left: 12px; right: 12px; bottom: 12px; height: 30px; border-radius: 15px; background: rgba(255,255,255,.05); display: grid; grid-template-columns: repeat(4,1fr); place-items: center; }
.ab-tabbar i { width: 10px; height: 10px; border-radius: 3px; background: rgba(244,242,251,.18); } .ab-tabbar i.on { background: #a78bfa; }
.ab-ready { position: absolute; left: 50%; bottom: -14px; transform: translate(-50%, 10px) scale(.9); display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; font-size: 10px; font-weight: 800; letter-spacing: .04em; color: #0b1a0f; background: #9be8b0; border-radius: 999px; padding: 6px 10px; box-shadow: 0 10px 25px -8px rgba(60,200,110,.7); opacity: 0; animation: abReady 9s ease-in-out infinite; }
.ab-ready svg { width: 11px; height: 11px; fill: none; stroke: currentColor; stroke-width: 3; }

.ab-code { position: absolute; right: 2%; top: 8%; width: 178px; border-radius: 12px; background: #15121f; border: 1px solid rgba(139,92,246,.35); box-shadow: 0 30px 60px -25px rgba(0,0,0,.9); transform: translateY(12px); opacity: 0; animation: abCode 9s ease-in-out infinite; will-change: transform, opacity; }
.ab-code-bar { display: flex; align-items: center; gap: 4px; padding: 7px 9px; border-bottom: 1px solid rgba(255,255,255,.06); font-size: 8px; color: #8f88a8; }
.ab-code-bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.18); } .ab-code-bar span { margin-left: 4px; }
.ab-code pre { margin: 0; padding: 8px 10px 10px; font: 8.5px/1.5 ui-monospace, SFMono-Regular, Menlo, monospace; color: #d9d4ec; white-space: pre; }
.ab-code .k { color: #ff7ab2; } .ab-code .t { color: #9be8ff; }
.ab-caret { display: inline-block; width: 5px; height: 9px; background: #a78bfa; vertical-align: -1px; margin-left: 1px; animation: abBlink 1s steps(2) infinite; }

/* re-time the four floating chips to the build stages */
.ab-stage .ab-c1 { left: 4%; top: 22%; animation: abChip 9s ease-in-out infinite; }
.ab-stage .ab-c2 { right: 4%; top: 58%; animation: abChip 9s ease-in-out infinite; animation-delay: 2.2s; }
.ab-stage .ab-c3 { left: 6%; bottom: 20%; animation: abChip 9s ease-in-out infinite; animation-delay: 4.4s; }
.ab-stage .ab-c4 { right: 8%; bottom: 6%; animation: abChip 9s ease-in-out infinite; animation-delay: 6.6s; }

@keyframes abFloat { 0%,100% { transform: translateY(0) rotate(-1.5deg); } 50% { transform: translateY(-8px) rotate(-1.5deg); } }
@keyframes abInk { 0%,18% { background: rgba(244,242,251,.14); } 30%,100% { background: rgba(244,242,251,.32); } }
@keyframes abPaint { 0%,18% { background: rgba(244,242,251,.08); border-color: rgba(244,242,251,.18); } 30%,100% { background: linear-gradient(135deg,#7c3aed,#c4b5fd); border-color: transparent; } }
@keyframes abPaintSoft { 0%,22% { background: rgba(244,242,251,.08); } 34%,100% { background: rgba(139,92,246,.35); } }
@keyframes abPaintBtn { 0%,24% { background: rgba(244,242,251,.10); } 36%,100% { background: linear-gradient(90deg,#a78bfa,#7c3aed); } }
@keyframes abCode { 0%,22% { opacity: 0; transform: translateY(12px); } 30%,62% { opacity: 1; transform: translateY(0); } 70%,100% { opacity: 0; transform: translateY(-8px); } }
@keyframes abReady { 0%,72% { opacity: 0; transform: translate(-50%, 10px) scale(.9); } 78%,94% { opacity: 1; transform: translate(-50%, 0) scale(1); } 100% { opacity: 0; transform: translate(-50%, -6px) scale(.96); } }
@keyframes abChip { 0% { opacity: 0; transform: translateY(8px) scale(.94); } 6%,24% { opacity: 1; transform: translateY(0) scale(1); } 30%,100% { opacity: 0; transform: translateY(-6px) scale(.96); } }
@keyframes abBlink { to { opacity: 0; } }

/* --- Card D: sprint progress + build ticker --- */
.ab-sp-prog { margin: 0 .7rem .35rem; height: 4px; border-radius: 2px; background: rgba(244,242,251,.08); overflow: hidden; }
.ab-sp-prog i { display: block; height: 100%; width: 100%; border-radius: 2px; background: var(--grad-btn); transform-origin: left; transform: scaleX(0); animation: abProg 10s linear infinite; will-change: transform; }
.ab-sp-build { position: relative; display: inline-block; height: 1.1em; overflow: hidden; vertical-align: bottom; min-width: 5.5em; }
.ab-sp-build b { display: block; font-weight: 700; line-height: 1.1em; animation: abBuilds 10s steps(1) infinite; position: absolute; left: 0; top: 0; opacity: 0; }
.ab-sp-build b:nth-child(1){animation-delay:0s} .ab-sp-build b:nth-child(2){animation-delay:2s} .ab-sp-build b:nth-child(3){animation-delay:4s} .ab-sp-build b:nth-child(4){animation-delay:6s} .ab-sp-build b:nth-child(5){animation-delay:8s}
@keyframes abProg { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@keyframes abBuilds { 0%,19.9% { opacity: 1; } 20%,100% { opacity: 0; } }

/* --- Standards: App Review card --- */
.ab-review { width: min(230px, 100%); margin: -0.6rem 0 1.1rem auto; rotate: -1.5deg; background: #131022; border: 1px solid var(--line); border-radius: 14px; padding: .7rem .8rem .8rem; box-shadow: 0 30px 60px -25px rgba(0,0,0,.9), 0 18px 55px -20px rgba(139,92,246,.3); color: #f4f2fb; position: relative; }
.ab-rv-head { display: flex; align-items: center; gap: 6px; font-size: .68rem; font-weight: 700; letter-spacing: .04em; margin-bottom: .55rem; }
.ab-rv-logo { width: 14px; height: 14px; border-radius: 4px; background: linear-gradient(135deg,#3b82f6,#60a5fa); }
.ab-review ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .38rem; }
.ab-review li { display: flex; align-items: center; gap: 7px; font-size: .64rem; color: #cfc9e6; }
.ab-review li i { width: 13px; height: 13px; border-radius: 50%; border: 1.5px solid rgba(244,242,251,.25); position: relative; flex: none; animation: abTick 7s ease-in-out infinite; }
.ab-review li i::after { content: ""; position: absolute; left: 3px; top: 1px; width: 4px; height: 7px; border: solid #0b1a0f; border-width: 0 2px 2px 0; transform: rotate(45deg) scale(0); animation: abTickMark 7s ease-in-out infinite; }
.ab-review li:nth-child(2) i, .ab-review li:nth-child(2) i::after { animation-delay: .9s; }
.ab-review li:nth-child(3) i, .ab-review li:nth-child(3) i::after { animation-delay: 1.8s; }
.ab-rv-badge { position: absolute; right: -10px; bottom: -12px; font-size: .58rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #0b1a0f; background: #9be8b0; padding: 5px 9px; border-radius: 999px; box-shadow: 0 10px 22px -8px rgba(60,200,110,.7); transform: scale(0); animation: abBadge 7s ease-in-out infinite; }
@keyframes abTick { 0%,10% { background: transparent; border-color: rgba(244,242,251,.25); } 22%,88% { background: #9be8b0; border-color: #9be8b0; } 100% { background: transparent; border-color: rgba(244,242,251,.25); } }
@keyframes abTickMark { 0%,10% { transform: rotate(45deg) scale(0); } 22%,88% { transform: rotate(45deg) scale(1); } 100% { transform: rotate(45deg) scale(0); } }
@keyframes abBadge { 0%,42% { transform: scale(0); } 50%,86% { transform: scale(1) rotate(-4deg); } 94%,100% { transform: scale(0); } }

/* --- Ownership: handover terminal --- */
.ab-term { width: min(250px, 100%); margin: -0.6rem 0 1.1rem auto; rotate: 1.2deg; background: #0f0c19; border: 1px solid var(--line); border-radius: 14px; padding: .55rem .8rem .75rem; box-shadow: 0 30px 60px -25px rgba(0,0,0,.9), 0 18px 55px -20px rgba(139,92,246,.3); font: .62rem/1.7 ui-monospace, SFMono-Regular, Menlo, monospace; color: #d9d4ec; }
.ab-term-bar { display: flex; gap: 4px; margin-bottom: .35rem; } .ab-term-bar i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.18); }
.ab-term p { margin: 0; white-space: nowrap; overflow: hidden; width: 0; animation: abType 8s steps(30) infinite; }
.ab-term .ab-t2 { animation-delay: 2s; } .ab-term .ab-t3 { animation-delay: 4.2s; }
.ab-term .p { color: #a78bfa; } .ab-term .ok { color: #9be8b0; }
@keyframes abType { 0% { width: 0; } 20%,85% { width: 100%; } 100% { width: 100%; opacity: 0; } }

@media (prefers-reduced-motion: reduce) {
  .ab-phone, .ab-l, .ab-hero, .ab-row i, .ab-btn, .ab-code, .ab-ready, .ab-stage .ab-cursor, .ab-sp-prog i, .ab-sp-build b, .ab-review li i, .ab-review li i::after, .ab-rv-badge, .ab-term p { animation: none !important; }
  .ab-code, .ab-ready, .ab-stage .ab-cursor, .ab-sp-build b:first-child { opacity: 1; transform: none; } .ab-term p { width: 100%; } .ab-rv-badge { transform: scale(1); }
}
@media (max-width: 699px) { .ab-code { display: none; } .ab-stage { min-height: 330px; } }

/* ===================== HERO v4 — light panel + floating app composition ===================== */
.hero4 { padding: 6.4rem 1rem 1.5rem; }
.hero4-panel {
  position: relative; max-width: 1240px; margin: 0 auto; border-radius: 3rem; overflow: hidden;
  background: linear-gradient(180deg, #f8f7ff 0%, #f3f1fc 100%);
  box-shadow: 0 40px 100px -60px rgba(76, 29, 149, 0.35);
  display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; gap: 2rem;
  padding: clamp(2.2rem, 5vw, 4.5rem) clamp(1.4rem, 5vw, 4.5rem);
  min-height: 620px;
}
.hero4-panel::before { content: ""; position: absolute; inset: auto -10% -35% -10%; height: 55%; background: #fff; transform: rotate(-4deg); opacity: .8; pointer-events: none; }
.hero4-copy { position: relative; z-index: 2; }
.hero4 h1 { display: flex; flex-direction: column; font-family: "Inter", system-ui, sans-serif; font-weight: 800; letter-spacing: -0.035em; line-height: 1.02; font-size: clamp(2.6rem, 5.4vw, 4.6rem); color: #14102a; margin: 0 0 1.4rem; }
.hero4-acc { background: linear-gradient(90deg, #7c3aed, #a78bfa 60%, #c4b5fd); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero4-sub { font-size: clamp(1rem, 1.45vw, 1.2rem); line-height: 1.6; color: #4b4566; max-width: 30rem; margin: 0 0 2.2rem; }
.hero4 .hero-ctas { display: flex; gap: .9rem; align-items: center; flex-wrap: wrap; }
.hero4-ghost { display: inline-flex; align-items: center; gap: .45rem; padding: 12px 20px; border-radius: 999px; border: 1.5px solid rgba(20,16,42,.18); color: #14102a; font-weight: 600; text-decoration: none; transition: background .2s, transform .2s; }
.hero4-ghost:hover { background: rgba(20,16,42,.05); transform: translateY(-1px); }

/* ===== Hero copy v2 ===== */
.hero4-pill { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.1rem; padding: .45rem .9rem .45rem .7rem; border-radius: 999px; background: #fff; color: #4c1d95; font-size: .86rem; font-weight: 700; box-shadow: 0 8px 24px -14px rgba(76,29,149,.45), 0 0 0 1px rgba(76,29,149,.08); }
.hero4-pill-dot { width: 8px; height: 8px; border-radius: 50%; background: #7c3aed; box-shadow: 0 0 0 4px rgba(124,58,237,.18); }
.hero4 h1 { display: block; font-size: clamp(2.4rem, 4.3vw, 3.7rem); line-height: 1.06; letter-spacing: -0.035em; max-width: 13ch; margin-bottom: 1.1rem; text-wrap: balance; }
.hero4 h1 .hero4-acc { display: inline; }
.hero4-sub { font-size: clamp(1rem, 1.25vw, 1.12rem); line-height: 1.6; max-width: 30rem; margin-bottom: 1.7rem; }
.hero4 .hero-ctas { margin-bottom: 1.4rem; }
.hero4-proof { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.25rem; }
.hero4-proof li { display: inline-flex; align-items: center; gap: .4rem; font-size: .86rem; font-weight: 500; color: #4b4566; }
.hero4-proof svg { color: #6d28d9; flex: none; }
.hero4-panel::before { bottom: -46%; }
.hero4-panel { padding-top: clamp(2.6rem, 5vw, 4.2rem); padding-bottom: clamp(2.6rem, 5vw, 4.2rem); }


/* ======================= MOBILE PASS ======================= */
.nav-burger { display: none; }
.mobile-menu { display: none; }
.mobile-sticky { display: none; }

@media (max-width: 760px) {
  /* nav */
  .nav { padding: 0.6rem 0.75rem 0; }
  .nav-inner { padding: 0.4rem 0.45rem 0.4rem 0.7rem; gap: .6rem; }
  .nav-links { display: none; }
  .nav-cta.glass-cta .gc-inner { padding: 8px 10px 8px 13px; font-size: .86rem; }
  .nav-burger { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; margin-left: 0; padding: 0 11px; border: 0; border-radius: 999px; background: rgba(244,242,251,.08); cursor: pointer; }
  .nav-burger span { display: block; height: 2px; border-radius: 2px; background: #f4f2fb; transition: transform .25s ease, opacity .2s ease; }
  .menu-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-open .nav-burger span:nth-child(2) { opacity: 0; }
  .menu-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu { display: block; position: fixed; left: .75rem; right: .75rem; top: 4.4rem; z-index: 59; border-radius: 22px; background: rgba(13,11,19,.97); border: 1px solid rgba(244,242,251,.12); box-shadow: 0 30px 60px -25px rgba(0,0,0,.9); padding: .6rem; animation: menuIn .22s ease both; }
  .mobile-menu[hidden] { display: none; }
  .mobile-menu nav { display: flex; flex-direction: column; }
  .mobile-menu a { display: block; padding: .95rem 1rem; border-radius: 14px; color: #f4f2fb; text-decoration: none; font-weight: 600; font-size: 1.05rem; }
  .mobile-menu a:active { background: rgba(244,242,251,.08); }
  .mobile-menu-cta { margin-top: .4rem; background: var(--grad-btn); color: #170f2a !important; text-align: center; }
  @keyframes menuIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

  /* sticky bottom CTA */
  .mobile-sticky { display: block; position: fixed; left: .75rem; right: .75rem; bottom: .75rem; z-index: 58; padding: 1rem; border-radius: 999px; background: #14102a; color: #fff; text-align: center; font-weight: 700; text-decoration: none; box-shadow: 0 18px 40px -16px rgba(20,16,42,.8), 0 0 0 1px rgba(255,255,255,.08) inset; }
  body { padding-bottom: 4.6rem; }
  .float-actions { bottom: 5.4rem; }

  /* hero */
  .hero4 { padding: 5rem .6rem 1rem; }
  .hero4-panel { border-radius: 1.6rem; padding: 1.7rem 1.15rem 1.4rem; gap: .5rem; min-height: 0; }
  .hero4-panel::before { display: none; }
  .hero4-pill { font-size: .78rem; padding: .4rem .8rem .4rem .6rem; }
  .hero4 h1 { font-size: clamp(2.1rem, 9.5vw, 2.7rem); max-width: none; margin-bottom: .9rem; }
  .hero4-sub { font-size: 1rem; margin-bottom: 1.3rem; }
  .hero4 .hero-ctas { flex-direction: column; align-items: stretch; gap: .6rem; margin-bottom: 1.1rem; }
  .hero4 .glass-cta.gc-hero, .hero4-ghost { width: 100%; justify-content: center; }
  .hero4 .glass-cta.gc-hero .gc-inner { justify-content: center; width: 100%; }
  .hero4-proof { gap: .4rem .9rem; } .hero4-proof li { font-size: .8rem; }
  .hero4-art { height: 400px; transform: none; margin: .8rem 0 0; max-width: none; overflow: visible; }
  .h4-back { right: 4%; top: 8%; width: 62%; height: 80%; border-radius: 1.6rem; }
  .h4-phone-wrap { width: 172px; margin-left: -86px; top: 3%; }
  .h4-phone { border-radius: 36px; } .h4-screen { border-radius: 32px; padding: 34px 10px 12px; gap: 8px; }
  .h4-island { width: 66px; height: 20px; top: 9px; }
  .h4-num { font-size: 20px; } .h4-hero { padding: 10px 11px 8px; } .h4-bars { height: 22px; }
  .h4-item { padding: 6px 8px; } .h4-ic { width: 22px; height: 22px; } .h4-tab { height: 30px; }
  .h4-btn-action { top: 70px; } .h4-btn-vol1 { top: 100px; height: 32px; } .h4-btn-vol2 { top: 140px; height: 32px; } .h4-btn-power { top: 120px; height: 52px; }
  .h4-chart { left: -2%; bottom: 2%; width: 168px; padding: 10px 10px 6px; } .h4-chart svg { height: 54px; }
  .h4-toast { right: -2%; bottom: 16%; width: 186px; padding: 8px 12px 8px 8px; }
  .h4-live { right: 2%; top: 5%; font-size: 9.5px; padding: 8px 12px; }
  .h4-pay { left: 2%; top: 40%; width: 136px; padding: 8px 12px 8px 8px; }
  .h4-rev { right: 3%; bottom: 0; width: 132px; padding: 8px 10px; }
  .h4-review, .h4-push, .h4-notif { display: none; }

  /* logo carousel */
  .logo-marquee { padding: 1.2rem 0 1rem; } .logo-marquee-title { font-size: .74rem; }

  /* studio / bento */
  .ab-bento { gap: .9rem; } .ab-card { padding: 1.35rem; border-radius: 22px; }
  .ab-stage { min-height: 320px; } .ab-phone { width: 168px; }
  .ab-review, .ab-term { width: 100%; margin: 0 0 1rem; rotate: 0deg; }
  .ab-sprint { margin: 0 0 1rem; width: 100%; }

  /* pricing */
  .price-panel { padding-left: .9rem; padding-right: .9rem; }
  .tier-bar { padding: 1rem 1.1rem; } .tier-bar h3 { font-size: 1.25rem; }
  .price-card .price span { font-size: 2.6rem; }
  .price-addons { border-radius: 18px; }

  /* work stack: no sticky stacking on phones, simple cards */
  .stack { --stk-top: 0; } .stk-card { position: relative; top: auto; border-radius: 22px; }
  .stk-card + .stk-card { margin-top: 1rem; }
  .stk-copy { padding: 1.4rem 1.2rem .4rem; } .stk-copy h3 { font-size: 1.6rem; }
  .stk-media { padding: .6rem 1rem 1.2rem; }

  /* comparison table: horizontal scroll instead of squash */
  .cmp { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .cmp-row { min-width: 520px; }

  /* faq + footer */
  .faq-wrap summary { font-size: 1rem; padding: 1rem .2rem; }
  .footer2 { padding-bottom: 2rem; }

  /* generic */
  .section { padding: 3.6rem 0; }
  .section-inner { padding-left: 1rem; padding-right: 1rem; }
  h2 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  .sec-sub { font-size: 1rem; }
  img, video { max-width: 100%; }
}
@media (max-width: 400px) {
  .hero4-art { height: 370px; } .h4-phone-wrap { width: 160px; margin-left: -80px; }
  .h4-chart { width: 150px; } .h4-toast { width: 172px; }
}

/* ===== Client logo carousel ===== */
.logo-marquee { padding: 1.6rem 0 1.4rem; background: transparent; }
.logo-marquee-title { text-align: center; margin: 0 0 1.1rem; font-size: .8rem; font-weight: 600; color: var(--grey); }
.logo-marquee-viewport { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent); }
.logo-track { display: flex; align-items: center; width: max-content; animation: logoScroll 32s linear infinite; will-change: transform; }
.logo-track .lg { flex: none; display: inline-flex; align-items: center; height: 40px; padding: 0 2.6rem; }
.logo-track .lg svg { height: 40px; width: auto; display: block; }
.logo-track .lg img { height: 40px; width: auto; display: block; }
@keyframes logoScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
.logo-marquee:hover .logo-track { animation-play-state: paused; }
@media (max-width: 640px) { .logo-track .lg { padding: 0 1.6rem; height: 32px; } .logo-track .lg svg, .logo-track .lg img { height: 32px; } .logo-track { animation-duration: 22s; } }
@media (prefers-reduced-motion: reduce) { .logo-track { animation: none; } }

/* logo size tuning: keep visual weight even */
.logo-track .lg img { height: 40px; width: auto; max-width: 220px; object-fit: contain; }
.logo-track .lg.lg-tall img { height: 52px; }
.logo-track .lg.lg-icon img { height: 44px; border-radius: 10px; }
.logo-track .lg.lg-gen img { height: 72px; margin: -16px 0; }
@media (max-width: 640px) { .logo-track .lg.lg-gen img { height: 56px; margin: -12px 0; } .logo-track .lg.lg-tall img { height: 40px; } }

/* carousel: give the track real height so taller logos aren't clipped */
.logo-marquee-viewport { padding: 10px 0; }
.logo-track { min-height: 64px; }
.logo-track .lg { height: 64px; align-items: center; }
.logo-track .lg svg { height: 44px; }
.logo-track .lg.lg-tall img { height: 58px; }
.logo-track .lg.lg-fill img { height: 46px; margin: 0; }

/* Care Match card: light, sky-blue tint */
.stk-cm { background: radial-gradient(55% 60% at 85% 20%, rgba(29,161,224,.16), transparent 62%), #f2f9fe; }
.stk-cm h3 { color: #0b2a3f; }
.wk-badge-soon { background: #1da1e0; color: #fff; }


/* ======================= HERO ART v3 — real iPhone + edge notifications ======================= */
.hero4-art { position: relative; height: 600px; z-index: 1; }
.h4-glow { position: absolute; right: 8%; top: 16%; width: 60%; height: 64%; border-radius: 50%; background: radial-gradient(circle, rgba(139,92,246,.45), rgba(139,92,246,0) 68%); filter: blur(34px); }
.h4-plate { position: absolute; right: 7%; top: 9%; width: 56%; height: 80%; border-radius: 2.4rem; transform: rotate(-6deg);
  background: linear-gradient(160deg, #c3b1ff 0%, #8b5cf6 50%, #5b21b6 100%);
  box-shadow: 0 50px 90px -45px rgba(91,33,182,.6), inset 0 1px 0 rgba(255,255,255,.5); overflow: hidden; }
.h4-plate::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 24% 12%, rgba(255,255,255,.55), rgba(255,255,255,0) 46%); }
.h4-plate::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.3) 1px, transparent 1.3px); background-size: 14px 14px; -webkit-mask-image: linear-gradient(165deg, transparent 45%, #000); mask-image: linear-gradient(165deg, transparent 45%, #000); opacity: .45; }

/* --- iPhone --- */
.h4-phone-wrap { position: absolute; left: 50%; top: 3%; width: 240px; margin-left: -120px; z-index: 3; animation: h4Float 8s ease-in-out infinite; will-change: transform; }
.h4-phone { position: relative; width: 100%; aspect-ratio: 1 / 2.05; border-radius: 54px;
  background: linear-gradient(180deg, #4a4655 0%, #2b2834 18%, #22202b 82%, #3a3644 100%);
  box-shadow: 0 0 0 1px #14121b, inset 0 0 0 1.5px rgba(255,255,255,.28), 0 70px 90px -40px rgba(20,16,42,.7), 0 30px 40px -30px rgba(20,16,42,.5); }
.h4-phone::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(150deg, rgba(255,255,255,.45) 0%, rgba(255,255,255,0) 22%, rgba(255,255,255,0) 70%, rgba(255,255,255,.18) 100%); pointer-events: none; z-index: 8; mix-blend-mode: screen; }
.h4-bezel { position: absolute; inset: 4px; border-radius: 50px; background: #050409; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05); }
.h4-screen { position: absolute; inset: 8px; border-radius: 46px; overflow: hidden; padding: 44px 13px 16px; display: flex; flex-direction: column; gap: 10px; background: linear-gradient(180deg, #ffffff, #f5f3fc); }
.h4-screen::after { content: ""; position: absolute; inset: 0; border-radius: inherit; background: linear-gradient(110deg, rgba(255,255,255,.35) 0%, rgba(255,255,255,0) 30%); pointer-events: none; z-index: 7; }
.h4-ant { position: absolute; background: rgba(255,255,255,.35); z-index: 9; border-radius: 1px; }
.h4-ant-tl { left: 14%; top: -0.5px; width: 7px; height: 2px; } .h4-ant-tr { right: 14%; top: -0.5px; width: 7px; height: 2px; }
.h4-ant-bl { left: 14%; bottom: -0.5px; width: 7px; height: 2px; } .h4-ant-br { right: 14%; bottom: -0.5px; width: 7px; height: 2px; }
.h4-btn { position: absolute; width: 3px; border-radius: 2px; background: linear-gradient(90deg, #5a5668, #2a2733 40%, #1a1822); box-shadow: inset 0 0 0 .5px rgba(255,255,255,.25); }
.h4-btn-action { left: -3px; top: 96px; height: 22px; }
.h4-btn-vol1 { left: -3px; top: 134px; height: 42px; }
.h4-btn-vol2 { left: -3px; top: 184px; height: 42px; }
.h4-btn-power { right: -3px; top: 160px; height: 68px; background: linear-gradient(270deg, #5a5668, #2a2733 40%, #1a1822); }
.h4-island { position: absolute; top: 14px; left: 50%; width: 92px; height: 28px; border-radius: 16px; background: #000; transform: translateX(-50%); z-index: 10; display: flex; align-items: center; justify-content: flex-end; padding-right: 9px; box-shadow: 0 0 0 1px rgba(255,255,255,.04); }
.h4-lens { width: 11px; height: 11px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #4a4468 0%, #1a1730 45%, #000 70%); box-shadow: inset 0 0 0 1px rgba(255,255,255,.12), 0 0 4px rgba(120,100,255,.25); }
.h4-homebar { position: absolute; bottom: 7px; left: 50%; width: 96px; height: 4px; border-radius: 2px; background: #14102a; transform: translateX(-50%); z-index: 6; }
.h4-shadow { position: absolute; left: 6%; right: 6%; bottom: -30px; height: 34px; border-radius: 50%; background: radial-gradient(ellipse, rgba(20,16,42,.38), rgba(20,16,42,0) 70%); filter: blur(6px); }

/* screen UI */
.h4-status { display: flex; justify-content: space-between; align-items: center; font-size: 12px; font-weight: 700; color: #14102a; padding: 0 4px; }
.h4-sig { display: inline-flex; gap: 2.5px; align-items: flex-end; } .h4-sig i { width: 3px; background: #14102a; border-radius: 1px; } .h4-sig i:nth-child(1){height:4px} .h4-sig i:nth-child(2){height:7px} .h4-sig i:nth-child(3){height:10px} .h4-sig b { width: 20px; height: 10px; border: 1.5px solid #14102a; border-radius: 3px; margin-left: 5px; position: relative; } .h4-sig b::after { content: ""; position: absolute; inset: 1.5px; right: 4px; background: #14102a; border-radius: 1px; }
.h4-head { display: flex; align-items: center; gap: 9px; }
.h4-avatar { width: 30px; height: 30px; border-radius: 50%; background: linear-gradient(135deg, #f6c177, #ef8f6b); box-shadow: 0 0 0 2px #fff, 0 0 0 3px rgba(20,16,42,.1); }
.h4-greet small { display: block; font-size: 9.5px; color: #7a7394; } .h4-greet b { font-size: 12.5px; color: #14102a; }
.h4-bell { margin-left: auto; width: 28px; height: 28px; border-radius: 50%; background: #fff; box-shadow: 0 4px 12px -4px rgba(20,16,42,.3); position: relative; }
.h4-bell i { position: absolute; right: 6px; top: 6px; width: 6px; height: 6px; border-radius: 50%; background: #ef4444; }
.h4-hero { position: relative; border-radius: 18px; padding: 13px 14px 11px; background: linear-gradient(140deg, #8b5cf6, #6d28d9 70%, #5b21b6); color: #fff; box-shadow: 0 16px 30px -16px rgba(91,33,182,.75); overflow: hidden; }
.h4-hero::after { content: ""; position: absolute; right: -30px; top: -40px; width: 110px; height: 110px; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.35), rgba(255,255,255,0) 65%); }
.h4-hero-top { display: flex; justify-content: space-between; align-items: center; font-size: 10px; opacity: .92; }
.h4-delta { background: rgba(255,255,255,.2); border-radius: 6px; padding: 2px 6px; font-weight: 800; font-size: 9px; }
.h4-num { font-size: 27px; font-weight: 800; letter-spacing: -.03em; margin: 5px 0 7px; font-variant-numeric: tabular-nums; }
.h4-bars { display: flex; align-items: flex-end; gap: 4px; height: 30px; }
.h4-bars i { flex: 1; border-radius: 3px 3px 1px 1px; background: rgba(255,255,255,.55); height: calc(var(--h) * 100%); transform-origin: bottom; animation: h4Bar 6s cubic-bezier(.2,.8,.2,1) infinite; }
.h4-bars i:last-child { background: #fff; }
.h4-bars i:nth-child(1){animation-delay:.05s} .h4-bars i:nth-child(2){animation-delay:.15s} .h4-bars i:nth-child(3){animation-delay:.25s} .h4-bars i:nth-child(4){animation-delay:.35s} .h4-bars i:nth-child(5){animation-delay:.45s} .h4-bars i:nth-child(6){animation-delay:.55s} .h4-bars i:nth-child(7){animation-delay:.65s}
.h4-seg { position: relative; display: grid; grid-template-columns: repeat(3,1fr); background: rgba(20,16,42,.06); border-radius: 11px; padding: 3px; font-size: 10px; font-weight: 700; color: #4b4566; text-align: center; }
.h4-seg span { padding: 6px 0; position: relative; z-index: 1; }
.h4-seg i { position: absolute; top: 3px; bottom: 3px; left: 3px; width: calc((100% - 6px) / 3); border-radius: 9px; background: #fff; box-shadow: 0 3px 10px -4px rgba(20,16,42,.35); animation: h4Seg 6s cubic-bezier(.4,0,.2,1) infinite; }
.h4-list { display: flex; flex-direction: column; gap: 8px; }
.h4-item { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 13px; padding: 8px 10px; box-shadow: 0 8px 20px -14px rgba(20,16,42,.35); animation: h4Item 6s cubic-bezier(.2,.8,.2,1) infinite; }
.h4-item:nth-child(2) { animation-delay: .12s; } .h4-item:nth-child(3) { animation-delay: .24s; }
.h4-item > div { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.h4-item b { display: block; height: 6px; border-radius: 3px; background: rgba(20,16,42,.12); } .h4-item b:last-child { opacity: .6; }
.h4-item em { font-style: normal; font-size: 10.5px; font-weight: 800; color: #14102a; }
.h4-ic { width: 27px; height: 27px; border-radius: 8px; flex: none; } .ic1 { background: linear-gradient(135deg,#60a5fa,#3b82f6); } .ic2 { background: linear-gradient(135deg,#fbbf24,#f59e0b); } .ic3 { background: linear-gradient(135deg,#34d399,#059669); }
.h4-tab { margin-top: auto; height: 40px; border-radius: 20px; background: #14102a; display: grid; grid-template-columns: repeat(4,1fr); place-items: center; }
.h4-tab i { width: 11px; height: 11px; border-radius: 3px; background: rgba(255,255,255,.28); } .h4-tab i.on { background: #a78bfa; box-shadow: 0 0 0 4px rgba(167,139,250,.25); }
.w40{width:40%} .w45{width:45%} .w50{width:50%} .w60{width:60%} .w70{width:70%} .w75{width:75%}

/* --- notifications sliding out from behind the phone --- */
.h4-ntf { position: absolute; z-index: 5; width: 236px; display: flex; gap: 10px; align-items: flex-start; padding: 11px 12px; border-radius: 20px;
  background: rgba(255,255,255,.94); box-shadow: 0 30px 60px -26px rgba(20,16,42,.45), 0 0 0 1px rgba(20,16,42,.06), inset 0 1px 0 #fff; opacity: 0; will-change: transform, opacity; }
.h4-ntf-ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; color: #fff; box-shadow: 0 6px 14px -6px rgba(20,16,42,.45); }
.ic-cal { background: #fff; color: #ef4444; border: 1px solid rgba(20,16,42,.08); flex-direction: column; font-weight: 800; font-size: 15px; position: relative; }
.ic-cal::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 9px; border-radius: 11px 11px 0 0; background: #ef4444; }
.ic-cal b { margin-top: 6px; color: #14102a; }
.ic-pay { background: linear-gradient(135deg, #10b981, #059669); }
.ic-tf { background: linear-gradient(135deg, #2563eb, #1e40af); }
.ic-as { background: linear-gradient(135deg, #38bdf8, #0284c7); position: relative; }
.ic-as i { width: 18px; height: 18px; border: 2.5px solid #fff; border-radius: 50%; display: block; clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%); transform: rotate(45deg) scale(.9); }
.h4-ntf-body { flex: 1; min-width: 0; }
.h4-ntf-row { display: flex; justify-content: space-between; align-items: baseline; gap: 8px; }
.h4-ntf-row b { font-size: 12.5px; color: #14102a; } .h4-ntf-row small { font-size: 9.5px; color: #7a7394; white-space: nowrap; }
.h4-ntf p { margin: 2px 0 0; font-size: 11px; line-height: 1.35; color: #4b4566; } .h4-ntf p strong { color: #14102a; }

.h4-ntf.n1 { left: -2%; top: 11%; }
.h4-ntf.n2 { right: -3%; top: 25%; }
.h4-ntf.n3 { left: 0; top: 47%; }
.h4-ntf.n4 { right: -1%; top: 62%; }
.h4-ntf.from-left { animation: h4NtfL 13s cubic-bezier(.2,.8,.2,1) infinite; }
.h4-ntf.from-right { animation: h4NtfR 13s cubic-bezier(.2,.8,.2,1) infinite; }
.h4-ntf.n1 { animation-delay: .4s; } .h4-ntf.n2 { animation-delay: 3.4s; } .h4-ntf.n3 { animation-delay: 6.4s; } .h4-ntf.n4 { animation-delay: 9.4s; }
@keyframes h4NtfL { 0% { opacity: 0; transform: translateX(70px) scale(.94); } 5%,34% { opacity: 1; transform: translateX(0) scale(1); } 40%,100% { opacity: 0; transform: translateX(-14px) scale(.98); } }
@keyframes h4NtfR { 0% { opacity: 0; transform: translateX(-70px) scale(.94); } 5%,34% { opacity: 1; transform: translateX(0) scale(1); } 40%,100% { opacity: 0; transform: translateX(14px) scale(.98); } }

/* --- data cards --- */
.h4-card { position: absolute; background: #fff; border-radius: 20px; box-shadow: 0 24px 48px -24px rgba(20,16,42,.35), 0 0 0 1px rgba(20,16,42,.05); z-index: 4; will-change: transform; animation: h4FloatB 9s ease-in-out infinite; }
.h4-chart { left: -1%; bottom: 3%; width: 210px; padding: 12px 12px 8px; }
.h4-chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; color: #14102a; margin-bottom: 4px; }
.h4-chart-head b { color: #047857; background: rgba(5,150,105,.1); border-radius: 6px; padding: 2px 6px; font-size: 9.5px; }
.h4-chart svg { width: 100%; height: 64px; display: block; overflow: visible; }
.h4-area { opacity: 0; animation: h4Area 6s ease-in-out infinite; }
.h4-line { fill: none; stroke: #7c3aed; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 420; stroke-dashoffset: 420; animation: h4Draw 6s cubic-bezier(.4,0,.2,1) infinite; }
.h4-dot { fill: #7c3aed; stroke: #fff; stroke-width: 2; transform-origin: 215px 14px; animation: h4Pop 6s ease-in-out infinite; }
.h4-axis { display: flex; justify-content: space-between; font-size: 8.5px; font-weight: 600; color: #7a7394; padding: 6px 2px 0; }
.h4-rev { right: 4%; bottom: 0; width: 150px; padding: 10px 12px; display: grid; grid-template-columns: 1fr auto; align-items: end; row-gap: 2px; animation-delay: 1.6s; }
.h4-rev small { grid-column: 1 / -1; font-size: 9.5px; color: #7a7394; } .h4-rev b { font-size: 17px; letter-spacing: -.02em; color: #14102a; } .h4-rev em { font-style: normal; font-size: 9.5px; font-weight: 800; color: #047857; background: rgba(5,150,105,.1); border-radius: 6px; padding: 2px 6px; }

@keyframes h4Float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes h4FloatB { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes h4Bar { 0%,6% { transform: scaleY(0); } 26%,84% { transform: scaleY(1); } 100% { transform: scaleY(0); } }
@keyframes h4Seg { 0%,28% { transform: translateX(0); } 33%,61% { transform: translateX(100%); } 66%,94% { transform: translateX(200%); } 100% { transform: translateX(0); } }
@keyframes h4Item { 0%,4% { opacity: 0; transform: translateY(10px); } 18%,88% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(-6px); } }
@keyframes h4Draw { 0%,8% { stroke-dashoffset: 420; } 50%,88% { stroke-dashoffset: 0; } 100% { stroke-dashoffset: 0; opacity: 0; } }
@keyframes h4Area { 0%,40% { opacity: 0; } 55%,88% { opacity: 1; } 100% { opacity: 0; } }
@keyframes h4Pop { 0%,46% { transform: scale(0); } 54%,88% { transform: scale(1); } 100% { transform: scale(0); } }

@media (max-width: 1023px) { .hero4-art { height: 580px; max-width: 540px; margin: 0 auto; width: 100%; } }
@media (max-width: 760px) {
  .hero4-art { height: 430px; margin-top: .8rem; }
  .h4-plate { right: 4%; top: 8%; width: 62%; height: 82%; border-radius: 1.6rem; }
  .h4-phone-wrap { width: 182px; margin-left: -91px; top: 2%; }
  .h4-phone { border-radius: 42px; } .h4-bezel { inset: 3px; border-radius: 39px; } .h4-screen { inset: 6px; border-radius: 36px; padding: 36px 10px 12px; gap: 8px; }
  .h4-island { width: 70px; height: 22px; top: 10px; } .h4-lens { width: 9px; height: 9px; }
  .h4-btn-action { top: 72px; height: 18px; } .h4-btn-vol1 { top: 100px; height: 32px; } .h4-btn-vol2 { top: 138px; height: 32px; } .h4-btn-power { top: 120px; height: 52px; }
  .h4-num { font-size: 21px; } .h4-hero { padding: 10px 11px 8px; } .h4-bars { height: 22px; } .h4-item { padding: 6px 8px; } .h4-ic { width: 22px; height: 22px; } .h4-tab { height: 32px; }
  .h4-ntf { width: 190px; padding: 9px 10px; border-radius: 16px; } .h4-ntf-ic { width: 32px; height: 32px; }
  .h4-ntf.n1 { left: -4%; top: 8%; } .h4-ntf.n2 { right: -5%; top: 24%; } .h4-ntf.n3 { left: -3%; top: 44%; } .h4-ntf.n4 { right: -4%; top: 60%; }
  .h4-chart { width: 160px; padding: 10px 10px 6px; bottom: 2%; left: -3%; } .h4-chart svg { height: 50px; }
  .h4-rev { width: 130px; right: 0; bottom: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .h4-phone-wrap, .h4-card, .h4-ntf, .h4-bars i, .h4-seg i, .h4-item, .h4-line, .h4-area, .h4-dot { animation: none !important; }
  .h4-ntf, .h4-area { opacity: 1; } .h4-ntf { transform: none; } .h4-line { stroke-dashoffset: 0; } .h4-dot, .h4-bars i, .h4-item { transform: none; opacity: 1; }
}

/* Perf: anything flagged off-screen stops animating */
.is-off, .is-off *, .is-off *::before, .is-off *::after { animation-play-state: paused !important; }
.h4-glow { filter: blur(24px); }
.contact-step .as-h1 { font: inherit; }

/* ======================= WHO WE BUILD FOR v2 — industry switcher ======================= */
.aud-wrap { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 2.5rem; align-items: center; }
.aud-tabs { display: flex; flex-direction: column; gap: .6rem; }
.aud-tab { --acc: #7c3aed; display: grid; grid-template-columns: 44px 1fr auto; align-items: center; gap: 1rem; width: 100%; text-align: left; padding: .95rem 1.1rem; border-radius: 18px; border: 1px solid rgba(20,16,42,.08); background: #fff; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease; font-family: inherit; }
.aud-tab:hover { transform: translateX(4px); box-shadow: 0 16px 30px -20px rgba(20,16,42,.35); }
.aud-tab.is-on { border-color: var(--acc); box-shadow: 0 24px 44px -24px rgba(20,16,42,.35), 0 0 0 3px color-mix(in srgb, var(--acc) 14%, transparent); }
.aud-tab-ic { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); }
.aud-tab-ic svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.aud-tab-txt b { display: block; font-size: 1.02rem; color: #14102a; letter-spacing: -.01em; }
.aud-tab-txt small { display: block; font-size: .86rem; color: #7a7394; margin-top: 2px; }
.aud-tab-arrow { color: #b8b1cf; font-size: 1.1rem; transition: transform .2s, color .2s; }
.aud-tab.is-on .aud-tab-arrow { color: var(--acc); transform: translateX(3px); }

.aud-stage { position: relative; height: 620px; display: grid; place-items: center; }
.aud-plate { position: absolute; inset: 6% 8%; border-radius: 2.4rem; background: linear-gradient(160deg, #ede9fe, #ddd6fe 50%, #c4b5fd); transform: rotate(-5deg); box-shadow: inset 0 1px 0 #fff; transition: background .6s ease; }
.aud-phone-wrap { position: relative; width: 240px; z-index: 2; filter: drop-shadow(0 50px 60px rgba(20,16,42,.35)); }
.aud-screen { position: absolute; inset: 8px; border-radius: 46px; overflow: hidden; background: #fbfaff; }
.ap-panel { --acc: #7c3aed; position: absolute; inset: 0; padding: 44px 14px 18px; display: flex; flex-direction: column; gap: 10px; opacity: 0; transform: translateX(24px); transition: opacity .45s ease, transform .45s cubic-bezier(.2,.8,.2,1); pointer-events: none; }
.ap-panel.is-on { opacity: 1; transform: none; }
.ap-head { display: flex; justify-content: space-between; align-items: center; font-size: 11px; font-weight: 700; color: #14102a; padding: 0 2px; }
.ap-app { display: inline-flex; align-items: center; gap: 6px; } .ap-app i { width: 16px; height: 16px; border-radius: 5px; background: var(--acc); }
.ap-hero { border-radius: 18px; padding: 14px; color: #fff; background: linear-gradient(140deg, color-mix(in srgb, var(--acc) 85%, #fff), var(--acc) 60%, color-mix(in srgb, var(--acc) 70%, #000)); box-shadow: 0 16px 28px -16px color-mix(in srgb, var(--acc) 70%, transparent); display: flex; flex-direction: column; gap: 4px; }
.ap-hero small { font-size: 9.5px; opacity: .9; } .ap-hero b { font-size: 17px; letter-spacing: -.02em; line-height: 1.15; }
.ap-prog { display: block; height: 6px; border-radius: 3px; background: rgba(255,255,255,.28); margin: 6px 0 2px; overflow: hidden; } .ap-prog span { display: block; height: 100%; width: var(--w); background: #fff; border-radius: 3px; }
.ap-row { display: flex; align-items: center; gap: 9px; background: #fff; border-radius: 13px; padding: 9px 10px; box-shadow: 0 8px 20px -14px rgba(20,16,42,.35); }
.ap-row > div { flex: 1; min-width: 0; } .ap-row b { display: block; font-size: 11px; color: #14102a; } .ap-row small { display: block; font-size: 9px; color: #7a7394; }
.ap-row em { font-style: normal; font-size: 10.5px; font-weight: 800; color: #14102a; }
.ap-dot { width: 28px; height: 28px; border-radius: 9px; background: color-mix(in srgb, var(--acc) 14%, #fff); flex: none; position: relative; } .ap-dot::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--acc); }
.ap-img { width: 30px; height: 30px; border-radius: 9px; flex: none; } .ap-img.i1 { background: linear-gradient(135deg,#fde68a,#f59e0b); } .ap-img.i2 { background: linear-gradient(135deg,#a7f3d0,#0ea5e9); }
.ap-time { font-size: 10px; font-weight: 800; color: var(--acc); width: 34px; flex: none; }
.ap-pill { background: var(--acc); color: #fff !important; border-radius: 999px; padding: 4px 9px; font-size: 9.5px !important; }
.ap-cta { margin-top: auto; text-align: center; font-size: 11.5px; font-weight: 800; color: #fff; background: #14102a; border-radius: 14px; padding: 12px; }
.ap-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; } .ap-tile { position: relative; height: 62px; border-radius: 12px; } .ap-tile b { position: absolute; left: 8px; bottom: 6px; font-size: 10.5px; color: #fff; }
.ap-tile.t1 { background: linear-gradient(135deg,#f9a8d4,#db2777); } .ap-tile.t2 { background: linear-gradient(135deg,#c4b5fd,#7c3aed); } .ap-tile.t3 { background: linear-gradient(135deg,#fdba74,#ea580c); } .ap-tile.t4 { background: linear-gradient(135deg,#6ee7b7,#059669); }
.ap-video { position: relative; height: 96px; border-radius: 16px; background: linear-gradient(135deg, #1e3a8a, #2563eb 60%, #60a5fa); color: #fff; padding: 12px; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; overflow: hidden; }
.ap-video i { position: absolute; top: 12px; right: 12px; width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.25); } .ap-video i::after { content: ""; position: absolute; left: 10px; top: 7px; border-left: 9px solid #fff; border-top: 6px solid transparent; border-bottom: 6px solid transparent; }
.ap-video b { font-size: 12px; } .ap-video small { font-size: 9px; opacity: .9; }
.ap-map { position: relative; height: 96px; border-radius: 16px; background: #e6f4f8 repeating-linear-gradient(45deg, rgba(8,145,178,.08) 0 2px, transparent 2px 14px); color: #14102a; padding: 12px; display: flex; flex-direction: column; justify-content: flex-end; gap: 2px; }
.ap-map i { position: absolute; top: 22px; left: 50%; width: 14px; height: 14px; border-radius: 50% 50% 50% 0; background: var(--acc); transform: translateX(-50%) rotate(-45deg); box-shadow: 0 0 0 5px color-mix(in srgb, var(--acc) 20%, transparent); }
.ap-map b { font-size: 12px; } .ap-map small { font-size: 9px; color: #4b4566; }
.aud-chips { position: absolute; left: 50%; bottom: 0; transform: translate(-50%, 6px); display: flex; gap: .45rem; opacity: 0; transition: opacity .4s ease, transform .4s ease; pointer-events: none; z-index: 3; }
.aud-chips.is-on { opacity: 1; transform: translate(-50%, 0); }
.aud-chips span { background: #fff; border: 1px solid rgba(20,16,42,.08); border-radius: 999px; padding: .4rem .8rem; font-size: .76rem; font-weight: 600; color: #14102a; box-shadow: 0 10px 20px -14px rgba(20,16,42,.35); white-space: nowrap; }

@media (max-width: 1023px) {
  .aud-wrap { grid-template-columns: 1fr; gap: 1.5rem; }
  .aud-tabs { flex-direction: row; overflow-x: auto; gap: .5rem; padding-bottom: .4rem; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; }
  .aud-tab { flex: 0 0 auto; width: auto; grid-template-columns: 36px auto; gap: .6rem; padding: .7rem .9rem; scroll-snap-align: start; border-radius: 999px; }
  .aud-tab-txt small, .aud-tab-arrow { display: none; }
  .aud-tab-ic { width: 36px; height: 36px; border-radius: 11px; }
  .aud-stage { height: 560px; }
}
@media (max-width: 760px) { .aud-stage { height: 520px; } .aud-phone-wrap { width: 200px; } .aud-screen { border-radius: 40px; inset: 7px; } .ap-panel { padding: 38px 12px 14px; } .aud-chips { flex-wrap: wrap; justify-content: center; width: 100%; } }
@media (prefers-reduced-motion: reduce) { .ap-panel, .aud-chips, .aud-tab { transition: none; } }

/* ---- industries: static app screenshots + dark section polish ---- */
.ap-shot { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; opacity: 0; transform: scale(1.02); transition: opacity .5s ease, transform .5s cubic-bezier(.2,.8,.2,1); }
.ap-shot.is-on { opacity: 1; transform: none; }
.aud-tab { background: rgba(255,255,255,.96); border-color: rgba(255,255,255,.08); }
.aud-tab.is-on { background: #fff; }
.aud-plate { background: linear-gradient(160deg, rgba(196,181,253,.55), rgba(139,92,246,.35) 55%, rgba(91,33,182,.45)); box-shadow: 0 50px 100px -50px rgba(0,0,0,.7); }
#who-we-build-for .aud-chips span { background: rgba(255,255,255,.95); }
.aud-more { text-align: center; margin-top: 2.2rem; }
.aud-more a { color: #d9ccff; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(217,204,255,.4); }
/* iPhone/Safari safety: no color-mix dependency for critical bits, tap targets, momentum scroll */
.aud-tab { -webkit-tap-highlight-color: transparent; min-height: 64px; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .aud-tab-ic { background: #ede9fe; } .aud-tab.is-on { box-shadow: 0 24px 44px -24px rgba(20,16,42,.35); } }
@media (max-width: 760px) {
  .aud-stage { height: 500px; } .aud-plate { inset: 4% 4%; }
  .aud-phone-wrap { width: 204px; filter: drop-shadow(0 30px 40px rgba(0,0,0,.45)); }
  .aud-screen { inset: 7px; border-radius: 40px; }
  .aud-tabs { margin: 0 -1rem; padding: 0 1rem .5rem; }
  .aud-tab { min-height: 48px; }
}

/* ======================= WHO WE BUILD FOR v3 — clean industry cards ======================= */
.ind-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.ind-card { --acc: #7c3aed; position: relative; background: #fff; color: #14102a; border-radius: 24px; padding: 1.6rem 1.6rem 1.3rem; display: flex; flex-direction: column; gap: .85rem; box-shadow: 0 30px 60px -40px rgba(0,0,0,.7), 0 0 0 1px rgba(255,255,255,.06); transition: transform .25s ease, box-shadow .25s ease; overflow: hidden; }
.ind-card::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 4px; background: var(--acc); }
.ind-card::after { content: ""; position: absolute; right: -40px; top: -40px; width: 160px; height: 160px; border-radius: 50%; background: radial-gradient(circle, color-mix(in srgb, var(--acc) 16%, transparent), transparent 70%); pointer-events: none; }
.ind-card:hover { transform: translateY(-4px); box-shadow: 0 40px 70px -40px rgba(0,0,0,.8), 0 0 0 1px rgba(255,255,255,.1); }
.ind-top { display: flex; justify-content: space-between; align-items: flex-start; }
.ind-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); }
.ind-ic svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.ind-num { font-size: 2rem; font-weight: 800; letter-spacing: -.04em; color: rgba(20,16,42,.08); line-height: 1; }
.ind-card h3 { margin: 0; font-size: 1.28rem; font-weight: 800; letter-spacing: -.02em; color: #14102a; }
.ind-card > p { margin: 0; font-size: .96rem; line-height: 1.55; color: #4b4566; }
.ind-feats { list-style: none; margin: .2rem 0 0; padding: 0; display: flex; flex-direction: column; gap: .5rem; }
.ind-feats li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 500; color: #14102a; }
.ind-feats svg { width: 16px; height: 16px; fill: none; stroke: var(--acc); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.ind-foot { margin-top: auto; padding-top: 1rem; border-top: 1px solid rgba(20,16,42,.08); display: flex; justify-content: space-between; align-items: center; font-size: .84rem; color: #7a7394; }
.ind-foot b { color: #14102a; font-weight: 700; }
.ind-foot a { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #14102a; color: #fff; text-decoration: none; font-size: 1rem; transition: background .2s, transform .2s; }
.ind-foot a:hover { background: var(--acc); transform: translateX(2px); }
@supports not (background: color-mix(in srgb, red 10%, white)) { .ind-ic { background: #ede9fe; } .ind-card::after { display: none; } }
@media (max-width: 1023px) { .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .ind-grid { grid-template-columns: 1fr; gap: .8rem; } .ind-card { padding: 1.3rem 1.2rem 1.1rem; border-radius: 20px; } .ind-num { font-size: 1.6rem; } }
/* retire the switcher */
.aud-wrap, .aud-tabs, .aud-stage { display: none; }

/* ======================= NAV v2 — mega menu ======================= */
.nav-links { align-items: center; }
.nav-item { position: relative; }
.nav-mega-trigger { display: inline-flex; align-items: center; gap: .35rem; }
.nav-mega-trigger svg { transition: transform .2s ease; }
.has-mega.is-open .nav-mega-trigger svg, .has-mega:hover .nav-mega-trigger svg { transform: rotate(180deg); }
.mega { position: absolute; left: 50%; top: calc(100% + 14px); width: min(860px, calc(100vw - 2rem)); transform: translate(-50%, 8px); opacity: 0; visibility: hidden; pointer-events: none;
  display: grid; grid-template-columns: 1.25fr 1fr 1.05fr; gap: 0; padding: 1.25rem; border-radius: 24px;
  background: rgba(16,13,24,.97); border: 1px solid rgba(244,242,251,.12); box-shadow: 0 40px 80px -30px rgba(0,0,0,.9), inset 0 1px 0 rgba(139,92,246,.18);
  transition: opacity .18s ease, transform .18s ease, visibility 0s linear .18s; z-index: 70; }
.mega::before { content: ""; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.has-mega:hover .mega, .has-mega.is-open .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); transition-delay: 0s; }
.mega-col { padding: .4rem 1rem .4rem .4rem; }
.mega-col + .mega-col { border-left: 1px solid rgba(244,242,251,.08); padding-left: 1.2rem; }
.mega-head { margin: 0 0 .6rem .55rem; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a78bfa; }
.mega-list { display: grid; gap: .1rem; }
.mega-col-apps .mega-list { grid-template-columns: 1fr 1fr; }
.mega-list a { display: flex; flex-direction: column; gap: 1px; padding: .55rem .6rem; border-radius: 12px; text-decoration: none; color: #f4f2fb; transition: background .15s; }
.mega-list a:hover { background: rgba(244,242,251,.07); }
.mega-list a b { font-size: .92rem; font-weight: 600; }
.mega-list a small { font-size: .76rem; color: #a49dba; }
.mega-card { border-radius: 18px; padding: 1.15rem 1.15rem 1rem; background: linear-gradient(160deg, rgba(139,92,246,.22), rgba(109,40,217,.12)); border: 1px solid rgba(167,139,250,.28); color: #f4f2fb; display: flex; flex-direction: column; gap: .5rem; }
.mega-card-k { margin: 0; font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #c4b5fd; }
.mega-card h4 { margin: 0; font-size: 1.05rem; line-height: 1.25; letter-spacing: -.01em; }
.mega-card p { margin: 0; font-size: .84rem; color: #c6c0d6; line-height: 1.45; }
.mega-card-btn { margin-top: .3rem; align-self: flex-start; padding: .6rem 1rem; border-radius: 999px; background: var(--grad-btn); color: #170f2a; font-weight: 700; font-size: .86rem; text-decoration: none; }
.mega-card ul { list-style: none; margin: .5rem 0 0; padding: .6rem 0 0; border-top: 1px solid rgba(244,242,251,.1); display: grid; gap: .3rem; }
.mega-card li { display: flex; align-items: center; gap: .45rem; font-size: .8rem; color: #e9e3ff; }
.mega-card svg { width: 14px; height: 14px; fill: none; stroke: #a78bfa; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
/* mobile menu additions */
.mm-head { margin: .4rem 1rem .2rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #a78bfa; }
.mm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; margin-bottom: .4rem; }
.mm-grid a { font-size: .92rem !important; padding: .7rem .8rem !important; background: rgba(244,242,251,.05); }
@media (max-width: 760px) { .mega { display: none; } }
@media (min-width: 761px) and (max-width: 1023px) { .mega { grid-template-columns: 1fr 1fr; } .mega-card { grid-column: 1 / -1; } }

/* ======================= SERVICE PAGES (light) ======================= */
.svc-body { background: #f7f6fc; color: #14102a; }
.svc-body .section-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2rem); }
.svc-section { padding: clamp(3.6rem, 7vw, 6.5rem) 0; }
.svc-kicker { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 .9rem; font-size: .82rem; font-weight: 700; color: var(--acc, #6d28d9); }
.svc-kicker i { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
.svc-head { max-width: 44rem; margin-bottom: clamp(1.8rem, 3.5vw, 2.8rem); }
.svc-head h2 { font-family: "Inter", system-ui, sans-serif; font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.7rem); line-height: 1.08; letter-spacing: -.03em; color: #14102a; margin: 0; text-wrap: balance; }
.svc-head-sub { margin: .8rem 0 0; font-size: 1.05rem; line-height: 1.6; color: #4b4566; max-width: 38rem; }

/* hero */
.svc-hero { --acc: #7c3aed; padding: 7.6rem 0 2.5rem; position: relative; overflow: hidden; }
.svc-hero::before { content: ""; position: absolute; inset: -30% -10% auto 30%; height: 120%; background: radial-gradient(circle at 70% 30%, color-mix(in srgb, var(--acc) 16%, transparent), transparent 55%); pointer-events: none; }
.svc-crumb { position: relative; font-size: .84rem; color: #7a7394; margin: 0 0 1.8rem; display: flex; gap: .5rem; align-items: center; }
.svc-crumb a { color: #4b4566; text-decoration: none; } .svc-crumb a:hover { color: #14102a; } .svc-crumb span { color: #b8b1cf; }
.svc-hero-grid { position: relative; display: grid; grid-template-columns: 1.2fr .9fr; gap: 3.5rem; align-items: center; }
.svc-hero h1 { font-family: "Inter", system-ui, sans-serif; font-weight: 800; font-size: clamp(2.3rem, 4.5vw, 3.8rem); line-height: 1.04; letter-spacing: -.035em; color: #14102a; margin: 0 0 1.1rem; text-wrap: balance; }
.svc-sub { font-size: clamp(1.02rem, 1.3vw, 1.18rem); line-height: 1.6; color: #4b4566; max-width: 34rem; margin: 0 0 1.7rem; }
.svc-ghost { display: inline-flex; align-items: center; padding: 13px 20px; border-radius: 999px; border: 1.5px solid rgba(20,16,42,.16); color: #14102a; font-weight: 600; text-decoration: none; }
.svc-ghost:hover { background: #fff; border-color: rgba(20,16,42,.3); }
.svc-trust { list-style: none; margin: 1.5rem 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: .5rem 1.3rem; }
.svc-trust li { display: inline-flex; align-items: center; gap: .45rem; font-size: .88rem; font-weight: 500; color: #4b4566; }
.svc-trust svg, .svc-price svg { width: 16px; height: 16px; fill: none; stroke: var(--acc); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.svc-hero-side { position: relative; }
.svc-plate { position: absolute; inset: -6% -4% -8% 8%; border-radius: 2.2rem; background: linear-gradient(160deg, color-mix(in srgb, var(--acc) 22%, #fff), color-mix(in srgb, var(--acc) 42%, #fff)); transform: rotate(-4deg); }
.svc-price { position: relative; border-radius: 24px; padding: 1.7rem 1.7rem 1.5rem; background: #fff; color: #14102a; box-shadow: 0 34px 70px -34px rgba(20,16,42,.35), 0 0 0 1px rgba(20,16,42,.06); overflow: hidden; }
.svc-price::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; background: var(--acc); }
.svc-price-k { margin: 0; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7a7394; }
.svc-price-n { margin: .35rem 0 0; font-size: 2.5rem; font-weight: 800; letter-spacing: -.04em; line-height: 1; }
.svc-price-m { margin: .4rem 0 1rem; font-size: .94rem; color: #4b4566; }
.svc-price ul { list-style: none; margin: 0; padding: 1rem 0 1.1rem; border-top: 1px solid rgba(20,16,42,.08); display: grid; gap: .55rem; }
.svc-price li { display: flex; align-items: center; gap: .55rem; font-size: .9rem; font-weight: 500; }
.svc-price-btn { display: block; text-align: center; padding: .85rem 1rem; border-radius: 999px; background: #14102a; color: #fff; font-weight: 700; text-decoration: none; transition: background .2s; }
.svc-price-btn:hover { background: var(--acc); }

/* pains */
.svc-pains { background: #fff; }
.svc-pain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-pain { display: flex; gap: .9rem; align-items: flex-start; padding: 1.3rem 1.3rem; border-radius: 20px; background: #f7f6fc; border: 1px solid rgba(20,16,42,.06); }
.svc-pain-x { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: rgba(239,68,68,.12); color: #dc2626; font-size: .8rem; font-weight: 800; }
.svc-pain p { margin: 0; font-size: 1rem; line-height: 1.5; color: #14102a; font-weight: 500; }

/* features */
.svc-features { background: linear-gradient(180deg, color-mix(in srgb, var(--acc) 7%, #f7f6fc), #f7f6fc); }
.svc-feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-feat { --acc: #7c3aed; position: relative; background: #fff; border-radius: 22px; padding: 1.5rem 1.5rem 1.4rem; box-shadow: 0 24px 48px -30px rgba(20,16,42,.25), 0 0 0 1px rgba(20,16,42,.06); transition: transform .22s ease, box-shadow .22s ease; }
.svc-feat:hover { transform: translateY(-3px); box-shadow: 0 34px 60px -32px rgba(20,16,42,.35), 0 0 0 1px rgba(20,16,42,.08); }
.svc-feat-n { display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); font-size: .8rem; font-weight: 800; margin-bottom: .9rem; }
.svc-feat h3 { margin: 0 0 .35rem; font-size: 1.08rem; font-weight: 800; letter-spacing: -.015em; color: #14102a; }
.svc-feat p { margin: 0; font-size: .94rem; line-height: 1.55; color: #4b4566; }

/* process timeline */
.svc-process { background: #fff; }
.svc-timeline { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; position: relative; }
.svc-timeline::before { content: ""; position: absolute; left: 6%; right: 6%; top: 22px; height: 2px; background: linear-gradient(90deg, #c4b5fd, #7c3aed); border-radius: 2px; }
.svc-timeline li { position: relative; padding-top: 3.4rem; }
.svc-tl-n { position: absolute; top: 0; left: 0; width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center; background: #14102a; color: #fff; font-weight: 800; box-shadow: 0 0 0 6px #fff; }
.svc-timeline h3 { margin: 0 0 .35rem; font-size: 1.05rem; font-weight: 800; letter-spacing: -.015em; color: #14102a; }
.svc-timeline p { margin: 0; font-size: .92rem; line-height: 1.55; color: #4b4566; }

/* faq (light cards) */
.svc-faq .faq-wrap { background: #fff; border-radius: 16px; box-shadow: 0 16px 36px -28px rgba(20,16,42,.3), 0 0 0 1px rgba(20,16,42,.06); margin-bottom: .7rem; padding: 0 1.2rem; }
.svc-faq .faq-wrap summary { color: #14102a; font-weight: 700; } .svc-faq .faq-wrap summary em { color: var(--acc, #6d28d9); }
.svc-faq .faq-wrap p { color: #4b4566; }
.svc-faq .faq-plus { border-color: rgba(20,16,42,.15); color: #14102a; }

/* cta + others */
.svc-cta { padding-top: 1rem; }
.svc-cta-box { --acc: #7c3aed; display: flex; justify-content: space-between; align-items: center; gap: 2rem; padding: 2.5rem 2.8rem; border-radius: 28px; background: linear-gradient(145deg, color-mix(in srgb, var(--acc) 85%, #fff), var(--acc) 55%, color-mix(in srgb, var(--acc) 70%, #000)); color: #fff; box-shadow: 0 50px 100px -50px color-mix(in srgb, var(--acc) 70%, transparent); position: relative; overflow: hidden; }
.svc-cta-box::before { content: ""; position: absolute; inset: -40% -10% auto auto; width: 60%; height: 90%; border-radius: 50%; background: radial-gradient(circle, rgba(255,255,255,.28), transparent 60%); }
.svc-cta-box > * { position: relative; }
.svc-cta-box h2 { margin: 0 0 .4rem; font-family: "Inter", system-ui, sans-serif; font-weight: 800; letter-spacing: -.03em; font-size: clamp(1.6rem, 3vw, 2.3rem); color: #fff; }
.svc-cta-box p { margin: 0; color: rgba(255,255,255,.9); max-width: 34rem; }
.svc-others-k { margin: 2.4rem 0 .8rem; font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #7a7394; }
.svc-others { display: grid; grid-template-columns: repeat(5, 1fr); gap: .7rem; }
.svc-other { --acc: #7c3aed; display: flex; flex-direction: column; gap: 2px; padding: .9rem 1rem; border-radius: 16px; background: #fff; border: 1px solid rgba(20,16,42,.07); border-left: 3px solid var(--acc); text-decoration: none; color: #14102a; transition: transform .2s, box-shadow .2s; }
.svc-other:hover { transform: translateY(-2px); box-shadow: 0 16px 30px -22px rgba(20,16,42,.35); }
.svc-other b { font-size: .92rem; } .svc-other small { font-size: .78rem; color: #7a7394; }
.svc-hub-card { text-decoration: none; }
.svc-hub-card .ind-arrow { width: 36px; height: 36px; border-radius: 50%; display: grid; place-items: center; background: #14102a; color: #fff; }
.svc-hub-card:hover .ind-arrow { background: var(--acc); }
.svc-hub .ind-card { box-shadow: 0 24px 48px -30px rgba(20,16,42,.25), 0 0 0 1px rgba(20,16,42,.06); }
.svc-body .footer2 { margin-top: 2rem; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-hero::before, .svc-plate { display: none; } .svc-cta-box { background: var(--acc); } .svc-feat-n { background: #ede9fe; } .svc-features { background: #f7f6fc; } }
@media (max-width: 1023px) { .svc-hero-grid { grid-template-columns: 1fr; gap: 2.2rem; } .svc-pain-grid, .svc-feat-grid { grid-template-columns: 1fr 1fr; } .svc-timeline { grid-template-columns: 1fr 1fr; gap: 2rem 1.2rem; } .svc-timeline::before { display: none; } .svc-others { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 760px) { .svc-hero { padding-top: 5.6rem; } .svc-pain-grid, .svc-feat-grid, .svc-timeline, .svc-others { grid-template-columns: 1fr; } .svc-cta-box { flex-direction: column; align-items: flex-start; padding: 1.8rem 1.4rem; } .svc-price { padding: 1.4rem; } .svc-plate { inset: -4% 0 -6% 6%; } .svc-hero .hero-ctas { flex-direction: column; align-items: stretch; } .svc-hero .glass-cta.gc-hero, .svc-ghost { width: 100%; justify-content: center; } }

/* ======================= NAV/MENU layout v3 + service page media/animation ======================= */
.nav, .nav .mega { z-index: 200; }
.mobile-menu { z-index: 199; background: #100d18 !important; }
.mega { width: min(920px, calc(100vw - 2rem)); grid-template-columns: 1.45fr .9fr 1fr; }
.mega-col-apps .mega-list { grid-template-columns: 1fr 1fr; gap: .15rem .5rem; }
.mega-list a { flex-direction: row; align-items: center; gap: .65rem; padding: .5rem .6rem; }
.mega-list a span { display: flex; flex-direction: column; gap: 1px; }
.mega-dot { --acc: #7c3aed; width: 9px; height: 9px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 22%, transparent); flex: none; }
.mega-list-plain a { flex-direction: column; align-items: flex-start; }
.mm-list { display: flex; flex-direction: column; gap: .15rem; margin-bottom: .5rem; }
.mm-list a { display: flex !important; align-items: center; gap: .7rem; padding: .7rem .9rem !important; font-size: .98rem !important; border-radius: 12px; }
.mm-list a span { flex: 1; } .mm-list a small { font-size: .78rem; color: #a49dba; font-weight: 500; }
.mm-list .mega-dot { width: 8px; height: 8px; }
.mm-head { margin-top: .6rem; }

/* hero media + overlapping price card */
.svc-hero-side { position: relative; padding-bottom: 0; }
.svc-hero-media { position: relative; margin: 0 0 0 auto; width: 100%; aspect-ratio: 4 / 3; border-radius: 26px; overflow: hidden; box-shadow: 0 40px 80px -40px rgba(20,16,42,.45), 0 0 0 1px rgba(20,16,42,.06); background: #ece9f7; }
.svc-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 55%, color-mix(in srgb, var(--acc) 35%, transparent)); mix-blend-mode: multiply; pointer-events: none; }
.svc-hero-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.2s cubic-bezier(.2,.8,.2,1); }
.svc-hero-media.in img { transform: scale(1); }
.svc-plate { display: none; }
.svc-hero-side .svc-price { margin: -3.2rem 1.2rem 0 -1.6rem; width: auto; max-width: 380px; }
@media (max-width: 1023px) { .svc-hero-side .svc-price { margin: -2.4rem 0 0 1rem; } }
@media (max-width: 760px) { .svc-hero-media { border-radius: 20px; } .svc-hero-side .svc-price { margin: -1.6rem .6rem 0; max-width: none; } }

/* hub cards with images */
.svc-hub-img { margin: -1.6rem -1.6rem 1rem; aspect-ratio: 16 / 9; overflow: hidden; border-radius: 24px 24px 0 0; background: #ece9f7; }
.svc-hub-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.svc-hub-card:hover .svc-hub-img img { transform: scale(1.05); }
.svc-hub .ind-card::before { display: none; }
.svc-hub .ind-grid { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1100px) { .svc-hub .ind-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .svc-hub .ind-grid { grid-template-columns: 1fr; } .svc-hub-img { margin: -1.3rem -1.2rem .9rem; border-radius: 20px 20px 0 0; } }

/* staggered reveals */
.svc-pain.reveal, .svc-feat.reveal, .svc-timeline li.reveal, .svc-other, .svc-hub-card.reveal { transition-delay: calc(var(--i, 0) * 70ms); }
.svc-pain:nth-child(2), .svc-feat:nth-child(2), .svc-timeline li:nth-child(2), .svc-hub-card:nth-child(2) { --i: 1; }
.svc-pain:nth-child(3), .svc-feat:nth-child(3), .svc-timeline li:nth-child(3), .svc-hub-card:nth-child(3) { --i: 2; }
.svc-feat:nth-child(4), .svc-timeline li:nth-child(4), .svc-hub-card:nth-child(4) { --i: 3; }
.svc-feat:nth-child(5), .svc-hub-card:nth-child(5) { --i: 4; } .svc-feat:nth-child(6), .svc-hub-card:nth-child(6) { --i: 5; }
.svc-hub-card:nth-child(7) { --i: 6; } .svc-hub-card:nth-child(8) { --i: 7; }
.svc-tl-n { transition: transform .3s cubic-bezier(.34,1.56,.64,1); } .svc-timeline li.in .svc-tl-n { transform: scale(1); }
.svc-timeline li .svc-tl-n { transform: scale(.6); }
.svc-others { grid-template-columns: repeat(7, 1fr); }
@media (max-width: 1100px) { .svc-others { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 760px) { .svc-others { grid-template-columns: 1fr 1fr; } }
@supports not (background: color-mix(in srgb, red 10%, white)) { .mega-dot { box-shadow: none; } .svc-hero-media::after { display: none; } }

/* ======================= SERVICE HERO v3 — centred, badges, media band ======================= */
.sh { --acc: #7c3aed; position: relative; padding: 7.4rem 0 0; overflow: hidden; }
.sh-bg { position: absolute; inset: 0; pointer-events: none; background: radial-gradient(60% 40% at 50% 0%, color-mix(in srgb, var(--acc) 18%, transparent), transparent 70%); }
.sh-bg::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(20,16,42,.12) 1px, transparent 1.3px); background-size: 22px 22px; -webkit-mask-image: radial-gradient(60% 60% at 50% 20%, #000, transparent 75%); mask-image: radial-gradient(60% 60% at 50% 20%, #000, transparent 75%); opacity: .5; }
.sh-orb { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55; animation: shOrb 14s ease-in-out infinite; }
.sh-orb-1 { width: 420px; height: 420px; left: -8%; top: 10%; background: color-mix(in srgb, var(--acc) 28%, #fff); }
.sh-orb-2 { width: 360px; height: 360px; right: -6%; top: 20%; background: #c4b5fd; animation-delay: -7s; }
@keyframes shOrb { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-24px); } }
.sh-inner { position: relative; text-align: center; max-width: 900px; }
.sh .svc-crumb { justify-content: center; }
.sh-kicker { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1.1rem; padding: .45rem .95rem .45rem .7rem; border-radius: 999px; background: #fff; color: var(--acc); font-size: .82rem; font-weight: 700; box-shadow: 0 8px 24px -14px rgba(20,16,42,.35), 0 0 0 1px rgba(20,16,42,.06); }
.sh-kicker::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 20%, transparent); }
.sh-h1 { font-family: "Inter", system-ui, sans-serif; font-weight: 800; font-size: clamp(2.5rem, 5.4vw, 4.6rem); line-height: 1.02; letter-spacing: -.04em; color: #14102a; margin: 0 auto 1.1rem; max-width: 16ch; text-wrap: balance; }
.sh-sub { font-size: clamp(1.05rem, 1.35vw, 1.22rem); line-height: 1.6; color: #4b4566; max-width: 40rem; margin: 0 auto 1.8rem; }
.sh-ctas { justify-content: center; }
.sh-badges { list-style: none; margin: 2.4rem auto 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: .8rem; max-width: 980px; }
.sh-badges li { display: flex; align-items: center; gap: .8rem; text-align: left; padding: .9rem 1rem; border-radius: 18px; background: rgba(255,255,255,.85); box-shadow: 0 16px 34px -24px rgba(20,16,42,.35), 0 0 0 1px rgba(20,16,42,.06); backdrop-filter: none; transition-delay: calc(var(--i, 0) * 80ms); }
.sh-badges li:nth-child(2) { --i: 1; } .sh-badges li:nth-child(3) { --i: 2; } .sh-badges li:nth-child(4) { --i: 3; }
.sh-badge-ic { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); }
.sh-badge-ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.sh-badges b { display: block; font-size: .95rem; color: #14102a; letter-spacing: -.01em; } .sh-badges small { display: block; font-size: .78rem; color: #7a7394; }
.sh-media { position: relative; margin: 3rem auto 0; aspect-ratio: 16 / 8.2; border-radius: 30px 30px 0 0; overflow: hidden; background: #ece9f7; box-shadow: 0 -30px 80px -50px rgba(20,16,42,.3); }
.sh-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.6s cubic-bezier(.2,.8,.2,1); }
.sh-media.in img { transform: scale(1); }
.sh-media-fade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(20,16,42,.55) 0%, rgba(20,16,42,.15) 45%, transparent 70%), linear-gradient(0deg, rgba(20,16,42,.35), transparent 40%); pointer-events: none; }
.sh-price { position: absolute; left: clamp(1rem, 4vw, 3rem); bottom: clamp(1rem, 4vw, 3rem); width: min(340px, 80%); border-radius: 22px; padding: 1.4rem 1.5rem 1.3rem; background: #fff; color: #14102a; box-shadow: 0 30px 60px -30px rgba(0,0,0,.6); }
.sh-price::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 5px; border-radius: 22px 22px 0 0; background: var(--acc); }
.sh-price .svc-price-n { font-size: 2.1rem; }
.sh-price ul { list-style: none; margin: 0; padding: .8rem 0 1rem; border-top: 1px solid rgba(20,16,42,.08); display: grid; gap: .45rem; }
.sh-price li { display: flex; align-items: center; gap: .5rem; font-size: .86rem; font-weight: 500; }
.sh-price svg { width: 15px; height: 15px; fill: none; stroke: var(--acc); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
/* old hero pieces off */
.svc-hero { display: none; }

/* why section: big stats */
.svc-why { background: #fff; padding-top: clamp(3rem, 6vw, 5rem); }
.svc-why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.svc-why-item { padding: 1.7rem 1.6rem; border-radius: 22px; background: #f7f6fc; border: 1px solid rgba(20,16,42,.06); transition-delay: calc(var(--i, 0) * 80ms); }
.svc-why-item:nth-child(2) { --i: 1; } .svc-why-item:nth-child(3) { --i: 2; }
.svc-why-item b { display: block; font-size: clamp(2rem, 3.4vw, 2.8rem); font-weight: 800; letter-spacing: -.045em; line-height: 1; color: var(--acc); margin-bottom: .6rem; }
.svc-why-item h3 { margin: 0 0 .35rem; font-size: 1.08rem; font-weight: 800; letter-spacing: -.015em; color: #14102a; }
.svc-why-item p { margin: 0; font-size: .95rem; line-height: 1.55; color: #4b4566; }
.svc-pains { background: #f7f6fc; }

@supports not (background: color-mix(in srgb, red 10%, white)) { .sh-bg { background: none; } .sh-orb-1 { background: #ede9fe; } .sh-badge-ic { background: #ede9fe; } .sh-kicker::before { box-shadow: none; } }
@media (max-width: 1023px) { .sh-badges { grid-template-columns: 1fr 1fr; } .svc-why-grid { grid-template-columns: 1fr; } .sh-media { aspect-ratio: 16 / 10; } }
@media (max-width: 760px) { .sh { padding-top: 5.6rem; } .sh-h1 { font-size: clamp(2.1rem, 9.5vw, 2.8rem); } .sh-badges { grid-template-columns: 1fr; gap: .55rem; margin-top: 1.6rem; } .sh-badges li { padding: .75rem .9rem; } .sh-ctas { flex-direction: column; align-items: stretch; } .sh .glass-cta.gc-hero, .sh .svc-ghost { width: 100%; justify-content: center; } .sh-media { margin-top: 2rem; aspect-ratio: 4 / 5; border-radius: 22px 22px 0 0; } .sh-price { left: .8rem; right: .8rem; bottom: .8rem; width: auto; padding: 1.1rem 1.2rem 1rem; } .sh-orb { display: none; } }

/* ======================= SERVICE PAGES: explanation rows + no-price tweaks ======================= */
.sh-price-tier { font-size: 1.9rem !important; }
.svc-expl { background: #f7f6fc; padding-top: clamp(2rem, 4vw, 3rem); }
.svc-expl-row { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; padding: clamp(2rem, 4vw, 3.5rem) 0; }
.svc-expl-row + .svc-expl-row { border-top: 1px solid rgba(20,16,42,.07); }
.svc-expl-flip .svc-expl-media { order: 2; }
.svc-expl-media { margin: 0; position: relative; aspect-ratio: 4 / 3; border-radius: 26px; overflow: hidden; background: #ece9f7; box-shadow: 0 40px 80px -44px rgba(20,16,42,.45), 0 0 0 1px rgba(20,16,42,.06); }
.svc-expl-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(200deg, transparent 60%, color-mix(in srgb, var(--acc) 30%, transparent)); mix-blend-mode: multiply; pointer-events: none; }
.svc-expl-media::before { content: ""; position: absolute; left: 0; bottom: 0; width: 42%; height: 6px; background: var(--acc); z-index: 2; }
.svc-expl-media img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.05); transition: transform 1.4s cubic-bezier(.2,.8,.2,1); }
.svc-expl-row.in .svc-expl-media img { transform: scale(1); }
.svc-expl-copy h2 { font-family: "Inter", system-ui, sans-serif; font-weight: 800; font-size: clamp(1.6rem, 2.9vw, 2.3rem); line-height: 1.1; letter-spacing: -.03em; color: #14102a; margin: 0 0 .9rem; text-wrap: balance; }
.svc-expl-copy > p { margin: 0 0 1.2rem; font-size: 1.04rem; line-height: 1.65; color: #4b4566; }
.svc-expl-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.svc-expl-list li { display: flex; align-items: flex-start; gap: .6rem; font-size: .96rem; font-weight: 500; color: #14102a; line-height: 1.45; }
.svc-expl-list svg { width: 18px; height: 18px; flex: none; margin-top: 2px; fill: none; stroke: var(--acc); stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; }
.svc-why { background: #fff; }
.svc-pains { background: #fff; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-expl-media::after { display: none; } }
@media (max-width: 1023px) { .svc-expl-row { grid-template-columns: 1fr; gap: 1.4rem; } .svc-expl-flip .svc-expl-media { order: 0; } }
@media (max-width: 760px) { .svc-expl-media { border-radius: 20px; } .svc-expl-row { padding: 1.6rem 0; } }

/* ======================= MEGA MENU v3 — light panel, icon tiles, feature image ======================= */
.nav { isolation: isolate; }
.mega { background: #ffffff !important; border: 1px solid rgba(20,16,42,.08) !important; box-shadow: 0 40px 90px -30px rgba(20,16,42,.45), 0 0 0 1px rgba(20,16,42,.04) !important; width: min(980px, calc(100vw - 2rem)); padding: 1.1rem; border-radius: 26px;
  display: grid !important; grid-template-columns: 1fr 290px; grid-template-rows: auto auto; gap: 1rem; opacity: 0; visibility: hidden; }
.has-mega:hover .mega, .has-mega.is-open .mega, .has-mega:focus-within .mega { opacity: 1; visibility: visible; }
.mega-main { padding: .3rem .3rem 0 .3rem; }
.mega-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: .6rem; padding: 0 .4rem; }
.mega .mega-head { margin: 0; color: #6d28d9; }
.mega-all { font-size: .82rem; font-weight: 700; color: #14102a; text-decoration: none; }
.mega-all:hover { color: #6d28d9; }
.mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .25rem .5rem; }
.mega-tile { --acc: #7c3aed; display: flex; align-items: center; gap: .75rem; padding: .6rem .7rem; border-radius: 14px; text-decoration: none; color: #14102a; transition: background .15s ease, transform .15s ease; }
.mega-tile:hover { background: color-mix(in srgb, var(--acc) 8%, #fff); transform: translateX(2px); }
.mega-tile-ic { flex: none; width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); }
.mega-tile-ic svg { width: 19px; height: 19px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mega-tile-txt { display: flex; flex-direction: column; gap: 1px; min-width: 0; }
.mega-tile-txt b { font-size: .92rem; font-weight: 700; color: #14102a; line-height: 1.2; }
.mega-tile-txt small { font-size: .76rem; color: #7a7394; line-height: 1.3; }
.mega-feature { position: relative; border-radius: 18px; overflow: hidden; min-height: 300px; background: #14102a; display: flex; align-items: flex-end; }
.mega-feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .85; }
.mega-feature::before { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,42,0) 20%, rgba(20,16,42,.92) 75%); }
.mega-feature-copy { position: relative; padding: 1.1rem 1.15rem 1.15rem; color: #fff; }
.mega-feature-k { margin: 0 0 .35rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #c4b5fd; }
.mega-feature h4 { margin: 0 0 .8rem; font-size: 1.02rem; line-height: 1.25; letter-spacing: -.01em; }
.mega-feature-btn { display: inline-block; padding: .55rem .95rem; border-radius: 999px; background: #fff; color: #14102a; font-size: .84rem; font-weight: 700; text-decoration: none; }
.mega-feature-btn:hover { background: #ede9fe; }
.mega-foot { grid-column: 1 / -1; display: flex; align-items: center; gap: .35rem; padding: .7rem .4rem .1rem; border-top: 1px solid rgba(20,16,42,.08); }
.mega-foot a { padding: .45rem .8rem; border-radius: 999px; font-size: .84rem; font-weight: 600; color: #14102a; text-decoration: none; background: #f4f2fb; }
.mega-foot a:hover { background: #ede9fe; color: #6d28d9; }
.mega-foot-note { margin-left: auto; font-size: .76rem; color: #9b95ad; }
/* retire old mega pieces */
.mega-col, .mega-card { display: none; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .mega-tile:hover { background: #f4f2fb; } .mega-tile-ic { background: #ede9fe; } }
@media (min-width: 761px) and (max-width: 1023px) { .mega { grid-template-columns: 1fr; } .mega-feature { min-height: 180px; } }
/* mega feature: no photo — gradient card with dot texture */
.mega-feature img { display: none; }
.mega-feature { background: linear-gradient(160deg, #2a1b5c 0%, #5b21b6 55%, #7c3aed 100%); }
.mega-feature::before { background: radial-gradient(circle at 80% 15%, rgba(255,255,255,.28), transparent 45%), radial-gradient(rgba(255,255,255,.18) 1px, transparent 1.3px) 0 0 / 14px 14px; }
.mega-feature::after { content: ""; position: absolute; right: -40px; top: -40px; width: 170px; height: 170px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, #c4b5fd, #7c3aed 60%, #4c1d95); box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }

/* ======================= SERVICE HERO v5 — full-bleed dark, flowing colour field ======================= */
.sx { --acc: #7c3aed; position: relative; min-height: min(78vh, 760px); padding: 8.5rem 0 5rem; display: flex; align-items: center; overflow: hidden;
  background: radial-gradient(90% 70% at 15% 40%, #16122a 0%, #0e0b15 55%, #0a0812 100%); color: #f4f2fb; }
.sx-art { position: absolute; inset: 0; pointer-events: none; }
.sx-svg { position: absolute; right: -6%; top: -8%; width: 72%; height: 118%; opacity: .95;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 34%, #000 100%); }
.sx-b1, .sx-b2, .sx-b3, .sx-b4 { transform-origin: center; transform-box: fill-box; will-change: transform; }
.sx-b1 { animation: sxDrift1 22s ease-in-out infinite; }
.sx-b2 { animation: sxDrift2 26s ease-in-out infinite; }
.sx-b3 { animation: sxDrift3 18s ease-in-out infinite; }
.sx-b4 { animation: sxDrift2 30s ease-in-out infinite reverse; }
@keyframes sxDrift1 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(-40px, 30px) scale(1.08); } }
@keyframes sxDrift2 { 0%,100% { transform: translate(0,0) rotate(0); } 50% { transform: translate(30px, -40px) rotate(6deg); } }
@keyframes sxDrift3 { 0%,100% { transform: translate(0,0) scale(1); } 50% { transform: translate(50px, 20px) scale(.92); } }
.sx-dust { position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.35) 1px, transparent 1.4px); background-size: 26px 26px; opacity: .18;
  -webkit-mask-image: radial-gradient(60% 70% at 70% 45%, #000, transparent 75%); mask-image: radial-gradient(60% 70% at 70% 45%, #000, transparent 75%); }
.sx-inner { position: relative; max-width: 1180px; width: 100%; }
.sx-crumb { color: #a49dba; margin-bottom: 1.6rem; }
.sx-crumb a { color: #c6c0d6; } .sx-crumb a:hover { color: #fff; } .sx-crumb span { color: #5f5a73; }
.sx-h1 { font-family: "Inter", system-ui, sans-serif; font-weight: 700; font-size: clamp(2.6rem, 6vw, 5.2rem); line-height: 1.02; letter-spacing: -.04em; color: #fff; margin: 0 0 1.4rem; max-width: 13ch; text-wrap: balance;
  animation: sxUp .9s cubic-bezier(.2,.8,.2,1) both; }
.sx-h1 em { font-style: normal; font-weight: 800; color: var(--acc); background: linear-gradient(90deg, var(--acc), color-mix(in srgb, var(--acc) 55%, #fff)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.sx-sub { font-size: clamp(1.05rem, 1.4vw, 1.25rem); line-height: 1.65; color: #c6c0d6; max-width: 36rem; margin: 0 0 2.2rem; animation: sxUp .9s .12s cubic-bezier(.2,.8,.2,1) both; }
.sx-ctas { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; animation: sxUp .9s .22s cubic-bezier(.2,.8,.2,1) both; }
.sx-btn { display: inline-flex; align-items: center; padding: 15px 26px; border-radius: 14px; border: 1.5px solid rgba(255,255,255,.55); color: #fff; font-weight: 600; text-decoration: none; transition: background .2s, border-color .2s, transform .2s; }
.sx-btn:hover { background: #fff; color: #14102a; border-color: #fff; transform: translateY(-1px); }
.sx-link { color: #c4b5fd; font-weight: 600; text-decoration: none; }
.sx-link:hover { color: #fff; }
@keyframes sxUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
/* retire the previous service hero */
.svc-hero4 { display: none; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .sx-h1 em { background: none; -webkit-text-fill-color: var(--acc); } }
@media (max-width: 1023px) { .sx-svg { width: 100%; right: -20%; opacity: .8; } }
@media (max-width: 760px) { .sx { min-height: 0; padding: 6.4rem 0 3.4rem; } .sx-svg { right: -35%; top: 0; width: 140%; height: 100%; -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 40%); mask-image: linear-gradient(180deg, transparent 0%, #000 40%); opacity: .6; } .sx-ctas { flex-direction: column; align-items: stretch; } .sx-btn { justify-content: center; } }
@media (prefers-reduced-motion: reduce) { .sx-b1, .sx-b2, .sx-b3, .sx-b4 { animation: none; } .sx-h1, .sx-sub, .sx-ctas { animation: none; } }

/* ======================= SERVICE: why (text left / themed app right) + sign-up section ======================= */
.svc-why { display: none; }
.svc-why2 { background: #f7f6fc; padding-top: clamp(3rem, 6vw, 5.5rem); }
.svc-why2-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.svc-why2-copy .svc-head { margin-bottom: 1.6rem; }
.svc-why2-list { display: grid; gap: .7rem; }
.svc-why2-list .svc-why-item { display: grid; grid-template-columns: 110px 1fr; gap: 1rem; align-items: start; padding: 1.1rem 1.2rem; background: #fff; border-radius: 18px; border: 1px solid rgba(20,16,42,.06); box-shadow: 0 16px 34px -28px rgba(20,16,42,.35); }
.svc-why2-list .svc-why-item b { font-size: clamp(1.5rem, 2.4vw, 2rem); margin: 0; line-height: 1.05; }
.svc-why2-list .svc-why-item h3 { margin: 0 0 .25rem; font-size: 1rem; }
.svc-why2-list .svc-why-item p { font-size: .9rem; }
.svc-why2-list .svc-why-item > div { display: contents; }
.svc-why2-art .hero4-art { height: 560px; }
.svc-why2-art .svc-art { display: block; }
@media (max-width: 1023px) { .svc-why2-grid { grid-template-columns: 1fr; } .svc-why2-art .hero4-art { max-width: 540px; margin: 0 auto; } }
@media (max-width: 760px) { .svc-why2-list .svc-why-item { grid-template-columns: 1fr; gap: .3rem; } .svc-why2-art .hero4-art { height: 430px; } }

/* sign-up */
.svc-signup { background: #fff; padding-top: 0; }
.svc-signup-box { display: grid; grid-template-columns: .95fr 1.05fr; border-radius: 30px; overflow: hidden; background: linear-gradient(145deg, #14102a 0%, #1b1533 50%, color-mix(in srgb, var(--acc) 40%, #14102a) 100%); box-shadow: 0 60px 120px -60px rgba(20,16,42,.7); }
.svc-signup-vis { position: relative; min-height: 460px; padding: 2.5rem; overflow: hidden; display: flex; align-items: flex-end; }
.svc-signup-vis::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 30% 20%, color-mix(in srgb, var(--acc) 45%, transparent), transparent 55%), radial-gradient(rgba(255,255,255,.12) 1px, transparent 1.3px) 0 0 / 18px 18px; }
.ss-screen { position: absolute; width: 150px; aspect-ratio: 9 / 18; border-radius: 24px; background: #fbfaff; padding: 26px 12px 12px; display: flex; flex-direction: column; gap: 8px; box-shadow: 0 40px 70px -30px rgba(0,0,0,.8), 0 0 0 5px #23202e, 0 0 0 6px rgba(255,255,255,.12); animation: ssIn 1s cubic-bezier(.2,.8,.2,1) both; will-change: transform; }
.ss-screen i { position: absolute; top: 8px; left: 50%; width: 46px; height: 12px; border-radius: 8px; background: #0b0914; transform: translateX(-50%); }
.ss-screen span { display: block; height: 8px; border-radius: 4px; background: rgba(20,16,42,.12); width: 85%; }
.ss-screen b { display: block; height: 78px; border-radius: 14px; background: linear-gradient(140deg, color-mix(in srgb, var(--acc) 85%, #fff), var(--acc)); margin-top: 4px; }
.ss-screen em { display: block; height: 28px; border-radius: 14px; background: #14102a; margin-top: auto; }
.ss-1 { left: 8%; top: 12%; transform: rotate(-8deg); animation-delay: .1s; }
.ss-2 { left: 34%; top: 6%; z-index: 2; animation-delay: .3s; }
.ss-3 { left: 60%; top: 14%; transform: rotate(8deg); animation-delay: .5s; }
.ss-1, .ss-3 { opacity: .92; }
.svc-signup-box.in .ss-1 { animation: ssIn 1s .1s cubic-bezier(.2,.8,.2,1) both, ssFloat 7s 1.2s ease-in-out infinite; }
.svc-signup-box.in .ss-2 { animation: ssIn 1s .3s cubic-bezier(.2,.8,.2,1) both, ssFloat 8s 1.4s ease-in-out infinite reverse; }
.svc-signup-box.in .ss-3 { animation: ssIn 1s .5s cubic-bezier(.2,.8,.2,1) both, ssFloat 7.5s 1.6s ease-in-out infinite; }
@keyframes ssIn { from { opacity: 0; transform: translateY(60px) rotate(0); } to { opacity: 1; } }
@keyframes ssFloat { 0%,100% { translate: 0 0; } 50% { translate: 0 -10px; } }
.ss-caption { position: relative; margin: 0; color: #d9ccff; font-size: 1.05rem; font-weight: 500; } .ss-caption strong { color: #fff; }
.svc-form { padding: 2.5rem; color: #fff; display: flex; flex-direction: column; gap: .9rem; }
.svc-kicker-light { color: #c4b5fd; }
.svc-form h2 { margin: 0; font-family: "Inter", system-ui, sans-serif; font-weight: 800; font-size: clamp(1.6rem, 2.8vw, 2.2rem); letter-spacing: -.03em; line-height: 1.1; color: #fff; }
.svc-form-sub { margin: 0 0 .4rem; color: #c6c0d6; line-height: 1.55; font-size: .98rem; }
.svc-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: .9rem; }
.svc-form label { display: flex; flex-direction: column; gap: .35rem; font-size: .8rem; font-weight: 600; color: #c6c0d6; }
.svc-form input, .svc-form textarea { width: 100%; padding: .85rem 1rem; border-radius: 12px; border: 1px solid rgba(255,255,255,.14); background: rgba(255,255,255,.06); color: #fff; font: inherit; font-size: .95rem; transition: border-color .2s, background .2s; }
.svc-form input:focus, .svc-form textarea:focus { outline: none; border-color: color-mix(in srgb, var(--acc) 70%, #fff); background: rgba(255,255,255,.1); }
.svc-form textarea { resize: vertical; min-height: 84px; }
.svc-form-btn { margin-top: .3rem; padding: 1rem 1.4rem; border: 0; border-radius: 999px; background: #fff; color: #14102a; font: inherit; font-weight: 800; font-size: 1rem; cursor: pointer; transition: transform .2s, background .2s; }
.svc-form-btn:hover { background: color-mix(in srgb, var(--acc) 18%, #fff); transform: translateY(-1px); }
.svc-form-note { margin: 0; font-size: .78rem; color: #9b95ad; }
.ss-hp { position: absolute; left: -9999px; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-signup-box { background: #14102a; } .ss-screen b { background: var(--acc); } }
@media (max-width: 1023px) { .svc-signup-box { grid-template-columns: 1fr; } .svc-signup-vis { min-height: 380px; } }
@media (max-width: 760px) { .svc-signup-vis { min-height: 320px; padding: 1.6rem; } .ss-screen { width: 110px; } .ss-1 { left: 4%; } .ss-2 { left: 33%; } .ss-3 { left: 62%; } .svc-form { padding: 1.6rem; } .svc-form-row { grid-template-columns: 1fr; } }

/* ======================= why section v3: fixed stat rows + photo on the right ======================= */
.svc-why2-grid { grid-template-columns: 1.1fr .9fr; align-items: stretch; }
.svc-why2-list .svc-why-item { grid-template-columns: 96px 1fr; grid-template-rows: auto auto; column-gap: 1.1rem; row-gap: .2rem; align-items: start; padding: 1.15rem 1.3rem; }
.svc-why2-list .svc-why-item b { grid-row: 1 / span 2; grid-column: 1; align-self: center; font-size: clamp(1.5rem, 2.2vw, 1.9rem); letter-spacing: -.04em; line-height: 1; }
.svc-why2-list .svc-why-item h3 { grid-column: 2; grid-row: 1; margin: 0; font-size: 1.02rem; }
.svc-why2-list .svc-why-item p { grid-column: 2; grid-row: 2; margin: 0; font-size: .93rem; line-height: 1.5; }
.svc-why2-art { display: none; }
.svc-why2-img { position: relative; margin: 0; min-height: 520px; height: 100%; border-radius: 28px; overflow: hidden; background: #ece9f7; box-shadow: 0 50px 90px -50px rgba(20,16,42,.5), 0 0 0 1px rgba(20,16,42,.06); }
.svc-why2-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform 1.6s cubic-bezier(.2,.8,.2,1); filter: saturate(.92); }
.svc-why2-img.in img { transform: scale(1); }
.svc-why2-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(20,16,42,0) 55%, rgba(20,16,42,.55) 100%), linear-gradient(160deg, color-mix(in srgb, var(--acc) 22%, transparent), transparent 50%); mix-blend-mode: normal; pointer-events: none; }
.svc-why2-img figcaption { position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2; display: inline-flex; align-items: center; gap: .55rem; padding: .55rem .95rem .55rem .7rem; border-radius: 999px; background: rgba(255,255,255,.92); color: #14102a; font-size: .82rem; font-weight: 700; }
.svc-why2-img figcaption span { width: 9px; height: 9px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 4px color-mix(in srgb, var(--acc) 22%, transparent); }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-why2-img::after { background: linear-gradient(180deg, rgba(20,16,42,0) 55%, rgba(20,16,42,.55) 100%); } }
@media (max-width: 1023px) { .svc-why2-grid { grid-template-columns: 1fr; } .svc-why2-img { min-height: 380px; } }
@media (max-width: 760px) { .svc-why2-list .svc-why-item { grid-template-columns: 76px 1fr; } .svc-why2-img { min-height: 300px; border-radius: 20px; } }

/* ======================= sign-up v2: full-width form, section coloured per service ======================= */
.svc-signup-box { grid-template-columns: 1fr; background: linear-gradient(145deg, color-mix(in srgb, var(--acc) 88%, #000) 0%, var(--acc) 55%, color-mix(in srgb, var(--acc) 70%, #fff) 100%); box-shadow: 0 60px 120px -60px color-mix(in srgb, var(--acc) 70%, transparent); position: relative; }
.svc-signup-box::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 85% 10%, rgba(255,255,255,.28), transparent 45%), radial-gradient(rgba(255,255,255,.14) 1px, transparent 1.3px) 0 0 / 18px 18px; pointer-events: none; }
.svc-signup-box::after { content: ""; position: absolute; right: -80px; bottom: -120px; width: 320px; height: 320px; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.55), color-mix(in srgb, var(--acc) 40%, #fff) 45%, color-mix(in srgb, var(--acc) 60%, #000) 100%); opacity: .55; filter: blur(2px); pointer-events: none; }
.svc-form { position: relative; z-index: 1; padding: clamp(2rem, 4vw, 3.4rem) clamp(1.5rem, 5vw, 4rem); max-width: 860px; }
.svc-form .svc-kicker-light { color: rgba(255,255,255,.85); }
.svc-form-sub { color: rgba(255,255,255,.88); max-width: 40rem; }
.svc-form label { color: rgba(255,255,255,.9); }
.svc-form input, .svc-form textarea { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.28); }
.svc-form input:focus, .svc-form textarea:focus { background: rgba(255,255,255,.22); border-color: #fff; }
.svc-form input::placeholder, .svc-form textarea::placeholder { color: rgba(255,255,255,.55); }
.svc-form-btn { background: #14102a; color: #fff; align-self: flex-start; padding: 1rem 1.8rem; }
.svc-form-btn:hover { background: #000; }
.svc-form-note { color: rgba(255,255,255,.75); }
.svc-process { display: none; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-signup-box { background: var(--acc); } .svc-signup-box::after { display: none; } }
@media (max-width: 760px) { .svc-form-btn { align-self: stretch; text-align: center; } }
/* signup: inherit the service accent from the section, never default to purple */
.svc-signup-box { --acc: inherit; }
.svc-signup[style*="--acc"] .svc-signup-box { --acc: var(--svc-acc); }

/* ======================= why stats v4: pill number + title on one line, description below ======================= */
.svc-why2-list { gap: .8rem; }
.svc-why2-list .svc-why-item { display: block !important; padding: 1.2rem 1.4rem 1.25rem; border-radius: 20px; background: #fff; border: 1px solid rgba(20,16,42,.06); border-left: 4px solid var(--acc); box-shadow: 0 18px 40px -30px rgba(20,16,42,.35); transition: transform .2s ease, box-shadow .2s ease; }
.svc-why2-list .svc-why-item:hover { transform: translateX(4px); box-shadow: 0 24px 50px -30px rgba(20,16,42,.45); }
.svc-why2-list .svc-why-item b { display: inline-flex; align-items: center; margin: 0 .7rem 0 0; padding: .35rem .75rem; border-radius: 10px; background: color-mix(in srgb, var(--acc) 12%, #fff); color: var(--acc); font-size: 1.25rem; font-weight: 800; letter-spacing: -.03em; line-height: 1; white-space: nowrap; vertical-align: middle; }
.svc-why2-list .svc-why-item h3 { display: inline; margin: 0; font-size: 1.08rem; font-weight: 800; letter-spacing: -.015em; color: #14102a; vertical-align: middle; line-height: 1.3; }
.svc-why2-list .svc-why-item p { display: block; margin: .65rem 0 0; font-size: .95rem; line-height: 1.55; color: #4b4566; }
.svc-why2-grid { align-items: center; }
.svc-why2-img { min-height: 0; height: auto; aspect-ratio: 4 / 4.6; }
@supports not (background: color-mix(in srgb, red 10%, white)) { .svc-why2-list .svc-why-item b { background: #f4f2fb; } }
@media (max-width: 760px) { .svc-why2-list .svc-why-item { padding: 1rem 1.1rem 1.1rem; } .svc-why2-list .svc-why-item b { font-size: 1.1rem; } .svc-why2-img { aspect-ratio: 4 / 3; } }
/* mega grid: 10 services -> 2 x 5, slightly tighter */
.mega-grid { gap: .15rem .5rem; }
.mega-tile { padding: .5rem .65rem; }
.mega-feature { min-height: 340px; }
.svc-others { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 760px) { .svc-others { grid-template-columns: 1fr 1fr; } }

/* ======================= NAV v4 — Services + Company mega, richer bar ======================= */
.mega-services { grid-template-columns: 1fr 300px; }
/* better apps grid: card-ish rows with hairline separators */
.mega-services .mega-grid { gap: .1rem 1.4rem; }
.mega-services .mega-tile { border-radius: 12px; }
.mega-services .mega-tile:hover { background: color-mix(in srgb, var(--acc) 9%, #fff); }
/* company mega */
.mega-company { width: min(680px, calc(100vw - 2rem)); padding: 1rem; grid-template-columns: 1fr !important; display: block !important; }
.mega-co-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .2rem; }
.mega-co { display: flex; align-items: center; gap: .8rem; padding: .8rem .9rem; border-radius: 14px; text-decoration: none; color: #14102a; transition: background .15s; }
.mega-co:hover { background: #f4f2fb; }
.mega-co-ic { flex: none; width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: #ede9fe; color: #6d28d9; }
.mega-co-ic svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.mega-co b { display: block; font-size: .95rem; color: #14102a; }
.mega-co small { display: block; font-size: .78rem; color: #7a7394; }
/* feature card: taller, orb sits nicely */
.mega-feature { min-height: 100%; }
@media (max-width: 760px) { .mega-services, .mega-company { display: none !important; } }
@media (min-width: 761px) and (max-width: 1023px) { .mega-co-grid { grid-template-columns: 1fr; } }

/* ======================= 3D icons in menus + hub ======================= */
.mega-tile-3d, .mega-co-3d { background: color-mix(in srgb, var(--acc, #7c3aed) 8%, #fff); width: 46px; height: 46px; border-radius: 13px; overflow: hidden; }
.mega-co-3d { background: #f1eefb; }
.mega-tile-3d img, .mega-co-3d img { width: 40px; height: 40px; object-fit: contain; display: block; filter: drop-shadow(0 4px 8px rgba(20,16,42,.18)); transition: transform .25s cubic-bezier(.34,1.56,.64,1); }
.mega-tile:hover .mega-tile-3d img, .mega-co:hover .mega-co-3d img { transform: scale(1.12) rotate(-4deg); }
.mm-3d { width: 30px; height: 30px; object-fit: contain; flex: none; }
.ind-3d { background: transparent !important; width: 56px; height: 56px; }
.ind-3d img { width: 56px; height: 56px; object-fit: contain; display: block; filter: drop-shadow(0 8px 14px rgba(20,16,42,.22)); }
@supports not (background: color-mix(in srgb, red 10%, white)) { .mega-tile-3d { background: #f4f2fb; } }
