:root {
  --field: #0c100e;
  --field-deep: #070a08;
  --field-mid: #0a1210;
  --panel: #161c19;
  --panel-raised: #1e2622;
  --ink: #ffffff;
  --ink-muted: #c8d0cb;
  --money: #3ddb8e;
  --urgent: #ff6b5a;
  --prep: #e8b84a;
  --hairline: #2a3530;
  --radius: 16px;
  --header-h: 64px;
  --max: 1080px;
  --font: "DM Sans", system-ui, sans-serif;
  --display: "Sora", "DM Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(61, 219, 142, 0.12), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(232, 184, 74, 0.08), transparent 50%),
    linear-gradient(180deg, var(--field) 0%, var(--field-deep) 45%, var(--field-mid) 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

a {
  color: var(--money);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: #6eefb0;
}

img {
  max-width: 100%;
  display: block;
}

.glow {
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.45;
}

.glow-a {
  width: 340px;
  height: 340px;
  top: 12vh;
  left: -80px;
  background: rgba(61, 219, 142, 0.22);
}

.glow-b {
  width: 280px;
  height: 280px;
  bottom: 18vh;
  right: -60px;
  background: rgba(255, 107, 90, 0.12);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.75rem 1.25rem;
  background: rgba(12, 16, 14, 0.82);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(42, 53, 48, 0.9);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--ink);
  text-decoration: none;
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 10px;
  height: 22px;
  border-radius: 2px;
  background: linear-gradient(180deg, var(--money), #1fa86a);
  box-shadow: 0 0 18px rgba(61, 219, 142, 0.55);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--hairline);
  border-radius: 12px;
  background: var(--panel);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
}

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

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

.nav-cta {
  padding: 0.55rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(61, 219, 142, 0.45);
  background: rgba(61, 219, 142, 0.12);
  color: var(--money) !important;
}

.hero,
.section {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

.hero {
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--money);
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 14ch;
}

.subtitle {
  margin: 0.85rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.lede {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  color: var(--ink-muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.85rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: var(--field);
  background: linear-gradient(135deg, #55e9a0, var(--money) 45%, #2bb874);
  box-shadow: 0 0 0 1px rgba(61, 219, 142, 0.35), 0 12px 40px rgba(61, 219, 142, 0.28);
}

.btn-primary:hover {
  color: var(--field);
  box-shadow: 0 0 0 1px rgba(61, 219, 142, 0.5), 0 16px 48px rgba(61, 219, 142, 0.38);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--hairline);
  background: rgba(22, 28, 25, 0.7);
}

.hero-stats {
  list-style: none;
  margin: 2.75rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.hero-stats li {
  padding: 1rem 1.05rem;
  border-radius: 14px;
  background: rgba(22, 28, 25, 0.88);
  border: 1px solid var(--hairline);
  box-shadow: inset 4px 0 0 var(--money);
}

.hero-stats strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--money);
}

.hero-stats span {
  display: block;
  margin-top: 0.35rem;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.section {
  padding: 3.5rem 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2rem;
}

.section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.section-copy {
  margin: 1rem 0 0;
  color: var(--ink-muted);
}

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

.feature-card {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: var(--radius);
  background: rgba(22, 28, 25, 0.92);
  border: 1px solid var(--hairline);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 219, 142, 0.35);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28), 0 0 28px rgba(61, 219, 142, 0.08);
}

.feature-index {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.feature-card h3 {
  margin: 0.7rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

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

.tone-urgent { box-shadow: inset 4px 0 0 var(--urgent); }
.tone-prep { box-shadow: inset 4px 0 0 var(--prep); }
.tone-money { box-shadow: inset 4px 0 0 var(--money); }
.tone-muted { box-shadow: inset 4px 0 0 var(--ink-muted); }

.about-panel,
.contact-panel {
  padding: clamp(1.5rem, 4vw, 2.4rem);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(145deg, rgba(30, 38, 34, 0.95), rgba(22, 28, 25, 0.92));
  border: 1px solid var(--hairline);
  box-shadow: 0 0 60px rgba(61, 219, 142, 0.06);
}

.about-panel p,
.contact-panel .section-copy {
  color: var(--ink-muted);
}

.disclaimer {
  margin-top: 1.4rem !important;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  border: 1px solid rgba(232, 184, 74, 0.28);
  background: rgba(232, 184, 74, 0.08);
  color: var(--ink-muted) !important;
  font-size: 0.95rem;
}

.meta-line {
  margin: 1rem 0 0;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--ink-muted);
}

.policy {
  margin-top: 1.5rem;
  padding: clamp(1.35rem, 3vw, 2rem);
  border-radius: var(--radius);
  background: rgba(22, 28, 25, 0.9);
  border: 1px solid var(--hairline);
}

.policy h3 {
  margin: 1.6rem 0 0.55rem;
  font-family: var(--display);
  font-size: 1.1rem;
}

.policy p,
.policy li {
  color: var(--ink-muted);
}

.policy ul {
  margin: 0.6rem 0 0;
  padding-left: 1.2rem;
}

.reply-hint {
  margin: 0.75rem 0 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  color: var(--prep);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.contact-card {
  padding: 1.05rem 1.1rem;
  border-radius: 14px;
  background: var(--panel);
  border: 1px solid var(--hairline);
}

.contact-label {
  display: block;
  margin-bottom: 0.35rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.contact-card a,
.contact-card > span:last-child {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  word-break: break-word;
}

.contact-card a:hover {
  color: var(--money);
}

.site-footer {
  width: min(100% - 2.5rem, var(--max));
  margin: 1rem auto 0;
  padding: 2rem 0 2.75rem;
  border-top: 1px solid var(--hairline);
  display: grid;
  gap: 0.85rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--display);
  font-weight: 700;
}

.site-footer p {
  margin: 0;
  color: var(--ink-muted);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--ink-muted);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--money);
}

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

  .hero-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

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

  .site-nav {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    left: 1rem;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.35rem;
    padding: 0.85rem;
    border-radius: 16px;
    background: rgba(22, 28, 25, 0.98);
    border: 1px solid var(--hairline);
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 0.75rem 0.85rem;
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(61, 219, 142, 0.08);
  }

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

  .hero {
    padding-top: 3rem;
  }

  .feature-grid,
  .contact-grid,
  .hero-stats {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn,
  .feature-card {
    transition: none;
  }
}
