:root {
  --bg: #050812;
  --bg-elevated: #0b1220;
  --card: #111a2d;
  --border: rgba(148, 163, 184, 0.18);
  --text: #e2e8f0;
  --muted: #94a3b8;
  --accent: #4ade80;
  --accent-soft: #86efac;
  --blue: #93c5fd;
  --radius: 14px;
  /* System stack only — avoids third-party font/CSS requests (helps TLS “broken HTTPS” behind some proxies). */
  --font: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1080px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: var(--accent);
  color: #0f172a;
  font-weight: 700;
  border-radius: 8px;
  z-index: 1000;
}

.wrap {
  width: min(100% - 40px, var(--max));
  margin-inline: auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 18, 0.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
}

.logo-mark:hover .logo-mark-text {
  color: var(--accent-soft);
}

.logo-mark-img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.logo-mark-text {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  transition: color 0.15s ease;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a[aria-current="page"] {
  color: var(--accent-soft);
}

.nav-cta {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(74, 222, 128, 0.35);
  color: var(--accent-soft) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(17, 26, 45, 0.6);
  cursor: pointer;
}

.nav-toggle-bar {
  display: block;
  height: 2px;
  width: 20px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
}

@media (max-width: 720px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    right: 20px;
    top: 72px;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    min-width: 200px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 10px 6px;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: clamp(48px, 10vw, 96px) 0 clamp(56px, 8vw, 88px);
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  inset: -20% -10% auto;
  height: 70%;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(74, 222, 128, 0.14), transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
}

.hero-brand {
  margin-bottom: 20px;
}

.hero-logo {
  display: block;
  width: min(120px, 28vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 12px 40px rgba(74, 222, 128, 0.22));
}

.brand-strip {
  border-block: 1px solid var(--border);
  background: rgba(17, 26, 45, 0.45);
}

.brand-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 0;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
}

.brand-strip-inner img {
  object-fit: contain;
  opacity: 0.95;
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
}

.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.2rem, 5vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.lede {
  margin: 0 0 28px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, #4ade80, #22c55e);
  color: #0f172a;
  box-shadow: 0 8px 28px rgba(34, 197, 94, 0.25);
}

.btn-primary:hover {
  box-shadow: 0 10px 36px rgba(34, 197, 94, 0.35);
}

.btn-ghost {
  border-color: var(--border);
  color: var(--text);
  background: rgba(17, 26, 45, 0.5);
}

.btn-ghost:hover {
  border-color: rgba(148, 163, 184, 0.35);
  background: rgba(17, 26, 45, 0.85);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 1rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-stats li {
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 26, 45, 0.55);
}

.hero-stats strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--accent-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.hero-stats span {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

/* Sections */
.section {
  padding: clamp(56px, 8vw, 88px) 0;
}

.section-alt {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.5), transparent);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.section-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.section-mark {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
  margin-top: 4px;
}

@media (max-width: 520px) {
  .section-head {
    flex-direction: column;
    gap: 12px;
  }

  .section-mark {
    margin-top: 0;
  }
}

.section-intro {
  margin: 0 0 36px;
  max-width: 40rem;
  color: var(--muted);
}

.section-head .section-intro {
  margin-bottom: 0;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

@media (max-width: 900px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature-card {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--card);
}

.feature-card h3 {
  margin: 10px 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.feature-icon-wrap {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.22);
  margin-bottom: 4px;
}

.feature-icon-wrap img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.section-recky {
  border-top: 1px solid var(--border);
}

.recky-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(24px, 5vw, 48px);
  align-items: center;
}

@media (max-width: 860px) {
  .recky-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .recky-copy .section-intro,
  .recky-copy .eyebrow {
    margin-inline: auto;
  }

  .recky-bullets {
    text-align: left;
    max-width: 28rem;
    margin-inline: auto;
  }
}

.recky-visual {
  display: flex;
  justify-content: center;
}

.recky-img {
  max-width: min(100%, 320px);
  height: auto;
  object-fit: contain;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 26, 45, 0.6);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.recky-lede {
  margin-bottom: 20px !important;
}

.recky-bullets {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.7;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

@media (max-width: 800px) {
  .split {
    grid-template-columns: 1fr;
  }
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.steps li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: var(--muted);
  font-weight: 600;
}

.step-num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.28);
  color: var(--accent-soft);
  font-weight: 800;
  font-size: 0.85rem;
}

.panel {
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: rgba(17, 26, 45, 0.65);
}

.panel-quote {
  margin: 0 0 12px;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  font-style: italic;
}

.panel-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.panel-branded {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.panel-logo {
  object-fit: contain;
}

.cta-section {
  text-align: center;
}

.cta-logo {
  display: block;
  margin: 0 auto 16px;
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.cta-inner h2 {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 3.5vw, 2.25rem);
  font-weight: 800;
}

.cta-inner p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 28rem;
  margin-inline: auto;
}

.fine-print {
  margin-top: 16px !important;
  font-size: 0.8rem !important;
  color: var(--muted) !important;
  opacity: 0.85;
}

.site-footer {
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo {
  object-fit: contain;
  border-radius: 10px;
}

.footer-brand {
  display: block;
  font-weight: 800;
  color: var(--text);
  font-size: 0.95rem;
}

.footer-tag {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 2px;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.footer-privacy {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
}

.footer-privacy:hover {
  color: var(--accent-soft);
  text-decoration: underline;
}

.footer-domain {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-domain:hover {
  text-decoration: underline;
}

.footer-meta {
  font-weight: 600;
}

/* Legal / privacy */
.legal-page {
  padding: 28px 0 56px;
}

.legal-doc {
  max-width: 42rem;
  margin: 0 auto;
}

.legal-doc h1 {
  margin: 0 0 8px;
  font-size: clamp(1.75rem, 4vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.legal-effective {
  margin: 0 0 28px;
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 600;
}

.legal-doc h2 {
  margin: 28px 0 10px;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.legal-doc h2:first-of-type {
  margin-top: 0;
}

.legal-doc p {
  margin: 0 0 12px;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--muted);
}

.legal-doc p strong {
  color: var(--text);
  font-weight: 700;
}

.legal-doc a {
  color: var(--accent-soft);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-doc a:hover {
  color: var(--accent);
}
