:root {
  --bg: #f6f8fc;
  --surface: #ffffff;
  --surface-2: #eef3fb;
  --text: #151821;
  --muted: #6b7280;
  --border: #e2e8f0;
  --primary: #ff8b1f;
  --primary-2: #ffb347;
  --primary-dark: #d86600;
  --navy: #0b1020;
  --navy-2: #121a2f;
  --blue: #246bfe;
  --green: #15b981;
  --radius-lg: 28px;
  --radius-md: 20px;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.10);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
p { margin: 0 0 18px; color: var(--muted); }
h1, h2, h3 { margin: 0; letter-spacing: -0.045em; line-height: 1.08; }
h1 { font-size: clamp(44px, 7vw, 82px); }
h2 { font-size: clamp(32px, 4.8vw, 56px); }
h3 { font-size: 22px; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 252, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.78);
}
.nav { height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.03em; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: #fff; display: grid; place-items: center; font-size: 13px; box-shadow: 0 12px 26px rgba(255, 139, 31, .28);
}
.nav-links { display: flex; align-items: center; gap: 28px; color: #4b5563; font-size: 15px; font-weight: 700; }
.nav-links a:hover { color: var(--text); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-height: 52px; padding: 0 26px; border-radius: 999px;
  font-weight: 900; letter-spacing: -0.025em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
  border: 1px solid transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-2)); color: #fff; box-shadow: 0 18px 34px rgba(255, 139, 31, .28); }
.btn-primary:hover { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.btn-dark { min-height: 42px; padding: 0 19px; background: #111827; color: #fff; }
.btn-google { background: #fff; color: var(--text); border-color: var(--border); box-shadow: 0 12px 28px rgba(15, 23, 42, .06); }
.btn-light { background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.24); color: #fff; }
.btn.full { width: 100%; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 88px 0 84px;
  background:
    radial-gradient(circle at 16% 10%, rgba(255, 139, 31, .22), transparent 26%),
    radial-gradient(circle at 86% 20%, rgba(36, 107, 254, .16), transparent 30%),
    linear-gradient(180deg, #fff 0%, #f6f8fc 100%);
}
.hero::before {
  content: ""; position: absolute; right: -180px; top: 90px; width: 520px; height: 520px;
  border-radius: 50%; background: rgba(255, 139, 31, .12); filter: blur(10px);
}
.hero-grid, .split { display: grid; grid-template-columns: 1.02fr .98fr; gap: 58px; align-items: center; position: relative; }
.rating-row { display: inline-flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 20px; padding: 9px 14px; border-radius: 999px; background: #fff; box-shadow: 0 12px 30px rgba(15,23,42,.06); color: #4b5563; font-weight: 800; font-size: 14px; }
.stars { color: var(--primary); letter-spacing: 1px; }
.rating-divider { width: 5px; height: 5px; border-radius: 50%; background: #cbd5e1; }
.hero-sub { max-width: 690px; margin-top: 24px; font-size: 20px; color: #4b5563; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.microcopy { margin-top: 14px; font-size: 14px; font-weight: 700; color: #667085; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 680px; margin-top: 34px; }
.hero-proof div { padding: 18px; border: 1px solid var(--border); background: rgba(255,255,255,.78); border-radius: 18px; }
.hero-proof strong { display: block; font-size: 25px; letter-spacing: -0.04em; }
.hero-proof span { color: var(--muted); font-size: 13px; font-weight: 800; }

.hero-visual { position: relative; min-height: 560px; display: grid; place-items: center; }
.dashboard-shell { width: min(100%, 470px); padding: 18px; border: 1px solid rgba(255,255,255,.9); border-radius: 36px; background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(255,255,255,.76)); box-shadow: var(--shadow); }
.dashboard-head { height: 54px; display: flex; align-items: center; gap: 9px; padding: 0 16px; border-radius: 22px 22px 0 0; background: var(--navy); }
.dashboard-head span { width: 11px; height: 11px; border-radius: 50%; background: #475569; }
.dashboard-main { padding: 18px; background: #fff; border: 1px solid var(--border); border-top: 0; border-radius: 0 0 24px 24px; }
.status-panel { padding: 22px; border-radius: 22px; background: linear-gradient(135deg, var(--navy), #233252); color: #fff; }
.status-panel small { color: #b8c2d6; font-weight: 800; }
.status-panel strong { display: block; margin: 4px 0 6px; font-size: 30px; letter-spacing: -0.04em; }
.status-panel span { color: #dbe4f4; font-size: 14px; }
.speed-meter { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: center; margin: 16px 0; padding: 16px; border-radius: 20px; background: #f8fafc; }
.meter-ring { width: 98px; height: 98px; border-radius: 50%; display: grid; place-items: center; border: 10px solid #ffe3c4; box-shadow: inset 0 0 0 10px #fff; color: var(--primary-dark); text-align: center; }
.meter-ring span { display: block; font-weight: 950; font-size: 24px; line-height: 1; }
.meter-ring small { display: block; font-size: 11px; font-weight: 900; }
.speed-meter p { margin: 0; font-size: 14px; }
.mini-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.mini-grid div { padding: 16px; border-radius: 17px; border: 1px solid var(--border); background: #fff; }
.mini-grid small { display: block; color: var(--muted); font-weight: 800; margin-bottom: 4px; }
.mini-grid strong { display: block; }
.orbit-card { position: absolute; padding: 13px 17px; border-radius: 999px; background: #fff; color: #111827; font-size: 14px; font-weight: 950; box-shadow: 0 18px 50px rgba(15,23,42,.10); border: 1px solid var(--border); }
.orbit-one { top: 32px; left: 6px; }
.orbit-two { top: 118px; right: -4px; }
.orbit-three { bottom: 48px; left: 46px; }

.services-strip { padding: 48px 0; background: #fff; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.strip-header { display: flex; align-items: end; justify-content: space-between; gap: 26px; margin-bottom: 24px; }
.strip-header h2 { font-size: clamp(28px, 3.6vw, 42px); }
.strip-header p { max-width: 430px; margin: 0; }
.service-tabs { display: flex; flex-wrap: wrap; gap: 12px; }
.service-tabs span { padding: 12px 16px; border-radius: 999px; background: #f6f8fc; border: 1px solid var(--border); color: #334155; font-weight: 900; font-size: 14px; }
.service-tabs span:nth-child(1) { background: #111827; color: #fff; }

.section { padding: 92px 0; }
.section-header { max-width: 880px; margin-bottom: 44px; }
.centered { margin-left: auto; margin-right: auto; text-align: center; }
.section-header p { font-size: 18px; }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; width: fit-content; margin-bottom: 18px; padding: 8px 14px; border-radius: 999px; background: #fff1df; color: var(--primary-dark); font-size: 14px; font-weight: 950; }
.problem-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.problem-card, .feature-stack article, .use-card, .dark-feature-grid article, .offer-grid article { border: 1px solid var(--border); background: #fff; border-radius: var(--radius-md); padding: 26px; box-shadow: 0 14px 40px rgba(15,23,42,.05); }
.problem-card span { display: inline-flex; margin-bottom: 18px; color: var(--primary); font-weight: 950; }
.problem-card h3, .feature-stack h3, .use-card h3, .dark-feature-grid h3, .offer-grid h3 { margin-bottom: 12px; }
.question-box { margin-top: 30px; padding: 32px; border-radius: var(--radius-lg); background: var(--navy); color: #fff; text-align: center; }
.question-box p { color: #bac4d5; font-size: 18px; }
.question-box strong { display: block; max-width: 860px; margin: 0 auto; font-size: clamp(24px, 3.8vw, 40px); line-height: 1.1; letter-spacing: -0.045em; }

.solution, .comparison, .trust { background: #fff; }
.feature-stack { display: grid; gap: 16px; }
.feature-icon { width: 44px; height: 44px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 15px; background: #fff1df; color: var(--primary-dark); font-weight: 950; }
.use-cases { background: linear-gradient(180deg, #fff 0%, #f6f8fc 100%); }
.use-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.use-icon { width: 52px; height: 52px; margin-bottom: 18px; display: grid; place-items: center; border-radius: 18px; background: var(--navy); color: #fff; font-weight: 950; }
.use-card strong { display: block; margin-top: 16px; color: var(--primary-dark); }

.proxy-table { overflow: hidden; border-radius: var(--radius-lg); border: 1px solid var(--border); background: #fff; box-shadow: 0 14px 44px rgba(15,23,42,.05); }
.table-row { display: grid; grid-template-columns: 1.05fr .85fr 1.1fr; }
.table-row > div { padding: 18px; border-bottom: 1px solid var(--border); color: #475569; }
.table-row > div:first-child, .table-row > div:nth-child(2) { font-weight: 900; color: #111827; }
.table-head { background: #f1f5f9; }
.table-head > div { color: #111827; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }
.table-row:last-child > div { border-bottom: 0; }
.center-cta { display: flex; justify-content: center; margin-top: 34px; }

.dark-section { background: radial-gradient(circle at 20% 10%, rgba(255,139,31,.24), transparent 28%), linear-gradient(135deg, #090f1e, #14203a); color: #fff; }
.light p { color: #c6d0e0; }
.dark-eyebrow { background: rgba(255,255,255,.10); color: #fff; }
.dark-feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.dark-feature-grid article { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.10); box-shadow: none; }
.dark-feature-grid p { color: #c6d0e0; }
.reverse { grid-template-columns: .9fr 1.1fr; }
.pricing-card { padding: 30px; border-radius: 30px; background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow); }
.trial-badge { display: inline-flex; margin-bottom: 18px; padding: 8px 12px; background: #fff1df; color: var(--primary-dark); border-radius: 999px; font-weight: 950; }
.pricing-card ul { display: grid; gap: 10px; margin: 22px 0 26px; padding: 0; list-style: none; }
.pricing-card li { padding-left: 28px; position: relative; color: #334155; }
.pricing-card li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 950; }
.comparison-list { display: grid; gap: 12px; margin-top: 26px; }
.comparison-list div { padding: 18px; border-radius: 18px; background: #f8fafc; border: 1px solid var(--border); }
.comparison-list span { display: block; margin-bottom: 4px; font-weight: 950; }
.comparison-list p { margin: 0; }
.offer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.offer-grid a { display: inline-flex; margin-top: 8px; color: var(--primary-dark); font-weight: 950; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.trust-metric { padding: 32px; border-radius: var(--radius-lg); background: #f8fafc; border: 1px solid var(--border); text-align: center; }
.trust-metric span { display: block; color: var(--muted); font-weight: 900; margin-bottom: 8px; }
.trust-metric strong { display: block; font-size: clamp(24px, 3vw, 36px); letter-spacing: -0.04em; }
.disclosure { margin: 24px 0 0; padding: 18px; border-radius: 18px; background: #fff1df; color: #7c3d00; font-weight: 750; text-align: center; }
.faq-list { max-width: 900px; margin: 0 auto; display: grid; gap: 14px; }
details { padding: 21px 24px; border-radius: 20px; background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 26px rgba(15,23,42,.04); }
summary { cursor: pointer; color: #111827; font-size: 18px; font-weight: 950; letter-spacing: -0.02em; }
details p { margin: 14px 0 0; }
.final-cta { padding: 90px 0; background: #fff; }
.final-box { padding: 68px 34px; border-radius: 36px; background: radial-gradient(circle at 80% 0%, rgba(255,139,31,.36), transparent 32%), linear-gradient(135deg, #0b1020, #17213a); color: #fff; text-align: center; box-shadow: var(--shadow); }
.final-box p { max-width: 760px; margin-left: auto; margin-right: auto; color: #c6d0e0; font-size: 18px; }
.final-eyebrow { background: rgba(255,255,255,.10); color: #fff; }
.final-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 30px; }
.light-copy { color: #c6d0e0; }
.site-footer { padding: 36px 0; background: #090f1e; color: #fff; }
.footer-content { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.footer-content p { max-width: 680px; margin: 0; color: #aeb8ca; font-size: 14px; }
.footer-logo { color: #fff; }

@media (max-width: 980px) {
  .hero-grid, .split, .reverse { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; }
  .problem-grid, .use-grid, .dark-feature-grid, .offer-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .strip-header { align-items: flex-start; flex-direction: column; }
  .trust-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 28px, var(--max)); }
  .nav { height: 68px; }
  .nav .btn-dark { display: none; }
  .hero { padding: 58px 0 64px; }
  .hero-proof, .problem-grid, .use-grid, .dark-feature-grid, .offer-grid, .mini-grid { grid-template-columns: 1fr; }
  .hero-actions, .final-actions { align-items: stretch; flex-direction: column; }
  .btn { width: 100%; }
  .hero-visual { min-height: auto; margin-top: 10px; }
  .orbit-card { display: none; }
  .dashboard-shell { width: 100%; border-radius: 26px; }
  .speed-meter { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .table-row { min-width: 820px; }
  .proxy-table { overflow-x: auto; }
  .footer-content { align-items: flex-start; flex-direction: column; }
  h1 { font-size: 43px; }
}
