/* index.css — merged with redesigned header/nav */

/* ============ Google Font ============ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============ Monochrome Theme Tokens ============ */
:root {
  --color-ink: #111111;
  --color-ink-soft: #3d3d3d;
  --color-muted: #6a6a6a;
  --color-bg: #ffffff;
  --color-surface: rgba(255, 255, 255, 0.9);
  --color-surface-strong: rgba(255, 255, 255, 0.98);
  --color-accent: #000000;
  --color-accent-strong: #000000;
  --color-accent-soft: #eaeaea;
  --color-border: rgba(17, 17, 17, 0.12);
  --color-border-strong: rgba(17, 17, 17, 0.2);
  --shadow-soft: 0 24px 48px rgba(0, 0, 0, 0.12);
  --shadow-strong: 0 36px 80px rgba(0, 0, 0, 0.18);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;

  /* header tokens */
  --header-h: 72px;
}

/* ============ Reset ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background:
    radial-gradient(120% 120% at 15% 20%, #f2f2f2 0%, rgba(242, 242, 242, 0) 48%),
    radial-gradient(90% 90% at 80% 0%, #f7f7f7 0%, rgba(247, 247, 247, 0) 52%),
    var(--color-bg);
  color: var(--color-ink);
  min-height: 100vh;
}

/* ============ A11y Helper ============ */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* =========================================================
   HEADER (Redesigned)
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease, transform .3s ease;
}
.site-header::after {
  content: ""; display: block; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,0,0,0.12), transparent);
}
.site-header--scrolled {
  background: var(--color-surface-strong);
  border-color: var(--color-border-strong);
  box-shadow: 0 24px 60px rgba(0,0,0,0.16);
  transform: translateY(-1px);
}
.site-header__inner {
  display: grid; grid-template-columns: auto 1fr auto;
  align-items: center; gap: 20px;
  max-width: 1240px; margin: 0 auto; padding: 12px 5%; min-height: var(--header-h); position: relative;
}
.brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; color: var(--color-ink); font-weight: 600; font-size: 18px; letter-spacing: 0.01em; }
.brand img { width: 40px; height: 40px; object-fit: contain; }
.brand__text { font-weight: 600; letter-spacing: .01em; font-size: 18px; }

/* ===== Desktop Nav ===== */
.site-nav { display: flex; align-items: center; }
.site-nav--desktop { justify-content: center; }
.site-nav__list { display: flex; list-style: none; gap: 8px; margin: 0; padding: 0; }
.site-nav__list li { display: inline-flex; }

/* pill links + underline animation */
.nav-link{
  position: relative; display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 14px; border-radius: 12px; text-decoration: none;
  color: var(--color-muted); font-weight: 500; font-size: 15px;
  transition: color .2s ease, background .2s ease;
}
.nav-link::after{
  content:""; position:absolute; left:12px; right:12px; bottom:6px; height:2px;
  border-radius: 2px; transform: scaleX(0); transform-origin: 50% 50%;
  background: #000; transition: transform .22s ease;
}
.nav-link:hover, .nav-link:focus{ color: var(--color-ink); background: rgba(0,0,0,.04); }
.nav-link.is-active{ color:#000; background: rgba(0,0,0,.06); }
.nav-link.is-active::after{ transform: scaleX(1); }

/* ===== Header Actions ===== */
.site-header__actions { display: flex; align-items: center; gap: 10px; }
.nav-cta {
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.32);
  background: linear-gradient(135deg, #000000 0%, #000000 100%);
  color: #ffffff !important; box-shadow: 0 18px 38px rgba(0,0,0,0.25);
  font-weight: 600; font-size: 14px; text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.nav-cta:hover, .nav-cta:focus {
  background: linear-gradient(135deg, #111111 0%, #111111 100%);
  color: #ffffff; transform: translateY(-1px);
  box-shadow: 0 22px 50px rgba(0,0,0,0.28);
}

/* ===== Mobile Toggle ===== */
.nav-toggle {
  display: none; align-items: center; justify-content: center; width: 44px; height: 44px;
  border: 1px solid rgba(17,17,17,0.16); border-radius: 12px; background: rgba(255,255,255,0.7);
  cursor: pointer; transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.nav-toggle:focus-visible { outline: 3px solid rgba(0,0,0,0.35); outline-offset: 2px; }
.nav-toggle:hover { border-color: rgba(17,17,17,0.3); box-shadow: 0 8px 18px rgba(0,0,0,0.12); }
.nav-toggle__icon { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; }
.nav-toggle__bar { display: block; width: 22px; height: 2px; border-radius: 999px; background: #111111; transition: transform 0.25s ease, opacity 0.25s ease; transform-origin: center; }
.nav-toggle--active .nav-toggle__bar:nth-child(1){ transform: translateY(8px) rotate(45deg); }
.nav-toggle--active .nav-toggle__bar:nth-child(2){ opacity: 0; }
.nav-toggle--active .nav-toggle__bar:nth-child(3){ transform: translateY(-8px) rotate(-45deg); }

/* ===== Mobile Drawer (new) ===== */
.mobile-drawer[hidden]{ display:none; }
.mobile-drawer{ position:fixed; inset:0; z-index:999; }
.mobile-drawer__backdrop{
  position:absolute; inset:0; background:rgba(0,0,0,.36); opacity:0; transition:opacity .2s ease;
}
.mobile-drawer__panel{
  position:absolute; inset:0; background:rgba(255,255,255,.96); backdrop-filter: blur(14px);
  transform: translateY(-6%); opacity: 0; transition: transform .25s ease, opacity .25s ease;
  display:flex; align-items:center; justify-content:center; padding:24px;
}
.mobile-drawer.is-open .mobile-drawer__backdrop{ opacity:1; }
.mobile-drawer.is-open .mobile-drawer__panel{ transform:none; opacity:1; }

.mobile-drawer__list{ list-style:none; display:flex; flex-direction:column; gap:14px; width:min(520px,90vw); margin:0; padding:0; }
.mobile-link{
  display:block; width:100%; text-align:center; padding:14px 18px; border-radius:14px;
  text-decoration:none; font-weight:600; color:#111; background:#f7f7f7; border:1px solid var(--color-border);
}
.mobile-link:active{ transform: translateY(1px); }
.mobile-cta{
  display:block; text-align:center; padding:14px 22px; border-radius:999px; text-decoration:none; font-weight:700;
  background:#000; color:#fff; border:1px solid rgba(0,0,0,.28); margin-top:8px;
}

/* =========================================================
   HERO + REST (unchanged from your original)
   ========================================================= */
.hero { position: relative; overflow: hidden; padding: 180px 5% 220px; display: flex; align-items: center; justify-content: center; z-index: 0; }
.hero__background {
  position: absolute; inset: 0;
  background:
    radial-gradient(60% 80% at 15% 20%, rgba(0,0,0,0.08) 0%, rgba(0,0,0,0) 70%),
    radial-gradient(55% 75% at 85% 25%, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0) 70%),
    linear-gradient(135deg, rgba(255,255,255,0.96), rgba(245,245,245,0.86));
  transform: scale(1.05); z-index: 0; pointer-events: none;
}
.hero__inner {
  position: relative; z-index: 1; width: 100%; max-width: 1240px;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); align-items: center; gap: 56px;
}
.hero-content {
  background: rgba(255,255,255,0.76); backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); border: 1px solid var(--color-border);
  padding: 48px 48px 44px; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; gap: 24px;
}
.hero-kicker { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: #000; background: rgba(0,0,0,0.08); border-radius: 999px; padding: 8px 16px; width: fit-content; }
.hero-content h1 { font-size: clamp(36px, 5vw, 48px); line-height: 1.1; font-weight: 600; color: var(--color-ink); margin: 0; }
.hero-content p { font-size: 17px; line-height: 1.7; color: var(--color-muted); margin: 0; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }

/* Stats */
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); gap: 18px; margin: 0; }
.hero-stat { background: rgba(255,255,255,0.82); border: 1px solid rgba(17,17,17,0.08); border-radius: var(--radius-sm); padding: 16px 18px 18px; box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.hero-stat dt { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(17,17,17,0.55); margin-bottom: 8px; }
.hero-stat dd { font-size: 22px; font-weight: 600; color: var(--color-ink); margin: 0; }
.hero-stat dd span { font-size: 16px; color: #000000; margin-left: 4px; }

/* Visuals */
.hero-visual { position: relative; display: grid; gap: 28px; justify-items: end; align-content: center; min-height: 420px; }
.hero-visual__orb { position: absolute; border-radius: 50%; filter: blur(0); z-index: 0; }
.hero-visual__orb--primary { width: 220px; height: 220px; top: -40px; right: 60px; background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.12), rgba(0,0,0,0)); animation: glowOrbit 18s ease-in-out infinite; }
.hero-visual__orb--secondary { width: 280px; height: 280px; bottom: -60px; left: 10%; background: radial-gradient(circle at 70% 30%, rgba(0,0,0,0.1), rgba(0,0,0,0)); animation: glowOrbit 22s ease-in-out infinite reverse; }
.hero-card {
  position: relative; z-index: 1; width: clamp(260px, 35vw, 320px); padding: 28px; border-radius: var(--radius-md);
  backdrop-filter: blur(18px); box-shadow: var(--shadow-soft); display: flex; flex-direction: column; gap: 16px; color: var(--color-ink);
  --float-offset-x: 0px; --float-offset-y: 0px; transform: translate3d(var(--float-offset-x), var(--float-offset-y), 0);
}
.hero-card--primary { background: rgba(255,255,255,0.86); border: 1px solid var(--color-border); align-self: start; --float-offset-x: 32px; animation: floatUp 12s ease-in-out infinite; }
.hero-card--secondary { background: rgba(17,17,17,0.9); color: #fff; border: 1px solid rgba(255,255,255,0.14); align-self: end; box-shadow: 0 36px 70px rgba(0,0,0,0.45); --float-offset-x: -12px; --float-offset-y: -24px; animation: floatUp 14s ease-in-out infinite reverse; }
@keyframes floatUp { 0%,100%{ transform: translate3d(var(--float-offset-x), var(--float-offset-y), 0);} 50%{ transform: translate3d(var(--float-offset-x), calc(var(--float-offset-y) - 14px), 0);} }
@keyframes glowOrbit { 0%,100%{ transform: scale(1) translate3d(0,0,0); opacity: 1;} 50%{ transform: scale(1.08) translate3d(8px,-12px,0); opacity: 0.78;} }
.hero-card__label { font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; color: rgba(17,17,17,0.72); }
.hero-card--secondary .hero-card__label { color: rgba(255,255,255,0.72); }
.hero-card h3 { font-size: 20px; margin: 0; color: inherit; }
.hero-card p { font-size: 15px; line-height: 1.6; margin: 0; color: rgba(17,17,17,0.65); }
.hero-card--secondary p { color: rgba(255,255,255,0.85); }
.hero-card ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.hero-card ul li { position: relative; padding-left: 18px; font-size: 14px; color: rgba(255,255,255,0.8); }
.hero-card ul li::before { content: ''; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: #ffffff; box-shadow: 0 0 10px rgba(255,255,255,0.6); }
.hero-card__avatars { display: flex; align-items: center; gap: 8px; }
.hero-avatar { width: 34px; height: 34px; border-radius: 50%; background: linear-gradient(135deg, #f5f5f5, #e6e6e6); border: 2px solid #fff; box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* Buttons */
.action-btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 30px; border-radius: 999px; font-size: 16px; font-weight: 600; text-decoration: none; transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease; }
.action-btn.primary { background: #000000; color: #ffffff; box-shadow: 0 24px 48px rgba(0,0,0,0.28); }
.action-btn.secondary { background: rgba(255,255,255,0.9); color: var(--color-ink); border: 1px solid var(--color-border); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.action-btn:hover { transform: translateY(-2px); box-shadow: 0 32px 60px rgba(0,0,0,0.28); }

/* Sections */
.info-section { position: relative; padding: 96px 5%; }
.download-section { background: linear-gradient(140deg, rgba(0,0,0,0.06) 0%, rgba(255,255,255,0.95) 70%); }
.about-section { background: linear-gradient(130deg, rgba(250,250,250,0.9) 0%, rgba(242,242,242,0.8) 100%); }
.features-section { background: rgba(255,255,255,0.9); backdrop-filter: blur(8px); }

.screens-section {
  background: radial-gradient(120% 140% at 10% 20%, rgba(0,0,0,0.06) 0%, rgba(0,0,0,0) 45%), linear-gradient(160deg, rgba(255,255,255,0.96) 0%, rgba(244,244,244,0.88) 100%);
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}
.screen-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  text-align: center;
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 28px 38px;
  box-shadow: 0 28px 56px rgba(0,0,0,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.screen-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 80px rgba(0,0,0,0.18);
}
.screen-card h3 {
  font-size: 19px;
  font-weight: 600;
  color: var(--color-ink);
  margin: 0;
}
.screen-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-muted);
  margin: 0;
}
.phone-frame {
  position: relative;
  width: min(278px, 74vw);
  aspect-ratio: 10 / 19;
  padding: 18px;
  border-radius: 46px;
  background: linear-gradient(150deg, #111216 0%, #22232a 45%, #0c0c0f 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 32px 70px rgba(0,0,0,0.24), inset 0 1px 0 rgba(255,255,255,0.16), inset 0 -1px 0 rgba(0,0,0,0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
  --notch-color: rgba(10,10,14,0.94);
  --notch-highlight: rgba(255,255,255,0.1);
}
.phone-frame--light {
  background: linear-gradient(145deg, #f5f6f8 0%, #cfd4db 48%, #f1f2f5 100%);
  border: 1px solid rgba(255,255,255,0.7);
  box-shadow: 0 30px 64px rgba(0,0,0,0.16), inset 0 1px 0 rgba(255,255,255,0.7), inset 0 -1px 0 rgba(0,0,0,0.18);
  --notch-color: rgba(12,12,18,0.9);
  --notch-highlight: rgba(255,255,255,0.23);
}
.phone-frame--dark {
  background: linear-gradient(140deg, #0a0b0d 0%, #191a1f 55%, #040406 100%);
  border: 1px solid rgba(0,0,0,0.8);
  box-shadow: 0 34px 90px rgba(0,0,0,0.32), inset 0 1px 0 rgba(255,255,255,0.08), inset 0 -1px 0 rgba(0,0,0,0.6);
  --notch-color: rgba(3,3,5,0.96);
  --notch-highlight: rgba(255,255,255,0.08);
}
.phone-frame--light .phone-button {
  background: linear-gradient(180deg, rgba(220,220,225,0.7) 0%, rgba(150,150,160,0.85) 100%);
}
.phone-frame--dark .phone-home {
  background: linear-gradient(90deg, rgba(255,255,255,0.35) 0%, rgba(255,255,255,0.12) 100%);
}
.phone-screen {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: #050506;
  padding: 6px;
  overflow: hidden;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,0.05), inset 0 10px 25px rgba(0,0,0,0.6), 0 14px 28px rgba(0,0,0,0.25);
  display: flex;
}
.phone-screen::after {
  content: "";
  position: absolute;
  inset: -20% -25%;
  background: radial-gradient(ellipse at 30% 10%, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0) 55%), radial-gradient(ellipse at 70% 80%, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 58%);
  pointer-events: none;
  mix-blend-mode: screen;
}
.phone-screen img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
}
.phone-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
  max-width: 120px;
  height: 18px;
  background: var(--notch-color);
  border-radius: 0 0 16px 16px;
  box-shadow: inset 0 1px 0 var(--notch-highlight);
  pointer-events: none;
}
.phone-notch::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 36%;
  max-width: 60px;
  height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
}
.phone-notch::after {
  content: "";
  position: absolute;
  top: 4px;
  right: 22%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(30,130,255,0.6);
  box-shadow: 0 0 8px rgba(30,130,255,0.6);
  opacity: 0.9;
}
.phone-home {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255,255,255,0.55) 0%, rgba(255,255,255,0.2) 100%);
  opacity: 0.85;
  pointer-events: none;
}
.phone-button {
  position: absolute;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.8) 100%);
  pointer-events: none;
}
.phone-button--left {
  left: -3px;
  top: 28%;
  height: 58px;
}
.phone-button--left::after {
  content: "";
  position: absolute;
  left: 0;
  top: 78px;
  width: 100%;
  height: 42px;
  border-radius: inherit;
  background: inherit;
}
.phone-button--right {
  right: -3px;
  top: 34%;
  height: 90px;
  background: linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.85) 100%);
}

.pricing-section {
  background: linear-gradient(140deg, rgba(0,0,0,0.04) 0%, rgba(255,255,255,0.95) 65%);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  max-width: min(1180px, 94vw);
  margin: 0 auto 40px;
}
.pricing-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 42px 36px;
  box-shadow: 0 26px 58px rgba(0,0,0,0.14);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 82px rgba(0,0,0,0.18);
}
.pricing-card--highlight {
  background: linear-gradient(155deg, rgba(0,0,0,0.92) 0%, rgba(30,30,30,0.96) 100%);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 42px 90px rgba(0,0,0,0.28);
}
.pricing-card--highlight .pricing-label,
.pricing-card--highlight .pricing-caption,
.pricing-card--highlight .pricing-features li {
  color: rgba(255,255,255,0.75);
}
.pricing-card--highlight .pricing-cost {
  color: #ffffff;
}
.pricing-card--highlight .pricing-cta {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 18px 40px rgba(255,255,255,0.16);
}
.pricing-card--highlight .pricing-cta:hover {
  box-shadow: 0 26px 70px rgba(255,255,255,0.2);
}
.pricing-card__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pricing-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}
.pricing-cost {
  font-size: clamp(34px, 5vw, 46px);
  font-weight: 600;
  color: var(--color-ink);
  letter-spacing: -0.02em;
  margin: 0;
}
.pricing-cost__currency {
  font-size: 24px;
  vertical-align: top;
  margin-right: 2px;
}
.pricing-cost__minor {
  font-size: 20px;
}
.pricing-caption {
  font-size: 15px;
  color: var(--color-muted);
  line-height: 1.6;
  margin: 0;
}
.pricing-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pricing-features li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--color-ink-soft);
}
.pricing-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
  box-shadow: 0 0 10px rgba(0,0,0,0.35);
}
.pricing-card--highlight .pricing-features li::before {
  background: #ffffff;
  box-shadow: 0 0 12px rgba(255,255,255,0.4);
}
.pricing-card--free {
  background: rgba(255,255,255,0.88);
  border: 1px dashed rgba(0,0,0,0.18);
  box-shadow: 0 18px 40px rgba(0,0,0,0.1);
}
.pricing-card--free .pricing-label {
  color: var(--color-ink);
}
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.18);
  background: #000000;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.pricing-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.24);
  opacity: 0.9;
}
.pricing-badge {
  position: absolute;
  top: 22px;
  right: 26px;
  background: linear-gradient(135deg, #ffb347 0%, #ff7b2f 100%);
  color: #000000;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pricing-footnote {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  font-size: 14px;
  color: var(--color-muted);
}
.pricing-footnote a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}
.pricing-footnote a:hover {
  text-decoration: none;
}

/* Feature Cards/Grid */
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto 32px; }
.feature-card { background: rgba(255,255,255,0.9); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 28px; box-shadow: 0 24px 56px rgba(0,0,0,0.12); transition: transform 0.25s ease, box-shadow 0.25s ease; }
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 36px 72px rgba(0,0,0,0.18); }
.feature-card h3 { font-size: 20px; margin-bottom: 14px; color: var(--color-ink); }
.feature-card p { font-size: 15px; line-height: 1.6; color: var(--color-muted); }

.feature-footnote { max-width: 720px; margin: 0 auto; text-align: center; font-size: 15px; color: var(--color-ink-soft); }

.feature-metrics { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; max-width: 900px; margin: 0 auto 48px; }
.feature-metric { background: rgba(255,255,255,0.85); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 32px 24px; text-align: center; box-shadow: 0 20px 52px rgba(0,0,0,0.1); }
.metric-value { display: block; font-size: 40px; font-weight: 600; color: #000000; letter-spacing: -0.02em; margin-bottom: 10px; }
.metric-caption { font-size: 14px; line-height: 1.6; color: var(--color-muted); }

.feature-layout { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; max-width: 1080px; margin: 0 auto; }
.feature-highlight { background: rgba(255,255,255,0.9); border-radius: var(--radius-md); border: 1px solid var(--color-border); padding: 32px 28px; box-shadow: 0 26px 60px rgba(0,0,0,0.14); display: flex; flex-direction: column; gap: 18px; }
.feature-highlight h3 { font-size: 20px; margin: 0; color: var(--color-ink); }
.feature-highlight p { font-size: 15px; line-height: 1.6; color: var(--color-muted); }
.feature-highlight ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.feature-highlight li { font-size: 14px; line-height: 1.6; color: var(--color-ink-soft); position: relative; padding-left: 18px; }
.feature-highlight li::before { content: ''; position: absolute; left: 0; top: 9px; width: 6px; height: 6px; border-radius: 50%; background: #000000; box-shadow: 0 0 8px rgba(0,0,0,0.25); }

/* Section header */
.section-header { max-width: 640px; margin: 0 auto 40px; text-align: center; display: flex; flex-direction: column; gap: 18px; }
.section-header h2 { font-size: clamp(30px, 4vw, 40px); font-weight: 600; color: var(--color-ink); margin: 0; letter-spacing: -0.01em; }
.section-header p { font-size: 16px; line-height: 1.6; color: var(--color-muted); }

/* Download info cards */
.info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.info-card { background: rgba(255,255,255,0.9); border-radius: var(--radius-sm); padding: 28px; box-shadow: 0 24px 56px rgba(0,0,0,0.1); border: 1px solid var(--color-border); backdrop-filter: blur(6px); }
.info-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--color-ink); }
.info-card p { font-size: 15px; line-height: 1.6; color: var(--color-muted); }

/* About values */
.content-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.about-highlights { margin-top: 32px; }
.about-values { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; text-align: left; }
.about-values__title { font-size: 22px; font-weight: 600; margin-bottom: 16px; }
.about-values__list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.about-values__list li { background: rgba(255,255,255,0.9); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 18px 22px; line-height: 1.6; }
.about-values__list strong { color: #111111; }

/* Journey */
.journey-section { background: rgba(255,255,255,0.96); }
.journey-timeline { position: relative; max-width: 960px; margin: 0 auto; padding-left: 28px; border-left: 2px solid rgba(0,0,0,0.14); display: flex; flex-direction: column; gap: 32px; }
.timeline-item { display: flex; gap: 24px; align-items: flex-start; }
.timeline-step {
  display: inline-flex; align-items: center; justify-content: center; width: 42px; height: 42px;
  border-radius: 12px; background: #000000; color: #ffffff; font-weight: 600; font-size: 16px; flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(0,0,0,0.3);
}
.timeline-content h3 { font-size: 20px; margin-bottom: 8px; color: var(--color-ink); }
.timeline-content p { font-size: 15px; line-height: 1.6; color: var(--color-muted); }

/* Testimonials */
.testimonial-section { background: linear-gradient(135deg, #0f0f0f, #000000 70%); color: #f0f0f0; }
.testimonial-section .section-header h2, .testimonial-section .section-header p { color: #ffffff; }
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.testimonial-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md);
  padding: 32px; backdrop-filter: blur(14px); box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}
.testimonial-card .quote { font-size: 18px; line-height: 1.75; margin-bottom: 18px; color: rgba(255,255,255,0.9); }
.testimonial-card h3 { font-size: 16px; font-weight: 600; color: #ffffff; }
.testimonial-card span { font-size: 14px; color: rgba(240,240,240,0.78); }

.resale-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.resale-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: left;
  color: #f5f5f5;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.resale-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.resale-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255,255,255,0.78);
}

.review-section {
  background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(246,246,246,0.86) 100%);
}
.review-carousel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-md);
  padding: 32px 30px;
  box-shadow: 0 28px 60px rgba(0,0,0,0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(0,0,0,0.18);
}
.review-card__header {
  display: flex;
  align-items: center;
  gap: 18px;
}
.reviewer-avatar {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, #dcdcdc, #b8b8b8);
  box-shadow: 0 16px 34px rgba(0,0,0,0.18);
  position: relative;
}
.reviewer-avatar::after {
  content: "";
  position: absolute;
  inset: 6px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255,255,255,0.82), rgba(230,230,230,0.7));
}
.reviewer-avatar--1 { background: linear-gradient(135deg, #ffecd2, #fcb69f); }
.reviewer-avatar--2 { background: linear-gradient(135deg, #d4fc79, #96e6a1); }
.reviewer-avatar--3 { background: linear-gradient(135deg, #84fab0, #8fd3f4); }
.reviewer-meta h3 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-ink);
}
.reviewer-meta span {
  font-size: 13px;
  color: var(--color-muted);
}
.review-rating span {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: #ffaa00;
}
.review-card p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--color-ink-soft);
}
.review-footnote {
  font-size: 13px;
  color: var(--color-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* FAQ */
.faq-section { background: rgba(255,255,255,0.95); }
.faq-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; max-width: 960px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.9); border: 1px solid var(--color-border); border-radius: var(--radius-sm); padding: 26px; box-shadow: 0 24px 50px rgba(0,0,0,0.08); }
.faq-item h3 { font-size: 18px; margin-bottom: 12px; color: var(--color-ink); }
.faq-item p { font-size: 15px; line-height: 1.6; color: var(--color-muted); }

/* CTA */
.cta-section { background: linear-gradient(135deg, rgba(0,0,0,0.06), rgba(255,255,255,0.95)); }
.cta-container {
  max-width: 620px; margin: 0 auto; text-align: center; background: rgba(255,255,255,0.92); border-radius: var(--radius-lg);
  padding: 54px 40px; box-shadow: 0 32px 72px rgba(0,0,0,0.18); border: 1px solid var(--color-border);
}
.cta-container h2 { font-size: clamp(28px, 4vw, 36px); margin-bottom: 18px; color: var(--color-ink); }
.cta-container p { font-size: 16px; color: var(--color-muted); margin-bottom: 32px; }
.cta-form { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.cta-form input {
  flex: 1 1 240px; min-width: 200px; padding: 14px 16px; border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.28); background: rgba(255,255,255,0.96); font-size: 15px; color: var(--color-ink);
}
.cta-form input:focus { outline: none; border-color: #000000; box-shadow: 0 0 0 4px rgba(0,0,0,0.15); }
.cta-form button {
  padding: 14px 28px; border-radius: 999px; border: none; background: #000000; color: #ffffff;
  font-weight: 600; font-size: 15px; cursor: pointer; transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cta-form button:hover { transform: translateY(-2px); box-shadow: 0 24px 52px rgba(0,0,0,0.28); }
.cta-footnote { margin-top: 18px; font-size: 13px; color: var(--color-muted); }

/* Footer */
.site-footer { background: linear-gradient(150deg, #000000 0%, #0b0b0b 60%, #121212 100%); color: #f0f0f0; padding: 72px 5% 48px; position: relative; }
.site-footer__inner { display: flex; flex-wrap: wrap; gap: 48px; max-width: 1240px; margin: 0 auto 48px; }
.footer-brand { flex: 1 1 260px; max-width: 420px; }
.footer-brand img { width: 64px; height: 64px; margin-bottom: 18px; filter: invert(1) saturate(0); } /* why: ensure logo visible on black */
.footer-brand p { font-size: 15px; line-height: 1.7; color: rgba(240,240,240,0.82); }
.footer-links { display: flex; gap: 48px; flex: 1 1 220px; }
.footer-links h4 { font-size: 15px; margin-bottom: 16px; color: rgba(255,255,255,0.86); }
.footer-links ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { text-decoration: none; color: rgba(240,240,240,0.7); font-size: 14px; transition: color 0.2s ease; }
.footer-links a:hover, .footer-links a:focus { color: #ffffff; }
.site-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); padding-top: 24px; text-align: center; font-size: 14px; color: rgba(240,240,240,0.68); }

/* Sign-in */
.signin-section { display: flex; justify-content: center; padding: 80px 20px 120px; background: #ffffff; }
.signin-section.hidden { display: none; }
.sidecontainer { display: flex; flex-wrap: wrap; width: 90%; max-width: 1200px; background: white; border-radius: 10px; overflow: hidden; box-shadow: 0px 4px 10px rgba(0,0,0,0.1); }
.logo { width: 100px; height: 100px; }
.rightside { flex: 1; display: flex; justify-content: center; align-items: center; }
.rightsideimg { width: 100%; height: auto; object-fit: cover; filter: grayscale(1); } /* why: keep imagery on-brand b/w */
.leftside { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 50px 30px; }
.conconleft { width: 100%; max-width: 400px; text-align: center; }
.signinlbl { font-size: 32px; font-weight: 600; color: #333; margin-bottom: 20px; }
.googlebtn { width: 100%; padding: 15px; border: 1px solid #333; border-radius: 40px; background: white; font-size: 16px; font-weight: 500; cursor: pointer; }
.divider { display: flex; align-items: center; justify-content: center; margin: 20px 0; }
.divider span { flex: 1; height: 1px; background-color: #ccc; }
.divider p { margin: 0 10px; font-size: 14px; color: #777; font-weight: bold; }
.inputcon { display: flex; flex-direction: column; gap: 15px; width: 100%; }
.email, .pass { text-align: left; }
.label { font-size: 14px; color: #666; margin-bottom: 20px; }
.input { width: 100%; padding: 12px; border: 1px solid rgba(102,102,102,0.35); border-radius: 8px; font-size: 14px; }
.input:focus { outline: none; border-color: #000; box-shadow: 0 0 5px rgba(65,65,65,0.5); }
.forgotpasscon { text-align: right; margin-top: 5px; }
.forgotpass { font-size: 14px; color: #404040; }
.signinbtncon { margin-top: 20px; display: flex; flex-direction: column; gap: 20px; }
.signinbtn { width: 100%; padding: 12px; border-radius: 8px; border: none; background-color: #000000; color: white; font-size: 16px; font-weight: 600; cursor: pointer; }

/* Center the action block */
.download-actions {
  display: flex; justify-content: center; align-items: center; gap: 1rem;
  width: 100%; margin: 0 auto; text-align: center; padding-bottom: 30px;
}

/* Optional: responsive stack on narrow screens */
@media (max-width: 600px) {
  .download-actions { flex-direction: column; }
}

/* ============ Responsive ============ */
@media (max-width: 1024px) {
  .site-header__inner { gap: 18px; padding: 16px 5%; }
  .hero { padding: 140px 6% 160px; }
  .hero__inner { grid-template-columns: 1fr; gap: 48px; justify-items: center; }
  .hero-content { padding: 40px 36px; max-width: 580px; }
  .hero-stats { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
  .hero-visual { justify-items: center; gap: 24px; min-height: auto; }
  .hero-card { width: min(340px, 82vw); --float-offset-x: 0px; --float-offset-y: 0px; }
  .journey-timeline { padding-left: 0; border-left: none; gap: 24px; }
  .timeline-item { flex-direction: column; align-items: flex-start; }
  .footer-links { gap: 32px; }
  .sidecontainer { flex-direction: column; align-items: center; box-shadow: none; }
  .rightside { display: none; }
  .leftside { width: 100%; padding: 30px 20px; }
  .conconleft { max-width: 100%; }
}

@media (max-width: 768px) {
  /* hide desktop nav, show mobile toggle */
  .site-nav--desktop { display: none; }
  .nav-toggle { display: inline-flex; }

  /* legacy dropdown block hidden, use drawer instead */
  .site-nav { position: static; background: transparent; border: 0; box-shadow: none; display: none; }

  .site-header__inner { align-items: center; }
  .hero { padding: 120px 6% 140px; }
  .hero-content { padding: 32px 28px; }
  .hero-visual { gap: 20px; }
  .hero-card { animation: none; }
  .nav-cta { width: auto; justify-content: center; }
  .features-grid, .feature-metrics, .feature-layout, .testimonial-grid, .faq-grid { gap: 18px; }
  .cta-container { padding: 40px 24px; }
  .cta-form { flex-direction: column; }
}

@media (max-width: 600px) {
  .site-header__inner { align-items: center; text-align: center; }
  .hero { padding: 110px 6% 120px; }
  .hero-content { padding: 28px 24px; }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { font-size: 15px; }
  .hero-stats { grid-template-columns: repeat(2, minmax(120px, 1fr)); gap: 12px; }
  .hero-card { width: 100%; }
  .hero-actions { width: 100%; }
  .action-btn { width: 100%; }
  .sidecontainer { width: 100%; box-shadow: none; border-radius: 0; }
  .leftside { padding: 20px; }
  .signinlbl { font-size: 28px; }
  .googlebtn, .signinbtn { padding: 12px; font-size: 14px; }
  .input { font-size: 13px; }
  .info-section { padding: 60px 6% 60px; }
  .info-card { padding: 20px; }
  .feature-metric { padding: 24px 20px; }
  .metric-value { font-size: 34px; }
  .feature-highlight { padding: 24px 20px; }
  .timeline-step { width: 36px; height: 36px; font-size: 14px; }
  .cta-container { padding: 36px 20px; }
  .cta-container h2 { font-size: 26px; }
  .site-footer__inner { flex-direction: column; gap: 32px; }
  .footer-links { flex-direction: column; gap: 24px; }
}
