/* OrbanVPN landing — family.co-inspired, system fonts only */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: #0f0f10;
  color: #eef0f2;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Inter", system-ui, Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { margin: 0; letter-spacing: -0.02em; }
em { font-family: "Iowan Old Style", "Apple Garamond", "Palatino", Georgia, serif; font-style: italic; font-weight: 500; }
code { font-family: "SF Mono", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace; font-size: 0.92em; background: rgba(255,255,255,0.06); padding: 2px 6px; border-radius: 6px; }
section { padding: 96px 24px; max-width: 1120px; margin: 0 auto; }
@media (max-width: 720px) { section { padding: 64px 20px; } }

/* === NAV === */
.nav {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  background: rgba(15,15,16,0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.brand { display: inline-flex; align-items: center; gap: 14px; font-weight: 800; }
.logo {
  width: 64px; height: 64px;
  border-radius: 16px;
  display: inline-block;
  object-fit: cover;
  background: #0f0f10;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 24px -12px rgba(74,222,128,0.45);
}
.brand-name {
  font-size: 24px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #eef0f2;
}
.brand-vpn { color: #fff; font-weight: 900; margin-left: 2px; }
.nav-links { display: flex; gap: 28px; font-size: 15px; color: #c8ccd1; }
.nav-links a:hover { color: #fff; }
@media (max-width: 720px) { .nav-links { display: none; } }

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600; font-size: 16px;
  transition: transform .12s ease, background .15s ease, opacity .15s ease;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: #eef0f2; color: #0f0f10; }
.btn-primary:hover { background: #fff; }
.btn-ghost { color: #eef0f2; border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover { background: rgba(255,255,255,0.06); }
.btn-sm { padding: 10px 16px; font-size: 14px; }
.btn-lg { padding: 18px 28px; font-size: 17px; }
.tg-icon { width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #2aabee, #229ed9); display: inline-block; }

/* === HERO === */
.hero { text-align: center; padding-top: 96px; padding-bottom: 80px; }
.hero-title {
  font-size: clamp(44px, 8vw, 88px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
}
.hero-title em {
  font-family: inherit;
  font-style: normal;
  font-weight: 900;
  background: linear-gradient(135deg, #4ade80 0%, #fde047 50%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: #c8ccd1;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.5;
}
.hero-cta { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-meta { display: flex; justify-content: center; gap: 24px; color: #6b7280; font-size: 14px; flex-wrap: wrap; }

/* === STRIP === */
.strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 48px; padding-bottom: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-align: center;
}
.strip-num {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.strip-label { color: #9ca3af; font-size: 14px; margin-top: 4px; }
@media (max-width: 720px) { .strip { grid-template-columns: repeat(2, 1fr); } }

/* === FEATURES === */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.feature {
  background: #17181a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 32px;
  transition: transform .2s ease, border-color .2s ease;
}
.feature:hover { transform: translateY(-2px); border-color: rgba(255,255,255,0.14); }
.feature h3 { font-size: 19px; margin-bottom: 10px; font-weight: 700; background: linear-gradient(135deg, #fff 0%, #c8ccd1 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.feature p { color: #9ca3af; font-size: 15px; line-height: 1.55; margin: 0; }
@media (max-width: 960px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .features-grid { grid-template-columns: 1fr; } }

/* === HOW === */
.how { text-align: center; }
.how h2 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800; letter-spacing: -0.03em;
  margin-bottom: 56px;
  background: linear-gradient(135deg, #fff 0%, #c4b5fd 50%, #67e8f9 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; text-align: left;
}
.steps li {
  background: #17181a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 20px;
  padding: 28px;
}
.step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(74,222,128,0.12); color: #4ade80;
  font-weight: 700; font-size: 14px;
  margin-bottom: 16px;
}
.steps h4 { font-size: 18px; margin-bottom: 8px; font-weight: 600; }
.steps p { color: #9ca3af; font-size: 15px; margin: 0; }
.steps a { color: #4ade80; }
.how-cta { margin-top: 48px; }
@media (max-width: 720px) { .steps { grid-template-columns: 1fr; } }

/* === PRICE === */
.price { text-align: center; }
.price h2 {
  font-size: clamp(32px, 5vw, 56px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff 0%, #86efac 50%, #fbbf24 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.price-sub { color: #9ca3af; margin: 14px auto 48px; max-width: 540px; }
.plans {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  text-align: left;
}
.plan {
  background: #17181a;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  padding: 24px 20px;
  position: relative;
  display: flex; flex-direction: column; gap: 6px;
}
.plan-best { border-color: rgba(74,222,128,0.5); }
.plan-hero { background: linear-gradient(160deg, #1d3a23, #17181a 65%); border-color: rgba(74,222,128,0.4); }
.plan-badge {
  position: absolute; top: -10px; left: 16px;
  background: #4ade80; color: #0f0f10;
  padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.02em; text-transform: uppercase;
}
.plan-title { font-size: 14px; color: #9ca3af; }
.plan-price { font-size: 32px; font-weight: 700; letter-spacing: -0.03em; }
.plan-price span { font-size: 16px; color: #9ca3af; font-weight: 500; }
.plan-desc { font-size: 13px; color: #9ca3af; margin-top: 2px; }
.price-cta { margin-top: 40px; }
@media (max-width: 960px) { .plans { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .plans { grid-template-columns: 1fr; } }

/* === FAQ === */
.faq { max-width: 760px; }
.faq h2 {
  font-size: clamp(32px, 5vw, 48px); margin-bottom: 32px; font-weight: 800; letter-spacing: -0.03em; text-align: center;
  background: linear-gradient(135deg, #fff 0%, #f9a8d4 50%, #c4b5fd 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.faq details {
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 22px 4px;
}
.faq details:first-of-type { border-top: 1px solid rgba(255,255,255,0.08); }
.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 17px;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-weight: 400; font-size: 22px; color: #9ca3af;
  transition: transform .2s ease;
}
.faq details[open] summary::after { content: "−"; }
.faq details p { color: #c8ccd1; margin-top: 12px; font-size: 15px; line-height: 1.6; }
.faq a { color: #4ade80; }

/* === CTA FINAL === */
.cta-final {
  text-align: center;
  padding-top: 96px; padding-bottom: 96px;
  background: radial-gradient(ellipse at top, rgba(74,222,128,0.08), transparent 60%);
  max-width: none;
  margin: 48px 0 0;
}
.cta-final h2 {
  font-size: clamp(36px, 6vw, 64px); font-weight: 800; letter-spacing: -0.03em;
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cta-final p { color: #9ca3af; margin: 14px auto 32px; max-width: 480px; }

/* === FOOTER === */
.footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 32px 24px;
  max-width: 1120px; margin: 0 auto;
}
.footer-row {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
}
.footer-brand { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; }
.footer-brand .logo { width: 40px; height: 40px; border-radius: 12px; }
.footer-links { display: flex; gap: 24px; color: #c8ccd1; font-size: 15px; }
.footer-links a:hover { color: #fff; }
.footer-legal {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.04);
  color: #6b7280; font-size: 13px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
