@font-face {
  font-family: "Manrope";
  src: url("/fonts/manrope-latin.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Newsreader";
  src: url("/fonts/newsreader-latin.woff2") format("woff2");
  font-display: swap;
}

@import "tailwindcss";

:root {
  --forest: #173b32;
  --forest-deep: #0c281f;
  --charcoal: #11120f;
  --paper: #f2ecdf;
  --paper-bright: #fffcf7;
  --ink: #211f1a;
  --muted: #746f64;
  --ochre: #e0ad4f;
  --ochre-dark: #b97927;
  --line: #d5cebf;
  --grid-line: rgba(255, 252, 247, 0.055);
  --grid-size: 48px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--forest-deep); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--forest);
  font-family: "Manrope", "Avenir Next", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}
body.home {
  position: relative;
  background:
    radial-gradient(circle at 73% 31%, rgba(143, 229, 181, 0.11), transparent 27rem),
    radial-gradient(circle at 8% 82%, rgba(224, 173, 79, 0.12), transparent 30rem),
    var(--forest);
  line-height: normal;
}
body.home::before {
  height: max(100svh, 804px);
  position: absolute;
  inset: 0 0 auto;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 94%);
  pointer-events: none;
}
body.home main { width: 100%; margin: 0; padding: 0; }
body.home .siteHeader { padding: 0; }
body.home .siteFooter { margin-inline: auto; padding: 0; text-align: left; }
a { color: inherit; }
img { display: block; max-width: 100%; }
h1, h2, p, figure { margin-top: 0; }
h1, h2 { font-weight: 500; letter-spacing: -0.055em; }
body.home h1,
body.home h2 { font-family: "Manrope", "Avenir Next", system-ui, sans-serif; }
em {
  font-family: "Newsreader", Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

::selection { color: var(--forest-deep); background: var(--ochre); }

.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.appWordmark, .brandName {
  font-family: ui-rounded, "SF Pro Rounded", "Arial Rounded MT Bold", "Manrope", sans-serif;
  font-weight: 900;
  letter-spacing: -0.055em;
}

.siteHeader {
  min-height: 84px;
  position: relative;
  z-index: 5;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--paper-bright);
  border-bottom: 1px solid rgba(255, 252, 247, 0.18);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-self: start;
  text-decoration: none;
}
.brand img { width: 42px; height: 42px; object-fit: contain; }
.brandName { font-size: 1.18rem; }
.siteHeader nav, .siteFooter nav { display: flex; align-items: center; gap: 26px; }
.siteHeader nav a {
  padding-block: 10px;
  position: relative;
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.67rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}
.siteHeader nav a::after {
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  background: var(--ochre);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}
.siteHeader nav a:hover::after,
.siteHeader nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}
.headerCta {
  min-height: 40px;
  padding: 0 16px;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 252, 247, 0.45);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}
.headerCta:hover,
.headerCta:focus-visible {
  color: var(--forest);
  background: var(--paper-bright);
  transform: translateY(-2px);
}

.hero {
  min-height: 720px;
  padding: 70px 0 94px;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
  align-items: center;
  gap: 70px;
  color: var(--paper-bright);
}
.category {
  margin-bottom: 22px;
  color: var(--ochre);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(4rem, 6.8vw, 7rem);
  line-height: 0.86;
  letter-spacing: -0.07em;
}
.hero h1 em { color: var(--ochre); }
.heroLead {
  margin-bottom: 30px;
  color: rgba(255, 252, 247, 0.82);
  font-size: clamp(1.15rem, 1.7vw, 1.45rem);
  line-height: 1.45;
}
.primaryButton {
  min-height: 56px;
  padding: 0 21px;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  color: var(--charcoal);
  background: var(--ochre);
  border: 1px solid rgba(17, 18, 15, 0.35);
  border-radius: 14px;
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease;
}
.primaryButton:hover { background: var(--paper-bright); transform: translateY(-2px); }
.primaryButton em {
  margin-left: 2px;
  font-size: 1.02rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.appStoreAvailability {
  margin: 13px 0 0;
  color: rgba(255, 252, 247, 0.66);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.heroProof { min-height: 610px; position: relative; display: grid; place-items: center; }
.heroHalo {
  width: 510px;
  aspect-ratio: 1;
  position: absolute;
  border: 1px solid rgba(255, 252, 247, 0.17);
  border-radius: 50%;
  background:
    radial-gradient(circle at 66% 28%, rgba(224, 173, 79, 0.2), transparent 30%),
    radial-gradient(circle at 35% 72%, rgba(143, 229, 181, 0.12), transparent 34%),
    var(--forest-deep);
  box-shadow:
    0 28px 80px rgba(3, 16, 12, 0.24),
    inset 0 0 0 24px rgba(255, 252, 247, 0.018);
}
.heroHalo::after {
  position: absolute;
  inset: 24%;
  border: 1px dashed rgba(255, 252, 247, 0.17);
  border-radius: 50%;
  content: "";
}
.phoneFrame {
  overflow: hidden;
  border: 8px solid #080a08;
  background: var(--charcoal);
  box-shadow: 0 34px 70px rgba(3, 16, 12, 0.42);
}
.phoneFrame img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.heroPhone {
  width: 310px;
  height: 600px;
  z-index: 2;
  border-radius: 52px;
  transform: rotate(2.5deg);
}
.heroMascot {
  width: 118px;
  z-index: 4;
  position: absolute;
  right: -8px;
  bottom: -2px;
  filter: drop-shadow(0 16px 20px rgba(4, 20, 15, 0.38));
}

.painSection {
  padding: 112px 0;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 82% 20%, rgba(224, 173, 79, 0.09), transparent 27rem),
    linear-gradient(135deg, #0c281f 0%, #102f26 100%);
  border-block: 1px solid rgba(255, 252, 247, 0.1);
}
.loopSection {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.loopSection::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: var(--grid-size) var(--grid-size);
  content: "";
  pointer-events: none;
}
.loopSection > .shell {
  position: relative;
  z-index: 1;
}
.painInner {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: end;
  gap: 64px;
}
.painSection h2 {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 6.4vw, 7rem);
  line-height: 0.88;
}
.painSection h2 em { color: var(--ochre); }
.painSection p {
  margin-bottom: 8px;
  color: var(--ochre);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: clamp(1rem, 1.8vw, 1.35rem);
  font-weight: 750;
  letter-spacing: 0.03em;
  line-height: 1.7;
}

.loopSection {
  padding: 122px 0 132px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 86% 12%, rgba(224, 173, 79, 0.1), transparent 27rem),
    radial-gradient(circle at 10% 90%, rgba(23, 59, 50, 0.35), transparent 30rem),
    var(--charcoal);
  border-block: 1px solid rgba(255, 252, 247, 0.1);
}
.loopSection::before {
  --grid-size: 64px;
  mask-image: radial-gradient(circle at 50% 55%, black 0%, rgba(0, 0, 0, 0.8) 38%, transparent 78%);
}
.loopHeading {
  margin-bottom: 56px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 64px;
}
.loopHeading h2 {
  max-width: 780px;
  margin-bottom: 0;
  color: var(--paper-bright);
  font-size: clamp(3.4rem, 6vw, 6.2rem);
  line-height: 0.9;
}
.loopHeading h2 em { color: var(--ochre); }
.loopHeading p {
  max-width: 410px;
  margin-bottom: 7px;
  color: rgba(255, 252, 247, 0.62);
  font-size: 1.06rem;
  line-height: 1.65;
}
.flow {
  margin: 0 0 62px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  list-style: none;
  border-block: 1px solid rgba(255, 252, 247, 0.16);
}
.flow li {
  min-height: 72px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--paper-bright);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.flow li + li { border-left: 1px solid rgba(255, 252, 247, 0.16); }
.flow b { color: var(--ochre); font-size: 1rem; }

.productProof {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1fr 0.72fr 1fr;
  align-items: center;
  gap: 42px;
}
.proofItem { margin-bottom: 0; display: grid; justify-items: center; }
.proofPhone {
  width: min(100%, 286px);
  aspect-ratio: 720 / 1565;
  border-radius: 46px;
  box-shadow: 0 30px 65px rgba(23, 59, 50, 0.18);
}
.proofStart .proofPhone { transform: rotate(-2deg); }
.proofFinish .proofPhone { transform: rotate(2deg); }
.proofItem figcaption {
  margin-top: 22px;
  color: var(--paper-bright);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.28rem;
}
.correctionMoment { display: grid; gap: 14px; align-content: center; }
.correctionMoment > p {
  margin: 0 0 8px 8px;
  color: var(--paper-bright);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.7rem;
  text-align: left;
}
.correctionNote {
  min-height: 112px;
  padding: 18px 20px 20px 24px;
  position: relative;
  overflow: hidden;
  background: var(--paper-bright);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 30px rgba(23, 59, 50, 0.12);
}
.correctionNote:nth-child(2) { transform: rotate(-1deg); }
.correctionNote:nth-child(3) { transform: rotate(1deg); }
.correctionNote::before {
  width: 4px;
  position: absolute;
  inset: 0 auto 0 0;
  background: var(--ochre);
  content: "";
}
.correctionNote span {
  display: block;
  color: var(--ochre-dark);
  font-family: ui-monospace, "SFMono-Regular", Consolas, monospace;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.correctionNote p {
  margin: 10px 0 0;
  color: var(--forest);
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.5;
  text-align: left;
}

.pricingSection {
  padding: 126px 0 0;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 76% 38%, rgba(143, 229, 181, 0.09), transparent 27rem),
    radial-gradient(circle at 12% 86%, rgba(224, 173, 79, 0.1), transparent 29rem),
    var(--forest-deep);
  border-top: 1px solid rgba(255, 252, 247, 0.12);
}
.pricingGrid {
  padding-bottom: 114px;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  align-items: center;
  gap: 96px;
}
.pricingCopy h2 {
  max-width: 600px;
  margin-bottom: 26px;
  font-size: clamp(3.7rem, 6vw, 6.5rem);
  line-height: 0.88;
}
.pricingCopy h2 em { color: var(--ochre); }
.pricingCopy > p:last-child { color: rgba(255, 252, 247, 0.62); }
.offerCard {
  padding: 38px;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 92% 4%, rgba(224, 173, 79, 0.11), transparent 15rem),
    #1b211d;
  border: 1px solid rgba(255, 252, 247, 0.18);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}
.offerTopline { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.offerTopline strong { color: var(--paper-bright); font-size: 1.08rem; }
.offerTopline span {
  color: var(--ochre-dark);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.billingToggle {
  margin-top: 34px;
  padding: 4px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  background: rgba(255, 252, 247, 0.08);
  border-radius: 13px;
}
.billingToggle button {
  min-height: 44px;
  padding: 0 13px;
  color: rgba(255, 252, 247, 0.58);
  background: transparent;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 150ms ease, background 150ms ease, box-shadow 150ms ease;
}
.billingToggle button[aria-pressed="true"] {
  color: var(--paper-bright);
  background: rgba(255, 252, 247, 0.11);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.billingToggle small {
  margin-left: 7px;
  color: var(--ochre-dark);
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
}
.priceArea { min-height: 183px; padding-top: 53px; }
.price { margin: 0 0 13px; display: flex; align-items: end; gap: 10px; }
.price strong {
  color: var(--paper-bright);
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(5rem, 8vw, 7.4rem);
  font-weight: 400;
  letter-spacing: -0.07em;
  line-height: 0.73;
}
.price span { color: rgba(255, 252, 247, 0.58); font-size: 0.82rem; }
.billingDetail {
  margin-bottom: 0;
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: rgba(255, 252, 247, 0.58);
  font-size: 0.76rem;
}
.billingDetail strong { color: var(--paper-bright); font-size: 0.82rem; }
.offerButton {
  width: 100%;
  justify-content: space-between;
  color: var(--paper-bright);
  background: transparent;
  border-color: rgba(255, 252, 247, 0.5);
}
.offerButton:hover {
  color: var(--forest-deep);
  background: var(--paper-bright);
}
.offerNote { margin: 18px 0 0; color: rgba(255, 252, 247, 0.5); font-size: 0.65rem; line-height: 1.55; }

.privacyStatement {
  padding: 126px 0;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 84% 18%, rgba(224, 173, 79, 0.08), transparent 28rem),
    var(--charcoal);
  border-top: 1px solid rgba(255, 252, 247, 0.12);
}
.privacyGrid {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  align-items: end;
  gap: 90px;
}
.privacyStatement .category { color: var(--ochre); }
.privacyStatement h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-size: clamp(3.7rem, 6vw, 6.5rem);
  line-height: 0.88;
}
.privacyStatement h2 em { color: var(--ochre); }
.privacyCopy p {
  margin-bottom: 28px;
  color: rgba(255, 252, 247, 0.64);
  line-height: 1.8;
}
.privacyCopy a {
  font-size: 0.72rem;
  font-weight: 800;
  text-underline-offset: 4px;
}

.finalCta {
  padding: 126px 0;
  color: var(--paper-bright);
  background:
    radial-gradient(circle at 50% 0%, rgba(224, 173, 79, 0.1), transparent 30rem),
    var(--forest);
  text-align: center;
}
.finalCtaInner {
  display: grid;
  justify-items: center;
}
.finalCta .category { color: var(--ochre); }
.finalCta h2 {
  max-width: 980px;
  margin-bottom: 42px;
  font-size: clamp(3.7rem, 6vw, 6.5rem);
  line-height: 0.88;
}
.finalCta h2 em { color: var(--paper); }
.finalCta .primaryButton {
  color: var(--forest);
  background: var(--ochre);
  border-color: rgba(17, 18, 15, 0.28);
}

.siteFooter {
  min-height: 126px;
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  color: rgba(255, 252, 247, 0.7);
  background: var(--forest-deep);
}
.siteFooter::before {
  width: 100vw;
  height: 100%;
  z-index: -1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--forest-deep);
  content: "";
}
.siteFooter > div { display: grid; gap: 3px; }
.siteFooter strong { color: var(--paper-bright); font-size: 1rem; }
.siteFooter span, .siteFooter nav a { font-size: 0.7rem; }
.siteFooter nav a { font-weight: 750; text-decoration: none; }

@media (max-width: 940px) {
  body.home::before { height: 1200px; }
  .siteHeader { grid-template-columns: 1fr auto; }
  .siteHeader nav { display: none; }
  .hero { grid-template-columns: 1fr; gap: 38px; }
  .heroCopy { max-width: 780px; }
  .heroProof { min-height: 640px; }
  .painInner, .loopHeading, .pricingGrid, .privacyGrid { grid-template-columns: 1fr; }
  .painInner { gap: 30px; }
  .loopHeading { gap: 24px; }
  .productProof { gap: 22px; }
  .pricingGrid { gap: 54px; }
  .privacyGrid { gap: 46px; }
  .offerCard { max-width: 620px; }
}

@media (min-width: 941px) {
  .heroCopy { text-align: left; }
}

@media (max-width: 720px) {
  .shell { width: min(100% - 32px, 1180px); }
  .siteHeader { min-height: 72px; }
  .brand img { width: 36px; height: 36px; }
  .hero { min-height: auto; padding: 54px 0 74px; }
  .hero h1 { font-size: clamp(3.55rem, 17vw, 5.5rem); }
  .heroProof { min-height: 548px; }
  .heroHalo { width: 430px; }
  .heroPhone { width: 265px; height: 514px; }
  .heroMascot { width: 92px; right: 2%; }
  .painSection, .loopSection, .pricingSection, .privacyStatement, .finalCta { padding-top: 82px; }
  .painSection { padding-bottom: 86px; }
  .painSection h2, .loopHeading h2, .pricingCopy h2, .privacyStatement h2, .finalCta h2 { font-size: clamp(3.2rem, 14vw, 4.9rem); }
  .flow { grid-template-columns: 1fr 1fr; }
  .flow li:nth-child(3) { border-left: 0; border-top: 1px solid rgba(255, 252, 247, 0.16); }
  .flow li:nth-child(4) { border-top: 1px solid rgba(255, 252, 247, 0.16); }
  .productProof { grid-template-columns: 1fr; gap: 46px; }
  .correctionMoment { width: min(100%, 360px); margin-inline: auto; }
  .proofPhone { width: min(100%, 265px); }
  .pricingGrid { padding-bottom: 82px; }
  .offerCard { padding: 28px 24px; }
  .priceArea { padding-top: 44px; }
  .privacyStatement, .finalCta { padding-bottom: 82px; }
  .siteFooter { padding: 30px 0; align-items: flex-start; flex-direction: column; }
  .siteFooter nav { flex-wrap: wrap; gap: 18px 24px; }
}

@media (max-width: 480px) {
  .headerCta { min-height: 36px; padding-inline: 13px; }
  .heroProof { min-height: 505px; }
  .heroHalo { width: 380px; }
  .heroPhone { width: 246px; height: 477px; }
  .primaryButton { width: 100%; justify-content: space-between; }
  .flow li { min-height: 62px; padding-inline: 12px; }
  .offerTopline { align-items: flex-start; flex-direction: column; gap: 8px; }
  .billingToggle button { padding-inline: 9px; font-size: 0.66rem; }
  .billingToggle small { display: block; margin: 2px 0 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.001ms !important; }
}
