:root {
  --bg: #fff8ee;
  --paper: rgba(255, 255, 255, 0.7);
  --paper-strong: rgba(255, 255, 255, 0.84);
  --ink: #10131b;
  --muted: #5e6677;
  --line: rgba(16, 19, 27, 0.1);
  --sky: #217dff;
  --orange: #ff7d2f;
  --mint: #93efcf;
  --rose: #ff6cb8;
  --navy: #10214d;
  --max: 1160px;
  --radius: 28px;
  --shadow: 0 24px 56px rgba(93, 72, 34, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "DM Sans", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(33, 125, 255, 0.14), transparent 18%),
    radial-gradient(circle at 10% 14%, rgba(255, 125, 47, 0.16), transparent 20%),
    radial-gradient(circle at 52% 100%, rgba(147, 239, 207, 0.22), transparent 28%),
    linear-gradient(180deg, #fffbf5 0%, #fff4e7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

.shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(14px);
  background: rgba(255, 248, 238, 0.78);
  border-bottom: 1px solid var(--line);
}

.topbar-inner {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--sky), var(--mint));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(33, 125, 255, 0.18);
}

.brand-copy strong,
.kicker {
  font-family: "Sora", sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-copy strong {
  display: block;
  font-size: 0.88rem;
}

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

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.93rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
  border: 0;
  cursor: pointer;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--orange), var(--rose));
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 108, 184, 0.2);
}

.button-secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.hero,
.page-hero {
  padding: 64px 0 28px;
}

.hero-grid,
.page-hero-grid,
.split-grid,
.section-header,
.cta-grid,
.footer-grid,
.proof-grid,
.faq-grid,
.belief-grid,
.manifesto-grid,
.quote-grid {
  display: grid;
  gap: 18px;
}

.hero-grid,
.page-hero-grid,
.cta-grid,
.manifesto-grid {
  grid-template-columns: 1.04fr 0.96fr;
}

.section-header {
  grid-template-columns: 0.92fr 1.08fr;
  align-items: start;
  margin-bottom: 22px;
}

.belief-grid,
.proof-grid,
.faq-grid,
.footer-grid,
.quote-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

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

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 0.76rem;
}

.kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--sky));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.05em;
}

h1 {
  font-size: clamp(3.3rem, 7vw, 5.8rem);
  max-width: 10ch;
}

h2 {
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  max-width: 11ch;
}

h1 em,
h2 em {
  color: var(--sky);
  font-style: normal;
}

p {
  line-height: 1.82;
}

.lead {
  max-width: 58ch;
  margin: 20px 0 0;
  font-size: 1.06rem;
  color: var(--muted);
}

.panel,
.section-frame,
.card,
.cta-block,
.manifesto-panel {
  position: relative;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.panel,
.card,
.manifesto-panel {
  padding: 24px;
}

.section {
  padding: 18px 0 0;
}

.section-frame,
.cta-block {
  padding: 28px;
}

.muted {
  color: var(--muted);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.pill,
.hero-note span {
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(16, 19, 27, 0.08);
  color: var(--navy);
  font-size: 0.9rem;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero-note {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
}

.list div,
.fact,
.metric,
.path,
.feature,
.testimonial {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(16, 19, 27, 0.08);
}

.list strong,
.fact strong,
.metric strong,
.path strong,
.feature strong,
.testimonial strong {
  display: block;
  margin-bottom: 6px;
}

.stack,
.testimonial-stack {
  display: grid;
  gap: 14px;
}

.ladder-card,
.entry-card {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(16, 19, 27, 0.08);
}

.ladder-head {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: baseline;
  margin-bottom: 12px;
}

.ladder-head strong {
  font-size: 0.78rem;
  color: var(--orange);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.quote {
  margin-top: 14px;
  padding-left: 14px;
  border-left: 1px solid rgba(16, 19, 27, 0.12);
  color: var(--ink);
}

.stat {
  font-family: "Sora", sans-serif;
  color: var(--sky);
  font-size: 1.9rem;
  margin-bottom: 10px;
}

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.94rem;
  color: var(--ink);
}

input,
select,
textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(16, 19, 27, 0.1);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 170px;
  resize: vertical;
}

.inline-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 600ms ease forwards;
}

.delay-1 { animation-delay: 80ms; }
.delay-2 { animation-delay: 150ms; }
.delay-3 { animation-delay: 220ms; }

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

@media (max-width: 1080px) {
  .hero-grid,
  .page-hero-grid,
  .split-grid,
  .section-header,
  .cta-grid,
  .footer-grid,
  .proof-grid,
  .faq-grid,
  .belief-grid,
  .manifesto-grid,
  .form-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    display: none;
  }

  h1,
  h2 {
    max-width: 100%;
  }
}

@media (max-width: 720px) {
  .shell,
  .topbar-inner {
    width: min(var(--max), calc(100% - 24px));
  }

  .hero,
  .page-hero {
    padding-top: 44px;
  }

  .panel,
  .card,
  .manifesto-panel,
  .section-frame,
  .cta-block {
    padding: 22px;
  }
}
