@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  src: url("assets/fonts/Inter-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Noto Serif Display";
  src: url("assets/fonts/NotoSerif-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #22382a;
  --ink-2: #3f5645;
  --leaf: #2f5a40;
  --leaf-deep: #1f3f2c;
  --gold: #d8a63c;
  --gold-soft: #f3d58d;
  --paper: #fbf8f0;
  --paper-2: #f3f1e8;
  --white: #fffdf8;
  --muted: #758073;
  --line: rgba(35, 56, 42, 0.12);
  --shadow: 0 24px 70px rgba(31, 63, 44, 0.18);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 10% 0%, rgba(216, 166, 60, 0.16), transparent 32rem),
    radial-gradient(circle at 92% 10%, rgba(47, 90, 64, 0.16), transparent 36rem),
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 44%, #f7f4ea 100%);
  font-family: "Inter", Arial, sans-serif;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  z-index: 30;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 32px));
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 12px 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 18px 48px rgba(31, 63, 44, 0.12);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  background: rgba(255, 253, 248, 0.94);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(31, 63, 44, 0.16);
}

.brand span {
  display: grid;
  gap: 1px;
}

.brand strong {
  font-size: 15px;
  line-height: 1;
  color: var(--ink);
}

.brand em {
  font-size: 11px;
  line-height: 1.2;
  color: var(--muted);
  font-style: normal;
}

.site-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px;
  border-radius: 999px;
  background: rgba(47, 90, 64, 0.06);
}

.site-nav a,
.header-link {
  border-radius: 999px;
  color: var(--ink-2);
  font-size: 13px;
  font-weight: 600;
}

.site-nav a {
  padding: 10px 14px;
}

.site-nav a:hover,
.header-link:hover {
  background: rgba(47, 90, 64, 0.1);
  color: var(--leaf-deep);
}

.header-link {
  padding: 12px 18px;
  color: var(--white);
  background: var(--leaf);
}

.header-link:hover {
  color: var(--white);
  background: var(--leaf-deep);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: var(--leaf);
  cursor: pointer;
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(460px, 1.1fr);
  gap: 54px;
  align-items: center;
  min-height: 100svh;
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 128px 0 72px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 105px;
  left: -9%;
  width: 48%;
  height: 62%;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(216, 166, 60, 0.2), rgba(255, 253, 248, 0));
  content: "";
  filter: blur(2px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  font-family: "Noto Serif Display", Georgia, serif;
  color: var(--ink);
  line-height: 1.02;
}

h1 {
  margin-bottom: 20px;
  font-size: clamp(64px, 8vw, 128px);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(36px, 4.6vw, 72px);
}

h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

.hero-lede {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.56;
}

.hero-actions,
.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: var(--leaf);
  box-shadow: 0 14px 30px rgba(47, 90, 64, 0.22);
}

.button-primary:hover {
  background: var(--leaf-deep);
}

.button-secondary {
  border: 1px solid rgba(47, 90, 64, 0.2);
  color: var(--leaf-deep);
  background: rgba(255, 253, 248, 0.72);
}

.button-secondary:hover {
  background: rgba(255, 253, 248, 1);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 42px;
}

.hero-stats div {
  min-height: 98px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.65);
  box-shadow: 0 14px 36px rgba(31, 63, 44, 0.08);
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--leaf-deep);
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: 30px;
  line-height: 1;
}

.hero-stats span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-visual {
  position: relative;
  min-height: 720px;
}

.phone {
  overflow: hidden;
  border: 10px solid rgba(255, 253, 248, 0.95);
  border-radius: 46px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-main {
  position: absolute;
  z-index: 5;
  top: 4%;
  left: 21%;
  width: min(46vw, 380px);
  aspect-ratio: 1206 / 2622;
}

.phone-side {
  position: absolute;
  width: min(27vw, 230px);
  aspect-ratio: 1206 / 2622;
  opacity: 0.96;
}

.phone-bible {
  top: 13%;
  left: 0;
  transform: rotate(-7deg);
}

.phone-profile {
  right: 0;
  bottom: 5%;
  transform: rotate(7deg);
}

.promise-strip {
  display: grid;
  grid-template-columns: minmax(20px, 1fr) auto minmax(20px, 1fr);
  gap: 24px;
  align-items: center;
  width: min(980px, calc(100% - 48px));
  margin: 0 auto 88px;
  color: var(--ink-2);
  text-align: center;
}

.promise-strip span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 166, 60, 0.72), transparent);
}

.promise-strip p {
  max-width: 720px;
  margin: 0;
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.25;
}

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

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

.section-heading h2 {
  max-width: 860px;
}

.feature-section {
  padding: 34px 0 96px;
}

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

.feature-card {
  min-height: 260px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 22px;
  background: rgba(255, 253, 248, 0.76);
  box-shadow: 0 20px 55px rgba(31, 63, 44, 0.1);
}

.feature-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 52px;
  border-radius: 999px;
  color: var(--leaf);
  background: rgba(47, 90, 64, 0.1);
  font-weight: 700;
}

.feature-card p,
.showcase-copy p,
.reader-copy p,
.path-copy p,
.final-card p {
  color: var(--ink-2);
  font-size: 16px;
  line-height: 1.72;
}

.feature-card-dark {
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(31, 63, 44, 0.96), rgba(47, 90, 64, 0.9)),
    var(--leaf-deep);
}

.feature-card-dark h3,
.feature-card-dark p {
  color: var(--white);
}

.feature-card-dark span {
  color: var(--leaf-deep);
  background: var(--gold-soft);
}

.showcase,
.path-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 420px);
  gap: 64px;
  align-items: center;
  padding: 84px 0;
}

.showcase-copy,
.path-copy,
.reader-copy {
  max-width: 620px;
}

.showcase-phone,
.path-phone {
  overflow: hidden;
  max-width: 390px;
  margin: 0 auto;
  border: 10px solid rgba(255, 253, 248, 0.95);
  border-radius: 48px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.reader-band {
  margin: 70px 0;
  padding: 90px 0;
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(31, 63, 44, 0.97), rgba(56, 91, 66, 0.92)),
    var(--leaf-deep);
}

.reader-layout {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 72px;
  align-items: center;
}

.reader-band h2,
.reader-band .reader-copy p,
.reader-band .plain-list,
.reader-band .eyebrow {
  color: var(--white);
}

.reader-card {
  min-height: 440px;
  padding: 42px;
  border: 1px solid rgba(255, 253, 248, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(rgba(255, 253, 248, 0.84), rgba(255, 253, 248, 0.66)),
    radial-gradient(circle at 80% 0%, rgba(216, 166, 60, 0.36), transparent 16rem);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.22);
}

.reader-card h2,
.reader-card p {
  color: var(--ink);
}

.reader-card h2 {
  font-size: clamp(44px, 5vw, 68px);
}

.reader-card p {
  margin-bottom: 72px;
  color: var(--muted);
  font-size: 20px;
}

.reader-card div {
  display: grid;
  gap: 10px;
  max-width: 260px;
  padding: 24px;
  border: 1px solid rgba(47, 90, 64, 0.16);
  border-radius: 20px;
  background: rgba(255, 253, 248, 0.88);
}

.reader-card strong {
  color: var(--gold);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reader-card span:not(.cross-mark) {
  color: var(--ink);
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: 30px;
}

.cross-mark {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 52px;
  line-height: 1;
}

.plain-list {
  display: grid;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.plain-list li {
  position: relative;
  padding-left: 28px;
  line-height: 1.55;
}

.plain-list li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border: 2px solid var(--gold-soft);
  border-radius: 99px;
  content: "";
}

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

.metric-grid div {
  min-height: 104px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.78);
}

.metric-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.metric-grid strong {
  color: var(--leaf-deep);
  font-family: "Noto Serif Display", Georgia, serif;
  font-size: 24px;
}

.final-section {
  padding: 72px 0 104px;
}

.final-card {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 58px 44px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 253, 248, 0.74)),
    radial-gradient(circle at 80% 20%, rgba(216, 166, 60, 0.16), transparent 24rem);
  box-shadow: var(--shadow);
  text-align: center;
}

.final-card img {
  width: 84px;
  height: 84px;
  margin-bottom: 20px;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(31, 63, 44, 0.18);
}

.final-card p {
  max-width: 620px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer div,
.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer strong {
  color: var(--ink);
}

.site-footer a {
  color: var(--leaf);
  font-weight: 700;
}

.site-footer a:hover {
  color: var(--leaf-deep);
}

.reveal {
  transform: translateY(18px);
  opacity: 0;
  transition:
    opacity 700ms ease,
    transform 700ms ease;
  transition-delay: var(--delay, 0ms);
}

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

@media (max-width: 1060px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav,
  .header-link {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.nav-open .site-nav {
    position: fixed;
    top: 74px;
    right: 0;
    left: 0;
    display: grid;
    gap: 6px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 24px;
    background: rgba(255, 253, 248, 0.98);
    box-shadow: 0 20px 55px rgba(31, 63, 44, 0.14);
  }

  .site-header.nav-open .site-nav a {
    padding: 14px 16px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 32px;
    min-height: auto;
    padding-top: 126px;
  }

  .hero-visual {
    min-height: 680px;
  }

  .phone-main {
    left: 50%;
    width: min(56vw, 390px);
    transform: translateX(-50%);
  }

  .phone-side {
    width: min(34vw, 230px);
  }
}

@media (max-width: 860px) {
  .hero-stats,
  .feature-grid,
  .showcase,
  .reader-layout,
  .path-section,
  .metric-grid {
    grid-template-columns: 1fr;
  }

  .showcase,
  .path-section {
    gap: 34px;
    padding: 64px 0;
  }

  .path-phone {
    order: 2;
  }

  .path-copy {
    order: 1;
  }

  .reader-band {
    margin: 36px 0;
    padding: 64px 0;
  }

  .reader-layout {
    gap: 38px;
  }

  .reader-card {
    min-height: 360px;
  }

  .promise-strip {
    grid-template-columns: 1fr;
    margin-bottom: 54px;
  }

  .promise-strip span {
    display: none;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section-shell,
  .promise-strip,
  .site-footer {
    width: min(100% - 28px, 1160px);
  }

  .brand em {
    display: none;
  }

  .hero {
    padding-top: 112px;
    padding-bottom: 48px;
  }

  h1 {
    font-size: 62px;
  }

  h2 {
    font-size: 38px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-actions,
  .final-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .hero-visual {
    min-height: 570px;
    margin: 0 -8px;
  }

  .phone {
    border-width: 7px;
    border-radius: 36px;
  }

  .phone-main {
    top: 4%;
    width: 68vw;
  }

  .phone-side {
    width: 38vw;
  }

  .phone-bible {
    top: 19%;
    left: 0;
  }

  .phone-profile {
    right: 0;
    bottom: 1%;
  }

  .feature-card {
    min-height: 220px;
    padding: 24px;
  }

  .feature-card span {
    margin-bottom: 34px;
  }

  .showcase-phone,
  .path-phone {
    max-width: 320px;
    border-width: 7px;
    border-radius: 38px;
  }

  .reader-card,
  .final-card {
    padding: 34px 24px;
  }

  .site-footer {
    display: grid;
  }
}
