/* =========================================
   MONOPOS — Stylesheet v3
   Open, airy, generous spacing
   Syne (headings) + Inter (body)
   ========================================= */

/* ─── Google Fonts loaded in HTML ─── */

:root {
  --accent:       #2B73C2;
  --lime:         #D4E600;

  /* Dark palette */
  --dark-0:  #080810;
  --dark-1:  #0F0F1A;
  --dark-2:  #161624;
  --dark-3:  #1E1E30;

  /* Light palette */
  --light-0: #F8F7F2;
  --light-1: #F0EEE8;
  --light-2: #E8E5DC;
  --light-3: #DDD9CF;

  /* Spacing scale */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.75rem;
  --space-lg:  3rem;
  --space-xl:  5rem;
  --space-2xl: 8rem;

  /* Border radius */
  --r-sm:  10px;
  --r-md:  18px;
  --r-lg:  28px;
  --r-xl:  40px;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'DM Mono', monospace;

  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Theme tokens ───────────────── */
[data-theme="dark"] {
  --bg:        var(--dark-0);
  --bg-surface: var(--dark-1);
  --bg-card:   var(--dark-2);
  --bg-raised: var(--dark-3);
  --text:      #FFFFFF;
  --text-2:    rgba(255, 255, 255, 0.65);
  --text-3:    rgba(255, 255, 255, 0.38);
  --border:    rgba(255, 255, 255, 0.07);
  --border-2:  rgba(255, 255, 255, 0.12);
  --card:      rgba(255, 255, 255, 0.035);
  --card-h:    rgba(255, 255, 255, 0.06);
  --nav-bg:    rgba(8, 8, 16, 0.85);
  --shadow:    0 32px 100px rgba(0, 0, 0, 0.55);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.35);
}

[data-theme="light"] {
  --bg:        var(--light-0);
  --bg-surface: var(--light-1);
  --bg-card:   var(--light-2);
  --bg-raised: var(--light-3);
  --text:      #0A0A14;
  --text-2:    rgba(10, 10, 20, 0.58);
  --text-3:    rgba(10, 10, 20, 0.35);
  --border:    rgba(10, 10, 20, 0.08);
  --border-2:  rgba(10, 10, 20, 0.14);
  --card:      rgba(255, 255, 255, 0.75);
  --card-h:    rgba(255, 255, 255, 0.97);
  --nav-bg:    rgba(248, 247, 242, 0.9);
  --shadow:    0 32px 100px rgba(0, 0, 0, 0.09);
  --shadow-sm: 0 8px 32px rgba(0, 0, 0, 0.07);
}

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

html {
  font-size: 17px;          /* slightly larger base */
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img  { max-width: 100%; height: auto; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
input, textarea, button, select { font-family: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ─── Typography ─────────────────── */

/*
  Headings: Syne — geometric, bold, spacious
  Body: Inter — neutral, highly readable
*/

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0em;       /* NO compression — Syne is beautiful at neutral tracking */
}

/* Hero h1 — big, open, commanding */
h1 {
  font-size: clamp(3.2rem, 6.5vw, 6rem);
  line-height: 1.08;
  letter-spacing: 0em;
}

/* Section headlines — large and readable */
h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  line-height: 1.14;
  letter-spacing: 0em;
}

/* Card titles */
h3 {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0em;
}

/* Body text — Inter, comfortable size, generous line height */
p {
  font-family: var(--font-body);
  font-size: 1.0625rem;      /* 18px at base-17 */
  line-height: 1.78;
  color: var(--text-2);
}

em {
  font-style: normal;
  color: var(--accent);
}
[data-theme="dark"] em {
  color: var(--lime);
}

/* Label / eyebrow */
.label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(43, 115, 194, 0.1);
  padding: 0.45em 1.1em;
  border-radius: 100px;
  border: 1px solid rgba(43, 115, 194, 0.2);
  margin-bottom: 1.5rem;
}
[data-theme="dark"] .label {
  color: var(--lime);
  background: rgba(212, 230, 0, 0.08);
  border-color: rgba(212, 230, 0, 0.18);
}

/* ─── Buttons ────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.005em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  white-space: nowrap;
  line-height: 1;
}

.btn--primary {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .btn--primary {
  background: var(--lime);
  color: #0A0A14;
}
.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(43, 115, 194, 0.38);
}
[data-theme="dark"] .btn--primary:hover {
  box-shadow: 0 14px 40px rgba(212, 230, 0, 0.28);
}

.btn--ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover {
  background: var(--card-h);
  border-color: var(--border-2);
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-2);
}
.btn--outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
[data-theme="dark"] .btn--outline:hover {
  border-color: var(--lime);
  color: var(--lime);
}

.btn--lg  { padding: 1.05rem 2.4rem; font-size: 1.05rem; }
.btn--full { width: 100%; justify-content: center; }

/* ─── Section head ───────────────── */
.section-head {
  text-align: center;
  margin-bottom: 5rem;
}
.section-head h2 {
  max-width: 820px;
  margin: 0 auto;
}
.section-head p {
  margin-top: 1.25rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.125rem;
}

/* =========================================
   NAV
   ========================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.1rem 2.5rem;
  background: var(--nav-bg);
  backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}

.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__logo { flex-shrink: 0; height: 42px; }
.nav__logo img { height: 42px; width: auto; object-fit: contain; }
.nav__logo .logo--blue { display: block; }
.nav__logo .logo--lime { display: none; }
[data-theme="dark"] .nav__logo .logo--blue { display: none; }
[data-theme="dark"] .nav__logo .logo--lime { display: block; }

.nav__links {
  display: flex;
  gap: 2.5rem;
  margin-left: auto;
}
.nav__links a {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text-2);
  transition: color var(--transition);
  letter-spacing: 0.005em;
}
.nav__links a:hover { color: var(--text); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* Language switcher */
.lang-switch {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  background: var(--card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 0.3rem 0.65rem;
}
.lang-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.08em;
  padding: 0.25rem 0.5rem;
  border-radius: 100px;
  transition: all var(--transition);
}
.lang-btn.active {
  background: var(--accent);
  color: #fff;
}
[data-theme="dark"] .lang-btn.active {
  background: var(--lime);
  color: #0A0A14;
}
.lang-sep { color: var(--border-2); font-size: 0.8rem; user-select: none; }

/* Theme toggle */
.theme-toggle { background: none; border: none; cursor: pointer; padding: 0; }
.theme-toggle__track {
  display: flex;
  align-items: center;
  width: 52px; height: 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 100px;
  padding: 3px;
  transition: background var(--transition);
}
.theme-toggle__thumb {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: var(--accent);
  border-radius: 50%;
  transition: transform var(--transition), background var(--transition);
  color: #fff;
}
[data-theme="dark"] .theme-toggle__thumb {
  transform: translateX(24px);
  background: var(--lime);
  color: #0A0A14;
}
.icon-sun  { display: none;  width: 12px; height: 12px; }
.icon-moon { display: block; width: 12px; height: 12px; }
[data-theme="dark"] .icon-sun  { display: block; }
[data-theme="dark"] .icon-moon { display: none;  }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: auto;
}
.nav__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s;
}

/* =========================================
   HERO
   ========================================= */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 6rem;
  padding: 9rem 2.5rem 6rem;
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
}

/* Backgrounds */
.hero__bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 80%);
  opacity: 0.5;
}

.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero__blob--1 {
  width: 700px; height: 700px;
  background: var(--accent);
  top: -150px; left: -150px;
  opacity: 0.11;
  animation: blobFloat 10s ease-in-out infinite;
}
.hero__blob--2 {
  width: 550px; height: 550px;
  background: var(--lime);
  bottom: -100px; right: -100px;
  opacity: 0.09;
  animation: blobFloat 14s ease-in-out infinite reverse;
}
[data-theme="light"] .hero__blob--1 { opacity: 0.06; }
[data-theme="light"] .hero__blob--2 { opacity: 0.06; }

@keyframes blobFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(30px, -40px) scale(1.05); }
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 1;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__symbol {
  width: 26px; height: 26px;
  object-fit: contain;
  animation: spin 22s linear infinite;
  opacity: 0.8;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Hero title — Syne, BIG, open, no compression */
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 6vw, 5.6rem);
  font-weight: 800;
  line-height: 1.07;
  letter-spacing: 0em;
  margin-bottom: 1.75rem;
  animation: fadeUp 0.8s ease both;
}

/* Hero subtitle — Inter, relaxed and readable */
.hero__sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.78;
  color: var(--text-2);
  max-width: 460px;
  margin-bottom: 2.75rem;
  animation: fadeUp 0.8s 0.1s ease both;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
  animation: fadeUp 0.8s 0.2s ease both;
}

/* Stats */
.hero__stats {
  display: flex;
  align-items: flex-start;
  gap: 2.5rem;
  animation: fadeUp 0.8s 0.3s ease both;
}
.hero__stat {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.hero__stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.hero__stat-num {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
[data-theme="dark"] .hero__stat-num { color: var(--lime); }
.hero__stat-suffix {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-3);
  line-height: 1;
}
.hero__stat-label {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-3);
  line-height: 1.45;
  max-width: 110px;
}
.hero__stat-divider {
  width: 1px;
  height: 42px;
  background: var(--border-2);
  align-self: center;
}

/* Hero device mockup */
.hero__visual {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  animation: fadeUp 0.8s 0.35s ease both;
}

.hero__device {
  position: relative;
  width: 340px;
}

.hero__screen {
  background: var(--bg-card);
  border: 1px solid var(--border-2);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.hero__screen-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 1.4rem;
  border-bottom: 1px solid var(--border);
}
.dot { width: 10px; height: 10px; border-radius: 50%; }
.dot--green { background: #30D158; box-shadow: 0 0 8px rgba(48, 209, 88, 0.5); }
.screen-title {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  flex: 1;
}
.screen-time {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-3);
}

.hero__screen-body { padding: 1.4rem; }

.screen-metric {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  margin-bottom: 0.6rem;
}
.screen-metric__label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--text-3);
  min-width: 80px;
}
.screen-metric__val {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 800;
}
.screen-metric__change {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  padding: 3px 8px;
  border-radius: 100px;
}
.screen-metric__change.up {
  background: rgba(48, 209, 88, 0.14);
  color: #30D158;
}

.screen-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 72px;
  padding: 1rem 0;
  margin: 0.75rem 0;
}
.chart-bar {
  flex: 1;
  background: var(--border);
  border-radius: 4px;
  transition: all 0.5s ease;
  cursor: pointer;
  position: relative;
}
.chart-bar.active { background: var(--accent); }
[data-theme="dark"] .chart-bar.active { background: var(--lime); }
.chart-bar:hover::after {
  content: attr(data-val);
  position: absolute;
  bottom: calc(100% + 5px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--bg-raised);
  border: 1px solid var(--border-2);
  border-radius: 6px;
  padding: 3px 7px;
  font-size: 0.65rem;
  font-family: var(--font-mono);
  white-space: nowrap;
  color: var(--text);
  z-index: 2;
}

.screen-orders {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.1rem;
}
.order-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.55rem 0.8rem;
  background: var(--card);
  border-radius: 10px;
}
.order-icon { font-size: 1rem; }
.order-name {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  flex: 1;
}
.order-price {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--text-3);
}

.screen-btn {
  width: 100%;
  padding: 0.8rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
[data-theme="dark"] .screen-btn { background: var(--lime); color: #0A0A14; }
.screen-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.hero__device-glow {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px; height: 60px;
  background: var(--accent);
  filter: blur(50px);
  opacity: 0.25;
  border-radius: 50%;
}
[data-theme="dark"] .hero__device-glow { background: var(--lime); }

/* =========================================
   MARQUEE
   ========================================= */
.marquee-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.35rem 0;
  overflow: hidden;
  background: var(--bg-surface);
}
.marquee-track { display: flex; overflow: hidden; }
.marquee-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  white-space: nowrap;
  animation: marquee 35s linear infinite;
  padding-right: 2.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-2);
  letter-spacing: 0.02em;
}
.marquee-inner span { flex-shrink: 0; }
.dot-sep { color: var(--accent); font-size: 0.55rem; opacity: 0.7; }
[data-theme="dark"] .dot-sep { color: var(--lime); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   FEATURES
   ========================================= */
.features { padding: var(--space-2xl) 0; }

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  background: var(--card-h);
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--border-2);
}

.feature-card--large { grid-column: span 2; }

.feature-card--accent {
  background: rgba(43, 115, 194, 0.07);
  border-color: rgba(43, 115, 194, 0.16);
}
[data-theme="dark"] .feature-card--accent {
  background: rgba(212, 230, 0, 0.05);
  border-color: rgba(212, 230, 0, 0.13);
}

.feature-card--dark { background: var(--bg-card); }

.feature-card__icon {
  margin-bottom: 1.4rem;
  color: var(--accent);
  width: 48px;
}
[data-theme="dark"] .feature-card__icon { color: var(--lime); }

.feature-card h3 {
  margin-bottom: 0.75rem;
}
.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.72;
}

.feature-card__visual { margin-top: 1.75rem; }
.mini-chart { display: flex; align-items: flex-end; gap: 6px; height: 60px; }
.mini-bar {
  flex: 1;
  background: var(--border);
  border-radius: 4px 4px 0 0;
  transition: background 0.3s;
}
.mini-bar.active { background: var(--accent); }
[data-theme="dark"] .mini-bar.active { background: var(--lime); }

.feature-card__pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.pill {
  padding: 0.35em 0.9em;
  border-radius: 100px;
  background: var(--card);
  border: 1px solid var(--border);
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-2);
}
.pill--active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
[data-theme="dark"] .pill--active {
  background: var(--lime);
  border-color: var(--lime);
  color: #0A0A14;
}

/* =========================================
   HOW IT WORKS
   ========================================= */
.how {
  padding: var(--space-2xl) 0;
  background: var(--bg-surface);
}

.how__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

.how__step {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.how__step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.how__step-num {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}
[data-theme="dark"] .how__step-num { color: var(--lime); }

.how__step-content h3 { margin-bottom: 0.6rem; }
.how__step-content p  { font-size: 0.9375rem; }

.how__step-arrow {
  position: absolute;
  right: -1.6rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: var(--text-3);
  z-index: 1;
}
.how__step:last-child .how__step-arrow { display: none; }

/* =========================================
   PRICING
   ========================================= */
.pricing { padding: var(--space-2xl) 0; }

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  position: relative;
  transition: all var(--transition);
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.pricing-card--featured {
  border-color: var(--accent);
  background: rgba(43, 115, 194, 0.05);
  margin-top: -1.5rem;
  padding-top: 3.75rem;
}
[data-theme="dark"] .pricing-card--featured {
  border-color: var(--lime);
  background: rgba(212, 230, 0, 0.04);
}

.pricing-card__badge {
  position: absolute;
  top: 1.35rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3em 1.1em;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
[data-theme="dark"] .pricing-card__badge { background: var(--lime); color: #0A0A14; }

.pricing-card__tier {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1rem;
}
.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.1rem;
  margin-bottom: 0.75rem;
}
.price-currency {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-3);
  align-self: flex-start;
  margin-top: 0.6rem;
}
.price-amount {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
}
.price-period {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-3);
}
.pricing-card__header p {
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  line-height: 1.65;
}
.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  margin-bottom: 2rem;
}
.pricing-card__features li {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* =========================================
   CTA BAND
   ========================================= */
.cta-band {
  background: var(--accent);
  padding: 5.5rem 2.5rem;
  overflow: hidden;
  position: relative;
}
[data-theme="dark"] .cta-band {
  background: var(--bg-card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 15% 50%, rgba(212, 230, 0, 0.2) 0%, transparent 60%);
  pointer-events: none;
}

.cta-band__inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 3.5rem;
  flex-wrap: wrap;
}

.cta-band__symbol {
  width: 64px; height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}

.cta-band__text { flex: 1; min-width: 240px; }
.cta-band__text h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #fff;
  margin-bottom: 0.6rem;
  line-height: 1.2;
}
[data-theme="dark"] .cta-band__text h2 { color: var(--text); }
.cta-band__text p { color: rgba(255, 255, 255, 0.72); font-size: 1rem; }
[data-theme="dark"] .cta-band__text p { color: var(--text-2); }

.cta-band__form { display: flex; gap: 0.75rem; flex-wrap: wrap; }

.cta-input {
  padding: 0.9rem 1.35rem;
  border-radius: 100px;
  border: none;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  width: 250px;
  backdrop-filter: blur(10px);
  transition: all var(--transition);
  outline: none;
}
[data-theme="dark"] .cta-input {
  background: var(--card);
  border: 1px solid var(--border-2);
  color: var(--text);
}
.cta-input::placeholder { color: rgba(255, 255, 255, 0.55); }
.cta-input:focus {
  background: rgba(255, 255, 255, 0.28);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.25);
}
.cta-band .btn--primary { background: #fff; color: var(--accent); }
[data-theme="dark"] .cta-band .btn--primary { background: var(--lime); color: #0A0A14; }

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: var(--bg-surface);
  padding: 5.5rem 0 2.5rem;
  border-top: 1px solid var(--border);
}

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 2fr;
  gap: 5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}

.footer__logo {
  height: 42px;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.5rem;
  display: block;
}
.footer__logo--blue { display: none; }
.footer__logo--lime { display: none; }
[data-theme="light"] .footer__logo--blue { display: block; }
[data-theme="dark"]  .footer__logo--lime { display: block; }

.footer__brand p { font-size: 0.9375rem; max-width: 240px; }

.footer__links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}
.footer__col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 1.35rem;
}
.footer__col a {
  display: block;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-2);
  margin-bottom: 0.75rem;
  transition: color var(--transition);
}
.footer__col a:hover { color: var(--text); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  color: var(--text-3);
}

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

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ─── Toast ──────────────────────── */
.save-toast {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  background: var(--bg-raised);
  border: 1px solid var(--border-2);
  border-radius: 14px;
  padding: 0.85rem 1.35rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--lime);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transform: translateY(14px);
  opacity: 0;
  transition: all 0.3s ease;
}
.save-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 1024px) {
  .features__grid { grid-template-columns: 1fr 1fr; }
  .feature-card--large { grid-column: span 2; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .pricing-card--featured { margin-top: 0; padding-top: 3.75rem; }
  .how__steps { grid-template-columns: 1fr; }
  .how__step-arrow { display: none; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }

  .nav { padding: 1rem 1.5rem; }
  .nav__logo { height: 36px; }
  .nav__logo img { height: 36px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 7rem 1.5rem 4rem;
    gap: 3rem;
  }
  .hero__visual { order: -1; }
  .hero__device { width: 300px; }
  /* Hero title stays big on mobile — just uses the clamp minimum */
  .hero__title { font-size: clamp(2.8rem, 9vw, 3.6rem); }
  .hero__sub { font-size: 1.0625rem; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .nav__actions .btn { display: none; }

  .features__grid { grid-template-columns: 1fr; }
  .feature-card--large { grid-column: span 1; }

  .footer__top { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }
  .footer__logo { height: 36px; }

  .cta-band { padding: 4rem 1.5rem; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; gap: 2rem; }
  .cta-band__form { flex-direction: column; width: 100%; }
  .cta-input { width: 100%; }

  .hero__stats { flex-wrap: wrap; gap: 1.5rem; }
  .hero__stat-divider { display: none; }

  .container { padding: 0 1.5rem; }
}

@media (max-width: 480px) {
  /* h2 still stays generous — let the clamp handle it */
  h2 { font-size: clamp(2.2rem, 8vw, 3rem); }
  .how__step { padding: 1.75rem; }
  .feature-card { padding: 1.75rem; }
  .pricing-card { padding: 2rem; }
}
