@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Newsreader:opsz,wght@6..72,500;6..72,600&display=swap");

:root {
  --bg: #f5efe6;
  --panel: rgba(255, 253, 249, 0.92);
  --panel-strong: rgba(255, 252, 247, 0.97);
  --ink: #17313a;
  --ink-soft: #5c7175;
  --line: rgba(23, 49, 58, 0.12);
  --sidebar: #18323a;
  --teal: #1f7f72;
  --teal-soft: rgba(31, 127, 114, 0.12);
  --jade: #2f9a82;
  --gold-soft: rgba(179, 138, 82, 0.12);
  --shadow: 0 26px 50px rgba(28, 40, 44, 0.08);
  --shadow-soft: 0 14px 30px rgba(28, 40, 44, 0.05);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --max-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(47, 154, 130, 0.08), transparent 28%),
    radial-gradient(circle at bottom right, rgba(179, 138, 82, 0.08), transparent 24%),
    linear-gradient(180deg, #faf6f0 0%, var(--bg) 46%, #efe5d7 100%);
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(31, 127, 114, 0.22);
  outline-offset: 3px;
}

button,
input,
select,
textarea {
  font: inherit;
}

.marketing-body {
  padding: 18px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -56px;
  z-index: 20;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(24, 50, 58, 0.96);
  color: #fffaf3;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus-visible {
  top: 16px;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-enabled [data-reveal="base"],
  .motion-enabled [data-reveal="stagger"] {
    opacity: 0;
    transform: translateY(18px);
    transition:
      opacity 520ms ease,
      transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: opacity, transform;
  }

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

  .motion-enabled [data-reveal="stagger"] > * {
    opacity: 0;
    transform: translateY(16px);
    transition:
      opacity 500ms ease,
      transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .motion-enabled [data-reveal="stagger"].is-revealed > * {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-enabled [data-reveal="stagger"].is-revealed > *:nth-child(2) {
    transition-delay: 50ms;
  }

  .motion-enabled [data-reveal="stagger"].is-revealed > *:nth-child(3) {
    transition-delay: 100ms;
  }

  .motion-enabled [data-reveal="stagger"].is-revealed > *:nth-child(4) {
    transition-delay: 150ms;
  }
}

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

.marketing-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 16px 0 24px;
}

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

.marketing-brand__mark {
  width: 54px;
  height: 54px;
  display: block;
  flex: 0 0 auto;
  filter: none;
}

.marketing-brand__mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.marketing-brand strong,
.marketing-brand small {
  display: block;
}

.marketing-brand strong {
  font-size: 1rem;
}

.marketing-brand small {
  margin-top: 3px;
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.marketing-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.marketing-nav > a:not(.button) {
  padding: 10px 12px;
  border-radius: 999px;
  color: var(--ink-soft);
}

.marketing-nav > a:not(.button):hover {
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
}

.button {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button--wide {
  width: 100%;
  text-align: center;
}

.button--primary {
  background: linear-gradient(145deg, var(--teal), var(--jade));
  color: #fdfaf6;
  -webkit-text-fill-color: #fdfaf6;
  box-shadow: 0 16px 30px rgba(31, 127, 114, 0.2);
}

.button--primary:visited,
.button--primary:hover,
.button--primary:focus-visible,
.button--primary:active {
  color: #fdfaf6;
  -webkit-text-fill-color: #fdfaf6;
}

.button--secondary,
.button--ghost {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(23, 49, 58, 0.1);
  color: var(--ink);
}

.button--ghost {
  background: transparent;
}

.button--whats-new {
  gap: 10px;
}

.whats-new-launcher__version {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(24, 50, 58, 0.08);
  color: var(--ink);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
  color: var(--ink-soft);
}

.eyebrow--light {
  color: rgba(255, 250, 243, 0.74);
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 24px;
  padding: 18px 0 20px;
}

.hero-copy,
.hero-panel,
.content-card,
.step-card,
.pillar-card,
.demo-frame,
.cta-band,
.form-panel,
.pricing-card,
.video-card,
.legal-card,
.trust-band,
.signal-card,
.note-card {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-copy,
.hero-panel,
.legal-card {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 42px;
}

.hero-copy h1,
.section-heading h2,
.cta-band h2,
.form-intro h1,
.legal-card h1,
.trust-band h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.96;
}

.hero-copy__lead,
.section-heading p,
.content-card p,
.step-card p,
.pillar-card p,
.pillar-card small,
.cta-band p,
.form-intro p,
.video-card p,
.pricing-card p,
.trust-band p,
.copy-stack p {
  color: var(--ink-soft);
  line-height: 1.72;
  font-size: 1.05rem;
}

.hero-copy__lead {
  max-width: 56ch;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

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

.hero-actions--tight {
  margin-top: 18px;
}

.hero-trust,
.feature-list,
.video-card__list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-trust li,
.feature-list li,
.video-card__list li {
  padding-left: 20px;
  position: relative;
  color: var(--ink-soft);
}

.hero-trust li::before,
.feature-list li::before,
.video-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--teal);
}

.hero-panel {
  padding: 24px;
  background: linear-gradient(180deg, rgba(24, 50, 58, 0.98), rgba(24, 50, 58, 0.92));
  color: #fffaf3;
}

.hero-panel__card {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-panel__card--primary {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(47, 154, 130, 0.08));
}

.hero-panel__card strong {
  display: block;
  margin: 6px 0 10px;
  font-size: 1.45rem;
}

.hero-panel__card p,
.metric-chip span {
  color: rgba(255, 250, 243, 0.72);
}

.hero-panel__metrics {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.metric-chip {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.metric-chip strong {
  margin-top: 5px;
  color: #fffaf3;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 0 0 20px;
}

.signal-card {
  padding: 18px 20px;
  border-radius: 20px;
  background: var(--panel-strong);
}

.signal-card span,
.signal-card strong {
  display: block;
}

.signal-card span {
  color: var(--ink-soft);
  font-size: 0.84rem;
}

.signal-card strong {
  margin-top: 6px;
  font-size: 1rem;
  line-height: 1.45;
}

.content-section {
  padding: 30px 0;
}

.content-section--muted {
  padding: 32px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.82), rgba(255, 248, 241, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: var(--shadow-soft);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 22px;
}

.section-heading:not(.section-heading--panel),
.subsection-heading {
  position: relative;
  padding: 24px 26px 26px;
  border-radius: 28px;
  border: 1px solid rgba(31, 127, 114, 0.24);
  background: linear-gradient(145deg, rgba(24, 50, 58, 0.98), rgba(31, 127, 114, 0.92));
  box-shadow: 0 18px 34px rgba(24, 50, 58, 0.14);
  color: #fffaf3;
  overflow: hidden;
}

.section-heading:not(.section-heading--panel)::after,
.subsection-heading::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.22), rgba(255, 250, 243, 0));
}

.section-heading:not(.section-heading--panel) .eyebrow,
.subsection-heading .eyebrow {
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 243, 0.74);
}

.section-heading:not(.section-heading--panel) h2,
.subsection-heading h3 {
  color: #fffaf3;
}

.section-heading:not(.section-heading--panel) p {
  max-width: 54ch;
  margin: 14px 0 0;
  color: rgba(255, 250, 243, 0.76);
}

.section-heading--panel {
  position: relative;
  max-width: 860px;
  padding: 24px 26px 26px;
  border-radius: 28px;
  border: 1px solid rgba(23, 49, 58, 0.1);
  background:
    radial-gradient(circle at top right, rgba(31, 127, 114, 0.08), transparent 34%),
    linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(246, 239, 230, 0.92));
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.section-heading--panel::after {
  content: "";
  position: absolute;
  inset: auto 26px 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(23, 49, 58, 0.12), rgba(23, 49, 58, 0));
}

.section-heading--panel .eyebrow {
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(23, 49, 58, 0.09);
  background: rgba(255, 255, 255, 0.58);
}

.section-heading--panel p {
  max-width: 54ch;
  margin: 14px 0 0;
}

.section-heading--workflow {
  max-width: 760px;
  border-color: rgba(31, 127, 114, 0.24);
  background: linear-gradient(145deg, rgba(24, 50, 58, 0.98), rgba(31, 127, 114, 0.94));
  box-shadow: 0 22px 40px rgba(24, 50, 58, 0.16);
  color: #fffaf3;
}

.section-heading--workflow::after {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.24), rgba(255, 250, 243, 0));
}

.section-heading--workflow .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 243, 0.74);
}

.section-heading--workflow h2 {
  color: #fffaf3;
}

.section-heading--workflow p {
  color: rgba(255, 250, 243, 0.76);
}

.section-heading--problem {
  border-color: rgba(31, 127, 114, 0.24);
  background: linear-gradient(145deg, rgba(24, 50, 58, 0.98), rgba(31, 127, 114, 0.94));
  box-shadow: 0 22px 40px rgba(24, 50, 58, 0.16);
  color: #fffaf3;
}

.section-heading--problem::after {
  background: linear-gradient(90deg, rgba(255, 250, 243, 0.24), rgba(255, 250, 243, 0));
}

.section-heading--problem .eyebrow {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 243, 0.74);
}

.section-heading--problem h2 {
  color: #fffaf3;
}

.section-heading--problem p {
  color: rgba(255, 250, 243, 0.76);
}

.section-heading h2,
.cta-band h2,
.form-intro h1,
.legal-card h1,
.trust-band h2 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.02;
}

.section-heading p {
  margin: 14px 0 0;
}

.problem-grid,
.pillar-grid,
.compatibility-grid,
.form-intro__notes,
.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.audience-grid,
.reason-grid,
.comparison-grid,
.founder-note-grid,
.next-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.founder-note-grid {
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
}

.content-card,
.step-card,
.pillar-card,
.pricing-card,
.video-card,
.note-card {
  padding: 24px;
  border-radius: var(--radius-lg);
}

.content-card h3,
.step-card h3,
.pillar-card h3,
.pricing-card h3,
.video-card h3,
.note-card strong {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

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

.step-card__number,
.pillar-card__tag,
.pricing-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.step-card__number {
  margin-bottom: 16px;
}

.pricing-card__badge {
  margin-bottom: 16px;
  background: var(--gold-soft);
  color: #8e652c;
}

.pillar-card small {
  display: block;
  margin-top: 10px;
}

.showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
  margin-top: 22px;
  align-items: stretch;
}

.proof-callout {
  margin-top: 18px;
}

.demo-frame {
  overflow: hidden;
}

.demo-frame__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  background: rgba(24, 50, 58, 0.96);
  color: rgba(255, 250, 243, 0.76);
}

.demo-frame__bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
}

.demo-frame__bar strong {
  margin-left: 6px;
  font-size: 0.88rem;
}

.demo-frame__viewport {
  position: relative;
  min-height: 660px;
  background: #e8ded1;
}

.demo-frame__viewport iframe {
  width: 100%;
  height: 660px;
  border: 0;
}

.demo-frame__overlay {
  position: absolute;
  inset: auto 22px 22px auto;
  width: min(300px, calc(100% - 44px));
  padding: 18px;
  border-radius: 22px;
  background: rgba(24, 50, 58, 0.9);
  color: #fffaf3;
  box-shadow: 0 18px 36px rgba(24, 50, 58, 0.24);
}

.demo-frame__overlay p {
  margin: 0 0 14px;
  color: rgba(255, 250, 243, 0.76);
  line-height: 1.6;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 242, 234, 0.9));
}

.pricing-card--featured {
  border-color: rgba(47, 154, 130, 0.3);
  box-shadow: 0 26px 50px rgba(31, 127, 114, 0.12);
}

.pricing-card__lead {
  margin: 14px 0 0;
}

.price-block {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}

.price-block strong {
  font-size: clamp(2rem, 4vw, 3rem);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.price-block span {
  color: var(--ink-soft);
}

.price-block--secondary {
  margin-top: 6px;
}

.pricing-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 0.94rem;
}

.subsection-heading {
  max-width: 760px;
  margin: 28px 0 18px;
}

.subsection-heading h3 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.6rem, 2.5vw, 2.15rem);
  line-height: 1.06;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.faq-grid {
  display: grid;
  gap: 14px;
}

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.78);
  background: var(--panel-strong);
  box-shadow: var(--shadow-soft);
  border-radius: 20px;
  padding: 0 18px;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-weight: 700;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.68;
}

.trust-band {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding: 24px 28px;
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.9), rgba(248, 242, 234, 0.88));
}

.trust-links,
.marketing-footer__links,
.inline-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trust-links a,
.marketing-footer__links a,
.inline-link {
  color: var(--ink-soft);
}

.trust-links a:hover,
.marketing-footer__links a:hover,
.inline-link:hover {
  color: var(--ink);
}

.cta-band {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 30px 32px;
  margin: 28px 0 8px;
  background: linear-gradient(145deg, rgba(24, 50, 58, 0.98), rgba(24, 50, 58, 0.9));
  color: #fffaf3;
}

.cta-band p {
  margin: 10px 0 0;
  color: rgba(255, 250, 243, 0.74);
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 1fr);
  gap: 22px;
  padding: 12px 0 26px;
}

.form-intro__notes {
  margin-top: 20px;
}

.feature-list--compact {
  margin-top: 14px;
}

.form-panel {
  padding: 28px;
}

.form-panel__intro {
  margin-bottom: 18px;
}

.form-panel__intro p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.64;
}

.demo-form {
  display: grid;
  gap: 18px;
}

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

.field {
  display: grid;
  gap: 8px;
}

.field span {
  font-size: 0.88rem;
  font-weight: 700;
}

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

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink);
  padding: 14px 15px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(31, 127, 114, 0.35);
  box-shadow: 0 0 0 4px rgba(31, 127, 114, 0.1);
  background: #fffdf9;
}

.field--hidden {
  display: none;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--ink-soft);
}

.form-status[data-state="success"] {
  color: var(--teal);
}

.form-status[data-state="error"] {
  color: #b96855;
}

.form-assurance {
  margin-top: 18px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid var(--line);
}

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

.form-assurance p {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.58;
}

.inline-actions {
  margin-top: 16px;
}

.content-page {
  width: min(100%, 980px);
  margin: 0 auto;
  padding: 12px 0 26px;
}

.legal-card {
  padding: 34px;
}

.legal-card__intro {
  max-width: 64ch;
  margin: 12px 0 0;
  color: var(--ink-soft);
  line-height: 1.72;
}

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

.copy-stack--legal {
  gap: 16px;
}

.copy-stack h2 {
  margin: 0;
  font-size: 1.02rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.copy-stack h2 + p {
  margin-top: -4px;
}

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

.copy-stack a {
  color: var(--teal);
}

.contact-grid {
  margin-top: 6px;
}

.note-card {
  margin-top: 18px;
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(248, 242, 234, 0.9));
}

.note-card p {
  margin: 0;
}

.marketing-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 0 6px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.marketing-footer__brand strong,
.marketing-footer__brand span {
  display: block;
}

.marketing-footer__brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marketing-footer__mark {
  width: 38px;
  height: 38px;
  display: block;
  flex: 0 0 auto;
}

.marketing-footer__brand span {
  margin-top: 3px;
}

.whats-new-open {
  overflow: hidden;
}

.whats-new-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  padding: 18px;
}

.whats-new-modal[hidden] {
  display: none;
}

.whats-new-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(24, 50, 58, 0.34);
  cursor: pointer;
}

.whats-new-sheet {
  position: relative;
  z-index: 1;
  width: min(700px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  padding: 24px;
  border-radius: 28px;
  background: #fffaf4;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 28px 54px rgba(18, 28, 33, 0.18);
  backdrop-filter: blur(14px);
}

.whats-new-sheet__header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}

.whats-new-sheet__header h2 {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1.04;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.whats-new-sheet__header p {
  margin: 10px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.whats-new-sheet__meta {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.whats-new-sheet__body {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.whats-new-section,
.whats-new-history {
  padding: 16px 18px;
  border-radius: 20px;
  background: #fffdf9;
  border: 1px solid var(--line);
}

.whats-new-section strong,
.whats-new-history > strong {
  display: block;
  margin-bottom: 10px;
  font-size: 0.96rem;
}

.whats-new-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: var(--ink-soft);
  line-height: 1.58;
}

.whats-new-history__items {
  display: grid;
  gap: 10px;
}

.whats-new-history__item {
  display: grid;
  gap: 4px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.whats-new-history__item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.whats-new-history__item > span,
.whats-new-history__item > small {
  color: var(--ink-soft);
}

.whats-new-history__item > span {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.whats-new-history__item > strong {
  margin: 0;
}

.whats-new-sheet__actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 18px;
}

@media (max-width: 1160px) {
  .hero-section,
  .form-layout,
  .showcase-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid,
  .proof-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .marketing-body {
    padding: 12px;
  }

  .hero-section {
    gap: 18px;
    padding: 10px 0 14px;
  }

  .marketing-header,
  .marketing-nav,
  .cta-band,
  .marketing-footer,
  .trust-band,
  .whats-new-sheet__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .content-card,
  .step-card,
  .pillar-card,
  .form-panel,
  .pricing-card,
  .video-card,
  .legal-card,
  .signal-card,
  .note-card,
  .content-section--muted {
    padding: 20px;
    border-radius: 22px;
  }

  .problem-grid,
  .pillar-grid,
  .compatibility-grid,
  .form-intro__notes,
  .form-grid,
  .audience-grid,
  .reason-grid,
  .comparison-grid,
  .founder-note-grid,
  .next-steps-grid,
  .steps-grid,
  .signal-strip,
  .contact-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .content-section {
    padding: 22px 0;
  }

  .content-section--muted {
    padding: 24px 18px;
  }

  .section-heading {
    margin-bottom: 16px;
  }

  .section-heading h2,
  .cta-band h2,
  .form-intro h1,
  .legal-card h1,
  .trust-band h2 {
    font-size: clamp(2rem, 8.9vw, 2.7rem);
    line-height: 1.04;
  }

  .section-heading--panel {
    padding: 18px 18px 20px;
    border-radius: 24px;
    box-shadow: 0 18px 34px rgba(28, 40, 44, 0.08);
  }

  .section-heading:not(.section-heading--panel),
  .subsection-heading {
    padding: 18px 18px 20px;
    border-radius: 24px;
  }

  .section-heading--panel::after {
    inset: auto 18px 0;
  }

  .section-heading:not(.section-heading--panel)::after,
  .subsection-heading::after {
    inset: auto 18px 0;
  }

  .section-heading--panel .eyebrow {
    margin-bottom: 10px;
  }

  .section-heading:not(.section-heading--panel) .eyebrow,
  .subsection-heading .eyebrow {
    margin-bottom: 10px;
  }

  .hero-copy__lead,
  .section-heading p,
  .content-card p,
  .step-card p,
  .pillar-card p,
  .pillar-card small,
  .cta-band p,
  .form-intro p,
  .video-card p,
  .pricing-card p,
  .trust-band p,
  .copy-stack p {
    line-height: 1.62;
  }

  .hero-actions,
  .cta-band__actions,
  .form-actions,
  .pricing-card__actions {
    gap: 10px;
    margin-top: 18px;
  }

  .hero-trust,
  .feature-list,
  .video-card__list {
    margin-top: 18px;
    gap: 8px;
  }

  .signal-strip,
  .proof-grid,
  .pricing-grid,
  .showcase-grid,
  .faq-grid,
  .problem-grid,
  .pillar-grid,
  .compatibility-grid,
  .steps-grid,
  .contact-grid {
    gap: 14px;
  }

  .cta-band {
    padding: 24px 20px;
    margin: 22px 0 6px;
  }

  .trust-band {
    padding: 22px 20px;
  }

  .whats-new-sheet {
    padding: 20px;
    border-radius: 22px;
  }

  .whats-new-sheet__meta {
    justify-items: start;
    text-align: left;
  }

  .demo-frame__viewport,
  .demo-frame__viewport iframe {
    min-height: 520px;
    height: 520px;
  }

  .demo-frame__overlay {
    inset: auto 16px 16px auto;
    width: calc(100% - 32px);
  }
}

@media (max-width: 560px) {
  .marketing-body {
    padding: 10px;
  }

  .hero-copy,
  .hero-panel,
  .content-card,
  .step-card,
  .pillar-card,
  .form-panel,
  .pricing-card,
  .video-card,
  .legal-card,
  .signal-card,
  .note-card,
  .content-section--muted {
    padding: 18px;
    border-radius: 20px;
  }

  .hero-copy h1 {
    max-width: 9ch;
    font-size: clamp(2.7rem, 13vw, 3.5rem);
    line-height: 0.98;
  }

  .section-heading h2,
  .cta-band h2,
  .form-intro h1,
  .legal-card h1,
  .trust-band h2 {
    font-size: clamp(1.9rem, 10.3vw, 2.45rem);
  }

  .section-heading--panel {
    padding: 16px 16px 18px;
  }

  .section-heading:not(.section-heading--panel),
  .subsection-heading {
    padding: 16px 16px 18px;
  }

  .signal-card strong,
  .content-card h3,
  .step-card h3,
  .pillar-card h3,
  .pricing-card h3,
  .video-card h3 {
    line-height: 1.34;
  }

  .demo-frame__viewport,
  .demo-frame__viewport iframe {
    min-height: 460px;
    height: 460px;
  }
}
