:root {
  --bg: #f4f8ff;
  --text: #0f172a;
  --muted: #64748b;
  --blue: #2563eb;
  --blue-dark: #1d4ed8;
  --green: #22a95a;
  --green-dark: #15803d;
  --purple: #7c3aed;
  --panel: #ffffff;
  --line: #dbe5f0;
  --soft: #eaf2ff;
  --soft-green: #e8f9ef;
  --shadow: 0 24px 60px rgba(15, 23, 42, 0.11);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f6faff 0%, #ffffff 44%, #f8fbff 100%);
  line-height: 1.6;
}

a { color: inherit; }
.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}
.narrow { max-width: 820px; }
.center { text-align: center; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-weight: 900;
}
.logo-mark {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: end;
  gap: 4px;
  padding: 5px;
}
.logo-mark span {
  display: block;
  width: 7px;
  border-radius: 999px;
  background: var(--blue);
}
.logo-mark span:nth-child(1) { height: 12px; background: var(--green); }
.logo-mark span:nth-child(2) { height: 20px; }
.logo-mark span:nth-child(3) { height: 27px; background: linear-gradient(180deg, var(--blue), var(--green)); }
.brand-text { font-size: 1.35rem; letter-spacing: -0.03em; }
.alpha-pill {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--blue-dark);
  background: #dbeafe;
  padding: 5px 9px;
  border-radius: 999px;
}
nav { display: flex; gap: 26px; font-size: 0.94rem; }
nav a { text-decoration: none; color: var(--text); font-weight: 800; }
nav a:hover { color: var(--blue); }

.hero {
  padding: 92px 0 58px;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 44px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  color: var(--blue);
  background: #dbeafe;
  border-radius: 999px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  padding: 5px 12px;
  margin: 0 0 18px;
}
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(3.5rem, 7.5vw, 6.9rem); letter-spacing: -0.075em; max-width: 670px; }
h1 span { color: var(--green); }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); letter-spacing: -0.045em; }
h3 { font-size: 1.24rem; letter-spacing: -0.025em; }
p { margin: 14px 0 0; }
.lead { font-size: 1.28rem; color: #334155; max-width: 620px; }
.supporting { font-size: 1.05rem; color: var(--muted); max-width: 610px; }
.small-note { color: var(--muted); font-size: 0.92rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 900;
  border: 1px solid transparent;
}
.button.primary { background: var(--blue); color: white; box-shadow: 0 18px 32px rgba(37, 99, 235, 0.22); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { background: white; color: #334155; border-color: #cbd5e1; }
.button.large { min-height: 58px; padding: 0 28px; white-space: nowrap; background: var(--green); box-shadow: 0 18px 32px rgba(34, 169, 90, 0.18); }
.button.large:hover { background: var(--green-dark); }
.hero-visual img {
  width: 100%;
  border-radius: 34px;
  display: block;
  box-shadow: var(--shadow);
}

.section { padding: 76px 0; }
.section.compact { padding-top: 22px; }
.tinted { background: linear-gradient(180deg, #f1f7ff 0%, #edf6ff 100%); }
.tinted-soft { background: #f8fbff; }
.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding-top: 12px;
  padding-bottom: 8px;
}
.feature-row article {
  border-left: 1px solid var(--line);
  padding-left: 22px;
}
.feature-row article:first-child { border-left: none; }
.icon {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: #dbeafe;
  color: var(--blue);
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.feature-row p, .panel p, .journey p, .access-card p { color: var(--muted); }
.alpha-grid, .screenshot-grid {
  display: grid;
  gap: 22px;
  margin-top: 38px;
}
.alpha-grid { grid-template-columns: repeat(3, 1fr); }
.panel, .access-card, .screenshot-grid figure {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}
.panel { padding: 30px; }
.panel ul { margin: 18px 0 0; padding-left: 20px; color: #334155; }
.panel li { margin: 10px 0; }
.screenshots { background: white; }
.screenshot-grid { grid-template-columns: repeat(3, 1fr); align-items: start; }
.screenshot-grid figure { margin: 0; padding: 16px 16px 20px; text-align: center; }
.screenshot-grid img { width: 100%; height: auto; border-radius: 22px; display: block; }
.screenshot-grid figcaption { font-weight: 900; margin-top: 14px; color: #334155; }
.access-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 26px;
  padding: 34px;
}
.access-icon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--green);
  color: white;
  font-size: 1.8rem;
  font-weight: 900;
}
.version a { color: var(--blue); font-weight: 800; word-break: break-word; }
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
}
.placeholder {
  margin-top: 20px;
  padding: 16px;
  background: #f8fafc;
  border: 1px dashed #cbd5e1;
  border-radius: 16px;
  color: #475569;
}
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
  margin: 16px auto 0;
}
.founding-card {
  margin-top: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 22px;
  padding: 28px;
  background: linear-gradient(135deg, #ffffff 0%, #f1f7ff 54%, #ecfdf5 100%);
  border: 1px solid #bfdbfe;
  border-radius: 30px;
  box-shadow: var(--shadow);
}
.founding-card h3 { font-size: 1.5rem; }
.founding-card p { max-width: 840px; }
.founding-icon {
  width: 68px;
  height: 68px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}
.journey-track {
  display: grid;
  grid-template-columns: 1fr minmax(50px, 120px) 1fr minmax(50px, 120px) 1fr;
  align-items: center;
  gap: 14px;
  margin-top: 34px;
}
.journey-step {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.045);
}
.journey-step span { font-weight: 900; }
.journey-step strong {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-step.active {
  border-color: #86efac;
  background: var(--soft-green);
}
.journey-step.active strong { color: var(--green-dark); }
.journey-line {
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
  position: relative;
}
.journey-line::after {
  content: "→";
  position: absolute;
  right: -4px;
  top: 50%;
  transform: translateY(-52%);
  color: var(--green-dark);
  font-weight: 900;
}
.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}
.journey-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
  display: flex;
  flex-direction: column;
}
.journey-card.active { border-color: #86efac; box-shadow: 0 20px 42px rgba(34, 169, 90, 0.12); }
.journey-number {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: var(--green-dark);
  font-weight: 900;
  font-size: 1.35rem;
  margin-bottom: 18px;
}
.journey-stage {
  margin: 0 0 10px;
  font-weight: 900;
  color: var(--text) !important;
}
.journey-stage span {
  display: block;
  color: var(--blue);
  font-size: 0.88rem;
  margin-top: 4px;
}
.journey-card h4 {
  margin: 22px 0 8px;
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
}
.journey-card ul {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}
.journey-card li { margin: 8px 0; }
.status-badge {
  align-self: flex-start;
  display: inline-block;
  margin-top: auto;
  color: var(--blue);
  background: #dbeafe;
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 0.84rem;
}
.journey-thanks p {
  margin-top: 34px;
  font-weight: 900;
  color: var(--text);
  font-size: 1.12rem;
}
.notice-section {
  background: white;
}
.notice-layout {
  align-items: start;
}
.notice-layout > div:first-child p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.03rem;
}
.notice-panel {
  border-color: #bfdbfe;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}
.release-panel ul, .notice-panel ul {
  margin-top: 18px;
}
.release-panel li, .notice-panel li {
  padding-left: 2px;
}

.site-footer {
  padding: 38px 0;
  background: white;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr;
  gap: 28px;
  align-items: start;
}
.footer-brand { align-self: start; }
.footer-note { color: var(--muted); margin-top: 0; }


.compare-section { background: white; }
.compare-section .narrow p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}
.comparison-wrap { margin-top: 34px; }
.comparison-note {
  margin-bottom: 16px;
  padding: 16px 18px;
  border: 1px solid #bfdbfe;
  border-radius: 18px;
  background: #eff6ff;
  color: #334155;
}
.comparison-note strong { color: var(--blue-dark); }
.comparison-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.06);
  background: white;
}
.comparison-table {
  width: 100%;
  min-width: 980px;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 0.92rem;
}
.comparison-table th,
.comparison-table td {
  padding: 18px 16px;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.comparison-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8fbff;
  color: #26364c;
  font-size: 0.82rem;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.comparison-table tbody th {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text);
  white-space: nowrap;
}
.comparison-table tbody td { color: #475569; }
.comparison-table tr:last-child th,
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .monatry-row th,
.comparison-table .monatry-row td {
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 100%);
}
.status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  margin-right: 6px;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
}
.status.yes { color: var(--green-dark); background: #dcfce7; }
.status.partial { color: #b45309; background: #fef3c7; }
.status.no { color: #b91c1c; background: #fee2e2; }

@media (max-width: 640px) {
  .comparison-note { font-size: 0.92rem; }
  .comparison-table { min-width: 920px; }
}

@media (max-width: 980px) {
  nav { display: none; }
  .hero { padding-top: 62px; }
  .hero-grid, .two-col, .access-card { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .feature-row, .alpha-grid, .screenshot-grid, .journey-grid { grid-template-columns: 1fr 1fr; }
  .journey-track { grid-template-columns: 1fr; }
  .journey-line { width: 3px; height: 34px; justify-self: center; background: linear-gradient(180deg, var(--blue), var(--green)); }
  .journey-line::after { right: auto; left: 50%; top: auto; bottom: -14px; transform: translateX(-50%) rotate(90deg); }
  .feature-row article:nth-child(odd) { border-left: none; }
  .access-card { align-items: start; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 58px 0; }
  .hero-actions .button { width: 100%; }
  .feature-row, .alpha-grid, .screenshot-grid, .journey-grid, .footer-grid { grid-template-columns: 1fr; }
  .feature-row article { border-left: none; padding-left: 0; }
  h1 { font-size: clamp(3rem, 16vw, 4.45rem); }
  .button.large { width: 100%; }
}

.feedback-section { background: white; }
.feedback-layout { align-items: start; }
.feedback-tips { margin-top: 28px; }
.feedback-form { padding: 28px; }
.form-intro { margin-top: 0; color: var(--muted); font-size: 1.02rem; }
.feedback-form label {
  display: block;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 900;
  color: #26364c;
}
.feedback-form label span { color: #94a3b8; font-weight: 800; }
.feedback-form select,
.feedback-form input[type="text"],
.feedback-form textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 18px;
  padding: 16px 18px;
  font: inherit;
  color: var(--text);
  background: white;
  outline: none;
}
.feedback-form textarea { resize: vertical; min-height: 190px; }
.feedback-form select:focus,
.feedback-form input[type="text"]:focus,
.feedback-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
.quick-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}
.quick-choice button {
  min-height: 46px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  background: white;
  padding: 0 18px;
  font: inherit;
  font-weight: 900;
  color: #334155;
  cursor: pointer;
}
.quick-choice button.active,
.quick-choice button:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: #eff6ff;
}
.checkbox-row {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  font-weight: 700 !important;
  color: var(--muted) !important;
}
.checkbox-row input { margin-top: 5px; transform: scale(1.15); }
.form-note {
  color: var(--muted);
  font-size: 0.92rem;
}
.submit-button {
  width: 100%;
  margin-top: 24px;
  border: none;
  cursor: pointer;
  font: inherit;
}
.submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}
.form-status {
  min-height: 24px;
  margin-top: 14px;
  font-weight: 800;
}
.form-status.success { color: var(--green-dark); }
.form-status.error { color: #dc2626; }

@media (max-width: 860px) {
  .feedback-form { padding: 22px; }
  .quick-choice button { width: 100%; }
}

.get-app-section .narrow p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}
.app-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.store-button {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-height: 82px;
  padding: 16px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: white;
  color: var(--text);
  text-decoration: none;
  text-align: left;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
  cursor: pointer;
  font: inherit;
}
.store-button:hover,
.store-button.active {
  border-color: var(--blue);
  box-shadow: 0 20px 42px rgba(37, 99, 235, 0.14);
  transform: translateY(-1px);
}
.store-button small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.78rem;
  line-height: 1.2;
}
.store-button strong {
  display: block;
  font-size: 1.16rem;
  line-height: 1.2;
}
.store-icon {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1.35rem;
}
.store-button.apple .store-icon { background: #111827; color: white; }
.store-button.google .store-icon { background: #e8f9ef; color: var(--green-dark); }
.store-button.web .store-icon { background: #dbeafe; color: var(--blue); }
.install-panels { margin-top: 22px; }
.install-panel { max-width: 780px; margin: 0 auto; }
.install-panel[hidden] { display: none; }
.install-panel ol {
  margin: 18px 0 0;
  padding-left: 22px;
  color: #334155;
}
.install-panel li { margin: 10px 0; }
.install-panel a { color: var(--blue); font-weight: 800; }

@media (max-width: 860px) {
  .app-choice-grid { grid-template-columns: 1fr; }
}

/* Mobile-friendly competitor comparison */
.comparison-cards { display: none; }

.comparison-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 22px;
  background: white;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}
.comparison-card + .comparison-card { margin-top: 16px; }
.comparison-card h3 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: 1.25rem;
}
.comparison-card p {
  margin: 0 0 12px;
  color: #475569;
  line-height: 1.5;
}
.comparison-card p strong { color: var(--text); }
.comparison-card ul {
  list-style: none;
  margin: 14px 0;
  padding: 0;
  display: grid;
  gap: 10px;
}
.comparison-card li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #475569;
  line-height: 1.45;
}
.comparison-card .status {
  flex: 0 0 auto;
  margin: 0;
}
.comparison-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}
.comparison-card-head h3 { margin: 0; }
.comparison-card .pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dbeafe;
  color: var(--blue);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.comparison-card.monatry-card {
  border-color: #bbf7d0;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 80%);
}
.comparison-view {
  margin-top: 14px !important;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  color: var(--text) !important;
}

@media (max-width: 760px) {
  .compare-section .narrow { text-align: left; }
  .compare-section .narrow .eyebrow { margin-left: 0; margin-right: 0; }
  .comparison-wrap { margin-top: 24px; }
  .comparison-scroll { display: none; }
  .comparison-cards { display: block; }
  .comparison-note {
    margin-bottom: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    font-size: 0.95rem;
    line-height: 1.5;
  }
}


@media (max-width: 640px) {
  .founding-card { grid-template-columns: 1fr; padding: 24px; }
  .founding-icon { width: 62px; height: 62px; }
  .journey-step { border-radius: 22px; }
  .journey-card { padding: 24px; }
}

/* v13 launch journey refresh */
.journey-section .section-lead {
  max-width: 720px;
}
.small-eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
}
.launch-path {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 34px;
}
.launch-path::before {
  content: "";
  position: absolute;
  top: 30px;
  left: 10%;
  right: 10%;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), #93c5fd, var(--green));
  opacity: 0.42;
}
.path-card {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
}
.path-marker {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 62px;
}
.path-marker span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 4px solid white;
  background: #e0ecff;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.16);
}
.path-card.active .path-marker span {
  background: linear-gradient(135deg, var(--blue), var(--green));
  box-shadow: 0 18px 34px rgba(34, 197, 94, 0.24);
}
.path-content {
  height: 100%;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 26px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}
.path-card.active .path-content {
  border-color: #86efac;
  background: linear-gradient(180deg, #f0fdf4 0%, #ffffff 78%);
  box-shadow: 0 20px 42px rgba(34, 169, 90, 0.12);
}
.path-topline {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}
.path-stage {
  margin: 0 !important;
  color: var(--text) !important;
  font-weight: 900;
  line-height: 1.1;
}
.path-stage span {
  display: block;
  margin-top: 4px;
  color: var(--blue);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.path-content h3 {
  margin: 0 0 10px;
  font-size: 1.45rem;
}
.path-content h4 {
  margin: 22px 0 10px;
  font-size: 0.88rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #334155;
}
.path-content ul {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}
.path-content li { margin: 7px 0; }
.status-badge.active {
  color: var(--green-dark);
  background: var(--soft-green);
}
.status-badge.horizon {
  color: #6d28d9;
  background: #ede9fe;
}
.journey-thanks {
  margin: 34px auto 0;
  max-width: 780px;
  text-align: center;
  padding: 22px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,0.72);
  border: 1px solid var(--line);
}
.journey-thanks p {
  margin: 0;
  font-weight: 900;
  color: var(--text) !important;
  font-size: 1.08rem;
}
@media (max-width: 860px) {
  .launch-path {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 28px;
  }
  .launch-path::before {
    top: 0;
    bottom: 0;
    left: 30px;
    right: auto;
    width: 3px;
    height: auto;
    background: linear-gradient(180deg, var(--blue), #93c5fd, var(--green));
  }
  .path-card {
    grid-template-columns: 62px 1fr;
    grid-template-rows: auto;
    gap: 16px;
    margin-bottom: 24px;
  }
  .path-card:last-child { margin-bottom: 0; }
  .path-marker {
    height: auto;
    align-items: flex-start;
    padding-top: 24px;
  }
  .path-marker span {
    width: 36px;
    height: 36px;
    border-width: 3px;
  }
  .path-content { padding: 24px; }
  .path-topline { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 640px) {
  .journey-section .container.narrow.center { text-align: center; }
  .founding-card {
    border-radius: 26px;
    padding: 22px;
    text-align: left;
  }
  .founding-card h3 { font-size: 1.25rem; }
  .launch-path::before { left: 24px; }
  .path-card {
    grid-template-columns: 50px 1fr;
    gap: 12px;
    margin-bottom: 20px;
  }
  .path-marker { padding-top: 22px; }
  .path-marker span { width: 30px; height: 30px; }
  .path-content {
    border-radius: 24px;
    padding: 22px;
  }
  .path-content h3 { font-size: 1.25rem; }
  .path-content li { margin: 6px 0; }
  .journey-thanks {
    margin-top: 26px;
    text-align: left;
    padding: 20px;
  }
}

/* v14 polished launch journey */
.launch-journey-section {
  position: relative;
  overflow: hidden;
}
.launch-journey-section::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 260px;
  background: radial-gradient(circle at 50% 0%, rgba(37, 99, 235, 0.08), transparent 58%);
  pointer-events: none;
}
.launch-journey-wrap {
  position: relative;
  margin-top: 38px;
}
.tester-card {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 32px;
  background: linear-gradient(135deg, #ffffff 0%, #eef6ff 55%, #ecfdf5 100%);
  border: 1px solid #cfe0f5;
  border-radius: 32px;
  box-shadow: var(--shadow);
}
.tester-card-icon {
  width: 74px;
  height: 74px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  background: linear-gradient(135deg, var(--blue), var(--green));
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(37, 99, 235, 0.2);
}
.tester-kicker {
  margin: 0 0 8px !important;
  color: var(--blue) !important;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.tester-card h3 {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  letter-spacing: -0.04em;
}
.tester-card p:not(.tester-kicker) {
  margin-top: 10px;
  color: #334155;
  font-size: 1.05rem;
  max-width: 820px;
}




.journey-mini-step.active 



.journey-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
}
.journey-phase-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.055);
}
.journey-phase-card.active {
  border-color: #86efac;
  box-shadow: 0 20px 42px rgba(34, 169, 90, 0.12);
}
.phase-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.phase-number {
  width: 54px;
  height: 54px;
  border-radius: 20px;
  display: grid;
  place-items: center;
  background: var(--soft-green);
  color: var(--green-dark);
  font-size: 1.35rem;
  font-weight: 900;
}
.phase-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  color: var(--blue);
  background: #dbeafe;
  font-size: 0.84rem;
  font-weight: 900;
  white-space: nowrap;
}
.phase-badge.active {
  color: var(--green-dark);
  background: var(--soft-green);
}
.phase-badge.horizon {
  color: #6d28d9;
  background: #ede9fe;
}
.phase-label {
  margin: 0 0 8px !important;
  color: var(--blue) !important;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.journey-phase-card h3 {
  margin: 0;
  font-size: 1.45rem;
  letter-spacing: -0.035em;
}
.journey-phase-card > p:not(.phase-label) {
  margin-top: 12px;
  color: var(--muted);
}
.phase-focus {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.phase-focus h4 {
  margin: 0 0 12px;
  font-size: 0.86rem;
  color: #334155;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.phase-focus ul {
  margin: 0;
  padding-left: 20px;
  color: #334155;
}
.phase-focus li {
  margin: 7px 0;
}
.journey-closing {
  margin: 34px auto 0;
  max-width: 760px;
  text-align: center;
  color: var(--text) !important;
  font-size: 1.12rem;
  font-weight: 900;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.045);
}
@media (max-width: 900px) {
  .journey-card-grid {
    grid-template-columns: 1fr;
  }
  
@media (max-width: 640px) {
  .launch-journey-wrap {
    margin-top: 30px;
  }
  .tester-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px;
    border-radius: 26px;
  }
  .tester-card-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    font-size: 1.55rem;
  }
  .tester-card h3 {
    font-size: 1.3rem;
  }
  


/* v19 Mobile sticky CTA */
.sticky-alpha-cta {
  position: fixed;
  left: 5%;
  right: 5%;
  bottom: 20px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(80px);
  transition: all .3s ease;
  pointer-events: none;
}

.sticky-alpha-cta.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.sticky-alpha-button {
  display: block;
  text-align: center;
  background: #2f66f3;
  color: white;
  padding: 16px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

@media (min-width: 769px) {
  .sticky-alpha-cta { display: none; }
}
