:root {
  color-scheme: light;
  --ink: #15161a;
  --muted: #626978;
  --line: #d9ded8;
  --paper: #f6f4ed;
  --panel: #ffffff;
  --panel-soft: #ebe8dd;
  --accent: #167c59;
  --accent-2: #d49b2b;
  --accent-3: #2c5f8f;
  --danger: #9b3d33;
  --shadow: 0 18px 46px rgba(34, 39, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 8%, rgba(212, 155, 43, 0.15), transparent 26rem),
    linear-gradient(180deg, #fbfaf6 0%, var(--paper) 48%, #ece8dc 100%);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  border-bottom: 1px solid rgba(21, 22, 26, 0.08);
  background: rgba(251, 250, 246, 0.88);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 2vw, 1.4rem);
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
}

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

.hero {
  min-height: calc(100vh - 4.2rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(22rem, 0.86fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: center;
  padding: clamp(3rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem) 3rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  max-width: 12ch;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 700;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.2rem, 5vw, 4.4rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  max-width: 44rem;
  color: #343943;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.8rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.78rem 1.1rem;
  border: 1px solid var(--ink);
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button.gold {
  border-color: #b77c14;
  background: var(--accent-2);
  color: #191713;
}

.console {
  border: 1px solid rgba(21, 22, 26, 0.12);
  border-radius: 8px;
  background: #111417;
  color: #e8efe7;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.console-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: #b7c1b8;
  font-size: 0.85rem;
}

.console-body {
  padding: 1rem;
  font-family: "Cascadia Mono", Consolas, monospace;
  font-size: 0.88rem;
}

.console-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  width: fit-content;
  border-radius: 999px;
  padding: 0.28rem 0.65rem;
  background: rgba(22, 124, 89, 0.12);
  color: #0d6848;
  font-size: 0.8rem;
  font-weight: 800;
}

.section {
  padding: clamp(3rem, 7vw, 6rem) clamp(1rem, 5vw, 5rem);
}

.section.alt {
  background: rgba(255, 255, 255, 0.48);
  border-block: 1px solid rgba(21, 22, 26, 0.08);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(20rem, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.card,
.price-card,
.step,
.notice {
  border: 1px solid rgba(21, 22, 26, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.8) inset;
}

.card,
.step,
.notice {
  padding: 1.25rem;
}

.card p,
.step p,
.notice p,
.price-card p,
.legal p,
.legal li {
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.9fr);
  gap: 1.25rem;
  align-items: start;
}

.price-card {
  padding: 1.4rem;
}

.price {
  display: flex;
  align-items: baseline;
  gap: 0.35rem;
  margin: 1.2rem 0;
}

.price strong {
  font-size: 3rem;
  line-height: 1;
}

.list {
  padding-left: 1rem;
}

.list li {
  margin: 0.52rem 0;
}

.timeline {
  display: grid;
  gap: 0.85rem;
}

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

.step-num {
  display: grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
}

.dashboard {
  display: grid;
  grid-template-columns: 16rem minmax(0, 1fr);
  min-height: 34rem;
  border: 1px solid rgba(21, 22, 26, 0.12);
  border-radius: 8px;
  background: #fefdf9;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.sidebar {
  padding: 1.2rem;
  background: #1a1d1e;
  color: #fff;
}

.sidebar a {
  display: block;
  margin: 0.35rem 0;
  padding: 0.6rem 0.7rem;
  border-radius: 6px;
  color: #cbd2cd;
  text-decoration: none;
}

.sidebar a.active {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.dash-main {
  padding: 1.2rem;
}

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

.stat {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.stat strong {
  display: block;
  font-size: 1.8rem;
}

pre {
  overflow: auto;
  padding: 1rem;
  border-radius: 8px;
  background: #111417;
  color: #e8efe7;
  font-size: 0.86rem;
}

.legal {
  max-width: 54rem;
  margin-inline: auto;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 5vw, 5rem);
  border-top: 1px solid rgba(21, 22, 26, 0.1);
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .section-head,
  .split,
  .dashboard {
    grid-template-columns: 1fr;
  }

  .grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .site-header,
  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    flex-wrap: wrap;
  }

  h1 {
    max-width: 100%;
  }
}
