/* ============================================================
   Siro — Website CSS
   Fonts: Space Grotesk (display) · Inter (body) · JetBrains Mono (mono)
   Brand: #6CD3F7 (ice blue) · #007F9D (mid) · #00647C (deep teal)
   ============================================================ */

:root {
  /* Brand */
  --blue-bright:   #6CD3F7;
  --blue-mid:      #007F9D;
  --blue-dark:     #00647C;
  --blue-glow:     rgba(108, 211, 247, 0.15);
  --blue-glow-lg:  rgba(108, 211, 247, 0.08);

  /* Cellular / WiFi chart colours (from app) */
  --cellular:      #FF6B6B;
  --wifi:          #6CD3F7;

  /* Dark surfaces */
  --bg-dark:       #060D1A;
  --bg-dark-card:  #0C1928;
  --bg-dark-mid:   #0F2035;
  --border-dark:   #122438;
  --border-glow:   rgba(108, 211, 247, 0.2);

  /* Text */
  --text-light:    #E8F4FD;
  --text-dim:      #7AACCC;
  --text-muted:    #4A7A9B;

  /* Typography */
  --font-display: 'Space Grotesk', sans-serif;
  --font-body:    'Inter', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Layout */
  --max-width: 1140px;
  --radius:    12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
}

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

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Header ────────────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(6, 13, 26, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
  padding: 0.875rem 0;
  transition: background 0.3s;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.logo-img { height: 40px; width: auto; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.main-nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
  font-family: var(--font-display);
}
.main-nav a:hover { color: var(--text-light); }

.nav-cta {
  background: var(--blue-mid);
  color: #fff !important;
  padding: 0.5rem 1.1rem;
  border-radius: 8px;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--blue-bright) !important; color: #060D1A !important; transform: translateY(-1px); }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dim);
  border-radius: 2px;
  transition: all 0.2s;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0.5rem 1.5rem 1rem;
  border-top: 1px solid var(--border-dark);
}
.mobile-nav a {
  padding: 0.75rem 0;
  color: var(--text-dim);
  text-decoration: none;
  font-family: var(--font-display);
  font-weight: 500;
  border-bottom: 1px solid var(--border-dark);
}
.mobile-cta {
  margin-top: 0.75rem;
  background: var(--blue-mid);
  color: #fff !important;
  padding: 0.65rem 1.2rem;
  border-radius: 8px;
  text-align: center;
  font-weight: 600;
}
.site-header.nav-open .mobile-nav { display: flex; }

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue-mid) 100%);
  color: #060D1A;
  box-shadow: 0 0 24px rgba(108, 211, 247, 0.25);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 36px rgba(108, 211, 247, 0.4);
}
.btn-secondary {
  background: var(--bg-dark-card);
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}
.btn-secondary:hover {
  border-color: var(--blue-mid);
  color: var(--blue-bright);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1px solid var(--border-dark);
}
.btn-outline:hover {
  border-color: var(--blue-bright);
  color: var(--blue-bright);
}

.cta-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ── Typography ────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--blue-bright);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  background: var(--blue-bright);
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light);
}
.section-sub {
  font-size: 1.05rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.accent { color: var(--blue-bright); }

/* ── Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 7rem 0 5rem;
  overflow: hidden;
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border-dark) 1px, transparent 1px),
    linear-gradient(90deg, var(--border-dark) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.4;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 40%, transparent 100%);
}

.hero-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(108, 211, 247, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container { position: relative; z-index: 1; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(108, 211, 247, 0.08);
  border: 1px solid rgba(108, 211, 247, 0.2);
  border-radius: 100px;
  padding: 0.35rem 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--blue-bright);
  margin-bottom: 1.75rem;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.08;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 2.25rem;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  flex-wrap: wrap;
}
.hero-trust .sep {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--text-muted);
  flex-shrink: 0;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--bg-dark-card);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 1.5rem 0;
}

.stats-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  flex: 1;
  min-width: 140px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--blue-bright);
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border-dark);
  flex-shrink: 0;
}

/* ── App Preview ───────────────────────────────────────────── */
.app-preview {
  padding: 5rem 0;
  overflow: hidden;
}

.preview-phones {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1.5rem;
  position: relative;
}

.phone-card {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border-dark);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
  background: var(--bg-dark-card);
}
.phone-card img { display: block; width: 100%; height: auto; }
.phone-card--center { width: 260px; z-index: 2; transform: translateY(0); }
.phone-card--left  { width: 220px; z-index: 1; transform: translateY(40px) rotate(-4deg); opacity: 0.8; }
.phone-card--right { width: 220px; z-index: 1; transform: translateY(40px) rotate(4deg); opacity: 0.8; }

.phone-card:hover { transform: translateY(-8px) !important; opacity: 1 !important; }

/* ── Features ──────────────────────────────────────────────── */
.features {
  padding: 6rem 0;
  background: var(--bg-dark-card);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}
.features-header .section-label { justify-content: center; }
.features-header .section-label::before { display: none; }
.features-header .section-sub { margin: 0.75rem auto 0; }

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

.feature-card {
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue-mid), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}
.feature-card:hover {
  border-color: var(--border-glow);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}
.feature-card:hover::before { opacity: 1; }

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(108, 211, 247, 0.08);
  border: 1px solid rgba(108, 211, 247, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-bright);
  margin-bottom: 1.25rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.6rem;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
}

.pro-badge {
  display: inline-block;
  background: rgba(108, 211, 247, 0.12);
  border: 1px solid rgba(108, 211, 247, 0.25);
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  vertical-align: middle;
  margin-left: 2px;
}

/* ── Screenshots ───────────────────────────────────────────── */
.screenshots-section {
  padding: 7rem 0;
  overflow: hidden;
}

.screenshots-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.screenshots-text .section-title { margin-bottom: 1rem; }

.screenshots-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.screenshots-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.92rem;
  color: var(--text-dim);
}

.feat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(108, 211, 247, 0.1);
  color: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 1px;
}

.screenshots-phones {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  justify-content: center;
}

.phone-shot {
  width: calc(33.33% - 0.67rem);
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  border: 1px solid var(--border-dark);
  transition: transform 0.3s;
}
.phone-shot:nth-child(2) { margin-top: 2rem; }
.phone-shot:hover { transform: translateY(-6px); }

/* ── How It Works ──────────────────────────────────────────── */
.how-it-works {
  background: var(--bg-dark-card);
  padding: 7rem 0;
  position: relative;
}
.how-it-works::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-glow), transparent);
}

.inner-center { text-align: center; margin-bottom: 4rem; }
.inner-center .section-label { justify-content: center; }
.inner-center .section-label::before { display: none; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  position: relative;
}

.steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(16.67% + 24px);
  right: calc(16.67% + 24px);
  height: 1px;
  background: linear-gradient(90deg, var(--blue-mid), var(--blue-bright), var(--blue-mid));
  opacity: 0.3;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

.step-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #060D1A;
  box-shadow: 0 0 24px rgba(108, 211, 247, 0.3);
  flex-shrink: 0;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}

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

/* ── Pro CTA Section ───────────────────────────────────────── */
.pro-cta-section { padding: 7rem 0; }

.pro-cta-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-xl);
  padding: 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.pro-cta-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(108,211,247,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pro-cta-content h2 {
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin: 0.5rem 0 0.75rem;
}
.pro-cta-content > p {
  font-size: 1rem;
  color: var(--text-dim);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.pro-pricing-preview {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.pro-plan-pill {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  flex: 1;
  min-width: 90px;
  position: relative;
}

.pro-plan-pill--highlight {
  border-color: var(--border-glow);
  background: rgba(108, 211, 247, 0.04);
}

.plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-bright);
  color: #060D1A;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  white-space: nowrap;
  letter-spacing: 0.05em;
}

.plan-name {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
}
.plan-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-light);
}
.plan-price span {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-muted);
}

/* Data ring visual */
.pro-cta-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.data-ring-wrap {
  position: relative;
  width: 200px;
  height: 200px;
}
.data-ring { width: 200px; height: 200px; }
.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
}
.ring-val {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--blue-bright);
}
.ring-sub {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  text-align: center;
}

.pro-feature-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(108, 211, 247, 0.08);
  border: 1px solid rgba(108, 211, 247, 0.15);
  color: var(--blue-bright);
  font-size: 0.8rem;
  font-family: var(--font-mono);
  padding: 0.35rem 0.75rem;
  border-radius: 100px;
}

/* ── Philosophy ────────────────────────────────────────────── */
.philosophy {
  padding: 6rem 0;
  text-align: center;
  background: var(--bg-dark-mid);
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
}

.philosophy blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  line-height: 1.3;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.philosophy cite {
  font-size: 0.9rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  font-style: normal;
}

/* ── Download CTA ──────────────────────────────────────────── */
.download-cta {
  padding: 7rem 0;
  text-align: center;
}

.download-cta .section-label { justify-content: center; }
.download-cta .section-label::before { display: none; }
.download-cta .section-title { max-width: 600px; margin: 0 auto 1rem; }
.download-cta .section-sub { margin: 0 auto 2.5rem; text-align: center; }
.download-cta .cta-buttons { justify-content: center; }

/* ── Pricing Page ──────────────────────────────────────────── */
.pricing-page {
  padding: 5rem 0 7rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}
.pricing-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 0.75rem;
}
.pricing-header .section-label { justify-content: center; }
.pricing-header .section-label::before { display: none; }

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

.pricing-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: border-color 0.25s, transform 0.25s;
  position: relative;
}

.pricing-card--highlight {
  border-color: var(--border-glow);
  background: rgba(108, 211, 247, 0.03);
}

.pricing-card--highlight::before {
  content: 'BEST VALUE';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
  color: #060D1A;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 100px;
  letter-spacing: 0.07em;
  white-space: nowrap;
}

.pricing-card:hover { transform: translateY(-4px); }

.pricing-plan-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dim);
}
.pricing-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: -0.03em;
  line-height: 1;
}
.pricing-period {
  font-size: 0.88rem;
  color: var(--text-muted);
}
.pricing-savings {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--blue-bright);
  margin-top: 0.25rem;
}

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-dim);
}
.pricing-features .check {
  color: var(--blue-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.pricing-features .check-dim {
  color: var(--text-muted);
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-cta {
  display: block;
  text-align: center;
  background: var(--bg-dark);
  border: 1px solid var(--border-dark);
  color: var(--text-light);
  padding: 0.75rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
  font-size: 0.92rem;
}
.pricing-cta:hover { border-color: var(--blue-mid); color: var(--blue-bright); }
.pricing-card--highlight .pricing-cta {
  background: linear-gradient(135deg, var(--blue-bright), var(--blue-mid));
  color: #060D1A;
  border-color: transparent;
}
.pricing-card--highlight .pricing-cta:hover {
  box-shadow: 0 0 24px rgba(108,211,247,0.3);
}

.pricing-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1.5rem;
  font-family: var(--font-mono);
}

.free-tier {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  margin-top: 3rem;
}

.free-tier h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}
.free-tier p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 480px;
}

.free-tier-features {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1.5rem;
  margin-top: 1rem;
}
.free-tier-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-dim);
  font-family: var(--font-mono);
}
.free-tier-features li::before {
  content: '•';
  color: var(--blue-mid);
  font-size: 1.1rem;
}

/* ── Legal / Single Page ───────────────────────────────────── */
.legal-page {
  padding: 5rem 0 7rem;
}

.legal-header {
  max-width: 720px;
  margin-bottom: 3rem;
}

.legal-header h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.legal-date {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}

.legal-intro {
  font-size: 1.05rem;
  color: var(--text-dim);
  line-height: 1.7;
}

.legal-body {
  max-width: 720px;
}

.legal-body h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-light);
  margin: 2.5rem 0 0.75rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-dark);
}

.legal-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.legal-body h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 1.5rem 0 0.5rem;
}

.legal-body p {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.legal-body ul, .legal-body ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-body li {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 0.4rem;
}

.legal-body a {
  color: var(--blue-bright);
  text-decoration: none;
}
.legal-body a:hover { text-decoration: underline; }

.legal-body strong {
  color: var(--text-light);
  font-weight: 600;
}

/* Delete / action pages */
.action-card {
  background: var(--bg-dark-card);
  border: 1px solid var(--border-dark);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 1.5rem 0;
}
.action-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.action-card p {
  font-size: 0.92rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin: 0;
}

.warning-box {
  background: rgba(186, 26, 26, 0.08);
  border: 1px solid rgba(186, 26, 26, 0.2);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9rem;
  color: #FF8A8A;
  line-height: 1.65;
}

.step-list {
  list-style: none;
  counter-reset: steps;
  margin: 1.5rem 0;
}
.step-list li {
  counter-increment: steps;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  align-items: flex-start;
}
.step-list li::before {
  content: counter(steps);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(108,211,247,0.1);
  border: 1px solid rgba(108,211,247,0.2);
  color: var(--blue-bright);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ── Footer ────────────────────────────────────────────────── */
.site-footer {
  background: var(--bg-dark-card);
  border-top: 1px solid var(--border-dark);
  margin-top: auto;
  padding: 4rem 0 2rem;
}

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

.footer-brand {}

.footer-logo-img {
  height: 34px;
  width: auto;
  margin-bottom: 1rem;
  display: block;
}

.footer-brand-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--blue-bright); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  font-family: var(--font-mono);
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── 404 ───────────────────────────────────────────────────── */
.error-page {
  padding: 8rem 0;
  text-align: center;
}
.error-page h1 {
  font-size: 6rem;
  font-weight: 800;
  color: var(--blue-bright);
  letter-spacing: -0.05em;
  line-height: 1;
  margin-bottom: 1rem;
}
.error-page p { color: var(--text-dim); margin-bottom: 2rem; }

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .screenshots-layout { grid-template-columns: 1fr; gap: 3rem; }
  .screenshots-phones { order: -1; }
  .pro-cta-card { grid-template-columns: 1fr; }
  .pro-cta-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-cards { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }

  .hero { padding: 5rem 0 3rem; }
  .hero h1 { font-size: 2.4rem; }

  .preview-phones { gap: 0.75rem; }
  .phone-card--center { width: 200px; }
  .phone-card--left, .phone-card--right { width: 160px; }

  .feature-grid { grid-template-columns: 1fr; }

  .steps { grid-template-columns: 1fr; }
  .steps::before { display: none; }

  .stats-grid { gap: 1.5rem; }
  .stat-divider { display: none; }
  .stat-item { min-width: 40%; }

  .free-tier { grid-template-columns: 1fr; }
  .free-tier-features { grid-template-columns: 1fr; }

  .footer-top { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .pro-cta-card { padding: 2rem 1.5rem; }
  .pricing-page { padding: 3rem 0 5rem; }
  .legal-page { padding: 3rem 0 5rem; }
}

@media (max-width: 480px) {
  .cta-buttons { flex-direction: column; }
  .btn { justify-content: center; }
  .pro-pricing-preview { flex-direction: column; }
}
