/* ============================================================
   TennisCY — styles.css
   ============================================================ */

/* ===== Variables ===== */
:root {
  --green:        #1B4D2E;
  --green-dark:   #0d2b18;
  --green-mid:    #236637;
  --green-subtle: #eef5f0;
  --yellow:       #C8E600;
  --yellow-hover: #b3cc00;
  --charcoal:     #1C1C1E;
  --text-2:       #6E6E73;
  --text-3:       #AEAEB2;
  --border:       #E5E5EA;
  --bg-gray:      #F5F5F7;
  --bg-subtle:    #FAFAFA;
  --white:        #FFFFFF;

  --nav-h:  68px;
  --max-w:  1100px;
  --r:      12px;
  --r-lg:   20px;
  --r-xl:   28px;

  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 12px 48px rgba(0,0,0,0.13);
  --t:         0.2s ease;

  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
ul     { list-style: none; }
button { font-family: inherit; cursor: pointer; }

/* ===== Skip link (accessibility) ===== */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 9999;
  background: var(--green);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 0 0 var(--r) var(--r);
  font-size: 0.875rem;
  font-weight: 600;
  transition: top 0.2s ease;
}
.skip-link:focus { top: 0; }

/* ===== Layout ===== */
.container   { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.section     { padding: 96px 0; }
.text-center { text-align: center; }

/* ===== Typography ===== */
h1 {
  font-family: var(--font-sans);
  font-size: clamp(2.1rem, 4.8vw, 3.6rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
}
h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 2.8vw, 2.45rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
}
h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
}
p  { color: var(--text-2); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.69rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-subtle);
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.eyebrow--light {
  color: var(--yellow);
  background: rgba(200,230,0,0.12);
  border: 1px solid rgba(200,230,0,0.22);
}

.section-title    { color: var(--charcoal); margin-bottom: 12px; }
.section-subtitle { font-size: 1.05rem; color: var(--text-2); max-width: 520px; margin: 0 auto; line-height: 1.75; }

/* ===== Navbar ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 100;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

/* Dark frosted glass — homepage */
.nav--transparent {
  background: rgba(4, 11, 6, 0.72);
  backdrop-filter: saturate(160%) blur(20px);
  -webkit-backdrop-filter: saturate(160%) blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.04);
}

/* White state — inner pages */
.nav--white {
  background: rgba(255,255,255,0.95);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.07);
}

/* Scrolled state — homepage */
.nav--transparent.scrolled {
  background: rgba(4,11,6,0.86);
  backdrop-filter: saturate(160%) blur(24px);
  -webkit-backdrop-filter: saturate(160%) blur(24px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.05);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

/* Logo */
.nav__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  transition: opacity var(--t);
  text-decoration: none;
}
.nav__logo:hover { opacity: 0.7; }
.nav--transparent .nav__logo { color: var(--white); }

.logo-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

/* Nav links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav__links a {
  padding: 7px 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  border-radius: 8px;
  transition: color var(--t), background var(--t);
  text-decoration: none;
}
.nav__links a:hover { color: var(--charcoal); background: var(--bg-gray); }
.nav__links a.active {
  color: var(--green);
  font-weight: 600;
  background: var(--green-subtle);
}

/* CTA button */
.nav__links a.nav__cta {
  padding: 8px 18px;
  background: var(--green);
  color: var(--white);
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.84rem;
  margin-left: 6px;
}
.nav__links a.nav__cta:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(27,77,46,0.3);
}

/* Transparent nav overrides */
.nav--transparent .nav__links a           { color: rgba(255,255,255,0.75); }
.nav--transparent .nav__links a:hover     { color: var(--white); background: rgba(255,255,255,0.1); }
.nav--transparent .nav__links a.nav__cta  { background: var(--yellow); color: var(--charcoal); }
.nav--transparent .nav__links a.nav__cta:hover { background: var(--yellow-hover); color: var(--charcoal); }

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav__hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: all 0.25s ease;
}
.nav--transparent .nav__hamburger span { background: var(--white); }
.nav__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.nav__mobile {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 8px 28px 28px;
  z-index: 99;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
.nav__mobile.open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav__mobile a {
  padding: 14px 0;
  font-size: 0.975rem;
  font-weight: 500;
  color: var(--charcoal);
  border-bottom: 1px solid var(--border);
  transition: color var(--t);
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__mobile a::after { content: '›'; color: var(--text-3); font-size: 1.1rem; }
.nav__mobile a:last-child { border-bottom: none; }
.nav__mobile a:hover { color: var(--green); }
.nav__mobile a.nav__mobile-cta {
  color: var(--green);
  font-weight: 600;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.925rem;
  border: none;
  transition: all var(--t);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary { background: var(--yellow); color: var(--charcoal); }
.btn-primary:hover {
  background: var(--yellow-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(200,230,0,0.45);
}

.btn-ghost { background: rgba(255,255,255,0.1); color: var(--white); border: 1.5px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }

.btn-green { background: var(--green); color: var(--white); }
.btn-green:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(27,77,46,0.3); }

.btn-outline { background: transparent; color: var(--green); border: 1.5px solid var(--green); }
.btn-outline:hover { background: var(--green); color: var(--white); transform: translateY(-2px); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(160deg, #040d07 0%, #091a0e 18%, #163d22 40%, #1B4D2E 62%, #112e1c 85%, #070d08 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
}
.hero__grid-bg {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 780 360' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='white' stroke-width='2'%3E%3Crect x='0' y='0' width='780' height='360'/%3E%3Cline x1='390' y1='0' x2='390' y2='360'/%3E%3Cline x1='0' y1='45' x2='780' y2='45'/%3E%3Cline x1='0' y1='315' x2='780' y2='315'/%3E%3Cline x1='180' y1='45' x2='180' y2='315'/%3E%3Cline x1='600' y1='45' x2='600' y2='315'/%3E%3Cline x1='180' y1='180' x2='600' y2='180'/%3E%3Cline x1='0' y1='180' x2='8' y2='180'/%3E%3Cline x1='772' y1='180' x2='780' y2='180'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
  background-position: center;
  opacity: 0.07;
  transform: rotate(-14deg) scale(1.6);
  transform-origin: center center;
  pointer-events: none;
  z-index: 1;
}
.hero__glow {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 75% 60% at 92% 2%, rgba(200,230,0,0.22) 0%, transparent 52%),
    radial-gradient(ellipse 40% 38% at 4% 95%, rgba(200,230,0,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 55% 50% at 48% 48%, rgba(6,22,10,0.55) 0%, transparent 72%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 72px 0 88px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,230,0,0.12);
  border: 1px solid rgba(200,230,0,0.28);
  color: var(--yellow);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 13px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero__badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--yellow);
  animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__badge    { animation: fadeUp 0.5s ease both; }
  .hero__title    { animation: fadeUp 0.5s 0.08s ease both; }
  .hero__subtitle { animation: fadeUp 0.5s 0.16s ease both; }
  .hero__cta      { animation: fadeUp 0.5s 0.24s ease both; }
  .hero__stats    { animation: fadeUp 0.5s 0.32s ease both; }
  .hero__phones   { animation: fadeUp 0.6s 0.18s ease both; }
  .hero__float    { animation: floatBob 3.6s ease-in-out infinite; }
}

.hero__title {
  font-family: var(--font-sans);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 20px;
}
.hero__title em { font-style: normal; color: var(--yellow); }

.hero__subtitle {
  font-size: 1.025rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 36px;
  max-width: 420px;
}

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; margin-bottom: 52px; }

.hero__stats {
  display: flex;
  gap: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.hero__stat-val { display: block; font-size: 1.4rem; font-weight: 700; color: var(--white); line-height: 1.2; letter-spacing: -0.03em; }
.hero__stat-lbl { font-size: 0.76rem; color: rgba(255,255,255,0.42); margin-top: 2px; }

/* Hero phones */
.hero__phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 32px 0 0;
  position: relative;
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.1s ease-out;
}

/* ===== iPhone Frame ===== */
.iphone {
  position: relative;
  display: inline-block;
  flex-shrink: 0;
}

.iphone__shell {
  background: linear-gradient(155deg, #2e2e30 0%, #1c1c1e 45%, #111113 100%);
  position: relative;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.1),
    0 0 0 1.5px rgba(0,0,0,0.85),
    0 28px 70px rgba(0,0,0,0.5),
    0 10px 24px rgba(0,0,0,0.28);
}

/* Left side buttons */
.iphone__shell::before {
  content: '';
  position: absolute;
  background: #252527;
  border-radius: 3px 0 0 3px;
  left: -3.5px;
}
/* Right side button */
.iphone__shell::after {
  content: '';
  position: absolute;
  background: #252527;
  border-radius: 0 3px 3px 0;
  right: -3.5px;
}

.iphone__screen {
  position: relative;
  overflow: hidden;
  background: #000;
}
.iphone__screen img { width: 100%; display: block; }

.iphone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(155deg, #2e2e30 0%, #1c1c1e 100%);
  z-index: 10;
}
.iphone__notch::after {
  content: '';
  position: absolute;
  background: #0a0a0a;
  border-radius: 50%;
  box-shadow: inset 0 0 0 2px #222;
}
.iphone__bar {
  position: absolute;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.22);
  border-radius: 3px;
  z-index: 10;
}

/* ── XS · 118px (feature cards) ── */
.iphone--xs { width: 118px; }
.iphone--xs .iphone__shell  { border-radius: 30px; padding: 9px; }
.iphone--xs .iphone__screen { border-radius: 22px; }
.iphone--xs .iphone__notch  { width: 37%; height: 19px; border-radius: 0 0 13px 13px; }
.iphone--xs .iphone__notch::after { top: 5px; width: 6px; height: 6px; right: 20%; }
.iphone--xs .iphone__bar    { width: 34%; height: 3px; bottom: 5px; }
.iphone--xs .iphone__shell::before { top: 50px; width: 2px; height: 15px; box-shadow: 0 26px 0 #252527, 0 52px 0 #252527; }
.iphone--xs .iphone__shell::after  { top: 66px; width: 2px; height: 34px; }

/* ── SM · 152px (showcase) ── */
.iphone--sm { width: 152px; }
.iphone--sm .iphone__shell  { border-radius: 40px; padding: 11px; }
.iphone--sm .iphone__screen { border-radius: 30px; }
.iphone--sm .iphone__notch  { width: 37%; height: 22px; border-radius: 0 0 16px 16px; }
.iphone--sm .iphone__notch::after { top: 6px; width: 7px; height: 7px; right: 20%; }
.iphone--sm .iphone__bar    { width: 33%; height: 3.5px; bottom: 6px; }
.iphone--sm .iphone__shell::before { top: 66px; width: 2.5px; height: 19px; box-shadow: 0 34px 0 #252527, 0 68px 0 #252527; }
.iphone--sm .iphone__shell::after  { top: 88px; width: 2.5px; height: 46px; }

/* ── MD · 186px (hero back) ── */
.iphone--md { width: 186px; }
.iphone--md .iphone__shell  { border-radius: 46px; padding: 12px; }
.iphone--md .iphone__screen { border-radius: 35px; }
.iphone--md .iphone__notch  { width: 36%; height: 24px; border-radius: 0 0 17px 17px; }
.iphone--md .iphone__notch::after { top: 7px; width: 8px; height: 8px; right: 20%; }
.iphone--md .iphone__bar    { width: 32%; height: 4px; }
.iphone--md .iphone__shell::before { top: 78px; width: 3px; height: 22px; box-shadow: 0 40px 0 #252527, 0 80px 0 #252527; }
.iphone--md .iphone__shell::after  { top: 104px; width: 3px; height: 54px; }

/* ── LG · 228px (hero main) ── */
.iphone--lg { width: 228px; }
.iphone--lg .iphone__shell  { border-radius: 54px; padding: 13px; }
.iphone--lg .iphone__screen { border-radius: 42px; }
.iphone--lg .iphone__notch  { width: 36%; height: 29px; border-radius: 0 0 21px 21px; }
.iphone--lg .iphone__notch::after { top: 9px; width: 10px; height: 10px; right: 20%; }
.iphone--lg .iphone__bar    { width: 32%; height: 4px; bottom: 8px; }
.iphone--lg .iphone__shell::before { top: 94px; width: 3.5px; height: 27px; box-shadow: 0 48px 0 #252527, 0 96px 0 #252527; }
.iphone--lg .iphone__shell::after  { top: 126px; width: 3.5px; height: 66px; }

/* Hero arrangement */
.iphone--hero-main { z-index: 2; position: relative; }
.iphone--hero-back {
  z-index: 1;
  position: relative;
  margin-left: -48px;
  transform: rotate(7deg) translateY(16px);
  opacity: 0.78;
}

/* Floating callout bubble */
.hero__float {
  position: absolute;
  top: 52px;
  right: -4px;
  background: var(--white);
  border-radius: 14px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22), 0 2px 8px rgba(0,0,0,0.1);
  z-index: 10;
  white-space: nowrap;
}
.hero__float-icon {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.hero__float-lbl { font-size: 0.68rem; color: var(--text-2); font-weight: 500; }
.hero__float-val { font-size: 0.88rem; font-weight: 700; color: var(--charcoal); margin-top: 1px; }

/* ===== Features ===== */
.features {
  background: linear-gradient(180deg, #f0f5f1 0%, #f7faf7 100%);
  position: relative;
}
.features::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,77,46,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
}

.feat-card {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(140deg, rgba(27,77,46,0.18) 0%, rgba(200,230,0,0.22) 50%, rgba(27,77,46,0.1) 100%) border-box;
  border: 1.5px solid transparent;
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, opacity 0.55s ease;
  will-change: transform;
}
.feat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 64px rgba(0,0,0,0.13);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(140deg, rgba(27,77,46,0.45) 0%, rgba(200,230,0,0.5) 50%, rgba(27,77,46,0.25) 100%) border-box;
}

.feat-card__body { padding: 28px 26px 20px; }

.feat-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: var(--green-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(27,77,46,0.1);
}
.feat-card h3 { color: var(--charcoal); margin-bottom: 8px; }
.feat-card p  { font-size: 0.9rem; line-height: 1.7; }

/* Phone preview in card bottom */
.feat-card__preview {
  background: linear-gradient(180deg, #0e2518 0%, #173c24 55%, #091610 100%);
  flex: 1;
  min-height: 250px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 22px;
  overflow: hidden;
  border-radius: 0 0 var(--r-xl) var(--r-xl);
  position: relative;
}
.feat-card__preview::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 64px;
  background: linear-gradient(transparent, #091610);
  z-index: 5;
  pointer-events: none;
}

/* ===== Feature Tabs ===== */
.feat-tabs { margin-top: 52px; text-align: left; }

.feat-tabs__nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.feat-tabs__tab {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-2);
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.feat-tabs__tab:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-subtle);
}
.feat-tabs__tab.active {
  background: var(--green);
  border-color: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(27,77,46,0.25);
}

.feat-tabs__panels {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.06);
}

.feat-tabs__panel {
  display: none;
}
.feat-tabs__panel.active {
  display: flex;
  align-items: stretch;
  animation: panelFadeIn 0.38s ease both;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

.feat-tabs__text {
  flex: 1;
  min-width: 0;
  padding: 52px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feat-tabs__text .feat-icon {
  margin-bottom: 20px;
}
.feat-tabs__text h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
  color: var(--charcoal);
  margin-bottom: 14px;
  letter-spacing: -0.025em;
}
.feat-tabs__text > p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 400px;
}

.feat-tabs__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.feat-tabs__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
  font-weight: 500;
}
.feat-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1.5px solid rgba(27,77,46,0.2);
}

.feat-tabs__phone {
  background: linear-gradient(160deg, #0e2518 0%, #1a4027 50%, #091610 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 300px;
  padding: 40px 40px 0;
  position: relative;
  overflow: hidden;
}
.feat-tabs__phone::before {
  content: '';
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,230,0,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* ===== How It Works ===== */
.how-it-works { background: var(--bg-gray); }

.steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 56px;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 0 28px;
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.step__num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  color: var(--yellow);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 8px;
  line-height: 1.3;
}

.step p {
  font-size: 0.92rem;
  color: var(--text-2);
  line-height: 1.7;
}

.step__connector {
  flex-shrink: 0;
  width: 64px;
  height: 2px;
  background: var(--green);
  opacity: 0.2;
  margin-top: 24px;
  align-self: flex-start;
}

.btn--how-cta { margin-top: 8px; }

@media (max-width: 680px) {
  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
  .step { max-width: 320px; padding: 0 16px; }
  .step__connector {
    width: 2px;
    height: 32px;
    margin: 12px auto;
  }
}

/* ===== Showcase ===== */
.showcase {
  background: #0c0c0d;
  padding: 88px 0 72px;
}
.showcase h2              { color: var(--white); }
.showcase .section-subtitle { color: rgba(255,255,255,0.48); }

.showcase__row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  margin-top: 56px;
  overflow-x: auto;
  padding: 16px 28px 28px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  position: relative;
}
.showcase__row::-webkit-scrollbar { display: none; }
.showcase__row::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  transform: translateX(-50%);
  width: 65%;
  height: 180px;
  background: radial-gradient(ellipse, rgba(200,230,0,0.09) 0%, transparent 68%);
  pointer-events: none;
}

.showcase__phone {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  cursor: default;
  transition: filter 0.3s ease;
}
.showcase__phone:hover {
  filter: brightness(1.1) drop-shadow(0 4px 20px rgba(200,230,0,0.15));
}

/* Wave stagger */
.showcase__phone:nth-child(1) .iphone { transform: translateY(0); }
.showcase__phone:nth-child(2) .iphone { transform: translateY(-24px); }
.showcase__phone:nth-child(3) .iphone { transform: translateY(-12px); }
.showcase__phone:nth-child(4) .iphone { transform: translateY(-32px); }
.showcase__phone:nth-child(5) .iphone { transform: translateY(-18px); }

.showcase__label {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.38);
}

/* ===== Coming Soon ===== */
.coming-soon {
  background: var(--green);
  padding: 96px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.coming-soon::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 55% at 50% -10%, rgba(200,230,0,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 80% 110%, rgba(200,230,0,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.coming-soon__inner { max-width: 540px; margin: 0 auto; position: relative; z-index: 1; }
.coming-soon h2  { color: var(--white); margin-bottom: 14px; }
.coming-soon .sub { color: rgba(255,255,255,0.65); font-size: 1.025rem; margin-bottom: 40px; line-height: 1.75; }

.store-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 24px; }
.store-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  background: rgba(255,255,255,0.07);
  border: 1.5px solid rgba(255,255,255,0.13);
  border-radius: 15px;
  color: rgba(255,255,255,0.5);
  min-width: 178px;
  cursor: not-allowed;
  transition: all var(--t);
  text-decoration: none;
}
.store-chip__icon { font-size: 24px; line-height: 1; flex-shrink: 0; }
.store-chip__text small { display: block; font-size: 0.66rem; text-transform: uppercase; letter-spacing: 0.06em; opacity: 0.65; }
.store-chip__text strong { display: block; font-size: 0.9rem; font-weight: 600; }
.store-chip--tf { cursor: pointer; color: var(--white); border-color: rgba(200,230,0,0.35); background: rgba(200,230,0,0.1); }
.store-chip--tf:hover { background: rgba(200,230,0,0.2); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.15); }
.coming-soon__note { font-size: 0.82rem; color: rgba(255,255,255,0.38); }
.coming-soon__note a { color: var(--yellow); text-decoration: underline; text-underline-offset: 3px; }

/* ===== Footer ===== */
footer { background: #111113; padding: 52px 0 28px; }

.footer__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer__logo { display: flex; align-items: center; gap: 9px; font-weight: 700; font-size: 1rem; color: var(--white); margin-bottom: 8px; }
.footer__tagline { font-size: 0.82rem; color: rgba(255,255,255,0.34); margin-bottom: 4px; }
.footer__email { margin-top: 12px; font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer__email a { color: var(--yellow); transition: opacity var(--t); text-underline-offset: 3px; }
.footer__email a:hover { opacity: 0.72; }
.footer__links { display: flex; gap: 24px; flex-wrap: wrap; align-items: center; }
.footer__links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--t);
  text-underline-offset: 3px;
}
.footer__links a:hover { color: var(--white); }
.footer__bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.footer__copy    { font-size: 0.76rem; color: rgba(255,255,255,0.24); }
.footer__country { font-size: 0.76rem; color: rgba(255,255,255,0.24); }

/* ===== Inner Page — Page Hero ===== */
.page-hero {
  background: linear-gradient(135deg, #f0f5f1 0%, var(--bg-gray) 100%);
  padding: 72px 0 44px;
  margin-top: var(--nav-h);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(27,77,46,0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--charcoal); margin-bottom: 10px; }
.page-hero p  { color: var(--text-2); font-size: 1rem; max-width: 520px; }

.page-hero__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 4px 16px rgba(27,77,46,0.12);
  font-size: 24px;
  margin-bottom: 16px;
  border: 1px solid var(--border);
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-3);
  margin-bottom: 20px;
}
.breadcrumb a {
  color: var(--green);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--t);
}
.breadcrumb a:hover { color: var(--green-dark); }
.breadcrumb__sep { color: var(--text-3); font-size: 0.9rem; }
.breadcrumb__current { color: var(--text-2); font-weight: 500; }

/* ===== Content ===== */
.content-wrap { padding: 60px 0 84px; }
.content-body { max-width: 680px; }
.last-updated {
  display: inline-block;
  background: var(--green-subtle);
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 36px;
}
.content-body h2 { font-size: 1.15rem; color: var(--charcoal); margin: 40px 0 11px; padding-bottom: 9px; border-bottom: 2px solid var(--green-subtle); }
.content-body h2:first-of-type { margin-top: 0; }
.content-body p   { line-height: 1.8; margin-bottom: 13px; }
.content-body ul  { list-style: disc; padding-left: 20px; margin-bottom: 14px; color: var(--text-2); }
.content-body ul li { margin-bottom: 7px; line-height: 1.75; }
.content-body a   { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.content-body a:hover { color: var(--green-dark); }
.highlight-box {
  background: var(--green-subtle);
  border-left: 3px solid var(--green);
  border-radius: 0 var(--r) var(--r) 0;
  padding: 14px 18px;
  margin-bottom: 28px;
}
.highlight-box p { color: var(--green-mid); margin: 0; }

/* ===== Support Page ===== */
.support-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 64px;
}
.support-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, opacity 0.55s ease;
  will-change: transform;
  display: flex;
  flex-direction: column;
}
.support-card:hover {
  box-shadow: 0 12px 40px rgba(27,77,46,0.1);
  border-color: rgba(27,77,46,0.2);
  transform: translateY(-3px);
}
.support-card__icon {
  font-size: 1.75rem;
  margin-bottom: 14px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px; height: 52px;
  background: var(--green-subtle);
  border-radius: 14px;
}
.support-card h3    { color: var(--charcoal); margin-bottom: 8px; }
.support-card p     { margin-bottom: 20px; font-size: 0.9rem; line-height: 1.7; flex: 1; }

/* FAQ */
.faq-section    { margin-bottom: 64px; }
.faq-list       { border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--border); }
.faq-item       { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-question {
  width: 100%; background: var(--white); border: none;
  padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between;
  text-align: left;
  font-size: 0.95rem; font-weight: 600; color: var(--charcoal);
  font-family: inherit; gap: 14px;
  transition: color var(--t), background var(--t);
}
.faq-question:hover { color: var(--green); background: var(--bg-subtle); }
.faq-chevron {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--bg-gray);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background var(--t), transform var(--t);
  color: var(--text-2); font-size: 13px; line-height: 1;
}
.faq-item.open .faq-chevron { background: var(--green); color: var(--white); transform: rotate(180deg); }
.faq-item.open .faq-question { color: var(--green); background: var(--bg-subtle); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--bg-subtle);
}
.faq-answer__inner { padding: 4px 22px 20px; }
.faq-answer p { font-size: 0.9rem; line-height: 1.8; color: var(--text-2); }
.faq-answer a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }

/* Contact box */
.contact-box {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-mid) 100%);
  border-radius: var(--r-xl);
  padding: 44px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.contact-box::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% -10%, rgba(200,230,0,0.15) 0%, transparent 60%);
  pointer-events: none;
}
.contact-box h3 { color: var(--white); margin-bottom: 9px; position: relative; z-index: 1; }
.contact-box p  { color: rgba(255,255,255,0.68); margin-bottom: 22px; position: relative; z-index: 1; }
.contact-box .email-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 1rem; font-weight: 600; color: var(--yellow);
  text-decoration: none;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(200,230,0,0.3);
  padding: 11px 22px;
  border-radius: 100px;
  transition: all var(--t);
  position: relative; z-index: 1;
}
.contact-box .email-link:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.contact-box .email-link svg path,
.contact-box .email-link svg rect { stroke: var(--yellow); }

/* ===== Anchor scroll offset ===== */
#features, #how-it-works, #showcase, #download {
  scroll-margin-top: calc(var(--nav-h) + 12px);
}

/* ===== Focus styles ===== */
:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Page hero title accent ===== */
.page-hero h1::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--green), rgba(27,77,46,0.3));
  border-radius: 2px;
  margin-top: 14px;
}

/* ===== Scroll reveal ===== */
@media (prefers-reduced-motion: no-preference) {
  .js-ready .feat-card,
  .js-ready .support-card,
  .js-ready .step { opacity: 0; transform: translateY(18px); }

  .js-ready .feat-card.revealed,
  .js-ready .support-card.revealed,
  .js-ready .step.revealed { opacity: 1; transform: translateY(0); }

  .js-ready .feat-card:not(.revealed):nth-child(2)    { transition-delay: 0.10s; }
  .js-ready .feat-card:not(.revealed):nth-child(3)    { transition-delay: 0.20s; }
  .js-ready .support-card:not(.revealed):nth-child(2) { transition-delay: 0.08s; }
  .js-ready .support-card:not(.revealed):nth-child(3) { transition-delay: 0.16s; }
  .js-ready .support-card:not(.revealed):nth-child(4) { transition-delay: 0.24s; }
  .js-ready .step:not(.revealed):nth-child(1) { transition-delay: 0s; }
  .js-ready .step:not(.revealed):nth-child(3) { transition-delay: 0.12s; }
  .js-ready .step:not(.revealed):nth-child(5) { transition-delay: 0.24s; }
}

/* ===== Responsive ===== */
@media (max-width: 920px) {
  .features__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav__links     { display: none; }
  .nav__hamburger { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 40px 0 52px;
    gap: 36px;
  }
  .hero__subtitle { margin: 0 auto 36px; max-width: 100%; }
  .hero__cta      { align-items: center; margin-bottom: 36px; }
  .hero__stats    { justify-content: center; gap: 20px; }
  .iphone--hero-back, .hero__float { display: none; }

  /* Email form full-width in hero */
  .hero__cta .email-capture { max-width: 100%; }

  .features__grid  { grid-template-columns: 1fr; gap: 14px; }
  .feat-tabs__panel.active { flex-direction: column; }
  .feat-tabs__phone { width: 100%; padding: 32px 32px 0; }
  .feat-tabs__text  { padding: 32px 28px; }

  /* Coming soon — reduce from 96px */
  .coming-soon { padding: 64px 0; }

  /* Showcase */
  .showcase { padding: 64px 0 48px; }

  .support-cards   { grid-template-columns: 1fr; }
  .footer__top     { flex-direction: column; }
  .footer__links   { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer__bottom  { flex-direction: column; align-items: flex-start; gap: 6px; }

  .page-hero { padding: 56px 0 36px; }
  .contact-box { padding: 32px 24px; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.9rem; }
  .section { padding: 52px 0; }
  .hero__cta   { flex-direction: column; align-items: center; }
  .hero__stats { flex-direction: column; gap: 14px; align-items: center; }
  .iphone--lg  { width: 192px; }
  .container   { padding: 0 20px; }

  /* Email capture full width */
  .email-capture { max-width: 100%; }

  /* Feature tabs — horizontally scrollable nav, no wrapping */
  .feat-tabs { margin-top: 32px; }
  .feat-tabs__nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 4px 0 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .feat-tabs__nav::-webkit-scrollbar { display: none; }
  .feat-tabs__tab { flex-shrink: 0; padding: 8px 14px; font-size: 0.81rem; }
  .feat-tabs__text  { padding: 24px 20px; }
  .feat-tabs__phone { padding: 20px 20px 0; }

  /* How it works */
  .btn--how-cta { width: 100%; max-width: 300px; }
  .steps { margin-top: 40px; margin-bottom: 36px; }
  .step  { padding: 0 8px; }

  /* Showcase */
  .showcase { padding: 52px 0 40px; }
  .showcase__row { gap: 10px; padding: 12px 20px 20px; }

  /* Coming soon */
  .coming-soon { padding: 52px 0; }
  .coming-soon .email-capture { max-width: 100%; }

  /* Footer */
  .footer__top { gap: 20px; }
}

/* ===== Mobile sticky CTA bar ===== */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom));
  background: rgba(4, 11, 6, 0.95);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,0.07);
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}
.mobile-cta-bar.visible { transform: translateY(0); }

.mobile-cta-bar__btn {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--yellow);
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border-radius: 100px;
  letter-spacing: -0.01em;
  transition: background var(--t), transform var(--t);
}
.mobile-cta-bar__btn:active { transform: scale(0.97); background: var(--yellow-hover); }

@media (max-width: 768px) {
  .mobile-cta-bar { display: block; }
}

/* ===== Email capture / waitlist form ===== */
.email-capture { width: 100%; max-width: 480px; }

.email-capture__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-capture input[type="email"] {
  width: 100%;
  padding: 13px 26px;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.28);
  border-radius: 100px;
  outline: none;
  color: var(--white);
  font-size: 0.925rem;
  font-family: inherit;
  text-align: center;
  transition: border-color var(--t), background var(--t);
}
.email-capture input[type="email"]:focus {
  border-color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.13);
}
.email-capture input[type="email"]::placeholder { color: rgba(255,255,255,0.45); }

.email-capture .btn { width: 100%; }

.email-capture__note {
  font-size: 0.77rem;
  color: var(--white);
  margin-top: 10px;
  text-align: center;
}

.email-capture__success {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  padding: 14px 0 6px;
  text-align: center;
}
.email-capture__success span { margin-right: 6px; }

.email-capture__error {
  font-size: 0.8rem;
  color: #ff7070;
  margin-top: 7px;
  text-align: center;
}

/* ===== Cookie consent banner ===== */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 300;
  background: var(--charcoal);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 18px 28px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.visible { transform: translateY(0); }

.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  flex: 1;
  min-width: 240px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.6;
  margin: 0;
}
.cookie-banner__link {
  color: var(--yellow);
  text-decoration: underline;
  text-underline-offset: 2px;
  margin-left: 5px;
  white-space: nowrap;
}

.cookie-banner__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-banner__decline,
.cookie-banner__accept {
  padding: 9px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: all var(--t);
}
.cookie-banner__decline {
  background: transparent;
  color: rgba(255,255,255,0.55);
  border: 1px solid rgba(255,255,255,0.18);
}
.cookie-banner__decline:hover {
  background: rgba(255,255,255,0.07);
  color: var(--white);
  border-color: rgba(255,255,255,0.32);
}
.cookie-banner__accept {
  background: var(--yellow);
  color: var(--charcoal);
}
.cookie-banner__accept:hover {
  background: var(--yellow-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(200,230,0,0.28);
}

@media (max-width: 600px) {
  .cookie-banner { padding: 16px; }
  .cookie-banner__inner { gap: 14px; }
  .cookie-banner__text  { font-size: 0.82rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__decline,
  .cookie-banner__accept  { flex: 1; text-align: center; }
}
