:root {
  --brand: #E7762C;
  --ink: #171717;
  --muted: #5f5a54;
  --paper: #fbfbf9;
  --panel: #fffefd;
  --soft: #fbfaf8;
  --line: #dedede;
  --field: #ffffff;
  --brand-ink: #8f4315;
  --brand-soft: rgba(231, 118, 44, 0.08);
  --brand-line: rgba(231, 118, 44, 0.32);
  --demo-bg: #f2eee8;
  --shadow: 0 18px 50px rgba(23, 23, 23, 0.08);
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--paper);
}

a {
  color: inherit;
}

.page {
  width: min(calc(100% - 40px), 1060px);
  margin: 0 auto;
}

.narrow {
  width: min(calc(100% - 40px), 720px);
}

.hero {
  display: flex;
  align-items: center;
  min-height: calc(100svh - 88px);
  padding: clamp(24px, 4vw, 48px) 0 clamp(40px, 6vw, 72px);
}

.hero .page {
  display: grid;
  gap: clamp(38px, 7vw, 78px);
  width: min(calc(100% - 40px), 1060px);
}

.hero-layout {
  display: grid;
  gap: clamp(32px, 6vw, 62px);
  align-items: start;
}

.hero-copy {
  max-width: 760px;
}

h1,
h2,
p {
  margin-top: 0;
}

h1,
h2 {
  font-weight: 760;
  line-height: 0.98;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: clamp(50px, 8vw, 76px);
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(32px, 5.8vw, 54px);
}

.hero-subline {
  max-width: 600px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(21px, 2.5vw, 25px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
  margin-top: 30px;
}

.hero-secondary-actions {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.45;
}

.hero-trust-line {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-quote {
  max-width: 520px;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-style: italic;
  line-height: 1.45;
}

.hero-quote .quote-source {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 0;
  border-radius: 8px;
  background: var(--brand);
  color: #fffefd;
  font: inherit;
  font-weight: 720;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, filter 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow);
  filter: saturate(1.05);
}

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

.button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(231, 118, 44, 0.28);
  outline-offset: 3px;
}

.hero-visual {
  display: grid;
  gap: 14px;
}

.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.section {
  padding: clamp(52px, 7vw, 92px) 0;
  border-top: 1px solid var(--line);
}

.section-kicker {
  width: fit-content;
  margin-bottom: 20px;
  padding-top: 14px;
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-size: 15px;
  font-weight: 760;
}

.section-intro {
  max-width: 760px;
}

.feature-photo {
  margin: clamp(28px, 4vw, 40px) 0 0;
}

.feature-photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  display: block;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.feature-photo figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.45;
}

.section-intro > p:last-child,
.final-cta-layout > div > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(18px, 2.1vw, 21px);
  line-height: 1.52;
}

.copy-stack {
  display: grid;
  gap: 22px;
  max-width: 720px;
}

.copy-stack p,
.about p,
.talk p,
.help-intro p,
.questionnaire-intro {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.52;
}

.help-options,
.parent-quotes,
.questionnaire,
.final-cta,
.talk,
.what-is {
  background: var(--panel);
}

.help-options {
  background: var(--soft);
}

.help-intro {
  max-width: 760px;
}

.help-grid {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.help-card,
.share-link-list a {
  display: grid;
  gap: 8px;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: inherit;
  font: inherit;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.help-card:hover,
.share-link-list a:hover {
  border-color: var(--brand-line);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.help-card span,
.share-link-list span,
.detail-label {
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.help-card strong,
.share-link-list strong {
  color: var(--ink);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.22;
}

.help-card strong::after {
  content: "→";
  margin-left: 7px;
  display: inline-block;
  color: var(--brand);
  transition: transform 160ms ease;
}

.help-card:hover strong::after {
  transform: translateX(3px);
}

.help-primary {
  display: grid;
  gap: 10px;
  margin-top: 30px;
  padding: clamp(24px, 4.4vw, 38px);
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  background: var(--brand-soft);
  color: inherit;
  text-decoration: none;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.help-primary:hover {
  border-color: var(--brand);
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.help-primary-tag {
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.help-primary strong {
  color: var(--ink);
  font-size: clamp(27px, 4.6vw, 40px);
  font-weight: 760;
  line-height: 1.06;
  letter-spacing: -0.015em;
}

.help-primary-meta {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 17px);
  font-weight: 600;
  line-height: 1.4;
}

.help-primary-arrow {
  display: inline-block;
  color: var(--brand);
  font-weight: 760;
  transition: transform 160ms ease;
}

.help-primary:hover .help-primary-arrow {
  transform: translateX(4px);
}

.help-primary + .help-grid {
  margin-top: 14px;
}

.principle-grid {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.principle-grid > div {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.principle-grid h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(20px, 2.8vw, 25px);
  font-weight: 720;
  line-height: 1.14;
}

.principle-grid p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.45;
}

.compact-grid > div {
  padding: 18px 0 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.compact-grid h3 {
  max-width: 23ch;
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.2;
}

.questionnaire-form {
  gap: 18px;
  margin-top: 30px;
}

.questionnaire-page {
  min-height: calc(100svh - 92px);
  border-top: 0;
  background: var(--paper);
}

.wordmark-link {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  line-height: 1;
  text-decoration: none;
  color: var(--ink);
}

.wordmark-link .wordmark {
  display: block;
  height: 1.5em;
  width: auto;
}

.site-header {
  padding: 22px 0 0;
}

.site-header .page {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-nav {
  display: flex;
  gap: clamp(14px, 3vw, 26px);
  font-size: 16px;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.secondary-intro {
  margin-top: 16px;
}

.form-section-label {
  margin: 8px 0 0;
  color: var(--brand);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.privacy-note {
  padding-top: 4px;
}

.questionnaire-form .form-field textarea {
  min-height: 132px;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.checkbox-row input {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--brand);
}

.talk-instead {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.talk-instead a {
  color: var(--ink);
  font-weight: 760;
  text-decoration-color: var(--brand-line);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

.q-block {
  margin: 22px 0 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

.q-label {
  padding: 0;
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.4;
}

.q-hint {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.q-subhead {
  margin: 16px 0 0;
  color: var(--brand);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.choice-group {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 11px;
}

.choice {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--field);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease, color 140ms ease;
}

.choice input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.choice:hover {
  border-color: var(--brand-line);
}

.choice:has(input:checked) {
  border-color: var(--brand);
  background: var(--brand-soft);
  color: var(--brand-ink);
  font-weight: 720;
}

.choice:has(input:focus-visible) {
  outline: 3px solid rgba(231, 118, 44, 0.28);
  outline-offset: 2px;
}

.q-progress {
  display: grid;
  gap: 8px;
  margin-top: 8px;
}

.q-progress-bar {
  height: 7px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.q-progress-fill {
  width: 20%;
  height: 100%;
  border-radius: 999px;
  background: var(--brand);
  transition: width 260ms ease;
}

.q-progress-label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 760;
}

.q-step {
  display: grid;
  gap: 18px;
}

.q-step[hidden] {
  display: none;
}

.q-nav {
  display: flex;
  gap: 12px;
}

.q-nav .button {
  flex: 1 1 auto;
}

.q-partial {
  margin: 0;
  text-align: center;
}

.q-partial-button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font: inherit;
  font-size: 14px;
  font-weight: 640;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.share-options {
  background: var(--paper);
}

.share-link-list {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}

.form-status a {
  color: var(--ink);
  font-weight: 640;
  overflow-wrap: anywhere;
}

.share-link-row {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.share-copy-inline {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border: 1px solid var(--brand-line);
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-ink);
  font: inherit;
  font-size: 13px;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease;
}

.share-copy-inline:hover {
  background: var(--brand);
  color: #fffefd;
}

.share-copy-inline[data-state="copied"] {
  background: var(--brand);
  color: #fffefd;
}

.demos {
  background: var(--paper);
}

.demos-intro {
  max-width: 720px;
}

.demos-intro p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(19px, 2.4vw, 23px);
  line-height: 1.52;
}

.demo-carousel-shell {
  position: relative;
  margin-top: 36px;
}

.demo-carousel {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.demo-carousel::-webkit-scrollbar {
  display: none;
}

.demo-item {
  flex: 0 0 100%;
  margin: 0;
  scroll-snap-align: start;
}

.demo-media {
  position: relative;
  border-radius: 8px;
  cursor: zoom-in;
}

.demo-item video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--demo-bg);
  box-shadow: var(--shadow);
  cursor: zoom-in;
  object-fit: cover;
  pointer-events: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.demo-media:hover video {
  border-color: rgba(231, 118, 44, 0.55);
  box-shadow: 0 20px 54px rgba(23, 23, 23, 0.13);
}

.demo-media:focus-visible {
  outline: 3px solid rgba(231, 118, 44, 0.28);
  outline-offset: 3px;
}

.demo-item figcaption {
  display: grid;
  gap: 4px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.demo-item strong {
  color: var(--ink);
}

.demo-nav {
  display: none;
}

.demo-nav[hidden] {
  display: none;
}

.demo-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
}

.demo-dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8d2ca;
  cursor: pointer;
  transition: width 160ms ease, background 160ms ease, transform 160ms ease;
}

.demo-dot[aria-current="true"] {
  width: 30px;
  background: var(--brand);
}

.demo-dot:focus-visible {
  outline: 3px solid rgba(231, 118, 44, 0.28);
  outline-offset: 3px;
}

.demo-viewer {
  width: min(calc(100% - 32px), 1120px);
  padding: 0;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: zoom-out;
}

.demo-viewer::backdrop {
  background: rgba(23, 23, 23, 0.76);
}

.demo-viewer-inner {
  position: relative;
  cursor: auto;
}

.demo-viewer-video {
  width: 100%;
  max-height: calc(100svh - 80px);
  display: block;
  border-radius: 8px;
  background: #111;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.quotes-intro {
  max-width: 720px;
}

.quote-grid {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.quote-grid figure {
  margin: 0;
  padding: 20px 0 0;
  border-top: 2px solid var(--ink);
}

.quote-grid blockquote {
  margin: 0;
}

.quote-grid p {
  margin-bottom: 12px;
  font-size: clamp(21px, 3vw, 28px);
  font-weight: 720;
  line-height: 1.16;
}

.quote-grid figcaption {
  margin-bottom: 12px;
  color: var(--brand);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.35;
}

.quote-grid .quote-source {
  margin: 0;
  color: var(--muted);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 14px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.4;
}

.press-copy-grid p {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.24;
}

.subscribe-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.field-label {
  color: var(--ink);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.35;
}

.field-label span {
  color: var(--muted);
  font-weight: 640;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 15px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
  line-height: 1.35;
}

.form-field select {
  appearance: none;
  -webkit-appearance: none;
}

.discover-pullquote {
  margin-top: 18px;
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.choice-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  padding: 9px 14px;
  border: 1px dashed var(--brand-line);
  border-radius: 999px;
  background: var(--field);
  color: var(--brand-ink);
  font-size: 17px;
  line-height: 1;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 140ms ease, background 140ms ease;
}

.choice-add:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.q-other {
  margin-top: 12px;
}

.q-other input {
  width: 100%;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px dashed var(--brand-line);
  border-radius: 8px;
  background: var(--field);
  color: var(--ink);
  font: inherit;
}

.q-other input::placeholder {
  color: #9a948d;
}

.q-error {
  margin: 8px 0 0;
  color: #b3401b;
  font-size: 14px;
  font-weight: 500;
}

.form-field input[aria-invalid="true"] {
  border-color: #b3401b;
}

.book-now-reveal {
  margin: 14px 0 0;
  padding: 12px 15px;
  background: var(--brand-soft);
  border: 1px solid var(--brand-line);
  border-radius: 10px;
  font-size: 15px;
  line-height: 1.4;
}

.book-now-reveal a {
  font-weight: 600;
}

.quote-marquee {
  margin-top: 36px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.quote-marquee-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: quote-marquee 80s linear infinite;
}

.quote-marquee:hover .quote-marquee-track,
.quote-marquee:focus-within .quote-marquee-track {
  animation-play-state: paused;
}

.quote-chip {
  position: relative;
  flex: 0 0 auto;
  max-width: 340px;
  margin: 0;
  padding: 42px 24px 22px;
  background: var(--field);
  border: 1px solid var(--line);
  border-radius: 16px;
}

.quote-chip::before {
  content: "\201C";
  position: absolute;
  top: 6px;
  left: 18px;
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 60px;
  line-height: 1;
  color: var(--brand);
  opacity: 0.3;
}

.quote-chip:nth-child(4n + 1) {
  background: var(--brand-soft);
  border-color: var(--brand-line);
}

.quote-chip:nth-child(4n + 2) {
  background: #f4f0e9;
}

.quote-chip:nth-child(4n + 3) {
  background: rgba(143, 67, 21, 0.06);
  border-color: rgba(143, 67, 21, 0.18);
}

.quote-chip:nth-child(4n + 4) {
  background: var(--panel);
}

.quote-chip blockquote {
  margin: 0;
}

.quote-chip blockquote p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
}

.quote-chip .quote-source {
  margin: 14px 0 0;
  color: var(--brand-ink);
  font-family: ui-serif, Georgia, "Times New Roman", serif;
  font-size: 13px;
  font-style: italic;
}

@keyframes quote-marquee {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .quote-marquee {
    overflow-x: auto;
  }
  .quote-marquee-track {
    animation: none;
  }
}

@media (max-width: 640px) {
  .quote-marquee-track {
    gap: 12px;
  }
  .quote-chip {
    max-width: 232px;
    padding: 34px 18px 18px;
    border-radius: 14px;
  }
  .quote-chip::before {
    font-size: 46px;
    top: 4px;
    left: 14px;
  }
  .quote-chip blockquote p {
    font-size: 0.95rem;
    line-height: 1.4;
  }
  .quote-chip .quote-source {
    margin-top: 10px;
    font-size: 12px;
  }
}

.form-field textarea {
  min-height: 76px;
  resize: vertical;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #9a948d;
}

.optional-field .field-label {
  color: var(--muted);
}

.optional-field input,
.optional-field textarea {
  background: var(--soft);
}

.subscribe-form .button {
  min-height: 52px;
}

.subscribe-form .button:disabled {
  cursor: wait;
  filter: saturate(0.72);
  opacity: 0.72;
  transform: none;
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.form-status {
  min-height: 22px;
  font-weight: 720;
}

.form-status[data-state="success"] {
  color: #2d7145;
}

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

.about {
  background: var(--panel);
}

.entity-page {
  min-height: 72svh;
  border-top: 0;
  background: var(--paper);
}

.entity-page h1 {
  font-size: clamp(44px, 7vw, 70px);
}

.entity-copy a,
.about-link a,
.hero-secondary-actions a,
.text-link-list a,
.fact-list a {
  color: var(--ink);
  font-weight: 760;
  text-decoration-color: rgba(231, 118, 44, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero-secondary-actions a {
  font-weight: 700;
  text-underline-offset: 5px;
}

.entity-detail {
  background: var(--paper);
}

.fact-list {
  display: grid;
  gap: 0;
  margin: 30px 0 0;
}

.fact-list div {
  display: grid;
  gap: 8px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.fact-list dt {
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.fact-list dd {
  margin: 0;
  color: var(--ink);
  font-size: clamp(18px, 2vw, 21px);
  font-weight: 640;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.text-link-list {
  display: grid;
  gap: 12px;
  max-width: 540px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.text-link-list button {
  padding: 0;
  border: 0;
  background: none;
  color: var(--ink);
  font: inherit;
  font-weight: 760;
  text-align: left;
  text-decoration: underline;
  text-decoration-color: rgba(231, 118, 44, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
  cursor: pointer;
}

.text-link-list li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.45;
}

.comparison-table-wrap {
  margin-top: 30px;
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.comparison-table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

.comparison-table tr:last-child th,
.comparison-table tr:last-child td {
  border-bottom: 0;
}

.comparison-table thead th {
  color: var(--brand);
  font-size: 14px;
  font-weight: 760;
  line-height: 1.35;
}

.comparison-table tbody th {
  width: 22%;
  color: var(--ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.35;
}

.comparison-table td {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

@media (max-width: 800px) {
  .comparison-table {
    min-width: 0;
  }

  .comparison-table thead {
    display: none;
  }

  .comparison-table tbody,
  .comparison-table tbody tr,
  .comparison-table tbody th,
  .comparison-table tbody td {
    display: block;
  }

  .comparison-table tbody tr {
    padding: 6px 16px 18px;
    border-bottom: 1px solid var(--line);
  }

  .comparison-table tbody tr:last-child {
    border-bottom: 0;
  }

  .comparison-table tbody th,
  .comparison-table tbody td {
    width: auto;
    padding: 0;
    border-bottom: 0;
  }

  .comparison-table tbody th {
    margin: 14px 0 10px;
    font-size: 17px;
  }

  .comparison-table tbody td {
    margin-top: 10px;
  }

  .comparison-table tbody td::before {
    display: block;
    margin-bottom: 2px;
    color: var(--brand);
    font-size: 13px;
    font-weight: 760;
  }

  .comparison-table tbody td:first-of-type::before {
    content: "Daso";
  }

  .comparison-table tbody td:last-of-type::before {
    content: "Typical feed-first device";
  }
}

.faq-list {
  display: grid;
  gap: 0;
  max-width: 720px;
  margin-top: 30px;
}

.faq-list > div {
  padding: 20px 0;
  border-top: 1px solid var(--line);
}

.faq-list h3 {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 720;
  line-height: 1.16;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.5;
}

.about-link {
  margin-top: 18px;
}

.about-layout {
  display: grid;
  gap: 28px;
  max-width: 880px;
}

.about-layout h2 {
  text-wrap: balance;
}

.about-photo {
  width: 168px;
  height: 168px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.talk h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.05;
}

.talk a {
  color: var(--ink);
  font-weight: 760;
  text-decoration-color: rgba(231, 118, 44, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.final-cta-layout {
  display: grid;
  gap: clamp(28px, 5vw, 52px);
  align-items: start;
}

.signup-panel {
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.talk-link {
  margin: 24px 0 0;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.talk-link a {
  color: var(--ink);
  font-weight: 760;
  text-decoration-color: rgba(231, 118, 44, 0.55);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.signup-dialog-panel {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 28px 80px rgba(23, 23, 23, 0.2);
}

.signup-dialog-panel .section-kicker {
  margin-bottom: 14px;
}

.signup-dialog-panel h2 {
  margin-bottom: 12px;
  padding-right: 36px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.03;
}

.signup-dialog-panel > p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.45;
}

.signup-dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.share-dialog {
  width: min(calc(100% - 32px), 480px);
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 0;
  border: 0;
  overflow-y: auto;
  background: transparent;
  color: var(--ink);
}

.share-dialog::backdrop {
  background: rgba(23, 23, 23, 0.32);
}

.share-preview {
  margin: 18px 0 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--soft);
}

.share-preview-message {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.5;
}

.share-preview-card {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.share-preview-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  border-radius: 9px;
}

.share-preview-meta {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.share-preview-meta strong {
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}

.share-preview-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.share-preview-site {
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.share-dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.share-dialog-actions .button {
  flex: 1 1 140px;
  min-height: 48px;
}

.share-dialog-status {
  margin: 10px 0 0;
  min-height: 20px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 720;
}

.share-dialog-status[data-state="success"] {
  color: #2d7145;
}

.footer {
  padding: 30px 0 34px;
  border-top: 1px solid var(--line);
}

.footer .page {
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
}

.footer-blurb {
  max-width: 560px;
  margin: 0;
  line-height: 1.5;
}

.footer-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  justify-content: space-between;
  align-items: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
}

.linkedin-link {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #0A66C2;
  line-height: 1;
}

.linkedin-link:focus-visible {
  outline: 3px solid rgba(231, 118, 44, 0.28);
  outline-offset: 3px;
}

.linkedin-logo {
  width: 24px;
  height: 24px;
  display: block;
}

.linkedin-logo rect {
  fill: currentColor;
}

.linkedin-logo path {
  fill: #fffefd;
}

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

.footer p {
  margin: 0;
}

@media (min-width: 760px) {
  .page,
  .narrow {
    width: min(calc(100% - 80px), 1060px);
  }

  .narrow {
    width: min(calc(100% - 80px), 720px);
  }

  .help-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .principle-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .quote-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
  }

  .fact-list div {
    grid-template-columns: minmax(140px, 0.32fr) minmax(0, 1fr);
    align-items: baseline;
    gap: 24px;
  }

  .demo-carousel {
    gap: 24px;
  }

  .demo-dots {
    display: none;
  }

  .demo-nav {
    position: absolute;
    top: clamp(180px, 24vw, 260px);
    z-index: 3;
    display: inline-flex;
    width: 56px;
    height: 56px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(23, 23, 23, 0.08);
    border-radius: 50%;
    background: color-mix(in srgb, var(--panel) 94%, transparent);
    box-shadow: 0 16px 38px rgba(23, 23, 23, 0.18);
    color: var(--brand);
    cursor: pointer;
    font: inherit;
    font-size: 28px;
    font-weight: 760;
    line-height: 1;
    transform: translateY(-50%);
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
  }

  .demo-nav[hidden] {
    display: none;
  }

  .demo-nav-prev {
    left: 18px;
  }

  .demo-nav-next {
    right: 18px;
  }

  .demo-nav:hover {
    background: var(--panel);
    box-shadow: 0 18px 44px rgba(23, 23, 23, 0.22);
  }

  .demo-nav-prev:hover {
    transform: translate(-2px, -50%);
  }

  .demo-nav-next:hover {
    transform: translate(2px, -50%);
  }

  .demo-nav:focus-visible {
    outline: 3px solid rgba(231, 118, 44, 0.28);
    outline-offset: 3px;
  }

  .demo-item {
    flex-basis: min(84vw, 920px);
  }

  .subscribe-form .button {
    min-width: 150px;
  }

  .about-layout {
    grid-template-columns: 178px minmax(0, 1fr);
    align-items: start;
    gap: 40px;
  }

  .about-photo {
    width: 178px;
    height: 178px;
  }
}

@media (min-width: 920px) {
  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    align-items: center;
  }

  .final-cta-layout {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    align-items: flex-start;
    padding-bottom: 58px;
  }

  .hero-subline {
    font-size: 20px;
  }

  .demo-viewer {
    width: calc(100% - 20px);
  }

  .demo-viewer-video {
    max-height: calc(100svh - 64px);
  }

  .sticky-signup-tab {
    right: 15px;
    bottom: 15px;
  }

  .signup-dialog[open] {
    inset: auto 15px 15px 15px;
    width: auto;
  }

}

@media (max-width: 430px) {
  .page,
  .narrow {
    width: min(calc(100% - 30px), 1060px);
  }

  h1 {
    font-size: clamp(44px, 13.5vw, 56px);
    line-height: 1.01;
    letter-spacing: -0.04em;
  }

  .hero-subline {
    margin-top: 24px;
  }

  .hero-actions {
    margin-top: 36px;
    gap: 16px;
  }

  .hero-secondary-actions {
    font-size: 18px;
    line-height: 1.45;
    font-weight: 650;
  }

  .button {
    width: 100%;
  }
}
