/* ============================================================
   Built in Kernow — style.css  (v2)
   Dark Kernow-sea aesthetic: near-black, dot grid, aqua glows,
   gradient serif accents, hover streaks & cursor glow.
   ============================================================ */

:root {
  --bg:        #05090b;
  --bg-2:      #081014;
  --card:      rgba(255, 255, 255, 0.035);
  --card-hov:  rgba(255, 255, 255, 0.06);
  --line:      rgba(255, 255, 255, 0.09);
  --line-soft: rgba(255, 255, 255, 0.06);

  --aqua:   #3fd0c9;
  --mint:   #35e0c5;
  --sky:    #38b6ff;
  --grad:   linear-gradient(100deg, var(--mint), var(--aqua) 40%, var(--sky));

  --text:      #eef6f5;
  --text-mute: #93a7ab;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 20px;
  --container: 1140px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  /* light paper base layer — dark panels float in front of it */
  background:
    radial-gradient(rgba(20, 40, 45, 0.06) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(180deg, #f2efe8, #ece8df);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

/* ---------- cursor-tracking glow ---------- */
.cursor-glow {
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  margin: -260px 0 0 -260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.07), rgba(56, 182, 255, 0.04) 40%, transparent 65%);
  pointer-events: none;
  z-index: 3;
  opacity: 0;
  transition: opacity 0.6s ease;
  will-change: transform;
}
.cursor-glow.is-active { opacity: 1; }

/* ---------- dark panels (float in front of the light base) ---------- */
.panel {
  position: relative;
  border-radius: clamp(30px, 5.5vw, 64px);
  overflow: clip;
  background:
    radial-gradient(900px 520px at 88% 0%, rgba(56, 182, 255, 0.14), transparent 65%) no-repeat,
    radial-gradient(820px 520px at 0% 55%, rgba(63, 208, 201, 0.12), transparent 65%) no-repeat,
    radial-gradient(760px 480px at 70% 100%, rgba(53, 224, 197, 0.09), transparent 65%) no-repeat,
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1.4px) 0 0 / 30px 30px repeat,
    linear-gradient(180deg, #081014, #05090b 55%, #071016);
  box-shadow: 0 40px 90px -40px rgba(5, 12, 15, 0.65);
}
.panel { z-index: 2; }                 /* panels float above the light bands */
.panel + .band, .band + .panel { margin-top: 0; }
.panel--hero { border-top-left-radius: 0; border-top-right-radius: 0; }

/* ---------- shared type ---------- */
.section-title {
  font-weight: 800;
  font-size: clamp(2rem, 4.6vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
}
.grad-serif {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.06em;
}
.section-sub {
  color: var(--text-mute);
  font-size: clamp(1rem, 1.6vw, 1.12rem);
  max-width: 560px;
  margin-bottom: clamp(38px, 5.5vw, 60px);
}

/* ---------- buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.98rem;
  padding: 13px 24px;
  border-radius: 999px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}
.btn svg { width: 18px; height: 18px; flex: none; }
.btn__arrow { display: inline-block; transition: transform 0.25s ease; }
.btn:hover .btn__arrow { transform: translate(3px, -3px); }
/* --tx / --ty are set by the magnetic-button JS */
.btn { transform: translate(var(--tx, 0px), var(--ty, 0px)); }
.btn:hover { transform: translate(var(--tx, 0px), calc(var(--ty, 0px) - 2px)); }
.btn:active { transform: translate(var(--tx, 0px), var(--ty, 0px)) scale(0.99); }

.btn--grad {
  background: var(--grad);
  color: #04211f;
  box-shadow: 0 6px 24px -6px rgba(63, 208, 201, 0.55);
}
.btn--grad::after {           /* shine sweep */
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  transition: left 0.6s ease;
}
.btn--grad:hover { box-shadow: 0 10px 34px -6px rgba(63, 208, 201, 0.75); }
.btn--grad:hover::after { left: 130%; }

.btn--line {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}
.btn--line:hover {
  border-color: rgba(63, 208, 201, 0.6);
  background: rgba(63, 208, 201, 0.07);
  box-shadow: 0 8px 30px -10px rgba(63, 208, 201, 0.4);
}

.btn--big { padding: 17px 30px; font-size: 1.05rem; }

/* ---------- nav (hidden until you scroll) ---------- */
.nav {
  position: fixed;
  top: 14px;
  left: 0; right: 0;
  z-index: 100;
  padding-inline: clamp(12px, 3vw, 24px);
  transform: translateY(-130%);
  opacity: 0;
  transition: transform 0.45s cubic-bezier(0.3, 0, 0.2, 1), opacity 0.4s ease, top 0.3s ease;
}
.nav.is-shown { transform: none; opacity: 1; }
.nav__pill {
  max-width: 1060px;
  margin-inline: auto;
  background: #fdfdfc;
  color: #0a1216;
  border-radius: 999px;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: 22px;
  box-shadow: 0 10px 40px -12px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.3s ease;
}
.nav.is-scrolled .nav__pill {
  box-shadow: 0 14px 44px -10px rgba(0, 0, 0, 0.8), 0 0 30px -8px rgba(63, 208, 201, 0.25);
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin-right: auto;
  white-space: nowrap;
}
.nav__brand em {
  font-family: var(--font-display);
  font-weight: 600;
  background: linear-gradient(100deg, #0d8f87, #1173c2 45%, #35b5ab 70%, #0d8f87);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shimmer 6s ease-in-out infinite;
}
@keyframes brand-shimmer {
  0%, 100% { background-position: 0% 0; }
  50% { background-position: 100% 0; }
}
.nav__mark { width: 30px; height: 30px; border-radius: 9px; }
/* the wave in the logo flows continuously */
.nav__mark path {
  stroke-dasharray: 44 14;
  animation: wave-flow 3.6s linear infinite;
}
@keyframes wave-flow {
  to { stroke-dashoffset: -58; }
}
.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: #46555b;
  padding: 8px 12px;
  border-radius: 999px;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav__links a:hover { color: #0a1216; background: rgba(13, 143, 135, 0.09); }
.nav__cta { flex: none; }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 42px; height: 42px;
  background: none;
  border: 0;
  cursor: pointer;
  flex: none;
}
.nav__burger span {
  display: block;
  height: 2px; width: 22px;
  margin-inline: auto;
  background: #0a1216;
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }

/* ---------- hero ---------- */
.hero {
  padding: clamp(140px, 18vh, 190px) 0 clamp(60px, 8vw, 100px);
  position: relative;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-mute);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 999px;
  padding: 7px 15px;
  margin-bottom: 26px;
}
.hero__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 10px var(--mint);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.82); }
}
.hero__title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 24px;
}
.hero__q {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(2.2rem, 5.4vw, 4rem);
  line-height: 1.1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  padding-right: 0.08em;
}
.hero__a {
  font-weight: 800;
  font-size: clamp(2.5rem, 6.2vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.squiggle { position: relative; white-space: nowrap; }
.squiggle svg {
  position: absolute;
  left: 0; bottom: -0.18em;
  width: 100%; height: 0.22em;
  overflow: visible;
}
.squiggle path {
  stroke: var(--aqua);
  stroke-width: 7;
  stroke-dasharray: 260;
  stroke-dashoffset: 260;
  animation: draw 1s ease 0.7s forwards;
}
@keyframes draw { to { stroke-dashoffset: 0; } }

.hero__sub {
  color: var(--text-mute);
  font-size: clamp(1.02rem, 1.8vw, 1.2rem);
  max-width: 44ch;
  margin-bottom: 32px;
}
.hero__sub strong { color: var(--text); }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 13px; margin-bottom: 28px; }
.hero__proof { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.hero__proof li {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-mute);
}
.hero__proof svg { width: 15px; height: 15px; fill: var(--aqua); }

/* --- glowing browser mockup --- */
.hero__visual { position: relative; }
.hero__visual::before {           /* glow behind */
  content: "";
  position: absolute;
  inset: -12% -8%;
  background:
    radial-gradient(ellipse 60% 55% at 35% 40%, rgba(63, 208, 201, 0.28), transparent 70%),
    radial-gradient(ellipse 55% 50% at 75% 70%, rgba(56, 182, 255, 0.22), transparent 70%);
  filter: blur(30px);
  z-index: -1;
}
.browser {
  position: relative;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(160deg, #0d1a20, #0a141a 60%, #0c1c22);
  box-shadow:
    0 40px 90px -30px rgba(0, 0, 0, 0.8),
    0 0 60px -18px rgba(63, 208, 201, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  animation: float 7s ease-in-out infinite;
  transition: transform 0.2s ease;
  will-change: transform;
}
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -12px; }
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(255, 255, 255, 0.03);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots i {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #2c3f47;
}
.browser__dots i:first-child { background: #ff5f57; }
.browser__dots i:nth-child(2) { background: #febc2e; }
.browser__dots i:last-child  { background: #28c840; }
.browser__url {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-mute);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  padding: 5px 14px;
}
.browser__url svg { width: 11px; height: 11px; color: var(--aqua); }
.browser__loader {
  position: relative;
  height: 3px;
  width: 0;
  background: var(--grad);
  box-shadow: 0 0 10px rgba(63, 208, 201, 0.8);
  z-index: 2;
}
.browser__loader.is-loading { width: 100%; transition: width 0.75s ease; }
.browser__body { position: relative; padding: 18px; }
.sk-page { display: grid; gap: 16px; transition: opacity 0.3s ease; }
.sk-page:not(.is-active) {
  opacity: 0;
  position: absolute;
  inset: 18px;
  pointer-events: none;
}
.browser__cursor {
  position: absolute;
  width: 20px; height: 20px;
  left: 78%; top: 84%;
  opacity: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.6));
  transition: left 1s cubic-bezier(0.45, 0, 0.25, 1), top 1s cubic-bezier(0.45, 0, 0.25, 1),
              opacity 0.4s ease, transform 0.12s ease;
  z-index: 3;
  pointer-events: none;
}
.browser__cursor.is-visible { opacity: 1; }
.browser__cursor.is-pressed { transform: scale(0.8); }

/* skeleton ui */
.sk__nav { display: flex; align-items: center; justify-content: space-between; }
.sk__logo {
  width: 74px; height: 14px;
  border-radius: 5px;
  background: var(--grad);
  opacity: 0.9;
}
.sk__pill {
  width: 90px; height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}
.sk__pill--grad { background: var(--grad); box-shadow: 0 0 18px -2px rgba(63, 208, 201, 0.6); }
.sk__hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 16px; align-items: center; }
.sk__lines { display: grid; gap: 9px; }
.sk__line {
  height: 9px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.10);
}
.sk__line--title { height: 15px; width: 88%; background: rgba(255, 255, 255, 0.2); }
.sk__line.short { width: 55%; }
.sk__btn {
  width: 96px; height: 26px;
  border-radius: 999px;
  background: var(--grad);
  margin-top: 6px;
  box-shadow: 0 0 22px -4px rgba(63, 208, 201, 0.7);
}
.sk__img {
  aspect-ratio: 4 / 3;
  border-radius: 12px;
  background:
    radial-gradient(circle at 70% 30%, rgba(56, 182, 255, 0.4), transparent 60%),
    radial-gradient(circle at 25% 75%, rgba(63, 208, 201, 0.45), transparent 60%),
    rgba(255, 255, 255, 0.05);
}
.sk__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.sk__cards--4 { grid-template-columns: repeat(4, 1fr); }
.sk__card {
  height: 54px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line-soft);
}
.sk__center {
  display: grid;
  justify-items: center;
  gap: 10px;
  padding: 14px 0 6px;
}
.sk__center .sk__line.mid { width: 62%; }
.sk__center .sk__line.mid.short { width: 40%; }
.sk__center .sk__btn { margin-top: 4px; }
.sk__hero--flip .sk__img { order: -1; }
.sk__img--warm {
  background:
    radial-gradient(circle at 30% 30%, rgba(232, 182, 76, 0.35), transparent 60%),
    radial-gradient(circle at 75% 70%, rgba(63, 208, 201, 0.3), transparent 60%),
    rgba(255, 255, 255, 0.05);
}
.sk__banner {
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(100deg, rgba(53, 224, 197, 0.2), rgba(56, 182, 255, 0.2));
  border: 1px solid var(--line-soft);
}
.browser__shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-18deg);
  animation: sweep 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes sweep {
  0%, 55% { left: -60%; }
  85%, 100% { left: 130%; }
}

.phone-float {
  position: absolute;
  right: -14px;
  bottom: -34px;
  width: 118px;
  padding: 26px 14px 20px;
  display: grid;
  gap: 8px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(165deg, #0e1c23, #0a1419);
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.85), 0 0 40px -12px rgba(56, 182, 255, 0.4);
  animation: float 7s ease-in-out 0.9s infinite;
}
.phone-float__notch {
  position: absolute;
  top: 9px; left: 50%;
  transform: translateX(-50%);
  width: 38px; height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}
.phone-float .sk__btn { width: 100%; height: 20px; }

/* ---------- light bands (base layer, revealed behind panels) ---------- */
.band {
  position: relative;
  z-index: 1;                          /* below the panels: content parallaxes behind them */
  color: #22313a;
  padding: clamp(100px, 13vw, 190px) 0;
}
.band__inner { will-change: transform; }

.marquee-band__label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #6c7d84;
  margin-bottom: 26px;
  padding-inline: 20px;
}
.marquee {
  display: flex;
  overflow: hidden;
  gap: 48px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  min-width: max-content;
  animation: marquee 36s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 48px)); }
}
.marquee__track span {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 2rem);
  color: rgba(26, 42, 50, 0.85);
  white-space: nowrap;
  transition: color 0.25s ease;
}
.marquee__track span:hover {
  background: linear-gradient(100deg, #0d9c8f, #1173c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.marquee__track i {
  font-style: normal;
  font-size: 0.85rem;
  color: #159a90;
  opacity: 0.7;
}

/* ---------- cards (shared) ---------- */
.card {
  position: relative;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  padding: 28px 26px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 208, 201, 0.35);
  background: var(--card-hov);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7), 0 0 40px -14px rgba(63, 208, 201, 0.3);
}
.card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.card p { color: var(--text-mute); font-size: 0.95rem; }
.card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(63, 208, 201, 0.3);
  background: rgba(63, 208, 201, 0.08);
  color: var(--aqua);
  margin-bottom: 18px;
  box-shadow: 0 0 24px -8px rgba(63, 208, 201, 0.5);
}
.card__icon svg { width: 22px; height: 22px; }

/* cursor-follow glow (JS sets --mx / --my) */
.spot::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(340px circle at var(--mx, 50%) var(--my, 50%), rgba(63, 208, 201, 0.10), transparent 65%);
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
  z-index: 0;
}
.spot:hover::before { opacity: 1; }
.spot > * { position: relative; z-index: 1; }

/* shine sweep on hover */
.shine::after {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 45%; height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 2;
}
.shine:hover::after { left: 135%; }

/* ---------- bento ---------- */
.bento { padding: clamp(80px, 11vw, 130px) 0 clamp(50px, 7vw, 80px); }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: auto;
  gap: 18px;
}
.card--tall { grid-row: span 2; display: flex; flex-direction: column; }
.card--tall .card__shot {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-bottom: 20px;
  flex: 1;
  min-height: 220px;
  position: relative;
}
.card--tall .card__shot img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}
.card--tall:hover .card__shot img { transform: scale(1.04); }
.card--wide { grid-column: 1 / -1; }
.card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.card__price {
  flex: none;
  display: grid;
  justify-items: center;
  gap: 0;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-mute);
  border: 1px solid rgba(63, 208, 201, 0.3);
  background: rgba(63, 208, 201, 0.06);
  border-radius: 16px;
  padding: 14px 22px;
}
.card__price b {
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.15;
}

/* ---------- process / journey ---------- */
.process { padding: clamp(50px, 7vw, 80px) 0; }
.section-title--center { text-align: center; }
.section-sub--center { text-align: center; margin-inline: auto; }

.journey {
  position: relative;
  max-width: 940px;
  margin-inline: auto;
  padding-top: 30px;
}
.journey__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: calc(100% - 40px);
  overflow: visible;
  pointer-events: none;
}
.journey__path {
  fill: none;
  stroke-width: 3.5;
  stroke-linecap: round;
  vector-effect: non-scaling-stroke;
}
.journey__path--ghost { stroke: rgba(255, 255, 255, 0.07); }
.journey__path--draw {
  stroke: url(#journey-grad);
  filter: drop-shadow(0 0 7px rgba(63, 208, 201, 0.75));
}
.journey__comet {
  fill: #d9fffb;
  filter: drop-shadow(0 0 10px rgba(63, 208, 201, 1)) drop-shadow(0 0 22px rgba(56, 182, 255, 0.8));
  opacity: 0;
}

.journey__steps {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(60px, 9vw, 120px);
  z-index: 1;
}
.jstep {
  width: min(46%, 400px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(10, 18, 22, 0.82);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 26px 24px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.jstep:hover {
  transform: translateY(-4px);
  border-color: rgba(63, 208, 201, 0.4);
  box-shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.7), 0 0 44px -12px rgba(63, 208, 201, 0.35);
}
.jstep--left { align-self: flex-start; }
.jstep--right { align-self: flex-end; }
.step__num {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 2.3rem;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 16px;
}
.jstep h3 { font-weight: 700; font-size: 1.12rem; margin-bottom: 8px; }
.jstep p { color: var(--text-mute); font-size: 0.93rem; }
.jstep p strong { color: var(--text); }

.journey__end {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: clamp(56px, 8vw, 100px);
  z-index: 1;
}

/* ---------- work ---------- */
.work { padding: clamp(50px, 7vw, 80px) 0; }
.showcase {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: clamp(28px, 4.5vw, 56px);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--card);
  padding: clamp(24px, 4vw, 46px);
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.showcase:hover {
  border-color: rgba(63, 208, 201, 0.3);
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8), 0 0 50px -16px rgba(63, 208, 201, 0.25);
}
.showcase__devices { position: relative; padding-right: 58px; }

.device--laptop .device__screen {
  border: 9px solid #1a2930;
  border-bottom-width: 11px;
  border-radius: 13px 13px 0 0;
  overflow: hidden;
  background: #1a2930;
  aspect-ratio: 16 / 10;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.7);
}
.device--laptop .device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.device--laptop .device__base {
  height: 13px;
  margin-inline: -6%;
  background: linear-gradient(180deg, #2b3d46, #15232a);
  border-radius: 0 0 15px 15px;
}
.device--laptop .device__base::after {
  content: "";
  display: block;
  width: 84px; height: 5px;
  margin: 0 auto;
  background: #0b161b;
  border-radius: 0 0 8px 8px;
}
.device--phone {
  position: absolute;
  right: 0; bottom: -24px;
  width: 25%;
  min-width: 92px;
}
.device--phone .device__screen {
  border: 6px solid #1a2930;
  border-radius: 20px;
  overflow: hidden;
  background: #1a2930;
  aspect-ratio: 9 / 19;
  box-shadow: 0 24px 50px -14px rgba(0, 0, 0, 0.75), 0 0 30px -10px rgba(56, 182, 255, 0.35);
}
.device--phone .device__screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

.showcase__info h3 { font-weight: 800; font-size: 1.45rem; letter-spacing: -0.01em; margin-bottom: 12px; }
.showcase__info h3 span {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-mute);
  margin-top: 4px;
}
.showcase__info p { color: var(--text-mute); margin-bottom: 24px; }

.work__teaser {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  border: 1.5px dashed rgba(63, 208, 201, 0.35);
  border-radius: 26px;
  padding: clamp(22px, 3vw, 34px) clamp(24px, 3.6vw, 44px);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.work__teaser:hover { border-color: rgba(63, 208, 201, 0.7); background: rgba(63, 208, 201, 0.04); }
.work__teaser h3 { font-weight: 800; font-size: 1.3rem; margin-bottom: 5px; }
.work__teaser p { color: var(--text-mute); max-width: 48ch; }

/* ---------- ideas (split photo cards) ---------- */
.ideas { padding: clamp(60px, 8vw, 110px) 0 clamp(30px, 4vw, 50px); }
.ideas__grid { display: grid; gap: 20px; }
.idea {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  overflow: hidden;
  min-height: 400px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.idea:hover {
  border-color: rgba(63, 208, 201, 0.35);
  box-shadow: 0 30px 70px -30px rgba(0, 0, 0, 0.8), 0 0 44px -14px rgba(63, 208, 201, 0.28);
}
.idea__img { position: relative; overflow: hidden; min-height: 260px; }
.idea__img img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.idea:hover .idea__img img { transform: scale(1.045); }
.idea--flip .idea__img { order: 2; }
.idea__body {
  padding: clamp(28px, 4.5vw, 60px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 13px;
}
.idea__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  border: 1px solid;
}
.idea__icon svg { width: 22px; height: 22px; }
.idea__icon--sky  { color: var(--sky);  border-color: rgba(56, 182, 255, 0.35); background: rgba(56, 182, 255, 0.08); box-shadow: 0 0 26px -8px rgba(56, 182, 255, 0.55); }
.idea__icon--mint { color: var(--mint); border-color: rgba(53, 224, 197, 0.35); background: rgba(53, 224, 197, 0.08); box-shadow: 0 0 26px -8px rgba(53, 224, 197, 0.55); }
.idea__icon--aqua { color: var(--aqua); border-color: rgba(63, 208, 201, 0.35); background: rgba(63, 208, 201, 0.08); box-shadow: 0 0 26px -8px rgba(63, 208, 201, 0.55); }
.idea__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.idea__eyebrow--sky  { color: var(--sky); }
.idea__eyebrow--mint { color: var(--mint); }
.idea__eyebrow--aqua { color: var(--aqua); }
.idea h3 {
  font-weight: 800;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  letter-spacing: -0.015em;
  line-height: 1.15;
}
.idea__sub { color: var(--text-mute); font-size: 0.97rem; max-width: 42ch; }
.idea__checks { display: grid; gap: 8px; margin: 4px 0 8px; }
.idea__checks li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mute);
}
.idea__checks svg { width: 16px; height: 16px; fill: var(--aqua); flex: none; }

/* ---------- proof (google + promise) ---------- */
.proof { padding: clamp(50px, 7vw, 90px) 0 clamp(70px, 9vw, 120px); }
.proof__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
}
.proof__stat { text-align: center; }
.proof__big {
  display: block;
  font-weight: 800;
  font-size: clamp(3.4rem, 6.5vw, 5rem);
  letter-spacing: -0.03em;
  line-height: 1;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 12px;
}
.proof__stat p, .proof__google p { color: var(--text-mute); font-size: 0.95rem; }
.proof__google { text-align: center; }
.proof__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}
.proof__g { width: 40px; height: 40px; }
.proof__stars span {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  color: #f5c445;
  text-shadow: 0 0 18px rgba(245, 196, 69, 0.45);
}
.proof__google p { max-width: 34ch; margin-inline: auto; }
.proof__quote { padding: 32px 30px; display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.proof__mark {
  display: inline-flex;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--aqua);
  border: 1px solid rgba(63, 208, 201, 0.35);
  border-radius: 11px;
  background: rgba(63, 208, 201, 0.08);
}
.proof__mark svg { width: 20px; height: 20px; }
.proof__quote blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.35;
}
.proof__quote blockquote em {
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.proof__byline { color: var(--text-mute); font-size: 0.88rem; font-weight: 600; }

/* ---------- tiers / pricing ---------- */
.tiers { padding: clamp(60px, 8vw, 110px) 0; }
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.tier {
  --accent: var(--aqua);
  --accent-soft: rgba(63, 208, 201, 0.32);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.015));
  padding: 28px 24px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.tier:hover {
  transform: translateY(-5px);
  border-color: var(--accent-soft);
  box-shadow: 0 26px 60px -26px rgba(0, 0, 0, 0.75), 0 0 44px -14px var(--accent-soft);
}
.tier--mint  { --accent: var(--mint); --accent-soft: rgba(53, 224, 197, 0.32); }
.tier--aqua  { --accent: var(--aqua); --accent-soft: rgba(63, 208, 201, 0.35); }
.tier--sky   { --accent: var(--sky);  --accent-soft: rgba(56, 182, 255, 0.32); }
.tier--amber { --accent: #e8b64c;     --accent-soft: rgba(232, 182, 76, 0.32); }

.tier__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: 13px;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  background: color-mix(in srgb, var(--accent) 9%, transparent);
  box-shadow: 0 0 26px -8px var(--accent-soft);
  margin-bottom: 6px;
}
.tier__icon svg { width: 22px; height: 22px; }
.tier h3 { font-weight: 800; font-size: 1.3rem; letter-spacing: -0.01em; }
.tier h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
}
.tier__desc { color: var(--text-mute); font-size: 0.9rem; min-height: 2.7em; }
.tier__price {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--accent);
}
.tier__price b {
  font-weight: 700;
  font-size: 2.1rem;
  letter-spacing: -0.02em;
}
.tier__list { display: grid; gap: 9px; margin: 6px 0 18px; }
.tier__list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mute);
}
.tier__list svg {
  width: 16px; height: 16px;
  flex: none;
  margin-top: 2px;
  fill: var(--accent);
}
.tier__cta { margin-top: auto; width: 100%; }

/* popular tier: lightning ring circling the card */
@property --spin {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.tier--popular {
  background: linear-gradient(180deg, #0c1820, #081014);
  border-color: rgba(63, 208, 201, 0.4);
  box-shadow: 0 0 60px -18px rgba(63, 208, 201, 0.45);
}
.tier--popular::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 27px;
  padding: 3px;
  background: conic-gradient(from var(--spin),
    transparent 0deg, transparent 250deg,
    rgba(56, 182, 255, 0.6) 290deg,
    #eafffc 320deg,
    var(--aqua) 340deg,
    transparent 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: drop-shadow(0 0 8px rgba(63, 208, 201, 0.9));
  animation: lightning 3.2s linear infinite;
  pointer-events: none;
}
@keyframes lightning {
  to { --spin: 360deg; }
}
.tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #04211f;
  background: var(--grad);
  border-radius: 999px;
  padding: 6px 16px;
  box-shadow: 0 6px 20px -6px rgba(63, 208, 201, 0.7);
  white-space: nowrap;
}
.tiers__note {
  text-align: center;
  color: var(--text-mute);
  font-size: 0.92rem;
  margin-top: 30px;
}

/* ---------- light band shared headings ---------- */
.band__title {
  text-align: center;
  font-weight: 800;
  font-size: clamp(1.9rem, 4.4vw, 3.1rem);
  letter-spacing: -0.02em;
  color: #1d2b33;
  margin-bottom: 10px;
  padding-inline: 20px;
}
.band__title em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  background: linear-gradient(100deg, #0d9c8f, #1173c2);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.band__sub {
  text-align: center;
  color: #6c7d84;
  margin-bottom: clamp(36px, 5vw, 56px);
  padding-inline: 20px;
}

/* ---------- effect band (case study) ---------- */
.case {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(28px, 4.5vw, 60px);
  align-items: center;
  background: #fff;
  border-radius: 30px;
  padding: clamp(28px, 4.5vw, 56px);
  box-shadow: 0 30px 80px -40px rgba(20, 40, 45, 0.3);
  color: #22313a;
}
.case__tag {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #0d9c8f;
  margin-bottom: 14px;
}
.case__text h3 {
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 14px;
}
.case__text > p { color: #55676f; margin-bottom: 24px; max-width: 48ch; }
.case__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 28px;
}
.case__stats div {
  border: 1px solid rgba(13, 156, 143, 0.25);
  background: #f0faf9;
  border-radius: 14px;
  padding: 14px 18px;
  min-width: 130px;
}
.case__stats b {
  display: block;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: 1.6rem;
  color: #0d9c8f;
  line-height: 1.1;
}
.case__stats span { font-size: 0.82rem; color: #6c7d84; }
.case__visual { display: flex; justify-content: center; }
.case__tablet {
  background: linear-gradient(165deg, #12242c, #0a161c);
  border-radius: 26px;
  padding: 22px 18px;
  box-shadow: 0 30px 70px -28px rgba(10, 22, 28, 0.6);
  width: min(100%, 360px);
}
.case__tablet img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
}

/* ---------- promises orbit ---------- */
.promises { padding: clamp(50px, 6vw, 80px) 0; }
.promises .section-sub { margin-bottom: 18px; }
.orbit {
  position: relative;
  height: 620px;
  margin-top: 8px;
}
.orbit__ring {
  position: absolute;
  left: 50%; top: 50%;
  width: 490px; height: 490px;
  transform: translate(-50%, -50%);
  border: 1.5px dashed rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}
.orbit__logo {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
}
.orbit__logo::before {
  content: "";
  position: absolute;
  inset: -60%;
  background: radial-gradient(circle, rgba(63, 208, 201, 0.25), rgba(56, 182, 255, 0.1) 45%, transparent 70%);
  filter: blur(14px);
}
.orbit__logo svg {
  position: relative;
  width: 100%; height: 100%;
  border-radius: 24px;
  box-shadow: 0 0 50px -8px rgba(63, 208, 201, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}
.orbit__spinner {
  position: absolute;
  inset: 0;
  animation: orbit-spin 80s linear infinite;
}
@keyframes orbit-spin { to { transform: rotate(360deg); } }
/* pause only while the cursor is actually on a promise box (or its detail) */
.orbit:has(.orb:hover) .orbit__spinner,
.orbit:has(.orb:hover) .orb__inner { animation-play-state: paused; }

.orb {
  --accent: var(--aqua);
  --accent-soft: rgba(63, 208, 201, 0.35);
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) rotate(var(--angle)) translateX(245px) rotate(calc(-1 * var(--angle)));
}
.orb--pink  { --accent: #f06ec2; --accent-soft: rgba(240, 110, 194, 0.4); }
.orb--amber { --accent: #e8b64c; --accent-soft: rgba(232, 182, 76, 0.4); }
.orb--green { --accent: #4ade80; --accent-soft: rgba(74, 222, 128, 0.4); }
.orb--aqua  { --accent: var(--aqua); --accent-soft: rgba(63, 208, 201, 0.4); }
.orb--sky   { --accent: var(--sky); --accent-soft: rgba(56, 182, 255, 0.4); }
.orb__inner {
  position: relative;
  animation: orbit-spin-reverse 80s linear infinite;
}
@keyframes orbit-spin-reverse { to { transform: rotate(-360deg); } }
.orb:hover { z-index: 6; }
.orb__card {
  width: 172px;
  display: grid;
  justify-items: center;
  gap: 9px;
  text-align: center;
  padding: 18px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(10, 18, 22, 0.88);
  cursor: default;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.orb__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px; height: 38px;
  border-radius: 11px;
  color: var(--accent);
  border: 1px solid var(--accent-soft);
  background: color-mix(in srgb, var(--accent) 8%, transparent);
  opacity: 0.8;
  transition: opacity 0.3s ease, box-shadow 0.3s ease;
}
.orb__icon svg { width: 19px; height: 19px; }
.orb__card h3 {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-mute);
  transition: color 0.3s ease;
}
.orb__card h3 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: var(--accent);
  opacity: 0.85;
}
.orb:hover .orb__card {
  border-color: var(--accent-soft);
  background: rgba(10, 18, 22, 0.97);
  box-shadow: 0 0 46px -8px var(--accent-soft);
}
.orb:hover .orb__icon { opacity: 1; box-shadow: 0 0 26px -6px var(--accent-soft); }
.orb:hover .orb__card h3 { color: var(--text); }
.orb__detail {
  /* wide screens: JS places this radially outward from the wheel centre,
     so it can never open on top of a neighbouring box */
  position: absolute;
  top: 0; left: 0;
  transform: scale(0.95);
  width: 232px;
  padding: 16px 18px;
  border: 1px solid var(--accent-soft);
  border-radius: 16px;
  background: rgba(8, 16, 20, 0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  text-align: left;
}
.orb:hover .orb__detail { opacity: 1; transform: scale(1); }
.orb__detail span {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 7px;
}
.orb__detail p { font-size: 0.88rem; color: var(--text-mute); }

/* ---------- google reviews band ---------- */
.rev-rows { display: grid; gap: 20px; }
.rev-row {
  display: flex;
  overflow: hidden;
  gap: 20px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.rev-track {
  display: flex;
  gap: 20px;
  flex-shrink: 0;
  min-width: max-content;
  animation: rev-scroll 55s linear infinite;
}
.rev-row--reverse .rev-track { animation-direction: reverse; }
.rev-row:hover .rev-track { animation-play-state: paused; }
@keyframes rev-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-100% - 20px)); }
}
.rev-card {
  width: 340px;
  background: #fff;
  border-radius: 18px;
  padding: 20px 22px;
  box-shadow: 0 3px 10px rgba(20, 40, 45, 0.06), 0 20px 44px -24px rgba(20, 40, 45, 0.25);
  color: #22313a;
}
.rev-card__head {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 8px;
}
.rev-card__avatar {
  flex: none;
  width: 40px; height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 0.85rem;
  color: #fff;
  background: var(--av, #157f8d);
}
.rev-card__head b { display: block; font-size: 0.95rem; }
.rev-card__head small { color: #6c7d84; font-size: 0.8rem; }
.rev-card__g { width: 20px; height: 20px; margin-left: auto; flex: none; }
.rev-card__stars {
  color: #f0b429;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  text-shadow: 0 0 12px rgba(240, 180, 41, 0.35);
}
.rev-card p { font-size: 0.9rem; color: #46555b; line-height: 1.55; }

/* ---------- faq ---------- */
.faq { padding: clamp(50px, 7vw, 80px) 0; }
.faq__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}
.faq__list { display: grid; gap: 12px; }
.faq__item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
  overflow: hidden;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.faq__item:hover { border-color: rgba(63, 208, 201, 0.35); }
.faq__item[open] { background: var(--card-hov); border-color: rgba(63, 208, 201, 0.4); }
.faq__item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1rem;
  padding: 18px 22px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__plus {
  position: relative;
  flex: none;
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(63, 208, 201, 0.4);
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq__plus::before, .faq__plus::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background: var(--aqua);
  border-radius: 2px;
}
.faq__plus::before { width: 12px; height: 2px; }
.faq__plus::after  { width: 2px; height: 12px; transition: transform 0.3s ease; }
.faq__item[open] .faq__plus { transform: rotate(45deg); background: rgba(63, 208, 201, 0.12); }
.faq__item p {
  padding: 0 22px 20px;
  color: var(--text-mute);
  font-size: 0.95rem;
  max-width: 60ch;
}

/* ---------- about ---------- */
.about { padding: clamp(50px, 7vw, 80px) 0; }
.about__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(32px, 5vw, 70px);
  align-items: start;
}
.about__text p { color: var(--text-mute); max-width: 56ch; margin-bottom: 16px; }
.about__text p strong { color: var(--text); }
.about__text p em {
  font-family: var(--font-display);
  font-style: italic;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
}
.about__card { padding: 30px 28px; }
.about__card li {
  display: flex;
  flex-direction: column;
  padding: 13px 0;
  border-bottom: 1px solid var(--line-soft);
  font-weight: 600;
  font-size: 0.98rem;
}
.about__card li:last-child { border-bottom: 0; }
.about__card li span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 3px;
}

/* ---------- contact ---------- */
.contact {
  position: relative;
  padding: clamp(90px, 13vw, 150px) 0;
  text-align: center;
  overflow: hidden;
}
.contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 60% at 50% 55%, rgba(63, 208, 201, 0.13), transparent 70%);
  pointer-events: none;
}
.contact__title {
  font-weight: 800;
  font-size: clamp(2.5rem, 6.4vw, 4.6rem);
  letter-spacing: -0.025em;
  line-height: 1.06;
  margin-bottom: 16px;
}
.contact__sub {
  color: var(--text-mute);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  margin-bottom: 42px;
}
.contact__ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
  margin-bottom: 30px;
}
.contact__note {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--text-mute);
}
.contact__inner { position: relative; }

/* ---------- footer (pinned base layer — the page scrolls up off it) ---------- */
.footer {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 0;
  color: #22313a;
  padding: clamp(56px, 8vw, 100px) 0 0;
  overflow: clip;
}
/* the scrolling page sits on top of the fixed footer */
main {
  position: relative;
  z-index: 1;
  background:
    radial-gradient(rgba(20, 40, 45, 0.06) 1px, transparent 1.4px) 0 0 / 26px 26px,
    linear-gradient(180deg, #f2efe8, #ece8df);
  /* margin-bottom equal to footer height is set by JS to create the reveal gap */
}
.footer__grid {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(30px, 6vw, 90px);
  align-items: start;
  margin-bottom: clamp(30px, 5vw, 60px);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-weight: 700;
  font-size: 1.05rem;
  width: fit-content;
  background-image: linear-gradient(100deg, #0d9c8f, #1173c2);
  background-size: 0% 2px;
  background-position: 0 100%;
  background-repeat: no-repeat;
  transition: background-size 0.3s ease, color 0.2s ease;
  padding-bottom: 2px;
}
.footer__links a:hover { background-size: 100% 2px; color: #0d3b46; }
.footer__contact h3 { font-weight: 800; font-size: 1.1rem; margin-bottom: 12px; }
.footer__contact a {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 500;
  color: #46555b;
  margin-bottom: 8px;
  transition: color 0.2s ease;
}
.footer__contact a:hover { color: #0d9c8f; }
.footer__contact svg { width: 16px; height: 16px; flex: none; color: #0d9c8f; }
.footer__legal {
  color: #6c7d84;
  font-size: 0.85rem;
  text-align: right;
}
.footer__wordmark {
  --wm-grad: linear-gradient(105deg, #35e0c5 0%, #38b6ff 20%, #23485a 42%, #0c1c26 60%, #157f8d 82%, #35e0c5 100%);
  font-weight: 800;
  font-size: clamp(3rem, 12.2vw, 12rem);
  line-height: 1;
  letter-spacing: -0.045em;
  white-space: nowrap;
  text-align: center;
  background: var(--wm-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 0.14em;    /* letters sit just clear of the page edge */
  user-select: none;
  animation: wm-hue 14s ease-in-out infinite alternate;
}
@keyframes wm-hue {
  to { filter: hue-rotate(42deg); }
}
/* JS splits the wordmark into letters: each gets its slice of the gradient
   (sized/positioned by JS) so the letters can ride a staggered wave */
.footer__wordmark.is-split { background: none; }
.footer__wordmark.is-split span {
  display: inline-block;
  background-image: var(--wm-grad);
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: wm-bob 3.6s ease-in-out calc(var(--i) * 0.14s) infinite;
}
@keyframes wm-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-0.05em); }
}

/* medium desktops: details pop below the card so they can't clip the viewport */
@media (min-width: 961px) and (max-width: 1320px) {
  .orb__detail {
    left: 50% !important;   /* wins over any JS-set inline position */
    top: calc(100% + 12px) !important;
    transform: translate(-50%, 0) scale(0.95);
    width: 220px;
  }
  .orb:hover .orb__detail { transform: translate(-50%, 0) scale(1); }
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(7px);
  transition: opacity 0.7s ease, transform 0.7s ease, filter 0.7s ease;
}
.reveal--left  { transform: translate(-40px, 18px); }
.reveal--right { transform: translate(40px, 18px); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.is-visible:nth-child(2) { transition-delay: 0.07s; }
.is-visible:nth-child(3) { transition-delay: 0.14s; }
.is-visible:nth-child(4) { transition-delay: 0.21s; }
.is-visible:nth-child(5) { transition-delay: 0.28s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .browser, .phone-float { animation: none; }
  .browser__shine, .squiggle path, .hero__dot { animation: none; }
  .squiggle path { stroke-dashoffset: 0; }
  .marquee__track { animation-duration: 120s; }
  .btn, .card, .jstep { transition: none; }
  .cursor-glow { display: none; }
  .journey__path--draw { stroke-dashoffset: 0 !important; }
  .journey__comet { display: none; }
  .tier--popular::after { animation: none; }
  .browser__cursor { display: none; }
  .nav { transition: none; }
  .footer__wordmark, .footer__wordmark.is-split span,
  .nav__brand em, .nav__mark path { animation: none; }
  .orbit__spinner, .orb__inner { animation: none; }
  .rev-track { animation-duration: 160s; }
}

/* ---------- responsive ---------- */
@media (max-width: 1020px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }

  .nav.is-open .nav__links {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: clamp(12px, 3vw, 24px);
    right: clamp(12px, 3vw, 24px);
    flex-direction: column;
    gap: 2px;
    background: #fdfdfc;
    border-radius: 22px;
    padding: 12px;
    box-shadow: 0 24px 60px -16px rgba(0, 0, 0, 0.75);
  }
  .nav.is-open .nav__links a { padding: 13px 16px; font-size: 1rem; }
}

@media (max-width: 960px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .card--tall { grid-row: auto; }
  .card--wide { grid-column: 1 / -1; }
  .showcase { grid-template-columns: 1fr; }
  .showcase__devices { padding-right: 40px; max-width: 540px; }
  .faq__grid, .about__grid { grid-template-columns: 1fr; }

  .idea, .idea--flip { grid-template-columns: 1fr; min-height: 0; }
  .idea__img, .idea--flip .idea__img { order: 0; aspect-ratio: 16 / 9; min-height: 0; }
  .proof__grid { grid-template-columns: 1fr; gap: 44px; }
  .proof__quote { align-items: center; text-align: center; }
  .tiers__grid { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }

  /* orbit collapses to a plain grid of promise cards */
  .orbit { height: auto; }
  .orbit__ring, .orbit__logo { display: none; }
  .orbit__spinner {
    position: static;
    animation: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
  .orb { position: static; transform: none; }
  .orb__inner { animation: none; }
  .orb__card { width: 100%; }
  .orb__detail {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    width: auto;
    margin-top: 10px;
  }
  .orb:hover .orb__detail { transform: none; }

  .case { grid-template-columns: 1fr; }
  .case__visual { order: -1; }
  .case__tablet img { height: 300px; }
}

@media (max-width: 640px) {
  .nav { top: 10px; }
  .nav__pill { padding: 7px 8px 7px 14px; gap: 12px; }
  .nav__cta { display: none; }

  .hero { padding-top: 120px; }
  .hero__ctas .btn { width: 100%; }
  .bento__grid { grid-template-columns: 1fr; }
  .card--wide { grid-column: auto; }
  .card__row { flex-direction: column; align-items: flex-start; }

  /* journey collapses to a single glowing spine on phones */
  .journey__svg { display: none; }
  .journey { padding-left: 26px; }
  .journey::before {
    content: "";
    position: absolute;
    left: 8px; top: 0; bottom: 40px;
    width: 3px;
    border-radius: 3px;
    background: linear-gradient(180deg, var(--mint), var(--aqua) 40%, var(--sky));
    box-shadow: 0 0 12px rgba(63, 208, 201, 0.5);
    opacity: 0.65;
  }
  .jstep, .jstep--left, .jstep--right { width: 100%; align-self: stretch; }
  .journey__steps { gap: 26px; }
  .reveal--left, .reveal--right { transform: translateY(26px); }
  .contact__ctas { flex-direction: column; align-items: stretch; }
  .work__teaser { flex-direction: column; align-items: flex-start; }
  .device--phone { bottom: -16px; }
  .phone-float { right: -6px; bottom: -24px; width: 96px; }

  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .footer__legal { text-align: left; }
  .tiers__grid { grid-template-columns: 1fr; }
  .orbit__spinner { grid-template-columns: 1fr; }
  .rev-card { width: 290px; }
}
