@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("/assets/fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "EB Garamond";
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url("/assets/fonts/eb-garamond-latin.woff2") format("woff2");
}

:root {
  --ink: #111111;
  --muted: #56524d;
  --paper: #f2efe8;
  --panel: #fffdf6;
  --line: rgba(17, 17, 17, 0.16);
  --gold: #c37b2b;
  --clay: #b33a2e;
  --sage: #c7d84a;
  --night: #241637;
  --blue: #243bc7;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 44px 44px;
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  letter-spacing: 0;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1rem clamp(1rem, 4vw, 4rem);
  background: rgba(242, 239, 232, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-weight: 750;
  font-size: 1.05rem;
}

.brand-mark {
  display: block;
  width: 2.15rem;
  height: 2.15rem;
  object-fit: contain;
  border-radius: 0.15rem;
}

.brand-lockup {
  width: 5.7rem;
  height: auto;
  border-radius: 0.45rem;
}

.nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a:hover {
  color: var(--ink);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 5rem);
  min-height: calc(100svh - 4.3rem);
  padding: clamp(3rem, 8vw, 6.5rem) clamp(1rem, 5vw, 5rem) 4rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
}

h1 {
  margin: 0;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 12vw, 11rem);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.8rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  line-height: 1.2;
}

.lead {
  max-width: 43rem;
  margin: 1.4rem 0 0;
  color: #39332b;
  font-size: clamp(1.12rem, 2vw, 1.45rem);
  line-height: 1.55;
}

.name-note {
  max-width: 34rem;
  margin: 1rem 0 0;
  color: var(--clay);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 1.7vw, 1.32rem);
  line-height: 1.45;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.button {
  display: inline-flex;
  min-height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0.86rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.5rem;
  font-weight: 760;
}

.button.primary {
  color: var(--panel);
  background: var(--blue);
  border-color: var(--blue);
}

.button.secondary {
  background: var(--panel);
}

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

.wide {
  width: 100%;
}

.trust-row {
  color: var(--muted);
  font-size: 0.9rem;
}

.trust-row span {
  padding-right: 0.8rem;
  border-right: 1px solid var(--line);
}

.trust-row span:last-child {
  border-right: 0;
}

.phone-visual {
  display: grid;
  min-height: 34rem;
  place-items: center;
}

.phone-shell {
  width: min(100%, 24rem);
  min-height: 35rem;
  padding: 1rem;
  color: var(--panel);
  background:
    linear-gradient(180deg, rgba(199, 216, 74, 0.14), transparent 34%),
    var(--night);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.1rem;
  box-shadow: 0 2.2rem 4.5rem rgba(23, 20, 15, 0.28);
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.45rem 0.7rem 1rem;
  color: rgba(255, 250, 241, 0.76);
  font-size: 0.85rem;
}

.signal,
.status-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--sage);
}

.chat {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.message {
  border-radius: 1.1rem;
  line-height: 1.55;
}

.message.incoming {
  padding: 1.2rem;
  background: rgba(255, 250, 241, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.message.incoming strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.1rem;
}

.message.incoming p {
  margin: 0.9rem 0;
  color: rgba(255, 250, 241, 0.88);
}

.message.incoming em {
  color: #f0c879;
}

.message.outgoing {
  align-self: flex-end;
  padding: 0.75rem 1rem;
  color: var(--ink);
  background: var(--sage);
  font-weight: 760;
}

.section {
  padding: clamp(3.5rem, 8vw, 7rem) clamp(1rem, 5vw, 5rem);
}

.statement {
  background: var(--blue);
}

.statement p {
  max-width: 78rem;
  margin: 0 auto;
  color: var(--panel);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 1.04;
}

.split {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
}

.audience {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  background: #dfded5;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.audience-list {
  display: grid;
  gap: 1rem;
}

.audience-list p {
  margin: 0;
  padding: 1.15rem 0;
  color: #39332b;
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
  border-bottom: 1px solid var(--line);
}

.audience-list p:first-child {
  padding-top: 0;
}

.audience-list p:last-child {
  border-bottom: 0;
}

.telegram-choice {
  background: var(--panel);
  border-bottom: 1px solid var(--line);
}

.telegram-copy {
  display: grid;
  gap: 1.25rem;
  max-width: 42rem;
}

.telegram-copy p,
.author-copy p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.55;
}

.author {
  display: grid;
  grid-template-columns: minmax(14rem, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  background: var(--night);
}

.author h2,
.author .eyebrow {
  color: var(--panel);
}

.author .eyebrow {
  color: var(--sage);
}

.author-copy {
  display: grid;
  gap: 1.25rem;
  max-width: 42rem;
}

.author-copy p {
  color: rgba(255, 253, 246, 0.78);
}

.author-copy .author-name {
  color: var(--panel);
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

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

.feature-grid article,
.offer-panel {
  padding: 1.25rem;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.number,
.reading-meta {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.feature-grid p,
.contrast-copy p,
.offer p,
.footer {
  color: var(--muted);
  line-height: 1.65;
}

.contrast {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(18rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  background: #c7d84a;
}

.system-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(23, 20, 15, 0.18);
  border-radius: 0.5rem;
}

.system-strip div {
  min-height: 12rem;
  padding: 1rem;
  background: var(--panel);
  border-right: 1px solid rgba(23, 20, 15, 0.14);
}

.system-strip div:nth-child(2) {
  background: #f4cdb4;
}

.system-strip div:nth-child(3) {
  color: var(--ink);
  background: #d9e86a;
}

.system-strip div:nth-child(4) {
  color: var(--panel);
  background: var(--night);
  border-right: 0;
}

.system-strip span,
.system-strip strong {
  display: block;
}

.system-strip span {
  color: inherit;
  opacity: 0.74;
  font-size: 0.85rem;
}

.system-strip strong {
  margin-top: 2.8rem;
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 500;
}

.system-strip p {
  margin: 0.9rem 0 0;
  color: inherit;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.72;
}

.journey-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.journey-head h2 {
  max-width: 62rem;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 0.5rem;
}

.journey-grid article {
  min-height: 19rem;
  padding: 1.35rem;
  background: var(--panel);
}

.journey-grid article:nth-child(2) {
  background: #f4cdb4;
}

.journey-grid article:nth-child(3) {
  color: var(--panel);
  background: var(--blue);
}

.journey-grid article:nth-child(3) .reading-meta,
.journey-grid article:nth-child(3) p {
  color: rgba(255, 253, 246, 0.78);
}

.journey-grid h3 {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 500;
}

.journey-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.symbol {
  color: var(--clay);
  font-weight: 720;
}

.offer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(17rem, 25rem);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
  background: var(--night);
}

.offer h2,
.offer .eyebrow,
.offer .price {
  color: var(--panel);
}

.offer p {
  max-width: 45rem;
  color: rgba(255, 253, 246, 0.74);
}

.offer-panel {
  background: rgba(255, 253, 246, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.price {
  font-family: "EB Garamond", Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1;
}

.price-detail {
  margin: 1rem 0;
  font-size: 1rem;
}

.price-detail strong {
  color: var(--panel);
}

.microcopy {
  margin-bottom: 0;
  font-size: 0.85rem;
}

.responsibility {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem clamp(1rem, 5vw, 5rem);
  color: var(--panel);
  background: var(--clay);
}

.responsibility strong {
  min-width: 17rem;
}

.responsibility span {
  max-width: 58rem;
  color: rgba(255, 253, 246, 0.84);
  line-height: 1.5;
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.4rem clamp(1rem, 5vw, 5rem);
  background: #111111;
  color: rgba(255, 253, 246, 0.62);
  font-size: 0.9rem;
}

.footer span:first-child {
  color: var(--panel);
  font-weight: 800;
}


@media (max-width: 850px) {
  .site-header {
    position: static;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 0.65rem 1rem;
    font-size: 0.85rem;
  }

  .hero,
  .split,
  .audience,
  .contrast,
  .author,
  .offer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .phone-visual {
    min-height: auto;
  }

  .feature-grid,
  .journey-grid,
  .system-strip {
    grid-template-columns: 1fr;
  }

  .system-strip div {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(23, 20, 15, 0.14);
  }

  .system-strip strong {
    margin-top: 1.5rem;
  }

  .journey-head,
  .responsibility,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }

}

@media (max-width: 520px) {
  .hero-actions .button,
  .trust-row span {
    width: 100%;
  }

  .trust-row span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 0 0 0.7rem;
  }

  .phone-shell {
    border-radius: 1.4rem;
  }
}
