﻿:root {
  --bg: #f3ede2;
  --bg-deep: #ece4d6;
  --panel: rgba(255, 250, 243, 0.86);
  --panel-strong: rgba(255, 250, 243, 0.94);
  --ink: #17202a;
  --muted: #5f6a75;
  --line: rgba(23, 32, 42, 0.1);
  --brand: #1f5c5d;
  --brand-deep: #133e46;
  --brand-soft: rgba(31, 92, 93, 0.12);
  --accent: #b76e33;
  --accent-soft: rgba(183, 110, 51, 0.12);
  --shadow: 0 20px 70px rgba(27, 37, 47, 0.1);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(183, 110, 51, 0.2), transparent 30%),
    radial-gradient(circle at top right, rgba(31, 92, 93, 0.18), transparent 28%),
    linear-gradient(180deg, #faf4ea 0%, var(--bg) 55%, var(--bg-deep) 100%);
  font-family: "Segoe UI Variable Text", "Trebuchet MS", sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.28), transparent 74%);
  pointer-events: none;
}

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

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

.container {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.site-shell {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(243, 237, 226, 0.74);
  border-bottom: 1px solid rgba(16, 32, 40, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 15px;
  background: linear-gradient(145deg, var(--brand-deep), var(--brand));
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.06em;
  box-shadow: 0 14px 30px rgba(19, 62, 70, 0.24);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-kicker,
.eyebrow,
.mini-kicker,
.price-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
}

.brand-kicker,
.mini-kicker,
.price-kicker {
  color: var(--muted);
}

.brand-name,
.hero h1,
.section-heading h2,
.feedback-card h2,
.founder-copy h2 {
  font-family: "Cambria", "Georgia", serif;
  letter-spacing: -0.03em;
}

.brand-name {
  font-size: 22px;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  padding: 10px 14px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--muted);
  transition: background 140ms ease, color 140ms ease, transform 140ms ease;
}

.nav-links a:hover {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  transform: translateY(-1px);
}

.nav-links .nav-cta {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: 0 14px 34px rgba(10, 79, 81, 0.2);
}

.panel,
.card,
.step-card,
.scenario-card,
.price-card,
.faq-card {
  border: 1px solid rgba(255, 255, 255, 0.58);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  padding: 48px 0 26px;
}

.hero-grid,
.split-grid,
.join-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 20px;
}

.hero-copy,
.hero-side,
.feedback-card,
.pricing-band,
.form-card,
.founder-band,
.footer-shell {
  border-radius: var(--radius-xl);
}

.hero-copy {
  padding: 34px;
  overflow: hidden;
  position: relative;
}

.hero-copy::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -100px;
  width: 240px;
  height: 240px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(31, 92, 93, 0.24), transparent 68%);
  pointer-events: none;
}

.hero-side,
.feedback-card,
.form-card {
  padding: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-deep);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  padding: 10px 14px;
}

.hero h1 {
  margin: 18px 0 12px;
  font-size: clamp(42px, 6vw, 74px);
  line-height: 0.96;
}

.lead {
  max-width: 58ch;
  color: var(--muted);
  font-size: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  cursor: pointer;
  font-weight: 700;
  transition: transform 140ms ease, box-shadow 140ms ease, opacity 140ms ease;
}

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

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-deep), var(--brand));
  box-shadow: 0 16px 36px rgba(10, 79, 81, 0.22);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.button.block {
  width: 100%;
}

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

.trust-pill,
.pilot-note,
.point-pill {
  border-radius: 20px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.trust-pill strong,
.pilot-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}

.trust-pill span,
.pilot-note span {
  color: var(--muted);
  font-size: 14px;
}

.loop-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.loop-card:first-of-type {
  border-top: 0;
  padding-top: 10px;
}

.loop-step,
.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--brand), var(--accent));
  color: #fff;
  font-weight: 700;
}

.loop-card h2,
.step-card h3,
.scenario-card h3,
.difference-card h3,
.faq-card h3,
.problem-card h3 {
  margin: 0 0 8px;
  font-size: 22px;
}

.loop-card p,
.problem-card p,
.scenario-card p,
.difference-card p,
.step-card p,
.faq-card p,
.founder-copy p,
.join-copy p,
.price-card p,
.feedback-list span {
  margin: 0;
  color: var(--muted);
}

.section {
  padding: 26px 0;
}

.section-heading {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}

.section-heading.left {
  margin-bottom: 18px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
}

.section-heading p {
  margin: 0;
  max-width: 68ch;
  color: var(--muted);
}

.problem-grid,
.difference-grid,
.faq-grid,
.pricing-grid {
  display: grid;
  gap: 18px;
}

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

.card,
.step-card,
.scenario-card,
.price-card,
.faq-card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.steps-grid {
  display: grid;
  gap: 18px;
}

.step-card {
  background:
    radial-gradient(circle at top right, rgba(183, 110, 51, 0.12), transparent 26%),
    var(--panel-strong);
}

.scenario-grid,
.feedback-list,
.join-list {
  display: grid;
  gap: 14px;
}

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

.scenario-tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand-deep);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feedback-card {
  background:
    radial-gradient(circle at top right, rgba(183, 110, 51, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 247, 239, 0.84));
}

.feedback-card h2 {
  margin: 12px 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
}

.feedback-list div {
  display: grid;
  gap: 4px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.feedback-list div:first-child {
  border-top: 0;
  padding-top: 0;
}

.feedback-list strong {
  font-size: 15px;
}

.founder-band,
.pricing-band {
  padding: 30px;
}

.founder-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 18px;
  margin-top: 18px;
  background:
    radial-gradient(circle at bottom left, rgba(31, 92, 93, 0.12), transparent 28%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 247, 239, 0.84));
}

.founder-copy h2 {
  margin: 12px 0 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
}

.founder-points {
  display: grid;
  gap: 12px;
}

.point-pill {
  display: flex;
  align-items: center;
  min-height: 88px;
  font-weight: 600;
}

.pricing-band {
  background:
    radial-gradient(circle at top right, rgba(31, 92, 93, 0.12), transparent 26%),
    linear-gradient(180deg, rgba(255, 250, 243, 0.94), rgba(255, 247, 239, 0.84));
}

.price-card {
  min-height: 180px;
}

.price-card strong {
  display: block;
  margin: 10px 0;
  font-size: 32px;
}

.price-card.featured {
  border-color: rgba(31, 92, 93, 0.22);
  background:
    radial-gradient(circle at top right, rgba(31, 92, 93, 0.14), transparent 26%),
    var(--panel-strong);
}

.join-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.join-list li {
  padding-left: 20px;
  position: relative;
}

.join-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--brand));
}

.form-card form {
  display: grid;
  gap: 14px;
}

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

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

.field span {
  font-weight: 700;
  font-size: 14px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 250, 243, 0.86);
  padding: 14px 16px;
  color: var(--ink);
}

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

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

.form-note,
.status-message {
  margin: 0;
  font-size: 14px;
}

.form-note {
  color: var(--muted);
}

.status-message {
  min-height: 24px;
  color: var(--brand-deep);
}

.status-message.is-error {
  color: #9d3d22;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-meta span {
  position: relative;
  padding-left: 14px;
}

.hero-meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--accent);
}

.launch-trust {
  margin-top: 26px;
}

.launch-trust h3 {
  margin: 0 0 10px;
}

.launch-trust p {
  margin: 0;
}

.launch-trust-note {
  margin-top: 12px !important;
  color: var(--muted);
}

.site-footer {
  padding: 26px 0 44px;
}

.footer-shell {
  padding: 28px;
  background: rgba(12, 26, 34, 0.94);
  color: rgba(255, 255, 255, 0.82);
}

.footer-brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-brand {
  color: #fff;
  font-size: 30px;
}

.footer-shell p {
  margin: 8px 0 0;
  max-width: 56ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  margin-top: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: #fff;
}

.copyright {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

.hero-copy,
.hero-side,
.problem-card,
.step-card,
.scenario-card,
.feedback-card,
.difference-card,
.founder-band,
.pricing-band,
.form-card,
.faq-card {
  animation: rise-in 640ms ease both;
}

.hero-side {
  animation-delay: 80ms;
}

.scenario-card:nth-child(2),
.difference-card:nth-child(2),
.faq-card:nth-child(2) {
  animation-delay: 90ms;
}

.scenario-card:nth-child(3),
.difference-card:nth-child(3),
.faq-card:nth-child(3) {
  animation-delay: 160ms;
}

.legal-page .site-header {
  position: static;
}

.legal-shell {
  max-width: 880px;
}

.legal-stack {
  display: grid;
  gap: 24px;
}

.legal-stack section {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.legal-stack h2 {
  margin: 0 0 10px;
  font-size: 22px;
}

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

.legal-stack a {
  color: var(--brand-deep);
}

.legal-updated {
  margin-top: 12px !important;
  font-size: 14px;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .split-grid,
  .join-grid,
  .problem-grid,
  .difference-grid,
  .pricing-grid,
  .faq-grid,
  .steps-grid,
  .scenario-grid,
  .founder-band {
    grid-template-columns: 1fr;
  }

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255, 250, 243, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero {
    padding-top: 30px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
  }
}



