:root {
  --bg-deep: #04081A;
  --bg-navy: #0A1230;
  --bg-mid: #0F1B44;
  --bg-card: #111E47;
  --border: rgba(148, 178, 255, 0.14);
  --border-strong: rgba(148, 178, 255, 0.24);
  --brand: #2A6BFF;
  --brand-bright: #4F8BFF;
  --brand-deep: #1747C9;
  --mint: #19E3A5;
  --mint-deep: #0BB082;
  --text: #ffffff;
  --text-2: #B6C2E0;
  --text-3: #7E8AAE;
  --warn: #FFB547;
  --shadow-blue: 0 30px 80px -20px rgba(42, 107, 255, 0.55);
  --shadow-mint: 0 20px 60px -20px rgba(25, 227, 165, 0.45);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg-deep);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }

/* ===== Display ===== */
.display { font-family: 'Manrope', sans-serif; font-weight: 800; letter-spacing: -0.03em; line-height: 1.02; }
.mono { font-family: 'JetBrains Mono', monospace; }

/* ===== Layout ===== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 32px; }
@media (max-width: 720px) { .container { padding: 0 20px; } }

/* ============ NAV ============ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: backdrop-filter .3s, background .3s, border-color .3s;
}
.nav.scrolled {
  background: rgba(20, 24, 40, 0.25);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
}
.brand-mark {
  width: 44px; height: 44px;
  display: grid; place-items: center;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }
.brand-name {
  font-family: 'Manrope'; font-weight: 800; font-size: 28px; letter-spacing: -0.025em;
}
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-link {
  font-family: 'Manrope', sans-serif;
  color: var(--text-2);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  transition: color .2s;
}
.nav-link:hover { color: var(--text); }
.nav .btn { font-family: 'Manrope', sans-serif; font-size: 17px; font-weight: 700; padding: 14px 24px; }
@media (max-width: 880px) { .nav-links .nav-link { display: none; } }

/* ============ Buttons ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s, box-shadow .25s, filter .2s;
  white-space: nowrap;
}
.btn-mint {
  background: linear-gradient(135deg, #1EE6A8 0%, #0BB082 100%);
  color: #002416;
  box-shadow: 0 10px 30px -8px rgba(25, 227, 165, 0.55), inset 0 1px 0 rgba(255,255,255,0.3);
}
.btn-mint:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(25, 227, 165, 0.7), inset 0 1px 0 rgba(255,255,255,0.3); }
.btn-blue {
  background: linear-gradient(135deg, var(--brand-bright) 0%, var(--brand) 50%, var(--brand-deep) 100%);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(42, 107, 255, 0.6), inset 0 1px 0 rgba(255,255,255,0.18);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(42, 107, 255, 0.75), inset 0 1px 0 rgba(255,255,255,0.18); }
.btn-ghost {
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-lg { padding: 18px 30px; font-size: 16px; border-radius: 999px; }
.btn-xl { padding: 22px 38px; font-size: 18px; border-radius: 999px; }

/* arrow inside btn */
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(3px); }

/* ============ Backgrounds ============ */
.aurora {
  position: absolute; inset: -10% -5% -5% -5%;
  pointer-events: none; overflow: hidden; z-index: 0;
}
.aurora::before, .aurora::after {
  content: ''; position: absolute; border-radius: 50%;
  filter: blur(120px); opacity: .55;
}
.aurora::before {
  width: 720px; height: 720px; left: -150px; top: -200px;
  background: radial-gradient(closest-side, #2A6BFF, transparent 70%);
  animation: floatA 18s ease-in-out infinite;
}
.aurora::after {
  width: 600px; height: 600px; right: -120px; top: 100px;
  background: radial-gradient(closest-side, #19E3A5, transparent 70%);
  animation: floatB 22s ease-in-out infinite;
  opacity: .35;
}
@keyframes floatA {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(40px, 60px); }
}
@keyframes floatB {
  0%, 100% { transform: translate(0,0); }
  50% { transform: translate(-60px, 40px); }
}

.grid-bg {
  position: absolute; inset: 0;
  z-index: 1;
  background-image:
    linear-gradient(rgba(148,178,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148,178,255,0.06) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--bg-deep);
}
.hero-shader {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 0;
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 8, 26, 0.55) 0%, rgba(4, 8, 26, 0.15) 50%, rgba(4, 8, 26, 0.65) 100%),
    radial-gradient(ellipse 70% 60% at 30% 45%, rgba(4, 8, 26, 0.45) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  z-index: 2;
}
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border-strong);
  background: rgba(10, 16, 38, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-size: 14px; font-weight: 600;
  color: #E4EAF7;
}
.pill .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 12px var(--mint);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.85); }
}

h1.hero-title {
  margin: 22px 0 22px;
  font-family: 'Manrope'; font-weight: 900;
  font-size: clamp(52px, 7vw, 104px);
  line-height: .96;
  letter-spacing: -0.04em;
  text-shadow: 0 4px 28px rgba(0, 8, 30, 0.55), 0 2px 8px rgba(0, 8, 30, 0.45);
  color: #ffffff;
}
.hero-title .grad {
  background: linear-gradient(180deg, #B6FFE3 0%, #5FF2C5 35%, #19E3A5 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  filter: drop-shadow(0 4px 24px rgba(25, 227, 165, 0.35));
}
.hero-title .mint {
  background: linear-gradient(180deg, #5FF2C5 0%, #19E3A5 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 1.35vw, 21px);
  color: #DCE3F5;
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 500;
  text-shadow: 0 2px 14px rgba(0, 8, 30, 0.5);
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; margin-bottom: 36px; }

.hero-trust {
  display: flex; gap: 28px; flex-wrap: wrap; align-items: center;
}
.hero-trust .item {
  display: flex; align-items: center; gap: 10px;
  color: #D6DEF1; font-size: 14.5px; font-weight: 500;
  text-shadow: 0 2px 10px rgba(0, 8, 30, 0.45);
}
.hero-trust .item svg { color: var(--mint); flex-shrink: 0; }

/* hero visual */
.hero-visual {
  position: relative;
  perspective: 1600px;
  min-height: 680px;
}
.phone-stage {
  position: relative; width: 100%; height: 680px;
  transform-style: preserve-3d;
}

.phone {
  position: absolute;
  width: 300px; height: 660px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) rotateY(-14deg) rotateX(8deg);
  border-radius: 42px;
  background: linear-gradient(160deg, #1B2A55 0%, #0C1736 100%);
  border: 1px solid rgba(148, 178, 255, 0.18);
  padding: 10px;
  box-shadow:
    0 60px 140px -30px rgba(0, 8, 30, 0.9),
    0 30px 80px -20px rgba(42, 107, 255, 0.4),
    inset 0 1px 0 rgba(255,255,255,0.08);
  transition: transform .25s ease-out;
}
/* ===== Phone — light-theme app UI matching reference ===== */
.phone-screen {
  width: 100%; height: 100%;
  border-radius: 32px;
  background: #F7F9FC;
  overflow: hidden;
  position: relative;
  color: #0F172A;
}
.phone-notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 90px; height: 22px; background: #02050F; border-radius: 12px;
  z-index: 5;
}
.phone-statusbar {
  position: absolute; top: 12px; left: 0; right: 0;
  padding: 0 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; font-weight: 600; color: #0F172A;
  z-index: 4;
}
.phone-statusbar .right { display: inline-flex; align-items: center; gap: 6px; color: #1E293B; }
.phone-content {
  padding: 42px 14px 12px;
  height: 100%;
  display: flex; flex-direction: column; gap: 11px;
  overflow: hidden;
}

/* Tracker pills row */
.track-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.track-pill {
  display: flex; align-items: center; gap: 8px;
  background: #fff;
  border-radius: 999px;
  padding: 6px 12px 6px 6px;
  box-shadow: 0 4px 14px -4px rgba(15, 23, 42, 0.08);
}
.track-pill .ic {
  width: 30px; height: 30px; border-radius: 50%;
  background: linear-gradient(135deg, #4F8BFF 0%, #1E4FD8 100%);
  display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
  box-shadow: 0 4px 8px -2px rgba(30, 79, 216, 0.4);
}
.track-pill.diet .ic { background: linear-gradient(135deg, #3B82F6 0%, #1E4FD8 100%); }
.track-pill .lbl { font-family: 'Manrope'; font-weight: 700; font-size: 11px; letter-spacing: -0.01em; color: #0F172A; }

/* Offers card */
.offers-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px 12px 12px 14px;
  display: flex; align-items: center; justify-content: space-between;
  position: relative; overflow: hidden;
}
.offers-card .ttl { font-family: 'Manrope'; font-weight: 800; font-size: 14px; color: #0F172A; letter-spacing: -0.01em; }
.offers-card .sub { font-size: 9.5px; color: #64748B; margin-top: 2px; }
.offers-card .btn-mini {
  margin-top: 8px;
  display: inline-block;
  background: linear-gradient(135deg, #2A6BFF, #1747C9);
  color: #fff;
  font-size: 9.5px; font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
}
.offers-card .gift {
  width: 50px; height: 50px; flex-shrink: 0;
  background: radial-gradient(circle at 50% 50%, #FCD34D 0%, #F59E0B 60%, transparent 70%);
  position: relative; border-radius: 50%; opacity: .85;
}
.offers-card .gift::before, .offers-card .gift::after {
  content: ''; position: absolute;
}
.offers-card .gift::before {
  /* gift box */
  left: 30%; top: 25%; width: 40%; height: 55%;
  background: linear-gradient(180deg, #1E293B 0%, #0F172A 100%);
  border-radius: 3px;
  box-shadow: 0 4px 10px rgba(15,23,42,0.3);
}
.offers-card .gift::after {
  /* gift lid */
  left: 24%; top: 18%; width: 52%; height: 12%;
  background: #1E293B;
  border-radius: 2px;
}

/* Section heading inside phone */
.phone-h {
  font-family: 'Manrope'; font-weight: 800; font-size: 13px;
  color: #0F172A; letter-spacing: -0.01em;
  margin: 4px 0 -2px;
}

/* Goal ring card */
.goal-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px;
  display: flex; align-items: center; gap: 12px;
}
.goal-ring { flex-shrink: 0; transform: rotate(-90deg); }
.goal-stats { display: flex; flex-direction: column; gap: 10px; flex: 1; }
.goal-row { display: flex; align-items: center; gap: 8px; }
.goal-row .gi {
  width: 24px; height: 24px; border-radius: 50%;
  display: grid; place-items: center;
  color: #fff; flex-shrink: 0;
}
.goal-row.eat .gi { background: #22C55E; }
.goal-row.burn .gi { background: #3B82F6; }
.goal-row .nums { display: flex; flex-direction: column; line-height: 1.1; }
.goal-row .nums .v { font-family: 'Manrope'; font-weight: 800; font-size: 14px; color: #0F172A; }
.goal-row .nums .v .u { color: #94A3B8; font-size: 9px; font-weight: 600; margin-left: 2px; }
.goal-row .nums .l { font-size: 9px; color: #64748B; margin-top: 1px; }
.goal-row .arr-mini {
  margin-left: auto;
  width: 22px; height: 22px; border-radius: 50%;
  background: #F1F5F9;
  display: grid; place-items: center;
  color: #64748B;
}

/* Water / Weight row */
.ww-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.ww-card {
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 12px;
  display: flex; flex-direction: column; gap: 4px;
  position: relative;
}
.ww-card .label-row { display: flex; justify-content: space-between; align-items: center; }
.ww-card .lbl { font-family: 'Manrope'; font-weight: 800; font-size: 13px; color: #0F172A; }
.ww-card .ic-mini {
  width: 22px; height: 22px; border-radius: 6px;
  display: grid; place-items: center;
}
.ww-card .val { font-family: 'Manrope'; font-weight: 700; font-size: 16px; color: #0F172A; margin-top: 4px; }
.ww-card .val .u { color: #94A3B8; font-size: 10px; font-weight: 600; margin-left: 2px; }
.ww-card .cta {
  margin-top: 8px;
  display: flex; justify-content: space-between; align-items: center;
}
.ww-card .cta-btn {
  background: #DBEAFE; color: #1E4FD8;
  font-size: 9.5px; font-weight: 700;
  padding: 5px 10px; border-radius: 999px;
}
.ww-card .cta-arr {
  width: 22px; height: 22px; border-radius: 50%;
  background: linear-gradient(135deg, #2A6BFF, #1E4FD8);
  display: grid; place-items: center;
  color: #fff;
}

/* Steps tracker */
.steps-card {
  background: #fff;
  border: 1px solid #93C5FD;
  border-radius: 16px;
  padding: 10px 12px;
}
.steps-row { display: flex; align-items: center; gap: 10px; }
.steps-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FB923C, #EF4444);
  display: grid; place-items: center;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 8px -2px rgba(239, 68, 68, 0.4);
}
.steps-text { flex: 1; }
.steps-text .t { font-family: 'Manrope'; font-weight: 800; font-size: 13px; color: #0F172A; }
.steps-text .s { font-size: 9.5px; color: #64748B; }
.steps-text .s b { color: #0F172A; font-weight: 700; }
.steps-right { text-align: right; }
.steps-right .x { font-family: 'Manrope'; font-weight: 800; font-size: 13px; color: #1E4FD8; }
.steps-right .x .of { color: #94A3B8; font-weight: 600; font-size: 11px; }
.steps-arr {
  width: 24px; height: 24px; border-radius: 50%;
  background: linear-gradient(135deg, #2A6BFF, #1E4FD8);
  display: grid; place-items: center;
  color: #fff;
  margin-left: 6px;
}
.steps-bar {
  margin-top: 10px;
  height: 6px; border-radius: 3px;
  background: #DBEAFE;
  overflow: hidden;
}
.steps-bar > span {
  display: block; height: 100%;
  background: linear-gradient(90deg, #2A6BFF, #1E4FD8);
  border-radius: 3px;
}

/* Bottom tab bar */
.phone-tabs {
  margin-top: auto;
  display: grid; grid-template-columns: repeat(4, 1fr);
  padding-top: 8px;
  border-top: 1px solid #E2E8F0;
}
.phone-tabs .tab {
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  font-size: 8.5px; font-weight: 700; color: #94A3B8;
}
.phone-tabs .tab.active { color: #1E4FD8; }
.phone-tabs .tab svg { width: 16px; height: 16px; }

/* Floating hero badges */
.float-badge {
  position: absolute;
  background: linear-gradient(160deg, rgba(17, 30, 71, 0.95) 0%, rgba(10, 18, 48, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex; align-items: center; gap: 12px;
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px -10px rgba(0, 8, 30, 0.5);
  animation: floatBadge 6s ease-in-out infinite;
}
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float-badge .icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-deep) 100%);
  flex-shrink: 0;
}
.float-badge.mint .icon { background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%); }
.float-badge .icon svg { color: #fff; }
.float-badge.mint .icon svg { color: #002416; }
.float-badge .lbl { font-size: 11px; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.08em; }
.float-badge .val { font-family: 'Manrope'; font-weight: 800; font-size: 18px; line-height: 1; margin-top: 3px; }
.float-badge .val .u { font-size: 11px; color: var(--text-3); font-weight: 600; margin-left: 3px; }

.float-badge.b1 { top: 2%; right: 4%; animation-delay: -1.5s; }
.float-badge.b2 { bottom: 4%; left: -2%; animation-delay: -3s; }
.float-badge.b3 { top: 52%; right: -10%; animation-delay: -4.5s; }

/* Salad plate badge — shows a CSS/SVG-drawn top-down macro bowl */
.float-badge.meal {
  padding: 12px 16px 12px 12px;
  gap: 14px;
}
.meal-plate {
  width: 52px; height: 52px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #FAFBFD;
  display: grid; place-items: center;
  box-shadow:
    inset 0 0 0 2px #E2E8F0,
    0 6px 14px -4px rgba(0, 0, 30, 0.5);
  position: relative;
  overflow: hidden;
}
.meal-plate svg { width: 100%; height: 100%; display: block; }
.float-badge.meal-top { top: 22%; right: -6%; animation-delay: -2s; }
.float-badge.meal-bot { bottom: 26%; left: -8%; animation-delay: -3.5s; }
@media (max-width: 1024px) {
  .float-badge.meal-top { top: 18%; right: 4%; }
  .float-badge.meal-bot { bottom: 24%; left: 4%; }
}
@media (max-width: 540px) {
  /* hide one meal badge on tiny screens to avoid crowding */
  .float-badge.meal-bot { display: none; }
}

@media (max-width: 1024px) {
  .hero-visual { min-height: 700px; height: 700px; }
  .float-badge.b1 { top: 4%; right: 4%; }
  .float-badge.b2 { bottom: 4%; left: 4%; }
  .float-badge.b3 { display: none; }
}
@media (max-width: 540px) {
  .float-badge { padding: 10px 12px; }
  .float-badge .val { font-size: 15px; }
}

/* ============ Section ============ */
.section {
  position: relative;
  padding: 120px 0;
}
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--mint);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.section-eyebrow::before {
  content: ''; width: 18px; height: 1px; background: var(--mint);
}
.section-title {
  font-family: 'Manrope'; font-weight: 800;
  font-size: clamp(34px, 4.5vw, 60px);
  letter-spacing: -0.03em;
  line-height: 1.02;
  margin: 0 0 18px;
  max-width: 920px;
  text-wrap: balance;
}
.section-sub {
  font-size: clamp(16px, 1.2vw, 18px);
  color: var(--text-2);
  max-width: 640px;
  margin: 0 0 60px;
}
.section-head { margin-bottom: 64px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; max-width: 760px; }
.section-head.center .section-eyebrow { justify-content: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ============ Trust marquee ============ */
.trust-strip {
  position: relative;
  padding: 30px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: rgba(10, 18, 48, 0.5);
  overflow: hidden;
}
.marquee {
  display: flex; gap: 80px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
  align-items: center;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee .feat {
  display: flex; align-items: center; gap: 14px;
  color: var(--text-2); font-weight: 600;
  font-family: 'Manrope';
  font-size: 18px;
  letter-spacing: -0.01em;
  opacity: .65;
}
.marquee .feat svg { color: var(--brand-bright); }
.marquee .sep { width: 6px; height: 6px; border-radius: 50%; background: var(--text-3); opacity: .4; }

/* ============ Stats ============ */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-navy) 100%);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(160deg, rgba(15, 27, 68, 0.5) 0%, rgba(10, 18, 48, 0.5) 100%);
  backdrop-filter: blur(20px);
}
.stat {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.stat:last-child { border-right: none; }
.stat-num {
  font-family: 'Manrope'; font-weight: 800;
  font-size: clamp(40px, 4vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #B6C2E0 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.stat-num .suffix { color: var(--mint); -webkit-text-fill-color: var(--mint); }
.stat-lbl { color: var(--text-3); font-size: 13.5px; margin-top: 10px; text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600; }
@media (max-width: 880px) {
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ============ How It Works ============ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  position: relative;
}
@media (max-width: 880px) { .steps-grid { grid-template-columns: 1fr; } }
.step {
  position: relative;
  padding: 36px 28px 32px;
  background: linear-gradient(160deg, rgba(17, 30, 71, 0.7) 0%, rgba(10, 18, 48, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  backdrop-filter: blur(20px);
  transition: transform .3s ease, border-color .3s;
  overflow: hidden;
}
.step:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.step::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-bright), transparent);
  opacity: 0; transition: opacity .3s;
}
.step:hover::before { opacity: 1; }
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--text-3);
  margin-bottom: 18px;
  letter-spacing: 0.12em;
}
.step-icon {
  width: 60px; height: 60px;
  border-radius: 18px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  background: linear-gradient(160deg, rgba(42, 107, 255, 0.18) 0%, rgba(10, 18, 48, 0.6) 100%);
  border: 1px solid rgba(79, 139, 255, 0.28);
  position: relative;
}
.step-icon::after {
  content: ''; position: absolute; inset: -6px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(42, 107, 255, 0.25) 0%, transparent 60%);
  z-index: -1;
  filter: blur(8px);
}
.step-icon svg { color: var(--brand-bright); }
.step-title { font-family: 'Manrope'; font-weight: 800; font-size: 22px; letter-spacing: -0.02em; margin-bottom: 10px; }
.step-body { color: var(--text-2); font-size: 15px; line-height: 1.55; }

/* ============ Plan ============ */
.plan-section {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, #060B22 100%);
}
.plan-wrap {
  position: relative;
  display: grid; grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: stretch;
}
@media (max-width: 1024px) { .plan-wrap { grid-template-columns: 1fr; } }

.plan-card {
  position: relative;
  background:
    linear-gradient(160deg, rgba(17, 30, 71, 0.9) 0%, rgba(8, 16, 42, 0.95) 100%);
  border: 1px solid var(--border-strong);
  border-radius: 32px;
  padding: 44px 40px;
  overflow: hidden;
  box-shadow: 0 60px 120px -40px rgba(0, 0, 30, 0.6);
}
.plan-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand-bright) 30%, var(--mint) 70%, transparent);
}
.plan-card::after {
  content: '';
  position: absolute; top: -50%; right: -30%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(42, 107, 255, 0.22) 0%, transparent 60%);
  filter: blur(40px);
  pointer-events: none;
}

.plan-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(25, 227, 165, 0.12);
  border: 1px solid rgba(25, 227, 165, 0.35);
  color: var(--mint);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.plan-name {
  font-family: 'Manrope'; font-weight: 800;
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 16px 0 6px;
  position: relative; z-index: 2;
}
.plan-name .accent {
  background: linear-gradient(180deg, #6FA3FF 0%, #2A6BFF 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.plan-tagline { color: var(--text-2); font-size: 16px; margin-bottom: 30px; position: relative; z-index: 2; }

.price-row {
  display: flex; align-items: flex-end; gap: 14px;
  margin-bottom: 4px;
  position: relative; z-index: 2;
}
.price-curr {
  font-family: 'Manrope'; font-weight: 700;
  font-size: 32px;
  color: var(--text-2);
  line-height: 1;
  padding-bottom: 8px;
}
.price-amount {
  font-family: 'Manrope'; font-weight: 800;
  font-size: clamp(60px, 7vw, 88px);
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(180deg, #fff 0%, #A4B4DC 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.price-cycle {
  color: var(--text-3); font-size: 14px;
  padding-bottom: 12px;
}
.price-strike {
  color: var(--text-3); font-size: 16px;
  margin-bottom: 18px;
  font-weight: 500;
  position: relative; z-index: 2;
}
.price-strike .strike {
  text-decoration: line-through;
}
.price-strike .save {
  display: inline-block;
  color: var(--mint); margin-left: 8px;
  text-decoration: none; font-weight: 700;
}

.feature-list {
  list-style: none; padding: 0; margin: 30px 0 32px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative; z-index: 2;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 15.5px;
  color: var(--text);
}
.feature-list li .ck {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.feature-list li .ck svg { color: #002416; }
.feature-list li .meta { color: var(--text-3); font-size: 13.5px; margin-top: 2px; }

.plan-cta { position: relative; z-index: 2; }
.plan-cta .row { display: flex; gap: 12px; flex-wrap: wrap; }
.plan-foot {
  margin-top: 18px;
  display: flex; gap: 22px; flex-wrap: wrap;
  color: var(--text-3); font-size: 12.5px;
}
.plan-foot .li { display: inline-flex; align-items: center; gap: 6px; }
.plan-foot svg { color: var(--mint); }

/* Plan side: comparison + guarantee */
.plan-side {
  display: flex; flex-direction: column; gap: 24px;
}
.compare {
  background: rgba(17, 30, 71, 0.5);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 26px 26px;
  position: relative;
  overflow: hidden;
}
.compare h4 {
  font-family: 'Manrope'; font-weight: 700; font-size: 14px;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--text-3); margin: 0 0 18px;
}
.compare-row {
  display: grid; grid-template-columns: 1.3fr 0.85fr 1.4fr 0.85fr;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid var(--border);
  font-size: 13.5px;
  gap: 4px;
}
.compare-row.head {
  border-top: none;
  color: var(--text-3); font-size: 11px;
  text-transform: uppercase; letter-spacing: 0.08em;
  padding-bottom: 8px; padding-top: 0;
}
.compare-row.head .v {
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.15;
}
.compare-row .label { color: var(--text-2); min-width: 0; overflow-wrap: anywhere; }
.compare-row .v {
  text-align: center; color: var(--text-2); font-size: 13.5px;
  min-width: 0;
}
.compare-row .v.pro {
  color: var(--text);
  font-weight: 700;
  position: relative;
}
.compare-row.head .v.pro {
  color: var(--mint);
  font-size: 11px;
  letter-spacing: 0.02em;
}
.compare-row .x { color: var(--text-3); opacity: .5; }
.compare-pro-col {
  position: absolute;
  top: 26px; bottom: 26px;
  width: calc((100% - 52px - 12px) * (1.4 / 4.4));
  right: calc(((100% - 52px - 12px) * (0.85 / 4.4)) + 8px);
  background: linear-gradient(180deg, rgba(42, 107, 255, 0.12) 0%, rgba(25, 227, 165, 0.06) 100%);
  border: 1px solid rgba(79, 139, 255, 0.3);
  border-radius: 14px;
  pointer-events: none;
  z-index: 0;
}
.compare-row > * { position: relative; z-index: 1; }

@media (max-width: 640px) {
  .compare { padding: 20px 16px; }
  .compare h4 { font-size: 12px; margin-bottom: 14px; }
  .compare-row {
    grid-template-columns: 1.2fr 0.85fr 1.4fr 0.85fr;
    font-size: 12px;
    gap: 2px;
  }
  .compare-row.head { font-size: 9.5px; letter-spacing: 0.04em; }
  .compare-row.head .v.pro { font-size: 10px; letter-spacing: 0; }
  .compare-row .v { font-size: 12px; }
  .compare-pro-col {
    top: 20px; bottom: 20px;
    width: calc((100% - 32px - 6px) * (1.4 / 4.3));
    right: calc(((100% - 32px - 6px) * (0.85 / 4.3)) + 4px);
  }
}

.guarantee-mini {
  display: flex; gap: 18px; align-items: center;
  background: linear-gradient(135deg, rgba(25, 227, 165, 0.10) 0%, rgba(10, 18, 48, 0.4) 100%);
  border: 1px solid rgba(25, 227, 165, 0.25);
  border-radius: 22px;
  padding: 22px;
}
.guarantee-mini .shield {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--mint) 0%, var(--mint-deep) 100%);
  flex-shrink: 0;
  box-shadow: 0 12px 30px -8px rgba(25, 227, 165, 0.5);
}
.guarantee-mini h5 { font-family: 'Manrope'; font-weight: 800; font-size: 19px; margin: 0 0 4px; }
.guarantee-mini p { color: var(--text-2); font-size: 13.5px; margin: 0; line-height: 1.45; }

/* ============ Results / Transformations ============ */
.results-section { background: linear-gradient(180deg, #060B22 0%, var(--bg-deep) 100%); }

.results-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  max-width: 1100px; margin: 0 auto;
}
@media (max-width: 1024px) { .results-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .results-grid { grid-template-columns: 1fr; } }

.result-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--bg-card);
  transition: transform .25s ease, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.result-card:hover {
  transform: translateY(-6px);
  border-color: rgba(79, 139, 255, 0.5);
  box-shadow: 0 30px 60px -15px rgba(42, 107, 255, 0.4);
}
.result-card img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.result-meta {
  padding: 12px 14px 14px;
  background: linear-gradient(180deg, var(--bg-card) 0%, var(--bg-navy) 100%);
  border-top: 1px solid var(--border);
}
.result-name { font-family: 'Manrope'; font-weight: 700; font-size: 14.5px; letter-spacing: -0.01em; }
.result-detail { display: flex; gap: 8px; margin-top: 5px; font-size: 11.5px; color: var(--text-3); align-items: center; flex-wrap: wrap; }
.result-detail .dot { width: 3px; height: 3px; border-radius: 50%; background: var(--text-3); opacity: .4; }
.result-detail .badge {
  background: rgba(25, 227, 165, 0.14);
  color: var(--mint);
  padding: 2px 7px;
  border-radius: 5px;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
}

/* "View more" card */
.result-more {
  display: block;
  text-decoration: none;
  background: linear-gradient(160deg, rgba(42, 107, 255, 0.18) 0%, rgba(15, 27, 68, 0.6) 100%);
  border-color: rgba(79, 139, 255, 0.4);
}
.result-more-inner {
  aspect-ratio: 4 / 5;
  padding: 22px 20px;
  display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
  gap: 10px;
  position: relative;
  overflow: hidden;
}
.result-more-inner::before {
  content: ''; position: absolute; inset: -40% -40% auto auto;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(25, 227, 165, 0.3) 0%, transparent 60%);
  filter: blur(20px);
  pointer-events: none;
}
.result-more-stat {
  font-family: 'Manrope'; font-weight: 800; font-size: clamp(42px, 4vw, 56px);
  letter-spacing: -0.04em; line-height: 1;
  background: linear-gradient(180deg, #fff 0%, #A4B4DC 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  position: relative; z-index: 1;
}
.result-more-label {
  color: var(--text-2); font-size: 13.5px; line-height: 1.4;
  position: relative; z-index: 1;
}
.result-more-cta {
  margin-top: 6px;
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--mint); font-weight: 700; font-size: 13.5px;
  position: relative; z-index: 1;
}

/* ============ Testimonials ============ */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
@media (max-width: 1024px) { .testi-grid { grid-template-columns: 1fr; max-width: 580px; margin: 0 auto; } }
.testi {
  position: relative;
  background: linear-gradient(160deg, rgba(17, 30, 71, 0.7) 0%, rgba(10, 18, 48, 0.7) 100%);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .25s, border-color .25s;
}
.testi:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.stars { display: inline-flex; gap: 2px; color: #FFB547; margin-bottom: 18px; }
.testi-quote {
  font-family: 'Manrope';
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -0.01em;
  flex: 1;
  margin-bottom: 24px;
  text-wrap: pretty;
}
.testi-foot { display: flex; align-items: center; gap: 14px; padding-top: 18px; border-top: 1px solid var(--border); }
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background-size: cover; background-position: center;
  border: 1px solid var(--border-strong);
  font-family: 'Manrope'; font-weight: 800;
  display: grid; place-items: center;
}
.testi-info .nm { font-weight: 700; font-size: 14.5px; }
.testi-info .role { color: var(--text-3); font-size: 12.5px; margin-top: 2px; }
.testi-info .result { color: var(--mint); font-weight: 700; font-size: 12.5px; }

/* ============ Guarantee Big ============ */
.guarantee-section {
  position: relative;
  padding: 120px 0;
  background:
    radial-gradient(800px 500px at 20% 50%, rgba(25, 227, 165, 0.14), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.guarantee-wrap {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) {
  .guarantee-wrap { grid-template-columns: 1fr; }
}
.shield-big {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin: 0 auto;
  display: grid; place-items: center;
}
.shield-big svg.bg { position: absolute; inset: 0; width: 100%; height: 100%; }
.shield-big .inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.shield-big .days {
  font-family: 'Manrope'; font-weight: 900;
  font-size: clamp(80px, 11vw, 140px);
  letter-spacing: -0.05em;
  line-height: .9;
  background: linear-gradient(180deg, #5FF2C5 0%, #19E3A5 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.shield-big .lbl {
  font-family: 'Manrope'; font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: -4px;
}
.shield-big .sub {
  color: var(--text-2);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-top: 6px;
}
.shield-big .orbit {
  position: absolute;
  inset: -20px;
  border: 1px dashed rgba(25, 227, 165, 0.25);
  border-radius: 50%;
  animation: spin 40s linear infinite;
}
.shield-big .orbit::before {
  content: ''; position: absolute; top: -6px; left: 50%;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 16px var(--mint);
  transform: translateX(-50%);
}
@keyframes spin { to { transform: rotate(360deg); } }

.guarantee-feats { list-style: none; padding: 0; margin: 30px 0 0; display: flex; flex-direction: column; gap: 18px; }
.guarantee-feats li {
  display: flex; gap: 16px; align-items: flex-start;
}
.guarantee-feats .gi {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(25, 227, 165, 0.14);
  border: 1px solid rgba(25, 227, 165, 0.3);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.guarantee-feats .gi svg { color: var(--mint); }
.guarantee-feats .gt { font-family: 'Manrope'; font-weight: 700; font-size: 16.5px; }
.guarantee-feats .gd { color: var(--text-2); font-size: 14px; margin-top: 3px; line-height: 1.4; }

/* ============ FAQ ============ */
.faq-section { background: linear-gradient(180deg, var(--bg-deep) 0%, #060B22 100%); }
.faq-list {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 12px;
}
.faq {
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(160deg, rgba(17, 30, 71, 0.5) 0%, rgba(10, 18, 48, 0.5) 100%);
  overflow: hidden;
  transition: border-color .2s;
}
.faq.open { border-color: var(--border-strong); }
.faq-q {
  width: 100%; padding: 22px 26px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  text-align: left;
  font-family: 'Manrope'; font-weight: 700; font-size: 17px;
  letter-spacing: -0.01em;
}
.faq-q .ic {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border);
  display: grid; place-items: center;
  flex-shrink: 0;
  transition: transform .25s, background .25s;
}
.faq.open .faq-q .ic { transform: rotate(45deg); background: rgba(42, 107, 255, 0.2); border-color: rgba(79, 139, 255, 0.4); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 26px;
  color: var(--text-2);
  font-size: 15px;
  line-height: 1.55;
}
.faq.open .faq-a {
  max-height: 360px;
  padding: 0 26px 24px;
}

/* ============ Final CTA ============ */
.final-cta {
  position: relative;
  padding: 140px 0;
  text-align: center;
  background:
    radial-gradient(700px 400px at 50% 30%, rgba(42, 107, 255, 0.3), transparent 60%),
    radial-gradient(900px 500px at 50% 80%, rgba(25, 227, 165, 0.15), transparent 60%),
    var(--bg-deep);
  overflow: hidden;
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: 'Manrope'; font-weight: 900;
  font-size: clamp(44px, 7vw, 96px);
  letter-spacing: -0.04em;
  line-height: 0.96;
  margin: 0 0 24px;
  max-width: 1000px; margin-left: auto; margin-right: auto;
  text-wrap: balance;
}
.final-cta h2 .grad {
  background: linear-gradient(180deg, #6FA3FF 0%, #19E3A5 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.final-cta p {
  font-size: clamp(16px, 1.3vw, 19px);
  color: var(--text-2);
  max-width: 600px; margin: 0 auto 40px;
}
.final-cta .row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.final-foot {
  margin-top: 36px;
  display: flex; justify-content: center; gap: 28px; flex-wrap: wrap;
  color: var(--text-3); font-size: 13px;
}
.final-foot .li { display: inline-flex; align-items: center; gap: 8px; }
.final-foot svg { color: var(--mint); }

/* ============ Footer ============ */
footer {
  padding: 60px 0 50px;
  border-top: 1px solid var(--border);
  background: #03061A;
}
.footer-inner {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 880px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
.footer-col h6 { font-family: 'Manrope'; font-weight: 700; font-size: 14px; margin: 0 0 14px; }
.footer-col a { display: block; color: var(--text-3); font-size: 13.5px; padding: 5px 0; transition: color .15s; }
.footer-col a:hover { color: var(--text); }
.footer-tag { color: var(--text-3); font-size: 13.5px; max-width: 280px; margin-top: 14px; line-height: 1.5; }
.footer-bottom {
  margin-top: 50px; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px; color: var(--text-3);
  flex-wrap: wrap; gap: 14px;
}

/* ============ Tilt cards ============ */
.tilt { will-change: transform; transition: transform .15s ease-out; }

/* Reveal */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===== Tweak: accent-blue (swap mint CTAs to blue) ===== */
body.accent-blue .btn-mint {
  background: linear-gradient(135deg, #4F8BFF 0%, #2A6BFF 50%, #1747C9 100%);
  color: #fff;
  box-shadow: 0 10px 30px -8px rgba(42, 107, 255, 0.6), inset 0 1px 0 rgba(255,255,255,0.18);
}
body.accent-blue .btn-mint:hover {
  box-shadow: 0 18px 40px -10px rgba(42, 107, 255, 0.75), inset 0 1px 0 rgba(255,255,255,0.18);
}

/* ===== Tweak: intensity ===== */
body.intensity-calm .aurora,
body.intensity-calm .grid-bg { opacity: 0.5; }
body.intensity-calm .float-badge { animation: none; }
body.intensity-calm .pill .dot { animation: none; }
body.intensity-calm .marquee { animation-duration: 60s; }

body.intensity-loud .aurora::before,
body.intensity-loud .aurora::after { opacity: .9; filter: blur(100px); }
body.intensity-loud .float-badge { animation-duration: 4s; }
body.intensity-loud .plan-card::before { height: 3px; }

/* ============ Mobile (≤640px) ============ */
.nav-cta-short { display: none; }

@media (max-width: 640px) {
  /* Nav */
  .nav { padding: 10px 0; }
  .nav-inner { gap: 10px; }
  .brand { gap: 8px; }
  .brand-mark { width: 34px; height: 34px; }
  .brand-name { font-size: 20px; letter-spacing: -0.02em; }
  .nav .btn { padding: 10px 16px; font-size: 14px; gap: 6px; }
  .nav .btn svg { width: 14px; height: 14px; }
  .nav-cta-full { display: none; }
  .nav-cta-short { display: inline; }

  /* Hero — shrink height/padding, keep phone visible but smaller */
  .hero { min-height: auto; padding: 96px 0 56px; }
  .hero-inner { gap: 28px; }
  .hero-visual { min-height: 540px; height: 540px; }
  .phone-stage { height: 540px; }
  .phone { width: 260px; height: 560px; transform: translate(-50%, -50%) rotateY(-10deg) rotateX(6deg); }
  h1.hero-title { font-size: clamp(40px, 11vw, 56px); margin: 16px 0 16px; }
  .hero-sub { font-size: 15.5px; margin-bottom: 28px; }
  .hero-cta { gap: 10px; margin-bottom: 28px; }
  .hero-cta .btn { padding: 14px 22px; font-size: 14.5px; flex: 1; justify-content: center; }
  .hero-trust { gap: 14px 18px; }
  .hero-trust .item { font-size: 13px; gap: 8px; }
  .hero-trust .item svg { width: 18px; height: 18px; }
  .pill { padding: 8px 14px; font-size: 12.5px; }

  /* Float badges — keep just two readable ones on phone, shrink */
  .float-badge { padding: 10px 12px; gap: 10px; }
  .float-badge .icon { width: 40px; height: 40px; border-radius: 10px; }
  .float-badge .icon svg { width: 20px; height: 20px; }
  .float-badge .val { font-size: 15px; }
  .float-badge .lbl { font-size: 10px; }
  .float-badge.b3, .float-badge.meal { display: none; }
  .float-badge.b1 { top: 1%; right: 0; }
  .float-badge.b2 { bottom: 1%; left: 0; }

  /* Sections — tighten padding everywhere */
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 36px; }
  .section-title { font-size: clamp(28px, 7.5vw, 38px); }
  .section-sub { margin-bottom: 36px; font-size: 15px; }
  .stats-section { padding: 48px 0; }
  .stat { padding: 22px 14px; }
  .stat-num { font-size: 30px; }
  .stat-lbl { font-size: 11px; letter-spacing: 0.06em; margin-top: 6px; }
  .guarantee-section { padding: 72px 0; }
  .final-cta { padding: 88px 0; }
  .final-cta h2 { font-size: clamp(34px, 9vw, 52px); }
  .trust-strip { padding: 22px 0; }
  .marquee .feat { font-size: 14px; }

  /* Plan */
  .plan-card { padding: 32px 22px; border-radius: 24px; }
  .plan-name { font-size: 34px; }
  .price-amount { font-size: 58px; }
  .feature-list li { font-size: 14.5px; }
  .btn-xl { padding: 18px 26px; font-size: 16px; }

  /* Testimonials / FAQ */
  .testi { padding: 24px 20px; border-radius: 20px; }
  .testi-quote { font-size: 15px; }
  .faq-q { padding: 18px 20px; font-size: 15px; gap: 14px; }
  .faq.open .faq-a { padding: 0 20px 20px; }
  .faq-a { padding: 0 20px; font-size: 14px; }

  /* Guarantee */
  .guarantee-wrap { gap: 36px; }
  .shield-big { max-width: 280px; }

  /* Footer */
  footer { padding: 48px 0 32px; }
  .footer-inner { gap: 28px; }
  .footer-bottom { font-size: 11.5px; text-align: center; justify-content: center; }
}

/* Extra-narrow safety (≤380px) */
@media (max-width: 380px) {
  .brand-name { font-size: 18px; }
  .nav .btn { padding: 9px 13px; font-size: 13px; }
  .nav .btn svg { width: 12px; height: 12px; }
  h1.hero-title { font-size: 36px; }
  .phone { width: 230px; height: 500px; }
  .hero-visual, .phone-stage { height: 480px; min-height: 480px; }
}
