:root {
  --teal: #0a5869;
  --teal-deep: #063f4a;
  --rose: #c6a5a0;
  --rose-deep: #a87670;
  --cream: #f7f1e9;
  --warm: #efe2d4;
  --sage: #7f8d7a;
  --ink: #243238;
  --muted: #647174;
  --white: #fffdf9;
  --shadow: 0 24px 80px rgba(12, 32, 37, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Jost", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.65;
  letter-spacing: 0;
}

body.modal-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  color: var(--teal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-style: italic;
  font-weight: 600;
  line-height: 0.96;
  letter-spacing: 0;
}

h1 {
  max-width: 820px;
  margin-bottom: 0.18em;
  font-size: 5.8rem;
}

h2 {
  margin-bottom: 0.55em;
  font-size: 3.7rem;
}

h3 {
  margin-bottom: 0.7em;
  font-size: 2rem;
}

p {
  margin-bottom: 1.25rem;
}

.skip-link {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 50;
  transform: translateY(-180%);
  border-radius: 6px;
  padding: 0.7rem 0.9rem;
  background: var(--white);
  color: var(--teal);
  font-weight: 700;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.15rem 4.2rem;
  color: var(--white);
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.solid {
  background: rgba(255, 253, 249, 0.96);
  color: var(--teal);
  box-shadow: 0 12px 40px rgba(16, 49, 56, 0.08);
}

.site-header.is-scrolled {
  padding-top: 0.82rem;
  padding-bottom: 0.82rem;
}

.brand-link,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-style: italic;
  font-weight: 600;
  text-decoration: none;
}

.brand-mark {
  position: relative;
  width: 1.55rem;
  height: 2rem;
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  border-radius: 999px;
}

.brand-mark::before {
  top: 0;
  width: 0.16rem;
  height: 2rem;
  background: currentColor;
}

.brand-mark::after {
  top: 0.58rem;
  width: 1.32rem;
  height: 1.32rem;
  border-top: 0.16rem solid var(--rose);
  border-left: 0.16rem solid var(--rose);
  transform: translateX(-50%) rotate(45deg);
}

.site-nav,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.site-nav a,
.site-footer a,
.site-footer button {
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a[aria-current="page"] {
  color: var(--rose);
}

.nav-cta {
  min-height: 2.45rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  padding: 0.38rem 0.95rem;
  background: transparent;
  color: inherit;
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  display: grid;
  min-height: 88svh;
  overflow: hidden;
  background: var(--teal-deep);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(5, 32, 38, 0.82) 0%, rgba(5, 32, 38, 0.62) 38%, rgba(5, 32, 38, 0.2) 72%),
    linear-gradient(0deg, rgba(5, 32, 38, 0.4), rgba(5, 32, 38, 0.08) 42%);
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  width: min(100% - 3rem, 1180px);
  min-height: 88svh;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  padding: 7rem 0 4.8rem;
  color: var(--white);
}

.hero h1 {
  color: var(--white);
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.9rem;
  color: var(--rose);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-statement {
  max-width: 780px;
  margin-bottom: 0.8rem;
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3.7rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1;
}

.hero-subhead {
  max-width: 630px;
  margin-bottom: 0.9rem;
  color: var(--warm);
  font-size: 1.35rem;
  line-height: 1.42;
}

.hero-copy {
  max-width: 670px;
  color: rgba(255, 253, 249, 0.92);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.75rem;
}

.hero-actions p {
  margin: 0;
  color: var(--rose);
  font-size: 0.94rem;
  font-weight: 600;
}

.button {
  display: inline-flex;
  min-height: 3.1rem;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.72rem 1.45rem;
  font-size: 0.88rem;
  font-weight: 800;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

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

.button-light {
  background: var(--white);
  color: var(--teal);
  box-shadow: 0 14px 34px rgba(5, 32, 38, 0.16);
}

.button-teal {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 16px 36px rgba(10, 88, 105, 0.18);
}

.button.full-width {
  width: 100%;
}

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

.section-inner {
  width: min(100% - 3rem, 1180px);
  margin: 0 auto;
}

.section-inner.narrow {
  width: min(100% - 3rem, 880px);
}

.mirror-section {
  background: var(--teal);
  color: var(--cream);
  padding: 7.2rem 0;
}

.mirror-section .section-kicker {
  color: var(--rose);
}

.mirror-copy {
  max-width: 840px;
}

.mirror-copy p {
  font-size: 1.14rem;
}

.mirror-copy p:nth-child(3),
.brand-line {
  color: var(--white);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.25rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.1;
}

.reveal-section {
  background: var(--white);
  padding: 7rem 0 6.4rem;
  text-align: center;
}

.reveal-inner {
  max-width: 920px;
}

.logo-lockup {
  width: min(100%, 520px);
  max-height: 250px;
  object-fit: contain;
  margin: 0 auto 2.1rem;
}

.section-kicker.rose {
  color: var(--rose-deep);
}

.intro-copy {
  max-width: 740px;
  margin: 0 auto;
}

.intro-copy p {
  color: var(--ink);
}

.intro-copy .brand-line {
  margin-top: 2rem;
  color: var(--teal);
}

.reveal-section::after {
  display: block;
  width: min(100% - 3rem, 920px);
  height: 1px;
  margin: 5rem auto 0;
  background: var(--rose);
  content: "";
}

.pillars-section {
  background: var(--cream);
  padding: 6.7rem 0 6.5rem;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 3rem;
  align-items: end;
  margin-bottom: 3rem;
}

.section-heading-row.compact {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: 2.3rem;
}

.section-heading-row p {
  margin-bottom: 0;
  color: var(--muted);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.pillar-card,
.fit-panel {
  border: 1px solid rgba(10, 88, 105, 0.14);
  border-radius: 6px;
  background: var(--white);
}

.pillar-card {
  min-height: 24rem;
  padding: 2rem;
}

.pillar-card h3 {
  color: var(--teal);
}

.pillar-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.pillar-icon {
  position: relative;
  display: inline-flex;
  width: 3.2rem;
  height: 3.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  border: 1px solid var(--rose);
  border-radius: 50%;
  color: var(--teal);
}

.camera-icon::before {
  width: 1.55rem;
  height: 1.08rem;
  border: 2px solid currentColor;
  border-radius: 5px;
  content: "";
}

.camera-icon::after {
  position: absolute;
  width: 0.48rem;
  height: 0.48rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  content: "";
}

.aperture-icon::before,
.spark-icon::before,
.spark-icon::after {
  position: absolute;
  content: "";
}

.aperture-icon::before {
  width: 1.38rem;
  height: 1.38rem;
  border: 2px solid currentColor;
  border-radius: 50%;
  box-shadow:
    inset 0.36rem 0 0 rgba(198, 165, 160, 0.72),
    inset -0.36rem 0 0 rgba(198, 165, 160, 0.72);
}

.spark-icon::before,
.spark-icon::after {
  width: 1.45rem;
  height: 2px;
  border-radius: 99px;
  background: currentColor;
}

.spark-icon::after {
  transform: rotate(90deg);
}

.read-more-line {
  margin: 2rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.read-more-line a {
  color: var(--teal);
  font-weight: 700;
}

.closing-cta {
  background: var(--warm);
  padding: 6.4rem 0;
  text-align: center;
}

.closing-cta p {
  color: var(--teal-deep);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.6rem;
  font-style: italic;
  font-weight: 600;
  line-height: 1.12;
}

.closing-cta p + p {
  margin-bottom: 2rem;
  color: var(--ink);
  font-family: "Jost", Arial, sans-serif;
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 400;
  line-height: 1.65;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.4rem 4.2rem;
  background: var(--teal-deep);
  color: var(--cream);
}

.site-footer p {
  margin: 0;
  color: rgba(247, 241, 233, 0.76);
  font-size: 0.95rem;
}

.site-footer nav button {
  padding: 0;
  cursor: pointer;
}

.page-hero {
  padding: 11rem 0 5.4rem;
  background: var(--cream);
}

.page-hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 3rem;
  align-items: end;
}

.page-hero h1 {
  color: var(--teal);
  font-size: 5rem;
}

.page-hero p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.2rem;
}

.fit-section {
  background: var(--white);
  padding: 6.4rem 0;
}

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

.fit-panel {
  min-height: 28rem;
  padding: 2.2rem;
}

.fit-positive {
  border-color: rgba(10, 88, 105, 0.2);
  background: #fbf6ee;
}

.fit-negative {
  border-color: rgba(168, 118, 112, 0.28);
  background: #f8eeee;
}

.fit-panel ul {
  display: grid;
  gap: 0.9rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fit-panel li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--ink);
}

.fit-panel li::before {
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--rose);
  content: "";
}

.fit-positive li::before {
  background: var(--teal);
}

.founder-section {
  background: var(--teal);
  color: var(--cream);
  padding: 7rem 0;
}

.founder-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  gap: 4rem;
  align-items: center;
}

.founder-copy h2 {
  color: var(--white);
}

.founder-copy p {
  color: rgba(247, 241, 233, 0.88);
}

.founder-mark {
  position: relative;
  display: flex;
  min-height: 34rem;
  align-items: center;
  justify-content: center;
  border-left: 1px solid rgba(247, 241, 233, 0.2);
  border-right: 1px solid rgba(247, 241, 233, 0.2);
}

.founder-mark::before {
  position: absolute;
  width: 0.38rem;
  height: 24rem;
  border-radius: 999px;
  background: var(--cream);
  content: "";
}

.founder-mark span,
.founder-mark span::before,
.founder-mark span::after {
  position: absolute;
  width: 16rem;
  height: 0.34rem;
  border-radius: 999px;
  background: var(--rose);
  content: "";
}

.founder-mark span {
  transform: rotate(33deg);
}

.founder-mark span::before {
  top: -5rem;
  left: -1rem;
  opacity: 0.65;
}

.founder-mark span::after {
  top: 5rem;
  left: 1rem;
  opacity: 0.65;
}

.details-section {
  background: var(--cream);
  padding: 6.6rem 0;
}

.details-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.55fr);
  gap: 4rem;
  align-items: start;
}

.details-list {
  display: grid;
  gap: 0;
  margin: 0;
  border: 1px solid rgba(10, 88, 105, 0.18);
  border-radius: 6px;
  background: var(--white);
}

.details-list div {
  display: grid;
  grid-template-columns: minmax(130px, 0.44fr) minmax(0, 0.56fr);
  gap: 1rem;
  padding: 1.05rem 1.2rem;
}

.details-list div + div {
  border-top: 1px solid rgba(10, 88, 105, 0.12);
}

.details-list dt {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.details-list dd {
  margin: 0;
  color: var(--teal);
  font-weight: 600;
}

.about-close {
  background: var(--white);
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-shell.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 30, 36, 0.68);
}

.waitlist-modal {
  position: relative;
  width: min(100%, 560px);
  max-height: min(92svh, 760px);
  overflow: auto;
  border-radius: 8px;
  padding: 3rem;
  background: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow);
}

.waitlist-modal h2 {
  margin-bottom: 0.6rem;
  color: var(--white);
  font-size: 3.1rem;
}

.waitlist-modal p {
  color: rgba(255, 253, 249, 0.88);
}

.section-kicker.light {
  color: var(--rose);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  width: 2.6rem;
  height: 2.6rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 253, 249, 0.38);
  border-radius: 50%;
  background: transparent;
}

.modal-close span,
.modal-close span::after {
  position: absolute;
  width: 1rem;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.modal-close span {
  transform: rotate(45deg);
}

.modal-close span::after {
  left: 0;
  transform: rotate(90deg);
}

.waitlist-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.5rem;
}

.waitlist-form label {
  display: grid;
  gap: 0.35rem;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
}

.waitlist-form input {
  width: 100%;
  min-height: 3.1rem;
  border: 1px solid rgba(255, 253, 249, 0.38);
  border-radius: 6px;
  padding: 0.72rem 0.85rem;
  background: rgba(255, 253, 249, 0.1);
  color: var(--white);
  outline: none;
}

.waitlist-form input:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 253, 249, 0.2);
}

.form-note {
  margin: 0.1rem 0 0;
  color: rgba(255, 253, 249, 0.8);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.18rem;
  font-style: italic;
  line-height: 1.3;
}

.form-success {
  margin: 0.25rem 0 0;
  border-left: 3px solid var(--rose);
  padding-left: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.form-error {
  margin: 0.25rem 0 0;
  border-left: 3px solid var(--rose);
  padding-left: 0.9rem;
  color: var(--white);
  font-weight: 700;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

:focus-visible {
  outline: 3px solid var(--rose);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  body {
    font-size: 17px;
  }

  h1 {
    font-size: 4.35rem;
  }

  h2 {
    font-size: 3.05rem;
  }

  .site-header {
    padding: 1rem 1.5rem;
  }

  .hero-content {
    padding-top: 7.2rem;
  }

  .hero-statement {
    font-size: 3.05rem;
  }

  .section-heading-row,
  .page-hero-inner,
  .founder-layout,
  .details-layout {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .fit-grid {
    grid-template-columns: 1fr;
  }

  .pillar-card,
  .fit-panel {
    min-height: auto;
  }

  .founder-layout {
    gap: 2.2rem;
  }

  .founder-mark {
    min-height: 17rem;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 2.2rem 1.5rem;
  }
}

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2,
  .page-hero h1,
  .waitlist-modal h2 {
    font-size: 2.45rem;
  }

  h3 {
    font-size: 1.72rem;
  }

  .site-header {
    position: absolute;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.92rem 1rem;
  }

  .site-header.is-scrolled,
  .site-header.solid {
    background: transparent;
    box-shadow: none;
    color: var(--white);
  }

  .about-page .site-header.solid {
    background: var(--teal);
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 0.7rem;
  }

  .site-nav a,
  .site-nav button {
    font-size: 0.78rem;
  }

  .nav-cta {
    min-height: 2.25rem;
    padding-right: 0.78rem;
    padding-left: 0.78rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 2rem, 1180px);
    min-height: 91svh;
    padding: 9.3rem 0 3.4rem;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(5, 32, 38, 0.86), rgba(5, 32, 38, 0.44)),
      linear-gradient(0deg, rgba(5, 32, 38, 0.54), rgba(5, 32, 38, 0.08) 44%);
  }

  .hero-image {
    object-position: 60% center;
  }

  .hero-statement {
    font-size: 2.38rem;
  }

  .hero-subhead {
    font-size: 1.12rem;
  }

  .button {
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .hero-actions {
    align-items: stretch;
  }

  .section-inner,
  .section-inner.narrow {
    width: min(100% - 2rem, 1180px);
  }

  .mirror-section,
  .reveal-section,
  .pillars-section,
  .fit-section,
  .founder-section,
  .details-section,
  .closing-cta {
    padding-top: 4.6rem;
    padding-bottom: 4.6rem;
  }

  .mirror-copy p,
  .closing-cta p {
    font-size: 1.6rem;
  }

  .mirror-copy p:not(:nth-child(3)) {
    font-size: 1rem;
  }

  .brand-line {
    font-size: 1.72rem;
  }

  .logo-lockup {
    max-height: 180px;
  }

  .pillar-card,
  .fit-panel {
    padding: 1.45rem;
  }

  .page-hero {
    padding-top: 11.2rem;
    padding-bottom: 4rem;
  }

  .details-list div {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .waitlist-modal {
    padding: 2.35rem 1.25rem 1.45rem;
  }

  .site-footer nav {
    flex-wrap: wrap;
  }
}
