:root {
  --bg: #f4efe4;
  --paper: rgba(255, 251, 244, 0.82);
  --paper-strong: rgba(255, 251, 244, 0.95);
  --ink: #1e2330;
  --muted: #5d6470;
  --line: rgba(30, 35, 48, 0.12);
  --accent: #cb5a2c;
  --accent-2: #0f8a78;
  --accent-3: #caa24e;
  --shadow: 0 30px 80px rgba(44, 33, 20, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(203, 90, 44, 0.16), transparent 26rem),
    radial-gradient(circle at 85% 18%, rgba(15, 138, 120, 0.18), transparent 20rem),
    linear-gradient(180deg, #f8f3e9 0%, #f4efe4 44%, #efe8db 100%);
  font-family: "Trebuchet MS", Verdana, sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.mono {
  font-family: "Courier New", monospace;
}

.pageGlow {
  position: fixed;
  inset: auto;
  border-radius: 999px;
  filter: blur(60px);
  opacity: 0.42;
  pointer-events: none;
}

.pageGlowA {
  width: 18rem;
  height: 18rem;
  top: 8rem;
  right: -5rem;
  background: rgba(203, 90, 44, 0.28);
}

.pageGlowB {
  width: 22rem;
  height: 22rem;
  left: -8rem;
  bottom: 8rem;
  background: rgba(15, 138, 120, 0.2);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(244, 239, 228, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(30, 35, 48, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brandMark {
  width: 2.35rem;
  height: 2.35rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.8rem;
  background: linear-gradient(135deg, var(--accent), #f09c57);
  color: #fff;
  box-shadow: 0 18px 32px rgba(203, 90, 44, 0.22);
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: 1.2rem;
}

.brandText,
.topnav,
.navButton,
.heroBadges,
.eyebrow,
.panelLabel,
.metricLabel,
.timelineIndex,
.accessTag,
.catalogMeta,
.footerLinks {
  letter-spacing: 0.04em;
}

.topnav {
  display: flex;
  align-items: center;
  gap: 1.15rem;
  color: var(--muted);
  font-size: 0.95rem;
}

.topnav a:hover,
.footerLinks a:hover {
  color: var(--accent);
}

.navButton,
.primaryButton,
.ghostButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.9rem;
  padding: 0.8rem 1.15rem;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.navButton,
.primaryButton {
  background: linear-gradient(135deg, var(--accent), #ea8d4f);
  color: #fff;
  box-shadow: 0 16px 32px rgba(203, 90, 44, 0.22);
}

.ghostButton {
  border: 1px solid rgba(30, 35, 48, 0.12);
  background: rgba(255, 255, 255, 0.36);
  color: var(--ink);
}

.navButton:hover,
.primaryButton:hover,
.ghostButton:hover,
.accessCard:hover {
  transform: translateY(-2px);
}

.shell {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2rem 0 5rem;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 1.5rem;
  align-items: stretch;
  padding-top: 1rem;
}

.heroCopy,
.heroPanel,
.metrics article,
.timelineCard,
.featureCard,
.catalogPanel,
.accessCard {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.heroCopy {
  border-radius: 2rem;
  padding: clamp(1.6rem, 4vw, 3.2rem);
}

.heroPanel {
  border-radius: 2rem;
  padding: 1.5rem;
  overflow: hidden;
}

.heroPanel::after {
  content: "";
  position: absolute;
  inset: auto -10% -22% auto;
  width: 12rem;
  height: 12rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(202, 162, 78, 0.38), transparent 64%);
}

.eyebrow,
.panelLabel,
.catalogMeta,
.accessTag {
  text-transform: uppercase;
  font-size: 0.76rem;
  color: var(--accent);
  font-weight: 700;
}

.hero h1,
.sectionIntro h2 {
  margin: 0;
  font-family: Georgia, "Palatino Linotype", serif;
  line-height: 0.94;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 7vw, 5.4rem);
  margin-top: 0.8rem;
}

.heroLead,
.sectionIntro p,
.featureCard p,
.timelineCard p,
.accessCard p,
.stackList p {
  color: var(--muted);
  line-height: 1.65;
}

.heroLead {
  max-width: 54ch;
  margin: 1.2rem 0 0;
  font-size: 1.05rem;
}

.heroActions,
.heroBadges,
.panelHeading,
.heroPanelHead,
.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  flex-wrap: wrap;
}

.heroActions {
  margin-top: 1.6rem;
}

.heroBadges {
  justify-content: flex-start;
  margin-top: 1.4rem;
}

.heroBadges span,
.stateBadge,
.metricValue,
.timelineIndex,
.pricePill,
.packPill {
  border-radius: 999px;
  font-weight: 700;
}

.heroBadges span {
  padding: 0.45rem 0.8rem;
  background: rgba(30, 35, 48, 0.06);
  color: var(--ink);
  font-size: 0.82rem;
}

.stateBadge {
  padding: 0.5rem 0.8rem;
  background: rgba(15, 138, 120, 0.12);
  color: var(--accent-2);
  font-size: 0.82rem;
}

.panelTitle {
  margin-top: 0.3rem;
  font-size: 1.4rem;
  font-family: Georgia, "Palatino Linotype", serif;
}

.stackList {
  display: grid;
  gap: 1rem;
  margin-top: 1.4rem;
}

.stackList article {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 0.95rem;
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(30, 35, 48, 0.08);
}

.stackStep {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: linear-gradient(135deg, rgba(15, 138, 120, 0.16), rgba(15, 138, 120, 0.04));
  color: var(--accent-2);
  font-weight: 800;
}

.stackList h3,
.timelineCard h3,
.featureCard h3,
.accessCard h3,
.catalogPanel h3 {
  margin: 0;
  font-size: 1.05rem;
}

.stackList p,
.timelineCard p,
.featureCard p,
.accessCard p {
  margin: 0.5rem 0 0;
}

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

.metrics article {
  border-radius: 1.5rem;
  padding: 1.15rem 1.2rem;
}

.metricValue {
  display: inline-flex;
  padding: 0.45rem 0.78rem;
  background: rgba(30, 35, 48, 0.08);
  color: var(--ink);
  font-size: 0.85rem;
}

.metricLabel {
  display: block;
  margin-top: 0.8rem;
  font-size: 1rem;
  line-height: 1.5;
}

.sectionBlock {
  margin-top: 4rem;
}

.sectionIntro {
  max-width: 48rem;
}

.sectionIntro h2 {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
}

.timeline,
.featureGrid,
.accessGrid,
.pricingLayout {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}

.timeline {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.accessGrid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pricingLayout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.timelineCard,
.featureCard,
.catalogPanel,
.accessCard {
  border-radius: 1.55rem;
  padding: 1.3rem;
}

.timelineIndex {
  width: 2.4rem;
  height: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  background: rgba(203, 90, 44, 0.12);
  color: var(--accent);
}

.catalogMeta {
  margin-top: 1rem;
  color: var(--muted);
}

.cardList {
  display: grid;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.catalogCard {
  padding: 1rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(30, 35, 48, 0.08);
}

.catalogCardHead {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.catalogCard h4 {
  margin: 0;
  font-size: 1.02rem;
}

.catalogCard p,
.emptyCard {
  margin: 0.55rem 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.pricePill,
.packPill {
  padding: 0.45rem 0.72rem;
  background: rgba(15, 138, 120, 0.12);
  color: var(--accent-2);
  font-size: 0.82rem;
}

.packPill {
  background: rgba(203, 90, 44, 0.12);
  color: var(--accent);
}

.catalogSubline {
  margin-top: 0.6rem;
  font-size: 0.88rem;
  color: var(--muted);
}

.emptyCard {
  padding: 1.2rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.56);
  border: 1px dashed rgba(30, 35, 48, 0.18);
}

.accessCard {
  min-height: 15rem;
}

.footer {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto 2rem;
  padding-top: 1rem;
  color: var(--muted);
}

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

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 480ms ease, transform 480ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero,
  .pricingLayout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 760px) {
  .topbar,
  .topnav,
  .heroActions,
  .heroBadges,
  .catalogCardHead,
  .footer {
    align-items: flex-start;
  }

  .topbar {
    flex-direction: column;
    padding: 1rem;
  }

  .topnav {
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
  }

  .shell {
    width: min(100% - 1rem, 1180px);
    padding-top: 1rem;
  }

  .hero h1 {
    max-width: none;
  }

  .metrics,
  .timeline,
  .featureGrid,
  .accessGrid {
    grid-template-columns: 1fr;
  }

  .heroCopy,
  .heroPanel,
  .timelineCard,
  .featureCard,
  .catalogPanel,
  .accessCard,
  .metrics article {
    border-radius: 1.35rem;
  }
}
