:root {
  --fc-green: #2D4A2D;
  --fc-green-deep: #1F3925;
  --fc-green-soft: #3B5C3B;
  --fc-cream: #F5ECD7;
  --fc-cream-soft: #FAF4E5;
  --fc-white: #FFFFFF;
  --fc-text: #0F1A0F;
  --fc-text-muted: #6B6B6B;
  --fc-text-faint: #9A9A9A;
  --fc-border: #E5E5E0;
  --fc-surface-gray: #F7F7F3;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--fc-text);
  background: var(--fc-white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

svg {
  width: 100%;
  height: 100%;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid rgba(45, 74, 45, 0.32);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px max(24px, calc((100vw - 1200px) / 2)) 18px;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(229, 229, 224, 0.7);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, opacity 220ms ease;
}

.site-header.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
}

.site-header > *,
.hero-shell > *,
.split > * {
  min-width: 0;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark {
  flex: 0 0 auto;
  width: 172px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
  color: var(--fc-text);
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

.nav-cta,
.button,
.dm-pill,
.phone-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 500;
  line-height: 1.2;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.nav-cta {
  min-height: 44px;
  padding: 12px 22px;
  color: var(--fc-white);
  background: var(--fc-green);
  font-size: 13px;
}

.nav-cta:hover,
.button-primary:hover,
.dm-pill:hover,
.phone-button:hover {
  background: var(--fc-green-deep);
}

.section {
  padding: 96px 0;
}

.section-white {
  background: var(--fc-white);
}

.section-cream {
  background: var(--fc-cream-soft);
}

.section-green {
  background: var(--fc-green);
}

.container,
.hero-shell,
.footer-shell {
  width: calc(100% - 48px);
  max-width: 1200px;
  margin: 0 auto;
}

.narrow {
  max-width: 800px;
}

.center {
  text-align: center;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 72px;
  align-items: center;
}

.section-header {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
}

.section-number,
.eyebrow {
  margin: 0 0 16px;
  color: var(--fc-green);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  max-width: 100%;
  color: var(--fc-text);
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

.section-sub,
.body-large {
  max-width: 720px;
  margin: 18px auto 0;
  color: var(--fc-text-muted);
  font-size: 20px;
  line-height: 1.6;
}

.align-left {
  margin-left: 0;
  margin-right: 0;
}

.hero-section {
  padding: 92px 0 108px;
  background:
    radial-gradient(circle at 86% 24%, rgba(245, 236, 215, 0.86) 0, rgba(245, 236, 215, 0) 34%),
    linear-gradient(180deg, rgba(250, 244, 229, 0.5) 0%, rgba(255, 255, 255, 0) 52%),
    var(--fc-white);
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: 78px;
  align-items: center;
}

.hero-copy {
  min-width: 0;
  max-width: 860px;
}

.hero-subcopy {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--fc-text-muted);
  font-size: 20px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 52px;
  padding: 14px 28px;
  border: 1px solid transparent;
  font-size: 15px;
}

.button-primary {
  color: var(--fc-white);
  background: var(--fc-green);
}

.button-secondary {
  border-color: var(--fc-green);
  color: var(--fc-green);
  background: var(--fc-white);
}

.button-secondary:hover {
  background: var(--fc-cream-soft);
}

.button-cream {
  color: var(--fc-green);
  background: var(--fc-cream);
}

.button-cream:hover {
  background: var(--fc-white);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.trust-row li,
.info-chip-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid var(--fc-border);
  border-radius: 999px;
  color: var(--fc-green);
  background: rgba(250, 244, 229, 0.58);
  font-size: 13px;
  line-height: 1;
}

.creator-hero-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 0;
  width: 100%;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--fc-border);
  border-radius: 32px;
  background: var(--fc-cream);
}

.creator-photo-wrap {
  position: relative;
  min-height: 430px;
  background: var(--fc-green);
}

.creator-photo {
  width: 100%;
  height: 100%;
}

.creator-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.creator-photo span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: var(--fc-cream);
  font-size: 64px;
  font-weight: 500;
}

.creator-platform {
  position: absolute;
  left: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 13px;
  border-radius: 999px;
  color: var(--fc-text);
  background: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 500;
}

.creator-platform .icon {
  width: 18px;
  height: 18px;
  color: #cc1f1a;
}

.creator-card-body {
  display: grid;
  align-content: center;
  padding: 28px;
}

.creator-label {
  margin: 0 0 8px;
  color: var(--fc-green-soft);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.creator-card-body h2 {
  color: var(--fc-green);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0;
}

.creator-card-body > p:not(.creator-label) {
  margin: 5px 0 0;
  color: var(--fc-green-soft);
  font-size: 14px;
}

.creator-stats {
  margin-top: 28px;
  padding: 18px 0;
  border-top: 1px solid rgba(45, 74, 45, 0.18);
  border-bottom: 1px solid rgba(45, 74, 45, 0.18);
}

.creator-stats strong {
  display: block;
  color: var(--fc-green);
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  line-height: 1;
}

.creator-stats span {
  display: block;
  margin-top: 6px;
  color: var(--fc-green-soft);
  font-size: 13px;
}

.creator-stats.is-pending strong {
  font-family: var(--font-body);
  font-size: 22px;
}

.creator-metric-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.creator-metric-grid div {
  min-height: 74px;
  padding: 12px;
  border: 1px solid rgba(45, 74, 45, 0.16);
  border-radius: 14px;
  background: rgba(250, 244, 229, 0.68);
}

.creator-metric-grid strong,
.creator-metric-grid span {
  display: block;
}

.creator-metric-grid strong {
  color: var(--fc-green);
  font-family: var(--font-display);
  font-size: 27px;
  font-weight: 500;
  line-height: 1;
}

.creator-metric-grid span {
  margin-top: 7px;
  color: var(--fc-green-soft);
  font-size: 12px;
  line-height: 1.25;
}

.review-warning {
  margin: 16px 0 0;
  padding: 10px 12px;
  border: 1px solid rgba(45, 74, 45, 0.24);
  border-radius: 12px;
  color: var(--fc-green);
  background: var(--fc-cream-soft);
  font-size: 12px;
  line-height: 1.4;
}

.proof-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.proof-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 8px;
  align-items: start;
  color: var(--fc-green);
  font-size: 13px;
  line-height: 1.35;
}

.proof-list .icon {
  width: 16px;
  height: 16px;
  margin-top: 1px;
}

.recent-video-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.recent-video-list p {
  margin: 0;
  color: var(--fc-green-soft);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recent-video-list a {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid rgba(45, 74, 45, 0.16);
  border-radius: 12px;
  color: var(--fc-green);
  background: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  line-height: 1.3;
  text-decoration: none;
}

.recent-video-list small {
  color: var(--fc-green-soft);
  font-size: 11px;
}

.icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.icon:not(.icon-youtube) {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.trust-row .icon {
  width: 16px;
  height: 16px;
}

.doctor-card {
  width: 100%;
  max-width: 320px;
  justify-self: end;
  padding: 24px;
  border: 1px solid var(--fc-border);
  border-radius: 24px;
  background: var(--fc-white);
}

.doctor-card-top {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
}

.avatar {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--fc-green);
  background: var(--fc-cream);
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.avatar-small {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  font-size: 16px;
}

.avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-card h2,
.phone-doctor h3,
.ownership-card h3,
.flow-step h3,
.care-card h4 {
  margin: 0;
  color: var(--fc-text);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.35;
}

.doctor-card p {
  margin: 4px 0 0;
  color: var(--fc-text-muted);
  font-size: 13px;
  line-height: 1.45;
}

.card-divider {
  height: 1px;
  margin: 22px 0;
  background: var(--fc-border);
}

.signal-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--fc-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
}

.youtube-icon {
  display: inline-flex;
  width: 22px;
  height: 22px;
  color: #cc1f1a;
}

.yt-fill {
  fill: currentColor;
}

.yt-play {
  fill: var(--fc-white);
}

.creator-signal {
  margin-top: 10px;
}

.dm-card {
  margin-top: 36px;
  padding: 32px;
  border-radius: 24px;
  background: var(--fc-white);
  border: 1px solid rgba(229, 229, 224, 0.8);
}

.dm-stack {
  display: grid;
  gap: 12px;
}

.dm-bubble {
  width: fit-content;
  max-width: 520px;
  margin: 0;
  padding: 13px 16px;
  border-radius: 14px;
  color: var(--fc-text);
  background: var(--fc-cream-soft);
  font-size: 14px;
  line-height: 1.45;
  text-align: left;
}

.dm-bubble-2 {
  margin-left: 48px;
}

.dm-bubble-3 {
  margin-left: 96px;
}

.comment-evidence-stack {
  display: grid;
  gap: 12px;
  text-align: left;
}

.comment-evidence {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  background: var(--fc-cream-soft);
}

.comment-evidence p {
  margin: 0;
  color: var(--fc-text);
  font-size: 14px;
  line-height: 1.55;
}

.comment-evidence div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.comment-evidence span {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--fc-green);
  background: var(--fc-cream);
  font-size: 12px;
  font-weight: 500;
}

.comment-evidence a {
  color: var(--fc-green);
  font-size: 12px;
  font-weight: 500;
}

.comment-evidence small {
  color: var(--fc-text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.flow-arrow {
  width: 44px;
  height: 44px;
  margin: 22px auto 16px;
  border-radius: 50%;
  color: var(--fc-green);
  background: var(--fc-cream);
  font-size: 0;
  line-height: 1;
}

.flow-arrow::before {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  font-size: 24px;
  content: "v";
}

.dm-pill,
.phone-button {
  min-height: 48px;
  padding: 13px 24px;
  color: var(--fc-white);
  background: var(--fc-green);
  font-size: 14px;
}

.feature-list {
  display: grid;
  gap: 16px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--fc-text);
}

.feature-list .icon {
  color: var(--fc-green);
  margin-top: 2px;
}

.phone-wrap {
  display: grid;
  justify-items: center;
}

.phone-frame {
  position: relative;
  width: min(100%, 342px);
  min-height: 660px;
  padding: 16px;
  border-radius: 34px;
  background: #E8E8E5;
  border: 1px solid #D8D8D4;
}

.phone-notch {
  position: absolute;
  top: 26px;
  left: 50%;
  width: 92px;
  height: 24px;
  border-radius: 999px;
  background: #222A22;
  transform: translateX(-50%);
  z-index: 2;
}

.phone-screen {
  min-height: 628px;
  padding: 18px;
  border-radius: 24px;
  background: var(--fc-white);
  overflow: hidden;
}

.phone-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
  color: var(--fc-green);
  font-size: 13px;
}

.phone-header span {
  font-size: 28px;
  line-height: 1;
}

.phone-doctor {
  padding: 36px 0 18px;
  text-align: center;
}

.phone-doctor p {
  margin: 4px 0 10px;
  color: var(--fc-text-muted);
  font-size: 12px;
}

.phone-doctor span {
  display: inline-flex;
  padding: 5px 10px;
  border-radius: 999px;
  color: var(--fc-green);
  background: var(--fc-cream-soft);
  font-size: 11px;
}

.phone-kicker,
.help-label {
  margin: 8px 0 10px;
  color: var(--fc-text-muted);
  font-size: 13px;
  text-align: center;
}

.care-card {
  padding: 16px;
  margin-top: 12px;
  border: 1px solid var(--fc-border);
  border-radius: 16px;
  background: var(--fc-white);
}

.care-card-primary {
  border-color: transparent;
  background: var(--fc-cream);
}

.care-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.care-card strong {
  color: var(--fc-text);
  font-weight: 500;
  white-space: nowrap;
}

.care-card p {
  margin: 8px 0 0;
  color: var(--fc-text-muted);
  font-size: 12px;
  line-height: 1.45;
}

.care-card-primary p {
  color: var(--fc-green);
}

.phone-button {
  width: 100%;
  margin-top: 16px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.chip {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 999px;
  color: var(--fc-green);
  background: var(--fc-cream-soft);
  font-size: 11px;
  line-height: 1;
}

.sample-note {
  max-width: 320px;
  margin: 14px auto 0;
  color: var(--fc-text-muted);
  font-size: 13px;
  text-align: center;
}

.green-card {
  width: calc(100% - 48px);
  max-width: 1000px;
  margin: 0 auto;
  padding: 56px;
  border-radius: 24px;
  background: var(--fc-cream);
}

.green-card h2 {
  color: var(--fc-green);
}

.green-card-sub {
  max-width: 720px;
  margin: 16px 0 0;
  color: var(--fc-green-soft);
  font-size: 18px;
}

.ai-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 34px;
}

.flow-step {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(45, 74, 45, 0.14);
}

.flow-step span {
  display: block;
  margin-bottom: 12px;
  color: var(--fc-green);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.flow-step h3 {
  color: var(--fc-green);
  font-family: var(--font-display);
  font-size: 18px;
}

.flow-step p {
  margin: 10px 0 0;
  color: var(--fc-green-soft);
  font-size: 13px;
  line-height: 1.45;
}

.time-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 28px;
  padding: 24px;
  border-radius: 24px;
  color: var(--fc-cream);
  background: var(--fc-green);
}

.time-strip p {
  margin: 0 0 8px;
  color: var(--fc-cream-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.time-strip span {
  color: var(--fc-cream-soft);
  font-size: 14px;
}

.time-strip strong {
  color: var(--fc-cream);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.compliance-line {
  width: calc(100% - 48px);
  max-width: 1000px;
  margin: 16px auto 0;
  color: rgba(245, 236, 215, 0.72);
  font-size: 13px;
  text-align: center;
}

.calculator-grid {
  align-items: start;
}

.slider-group {
  display: grid;
  gap: 22px;
  margin-top: 32px;
}

.slider-control {
  display: grid;
  gap: 10px;
}

.slider-control > span {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--fc-text);
  font-size: 14px;
}

.slider-control strong {
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.slider-control small {
  color: var(--fc-text-muted);
  font-size: 12px;
}

input[type="range"] {
  width: 100%;
  height: 28px;
  margin: 0;
  accent-color: var(--fc-green);
}

input[type="range"]::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 999px;
  background: var(--fc-border);
}

input[type="range"]::-webkit-slider-thumb {
  width: 20px;
  height: 20px;
  margin-top: -7px;
  border: 3px solid var(--fc-white);
  border-radius: 50%;
  background: var(--fc-green);
  box-shadow: 0 0 0 1px rgba(45, 74, 45, 0.2);
  -webkit-appearance: none;
}

input[type="range"]::-moz-range-track {
  height: 6px;
  border-radius: 999px;
  background: var(--fc-border);
}

input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 3px solid var(--fc-white);
  border-radius: 50%;
  background: var(--fc-green);
}

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

.result-card {
  padding: 40px;
  border-radius: 24px;
  background: var(--fc-cream);
}

.result-caption {
  margin: 0 0 10px;
  color: var(--fc-green-soft);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.result-number {
  display: block;
  color: var(--fc-green);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  line-height: 1.05;
}

.result-note {
  margin: 8px 0 0;
  color: var(--fc-text-muted);
  font-size: 13px;
}

.formula {
  margin: 28px 0 0;
  color: var(--fc-text-muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.ownership-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.ownership-card {
  min-height: 246px;
  padding: 32px;
  border: 1px solid var(--fc-border);
  border-radius: 24px;
  background: var(--fc-white);
}

.ownership-card .icon {
  width: 26px;
  height: 26px;
  margin-bottom: 24px;
  color: var(--fc-green);
}

.ownership-card h3 {
  font-size: 18px;
}

.ownership-card p {
  margin: 12px 0 0;
  color: var(--fc-text-muted);
  font-size: 14px;
}

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

.comparison-card {
  padding: 32px;
  border-radius: 24px;
}

.comparison-card > p {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.comparison-card ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0 0 28px;
  list-style: none;
}

.comparison-card li {
  font-size: 15px;
}

.comparison-card em {
  font-size: 13px;
}

.comparison-usual {
  color: var(--fc-text-muted);
  background: var(--fc-cream-soft);
}

.comparison-usual > p {
  color: var(--fc-text-muted);
}

.comparison-usual em {
  color: var(--fc-text-faint);
}

.comparison-doctor {
  color: var(--fc-cream);
  background: var(--fc-green);
}

.comparison-doctor > p,
.comparison-doctor em {
  color: var(--fc-cream-soft);
}

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

.creators-card .eyebrow,
.creators-card .green-card-sub {
  margin-left: auto;
  margin-right: auto;
}

.creator-flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 34px;
}

.creator-flow span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 10px 15px;
  border-radius: 999px;
  color: var(--fc-green);
  background: var(--fc-cream-soft);
  font-size: 13px;
}

.creator-tagline {
  max-width: 720px;
  margin: 30px auto 0;
  color: var(--fc-green);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.35;
}

.faq-list {
  border-top: 1px solid var(--fc-border);
}

.faq-item {
  border-bottom: 1px solid var(--fc-border);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 24px;
  gap: 18px;
  width: 100%;
  padding: 22px 0;
  border: 0;
  color: var(--fc-text);
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  cursor: pointer;
}

.faq-icon {
  position: relative;
  width: 24px;
  height: 24px;
}

.faq-icon::before,
.faq-icon::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: var(--fc-green);
  content: "";
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 180ms ease;
}

.faq-item.is-open .faq-icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 220ms ease;
}

.faq-panel > p {
  overflow: hidden;
  margin: 0;
  color: var(--fc-text-muted);
  font-size: 14px;
}

.faq-item.is-open .faq-panel {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-panel > p {
  padding: 0 42px 22px 0;
}

.final-cta {
  color: var(--fc-cream);
}

.final-cta h2 {
  color: var(--fc-cream);
}

.final-cta p {
  max-width: 720px;
  margin: 18px auto 28px;
  color: var(--fc-cream-soft);
  font-size: 18px;
  line-height: 1.65;
}

.final-cta small {
  display: block;
  margin-top: 18px;
  color: var(--fc-cream-soft);
  font-size: 13px;
}

.site-footer {
  padding: 56px 0 34px;
  background: var(--fc-white);
  border-top: 1px solid var(--fc-border);
}

.footer-shell {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) 2fr;
  gap: 48px;
}

.footer-brand img {
  width: 172px;
  height: auto;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.footer-links h2 {
  margin: 0 0 12px;
  color: var(--fc-text);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: var(--fc-text-muted);
  font-size: 14px;
}

.footer-microcopy {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--fc-text-faint);
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

@media (max-width: 1100px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 44px;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .ai-flow,
  .ownership-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 820px) {
  .section {
    padding: 64px 0;
  }

  .container,
  .hero-shell,
  .footer-shell {
    width: calc(100% - 40px);
    max-width: 720px;
  }

  .site-header {
    padding-right: 20px;
    padding-left: 20px;
  }

  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 40px;
  }

  .split,
  .hero-shell,
  .footer-shell {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding: 56px 0 64px;
  }

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

  .creator-photo-wrap {
    min-height: 360px;
  }

  .doctor-card {
    justify-self: start;
  }

  .green-card {
    width: calc(100% - 40px);
    max-width: 720px;
    padding: 40px;
  }

  .time-strip,
  .comparison-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }

  .time-strip strong {
    font-size: 48px;
  }
}

@media (max-width: 600px) {
  .site-header {
    align-items: flex-start;
    gap: 18px;
  }

  .brand-mark {
    width: 148px;
  }

  .nav-links {
    justify-content: flex-end;
  }

  .nav-cta {
    min-height: 40px;
    padding: 10px 18px;
    font-size: 12px;
  }

  .section {
    padding: 48px 0;
  }

  .container,
  .hero-shell,
  .footer-shell {
    width: calc(100% - 32px);
    max-width: 720px;
  }

  h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 34px;
  }

  .section-sub,
  .body-large,
  .hero-subcopy {
    font-size: 18px;
  }

  .hero-actions,
  .button,
  .dm-pill {
    width: 100%;
  }

  .trust-row li {
    flex: 1 1 180px;
  }

  .doctor-card {
    max-width: none;
  }

  .creator-hero-card {
    border-radius: 24px;
  }

  .creator-photo-wrap {
    min-height: 320px;
  }

  .creator-card-body {
    padding: 24px;
  }

  .creator-stats strong {
    font-size: 42px;
  }

  .dm-card,
  .result-card,
  .ownership-card,
  .comparison-card {
    padding: 24px;
  }

  .dm-bubble-2,
  .dm-bubble-3 {
    margin-left: 0;
  }

  .phone-frame {
    min-height: 632px;
  }

  .phone-screen {
    min-height: 600px;
  }

  .green-card {
    width: calc(100% - 32px);
    max-width: 720px;
    padding: 28px;
  }

  .ai-flow,
  .ownership-grid {
    grid-template-columns: 1fr;
  }

  .result-number {
    font-size: 48px;
  }

  .footer-links {
    gap: 20px;
  }
}

@media (max-width: 390px) {
  h1 {
    font-size: 40px;
  }

  .hero-subcopy,
  .section-sub,
  .body-large {
    font-size: 17px;
  }

  .phone-frame {
    padding: 12px;
  }

  .phone-screen {
    padding: 16px;
  }
}
