@import url("https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500&display=swap");

:root {
  --ink: #0e1420;
  --ink-2: #33405a;
  --ink-3: #66728a;
  --paper: #f7f6f2;
  --surface: #ffffff;
  --line: #e6e3d9;
  --line-2: #dcd8cb;

  --navy: #10233f;
  --navy-2: #163a63;
  --navy-bright: #2a5f96;
  --gold: #b8924b;
  --gold-bright: #d8b478;
  --good: #2f8f6b;

  --dark: #0a1220;
  --dark-2: #0f1d33;
  --dark-line: rgba(255, 255, 255, 0.1);
  --on-dark: #f3f4f1;
  --on-dark-2: #aab3c2;

  --r-lg: 22px;
  --r-md: 14px;
  --r-pill: 999px;
  --sh-1: 0 1px 2px rgba(14, 20, 32, 0.04), 0 8px 24px rgba(14, 20, 32, 0.06);
  --sh-2: 0 20px 60px rgba(10, 18, 32, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-display: "Space Grotesk", "Inter", sans-serif;
  --font-body: "Inter", sans-serif;
  --font-mono: "JetBrains Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  margin: 0 0 0.5em;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--ink-2); }
a { color: inherit; }
img { max-width: 100%; display: block; }
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 96px 0; }
.section-tight { padding: 56px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy-2);
  background: rgba(16, 35, 63, 0.06);
  border: 1px solid rgba(16, 35, 63, 0.12);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 20px;
}
.eyebrow.on-dark {
  color: var(--gold-bright);
  background: rgba(216, 180, 120, 0.1);
  border-color: rgba(216, 180, 120, 0.25);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--good); }

.section-head { max-width: 680px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 38px); }
.section-head p { font-size: 17px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 246, 242, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1160px;
  margin: 0 auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  text-decoration: none;
  color: var(--ink);
}
.brand-mark {
  width: 30px; height: 30px;
  border-radius: 8px;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-bright);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
}
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
.nav-cta-wrap { display: flex; align-items: center; gap: 18px; }
.nav-toggle { display: none; }
@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: #221708;
  box-shadow: 0 10px 30px rgba(184, 146, 75, 0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 14px 36px rgba(184, 146, 75, 0.45); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--ink-3); }
.btn-on-dark {
  background: transparent;
  color: var(--on-dark);
  border-color: var(--dark-line);
}
.btn-on-dark:hover { border-color: rgba(255,255,255,0.35); }
.btn-sm { padding: 9px 18px; font-size: 13.5px; }
.btn-block { width: 100%; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 88px 0 60px;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 620px;
  background: radial-gradient(60% 60% at 30% 20%, rgba(16, 35, 63, 0.08), transparent 70%),
              radial-gradient(50% 50% at 80% 10%, rgba(184, 146, 75, 0.12), transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; text-align: center; max-width: 820px; margin: 0 auto; }
.hero h1 {
  font-size: clamp(34px, 5.6vw, 60px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.hero h1 .accent { color: var(--navy-2); }
.hero-sub {
  font-size: 18.5px;
  color: var(--ink-2);
  max-width: 620px;
  margin: 0 auto 34px;
}
.hero-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 44px; }
.hero-trustline {
  display: flex;
  gap: 22px;
  justify-content: center;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.hero-trustline span { display: inline-flex; align-items: center; gap: 6px; }
.hero-trustline .tick { color: var(--good); }

/* ---------- Diagram / device frame ---------- */
.hero-visual {
  margin-top: 56px;
  border-radius: var(--r-lg);
  background: var(--dark);
  border: 1px solid var(--dark-line);
  box-shadow: var(--sh-2);
  overflow: hidden;
  position: relative;
}
.hero-visual-bar {
  display: flex;
  gap: 8px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--dark-line);
}
.hero-visual-bar span { width: 10px; height: 10px; border-radius: 50%; }
.hero-visual-bar span:nth-child(1) { background: #ff5f57; }
.hero-visual-bar span:nth-child(2) { background: #febc2e; }
.hero-visual-bar span:nth-child(3) { background: #28c840; }
.hero-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding: 36px 24px 40px;
}
.hero-flow-step { padding: 0 14px; position: relative; color: var(--on-dark); text-align: left; }
.hero-flow-step .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gold-bright);
  margin-bottom: 10px;
  display: block;
}
.hero-flow-step h4 { color: var(--on-dark); font-size: 15px; margin-bottom: 6px; }
.hero-flow-step p { color: var(--on-dark-2); font-size: 13.5px; margin: 0; }
.hero-flow-step::after {
  content: "→";
  position: absolute;
  right: -6px;
  top: 2px;
  color: var(--dark-line);
  font-size: 18px;
}
.hero-flow-step:last-child::after { display: none; }
@media (max-width: 760px) {
  .hero-flow { grid-template-columns: 1fr; gap: 22px; }
  .hero-flow-step::after { display: none; }
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal-delay-1.in { transition-delay: 0.08s; }
.reveal-delay-2.in { transition-delay: 0.16s; }
.reveal-delay-3.in { transition-delay: 0.24s; }
.reveal-delay-4.in { transition-delay: 0.32s; }

/* ---------- USP grid ---------- */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.usp-grid .usp-card:first-child { grid-column: span 1; }
@media (max-width: 940px) { .usp-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .usp-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px;
  box-shadow: var(--sh-1);
}
.usp-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  color: var(--gold-bright);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 18px;
}
.usp-card h3 { font-size: 18px; margin-bottom: 8px; }
.usp-card p { font-size: 14.5px; margin: 0; }

/* ---------- Dark band (privacy flow) ---------- */
.band-dark {
  background: linear-gradient(180deg, var(--dark), var(--dark-2));
  color: var(--on-dark);
}
.band-dark h2, .band-dark h3, .band-dark h4 { color: var(--on-dark); }
.band-dark p { color: var(--on-dark-2); }

.flow-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  counter-reset: step;
}
@media (max-width: 900px) { .flow-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flow-steps { grid-template-columns: 1fr; } }
.flow-step {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-line);
  border-radius: var(--r-lg);
  padding: 26px 22px;
  position: relative;
}
.flow-step .step-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--gold-bright);
  border: 1px solid rgba(216,180,120,0.35);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.flow-step h4 { font-size: 16px; margin-bottom: 8px; }
.flow-step p { font-size: 14px; margin: 0; }

/* ---------- Hosting cards ---------- */
.host-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 980px) { .host-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .host-grid { grid-template-columns: 1fr; } }
.host-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.host-card.lead {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--sh-1);
  position: relative;
}
.host-card .flag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.host-card.lead .flag { color: var(--gold); }
.host-card h3 { font-size: 18px; margin-bottom: 0; }
.host-card .tagline { font-size: 14px; color: var(--ink-2); margin: 0; }
.host-card ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.host-card li { font-size: 13.5px; color: var(--ink-2); display: flex; gap: 8px; align-items: flex-start; }
.host-card li::before { content: "✓"; color: var(--good); font-weight: 700; flex-shrink: 0; }
.badge-pill {
  position: absolute; top: -12px; right: 20px;
  background: var(--gold);
  color: #221708;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
@media (max-width: 980px) { .pricing-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.price-card.featured {
  border-color: var(--navy-2);
  box-shadow: 0 0 0 1px var(--navy-2), var(--sh-2);
  background: linear-gradient(180deg, #fff, #fbfaf6);
}
.price-card .badge-pill.navy { background: var(--navy-2); color: #fff; }
.price-card .tier-name { font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 10px; }
.price-card .price { font-family: var(--font-display); font-size: 32px; font-weight: 700; margin-bottom: 2px; }
.price-card .price span { font-size: 14px; font-weight: 500; color: var(--ink-3); font-family: var(--font-body); }
.price-card .setup { font-size: 13px; color: var(--ink-3); margin-bottom: 20px; }
.price-card dl { margin: 0 0 22px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.price-card dt { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--ink-3); margin-bottom: 3px; }
.price-card dd { margin: 0; font-size: 13.5px; color: var(--ink-2); }
.byoh-note {
  margin-top: 28px;
  background: var(--surface);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-lg);
  padding: 22px 26px;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
}
.byoh-note h4 { font-size: 15.5px; margin-bottom: 4px; }
.byoh-note p { font-size: 14px; margin: 0; max-width: 620px; }

/* ---------- Trust strip ---------- */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.trust-items {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  padding: 26px 0;
}
.trust-items span {
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--ink-2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust-items .tick { color: var(--good); font-weight: 700; }

.legal-callout {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 8px 0 0;
}
.legal-callout p { font-size: 15px; font-style: italic; color: var(--ink-2); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15.5px;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.faq-q .plus { font-size: 20px; color: var(--navy-2); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq-item.open .faq-q .plus { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s var(--ease), padding 0.3s var(--ease);
  padding: 0 24px;
}
.faq-item.open .faq-a { max-height: 240px; padding: 0 24px 20px; }
.faq-a p { font-size: 14.5px; margin: 0; }

/* ---------- Footer / contact ---------- */
.footer-cta {
  background: linear-gradient(180deg, var(--navy), #0c1a30);
  color: var(--on-dark);
  border-radius: var(--r-lg);
  padding: 64px 40px;
  text-align: center;
  margin: 0 24px;
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(216,180,120,0.14), transparent 70%);
}
.footer-cta-inner { position: relative; max-width: 620px; margin: 0 auto; }
.footer-cta h2 { color: #fff; font-size: clamp(26px, 4vw, 36px); }
.footer-cta p { color: var(--on-dark-2); font-size: 16px; margin-bottom: 30px; }
.footer-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.footer-contact-row {
  display: flex; gap: 26px; justify-content: center; flex-wrap: wrap;
  margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--dark-line);
  font-size: 14.5px;
}
.footer-contact-row a { text-decoration: none; color: var(--on-dark); display: inline-flex; align-items: center; gap: 8px; }
.footer-contact-row a:hover { color: var(--gold-bright); }

footer.site-footer {
  padding: 40px 24px 50px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-3);
}
footer.site-footer .foot-links { display: flex; gap: 20px; justify-content: center; margin-top: 10px; }
footer.site-footer a { color: var(--ink-3); text-decoration: none; }
footer.site-footer a:hover { color: var(--ink); }
