:root {
  --ink: #173c36;
  --ink-soft: #46635e;
  --paper: #f4f1e8;
  --paper-deep: #e9e4d8;
  --cream: #fffdf7;
  --mint: #bce7d2;
  --mint-bright: #72d4aa;
  --peach: #f3a982;
  --orange: #e66c36;
  --line: rgba(23, 60, 54, 0.16);
  --shadow: 0 28px 80px rgba(23, 60, 54, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.6;
}

a {
  color: inherit;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: white;
  transform: translateY(-110%);
}

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

.site-header {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.wordmark-mark {
  width: 23px;
  height: 23px;
  border: 5px solid var(--ink);
  border-radius: 8px;
  transform: rotate(-8deg);
  box-shadow: inset 0 -5px 0 var(--mint-bright);
}

.concept-label {
  padding: 3px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: "DM Sans", sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 5px;
}

.hero {
  width: min(1180px, calc(100% - 48px));
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0 110px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  font-family: "Manrope", sans-serif;
  line-height: 1.06;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(3.6rem, 7.4vw, 6.8rem);
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 400;
}

h2 {
  margin: 0;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  letter-spacing: -0.055em;
}

h3 {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.hero-summary {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(23, 60, 54, 0.13);
}

.button-primary {
  background: var(--ink);
  color: white;
}

.button-secondary {
  background: transparent;
}

.status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 24px;
  color: var(--ink-soft);
  font-size: 0.78rem;
  font-weight: 600;
}

.status-line span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(230, 108, 54, 0.13);
}

.watch-stage {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit-one {
  width: 480px;
  height: 480px;
}

.orbit-two {
  width: 350px;
  height: 350px;
  border-style: dashed;
}

.watch {
  position: relative;
  z-index: 2;
  width: 260px;
  padding: 10px;
  border: 2px solid #213a36;
  border-radius: 66px;
  background: #17221f;
  box-shadow: var(--shadow), inset 0 0 0 2px rgba(255, 255, 255, 0.14);
  transform: rotate(5deg);
}

.watch::before,
.watch::after {
  content: "";
  position: absolute;
  left: 50%;
  z-index: -1;
  width: 118px;
  height: 145px;
  border: 2px solid rgba(23, 60, 54, 0.7);
  background: var(--mint);
  transform: translateX(-50%);
}

.watch::before {
  top: -126px;
  border-radius: 36px 36px 8px 8px;
}

.watch::after {
  bottom: -126px;
  border-radius: 8px 8px 36px 36px;
}

.watch-crown {
  position: absolute;
  top: 105px;
  right: -17px;
  width: 14px;
  height: 40px;
  border-radius: 0 8px 8px 0;
  background: #31413e;
}

.watch-screen {
  min-height: 370px;
  padding: 18px;
  overflow: hidden;
  border-radius: 55px;
  background: #0b1110;
  color: white;
}

.screen-topline {
  display: flex;
  justify-content: space-between;
  padding: 2px 8px 14px;
  font-size: 0.62rem;
  font-weight: 700;
}

.signal {
  width: 18px;
  height: 8px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 5px;
}

.cover {
  width: 126px;
  height: 142px;
  margin: 0 auto;
  padding: 13px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 10px;
  background: linear-gradient(145deg, #eabf91 0%, #ec8656 56%, #d64932 100%);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.35);
  text-align: left;
}

.cover-kicker,
.cover-author {
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.cover-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.08em;
}

.track-copy {
  margin-top: 13px;
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.25;
}

.track-copy strong {
  font-size: 0.8rem;
}

.track-copy span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.56rem;
}

.progress {
  height: 3px;
  margin: 13px 9px;
  overflow: hidden;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.2);
}

.progress span {
  display: block;
  width: 62%;
  height: 100%;
  background: var(--mint-bright);
}

.controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 17px;
  font-size: 0.6rem;
  font-weight: 700;
}

.play {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: white;
  color: #0b1110;
  font-size: 0.86rem;
}

.loan-pill {
  width: max-content;
  margin: 14px auto 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(114, 212, 170, 0.15);
  color: var(--mint-bright);
  font-size: 0.54rem;
  font-weight: 700;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  padding: 32px max(24px, calc((100vw - 1180px) / 6));
  display: flex;
  flex-direction: column;
  border-right: 1px solid var(--line);
}

.proof-strip div:last-child {
  border-right: 0;
}

.proof-strip strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.05rem;
}

.proof-strip span {
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0;
}

.problem-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
}

.large-copy {
  max-width: 600px;
  color: var(--ink-soft);
  font-size: 1.2rem;
}

.large-copy p:first-child {
  margin-top: 42px;
}

.experience-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--ink);
  color: white;
}

.section-heading {
  max-width: 850px;
}

.journey {
  margin: 64px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  list-style: none;
}

.journey li {
  min-height: 260px;
  padding: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.journey li:first-child {
  border-left: 0;
}

.step-number,
.principle-mark {
  display: block;
  margin-bottom: 70px;
  color: var(--mint-bright);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.journey p {
  color: rgba(255, 255, 255, 0.67);
  font-size: 0.84rem;
  line-height: 1.5;
}

.principles-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
}

.principles-intro > p:last-child {
  max-width: 470px;
  margin-top: 30px;
  color: var(--ink-soft);
}

.principle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.principle-grid article {
  min-height: 260px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.principle-grid .principle-mark {
  margin-bottom: 60px;
  color: var(--orange);
}

.principle-grid p {
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.request-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1180px) / 2));
  padding-left: max(24px, calc((100vw - 1180px) / 2));
  background: var(--paper-deep);
}

.request-copy {
  display: grid;
  grid-template-columns: 0.65fr 1.1fr 0.8fr;
  gap: 45px;
  align-items: start;
}

.request-copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
}

.request-cards {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.request-cards article {
  padding: 42px;
  border-radius: 24px;
  background: var(--cream);
  box-shadow: 0 12px 38px rgba(23, 60, 54, 0.06);
}

.request-cards article:first-child {
  background: var(--mint);
}

.card-label {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 10px;
  border: 1px solid rgba(23, 60, 54, 0.25);
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.request-cards ul {
  margin: 25px 0 0;
  padding-left: 20px;
  color: var(--ink-soft);
}

.request-cards li {
  margin: 12px 0;
  padding-left: 5px;
}

.status-section {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}

.status-list {
  border-top: 1px solid var(--line);
}

.status-list p {
  margin: 0;
  padding: 20px 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.status-list span {
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.closing-section {
  padding: 135px 24px;
  background: var(--peach);
  text-align: center;
}

.closing-section h2 {
  max-width: 900px;
  margin: 0 auto;
}

.closing-section > p:not(.eyebrow) {
  max-width: 650px;
  margin: 28px auto 0;
}

.closing-actions {
  justify-content: center;
}

footer {
  padding: 55px max(24px, calc((100vw - 1180px) / 2));
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 34px 60px;
  background: #102a26;
  color: white;
}

footer strong {
  font-family: "Manrope", sans-serif;
  font-size: 1.25rem;
}

footer p {
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
}

.footer-links {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 22px;
  font-size: 0.78rem;
}

.legal-note {
  grid-column: 1 / -1;
  max-width: 900px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.55;
}

@media (max-width: 900px) {
  .hero,
  .problem-section,
  .principles-section,
  .status-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-summary {
    margin-right: auto;
    margin-left: auto;
  }

  .hero-actions,
  .status-line {
    justify-content: center;
  }

  .watch-stage {
    margin-top: 50px;
  }

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

  .journey li:first-child,
  .journey li:nth-child(3),
  .journey li:nth-child(5) {
    border-left: 0;
  }

  .request-copy {
    grid-template-columns: 1fr;
  }

  .request-copy > p:last-child {
    max-width: 600px;
  }
}

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

  .site-header {
    width: min(100% - 32px, 1180px);
  }

  nav {
    display: none;
  }

  .hero,
  .section {
    width: min(100% - 32px, 1180px);
  }

  .hero {
    min-height: auto;
    padding-bottom: 85px;
  }

  h1 {
    font-size: clamp(3.1rem, 17vw, 5rem);
  }

  .watch-stage {
    min-height: 500px;
    transform: scale(0.86);
  }

  .proof-strip,
  .journey,
  .principle-grid,
  .request-cards,
  footer {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip div:last-child {
    border-bottom: 0;
  }

  .section,
  .experience-section,
  .request-section {
    padding-top: 90px;
    padding-bottom: 90px;
  }

  .journey li,
  .journey li:nth-child(n) {
    min-height: 220px;
    border-left: 0;
  }

  .step-number {
    margin-bottom: 45px;
  }

  .principle-grid article {
    min-height: 220px;
  }

  .request-cards article {
    padding: 30px;
  }

  .status-list p {
    grid-template-columns: 64px 1fr;
  }

  .footer-links {
    justify-content: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

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

  .button {
    transition: none;
  }
}
