/* ============================================================
   Gokey Systems — Production Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Sora:wght@600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

@property --angle {
  syntax: '<angle>';
  inherits: false;
  initial-value: 0deg;
}

:root {
  --navy:        #0e1b2c;
  --navy-mid:    #16283f;
  --navy-soft:   #1e3452;
  --orange:      #ff6a1a;
  --orange-dark: #e0570f;
  --gold:        #ffb800;
  --green:       #16a34a;
  --green-light: #e9f9ef;
  --gray-900:    #111827;
  --gray-700:    #3d4654;
  --gray-500:    #6b7280;
  --gray-300:    #cbd3dc;
  --gray-200:    #e5e9ef;
  --gray-100:    #f3f5f8;
  --gray-50:     #f8f9fb;
  --white:       #ffffff;
  --shadow-sm:   0 1px 3px rgba(14,27,44,.08);
  --shadow-md:   0 6px 20px rgba(14,27,44,.10);
  --shadow-lg:   0 16px 44px rgba(14,27,44,.16);
  --radius:      10px;
  --radius-lg:   18px;
  --transition:  .2s ease;
  --font-head:   'Sora', 'Inter', -apple-system, sans-serif;
}

/* Sticky header is ~86px tall; without this, jumping to an anchor (e.g. a
   nav link to #pricing) tucks the section title right behind it. */
html { scroll-behavior: smooth; scroll-padding-top: 90px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Subtle grain texture for depth, keeps flat gradients from feeling generated */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 999;
  pointer-events: none;
  opacity: .035;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: var(--orange-dark); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.4px;
}

h1 { font-size: clamp(2.1rem, 4vw, 3.15rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: 1.16rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 700; }

p { color: var(--gray-700); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.container { width: 92%; max-width: 1180px; margin: 0 auto; }

section { padding: 88px 0; position: relative; }

.overline {
  display: inline-block;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-bottom: 12px;
}

.lead { font-size: 1.15rem; color: var(--gray-500); }

.section-header { max-width: 680px; margin-bottom: 48px; }
.section-header.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { margin-top: 12px; font-size: 1.08rem; color: var(--gray-500); }

/* ── Reveal-on-scroll ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s cubic-bezier(.16,.8,.24,1), transform .7s cubic-bezier(.16,.8,.24,1);
}
.reveal.in-view { opacity: 1; transform: none; }
.problem-card.reveal:nth-child(2) { transition-delay: .1s; }
.problem-card.reveal:nth-child(3) { transition-delay: .2s; }
.step-card.reveal:nth-child(2) { transition-delay: .12s; }
.step-card.reveal:nth-child(3) { transition-delay: .24s; }
.feature-card.reveal:nth-child(2) { transition-delay: .1s; }
.feature-card.reveal:nth-child(3) { transition-delay: .2s; }
.faq-item.reveal:nth-child(2) { transition-delay: .06s; }
.faq-item.reveal:nth-child(3) { transition-delay: .12s; }
.faq-item.reveal:nth-child(4) { transition-delay: .18s; }
.faq-item.reveal:nth-child(5) { transition-delay: .24s; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 15px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: .98rem;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 48%, transparent 65%);
  transform: translateX(-120%);
  transition: transform .7s ease;
}
.btn:hover::after { transform: translateX(120%); }
.btn:active { transform: translateY(0) scale(.97); }
.btn-lg { padding: 18px 34px; font-size: 1.05rem; }
.btn-primary {
  background: var(--orange);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.25), 0 8px 24px rgba(255,106,26,.35);
}
.btn-primary:hover { background: var(--orange-dark); color: var(--white); transform: translateY(-2px); }
.btn-secondary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-secondary:hover { background: transparent; color: var(--white); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--gray-300);
}
.btn-outline:hover { border-color: var(--orange); color: var(--orange-dark); }
.btn-dark { background: var(--navy); color: var(--white); }
.btn-dark:hover { background: var(--navy-mid); color: var(--white); }

/* ── Top bar ── */
.top-bar {
  background: var(--navy);
  color: var(--gray-300);
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .3px;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 9px 0;
  flex-wrap: wrap;
  text-align: center;
}
.top-bar span { display: inline-flex; align-items: center; gap: 7px; }
.top-bar .dot { color: var(--gold); font-size: 1rem; line-height: 0; }

/* ── Header ── */
.site-header {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow var(--transition), padding var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow-md); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}
.logo-mark { flex-shrink: 0; transition: transform .4s cubic-bezier(.34,1.56,.64,1); }
.logo:hover .logo-mark { transform: rotate(-8deg) scale(1.06); }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-text .name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.14rem;
  letter-spacing: -.3px;
  color: var(--navy);
}
.logo-text .tag {
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--orange-dark);
  margin-top: 3px;
}
.main-nav { display: flex; align-items: center; gap: 32px; }
.main-nav a {
  position: relative;
  color: var(--gray-700);
  font-weight: 600;
  font-size: .96rem;
  padding-bottom: 3px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange-dark); }
.main-nav a:hover::after { transform: scaleX(1); }
.header-cta { display: flex; align-items: center; gap: 16px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span { width: 24px; height: 2.5px; background: var(--navy); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

/* ── Ticker ── */
.ticker {
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  padding: 14px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: ticker-scroll 28s linear infinite;
  white-space: nowrap;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray-300);
}
.ticker-track .sep { color: var(--gold); font-size: .7rem; }
/* Content is repeated 6x in the markup; shifting by 1/6 keeps the loop
   seamless (and covers wide viewports) instead of scrolling to empty space. */
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-16.6667%); }
}

/* ── Hero ── */
.hero {
  position: relative;
  background: radial-gradient(ellipse at top right, var(--navy-soft) 0%, var(--navy) 55%, #081221 100%);
  color: var(--white);
  overflow: hidden;
  padding: 88px 0 76px;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,.08) 1.4px, transparent 1.4px);
  background-size: 26px 26px;
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }

/* Drifting/twinkling stars in the hero background — reinforces the review
   theme without competing with the floating product mockups. Reused (via
   .section-stars) in a couple of other sections so the motif isn't a
   hero-only trick. */
.hero-stars, .section-stars {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.hstar {
  position: absolute;
  color: var(--gold);
  opacity: 0;
  animation: twinkle 5s ease-in-out infinite;
}
.hstar-1  { top: 14%; left: 42%; font-size: 14px; animation-duration: 4.5s; animation-delay: 0s; }
.hstar-2  { top: 68%; left: 38%; font-size: 10px; animation-duration: 5.5s; animation-delay: .8s; }
.hstar-3  { top: 30%; left: 52%; font-size: 8px;  animation-duration: 4s;   animation-delay: 1.6s; }
.hstar-4  { top: 82%; left: 55%; font-size: 12px; animation-duration: 6s;   animation-delay: .4s; }
.hstar-5  { top: 8%;  left: 8%;  font-size: 10px; animation-duration: 5s;   animation-delay: 2.1s; }
.hstar-6  { top: 55%; left: 4%;  font-size: 8px;  animation-duration: 4.8s; animation-delay: 1.2s; }
.hstar-7  { top: 20%; left: 88%; font-size: 11px; animation-duration: 5.2s; animation-delay: 1.9s; }
.hstar-8  { top: 46%; left: 92%; font-size: 8px;  animation-duration: 4.3s; animation-delay: .6s; }
.hstar-9  { top: 76%; left: 82%; font-size: 13px; animation-duration: 5.8s; animation-delay: 2.6s; }
.hstar-10 { top: 90%; left: 20%; font-size: 9px;  animation-duration: 4.6s; animation-delay: 1.4s; }
@keyframes twinkle {
  0%, 100% { opacity: 0; transform: translateY(0) scale(.8); }
  50% { opacity: .8; transform: translateY(-10px) scale(1); }
}
/* .section-stars sits behind the section content — without this, its
   positive z-index would otherwise paint above the container's in-flow
   (non-positioned) text, since z-index only competes among positioned boxes. */
.steps-section .container,
.angled-section .container {
  position: relative;
  z-index: 2;
}

/* On light sections, gold-on-white would vanish, so tint stars toward the
   brand navy/orange at low opacity instead of reusing the hero's gold. */
.on-light .hstar { color: var(--orange); }
.on-light .hstar { animation-name: twinkle-light; }
@keyframes twinkle-light {
  0%, 100% { opacity: 0; transform: translateY(0) scale(.8); }
  50% { opacity: .35; transform: translateY(-10px) scale(1); }
}

/* Shooting star: a bright dot with a fading trail that streaks across a
   dark section every few seconds, then pauses before the next pass. */
.shooting-star {
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 6px 2px rgba(255,255,255,.7);
  opacity: 0;
}
.shooting-star::before {
  content: '';
  position: absolute;
  top: 50%; right: 1px;
  width: 90px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold) 60%, var(--white));
  transform: translateY(-50%);
}
.shooting-star-1 { top: 12%; left: 8%; animation: shoot-1 8s ease-in infinite; }
.shooting-star-2 { top: 55%; left: 60%; animation: shoot-2 9s ease-in infinite; animation-delay: 3.2s; }
@keyframes shoot-1 {
  0%, 55% { opacity: 0; transform: translate(0, 0) rotate(32deg); }
  58% { opacity: 1; }
  72% { opacity: 0; transform: translate(340px, 210px) rotate(32deg); }
  100% { opacity: 0; transform: translate(340px, 210px) rotate(32deg); }
}
@keyframes shoot-2 {
  0%, 70% { opacity: 0; transform: translate(0, 0) rotate(28deg); }
  73% { opacity: 1; }
  86% { opacity: 0; transform: translate(300px, 160px) rotate(28deg); }
  100% { opacity: 0; transform: translate(300px, 160px) rotate(28deg); }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 40px;
  align-items: center;
}
.hero-content { text-align: left; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,184,0,.14);
  border: 1px solid rgba(255,184,0,.4);
  color: var(--gold);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .4px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, var(--gold) 0%, #fff3cf 50%, var(--gold) 100%);
  background-size: 220% auto;
  background-position: 100% center;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shine 5s ease-in-out infinite;
}
@keyframes shine {
  0%, 15% { background-position: 100% center; }
  50%, 65% { background-position: 0% center; }
  100% { background-position: 100% center; }
}
.hero-desc {
  font-size: 1.12rem;
  color: var(--gray-300);
  max-width: 540px;
  margin: 0 0 30px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-trust {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  max-width: 500px;
}
.trust-stat {
  position: relative;
  background: linear-gradient(160deg, rgba(255,255,255,.09), rgba(255,255,255,.03));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  overflow: hidden;
  transition: background var(--transition), transform var(--transition), border-color var(--transition);
}
.trust-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  opacity: .7;
}
.trust-stat:hover { background: linear-gradient(160deg, rgba(255,255,255,.14), rgba(255,255,255,.05)); transform: translateY(-3px); border-color: rgba(255,184,0,.35); }
.trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  margin: 0 auto 12px;
  background: rgba(255,184,0,.14);
  color: var(--gold);
}
.trust-icon svg { display: block; margin: auto; }
.trust-stat:nth-child(1) .trust-icon { background: rgba(255,106,26,.16); color: var(--orange); }
.trust-stat:nth-child(3) .trust-icon { background: rgba(44,107,237,.18); color: #6f9bff; }
.trust-stat:nth-child(4) .trust-icon { background: rgba(22,163,74,.18); color: #4ade80; }
.trust-stat strong {
  display: block;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 4px;
  white-space: nowrap;
}
.trust-stat:nth-child(1) strong { color: var(--orange); }
.trust-stat:nth-child(3) strong { color: #6f9bff; }
.trust-stat:nth-child(4) strong { color: #4ade80; }
.trust-stat > span:last-child { display: block; font-size: .84rem; color: var(--gray-300); font-weight: 600; }

/* Hero visual — floating product mockups instead of a stock illustration */
.hero-visual { position: relative; height: 440px; }
.visual-glow {
  position: absolute;
  inset: -10%;
  background: radial-gradient(circle at 62% 38%, rgba(255,106,26,.4), transparent 60%);
  filter: blur(46px);
  z-index: 0;
  transition: transform .5s ease-out;
}
.float-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 22px 50px rgba(0,0,0,.4);
  z-index: 2;
  animation: float 6s ease-in-out infinite;
}
.review-card-mock {
  top: 12px;
  left: 6%;
  width: 260px;
  padding: 20px;
  transform: rotate(-3deg);
  animation-duration: 7s;
}
.mock-head { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.g-avatar {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: #4285f4;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .85rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.mock-head strong { display: block; font-size: .82rem; color: var(--navy); }
.mock-stars { color: var(--gold); font-size: .78rem; letter-spacing: 1px; }
.mock-text { font-size: .87rem; color: var(--gray-700); margin-bottom: 8px; }
.mock-name { font-size: .78rem; font-weight: 700; color: var(--gray-500); }
.chip-card {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 18px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  color: var(--navy);
}
.chip-respond {
  bottom: 96px;
  left: 0;
  transform: rotate(3deg);
  animation-duration: 5.5s;
  animation-delay: .3s;
  color: var(--green);
}
.chip-respond svg { color: var(--green); }
.chip-broadcast {
  top: 236px;
  right: 4%;
  transform: rotate(-2deg);
  animation-duration: 6.5s;
  animation-delay: .6s;
  color: var(--orange-dark);
}
.chip-broadcast svg { color: var(--orange-dark); }
@keyframes float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -14px; }
}

/* ── Problem strip ── */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.problem-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.problem-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.problem-card .icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  color: var(--orange-dark);
  transition: transform var(--transition), background var(--transition), color var(--transition);
}
.problem-card:hover .icon {
  transform: rotate(-8deg) scale(1.08);
  background: var(--orange);
  color: var(--white);
}
.problem-card h3 { margin-bottom: 10px; }
.problem-card p { font-size: .96rem; }

/* ── How it works ── */
.steps-section { background: var(--gray-50); }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
}
.step-line {
  position: absolute;
  top: 22px;
  left: calc(16.66% + 22px);
  right: calc(16.66% + 22px);
  height: 2px;
  background: var(--gray-200);
  z-index: 0;
}
.step-line-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  transition: width 1.2s cubic-bezier(.16,.8,.24,1);
}
.steps-grid.in-view .step-line-fill { width: 100%; }
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  position: relative;
  z-index: 1;
  transition: transform var(--transition), box-shadow var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: transform var(--transition);
}
.step-card:hover .step-num { transform: scale(1.1) rotate(-4deg); }
.step-card h3 { margin-bottom: 10px; }
.step-card p { font-size: .97rem; }

/* ── Feature cards ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.feature-card {
  border-radius: var(--radius-lg);
  padding: 34px 28px;
  border: 1px solid var(--gray-200);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-card .icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  color: var(--white);
  transition: transform var(--transition);
}
.feature-card:hover .icon { transform: rotate(-6deg) scale(1.08); }
.feature-card:nth-child(1) .icon { background: linear-gradient(135deg,var(--orange),var(--orange-dark)); }
.feature-card:nth-child(2) .icon { background: linear-gradient(135deg,#2c6bed,#1a4fc4); }
.feature-card:nth-child(3) .icon { background: linear-gradient(135deg,var(--gold),#e09b00); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .97rem; }
.feature-card ul { margin-top: 14px; padding-left: 0; list-style: none; }
.feature-card ul li {
  font-size: .9rem;
  color: var(--gray-700);
  padding-left: 22px;
  position: relative;
  margin-bottom: 8px;
}
.feature-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 900;
}

/* ── Split / Why us ── */
.angled-section { background: var(--navy); color: var(--white); }
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.angled-section .overline { color: var(--gold); }
.angled-section h2 { color: var(--white); }
.angled-section p { color: var(--gray-300); }
.checklist { list-style: none; margin: 26px 0 30px; }
.checklist li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 15px;
  font-weight: 600;
  color: var(--white);
  font-size: 1rem;
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0; top: 2px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px;
}
.why-visual-wrap { position: relative; }
.why-visual {
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-mid));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  padding: 40px;
  text-align: center;
  animation: gentle-float 7s ease-in-out infinite;
}
.chip-guarantee {
  top: -18px;
  right: -14px;
  color: var(--green);
  animation-duration: 5.5s;
  transform: rotate(4deg);
}
.chip-guarantee svg { color: var(--green); }
@keyframes gentle-float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -8px; }
}
.why-visual .big-stars { font-size: 2.4rem; color: var(--gold); letter-spacing: 4px; margin-bottom: 10px; }
.why-visual .big-num { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.why-visual .big-label { color: var(--gray-300); font-weight: 600; font-size: .95rem; margin-top: 4px; }
.why-visual .divider { height: 1px; background: rgba(255,255,255,.12); margin: 28px 0; }
.why-visual .mini-row { display: flex; justify-content: space-between; text-align: left; }
.why-visual .mini-row div strong { display: block; font-family: var(--font-head); color: var(--white); font-size: 1.05rem; }
.why-visual .mini-row div span { color: var(--gray-300); font-size: .82rem; }

/* ── Pricing ── */
.pricing-section { background: var(--gray-50); }
.pricing-card-outer {
  position: relative;
  max-width: 526px;
  margin: 0 auto;
}
.pricing-card-wrap {
  padding: 3px;
  border-radius: calc(var(--radius-lg) + 3px);
  background: conic-gradient(from var(--angle, 0deg), var(--orange), var(--gold), var(--navy-soft), var(--gold), var(--orange));
  animation: spin-border 7s linear infinite;
  box-shadow: var(--shadow-lg);
}
@keyframes spin-border { to { --angle: 360deg; } }
.chip-live {
  top: -16px;
  left: -10px;
  color: var(--orange-dark);
  animation-duration: 5s;
  animation-delay: .2s;
  transform: rotate(-4deg);
}
.chip-live svg { color: var(--green); }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card-head {
  background: var(--navy);
  color: var(--white);
  padding: 32px 36px;
  text-align: center;
}
.pricing-card-head .plan-name { font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; font-size: .82rem; color: var(--gold); margin-bottom: 10px; }
.pricing-card-head .price { font-family: var(--font-head); font-size: 3.1rem; font-weight: 800; color: var(--white); letter-spacing: -1px; }
.pricing-card-head .price span { font-size: 1.05rem; font-weight: 700; color: var(--gray-300); }
.pricing-card-body { padding: 36px; }
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
  position: relative;
  padding-left: 32px;
  margin-bottom: 14px;
  font-weight: 600;
  color: var(--gray-900);
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2316a34a' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.guarantee-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-light);
  border: 1px solid #bfe8cc;
  border-radius: var(--radius);
  padding: 16px 18px;
  margin-bottom: 24px;
}
.guarantee-strip .icon { color: var(--green); flex-shrink: 0; }
.guarantee-strip strong { display: block; color: var(--gray-900); font-size: .92rem; }
.guarantee-strip span { font-size: .85rem; color: var(--gray-500); }
.pricing-note { text-align: center; font-size: .85rem; color: var(--gray-500); margin-top: 18px; }

/* ── FAQ (custom animated accordion) ── */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-trigger {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 4px;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--navy);
  font-size: 1.02rem;
  text-align: left;
}
.faq-trigger .plus {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--gray-300);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  color: var(--orange-dark);
  transition: transform .3s ease, border-color var(--transition);
}
.faq-item.open .faq-trigger .plus { transform: rotate(45deg); border-color: var(--orange); }
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s cubic-bezier(.16,.8,.24,1);
}
.faq-panel p { padding: 0 4px 20px; color: var(--gray-500); }

/* ── Final CTA ── */
.final-cta {
  background: linear-gradient(120deg, var(--orange), var(--orange-dark));
  color: var(--white);
  text-align: center;
}
.final-cta h2 { color: var(--white); margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.9); max-width: 560px; margin: 0 auto 30px; font-size: 1.08rem; }
.final-cta .btn-secondary { color: var(--orange-dark); }
.final-cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.final-cta .btn-dark { background: rgba(14,27,44,.35); border-color: rgba(255,255,255,.3); }
.final-cta .btn-dark:hover { background: var(--navy); }

/* ── Footer ── */
.site-footer {
  background: var(--navy);
  color: var(--gray-300);
  padding: 64px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .logo { color: var(--white); margin-bottom: 16px; }
.footer-brand .logo-text .name { color: var(--white); }
.footer-brand .logo-text .tag { color: var(--gold); }
.footer-brand p { color: var(--gray-300); font-size: .92rem; max-width: 340px; }
.footer-col h4 { color: var(--white); margin-bottom: 18px; font-size: .92rem; text-transform: uppercase; letter-spacing: 1px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { color: var(--gray-300); font-size: .94rem; font-weight: 500; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0;
  font-size: .82rem;
  color: var(--gray-500);
}

/* ── Responsive ── */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-content { text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { margin: 0 auto; }
  .hero-visual { height: 320px; max-width: 460px; margin: 0 auto; }
  .chip-broadcast { top: auto; bottom: 10px; right: 6%; }
  .split-section { grid-template-columns: 1fr; gap: 40px; }
  .why-visual-wrap { order: -1; }
  .problem-grid, .steps-grid, .features-grid { grid-template-columns: 1fr; }
  .step-line { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
}

@media (max-width: 760px) {
  .main-nav {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 5%;
    gap: 16px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .22s ease, transform .22s ease, visibility .22s;
  }
  .main-nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  .hamburger { display: flex; }
  .header-cta .btn-outline { display: none; }
  .hero-trust { grid-template-columns: repeat(2, 1fr); }
  section { padding: 60px 0; }
  .float-card { position: static; margin: 0 auto 14px; transform: none !important; animation: none !important; }
  .hero-visual { height: auto; display: flex; flex-direction: column; align-items: center; }
  .visual-glow { display: none; }
}

/* ── Cursor effects (desktop, fine-pointer only — see main.js) ── */
.cursor-glow {
  position: fixed;
  top: 0;
  left: 0;
  width: 140px;
  height: 140px;
  margin-left: -70px;
  margin-top: -70px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.10), rgba(255,184,0,.05) 45%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transition: opacity .5s ease;
  will-change: transform;
}
.cursor-glow.active { opacity: 1; }
.cursor-star {
  position: fixed;
  top: 0;
  left: 0;
  color: var(--gold);
  pointer-events: none;
  z-index: 9998;
  filter: drop-shadow(0 0 3px rgba(255,184,0,.6));
  animation: cursor-star-fade .8s ease-out forwards;
}
@keyframes cursor-star-fade {
  0% { opacity: .9; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  100% { opacity: 0; transform: translate(-50%, -50%) translateY(-26px) scale(.4) rotate(60deg); }
}

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