:root {
  --ink: #15304c;
  --ink-soft: #39536f;
  --paper: #fffaf2;
  --paper-strong: #fffefb;
  --line: rgba(21, 48, 76, 0.12);
  --red: #da264f;
  --orange: #f08a2d;
  --yellow: #f5c84a;
  --green: #b2cc34;
  --blue: #1192d0;
  --sky: #d7eff8;
  --shadow: 0 24px 60px rgba(21, 48, 76, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Avenir Next", "Segoe UI", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(240, 138, 45, 0.18), transparent 24%),
    radial-gradient(circle at top right, rgba(17, 146, 208, 0.16), transparent 28%),
    linear-gradient(180deg, #fffdf9 0%, #fff8ef 50%, #f4fbfc 100%);
  min-height: 100vh;
}

a {
  color: inherit;
}

.site-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 40px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 12px 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  text-decoration: none;
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 3.2rem;
  font-weight: 700;
}

.brand img {
  width: 173px;
  height: 173px;
  object-fit: contain;
  filter: drop-shadow(0 12px 18px rgba(21, 48, 76, 0.16));
}

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

.nav a {
  text-decoration: none;
  color: var(--ink-soft);
  font-weight: 600;
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(17, 146, 208, 0.12);
  color: var(--ink);
}

.hero,
.panel,
.page-hero,
.essay,
.form-panel {
  opacity: 0;
  transform: translateY(14px);
  animation: rise 700ms ease forwards;
}

.hero {
  display: grid;
  grid-template-columns: 1.25fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  padding: 28px 0 18px;
}

.hero-copy,
.hero-card,
.panel,
.essay,
.form-panel,
.waitlist-copy {
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 42px;
}

.hero-card {
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(17, 146, 208, 0.12), rgba(178, 204, 52, 0.08)),
    rgba(255, 255, 255, 0.85);
}

.eyebrow {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--red);
}

h1,
h2,
h3 {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  line-height: 1.06;
  margin: 0 0 16px;
}

h1 {
  font-size: clamp(2.16rem, 4.8vw, 4.08rem);
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

h3 {
  font-size: 1.35rem;
}

p,
li,
label,
input,
textarea,
button {
  font-size: 1.04rem;
  line-height: 1.7;
}

.lede {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 48rem;
}

.small-note,
.form-note,
.footer,
.text-link {
  color: var(--ink-soft);
}

.hero-actions,
.cta-band {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(21, 48, 76, 0.14);
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--orange));
  color: white;
}

.button.secondary {
  background: white;
  color: var(--ink);
  border: 1px solid var(--line);
}

.button.wide {
  width: 100%;
}

.panel {
  margin-top: 24px;
  padding: 34px;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.feature-orbit {
  position: relative;
  min-height: 300px;
  border-radius: 28px;
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.95) 0 28%, transparent 28%),
    conic-gradient(from 40deg, rgba(17, 146, 208, 0.92), rgba(178, 204, 52, 0.92), rgba(240, 138, 45, 0.92), rgba(218, 38, 79, 0.92), rgba(17, 146, 208, 0.92));
  box-shadow: inset 0 0 0 22px rgba(255, 255, 255, 0.84);
}

.orbit-item,
.orbit-center {
  position: absolute;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.orbit-center {
  inset: 50%;
  width: 116px;
  height: 116px;
  margin: -58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--paper-strong);
  border: 4px solid rgba(21, 48, 76, 0.08);
  box-shadow: var(--shadow);
}

.orbit-knowledge { top: 20px; left: 34px; color: white; }
.orbit-healing { top: 30px; right: 32px; color: white; }
.orbit-care { bottom: 26px; right: 54px; color: white; }
.orbit-team { bottom: 42px; left: 52px; color: white; }

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  background: transparent;
  box-shadow: none;
  border: none;
  padding: 0;
}

.info-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin: 18px 0 10px;
}

.manifesto-grid > div {
  padding: 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid var(--line);
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.cta-band {
  justify-content: space-between;
  background:
    linear-gradient(135deg, rgba(17, 146, 208, 0.12), rgba(240, 138, 45, 0.14)),
    rgba(255, 255, 255, 0.82);
}

.reading-page {
  display: grid;
  gap: 24px;
}

.pretotype-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: start;
}

.page-hero,
.essay {
  padding: 38px;
}

.side-panel {
  position: sticky;
  top: 20px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.96rem;
}

.compare-table th,
.compare-table td {
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

.compare-table th {
  font-family: "Iowan Old Style", "Palatino Linotype", serif;
  font-size: 1rem;
}

.essay h2 {
  margin-top: 24px;
}

.essay ul,
.essay ol,
.hero-card ul {
  padding-left: 20px;
}

.waitlist-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

.waitlist-copy,
.form-panel {
  padding: 34px;
}

.callout {
  margin-top: 18px;
  padding: 20px;
  border-radius: 20px;
  background: rgba(17, 146, 208, 0.1);
  border: 1px solid rgba(17, 146, 208, 0.16);
}

.callout.soft {
  background: rgba(245, 200, 74, 0.12);
  border-color: rgba(240, 138, 45, 0.18);
}

.waitlist-form {
  display: grid;
  gap: 10px;
}

input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(21, 48, 76, 0.16);
  padding: 14px 16px;
  font: inherit;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
}

input:focus,
textarea:focus {
  outline: 3px solid rgba(17, 146, 208, 0.18);
  border-color: rgba(17, 146, 208, 0.34);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 28px 8px 0;
  font-size: 0.96rem;
}

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

@media (max-width: 960px) {
  .hero,
  .split,
  .waitlist-layout,
  .pretotype-layout,
  .cards,
  .manifesto-grid {
    grid-template-columns: 1fr;
  }

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

  h1 {
    font-size: clamp(2.4rem, 11vw, 4rem);
  }
}

@media (max-width: 640px) {
  .site-shell {
    width: min(100% - 20px, 1160px);
  }

  .hero-copy,
  .hero-card,
  .panel,
  .page-hero,
  .essay,
  .waitlist-copy,
  .form-panel {
    padding: 24px;
    border-radius: 22px;
  }

  .brand span {
    font-size: 2.45rem;
  }

  .feature-orbit {
    min-height: 250px;
  }
}
