/* ============================================================
   Untethered Moto - Marketing Site
   ============================================================ */

:root {
  --bg:           #08080f;
  --surface:      #0e0e1c;
  --surface-mid:  #141424;
  --surface-high: #1c1c30;
  --border:       #1e1e32;
  --border-mid:   #252540;
  --border-glow:  #2e3a5c;
  --accent:       #4d8ef0;
  --accent-dim:   rgba(77,142,240,0.12);
  --accent-glow:  rgba(77,142,240,0.06);
  --fire:         #f4631a;
  --fire-dim:     rgba(244,99,26,0.10);
  --fire-glow:    rgba(244,99,26,0.06);
  --green:        #22c55e;
  --green-dim:    rgba(34,197,94,0.10);
  --amber:        #f59e0b;
  --red:          #ef4444;
  --text-primary: #eeeef8;
  --text-second:  #8a8aaa;
  --text-muted:   #525268;
  --radius:       12px;
  --radius-lg:    18px;
  --radius-xl:    24px;
  --radius-pill:  999px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.4);
  --shadow:       0 8px 32px rgba(0,0,0,0.5);
  --shadow-lg:    0 24px 64px rgba(0,0,0,0.6);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { opacity: 0.85; }
img { max-width: 100%; height: auto; display: block; }

/* ── Nav ──────────────────────────────────────────────────── */

nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 66px;
  background: rgba(8,8,15,0.8);
  backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border);
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.2px;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.75;
  transition: opacity 0.2s, transform 0.15s;
}

.nav-social:hover {
  opacity: 1;
  transform: translateY(-1px);
}

.nav-logo-img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--border-mid);
  flex-shrink: 0;
}

.nav-logo span { color: var(--accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-second);
  padding: 6px 12px;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover {
  color: var(--text-primary);
  background: rgba(255,255,255,0.04);
  opacity: 1;
}

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: var(--radius-pill) !important;
  font-weight: 600 !important;
  transition: opacity 0.2s, transform 0.15s !important;
  box-shadow: 0 2px 12px rgba(77,142,240,0.3);
}

.nav-cta:hover {
  opacity: 0.92 !important;
  transform: translateY(-1px) !important;
  background: var(--accent) !important;
}

/* ── Layout ───────────────────────────────────────────────── */

section { padding: 100px 40px; }

.container {
  max-width: 1160px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  letter-spacing: -0.8px;
  line-height: 1.12;
  color: var(--text-primary);
  margin-bottom: 18px;
}

.section-sub {
  font-size: 17px;
  color: var(--text-second);
  max-width: 580px;
  line-height: 1.7;
}

/* ── Buttons ──────────────────────────────────────────────── */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 26px;
  border-radius: var(--radius-pill);
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 20px rgba(77,142,240,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(77,142,240,0.45);
  color: #fff;
  opacity: 1;
}

.btn-primary:active { transform: translateY(0); }

.btn-disabled {
  cursor: default;
  opacity: 0.55;
  box-shadow: none;
}
.btn-disabled:hover {
  transform: none;
  box-shadow: none;
  opacity: 0.55;
}

.btn-block {
  width: 100%;
  justify-content: center;
  margin-top: 28px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--text-second);
  font-size: 15px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border-mid);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  border-color: var(--border-glow);
  color: var(--text-primary);
  background: rgba(255,255,255,0.03);
  opacity: 1;
}

/* ── Hero ─────────────────────────────────────────────────── */

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 66px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(ellipse at 70% 50%, rgba(244,99,26,0.05) 0%, transparent 50%),
              radial-gradient(ellipse at 20% 60%, rgba(77,142,240,0.06) 0%, transparent 50%);
}

.bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77,142,240,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77,142,240,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.6) 0%, transparent 80%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: var(--radius-pill);
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.2px;
  margin-bottom: 22px;
}

.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2.4s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(38px, 5.2vw, 68px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 1.04;
  color: var(--text-primary);
  margin-bottom: 24px;
}

.hero-title .highlight {
  background: linear-gradient(100deg, var(--fire) 0%, #e06bff 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 18px;
  color: var(--text-second);
  line-height: 1.7;
  margin-bottom: 38px;
  max-width: 460px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 16px 24px;
  width: fit-content;
}

.hero-stat {
  text-align: center;
  padding: 0 24px;
}

.hero-stat:first-child { padding-left: 0; }
.hero-stat:last-child  { padding-right: 0; }

.hero-stat-divider {
  width: 1px;
  height: 32px;
  background: var(--border-mid);
  flex-shrink: 0;
}

.hero-stat-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 3px;
  font-weight: 500;
}

/* Hero logo visual */

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-glow-fire {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 70%;
  height: 60%;
  background: radial-gradient(ellipse, rgba(244,99,26,0.22) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  border-radius: 50%;
}

.hero-glow-blue {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 60%;
  height: 55%;
  background: radial-gradient(ellipse, rgba(77,142,240,0.18) 0%, transparent 70%);
  filter: blur(48px);
  pointer-events: none;
  border-radius: 50%;
}

.hero-logo-img {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow:
    0 48px 100px rgba(0,0,0,0.7),
    0 0 0 1px rgba(255,255,255,0.06),
    inset 0 1px 0 rgba(255,255,255,0.05);
  z-index: 1;
  transform: perspective(1200px) rotateY(-6deg) rotateX(2deg);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-logo-img:hover {
  transform: perspective(1200px) rotateY(-1deg) rotateX(0deg);
  box-shadow:
    0 56px 120px rgba(0,0,0,0.7),
    0 0 60px rgba(244,99,26,0.1),
    0 0 0 1px rgba(255,255,255,0.08);
}

/* ── Why Section ──────────────────────────────────────────── */

#why {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.why-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--accent));
  opacity: 0;
  transition: opacity 0.3s;
}

.why-card:hover {
  border-color: var(--border-mid);
  box-shadow: 0 0 0 1px var(--border-mid), 0 16px 40px rgba(0,0,0,0.3);
}

.why-card:hover::before { opacity: 1; }

.why-icon-wrap {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(77,142,240,0.14), rgba(77,142,240,0.04));
  border: 1px solid rgba(77,142,240,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
  flex-shrink: 0;
}

.why-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  letter-spacing: -0.2px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.68;
}

.why-card .strike {
  text-decoration: line-through;
  color: var(--text-muted);
}

/* ── Features ─────────────────────────────────────────────── */

#features { background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 52px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  position: relative;
  overflow: hidden;
  transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-mid);
  box-shadow: var(--shadow), 0 0 40px rgba(77,142,240,0.06);
}

.feature-card:hover::after { opacity: 0.6; }

.feature-card.featured {
  grid-column: span 2;
  background: linear-gradient(135deg, #0d1322 0%, #101826 100%);
  border-color: var(--border-glow);
}

.feature-card.featured::after { opacity: 0.4; }

.feature-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(77,142,240,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 16px;
  flex-shrink: 0;
}

.feature-icon-wrap.pro {
  background: rgba(77,142,240,0.08);
  border-color: rgba(77,142,240,0.18);
}

.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
  letter-spacing: -0.2px;
}

.feature-card p {
  font-size: 13.5px;
  color: var(--text-second);
  line-height: 1.65;
}

.feature-badge {
  position: absolute;
  top: 16px; right: 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 9px;
  border-radius: var(--radius-pill);
}

.badge-free {
  background: var(--green-dim);
  color: var(--green);
  border: 1px solid rgba(34,197,94,0.2);
}

.badge-pro {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(77,142,240,0.25);
}

/* ── Customize / Make It Your Ride ───────────────────────── */

#customize {
  background: var(--bg);
}

.gradient-text {
  background: linear-gradient(100deg, var(--fire) 0%, #c060f0 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.customize-header {
  max-width: 680px;
  margin-bottom: 60px;
}

.customize-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  margin-bottom: 52px;
}

.customize-values {
  display: flex;
  flex-direction: column;
  gap: 36px;
  padding-top: 4px;
}

.customize-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.customize-icon-wrap {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-dim);
  border: 1px solid rgba(77,142,240,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.customize-text h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 7px;
  letter-spacing: -0.2px;
}

.customize-text p {
  font-size: 14px;
  color: var(--text-second);
  line-height: 1.68;
}

/* Preferences mock UI panel */

.prefs-mock {
  background: var(--surface);
  border: 1px solid var(--border-mid);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow), 0 0 0 1px rgba(255,255,255,0.02);
}

.prefs-title-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--surface-mid);
  padding: 14px 20px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.1px;
}

.prefs-body { padding: 4px 0 12px; }

.prefs-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text-muted);
  padding: 14px 20px 5px;
  text-transform: uppercase;
}

.pref-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 9px 20px;
  border-bottom: 1px solid var(--border);
}

.pref-row:last-child { border-bottom: none; }

.pref-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.pref-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.pref-value {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Toggle switch pill */
.pref-toggle {
  width: 40px; height: 23px;
  border-radius: 12px;
  flex-shrink: 0;
  position: relative;
  transition: background 0.2s;
  cursor: default;
}

.pref-toggle::after {
  content: '';
  position: absolute;
  width: 17px; height: 17px;
  border-radius: 50%;
  top: 3px;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.3);
  transition: left 0.2s cubic-bezier(0.22,1,0.36,1);
}

.pref-toggle.on  { background: var(--accent); }
.pref-toggle.off { background: #2e2e48; }
.pref-toggle.on::after  { left: 20px; }
.pref-toggle.off::after { left: 3px; }

/* Themes strip */
.themes-strip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.themes-strip-left { flex-shrink: 0; }

.themes-strip-title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
  letter-spacing: -0.1px;
}

.themes-strip-sub {
  font-size: 12px;
  color: var(--text-muted);
}

.themes-list {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.theme-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
}

.theme-dot {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.08);
  position: relative;
  overflow: hidden;
}

/* accent wedge in bottom-right quadrant */
.theme-dot::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 48%; height: 48%;
  background: var(--ta, var(--accent));
  border-radius: 50% 0 2px 0;
}

.auto-dot {
  background: linear-gradient(135deg, #08080f 50%, #e8e8f4 50%);
}

.auto-dot::after {
  background: var(--amber);
}

.theme-swatch.active .theme-dot {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

.theme-name {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

/* ── Gallery ──────────────────────────────────────────────── */

#gallery {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.gallery-header {
  text-align: center;
  margin-bottom: 64px;
}

.gallery-header .section-sub { margin: 0 auto; }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 28px;
  justify-items: center;
}

.gallery-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 20px;
}

.gallery-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  width: 100%;
  max-width: 220px;
}

.gallery-phone {
  position: relative;
  width: 100%;
  background: #0a0a18;
  border-radius: 38px;
  border: 1.5px solid #1e1e38;
  box-shadow:
    0 32px 64px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.03),
    inset 0 1px 0 rgba(255,255,255,0.05);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), box-shadow 0.35s ease;
}

.gallery-phone:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow:
    0 48px 80px rgba(0,0,0,0.65),
    0 0 40px rgba(77,142,240,0.1),
    0 0 0 1px rgba(255,255,255,0.06);
}

.gallery-notch {
  width: 64px; height: 18px;
  background: #0a0a18;
  border-radius: 0 0 12px 12px;
  margin: 0 auto;
  border: 1.5px solid #1e1e38;
  border-top: none;
  position: relative;
  z-index: 2;
}

.gallery-phone img {
  width: 100%;
  display: block;
  border-radius: 0 0 36px 36px;
}

.gallery-caption { text-align: center; }

.gallery-caption-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
  letter-spacing: -0.1px;
}

.gallery-caption-sub {
  font-size: 11.5px;
  color: var(--text-muted);
  line-height: 1.4;
}

.gallery-footnote {
  text-align: center;
  margin-top: 48px;
  font-size: 13px;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* ── Riding Mode ──────────────────────────────────────────── */

#riding-mode {
  background: var(--bg);
  text-align: center;
}

.riding-mode-content {
  max-width: 720px;
  margin: 0 auto;
}

.riding-mode-content .section-sub { margin: 0 auto 56px; }

.mode-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  text-align: left;
  margin-top: 48px;
}

.mode-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.mode-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.mode-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.mode-card-dot.green { background: var(--green); box-shadow: 0 0 8px rgba(34,197,94,0.5); }
.mode-card-dot.blue  { background: var(--accent); box-shadow: 0 0 8px rgba(77,142,240,0.5); }

.mode-card-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  flex: 1;
}

.mode-card.riding .mode-card-title { color: var(--green); }
.mode-card.parked .mode-card-title { color: var(--accent); }

.mode-card-sub {
  font-size: 11px;
  color: var(--text-muted);
}

.mode-card.riding { border-color: rgba(34,197,94,0.2); }
.mode-card.parked { border-color: rgba(77,142,240,0.2); }

.mode-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var(--text-second);
}

.mode-sep {
  height: 1px;
  background: var(--border);
  margin: 8px 0;
}

.mode-check { color: var(--green); font-size: 13px; font-weight: 700; flex-shrink: 0; }
.mode-x     { color: var(--text-muted); font-size: 13px; flex-shrink: 0; }

/* ── Pricing ──────────────────────────────────────────────── */

#pricing {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 52px;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 36px;
}

.pricing-card.pro-card {
  border-color: rgba(77,142,240,0.4);
  background: linear-gradient(150deg, #0b1221 0%, #0e1828 100%);
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(77,142,240,0.08), 0 24px 64px rgba(0,0,0,0.4);
}

.pricing-card.pro-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--fire), var(--accent));
}

.pro-popular-badge {
  display: inline-block;
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid rgba(77,142,240,0.25);
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  margin-bottom: 16px;
}

.pricing-tier {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.pricing-card.pro-card .pricing-tier { color: var(--accent); }

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  letter-spacing: -2px;
  color: var(--text-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.pricing-price span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-second);
  letter-spacing: 0;
}

.pricing-sub {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  font-size: 14px;
  color: var(--text-second);
}

.pricing-feature .check       { color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-feature .check.amber { color: var(--amber); }

.pricing-note {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
  max-width: 840px;
  margin-left: auto;
  margin-right: auto;
}

/* ── Roadmap ──────────────────────────────────────────────── */

#roadmap { background: var(--bg); }

.roadmap-intro { max-width: 600px; margin-bottom: 60px; }

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

.roadmap-phase {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
}

.roadmap-phase.active {
  border-color: rgba(34,197,94,0.3);
}

.roadmap-phase.active::before {
  content: 'NOW';
  position: absolute;
  top: -1px; right: 20px;
  background: var(--green);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 10px;
  border-radius: 0 0 8px 8px;
}

.roadmap-phase.next { border-color: rgba(77,142,240,0.2); }

.roadmap-phase.future {
  opacity: 0.65;
}

.roadmap-version {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 6px;
}

.roadmap-phase.active .roadmap-version { color: var(--green); }

.roadmap-phase h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.2px;
}

.roadmap-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.roadmap-item {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 13px;
  color: var(--text-second);
  line-height: 1.5;
}

.roadmap-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--border-mid);
  flex-shrink: 0;
  margin-top: 5px;
}

.roadmap-phase.active .roadmap-dot { background: var(--green); }
.roadmap-phase.next   .roadmap-dot { background: var(--accent); }

/* ── Pre-register ─────────────────────────────────────────── */

#register {
  background: radial-gradient(ellipse at 50% 0%, rgba(77,142,240,0.07) 0%, transparent 60%),
              var(--surface);
  border-top: 1px solid var(--border);
  text-align: center;
}

.register-content { max-width: 580px; margin: 0 auto; }

.register-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 28px;
  border: 2px solid var(--border-mid);
  box-shadow: 0 0 40px rgba(244,99,26,0.15), 0 0 80px rgba(77,142,240,0.08);
}

.register-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.register-content .section-label { margin-bottom: 14px; }
.register-content .section-title { margin-bottom: 16px; }
.register-content .section-sub   { margin: 0 auto 36px; }

.register-form {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  max-width: 460px;
  margin: 0 auto 16px;
}

/* Bot protection - honeypot field is invisible and unreachable, never fill it in
   manually while testing or every real submission will look like a bot to you. */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.cf-turnstile {
  flex-basis: 100%;
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.register-input {
  flex: 1;
  background: var(--bg);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-pill);
  padding: 13px 20px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text-primary);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.register-input::placeholder { color: var(--text-muted); }

.register-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(77,142,240,0.12);
}

.register-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.register-note a { color: var(--text-muted); text-decoration: underline; }

.platform-badges {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-second);
}

.platform-badge.available {
  border-color: rgba(34,197,94,0.3);
  color: var(--green);
  background: rgba(34,197,94,0.04);
}

/* ── Footer ───────────────────────────────────────────────── */

footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 56px 40px 32px;
}

.footer-inner {
  max-width: 1160px;
  margin: 0 auto 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-second);
  font-size: 15px;
  font-weight: 600;
}

.footer-logo-img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center 18%;
  border: 1px solid var(--border-mid);
}

.footer-logo strong { color: var(--accent); font-weight: 700; }

.footer-tagline {
  font-size: 13px;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.5;
}

.footer-links-group {
  display: flex;
  gap: 64px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 4px;
}

.footer-col a {
  font-size: 14px;
  color: var(--text-second);
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--text-primary); opacity: 1; }

.footer-col-soon { font-size: 14px; color: var(--text-muted); }
.footer-col-soon em { font-style: normal; opacity: 0.7; }

.footer-bottom {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── Animations ───────────────────────────────────────────── */

.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up-delay-1 { transition-delay: 0.08s; }
.fade-up-delay-2 { transition-delay: 0.16s; }
.fade-up-delay-3 { transition-delay: 0.24s; }

/* ── Responsive ───────────────────────────────────────────── */

@media (max-width: 960px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  section { padding: 72px 24px; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
    padding: 0 24px;
  }

  .hero-logo-img {
    max-width: 360px;
    margin: 0 auto;
    transform: none;
  }

  .hero-logo-img:hover { transform: none; }

  .hero-actions { justify-content: center; }
  .hero-stats   { margin: 0 auto; }
  .hero-sub     { margin-left: auto; margin-right: auto; }

  .section-sub { max-width: 100%; }

  .why-grid,
  .roadmap-grid { grid-template-columns: 1fr; }

  .features-grid { grid-template-columns: 1fr; }
  .feature-card.featured { grid-column: span 1; }

  .customize-grid { grid-template-columns: 1fr; gap: 40px; }
  .themes-strip { flex-direction: column; align-items: flex-start; gap: 20px; }
  .gallery-grid     { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .gallery-grid-5   { grid-template-columns: repeat(3, 1fr); gap: 28px 16px; }

  .mode-cards,
  .pricing-grid { grid-template-columns: 1fr; }

  .register-form { flex-direction: column; }

  .footer-inner { flex-direction: column; }
  .footer-links-group { flex-direction: column; gap: 32px; }
  .footer-bottom { flex-direction: column; }
}

@media (max-width: 720px) {
  .gallery-grid   { grid-template-columns: repeat(2, 1fr); gap: 28px 20px; }
  .gallery-grid-5 { grid-template-columns: repeat(2, 1fr); gap: 24px 16px; }
}

@media (max-width: 640px) {
  .hero-title { font-size: 36px; letter-spacing: -1px; }
  .hero-actions { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
  .hero-stat-divider { width: 60px; height: 1px; }
  .platform-badges { flex-direction: column; align-items: center; }

  .gallery-grid,
  .gallery-grid-5 { grid-template-columns: 1fr 1fr; gap: 20px 14px; }
  .gallery-item { max-width: 100%; }
}

@media (max-width: 400px) {
  .hero-stats { padding: 14px 16px; }
  .hero-stat { padding: 0 12px; }
}
