:root {
  color-scheme: light;
  --ink: #12162d;
  --ink-soft: #272d4b;
  --ivory: #f6f0e6;
  --paper: #fffaf2;
  --coral: #ef755f;
  --coral-dark: #d95847;
  --lavender: #bab4d8;
  --line: rgba(18, 22, 45, 0.18);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --content-width: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--coral);
  outline-offset: 5px;
}

.site-header {
  align-items: center;
  color: #fff;
  display: flex;
  justify-content: space-between;
  left: 50%;
  max-width: var(--content-width);
  padding: 26px 0;
  position: absolute;
  top: 0;
  transform: translateX(-50%);
  width: calc(100% - 64px);
  z-index: 20;
}

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

.brand-mark {
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  display: inline-flex;
  font-family: var(--display);
  font-size: 22px;
  height: 42px;
  justify-content: center;
  line-height: 1;
  width: 42px;
}

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

.brand-name {
  font-family: var(--display);
  font-size: 22px;
  letter-spacing: 0.01em;
  line-height: 1;
}

.brand-product {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.17em;
  opacity: 0.72;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  font-size: 13px;
  font-weight: 650;
  gap: 30px;
}

.site-nav > a:not(.nav-cta) {
  opacity: 0.82;
  transition: opacity 180ms ease;
}

.site-nav > a:not(.nav-cta):hover {
  opacity: 1;
}

.nav-cta {
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 999px;
  padding: 11px 18px;
  transition:
    background 180ms ease,
    color 180ms ease;
}

.nav-cta:hover {
  background: #fff;
  color: var(--ink);
}

.hero {
  align-items: center;
  background: var(--ink);
  color: #fff;
  display: flex;
  min-height: 820px;
  overflow: hidden;
  position: relative;
}

.hero-image {
  background-image: url("./hero.jpg");
  background-position: 58% center;
  background-repeat: no-repeat;
  background-size: cover;
  inset: 0;
  position: absolute;
  transform: scale(1.035);
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-wash {
  background:
    linear-gradient(90deg, rgba(11, 15, 37, 0.99) 0%, rgba(11, 15, 37, 0.93) 34%, rgba(11, 15, 37, 0.47) 62%, rgba(11, 15, 37, 0.08) 100%),
    linear-gradient(0deg, rgba(11, 15, 37, 0.55) 0%, transparent 36%);
  inset: 0;
  position: absolute;
}

.hero-orbit {
  border: 1px solid rgba(235, 230, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
  position: absolute;
}

.hero-orbit-one {
  height: 500px;
  left: -270px;
  top: 120px;
  width: 500px;
}

.hero-orbit-two {
  height: 640px;
  left: -346px;
  top: 48px;
  width: 640px;
}

.hero-content {
  margin: 86px auto 0;
  max-width: var(--content-width);
  padding-right: 44%;
  position: relative;
  width: calc(100% - 64px);
  z-index: 3;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 11px;
  font-weight: 750;
  gap: 9px;
  letter-spacing: 0.18em;
  margin: 0 0 22px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--coral);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 117, 95, 0.18);
  height: 7px;
  width: 7px;
}

.hero h1 {
  font-family: var(--display);
  font-size: clamp(58px, 6vw, 88px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.96;
  margin: 0;
  max-width: 790px;
}

.hero h1 em {
  color: #d5d0ef;
  font-weight: 400;
}

.hero-lede {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.65;
  margin: 28px 0 30px;
  max-width: 570px;
}

.hero-actions {
  align-items: center;
  display: flex;
  gap: 26px;
}

.button {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 14px;
  font-weight: 750;
  gap: 20px;
  justify-content: center;
  letter-spacing: 0.01em;
  min-height: 54px;
  padding: 0 25px;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  background: var(--coral);
  box-shadow: 0 12px 36px rgba(239, 117, 95, 0.24);
  color: #fff;
}

.button-primary:hover {
  background: #f5826e;
  box-shadow: 0 16px 44px rgba(239, 117, 95, 0.32);
}

.text-link {
  border-bottom: 1px solid rgba(255, 255, 255, 0.46);
  font-size: 14px;
  font-weight: 650;
  padding-bottom: 4px;
}

.offer-strip {
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 48px 0 0;
  max-width: 610px;
  padding: 24px 0 0;
}

.offer-strip div {
  align-items: baseline;
  display: flex;
  gap: 9px;
}

.offer-strip div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
  padding-left: 22px;
}

.offer-strip dt {
  font-family: var(--display);
  font-size: 28px;
  line-height: 1;
}

.offer-strip dd {
  color: rgba(255, 255, 255, 0.61);
  font-size: 11px;
  line-height: 1.25;
  margin: 0;
  max-width: 80px;
}

.scroll-cue {
  align-items: center;
  bottom: 30px;
  display: flex;
  font-size: 10px;
  font-weight: 700;
  gap: 15px;
  left: 50%;
  letter-spacing: 0.14em;
  opacity: 0.68;
  position: absolute;
  text-transform: uppercase;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-line {
  background: rgba(255, 255, 255, 0.55);
  height: 1px;
  overflow: hidden;
  position: relative;
  width: 50px;
}

.scroll-line::after {
  animation: travel 2.2s ease-in-out infinite;
  background: #fff;
  content: "";
  height: 1px;
  left: -100%;
  position: absolute;
  width: 100%;
}

@keyframes travel {
  0% {
    transform: translateX(0);
  }
  65%,
  100% {
    transform: translateX(200%);
  }
}

.truth-section,
.process-section,
.method-section {
  margin: 0 auto;
  max-width: var(--content-width);
  padding-left: 32px;
  padding-right: 32px;
}

.truth-section {
  padding-bottom: 150px;
  padding-top: 150px;
}

.section-label {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  margin-bottom: 36px;
  text-transform: uppercase;
}

.truth-grid {
  display: grid;
  gap: 12%;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.truth-grid h2,
.section-heading h2,
.method-intro h2,
.privacy-card h2,
.final-cta h2 {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.035em;
  margin: 0;
}

.truth-grid h2 {
  font-size: clamp(48px, 5.4vw, 78px);
  line-height: 1.03;
}

.truth-copy {
  align-self: end;
  color: #4f5367;
  font-size: 16px;
  line-height: 1.75;
  padding-bottom: 4px;
}

.truth-copy p {
  margin: 0 0 20px;
}

.truth-copy .quiet-note {
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 0;
  padding-top: 20px;
}

.process-section {
  border-top: 1px solid var(--line);
  padding-bottom: 150px;
  padding-top: 120px;
}

.section-heading {
  align-items: end;
  display: flex;
  justify-content: space-between;
  margin-bottom: 62px;
}

.section-heading .section-label {
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(44px, 4.5vw, 66px);
  max-width: 660px;
}

.section-heading > p {
  color: #666a7b;
  line-height: 1.65;
  margin: 0 0 7px;
  max-width: 330px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.process-card {
  border-left: 1px solid var(--line);
  min-height: 330px;
  padding: 26px 30px;
  position: relative;
}

.process-card:last-child {
  border-right: 1px solid var(--line);
}

.process-card-accent {
  background: var(--coral);
  border-color: transparent;
  color: #fff;
  transform: translateY(-18px);
}

.step-number {
  color: var(--coral-dark);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.process-card-accent .step-number {
  color: rgba(255, 255, 255, 0.76);
}

.process-card h3 {
  font-family: var(--display);
  font-size: 29px;
  font-weight: 400;
  line-height: 1.1;
  margin: 154px 0 16px;
}

.process-card p {
  color: #6b6e7e;
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.process-card-accent p {
  color: rgba(255, 255, 255, 0.82);
}

.method-section {
  display: grid;
  gap: 9%;
  grid-template-columns: minmax(0, 0.8fr) minmax(520px, 1.2fr);
  padding-bottom: 150px;
}

.method-intro {
  align-self: center;
}

.method-intro .section-label {
  margin-bottom: 22px;
}

.method-intro h2 {
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1;
}

.method-intro > p {
  color: #636777;
  line-height: 1.75;
  margin: 28px 0 0;
  max-width: 440px;
}

.method-panel {
  background: var(--ink);
  color: #fff;
  padding: 50px;
}

.method-stat {
  align-items: end;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  display: flex;
  gap: 22px;
  padding-bottom: 38px;
}

.method-stat strong {
  color: var(--coral);
  font-family: var(--display);
  font-size: 80px;
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.75;
}

.method-stat span {
  color: rgba(255, 255, 255, 0.64);
  font-size: 13px;
  line-height: 1.45;
  max-width: 170px;
}

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

.method-list li {
  align-items: start;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  gap: 18px;
  grid-template-columns: 28px 1fr;
  padding: 25px 0;
}

.method-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.method-icon {
  color: var(--coral);
  font-size: 19px;
  line-height: 1;
}

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

.method-list strong {
  font-size: 14px;
  margin-bottom: 6px;
}

.method-list div > span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.55;
}

.privacy-section {
  background:
    linear-gradient(rgba(234, 225, 211, 0.86), rgba(234, 225, 211, 0.86)),
    radial-gradient(circle at 74% 28%, rgba(239, 117, 95, 0.3), transparent 35%);
  padding: 120px 32px;
}

.privacy-card {
  border: 1px solid rgba(18, 22, 45, 0.22);
  margin: 0 auto;
  max-width: 1000px;
  padding: 72px;
  position: relative;
}

.privacy-card::before {
  background: var(--coral);
  content: "";
  height: 1px;
  left: -28px;
  position: absolute;
  top: 46px;
  width: 55px;
}

.privacy-kicker {
  color: var(--coral-dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.privacy-card h2 {
  font-size: clamp(43px, 4.5vw, 64px);
  line-height: 1;
  margin-top: 23px;
  max-width: 650px;
}

.privacy-card p {
  color: #595d6d;
  line-height: 1.75;
  margin: 28px 0 30px;
  max-width: 660px;
}

.privacy-card a {
  border-bottom: 1px solid var(--ink);
  display: inline-flex;
  font-size: 13px;
  font-weight: 750;
  gap: 30px;
  padding-bottom: 5px;
}

.final-cta {
  align-items: center;
  background: #171c39;
  color: #fff;
  display: flex;
  min-height: 600px;
  overflow: hidden;
  padding: 100px 32px;
  position: relative;
}

.final-moon {
  color: rgba(255, 255, 255, 0.035);
  font-family: var(--display);
  font-size: 720px;
  left: 51%;
  line-height: 0.8;
  position: absolute;
  top: -12%;
  transform: translateX(-50%);
}

.final-cta-content {
  margin: 0 auto;
  max-width: 800px;
  position: relative;
  text-align: center;
}

.final-cta .eyebrow {
  justify-content: center;
}

.final-cta h2 {
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.98;
}

.final-cta-content > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.67);
  font-size: 17px;
  line-height: 1.6;
  margin: 26px auto 30px;
  max-width: 520px;
}

.button-light {
  background: #fff;
  color: var(--ink);
}

.button-light:hover {
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.26);
}

.site-footer {
  align-items: center;
  background: #0e1227;
  color: rgba(255, 255, 255, 0.58);
  display: flex;
  font-size: 11px;
  gap: 34px;
  justify-content: space-between;
  letter-spacing: 0.05em;
  padding: 26px max(32px, calc((100vw - var(--content-width)) / 2));
}

.footer-brand {
  align-items: center;
  color: #fff;
  display: flex;
  font-family: var(--display);
  font-size: 15px;
  gap: 9px;
  letter-spacing: 0;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  transition: color 180ms ease;
}

.site-footer a:hover {
  color: #fff;
}

.reveal {
  opacity: 1;
  transform: translateY(0);
}

.reveal.is-pending {
  opacity: 0;
  transform: translateY(28px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 700ms ease,
    transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@media (max-width: 980px) {
  .site-nav > a:not(.nav-cta) {
    display: none;
  }

  .hero {
    min-height: 780px;
  }

  .hero-content {
    padding-right: 22%;
  }

  .hero-wash {
    background:
      linear-gradient(90deg, rgba(11, 15, 37, 0.98) 0%, rgba(11, 15, 37, 0.79) 58%, rgba(11, 15, 37, 0.26) 100%),
      linear-gradient(0deg, rgba(11, 15, 37, 0.62) 0%, transparent 45%);
  }

  .truth-grid,
  .method-section {
    gap: 60px;
    grid-template-columns: 1fr;
  }

  .truth-copy {
    max-width: 620px;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 24px;
  }

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

  .process-card:nth-child(3) {
    border-top: 1px solid var(--line);
  }

  .process-card:last-child {
    border-right: 0;
  }

  .process-card-accent {
    transform: none;
  }

  .method-panel {
    max-width: 720px;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding: 20px 0;
    width: calc(100% - 38px);
  }

  .brand-mark {
    font-size: 18px;
    height: 36px;
    width: 36px;
  }

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

  .brand-product {
    font-size: 8px;
  }

  .site-nav {
    gap: 0;
  }

  .nav-cta {
    font-size: 11px;
    padding: 10px 13px;
  }

  .hero {
    align-items: end;
    min-height: 790px;
    padding-bottom: 82px;
  }

  .hero-image {
    background-position: 64% center;
  }

  .hero-wash {
    background:
      linear-gradient(0deg, rgba(11, 15, 37, 0.99) 0%, rgba(11, 15, 37, 0.84) 52%, rgba(11, 15, 37, 0.21) 100%),
      linear-gradient(90deg, rgba(11, 15, 37, 0.64) 0%, transparent 100%);
  }

  .hero-content {
    margin: 0 auto;
    padding: 0;
    width: calc(100% - 38px);
  }

  .hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .hero-lede {
    font-size: 15px;
    line-height: 1.55;
    margin: 21px 0 24px;
    max-width: 440px;
  }

  .hero-actions {
    align-items: start;
    flex-direction: column;
    gap: 18px;
  }

  .offer-strip {
    gap: 14px;
    margin-top: 34px;
    padding-top: 20px;
  }

  .offer-strip div,
  .offer-strip div + div {
    align-items: start;
    display: grid;
    gap: 5px;
    padding-left: 12px;
  }

  .offer-strip div:first-child {
    padding-left: 0;
  }

  .offer-strip dt {
    font-size: 24px;
  }

  .scroll-cue {
    display: none;
  }

  .truth-section,
  .process-section,
  .method-section {
    padding-left: 19px;
    padding-right: 19px;
  }

  .truth-section {
    padding-bottom: 96px;
    padding-top: 96px;
  }

  .truth-grid {
    gap: 38px;
  }

  .truth-grid h2 {
    font-size: 46px;
  }

  .process-section {
    padding-bottom: 96px;
    padding-top: 84px;
  }

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

  .process-card {
    border-left: 0;
    border-top: 1px solid var(--line);
    min-height: 230px;
    padding: 25px 5px;
  }

  .process-card:last-child {
    border-right: 0;
  }

  .process-card h3 {
    margin-top: 82px;
  }

  .process-card-accent {
    margin: 0 -19px;
    padding-left: 24px;
    padding-right: 24px;
  }

  .method-section {
    gap: 44px;
    padding-bottom: 96px;
  }

  .method-panel {
    margin: 0 -19px;
    padding: 38px 24px;
  }

  .method-stat strong {
    font-size: 67px;
  }

  .privacy-section {
    padding: 80px 19px;
  }

  .privacy-card {
    padding: 52px 27px;
  }

  .privacy-card::before {
    left: -10px;
    width: 27px;
  }

  .final-cta {
    min-height: 540px;
    padding: 80px 19px;
  }

  .final-cta h2 {
    font-size: 53px;
  }

  .site-footer {
    align-items: start;
    flex-direction: column;
    gap: 13px;
    padding: 28px 19px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
