:root {
  --bg: #0c1014;
  --bg-panel: rgba(16, 21, 27, 0.88);
  --bg-panel-strong: rgba(18, 24, 31, 0.95);
  --bg-muted: rgba(255, 255, 255, 0.022);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-subtle: rgba(255, 255, 255, 0.05);
  --text: #f4f7fb;
  --text-soft: #aeb8c5;
  --text-dim: #7f8997;
  --green: #72dfaa;
  --red: #ff6d78;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 26px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
  --shadow-tight: 0 14px 34px rgba(0, 0, 0, 0.22);
  --sans: "SF Pro Display", "Neue Haas Grotesk Display Pro", "Suisse Int'l", "Helvetica Neue", sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "IBM Plex Mono", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.038), transparent 26%),
    radial-gradient(circle at 88% 0%, rgba(255, 255, 255, 0.018), transparent 24%),
    linear-gradient(180deg, #0f1318 0%, #0b0e12 100%);
  color: var(--text);
  font-family: var(--sans);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 28%, transparent 84%);
  opacity: 0.28;
}

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

img {
  display: block;
  max-width: 100%;
}

button {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.mono {
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
}

.positive {
  color: var(--green);
}

.negative {
  color: var(--red);
}

.landing-shell {
  position: relative;
  width: min(1280px, calc(100% - 40px));
  margin: 0 auto;
  padding: 14px 0 34px;
}

.site-header {
  position: sticky;
  top: 12px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(12, 16, 20, 0.84);
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  flex: none;
  overflow: hidden;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.12), transparent 54%),
    linear-gradient(180deg, #171d24 0%, #0f1318 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.brand-mark img {
  width: 72%;
  height: 72%;
  object-fit: contain;
  filter: invert(1) contrast(1.08) brightness(1.02);
  mix-blend-mode: screen;
  opacity: 0.96;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-size: 1rem;
  letter-spacing: -0.03em;
  text-transform: lowercase;
}

.brand-copy small,
.site-nav a,
.metric-label,
.section-kicker,
.panel-label-row span,
.preview-headline-row small,
.preview-brand small,
.preview-nav span,
.preview-search,
.preview-mini-panel small,
.preview-top-actions span,
.hero-subcopy,
.pillar-card p,
.position-card p,
.section-copy,
.stage-top span,
.coach-tag,
.coach-card p,
.journal-preview p,
.journal-chip,
.field-row span,
.cta-caption,
.flow-step small,
.stage-note {
  color: var(--text-soft);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1 1 auto;
  justify-content: center;
}

.site-nav a {
  position: relative;
  font-size: 0.93rem;
  transition: color 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 1px;
  background: rgba(255, 255, 255, 0.14);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.header-actions,
.hero-actions,
.hero-footnotes,
.preview-window,
.preview-pill-row,
.preview-topbar,
.panel-label-row,
.curve-axis,
.trade-row,
.stage-top,
.journal-chip-row {
  display: flex;
  align-items: center;
}

.header-actions,
.hero-actions {
  gap: 10px;
}

.header-actions {
  flex: none;
}

.ghost-link,
.solid-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-size: 0.92rem;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.solid-link {
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.06));
}

.ghost-link:hover,
.solid-link:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.large {
  min-height: 46px;
  padding: 11px 18px;
}

main {
  padding-top: 20px;
}

.hero-section,
.pillars-section,
.product-section,
.pricing-section,
.positioning-section {
  scroll-margin-top: 104px;
  margin-bottom: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), rgba(255, 255, 255, 0.008)),
    var(--bg-panel);
  box-shadow: var(--shadow);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(540px, 1.12fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
}

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

.hero-rail {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 14px;
}

.section-kicker,
.metric-label {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.hero-rail-note {
  padding: 6px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.76rem;
  color: var(--text-soft);
}

.hero-copy h1,
.section-intro h2 {
  margin: 0;
  font-size: clamp(2.65rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy h1 {
  max-width: 8.6ch;
}

.hero-subcopy {
  max-width: 35rem;
  margin: 16px 0 18px;
  font-size: 0.96rem;
  line-height: 1.68;
}

.cta-caption {
  margin: 10px 0 0;
  font-size: 0.85rem;
  line-height: 1.45;
}

.workspace-bridge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.012)),
    rgba(255, 255, 255, 0.014);
}

.workspace-bridge-copy {
  display: grid;
  gap: 5px;
}

.workspace-bridge-copy strong {
  font-size: 1rem;
  letter-spacing: -0.02em;
}

.workspace-bridge-copy small {
  max-width: 38rem;
  color: var(--text-soft);
  line-height: 1.55;
}

.workspace-bridge-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hero-footnotes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-subtle);
}

.hero-footnotes div {
  min-width: 0;
}

.hero-footnotes strong {
  display: block;
  margin-top: 6px;
  font-size: 0.95rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.hero-preview {
  position: relative;
}

.hero-preview::before {
  content: "";
  position: absolute;
  inset: 10% -4% -6% 18%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.04), transparent 62%);
  pointer-events: none;
}

.preview-shell,
.stage-frame {
  position: relative;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    var(--bg-panel-strong);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.preview-shell {
  min-height: 580px;
}

.preview-topbar {
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line-subtle);
}

.preview-window {
  gap: 12px;
  min-width: 0;
}

.preview-dots {
  display: flex;
  gap: 6px;
  flex: none;
}

.preview-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.preview-search {
  min-width: 0;
  padding: 8px 12px;
  border: 1px solid var(--line-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.77rem;
  white-space: nowrap;
}

.preview-top-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.preview-top-actions span,
.preview-badge {
  padding: 7px 10px;
  border: 1px solid var(--line-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.018);
  font-size: 0.74rem;
}

.preview-badge.muted {
  color: var(--text-dim);
}

.preview-content {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 532px;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 16px;
  border-right: 1px solid var(--line-subtle);
  background: rgba(255, 255, 255, 0.014);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.preview-brand-mark {
  position: relative;
  flex: none;
  width: 34px;
  height: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.08), transparent 52%),
    linear-gradient(180deg, #171d24 0%, #0f1318 100%);
}

.preview-brand-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("logo.jpeg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 72%;
  filter: invert(1) contrast(1.08) brightness(1.02);
  mix-blend-mode: screen;
  opacity: 0.96;
}

.preview-brand strong,
.preview-nav span.active,
.summary-cell strong,
.preview-headline-row strong,
.setup-row strong,
.signal-row strong,
.trade-row strong,
.pillar-card h3,
.position-card h3,
.stage-top strong,
.coach-card h3,
.field-row strong {
  letter-spacing: -0.025em;
}

.preview-nav {
  display: grid;
  gap: 8px;
}

.preview-nav span {
  padding: 9px 11px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 0.84rem;
}

.preview-nav span.active {
  color: var(--text);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.preview-mini-panel,
.preview-panel,
.pillar-card,
.position-card,
.coach-card,
.journal-preview,
.journal-form,
.stage-panel {
  border: 1px solid var(--line-subtle);
  border-radius: 18px;
  background: var(--bg-muted);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.preview-mini-panel:hover,
.preview-panel:hover,
.pillar-card:hover,
.position-card:hover,
.coach-card:hover,
.journal-preview:hover,
.journal-form:hover,
.stage-panel:hover {
  transform: translateY(-1px);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.028);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
}

.hero-section:hover,
.pillars-section:hover,
.product-section:hover,
.positioning-section:hover,
.preview-shell:hover,
.stage-frame:hover {
  border-color: var(--line-strong);
}

.preview-mini-panel {
  margin-top: auto;
  padding: 14px;
}

.preview-mini-panel strong {
  display: block;
  margin-top: 4px;
  line-height: 1.35;
}

.preview-main {
  padding: 16px;
}

.preview-headline-row {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

.preview-headline-row strong {
  display: block;
  margin-top: 4px;
  font-size: 2.05rem;
}

.preview-pill-row {
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.preview-summary-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.summary-cell {
  padding: 11px 12px;
  border: 1px solid var(--line-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.summary-cell small,
.preview-kpis small,
.stage-panel small {
  display: block;
  margin-bottom: 6px;
  color: var(--text-dim);
}

.summary-cell strong {
  display: block;
  font-size: 1rem;
}

.preview-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 12px;
}

.preview-panel {
  padding: 14px;
}

.preview-curve,
.preview-wide {
  grid-column: span 2;
}

.panel-label-row {
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.8rem;
}

.preview-curve svg {
  width: 100%;
  height: 220px;
}

.curve-grid line {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 1;
}

.curve-line {
  fill: none;
  stroke: var(--green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.curve-area {
  fill: rgba(114, 223, 170, 0.12);
}

.curve-axis {
  justify-content: space-between;
  margin-top: 10px;
  color: var(--text-dim);
  font-size: 0.76rem;
}

.setup-row {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid var(--line-subtle);
}

.setup-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.setup-row span:first-child {
  color: var(--text-soft);
  font-size: 0.84rem;
}

.setup-track {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.setup-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.setup-fill.positive {
  background: linear-gradient(90deg, rgba(114, 223, 170, 0.26), rgba(114, 223, 170, 0.92));
}

.setup-fill.negative {
  background: linear-gradient(90deg, rgba(255, 109, 120, 0.28), rgba(255, 109, 120, 0.92));
}

.signal-row {
  padding: 12px 0 0;
  border-top: 1px solid var(--line-subtle);
}

.signal-row:first-of-type {
  padding-top: 0;
  border-top: 0;
}

.signal-row strong {
  display: block;
  margin-bottom: 5px;
  color: var(--text);
}

.signal-row p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.55;
  font-size: 0.88rem;
}

.signal-row.positive {
  border-left: 1px solid rgba(114, 223, 170, 0.28);
  padding-left: 12px;
}

.signal-row.negative {
  border-left: 1px solid rgba(255, 109, 120, 0.28);
  padding-left: 12px;
}

.tape-header,
.trade-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
}

.tape-header {
  padding-bottom: 10px;
  color: var(--text-dim);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trade-row {
  padding: 12px 0;
  border-top: 1px solid var(--line-subtle);
}

.trade-row:first-of-type {
  border-top: 0;
}

.trade-row span {
  font-size: 0.88rem;
}

.trade-row strong {
  justify-self: end;
}

.preview-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line-subtle);
}

.flow-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line-subtle);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.018);
}

.flow-step.active {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.flow-index {
  color: var(--text-dim);
  font-size: 0.76rem;
}

.flow-step strong,
.product-cta strong {
  display: block;
  color: var(--text);
  letter-spacing: -0.02em;
}

.flow-step small {
  display: block;
  margin-top: 4px;
  font-size: 0.77rem;
  line-height: 1.45;
}

.pillars-section,
.product-section,
.pricing-section,
.positioning-section {
  padding: 24px;
}

.section-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  gap: 20px 28px;
  align-items: end;
  margin-bottom: 20px;
}

.section-intro h2 {
  max-width: 15ch;
  font-size: clamp(2.15rem, 3.9vw, 3.55rem);
  text-wrap: balance;
}

.section-copy {
  margin: 0;
  max-width: 34rem;
  font-size: 0.95rem;
  line-height: 1.64;
}

.pricing-note {
  margin: -4px 0 18px;
  color: var(--text-dim);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.pricing-trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.trust-item {
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.trust-item strong {
  display: block;
  margin-top: 6px;
  font-size: 0.94rem;
  line-height: 1.45;
  color: var(--text-soft);
}

.landing-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 4px 2px;
  color: var(--text-dim);
  font-size: 0.82rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.footer-links a {
  color: var(--text-dim);
  text-decoration: none;
  transition: color 160ms ease;
}

.footer-links a:hover {
  color: var(--text-soft);
}

.pillar-grid,
.positioning-grid,
.coaching-grid {
  display: grid;
  gap: 12px;
  align-items: stretch;
}

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

.pillar-card,
.position-card,
.coach-card {
  padding: 20px;
  min-height: 100%;
}

.pillar-index {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--text-dim);
}

.pillar-card h3,
.position-card h3,
.coach-card h3 {
  margin: 0 0 10px;
  font-size: 1.18rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.pillar-card p,
.position-card p,
.coach-card p,
.journal-preview p {
  margin: 0;
  line-height: 1.62;
}

.pillar-detail {
  display: inline-block;
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line-subtle);
  color: var(--text-dim);
  font-size: 0.78rem;
}

.product-stage {
  position: relative;
}

.stage-frame {
  padding: 16px;
}

.stage-top {
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.stage-panel {
  padding: 16px;
  min-height: 100%;
}

.stage-wide {
  grid-column: span 3;
}

.stage-hero {
  display: block;
  margin: 8px 0 16px;
  font-size: 2.3rem;
  letter-spacing: -0.04em;
}

.stage-curve {
  position: relative;
  height: 176px;
  overflow: hidden;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(114, 223, 170, 0.14), rgba(114, 223, 170, 0.02)),
    linear-gradient(120deg, rgba(255, 255, 255, 0.035), transparent 45%);
}

.stage-curve::before {
  content: "";
  position: absolute;
  inset: 18px 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.stage-curve::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 28px;
  height: 3px;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      rgba(114, 223, 170, 0.08) 0%,
      rgba(114, 223, 170, 0.3) 8%,
      rgba(114, 223, 170, 0.66) 28%,
      rgba(114, 223, 170, 0.44) 42%,
      rgba(114, 223, 170, 0.88) 62%,
      rgba(114, 223, 170, 0.98) 100%
    );
  transform: translateY(-74px) rotate(-6deg);
  transform-origin: left center;
}

.stage-note {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line-subtle);
  font-size: 0.86rem;
  line-height: 1.5;
}

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

.coach-card.focus {
  border-color: var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.015));
}

.coach-tag,
.position-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--text-dim);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.coach-card strong {
  display: block;
  margin-top: 14px;
}

.journal-layout {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 12px;
}

.journal-form,
.journal-preview {
  padding: 16px;
}

.field-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid var(--line-subtle);
}

.field-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.journal-preview strong {
  display: block;
  margin: 6px 0 12px;
  font-size: 2rem;
}

.journal-chip-row {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.journal-chip {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.78rem;
}

.product-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 12px;
  padding: 14px 16px;
  border: 1px solid var(--line-subtle);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.012);
}

.product-cta > div:first-child {
  max-width: 34rem;
}

.product-cta strong {
  margin-top: 6px;
  font-size: 1.05rem;
}

.product-cta-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

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

.pricing-card {
  display: grid;
  gap: 14px;
  min-height: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.014);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
  transform: translateY(-1px);
  border-color: var(--line-strong);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.pricing-card.featured {
  border-color: rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.018);
}

.pricing-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.pricing-card h3 {
  margin: 8px 0 0;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
}

.pricing-pill {
  padding: 7px 10px;
  border: 1px solid var(--line-subtle);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.022);
  color: var(--text-soft);
  font-size: 0.74rem;
  white-space: nowrap;
}

.pricing-price-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.pricing-price-row strong {
  font-size: clamp(2.35rem, 4vw, 3.2rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.pricing-price-row span {
  padding-bottom: 5px;
  color: var(--text-soft);
}

.pricing-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
}

.pricing-list {
  display: grid;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pricing-list li {
  position: relative;
  padding-left: 16px;
  line-height: 1.5;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.pricing-link {
  margin-top: auto;
}

.position-card.negative {
  border-color: rgba(255, 109, 120, 0.18);
}

.position-card.positive {
  border-color: rgba(114, 223, 170, 0.18);
}

@media (max-width: 1240px) {
  .landing-shell {
    width: min(100% - 28px, 1180px);
  }

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

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

  .section-intro {
    grid-template-columns: 1fr;
  }

  .section-intro h2 {
    max-width: 18ch;
  }

}

@media (max-width: 980px) {
  html {
    scroll-padding-top: 28px;
  }

  .site-header {
    position: static;
    flex-wrap: wrap;
    gap: 14px;
  }

  .site-nav {
    order: 3;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 2px;
    justify-content: flex-start;
  }

  .hero-footnotes,
  .pillar-grid,
  .pricing-grid,
  .pricing-trust-row,
  .positioning-grid,
  .coaching-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .preview-content,
  .journal-layout {
    grid-template-columns: 1fr;
  }

  .preview-sidebar {
    border-right: 0;
    border-bottom: 1px solid var(--line-subtle);
  }

  .preview-summary-row,
  .stage-grid,
  .preview-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stage-wide {
    grid-column: span 2;
  }

  .product-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-section,
  .pillars-section,
  .product-section,
  .pricing-section,
  .positioning-section {
    scroll-margin-top: 24px;
  }
}

@media (max-width: 760px) {
  .landing-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 10px;
  }

  .site-header,
  .hero-section,
  .pillars-section,
  .product-section,
  .pricing-section,
  .positioning-section {
    padding: 22px;
  }

  .site-nav,
  .header-actions,
  .hero-actions,
  .workspace-bridge,
  .workspace-bridge-actions,
  .product-cta,
  .product-cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .header-actions a,
  .hero-actions a,
  .product-cta-actions a,
  .workspace-bridge-actions a {
    width: 100%;
  }

  .site-nav a {
    white-space: nowrap;
  }

  .hero-copy h1,
  .section-intro h2 {
    max-width: none;
    font-size: clamp(2.3rem, 11vw, 3.45rem);
  }

  .hero-footnotes,
  .preview-summary-row,
  .preview-grid,
  .pillar-grid,
  .pricing-grid,
  .pricing-trust-row,
  .positioning-grid,
  .coaching-grid,
  .stage-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .preview-shell {
    min-height: auto;
  }

  .preview-topbar,
  .preview-window,
  .preview-headline-row,
  .preview-pill-row,
  .preview-top-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .preview-search,
  .preview-top-actions span,
  .preview-badge {
    width: 100%;
    text-align: center;
  }

  .workspace-bridge-copy strong,
  .workspace-bridge-copy small {
    max-width: none;
  }

  .preview-content {
    min-height: 0;
  }

  .preview-curve,
  .preview-wide,
  .stage-wide {
    grid-column: span 1;
  }

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

  .setup-row strong {
    justify-self: start;
  }

  .tape-header,
  .trade-row {
    grid-template-columns: 1fr auto;
  }

  .tape-header span:nth-child(2),
  .trade-row span:nth-child(2) {
    display: none;
  }

  .journal-layout {
    grid-template-columns: 1fr;
  }

  .product-cta-actions {
    flex-direction: column;
  }

  .landing-footer {
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .landing-shell {
    width: min(100% - 16px, 1180px);
  }

  .site-header,
  .hero-section,
  .pillars-section,
  .product-section,
  .pricing-section,
  .positioning-section {
    padding: 18px;
    border-radius: 18px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand-copy small {
    display: none;
  }

  .hero-rail {
    gap: 8px;
  }

  .hero-subcopy,
  .section-copy,
  .workspace-bridge-copy small,
  .pillar-card p,
  .position-card p,
  .pricing-card p {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .site-header .solid-link,
  .site-header .ghost-link {
    min-height: 42px;
    padding-inline: 12px;
    font-size: 0.88rem;
  }

  .hero-footnotes {
    gap: 10px;
    margin-top: 18px;
    padding-top: 14px;
  }

  .preview-sidebar,
  .preview-main,
  .preview-panel,
  .stage-frame,
  .pricing-card {
    padding: 14px;
  }

  .summary-cell,
  .pillar-card,
  .position-card {
    padding: 14px;
  }

  .preview-headline-row strong,
  .stage-hero,
  .pricing-price-row strong {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .preview-mini-panel strong,
  .summary-cell strong {
    font-size: 0.94rem;
  }

  .curve-axis,
  .tape-header,
  .trade-row,
  .panel-label-row {
    font-size: 0.72rem;
  }
}
