:root {
  --navy: #0D2540;
  --navy-2: #163654;
  --teal: #2E7D7B;
  --green: #3F5F44;
  --cream: #F7F3EA;
  --gray: #8E979D;
  --ink: #182536;
  --white: #fff;
  --border: rgba(13, 37, 64, 0.13);
  --shadow: 0 24px 60px rgba(13, 37, 64, 0.14);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

main section[id] {
  scroll-margin-top: 92px;
}

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

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

a {
  color: inherit;
}

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

button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}

h1,
h2,
h3,
.brand {
  font-family: Georgia, "Times New Roman", serif;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

h1 span {
  color: var(--teal);
}

h2 {
  color: var(--navy);
  font-size: clamp(2.15rem, 4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h3 {
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.25;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 16px;
  color: white;
  background: var(--navy);
  border-radius: 10px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(13, 37, 64, 0.08);
  background: rgba(247, 243, 234, 0.9);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.55rem;
  font-weight: 700;
  text-decoration: none;
}

.brand img {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav a {
  color: var(--navy);
  font-weight: 750;
  text-decoration: none;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  color: var(--teal);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
  border-radius: 99px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 13px 22px;
  color: white;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(46, 125, 123, 0.24);
  font-weight: 850;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: #276f6d;
  box-shadow: 0 16px 32px rgba(46, 125, 123, 0.28);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  background: transparent;
  border-color: rgba(13, 37, 64, 0.22);
  box-shadow: none;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: white;
  background: var(--navy);
  border-color: var(--navy);
}

.button-small {
  min-height: 42px;
  padding: 10px 16px;
}

.button-full {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 82px 0 86px;
}

.hero::before {
  position: absolute;
  top: -140px;
  right: -160px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(46, 125, 123, 0.15), transparent 68%);
  content: "";
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 64px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #8fd1cc;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 32px;
  color: #405062;
  font-size: clamp(1.08rem, 2vw, 1.3rem);
}

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

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
  margin: 30px 0 0;
  padding: 0;
  color: var(--green);
  font-weight: 800;
  list-style: none;
}

.trust-list li::before {
  margin-right: 8px;
  color: var(--teal);
  content: "✓";
}

.product-preview {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(13, 37, 64, 0.12);
  border-radius: 28px;
  box-shadow: var(--shadow);
  transform: rotate(0.6deg);
}

.preview-topbar {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  color: white;
  background: var(--navy);
}

.preview-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.preview-brand img {
  width: 36px;
  height: 36px;
  border-radius: 9px;
}

.avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--navy);
  background: var(--cream);
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.preview-body {
  padding: 24px;
}

.preview-heading,
.activity-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.preview-heading h2 {
  margin-bottom: 0;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.mini-label {
  margin-bottom: 4px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.status-pill {
  padding: 7px 10px;
  color: var(--green);
  background: rgba(63, 95, 68, 0.1);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 22px;
}

.stat-card {
  min-height: 142px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid rgba(13, 37, 64, 0.08);
  border-radius: 17px;
}

.stat-card strong,
.stat-card span {
  display: block;
}

.stat-card span {
  margin-top: 5px;
  color: #667181;
  font-size: 0.82rem;
  line-height: 1.4;
}

.stat-icon {
  display: grid;
  width: 38px;
  height: 38px;
  margin-bottom: 16px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 12px;
  font-weight: 900;
}

.activity-card {
  margin-top: 12px;
  padding: 18px;
  background: white;
  border: 1px solid rgba(13, 37, 64, 0.08);
  border-radius: 17px;
}

.activity-title {
  margin-bottom: 7px;
}

.activity-title span {
  color: var(--gray);
  font-size: 0.78rem;
}

.activity-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid rgba(13, 37, 64, 0.08);
}

.activity-row strong,
.activity-row small {
  display: block;
}

.activity-row small {
  color: #6a7480;
}

.dot {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.dot.teal { background: var(--teal); }
.dot.green { background: var(--green); }
.dot.navy { background: var(--navy); }

.problem-strip {
  color: white;
  background: var(--navy);
}

.problem-grid {
  min-height: 150px;
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr;
  align-items: center;
  gap: 32px;
}

.problem-grid p {
  margin-bottom: 0;
}

.problem-kicker {
  color: #8fd1cc;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.problem-grid > p:nth-child(2) {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2.3vw, 1.8rem);
  line-height: 1.35;
}

.problem-answer {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  color: #bfe4df;
  font-weight: 850;
}

.section {
  padding: 104px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 44px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  color: #566372;
  font-size: 1.08rem;
}

.section-heading.compact {
  max-width: 620px;
}

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

.feature-card {
  position: relative;
  min-height: 260px;
  padding: 28px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.feature-card::after {
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(46, 125, 123, 0.12), transparent 68%);
  content: "";
}

.feature-number {
  display: inline-flex;
  margin-bottom: 44px;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.feature-card h3 {
  margin-bottom: 12px;
}

.feature-card p {
  margin-bottom: 0;
  color: #5a6775;
}

.mission-section {
  color: white;
  background: linear-gradient(135deg, var(--navy), #173b5b);
}

.mission-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 76px;
}

.mission-mark {
  padding: 28px;
  background: rgba(247, 243, 234, 0.08);
  border: 1px solid rgba(247, 243, 234, 0.16);
  border-radius: 32px;
}

.mission-mark img {
  width: 100%;
  border-radius: 24px;
}

.mission-copy h2 {
  color: white;
}

.mission-copy > p:not(.eyebrow) {
  color: #d4dee8;
  font-size: 1.05rem;
}

.promise-list {
  display: grid;
  gap: 14px;
  margin-top: 28px;
}

.promise-list > div {
  padding: 17px 18px;
  background: rgba(247, 243, 234, 0.07);
  border: 1px solid rgba(247, 243, 234, 0.12);
  border-radius: 16px;
}

.promise-list strong,
.promise-list span {
  display: block;
}

.promise-list span {
  margin-top: 3px;
  color: #b9c6d2;
  font-size: 0.92rem;
}

.process-section {
  background: #efe9dc;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-grid article {
  padding: 28px;
  background: var(--cream);
  border: 1px solid rgba(13, 37, 64, 0.1);
  border-radius: var(--radius);
}

.process-grid article > span {
  display: grid;
  width: 44px;
  height: 44px;
  margin-bottom: 34px;
  place-items: center;
  color: white;
  background: var(--teal);
  border-radius: 14px;
  font-weight: 900;
}

.process-grid p {
  margin-bottom: 0;
  color: #5d6875;
}

.waitlist-section {
  color: white;
  background: var(--navy);
}

.waitlist-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: start;
  gap: 64px;
}

.waitlist-copy {
  position: sticky;
  top: 120px;
}

.waitlist-copy h2 {
  color: white;
}

.waitlist-copy > p:not(.eyebrow) {
  color: #d2dde7;
  font-size: 1.05rem;
}

.waitlist-note {
  margin-top: 30px;
  padding: 18px;
  color: #d4e4e2;
  background: rgba(46, 125, 123, 0.18);
  border: 1px solid rgba(143, 209, 204, 0.25);
  border-radius: 16px;
}

.waitlist-note strong {
  display: block;
  margin-bottom: 5px;
  color: white;
}

.tester-actions {
  margin-top: 24px;
}

.waitlist-form {
  padding: 30px;
  color: var(--ink);
  background: var(--cream);
  border-radius: 26px;
}

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

label {
  display: block;
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 850;
}

input,
select,
textarea {
  width: 100%;
  margin-top: 7px;
  padding: 14px 15px;
  color: var(--ink);
  background: white;
  border: 1px solid rgba(13, 37, 64, 0.18);
  border-radius: 12px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(46, 125, 123, 0.14);
}

.check-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-weight: 700;
}

.check-label input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
}

.form-note,
.form-status {
  margin: 12px 0 0;
  color: #667180;
  font-size: 0.8rem;
}

.form-status {
  min-height: 20px;
  color: var(--green);
  font-weight: 800;
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.65fr 1.35fr;
  align-items: start;
  gap: 64px;
}

.accordion {
  display: grid;
  gap: 12px;
}

details {
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid var(--border);
  border-radius: 16px;
}

summary {
  padding: 20px;
  color: var(--navy);
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin: 0;
  padding: 0 20px 20px;
  color: #586573;
}

.site-footer {
  padding: 44px 0;
  color: #c5d0db;
  background: #081c31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr auto;
  align-items: end;
  gap: 34px;
}

.brand-footer {
  color: white;
}

.footer-brand p {
  margin: 8px 0 0;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #dce8f0;
  text-decoration: none;
}

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

.copyright {
  margin-bottom: 0;
  text-align: right;
}

@media (max-width: 960px) {
  .hero-grid,
  .mission-grid,
  .waitlist-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

  .problem-grid {
    grid-template-columns: 1fr;
    padding: 34px 0;
    gap: 14px;
  }

  .problem-answer {
    padding: 18px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-left: 0;
  }

  .mission-mark {
    max-width: 520px;
    margin-inline: auto;
  }

  .waitlist-copy {
    position: static;
  }

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

  .copyright {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 18px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
  }

  .hero {
    padding-top: 56px;
  }

  .hero-grid {
    gap: 44px;
  }

  .section {
    padding: 78px 0;
  }

  .feature-grid,
  .process-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

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

  .copyright {
    grid-column: auto;
  }

  .preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-list {
    display: grid;
    gap: 8px;
  }

  .product-preview {
    border-radius: 22px;
  }

  .preview-body,
  .waitlist-form {
    padding: 20px;
  }

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

  .feature-card {
    min-height: auto;
  }

  .footer-grid {
    align-items: start;
  }
}


/* Formspree signup states */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.form-status.success {
  color: var(--green);
}

.form-status.error {
  color: #9b2c2c;
}
