@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=DM+Serif+Display:opsz@40&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
  --background: #fcfbf8;
  --surface-sunken: #f4efe7;
  --card: rgba(255, 250, 243, 0.82);
  --card-elevated: #fffdf9;
  --surface-tinted: rgba(118, 147, 127, 0.12);
  --surface-overlay: rgba(255, 255, 255, 0.66);
  --surface-strong: #fffaf2;
  --text: #1c1b18;
  --text-muted: #6f6961;
  --text-soft: #8a8379;
  --line: rgba(28, 27, 24, 0.09);
  --line-strong: rgba(28, 27, 24, 0.14);
  --primary: #466b5d;
  --primary-strong: #2e4a40;
  --accent: #4b73ff;
  --warning: #d17a55;
  --danger: #c76557;
  --success: #69836d;
  --shadow-soft: 0 18px 38px rgba(37, 35, 31, 0.06);
  --shadow-elevated: 0 24px 60px rgba(37, 35, 31, 0.09);
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 16px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 8% 4%, rgba(255, 142, 99, 0.08), transparent 18%),
    radial-gradient(circle at 92% 0%, rgba(75, 115, 255, 0.08), transparent 20%),
    radial-gradient(circle at 50% 12%, rgba(118, 147, 127, 0.1), transparent 28%),
    linear-gradient(180deg, var(--background) 0%, #f8f5ef 100%);
}

a {
  color: inherit;
}

.shell {
  width: min(1160px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.shell--narrow {
  width: min(1040px, calc(100vw - 32px));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 22px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(28, 27, 24, 0.08);
  box-shadow: 0 14px 30px rgba(70, 107, 93, 0.12);
  background: var(--card-elevated);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand-copy strong {
  display: block;
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.35;
}

.nav-right {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-link,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

.nav-link {
  min-height: 42px;
  padding: 0 14px;
  color: var(--text-muted);
}

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

.button {
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
}

.button-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 12px 24px rgba(70, 107, 93, 0.18);
}

.button-secondary {
  background: var(--surface-overlay);
  color: var(--text);
  border-color: var(--line);
  backdrop-filter: blur(10px);
}

.button-ghost {
  background: transparent;
  color: var(--text-muted);
  border-color: var(--line);
}

.eyebrow,
.hero-kicker,
.card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-tinted);
  color: var(--primary-strong);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(46px, 6vw, 74px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.02;
}

h3 {
  font-size: 24px;
  line-height: 1.08;
}

p,
li {
  color: var(--text-muted);
  line-height: 1.72;
}

.panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  background: var(--card-elevated);
  box-shadow: var(--shadow-elevated);
}

.panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 142, 99, 0.12), transparent 28%),
    radial-gradient(circle at 88% 16%, rgba(75, 115, 255, 0.1), transparent 26%),
    radial-gradient(circle at 58% 72%, rgba(118, 147, 127, 0.12), transparent 32%);
  pointer-events: none;
}

.hero {
  padding: 36px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.8fr);
  gap: 24px;
  align-items: end;
}

.hero-copy {
  display: grid;
  gap: 16px;
}

.hero-copy p {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: var(--surface-overlay);
  border: 1px solid rgba(28, 27, 24, 0.06);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: grid;
  gap: 14px;
  margin-top: 8px;
}

.hero-sidecard {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  align-self: stretch;
  padding: 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-overlay);
  border: 1px solid rgba(28, 27, 24, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.hero-sidecard-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-soft);
}

.hero-sidecard-copy {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
}

.hero-sidecard-list {
  display: grid;
  gap: 10px;
}

.hero-sidecard-item {
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(28, 27, 24, 0.06);
}

.hero-sidecard-item strong {
  font-size: 15px;
}

.hero-sidecard-item span {
  font-size: 13px;
  color: var(--text-muted);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
  padding: 14px 16px;
  border-radius: 22px;
  border: 1px solid rgba(28, 27, 24, 0.08);
  background: var(--surface-overlay);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.store-badge-icon {
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  color: var(--text);
}

.store-badge-copy {
  display: grid;
  gap: 1px;
}

.store-badge-label {
  font-size: 11px;
  line-height: 1.1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 700;
}

.store-badge-title {
  font-size: 18px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--text);
}

.hero-note {
  color: var(--text-soft);
  font-size: 13px;
}

.layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 18px;
  margin-top: 22px;
}

.stack {
  display: grid;
  gap: 18px;
}

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
  padding: 24px;
}

.card-elevated {
  background: var(--card-elevated);
  box-shadow: var(--shadow-elevated);
}

.card-sunken {
  background: var(--surface-sunken);
}

.card-overlay {
  background: var(--surface-overlay);
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.section-head p {
  margin: 0;
}

.summary-list {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.summary-item {
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(28, 27, 24, 0.07);
  padding: 14px 16px;
}

.summary-item strong {
  display: block;
  font-size: 15px;
}

.summary-item span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: var(--radius-pill);
  background: var(--surface-tinted);
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 600;
}

.steps {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.step {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
}

.step-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: var(--surface-tinted);
  color: var(--primary-strong);
  font-size: 14px;
  font-weight: 700;
}

.note {
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(209, 122, 85, 0.18);
  background: rgba(209, 122, 85, 0.08);
}

.note strong {
  display: block;
  margin-bottom: 6px;
}

.field-grid {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

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

label {
  display: grid;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.62);
  color: var(--text);
  padding: 14px 15px;
  font: inherit;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(75, 115, 255, 0.28);
  box-shadow: 0 0 0 4px rgba(75, 115, 255, 0.08);
  background: #fffdfb;
}

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

.field-help,
.status,
.subtle {
  color: var(--text-muted);
  line-height: 1.6;
}

.field-help,
.subtle {
  font-size: 13px;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.status {
  min-height: 24px;
  margin-top: 14px;
  font-size: 14px;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 20px;
  color: var(--text-muted);
  font-size: 14px;
}

.center-shell {
  width: min(92vw, 440px);
}

.center-card {
  text-align: center;
}

.spinner {
  width: 32px;
  height: 32px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 3px solid rgba(75, 115, 255, 0.12);
  border-top-color: var(--accent);
  animation: spin 800ms linear infinite;
}

.fallback {
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.fallback.visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@media (max-width: 960px) {
  .layout,
  .hero-grid,
  .field-grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .shell,
  .shell--narrow {
    width: min(100vw - 24px, 100%);
    padding-top: 18px;
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-start;
  }

  .hero,
  .card {
    padding: 22px;
  }

  h1 {
    font-size: 46px;
  }
}

.page-home {
  color: #1b221b;
  font-family: 'Manrope', sans-serif;
  background:
    radial-gradient(circle at 50% 0%, rgba(150, 175, 160, 0.16), transparent 24%),
    radial-gradient(circle at 18% 82%, rgba(214, 178, 146, 0.16), transparent 28%),
    radial-gradient(circle at 82% 74%, rgba(190, 207, 193, 0.18), transparent 24%),
    linear-gradient(180deg, #f5f6f1 0%, #f6f2eb 52%, #efe7dc 100%);
}

.page-home p,
.page-home li {
  color: #6d766b;
}

.page-home h1,
.page-home h2,
.page-home h3,
.page-home .brand-copy strong,
.page-home .home-brand {
  font-family: 'Cormorant Garamond', serif;
}

.home-hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding: 22px 0 72px;
  overflow: hidden;
}

.home-hero::before,
.home-hero::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.home-hero::before {
  width: 420px;
  height: 420px;
  top: -180px;
  left: calc(50% - 210px);
  background: rgba(157, 182, 165, 0.24);
}

.home-hero::after {
  width: 360px;
  height: 360px;
  right: -120px;
  bottom: 40px;
  background: rgba(223, 189, 156, 0.18);
}

.home-hero-inner,
.home-main {
  width: min(1160px, calc(100vw - 56px));
  margin: 0 auto;
}

.home-nav {
  position: relative;
  z-index: 2;
  padding-bottom: 18px;
}

.page-home .brand-mark {
  background: rgba(255, 252, 247, 0.84);
  border-color: rgba(27, 34, 27, 0.08);
  box-shadow: 0 20px 34px rgba(56, 70, 60, 0.08);
}

.page-home .brand-copy strong {
  font-size: 31px;
  letter-spacing: -0.05em;
}

.page-home .brand-copy span {
  color: #7c857b;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-nav-link {
  color: #6a746a;
}

.page-home .button-primary.home-hero-button {
  background: #24392f;
  color: #f7f3ec;
  box-shadow: 0 18px 34px rgba(36, 57, 47, 0.18);
}

.page-home .button-secondary.home-secondary-button {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(27, 34, 27, 0.08);
  color: #223127;
  box-shadow: 0 12px 28px rgba(55, 62, 57, 0.08);
}

.home-stage {
  position: relative;
  z-index: 1;
  min-height: calc(100svh - 118px);
  display: grid;
  justify-items: center;
  gap: 36px;
  padding: 36px 0 0;
}

.home-copy {
  max-width: 760px;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  animation: home-fade-up 720ms cubic-bezier(0.16, 1, 0.32, 1) both;
}

.home-eyebrow {
  background: rgba(141, 168, 151, 0.16);
  color: #6f8a76;
}

.home-brand {
  margin: 0;
  font-size: clamp(74px, 11vw, 118px);
  line-height: 0.84;
  letter-spacing: -0.06em;
  color: #19211a;
}

.page-home h1 {
  font-family: 'Manrope', sans-serif;
  max-width: 760px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 600;
}

.home-summary {
  max-width: 660px;
  margin: 0;
  font-size: 18px;
  line-height: 1.82;
}

.home-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.home-footnote {
  max-width: 760px;
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: #81877e;
}

.home-visual {
  position: relative;
  width: min(900px, 100%);
  padding-top: 28px;
  animation: home-float-in 900ms cubic-bezier(0.16, 1, 0.32, 1) 120ms both;
}

.home-visual-pill {
  position: absolute;
  top: 0;
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(27, 34, 27, 0.08);
  color: #647566;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 16px 30px rgba(57, 67, 62, 0.08);
  backdrop-filter: blur(10px);
}

.home-visual-pill-primary {
  left: 28px;
}

.home-visual-pill-secondary {
  right: 28px;
}

.overview-frame {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  border: 1px solid rgba(27, 34, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.92) 0%, rgba(249, 244, 236, 0.82) 100%);
  box-shadow:
    0 36px 80px rgba(42, 50, 45, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.65);
  padding: 28px;
}

.overview-frame::before,
.overview-frame::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.overview-frame::before {
  width: 220px;
  height: 220px;
  top: -70px;
  right: -40px;
  background: rgba(201, 215, 202, 0.36);
  filter: blur(18px);
}

.overview-frame::after {
  width: 180px;
  height: 180px;
  left: -40px;
  bottom: -72px;
  background: rgba(229, 205, 175, 0.34);
  filter: blur(18px);
}

.overview-topbar,
.overview-footer {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.overview-topbar {
  padding: 0 2px;
  color: #728072;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.overview-topbar strong,
.overview-footer strong {
  color: #1b221b;
  font-size: 15px;
  letter-spacing: normal;
  text-transform: none;
}

.overview-columns {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.overview-column {
  display: grid;
  gap: 12px;
  padding: 20px;
  border-radius: 28px;
  border: 1px solid rgba(27, 34, 27, 0.06);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(14px);
}

.overview-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #7d877d;
}

.overview-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(248, 243, 235, 0.92);
  border: 1px solid rgba(27, 34, 27, 0.05);
}

.overview-item strong {
  font-size: 15px;
  font-weight: 700;
  color: #1e261f;
}

.item-state {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--radius-pill);
  background: rgba(149, 174, 157, 0.18);
  color: #587060;
  font-size: 12px;
  font-weight: 700;
}

.item-state-alert {
  background: rgba(207, 132, 103, 0.18);
  color: #965744;
}

.item-state-soon {
  background: rgba(219, 180, 109, 0.22);
  color: #8a6430;
}

.item-state-soft {
  background: rgba(173, 195, 184, 0.16);
  color: #66786b;
}

.overview-footer {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 34, 27, 0.08);
}

.overview-footer > div {
  display: grid;
  gap: 4px;
}

.overview-stat-label {
  color: #7a857b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.home-main {
  padding: 14px 0 96px;
}

.home-band,
.home-section {
  border-top: 1px solid rgba(27, 34, 27, 0.09);
}

.home-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
  padding: 28px 0 64px;
}

.home-band-item {
  display: grid;
  gap: 14px;
  align-content: start;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 34, 27, 0.1);
}

.home-band-label {
  color: #708170;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-band-item h2 {
  font-size: clamp(30px, 3vw, 40px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.home-section {
  padding: 72px 0;
}

.home-section-intro {
  max-width: 780px;
  display: grid;
  gap: 12px;
}

.page-home .card-kicker {
  width: fit-content;
  background: rgba(141, 168, 151, 0.12);
  color: #6f8a76;
}

.home-section-intro h2,
.home-flow-copy h2 {
  font-size: clamp(42px, 5vw, 62px);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 600;
}

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

.story-column {
  display: grid;
  gap: 12px;
  align-content: start;
  padding-top: 20px;
  border-top: 1px solid rgba(27, 34, 27, 0.1);
}

.story-index {
  color: #748274;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-column h3,
.flow-step h3 {
  font-size: 34px;
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 600;
}

.story-column p,
.flow-step p,
.resource-link strong {
  margin: 0;
}

.home-flow {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.home-flow-copy {
  display: grid;
  gap: 14px;
}

.home-flow-note {
  margin: 6px 0 0;
  padding: 18px 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(27, 34, 27, 0.08);
  box-shadow: 0 18px 34px rgba(51, 60, 55, 0.06);
}

.flow-steps {
  display: grid;
}

.flow-step {
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr);
  gap: 18px;
  padding: 24px 0;
  border-top: 1px solid rgba(27, 34, 27, 0.1);
}

.flow-step:first-child {
  padding-top: 0;
  border-top: none;
}

.flow-step-number {
  color: #7c8e7d;
  font-family: 'Cormorant Garamond', serif;
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin-top: 34px;
}

.resource-link {
  display: grid;
  gap: 8px;
  align-content: start;
  padding-top: 18px;
  border-top: 1px solid rgba(27, 34, 27, 0.1);
  text-decoration: none;
  transition: transform 180ms ease, color 180ms ease;
}

.resource-link:hover {
  transform: translateY(-2px);
}

.resource-link span {
  color: #748274;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-link strong {
  color: #1f261f;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  line-height: 1.06;
  font-weight: 600;
}

.home-cta {
  padding-top: 6px;
}

.home-cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 14px;
  justify-items: center;
  text-align: center;
  padding: clamp(32px, 5vw, 54px);
  border-radius: 40px;
  border: 1px solid rgba(27, 34, 27, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 254, 251, 0.86) 0%, rgba(242, 236, 227, 0.96) 100%);
  box-shadow: 0 30px 70px rgba(47, 57, 51, 0.1);
}

.home-cta-panel::before,
.home-cta-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  pointer-events: none;
}

.home-cta-panel::before {
  width: 200px;
  height: 200px;
  left: -60px;
  top: -80px;
  background: rgba(185, 204, 189, 0.32);
}

.home-cta-panel::after {
  width: 180px;
  height: 180px;
  right: -40px;
  bottom: -60px;
  background: rgba(224, 193, 159, 0.26);
}

.home-cta-panel h2 {
  max-width: 820px;
  font-size: clamp(48px, 6vw, 74px);
  line-height: 0.92;
  letter-spacing: -0.055em;
  font-weight: 600;
}

.home-cta-panel p {
  max-width: 680px;
  margin: 0;
  font-size: 17px;
  line-height: 1.8;
}

@keyframes home-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes home-float-in {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 980px) {
  .home-hero-inner,
  .home-main {
    width: min(100vw - 32px, 100%);
  }

  .home-band,
  .story-columns,
  .home-flow,
  .resource-list,
  .overview-columns {
    grid-template-columns: 1fr;
  }

  .home-flow {
    gap: 30px;
  }

  .home-band {
    gap: 22px;
  }

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

@media (max-width: 760px) {
  .home-hero {
    padding: 18px 0 56px;
  }

  .home-hero-inner,
  .home-main {
    width: min(100vw - 24px, 100%);
  }

  .home-nav {
    padding-bottom: 10px;
  }

  .home-stage {
    min-height: auto;
    gap: 28px;
    padding-top: 24px;
  }

  .home-brand {
    font-size: 72px;
  }

  .page-home h1 {
    font-size: 36px;
  }

  .home-summary,
  .home-cta-panel p {
    font-size: 16px;
  }

  .home-visual {
    padding-top: 0;
  }

  .home-visual-pill {
    position: static;
    margin: 0 0 10px;
  }

  .overview-frame {
    padding: 20px;
    border-radius: 30px;
  }

  .overview-column {
    padding: 16px;
    border-radius: 22px;
  }

  .overview-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .home-section {
    padding: 56px 0;
  }

  .home-section-intro h2,
  .home-flow-copy h2 {
    font-size: 44px;
  }

  .story-column h3,
  .flow-step h3,
  .resource-link strong {
    font-size: 28px;
  }

  .flow-step {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 14px;
  }

  .home-cta-panel {
    border-radius: 28px;
    justify-items: start;
    text-align: left;
  }

  .home-cta-panel h2 {
    font-size: 50px;
  }

  .home-cta .home-actions {
    justify-content: flex-start;
  }
}
