:root {
  color-scheme: light;
  --bg: #f3ecdf;
  --bg-soft: #fbf7f0;
  --surface: rgba(255, 252, 246, 0.82);
  --surface-strong: #fffdf8;
  --text: #12161b;
  --muted: #5a6470;
  --line: rgba(18, 22, 27, 0.1);
  --gold: #c48328;
  --gold-soft: #f2e1c4;
  --forest: #305f54;
  --forest-soft: #d8e6e1;
  --ink-soft: #edf2f7;
  --shadow: 0 28px 80px rgba(33, 27, 19, 0.11);
  --shadow-soft: 0 18px 40px rgba(33, 27, 19, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.7;
  background:
    radial-gradient(circle at top left, rgba(222, 184, 135, 0.26) 0%, transparent 26%),
    radial-gradient(circle at 80% 10%, rgba(48, 95, 84, 0.12) 0%, transparent 22%),
    linear-gradient(180deg, #fcf7ee 0%, var(--bg) 48%, #efe6d7 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  pointer-events: none;
  z-index: -1;
  filter: blur(60px);
}

body::before {
  top: 90px;
  right: 8%;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: rgba(196, 131, 40, 0.15);
}

body::after {
  left: 6%;
  bottom: 8%;
  width: 280px;
  height: 280px;
  border-radius: 999px;
  background: rgba(48, 95, 84, 0.12);
}

a {
  color: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Fraunces", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.98;
}

p,
li {
  font-size: 1rem;
}

.site-shell {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 18px 72px;
}

.topbar,
.hero-card,
.section,
.page-intro,
.content-card,
.closing-band,
.site-footer,
.support-grid {
  animation: rise-in 600ms ease both;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 16px;
  margin-bottom: 22px;
  border: 1px solid rgba(18, 22, 27, 0.08);
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.7);
  box-shadow: 0 10px 30px rgba(33, 27, 19, 0.06);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.06)),
    linear-gradient(135deg, #191d22, #314d48);
  color: #fff7ec;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 14px 28px rgba(22, 21, 19, 0.18);
}

.brand-copy strong,
.brand-copy span {
  display: block;
}

.brand-copy strong {
  font-size: 0.98rem;
  line-height: 1.1;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.nav a {
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(18, 22, 27, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav a:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(18, 22, 27, 0.16);
}

.hero-card,
.section,
.page-intro,
.content-card,
.closing-band {
  border-radius: 32px;
  border: 1px solid rgba(18, 22, 27, 0.08);
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  margin-bottom: 22px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(196, 131, 40, 0.16), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 40%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  padding: 42px;
}

.hero-copy,
.hero-visual,
.section,
.page-intro,
.content-card,
.closing-band {
  position: relative;
}

.section-kicker,
.pill,
.panel-label,
.summary-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.79rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-kicker,
.pill {
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--gold-soft);
  color: #9a6519;
}

.section-kicker-dark {
  background: rgba(255, 255, 255, 0.14);
  color: rgba(255, 247, 236, 0.88);
}

.hero-copy h1,
.page-intro h1 {
  margin-top: 18px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-intro h1 {
  max-width: 12ch;
}

.lede,
.section-heading p,
.feature-card p,
.product-panel p,
.rail-card p,
.step-card p,
.visual-panel p,
.content-card p,
.content-card li,
.site-footer span {
  color: var(--muted);
}

.hero-copy .lede {
  max-width: 58ch;
  font-size: 1.12rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button {
  background: linear-gradient(135deg, #101317, #1d242d);
  color: #ffffff;
  box-shadow: 0 16px 32px rgba(16, 19, 23, 0.24);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text);
  border: 1px solid rgba(18, 22, 27, 0.1);
}

.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-card,
.summary-card,
.rail-card,
.feature-card,
.step-card {
  border-radius: 22px;
  border: 1px solid rgba(18, 22, 27, 0.08);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.proof-card {
  padding: 18px;
}

.proof-card strong,
.summary-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.visual-panel {
  border-radius: 26px;
  padding: 24px;
  border: 1px solid rgba(18, 22, 27, 0.08);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.visual-panel-primary {
  color: #fff8ef;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.1), transparent 30%),
    linear-gradient(150deg, #1a1f27, #2a403b);
}

.visual-panel-primary p,
.visual-panel-primary .stack-list li {
  color: rgba(255, 248, 239, 0.72);
}

.visual-panel-primary h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.chip {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff8ef;
  font-size: 0.85rem;
}

.visual-stack {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
}

.visual-panel-accent {
  background: linear-gradient(180deg, rgba(48, 95, 84, 0.12), rgba(255, 255, 255, 0.72));
}

.panel-label,
.summary-label {
  color: var(--gold);
}

.stack-list,
.product-list,
.content-card ul {
  margin: 14px 0 0;
  padding-left: 22px;
}

.stack-list li + li,
.product-list li + li,
.content-card li + li {
  margin-top: 10px;
}

.section,
.page-intro,
.content-card,
.closing-band {
  padding: 34px;
  margin-top: 22px;
}

.section-heading {
  max-width: 72ch;
  margin-bottom: 24px;
}

.section-heading h2,
.closing-band h2,
.content-card h2 {
  margin-top: 14px;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.product-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.98fr);
  gap: 18px;
}

.product-panel {
  padding: 28px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top left, rgba(196, 131, 40, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.68));
  border: 1px solid rgba(18, 22, 27, 0.08);
  box-shadow: var(--shadow-soft);
}

.product-panel h3 {
  margin-top: 18px;
  font-size: 2.1rem;
}

.product-rail {
  display: grid;
  gap: 14px;
}

.rail-card,
.feature-card,
.step-card {
  padding: 22px;
}

.rail-index,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 800;
  background: var(--ink-soft);
  color: var(--forest);
}

.rail-card h3,
.feature-card h3,
.step-card h3 {
  margin-top: 16px;
  font-size: 1.55rem;
}

.feature-grid,
.steps-grid,
.support-grid,
.summary-grid {
  display: grid;
  gap: 16px;
}

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

.support-grid {
  grid-template-columns: 1.05fr 0.95fr 0.9fr;
  margin-top: 22px;
}

.feature-card-strong {
  background:
    radial-gradient(circle at top left, rgba(48, 95, 84, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.68));
}

.feature-card h2 {
  margin-top: 12px;
  font-size: 2rem;
  word-break: break-word;
}

.page-intro .lede {
  max-width: 60ch;
  font-size: 1.08rem;
}

.summary-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.summary-card {
  padding: 20px;
}

.content-card h2 {
  font-size: 1.6rem;
}

.content-card h2 + p,
.content-card h2 + ul {
  margin-top: 10px;
}

.content-card h2:not(:first-child) {
  margin-top: 34px;
}

.content-card a,
.feature-card a,
.summary-card a {
  color: #1653af;
  text-decoration: none;
}

.content-card a:hover,
.feature-card a:hover,
.summary-card a:hover {
  text-decoration: underline;
}

.closing-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.closing-band p {
  color: var(--muted);
  max-width: 60ch;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 22px;
  padding: 22px 10px 0;
}

.site-footer strong,
.footer-links a {
  display: inline-block;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

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

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .product-showcase,
  .feature-grid,
  .steps-grid,
  .summary-grid,
  .support-grid,
  .closing-band {
    grid-template-columns: 1fr;
  }

  .closing-band {
    display: grid;
  }

  .hero-proof {
    grid-template-columns: 1fr;
  }

  .visual-stack {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 14px 12px 44px;
  }

  .topbar {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero-grid,
  .section,
  .page-intro,
  .content-card,
  .closing-band {
    padding: 24px;
  }

  .hero-copy h1,
  .page-intro h1 {
    font-size: 2.7rem;
  }

  .product-panel h3,
  .feature-card h2 {
    font-size: 1.75rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 4px 0;
  }
}
