@font-face {
  font-family: "Barlow";
  src: url("/barlow-400.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Barlow";
  src: url("/barlow-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #070c18;
  --navy: #090b13;
  --navy-2: #0d1322;
  --navy-3: #121d34;
  --navy-4: #1c2b46;
  --cyan: #00bfbf;
  --cyan-strong: #16d4d4;
  --cyan-soft: rgba(0, 191, 191, 0.12);
  --ink: #f4f8ff;
  --muted: #aab7cb;
  --line: rgba(255, 255, 255, 0.11);
  --panel: rgba(18, 29, 52, 0.82);
  --panel-strong: rgba(23, 36, 60, 0.94);
  --font: "Barlow", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(ellipse at top, rgba(0, 191, 191, 0.14), transparent 44%),
    linear-gradient(180deg, var(--navy-2), var(--bg) 48%, #050915);
  color: var(--ink);
  font-family: var(--font);
  line-height: 1.58;
}
img { max-width: 100%; display: block; }
a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--cyan-strong); }
.skip-link {
  position: absolute;
  left: -999px;
  top: 8px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--cyan);
  color: #031515;
  border-radius: 8px;
}
.skip-link:focus { left: 8px; }
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(6, 11, 22, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.header-content {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.logo { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.logo-image { height: 56px; width: auto; object-fit: contain; }
.nav { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-toggle {
  display: none;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 10px;
}
.btn-primary,
.btn-secondary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary {
  background: var(--cyan);
  color: #031515;
  border: 1px solid var(--cyan);
  box-shadow: 0 16px 34px rgba(0, 191, 191, 0.18);
}
.btn-primary:hover { background: var(--cyan-strong); color: #031515; }
.btn-secondary,
.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.btn-secondary:hover,
.btn-ghost:hover { border-color: var(--cyan); color: var(--ink); }
.hero {
  padding: 58px 0 58px;
  text-align: center;
}
.hero-logo {
  width: min(340px, 74vw);
  max-height: 300px;
  object-fit: contain;
  margin: 0 auto 18px;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.38));
}
.eyebrow,
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 14px;
  border: 1px solid rgba(0, 191, 191, 0.34);
  border-radius: 999px;
  background: var(--cyan-soft);
  color: #b9f7f7;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.hero h1 {
  margin: 0 auto 18px;
  max-width: 980px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}
.hero p {
  max-width: 720px;
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 22px);
}
.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.setup-strip {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin: 26px auto 0;
  color: var(--muted);
}
.setup-strip span::before {
  content: "✓";
  margin-right: 9px;
  color: var(--ink);
}
.hero-grid,
.card-grid,
.two-col,
.legal-grid,
.agent-list,
.pricing-grid {
  display: grid;
  gap: 18px;
}
.hero-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 52px;
}
.card-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.agent-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}
.card,
.panel,
.legal-card,
.step-card,
.faq-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}
.card,
.step-card,
.faq-item { padding: 26px; }
.card strong,
.step-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.18;
}
.card span,
.kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.card p,
.step-card p,
.faq-item p,
.legal-card p,
.legal-card li { color: var(--muted); }
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 8px;
  background: rgba(0, 191, 191, 0.08);
  border: 1px solid rgba(0, 191, 191, 0.36);
  color: var(--cyan);
}
.icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.capability-table-wrap { overflow-x: auto; }
.capability-table td:first-child {
  color: var(--ink);
  font-weight: 700;
}
.fine-print {
  max-width: 820px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}
.section {
  padding: 76px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.section-alt {
  background:
    radial-gradient(ellipse at 16% 0, rgba(0, 191, 191, 0.08), transparent 36%),
    rgba(255, 255, 255, 0.02);
}
.section-header {
  max-width: 780px;
  margin: 0 auto 44px;
  text-align: center;
}
.section-header h1,
.section-header h2,
.legal-card h1 {
  margin: 0 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
}
.section-header p { margin: 0; color: var(--muted); font-size: 18px; }
.highlight { color: var(--cyan); }
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--cyan);
  color: #031515;
  font-weight: 700;
}
.download-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding: 36px;
}
.download-panel img { width: min(360px, 100%); margin: 0 auto; }
.price {
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
  margin: 8px 0 14px;
}
.pricing-card { padding: 34px; }
.pricing-card h2 {
  margin: 0 0 14px;
  font-size: clamp(38px, 5vw, 58px);
  line-height: 0.98;
}
.pricing-card ul {
  margin: 24px 0;
  padding-left: 20px;
  color: var(--muted);
}
.pricing-card li { margin: 8px 0; }
.pricing-intro {
  max-width: 860px;
  margin: 0 auto 48px;
  text-align: center;
}
.pricing-intro h1,
.pricing-intro h2 {
  margin: 0 auto 18px;
  font-size: clamp(42px, 6vw, 68px);
  line-height: 0.98;
}
.pricing-intro p {
  max-width: 780px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 18px;
}
.pricing-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 56px;
}
.mini-card {
  min-height: 108px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  display: grid;
  grid-template-columns: 34px 1fr;
  column-gap: 14px;
  align-items: start;
}
.mini-card strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  grid-column: 2;
}
.mini-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  grid-column: 2;
}
.benefit-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  margin-top: 4px;
  align-items: center;
  justify-content: center;
  color: #c4cee0;
  grid-column: 1;
  grid-row: 1 / span 2;
}
.benefit-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pricing-model {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
  max-width: 960px;
  margin: 0 auto;
}
.pricing-plan {
  position: relative;
  padding: 44px 36px 34px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--panel);
}
.pricing-plan-primary {
  border-color: var(--cyan);
  box-shadow: 0 0 0 1px rgba(0, 191, 191, 0.18), 0 28px 70px rgba(0, 0, 0, 0.22);
}
.plan-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 142px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--cyan);
  color: #031515;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.muted-kicker { color: #8ea1be; }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin: 16px 0 4px;
}
.plan-price strong {
  color: var(--ink);
  font-size: clamp(52px, 8vw, 70px);
  line-height: 0.92;
}
.plan-price span {
  color: var(--muted);
  font-size: 20px;
  font-weight: 700;
}
.check-list {
  margin: 42px 0 34px;
  padding: 0;
  list-style: none;
}
.check-list li {
  position: relative;
  padding: 12px 0 12px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--ink);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--cyan);
  font-weight: 700;
}
.btn-wide {
  width: 100%;
  min-height: 92px;
  text-align: center;
  font-size: 16px;
}
.checkout-note {
  margin: -28px 0 0;
  color: #031515;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  position: relative;
  pointer-events: none;
}
.updates-box {
  margin-top: 44px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  text-align: center;
}
.updates-box strong,
.updates-box span {
  display: block;
}
.updates-box strong {
  color: var(--ink);
  font-size: 17px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.updates-box span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
.pricing-note {
  max-width: 980px;
  margin: 26px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}
.muted { color: var(--muted); }
.legal-page {
  padding: 64px 0 82px;
}
.legal-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 38px;
}
.legal-card h2 { margin-top: 34px; font-size: 25px; }
.legal-card h3 { margin-top: 24px; }
.legal-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 28px;
}
.legal-card-link {
  display: block;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-strong);
  color: var(--ink);
}
.legal-card-link span {
  display: block;
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.legal-card-link strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.16;
}
.legal-card-link p { margin: 0; }
.legal-card code {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 5px;
}
.legal-meta { color: var(--muted); margin-top: -4px; }
.notice-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 24px;
  overflow: hidden;
  border-radius: 8px;
}
.notice-table th,
.notice-table td {
  padding: 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}
.notice-table th { color: var(--ink); background: rgba(255, 255, 255, 0.05); }
.footer {
  padding: 54px 0 28px;
  background: #050915;
  border-top: 1px solid var(--line);
}
.footer-content {
  display: grid;
  grid-template-columns: 1.1fr 1.6fr;
  gap: 40px;
}
.footer-brand .logo-image { height: 48px; }
.footer-tagline,
.footer-bottom { color: var(--muted); }
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.footer-column h4 { margin: 0 0 10px; }
.footer-link { display: block; margin: 7px 0; color: var(--muted); }
.footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.footer-bottom p { margin: 7px 0; }

@media (max-width: 860px) {
  .container { width: min(100% - 28px, 1160px); }
  .header-content { min-height: 72px; }
  .logo-image { height: 44px; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 14px;
    right: 14px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #08101f;
    flex-direction: column;
    align-items: stretch;
  }
  .nav.is-open { display: flex; }
  .hero { padding-top: 54px; }
  .hero-grid,
  .card-grid,
  .two-col,
  .agent-list,
  .pricing-grid,
  .pricing-benefits,
  .pricing-model,
  .download-panel,
  .footer-content,
  .footer-links,
  .legal-grid { grid-template-columns: 1fr; }
  .legal-card { padding: 26px; }
}
