:root {
  --ink: #171514;
  --muted: #5e6460;
  --paper: #fbfbf7;
  --white: #ffffff;
  --line: #d9ded6;
  --deep: #1f1b18;
  --deep-2: #302821;
  --green: #197b57;
  --green-soft: #e2f2ea;
  --red: #b6463d;
  --red-soft: #f8e5e2;
  --amber: #b7791f;
  --amber-soft: #f6ecd4;
  --cyan: #0f6f7f;
  --cyan-soft: #ddf0f2;
  --shadow: 0 24px 80px rgba(20, 18, 16, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

.site-header {
  align-items: center;
  background: rgba(24, 21, 18, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--white);
  display: flex;
  gap: 24px;
  justify-content: space-between;
  left: 0;
  padding: 14px 28px;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
}

.brand {
  align-items: center;
  display: inline-flex;
  font-weight: 800;
  gap: 10px;
}

.brand-mark {
  align-items: center;
  background: var(--white);
  border-radius: 8px;
  color: var(--ink);
  display: inline-flex;
  font-size: 0.8rem;
  font-weight: 900;
  height: 34px;
  justify-content: center;
  width: 34px;
}

.nav-links {
  display: flex;
  gap: 22px;
  font-size: 0.94rem;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
}

.nav-links a:hover,
.nav-links a:focus {
  color: var(--white);
}

.nav-cta,
.primary-action,
.secondary-action,
.secondary-dark-action,
.select-report {
  align-items: center;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
}

.nav-cta,
.primary-action {
  background: #f3c14b;
  color: #1f1708;
}

.secondary-action {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.24);
  color: var(--white);
}

.secondary-dark-action {
  background: var(--ink);
  color: var(--white);
  min-width: 190px;
}

.hero {
  background: var(--deep);
  color: var(--white);
  min-height: 94vh;
  overflow: hidden;
  padding: 150px 32px 100px;
  position: relative;
}

.hero-scene {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
}

.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(19, 17, 15, 0.98) 0%,
    rgba(19, 17, 15, 0.94) 34%,
    rgba(19, 17, 15, 0.74) 52%,
    rgba(19, 17, 15, 0.36) 100%
  );
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
}

.scene-window {
  background: #f9faf5;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  box-shadow: var(--shadow);
  color: var(--ink);
  left: clamp(560px, 47vw, 760px);
  min-width: 780px;
  position: absolute;
  right: auto;
  top: 110px;
  transform: rotate(-2deg);
  width: clamp(800px, 64vw, 980px);
}

.window-topbar {
  align-items: center;
  background: #2c2621;
  border-radius: 8px 8px 0 0;
  color: rgba(255, 255, 255, 0.75);
  display: flex;
  gap: 8px;
  height: 42px;
  padding: 0 16px;
}

.window-topbar span {
  background: #f05d4f;
  border-radius: 50%;
  display: inline-block;
  height: 10px;
  width: 10px;
}

.window-topbar span:nth-child(2) {
  background: #f3c14b;
}

.window-topbar span:nth-child(3) {
  background: #42b982;
}

.window-topbar strong {
  font-size: 0.8rem;
  margin-left: 8px;
}

.window-body {
  display: grid;
  grid-template-columns: 220px 1fr;
  min-height: 560px;
}

.report-rail {
  background: #f0f2ec;
  border-right: 1px solid var(--line);
  padding: 24px;
}

.rail-label,
.panel-kicker,
.price-label,
.eyebrow {
  color: #f3c14b;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.eyebrow.dark,
.panel-kicker,
.price-label {
  color: var(--cyan);
}

.report-rail h3 {
  font-size: 1.3rem;
  line-height: 1.18;
  margin: 0 0 22px;
}

.rail-score {
  align-items: center;
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
}

.score-ring {
  align-items: center;
  background:
    radial-gradient(circle at center, #f9faf5 56%, transparent 57%),
    conic-gradient(var(--green) calc(var(--score) * 1%), #d6dbd1 0);
  border-radius: 50%;
  display: flex;
  height: 78px;
  justify-content: center;
  width: 78px;
}

.score-ring span {
  font-size: 1.18rem;
  font-weight: 900;
}

.rail-score p,
.rail-stat p {
  color: var(--muted);
  font-size: 0.78rem;
  margin: 0;
}

.rail-stat {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  gap: 12px;
  margin-top: 10px;
  padding: 12px;
}

.rail-stat span {
  font-size: 1.35rem;
  font-weight: 900;
}

.rail-stat.good span {
  color: var(--green);
}

.rail-stat.warn span {
  color: var(--amber);
}

.rail-stat.bad span {
  color: var(--red);
}

.report-canvas {
  padding: 24px;
}

.report-toolbar {
  display: flex;
  justify-content: space-between;
  margin-bottom: 18px;
}

.report-toolbar span {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  padding: 8px 10px;
}

.insight-row {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 16px;
}

.mini-panel,
.quote-strip,
.ledger-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.mini-panel {
  padding: 18px;
}

.mini-panel h4 {
  font-size: 1.06rem;
  margin: 0 0 8px;
}

.mini-panel p:last-child {
  color: var(--muted);
  font-size: 0.9rem;
  margin: 0;
}

.ledger-table {
  overflow: hidden;
}

.ledger-head,
.ledger-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 1.2fr 1.2fr 120px;
  padding: 14px 16px;
}

.ledger-head {
  background: #edf2ee;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ledger-row {
  border-top: 1px solid var(--line);
}

.ledger-row p {
  font-size: 0.9rem;
  margin: 0;
}

.status {
  align-self: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.76rem;
  font-weight: 900;
  justify-content: center;
  padding: 6px 9px;
}

.status.good {
  background: var(--green-soft);
  color: var(--green);
}

.status.warn {
  background: var(--amber-soft);
  color: var(--amber);
}

.status.bad {
  background: var(--red-soft);
  color: var(--red);
}

.status.neutral {
  background: var(--cyan-soft);
  color: var(--cyan);
}

.quote-strip {
  margin-top: 16px;
  padding: 16px;
}

.quote-strip p {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  margin: 0 0 8px;
}

.quote-strip span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 540px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: clamp(4.25rem, 6.6vw, 5rem);
  letter-spacing: 0;
  line-height: 0.94;
  margin: 0 0 26px;
  max-width: 540px;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.26rem;
  max-width: 520px;
}

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

.hero-facts {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 54px 0 0;
  max-width: 520px;
}

.hero-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  padding-top: 14px;
}

.hero-facts dt {
  font-weight: 900;
  margin-bottom: 4px;
}

.hero-facts dd {
  color: rgba(255, 255, 255, 0.68);
  margin: 0;
}

.section-inner {
  margin: 0 auto;
  max-width: 1180px;
  padding: 0 28px;
}

.statement-band {
  background: #f3c14b;
  color: #211705;
}

.statement-band p {
  font-size: 1.55rem;
  font-weight: 900;
  margin: 0;
  padding: 34px 0;
}

.preview-section,
.features-section,
.sample-strip,
.reports-section,
.order-section,
.disclaimer-section,
.faq-section {
  padding: 96px 0;
}

.preview-grid,
.order-grid,
.faq-grid {
  display: grid;
  gap: 56px;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.faq-grid h2 {
  font-size: 3rem;
  line-height: 1;
  margin: 0 0 18px;
}

.section-copy p,
.section-heading p,
.faq-grid p {
  color: var(--muted);
  font-size: 1.05rem;
}

.report-preview,
.order-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 60px rgba(31, 27, 24, 0.12);
}

.preview-header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 22px;
}

.preview-header p {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  margin: 0 0 4px;
  text-transform: uppercase;
}

.preview-header h3 {
  font-size: 1.45rem;
  margin: 0;
}

.preview-header > span {
  background: var(--green-soft);
  border-radius: 999px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 900;
  padding: 8px 10px;
}

.preview-tabs {
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.tab-button {
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  cursor: pointer;
  font-weight: 900;
  min-height: 48px;
}

.tab-button:last-child {
  border-right: 0;
}

.tab-button.active {
  background: #f1f5ef;
  color: var(--ink);
}

.tab-panel {
  display: none;
  min-height: 360px;
  padding: 24px;
}

.tab-panel.active {
  display: block;
}

.score-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 18px;
}

.score-card {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.score-card span {
  color: var(--green);
  font-size: 2.1rem;
  font-weight: 900;
}

.score-card p {
  color: var(--muted);
  margin: 2px 0 0;
}

.verdict-block {
  border-left: 4px solid #f3c14b;
  padding-left: 16px;
}

.verdict-block h4 {
  font-size: 1.35rem;
  margin: 0 0 8px;
}

.verdict-block p:last-child,
.signal-list p {
  color: var(--muted);
}

.signal-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.signal-list p {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 12px;
}

.preview-table {
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.preview-row {
  display: grid;
  gap: 12px;
  grid-template-columns: 100px 1fr 120px;
  padding: 15px;
}

.preview-row + .preview-row {
  border-top: 1px solid var(--line);
}

.preview-head {
  background: #f1f5ef;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline {
  border-left: 3px solid #f3c14b;
  display: grid;
  gap: 20px;
  margin-left: 8px;
  padding-left: 22px;
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  background: var(--white);
  border: 3px solid #f3c14b;
  border-radius: 50%;
  content: "";
  height: 13px;
  left: -31px;
  position: absolute;
  top: 4px;
  width: 13px;
}

.timeline-item span {
  color: var(--cyan);
  font-size: 0.82rem;
  font-weight: 900;
}

.timeline-item p {
  font-size: 1.05rem;
  margin: 4px 0 0;
}

.receipt-card {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.receipt-card + .receipt-card {
  margin-top: 14px;
}

.receipt-card p {
  font-family: Georgia, serif;
  font-size: 1.08rem;
  margin: 0 0 10px;
}

.receipt-card span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
}

.features-section {
  background: #eef3f1;
}

.section-heading {
  margin-bottom: 36px;
  max-width: 760px;
}

.section-heading.split {
  align-items: end;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr 0.8fr;
  max-width: none;
}

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

.feature-card,
.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.feature-number {
  color: var(--amber);
  display: block;
  font-size: 0.84rem;
  font-weight: 900;
  margin-bottom: 34px;
}

.feature-card h3,
.price-card h3 {
  font-size: 1.35rem;
  margin: 0 0 10px;
}

.feature-card p,
.price-card li {
  color: var(--muted);
}

.reports-section {
  background: var(--paper);
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 430px;
}

.price-card.featured {
  border-color: #d09b27;
  box-shadow: 0 18px 50px rgba(183, 121, 31, 0.16);
}

.price {
  font-size: 2.2rem;
  font-weight: 900;
  margin: 8px 0 18px;
}

.price-card ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}

.price-card li {
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

.select-report {
  background: var(--ink);
  color: var(--white);
  margin-top: auto;
  width: 100%;
}

.price-card.featured .select-report {
  background: #f3c14b;
  color: #1f1708;
}

.order-section {
  background: #f5f1e7;
}

.disclaimer-section {
  background: var(--paper);
  padding-top: 70px;
}

.disclaimer-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--cyan);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.08);
  padding: 30px;
}

.disclaimer-card h2 {
  font-size: 2rem;
  line-height: 1.05;
  margin: 0 0 12px;
}

.disclaimer-card p:last-child {
  color: var(--muted);
  font-size: 1.02rem;
  margin: 0;
  max-width: 860px;
}

.order-form {
  display: grid;
  gap: 18px;
  padding: 26px;
}

.order-form label {
  color: var(--muted);
  display: grid;
  font-size: 0.86rem;
  font-weight: 900;
  gap: 8px;
  text-transform: uppercase;
}

.order-form input,
.order-form select,
.order-form textarea {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  min-height: 52px;
  padding: 0 14px;
  text-transform: none;
  width: 100%;
}

.order-form textarea {
  line-height: 1.45;
  min-height: 112px;
  padding: 14px;
  resize: vertical;
}

.order-form input:focus,
.order-form select:focus,
.order-form textarea:focus {
  border-color: var(--cyan);
  outline: 3px solid rgba(15, 111, 127, 0.16);
}

.ticker-picker {
  display: grid;
  gap: 10px;
  position: relative;
}

.ticker-search-row {
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 86px;
}

.ticker-add-button {
  background: var(--ink);
  border: 0;
  border-radius: 8px;
  color: var(--white);
  cursor: pointer;
  font-weight: 900;
  min-height: 52px;
}

.ticker-suggestions {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(31, 27, 24, 0.12);
  display: none;
  left: 0;
  max-height: 252px;
  overflow-y: auto;
  position: absolute;
  right: 0;
  top: 88px;
  z-index: 12;
}

.ticker-suggestions.visible {
  display: grid;
}

.ticker-suggestion {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  gap: 6px;
  justify-items: start;
  padding: 10px 12px;
  text-align: left;
}

.ticker-suggestion:last-child {
  border-bottom: 0;
}

.ticker-suggestion:hover,
.ticker-suggestion:focus {
  background: #f7f8f3;
  outline: 0;
}

.ticker-suggestion strong {
  font-size: 0.9rem;
  line-height: 1.24;
}

.ticker-suggestion span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
}

.ticker-selected {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 34px;
}

.ticker-chip {
  align-items: center;
  background: var(--cyan-soft);
  border: 1px solid rgba(15, 111, 127, 0.18);
  border-radius: 999px;
  color: var(--cyan);
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 900;
  gap: 8px;
  min-height: 34px;
  padding: 0 8px 0 12px;
}

.ticker-chip button {
  align-items: center;
  background: rgba(15, 111, 127, 0.12);
  border: 0;
  border-radius: 50%;
  color: var(--cyan);
  cursor: pointer;
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 22px;
  justify-content: center;
  line-height: 1;
  width: 22px;
}

.ticker-help {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
  margin: 0;
  text-transform: none;
}

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

.hidden-field {
  display: none !important;
}

.waitlist-points {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  max-width: 560px;
}

.waitlist-points p {
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin: 0;
  padding: 16px;
}

.waitlist-points strong {
  color: var(--ink);
  display: block;
  margin-bottom: 4px;
}

.waitlist-points span {
  color: var(--muted);
  display: block;
  font-size: 0.95rem;
}

.order-summary {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
}

.order-summary span {
  color: var(--muted);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.order-summary strong {
  display: block;
  font-size: 1.25rem;
}

.order-summary p {
  color: var(--green);
  font-size: 1.8rem;
  font-weight: 900;
  margin: 6px 0 0;
}

.form-action {
  border: 0;
  width: 100%;
}

.form-note {
  color: var(--muted);
  font-size: 0.88rem;
  margin: 0;
  text-align: center;
}

.form-message {
  border-radius: 8px;
  display: none;
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0;
  padding: 12px 14px;
  text-align: center;
}

.form-message.visible {
  display: block;
}

.form-message.success {
  background: var(--green-soft);
  color: var(--green);
}

.form-message.error {
  background: var(--red-soft);
  color: var(--red);
}

.faq-section {
  background: var(--deep);
  color: var(--white);
}

.faq-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  padding: 18px;
}

summary {
  cursor: pointer;
  font-weight: 900;
}

details p {
  color: rgba(255, 255, 255, 0.72);
  margin: 12px 0 0;
}

.sample-strip {
  background: #f5f1e7;
}

.sample-strip-inner {
  align-items: center;
  display: grid;
  gap: 32px;
  grid-template-columns: 1fr auto;
}

.sample-strip h2 {
  font-size: 2.4rem;
  line-height: 1.05;
  margin: 0 0 10px;
}

.sample-strip p:last-child {
  color: var(--muted);
  margin: 0;
  max-width: 760px;
}

.sample-hero {
  background: var(--deep);
  color: var(--white);
  padding: 118px 0 52px;
}

.sample-hero-grid {
  align-items: start;
  display: grid;
  gap: 46px;
  grid-template-columns: 1.1fr 0.9fr;
}

.sample-hero h1 {
  font-size: 3.8rem;
  line-height: 0.98;
  margin: 0 0 22px;
  max-width: 860px;
}

.sample-lede {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.18rem;
  margin: 0;
  max-width: 720px;
}

.sample-summary-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 26px;
}

.sample-summary-card h2 {
  font-size: 2rem;
  margin: 0 0 20px;
}

.sample-stat-grid {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0 0 20px;
}

.sample-stat-grid div {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 12px;
}

.sample-stat-grid strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 4px;
}

.sample-stat-grid span {
  color: rgba(255, 255, 255, 0.62);
  display: block;
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.25;
  text-transform: uppercase;
}

.sample-summary-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.sample-summary-card div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 14px;
}

.sample-summary-card dt {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.sample-summary-card dd {
  margin: 0;
}

.sample-section {
  padding: 74px 0;
}

.warning-section {
  padding: 26px 0;
}

.sample-section.alt {
  background: #eef3f1;
}

.sample-warning {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 5px solid var(--amber);
  border-radius: 8px;
  color: var(--muted);
  font-size: 1.04rem;
  overflow-wrap: break-word;
  padding: 20px 22px;
}

.sample-warning strong {
  color: var(--ink);
}

.sample-section-heading {
  margin-bottom: 30px;
  max-width: 860px;
}

.sample-section-heading h2 {
  font-size: 3rem;
  line-height: 1.02;
  margin: 0 0 14px;
}

.sample-section-heading p:last-child {
  color: var(--muted);
  font-size: 1.05rem;
  margin: 0;
}

.promise-timeline {
  display: grid;
  gap: 18px;
}

.promise-quarter {
  display: grid;
  gap: 18px;
  grid-template-columns: 36px 1fr;
  position: relative;
}

.timeline-spine {
  position: relative;
}

.timeline-spine::before {
  background: var(--line);
  bottom: -20px;
  content: "";
  left: 17px;
  position: absolute;
  top: 18px;
  width: 2px;
}

.promise-quarter:last-child .timeline-spine::before {
  display: none;
}

.timeline-spine::after {
  background: var(--white);
  border: 3px solid var(--cyan);
  border-radius: 999px;
  content: "";
  height: 16px;
  left: 8px;
  position: absolute;
  top: 22px;
  width: 16px;
}

.promise-quarter.current .timeline-spine::after {
  border-color: var(--amber);
}

.promise-card,
.pattern-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.promise-card {
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.06);
}

.quarter-header {
  align-items: start;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr auto;
  margin-bottom: 18px;
  padding-bottom: 18px;
}

.quarter-label,
.promise-label {
  color: var(--cyan);
  display: block;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.quarter-header h3,
.pattern-card h3 {
  font-size: 1.45rem;
  line-height: 1.18;
  margin: 6px 0 0;
}

.promise-list {
  display: grid;
  gap: 12px;
}

.promise-item {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
}

.promise-item p {
  color: var(--muted);
  margin: 0 0 12px;
}

.promise-item p:last-child {
  margin-bottom: 0;
}

.promise-item .promise-label {
  color: var(--amber);
  margin-bottom: 5px;
}

.promise-card a {
  color: var(--cyan);
  display: inline-block;
  font-weight: 900;
  margin-top: 18px;
}

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

.driver-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.06);
  display: flex;
  flex-direction: column;
  min-height: 520px;
  padding: 24px;
}

.driver-card.priority {
  border-color: #d09b27;
}

.driver-topline {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.driver-topline span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.driver-card h3 {
  font-size: 1.55rem;
  line-height: 1.16;
  margin: 0 0 18px;
}

.driver-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.driver-card dl div {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
}

.driver-card dt {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.driver-card dd {
  color: var(--muted);
  margin: 0;
}

.driver-card a {
  color: var(--cyan);
  display: inline-block;
  font-weight: 900;
  margin-top: auto;
  padding-top: 18px;
}

.story-map-grid,
.followup-grid {
  display: grid;
  gap: 16px;
}

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

.followup-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.followup-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.06);
  padding: 24px;
}

.story-card.priority,
.followup-card.priority {
  border-color: #d09b27;
}

.story-card-topline,
.followup-topline {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 16px;
}

.story-card-topline > span:first-child,
.followup-topline > span:first-child {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.story-card h3,
.followup-card h3 {
  font-size: 1.45rem;
  line-height: 1.16;
  margin: 0 0 18px;
}

.story-card dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.story-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.story-card dt {
  color: var(--amber);
  font-size: 0.76rem;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.story-card dd,
.followup-card p {
  color: var(--muted);
  margin: 0;
}

.concall-stack {
  display: grid;
  gap: 16px;
}

.concall-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.06);
  color: var(--ink);
  overflow: hidden;
  padding: 0;
}

.concall-card[open] {
  border-color: #c7b58d;
}

.concall-card summary {
  align-items: center;
  background: #fbfbf7;
  color: var(--ink);
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr auto auto;
  list-style: none;
  padding: 22px 24px;
}

.concall-card summary::-webkit-details-marker {
  display: none;
}

.concall-card summary::after {
  background: var(--ink);
  border-radius: 999px;
  color: var(--white);
  content: "+";
  display: inline-flex;
  font-size: 1rem;
  font-weight: 900;
  height: 28px;
  justify-content: center;
  line-height: 1;
  margin-left: 12px;
  place-items: center;
  width: 28px;
}

.concall-card[open] summary::after {
  content: "-";
}

.concall-card[open] summary {
  border-bottom: 1px solid var(--line);
}

.summary-main {
  display: grid;
  gap: 5px;
}

.summary-main strong {
  font-size: 1.28rem;
  line-height: 1.2;
}

.summary-main span:last-child {
  color: var(--muted);
  font-weight: 500;
}

.summary-label,
.promise-type {
  color: var(--cyan);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.summary-actions {
  align-items: end;
  display: grid;
  gap: 8px;
  justify-items: end;
  min-width: 138px;
}

.summary-actions > span:last-child {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concall-body {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 18px;
}

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

.promise-check {
  background: #f7f8f3;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 18px;
}

.promise-check.priority {
  background: #fffaf0;
  border-color: #d5b76e;
}

.promise-head {
  align-items: start;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.promise-check h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.promise-check blockquote {
  background: var(--white);
  border-left: 4px solid var(--amber);
  border-radius: 8px;
  color: var(--ink);
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.14;
  margin: 0 0 16px;
  padding: 16px;
}

.promise-check dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.promise-check dl div {
  border-top: 1px solid rgba(23, 21, 20, 0.1);
  padding-top: 10px;
}

.promise-check dt {
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.promise-check dd {
  color: var(--muted);
  margin: 0;
}

.source-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.source-actions a {
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--cyan);
  display: inline-flex;
  font-size: 0.88rem;
  font-weight: 900;
  min-height: 38px;
  padding: 0 12px;
}

.ledger-note {
  background: #fffaf0;
  border: 1px solid #d5b76e;
  border-radius: 8px;
  color: var(--muted);
  margin-bottom: 18px;
  padding: 18px 20px;
}

.ledger-note strong {
  color: var(--ink);
}

.promise-table-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 42px rgba(31, 27, 24, 0.06);
  overflow-x: auto;
}

.promise-table {
  border-collapse: collapse;
  min-width: 900px;
  table-layout: fixed;
  width: 100%;
}

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

.promise-table th {
  background: #f7f8f3;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.promise-table td {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.38;
}

.promise-table td:nth-child(1) {
  width: 12%;
}

.promise-table td:nth-child(2) {
  color: var(--ink);
  font-weight: 800;
  width: 26%;
}

.promise-table td:nth-child(3) {
  width: 12%;
}

.promise-table td:nth-child(4) {
  width: 11%;
}

.promise-table td:nth-child(5) {
  width: 28%;
}

.promise-table td:first-child strong,
.promise-table td:first-child span {
  display: block;
}

.promise-table td:first-child strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.15;
}

.promise-table td:first-child span {
  color: var(--muted);
  font-size: 0.82rem;
  margin-top: 4px;
}

.promise-table td:last-child {
  width: 11%;
}

.promise-table a {
  color: var(--cyan);
  display: block;
  font-weight: 900;
  margin-bottom: 8px;
}

.promise-table a:last-child {
  margin-bottom: 0;
}

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

  .promise-table thead {
    display: none;
  }

  .promise-table,
  .promise-table tbody,
  .promise-table tr,
  .promise-table td {
    display: block;
    width: 100%;
  }

  .promise-table tr {
    border-bottom: 1px solid var(--line);
    padding: 12px 14px;
  }

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

  .promise-table td {
    border-bottom: 0;
    display: grid;
    gap: 12px;
    grid-template-columns: 126px 1fr;
    padding: 8px 0;
  }

  .promise-table td::before {
    color: var(--muted);
    content: "";
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
  }

  .promise-table td:nth-child(1)::before {
    content: "Quarter";
    grid-row: 1 / span 2;
  }

  .promise-table td:nth-child(2)::before {
    content: "Promise";
  }

  .promise-table td:nth-child(3)::before {
    content: "Driver";
  }

  .promise-table td:nth-child(4)::before {
    content: "Status";
  }

  .promise-table td:nth-child(5)::before {
    content: "Tracking";
  }

  .promise-table td:nth-child(6)::before {
    content: "Source";
  }

  .promise-table td:nth-child(1),
  .promise-table td:nth-child(2),
  .promise-table td:nth-child(3),
  .promise-table td:nth-child(4),
  .promise-table td:nth-child(5),
  .promise-table td:last-child {
    width: 100%;
  }

  .promise-table td:first-child strong,
  .promise-table td:first-child span {
    grid-column: 2;
  }

  .promise-table .status {
    justify-self: start;
  }

  .promise-table a {
    display: inline-block;
    margin: 0 10px 6px 0;
  }
}

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

.pattern-card {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.pattern-card p {
  color: var(--muted);
  margin: 12px 0 0;
}

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

.metric-card,
.claim-card,
.two-column-list article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
}

.metric-card span {
  color: var(--cyan);
  display: block;
  font-size: 0.8rem;
  font-weight: 900;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  font-size: 1.22rem;
  line-height: 1.2;
  margin-bottom: 10px;
}

.metric-card p,
.claim-card p,
.two-column-list li {
  color: var(--muted);
}

.evidence-table {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
}

.evidence-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr 1.2fr;
  padding: 18px 20px;
}

.evidence-row + .evidence-row {
  border-top: 1px solid var(--line);
}

.evidence-head {
  background: #f7f8f3;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.claim-topline {
  align-items: center;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  margin-bottom: 14px;
}

.claim-topline span:first-child {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.claim-card h3 {
  font-size: 1.35rem;
  line-height: 1.22;
  margin: 0 0 12px;
}

.claim-card a,
.source-list a {
  color: var(--cyan);
  font-weight: 900;
}

.questions-grid {
  display: grid;
  gap: 42px;
  grid-template-columns: 0.8fr 1.2fr;
}

.question-list {
  display: grid;
  gap: 12px;
}

.question-list article {
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: grid;
  gap: 16px;
  grid-template-columns: 48px 1fr;
  padding: 18px;
}

.question-list span {
  color: var(--amber);
  font-weight: 900;
}

.question-list p {
  margin: 0;
}

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

.two-column-list h3 {
  font-size: 1.5rem;
  margin: 0 0 14px;
}

.two-column-list ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 20px;
}

.source-list {
  display: grid;
  gap: 12px;
}

.source-list a {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px 18px;
}

.site-footer {
  background: #15110f;
  color: var(--white);
  padding: 56px 0 24px;
}

.footer-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1.35fr 0.7fr 0.7fr 1fr;
}

.footer-brand-block p,
.footer-links p,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  margin: 0;
}

.footer-brand-block {
  display: grid;
  gap: 16px;
  max-width: 440px;
}

.footer-meta {
  font-size: 0.9rem;
}

.footer-links {
  align-content: start;
  display: grid;
  gap: 10px;
}

.footer-links h2 {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  letter-spacing: 0;
  margin: 0 0 6px;
  text-transform: uppercase;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  font-weight: 800;
}

.footer-links a:hover,
.footer-links a:focus {
  color: var(--white);
}

.footer-bottom {
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-top: 38px;
  padding-top: 22px;
}

.footer-bottom.compact {
  margin-top: 0;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

.legal-hero {
  background: var(--deep);
  color: var(--white);
  padding: 130px 0 56px;
}

.legal-hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  line-height: 0.98;
  margin: 0 0 16px;
}

.legal-hero p:last-child {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.1rem;
  margin: 0;
}

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

.legal-content {
  max-width: 820px;
}

.legal-content h2 {
  font-size: 1.45rem;
  margin: 32px 0 10px;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p {
  color: var(--muted);
  font-size: 1.04rem;
}

.legal-content a {
  color: var(--cyan);
  font-weight: 900;
}

@media (max-width: 1100px) {
  .scene-window {
    left: clamp(460px, 52vw, 560px);
    opacity: 0.36;
    right: auto;
    width: 820px;
  }

  .hero-shade {
    background: linear-gradient(
      90deg,
      rgba(19, 17, 15, 0.98) 0%,
      rgba(19, 17, 15, 0.95) 58%,
      rgba(19, 17, 15, 0.74) 100%
    );
  }

  .hero h1 {
    font-size: 4.25rem;
  }

  .preview-grid,
  .order-grid,
  .faq-grid,
  .sample-hero-grid,
  .sample-strip-inner,
  .footer-grid,
  .questions-grid,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .pricing-grid,
  .feature-grid,
  .followup-grid,
  .pattern-grid,
  .driver-ledger,
  .metric-grid,
  .sample-ledger,
  .two-column-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 12px 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding: 118px 18px 92px;
  }

  .scene-window {
    left: clamp(260px, 68vw, 520px);
    min-width: 720px;
    opacity: 0.18;
    right: auto;
    top: 96px;
    transform: rotate(-4deg);
  }

  .hero-shade {
    background: rgba(19, 17, 15, 0.9);
  }

  .hero h1 {
    font-size: 2.7rem;
    line-height: 1;
    max-width: 350px;
  }

  .hero-lede {
    font-size: 1.06rem;
    max-width: 350px;
  }

  .hero-copy,
  .hero-facts {
    max-width: 350px;
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
    margin-top: 38px;
  }

  .section-inner {
    padding: 0 18px;
  }

  .statement-band p {
    font-size: 1.25rem;
    line-height: 1.22;
    max-width: 350px;
    overflow-wrap: break-word;
  }

  .preview-section,
  .features-section,
  .sample-strip,
  .reports-section,
  .order-section,
  .disclaimer-section,
  .faq-section {
    padding: 70px 0;
  }

  .site-footer {
    padding-top: 42px;
  }

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

  .legal-hero {
    padding: 112px 0 44px;
  }

  .legal-section {
    padding: 54px 0;
  }

  .sample-hero {
    padding: 100px 0 44px;
  }

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

  .section-copy h2,
  .section-heading h2,
  .faq-grid h2,
  .sample-section-heading h2 {
    font-size: 2.25rem;
  }

  .sample-hero h1 {
    font-size: 2.65rem;
    max-width: 350px;
  }

  .sample-lede,
  .sample-summary-card,
  .sample-hero .hero-actions {
    max-width: 350px;
    width: 100%;
  }

  .sample-hero .hero-actions a {
    width: 100%;
  }

  .sample-strip h2 {
    font-size: 2rem;
  }

  .feature-grid,
  .pricing-grid,
  .story-map-grid,
  .followup-grid,
  .pattern-grid,
  .driver-ledger,
  .concall-body,
  .metric-grid,
  .sample-ledger,
  .two-column-list,
  .score-grid,
  .insight-row,
  .form-split {
    grid-template-columns: 1fr;
  }

  .evidence-row {
    grid-template-columns: 1fr;
  }

  .promise-quarter {
    gap: 12px;
    grid-template-columns: 24px 1fr;
  }

  .timeline-spine::before {
    left: 11px;
  }

  .timeline-spine::after {
    height: 12px;
    left: 4px;
    width: 12px;
  }

  .promise-card,
  .driver-card,
  .pattern-card {
    padding: 18px;
  }

  .driver-card {
    min-height: 0;
  }

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

  .concall-card summary {
    grid-template-columns: 1fr auto;
    padding: 18px;
  }

  .concall-card summary::after {
    grid-column: 2;
    grid-row: 1;
  }

  .summary-actions {
    align-items: start;
    grid-column: 1 / -1;
    justify-items: start;
    min-width: 0;
  }

  .concall-body {
    padding: 12px;
  }

  .promise-check {
    min-height: 0;
    padding: 16px;
  }

  .promise-head {
    flex-direction: column;
  }

  .promise-check blockquote {
    font-size: 1.22rem;
  }

  .source-actions a {
    justify-content: center;
    width: 100%;
  }

  .quarter-header {
    grid-template-columns: 1fr;
  }

  .evidence-head {
    display: none;
  }

  .question-list article {
    grid-template-columns: 36px 1fr;
  }

  .preview-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .preview-row {
    grid-template-columns: 1fr;
  }

  .preview-head {
    display: none;
  }

  .tab-panel {
    min-height: auto;
    padding: 18px;
  }

  .preview-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
