:root {
  --bg: #FAFAF7;
  --bg-alt: #0A1F44;
  --fg: #0A0F1A;
  --fg-light: #F5F4EF;
  --accent: #C4530A;
  --accent-warm: #E8622A;
  --text-muted: #6B6B6B;
  --border: #E2E0D8;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  padding: 20px 48px;
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  text-decoration: none;
  color: var(--fg);
  letter-spacing: -0.5px;
}
.nav-logo-suffix { color: var(--accent); }
.nav-tagline {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.3px;
}

/* HERO */
.hero {
  padding: 80px 48px 64px;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-lede {
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 460px;
  margin-bottom: 32px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.badge {
  display: inline-block;
  padding: 6px 14px;
  background: #F0EDE6;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg);
}
.hero-accent-line {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-warm), transparent);
}

/* DEVICE FRAME */
.hero-device {
  display: flex;
  justify-content: center;
}
.device-frame {
  width: 280px;
  background: #111;
  border-radius: 36px;
  padding: 14px;
  box-shadow: 0 40px 80px rgba(10,31,68,0.15), 0 0 0 1px rgba(0,0,0,0.1);
}
.device-screen {
  background: #F0EDE6;
  border-radius: 26px;
  padding: 20px 18px;
  min-height: 480px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.app-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid #D8D5CC;
}
.app-logo {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  color: white;
}
.app-info { display: flex; flex-direction: column; }
.app-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; color: var(--fg); }
.app-status { font-size: 11px; color: #22C55E; font-weight: 600; }
.app-data { display: flex; flex-direction: column; gap: 10px; }
.data-block {
  background: white;
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1.5px solid transparent;
}
.data-block.active { border-color: var(--accent); }
.data-country { font-weight: 600; font-size: 13px; }
.data-size { font-family: var(--font-display); font-size: 16px; font-weight: 700; }
.data-days { font-size: 11px; color: var(--text-muted); }
.app-cta {
  margin-top: auto;
  text-align: center;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  padding: 12px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
}

/* PROOF */
.proof {
  background: var(--fg);
  color: var(--fg-light);
  padding: 48px;
}
.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 32px;
  flex-wrap: wrap;
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.proof-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -2px;
  color: white;
}
.proof-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.proof-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.15);
}

/* FEATURES */
.features {
  padding: 96px 48px;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.features-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--fg);
  max-width: 560px;
  margin-bottom: 64px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 64px;
}
.feature-item { display: flex; flex-direction: column; gap: 12px; }
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.feature-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
}
.feature-desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 420px;
}

/* DIASPORA */
.diaspora {
  background: #F0EDE6;
  padding: 96px 48px;
}
.diaspora-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.diaspora-headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 28px;
}
.diaspora-body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.routes-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.route-list { display: flex; flex-direction: column; gap: 0; }
.route-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr 1fr;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #D8D5CC;
  font-size: 15px;
}
.route-from, .route-to {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
}
.route-arrow { color: var(--accent); font-weight: 600; }
.route-use {
  text-align: right;
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
}

/* MANIFESTO */
.manifesto {
  background: var(--accent);
  padding: 80px 48px;
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500;
  line-height: 1.4;
  color: white;
  font-style: italic;
}
.manifesto-attribution {
  margin-top: 24px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

/* CLOSING */
.closing {
  padding: 96px 48px 80px;
  background: var(--bg);
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 20px;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 560px;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: var(--fg-light);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: white;
}
.footer-tagline {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  display: block;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-link:hover { color: white; }
.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,0.3);
}

/* PRICING COMPARE WIDGET */
.pricing-compare {
  background: var(--bg);
  padding: 96px 48px;
  border-top: 1px solid var(--border);
}
.pricing-compare-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-compare-header {
  text-align: center;
  margin-bottom: 48px;
}
.pricing-overline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.pricing-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  letter-spacing: -1.5px;
  line-height: 1.15;
  color: var(--fg);
  margin-bottom: 12px;
}
.pricing-sub {
  font-size: 16px;
  color: var(--text-muted);
}
.pricing-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}
.pricing-tab {
  padding: 8px 20px;
  border: 1.5px solid var(--border);
  border-radius: 40px;
  background: transparent;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.2s;
}
.pricing-tab:hover { border-color: var(--accent); color: var(--accent); }
.pricing-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}
.pricing-table {
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}
.pricing-row {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 0.9fr 0.9fr 1.1fr 1fr;
  gap: 0;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.pricing-row:last-child { border-bottom: none; }
.pricing-row-head {
  background: #F5F4EF;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  text-transform: uppercase;
}
.pricing-row-albafone {
  background: #FFF8EE;
  border-left: 4px solid var(--accent);
}
.col-provider {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}
.provider-name { font-family: var(--font-display); font-weight: 700; font-size: 15px; }
.provider-badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 2px 8px;
  background: var(--accent);
  color: white;
  border-radius: 20px;
}
.col-plan { color: var(--text-muted); }
.col-price { display: flex; flex-direction: column; }
.price-main { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--fg); }
.price-note { font-size: 11px; color: var(--text-muted); }
.col-pergb { font-family: var(--font-display); font-weight: 600; color: var(--fg); }
.pergb { font-size: 15px; }
.pergb.throttled { color: var(--text-muted); font-size: 13px; }
.col-network { font-size: 13px; color: var(--text-muted); }
.col-buy { text-align: right; }
.buy-btn {
  display: inline-block;
  padding: 8px 18px;
  background: var(--accent);
  color: white;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.buy-btn:hover { background: var(--accent-warm); }
.buy-btn-alt {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
}
.buy-btn-alt:hover { border-color: var(--fg); color: var(--fg); }
.pricing-disclaimer {
  margin-top: 20px;
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .pricing-compare { padding: 64px 24px; }
  .pricing-tabs { gap: 6px; }
  .pricing-tab { padding: 6px 14px; font-size: 13px; }
  .pricing-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 14px 16px;
  }
  .pricing-row-head { display: none; }
  .col-plan, .col-network { display: none; }
  .col-price, .col-pergb, .col-buy { justify-self: start; }
  .col-provider { grid-column: 1; }
  .col-price { grid-column: 2; grid-row: 1; }
  .col-pergb { grid-column: 1; grid-row: 2; }
  .col-buy { grid-column: 2; }
}
  .nav { padding: 16px 24px; }
  .hero { padding: 48px 24px 40px; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-device { display: none; }
  .proof { padding: 40px 24px; }
  .proof-inner { flex-direction: column; gap: 24px; }
  .proof-divider { display: none; }
  .features { padding: 64px 24px; }
  .features-grid { grid-template-columns: 1fr; gap: 32px; }
  .diaspora { padding: 64px 24px; }
  .diaspora-inner { grid-template-columns: 1fr; gap: 40px; }
  .manifesto { padding: 64px 24px; }
  .closing { padding: 64px 24px 48px; }
  .footer { padding: 32px 24px; }
  .footer-inner { flex-direction: column; align-items: flex-start; gap: 16px; }
  .nav-tagline { display: none; }
}