:root {
  --paper: #f4e7d0;
  --paper-soft: #fff8ea;
  --cream: #f4e7d0;
  --paper-deep: #e6d1ad;
  --ink: #2a1e18;
  --ink-soft: rgba(42, 30, 24, 0.7);
  --green: #1f5c3a;
  --green-deep: #123e29;
  --green-black: #052419;
  --red: #d6402f;
  --red-deep: #b82d20;
  --gold: #d9a64a;
  --white: #fff8ea;
  --line: rgba(39, 27, 22, 0.13);
  --line-light: rgba(255, 250, 240, 0.2);
  --shadow: 0 26px 70px rgba(53, 35, 19, 0.16);
  --shadow-small: 0 12px 34px rgba(53, 35, 19, 0.1);
  --container: 1200px;
  --radius: 10px;
  --transition: 180ms ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 18%, rgba(217, 166, 74, 0.1), transparent 22rem),
    linear-gradient(90deg, rgba(39, 27, 22, 0.025) 1px, transparent 1px) 0 0 / 46px 46px,
    linear-gradient(0deg, rgba(39, 27, 22, 0.022) 1px, transparent 1px) 0 0 / 46px 46px,
    var(--paper);
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  text-rendering: optimizeLegibility;
}

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

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

ul {
  margin: 0;
  padding-left: 1.15rem;
}

li + li {
  margin-top: 11px;
}

.page-shell {
  overflow: clip;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(245, 234, 214, 0.92);
  border-bottom: 1px solid rgba(42, 30, 24, 0.08);
  backdrop-filter: blur(18px);
}

.header-row {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  gap: 34px;
  align-items: center;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  line-height: 0;
}

.brand-lockup {
  width: 218px;
  height: auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 30px;
  color: rgba(39, 27, 22, 0.75);
  font-size: 0.98rem;
  font-weight: 800;
}

.site-nav a,
.footer-links a {
  position: relative;
  padding: 10px 0;
  transition:
    color var(--transition),
    opacity var(--transition);
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.site-nav a:hover,
.footer-links a:hover {
  color: var(--red);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 10px;
  font: inherit;
  font-weight: 900;
  line-height: 1;
  transition:
    transform var(--transition),
    box-shadow var(--transition),
    background-color var(--transition),
    border-color var(--transition),
    color var(--transition);
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  box-shadow: 0 11px 24px rgba(42, 30, 24, 0.18);
}

.button-primary:hover {
  background: var(--red-deep);
  box-shadow: 0 14px 28px rgba(42, 30, 24, 0.24);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  box-shadow: 0 10px 18px rgba(42, 30, 24, 0.16);
}

.header-cta:hover {
  box-shadow: 0 12px 22px rgba(42, 30, 24, 0.22);
}

.button-secondary {
  color: var(--green-deep);
  background: rgba(255, 250, 240, 0.85);
  border-color: rgba(24, 88, 58, 0.25);
}

.button-secondary:hover {
  border-color: rgba(24, 88, 58, 0.48);
}

.button-icon {
  width: 1em;
  height: 1em;
}

.hero-section {
  position: relative;
  isolation: isolate;
  min-height: 684px;
  padding: 0;
  color: var(--white);
  background: var(--green-deep);
  overflow: hidden;
}

.hero-background {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(10, 46, 31, 0.86) 0%, rgba(10, 46, 31, 0.76) 28%, rgba(10, 46, 31, 0.36) 50%, rgba(10, 46, 31, 0.08) 70%, rgba(10, 46, 31, 0.12) 100%),
    linear-gradient(0deg, rgba(28, 19, 15, 0.36) 0%, rgba(28, 19, 15, 0.08) 36%, transparent 60%),
    url("/static/hero-composite.jpg") center center / cover no-repeat;
}

.hero-background::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.13;
  background-image: radial-gradient(rgba(255, 248, 234, 0.34) 0.7px, transparent 0.7px);
  background-size: 7px 7px;
  mask-image: linear-gradient(90deg, black, transparent 55%);
}

.hero-background::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 130px;
  content: "";
  background: linear-gradient(0deg, rgba(42, 30, 24, 0.52), transparent);
}

.hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  gap: 18px;
  align-items: center;
  min-height: 684px;
}

.hero-copy {
  position: relative;
  z-index: 4;
  max-width: 646px;
  padding: 50px 0 56px;
  animation: rise-in 650ms ease both;
}

.eyebrow,
.section-kicker {
  margin: 0;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 248, 234, 0.72);
}

.hero-copy .eyebrow::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--red);
}

.section-kicker-lined {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.section-kicker-lined::before {
  width: 28px;
  height: 3px;
  content: "";
  background: var(--red);
}

.example-copy > .section-kicker.section-kicker-lined,
.section-heading > .section-kicker.section-kicker-lined {
  color: var(--ink);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.1em;
  line-height: normal;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.example-copy h2,
.transparency-layout h2,
.final-cta h2 {
  margin: 0;
  font-family: Georgia, "Palatino Linotype", serif;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero-copy h1 {
  max-width: 650px;
  margin-top: 20px;
  font-size: clamp(3.35rem, 5.15vw, 5.25rem);
  line-height: 0.96;
}

.hero-copy h1 em {
  display: block;
  margin-top: 14px;
  color: var(--cream, #f4e7d0);
  font-size: 0.66em;
  font-weight: 600;
}

.hero-offer {
  max-width: 620px;
  margin: 25px 0 0;
  color: rgba(244, 231, 208, 0.78);
  font-size: 1.17rem;
  font-weight: 400;
  line-height: 1.68;
}

.hero-offer-break {
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 29px;
}

.hero-example-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 12px 2px 9px;
  color: rgba(255, 248, 234, 0.9);
  font-size: 0.91rem;
  font-weight: 850;
  transition: color var(--transition);
}

.hero-example-link::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: rgba(255, 248, 234, 0.55);
  transform: scaleX(0);
  transform-origin: left;
  transition:
    transform var(--transition),
    background-color var(--transition);
}

.hero-example-link:hover {
  color: var(--white);
}

.hero-example-link:hover::after {
  background: var(--red);
  transform: scaleX(1);
}

.hero-art {
  display: none;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.76), rgba(255, 250, 240, 0.32)),
    var(--paper);
}

.value-section,
.example-section,
.workflow-section,
.access-section,
.faq-section,
.transparency-section,
.final-cta-section {
  padding: 92px 0;
}

.section-heading {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading-left {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.example-copy h2,
.transparency-layout h2,
.final-cta h2 {
  margin-top: 11px;
  font-size: clamp(2.25rem, 4vw, 3.45rem);
  line-height: 1.03;
}

.section-heading p:not(.section-kicker),
.example-copy > p:not(.section-kicker),
.transparency-layout > p,
.final-cta-copy > p,
.value-card p,
.workflow-step p,
.plan-card li,
.faq-list p {
  color: var(--ink-soft);
  line-height: 1.7;
}

.section-heading p:not(.section-kicker) {
  max-width: 700px;
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.value-section {
  position: relative;
  background:
    radial-gradient(circle at 9% 14%, rgba(217, 166, 74, 0.08), transparent 18rem),
    var(--paper);
}

.value-section::before {
  position: absolute;
  top: 132px;
  right: 5%;
  content: "C";
  color: rgba(42, 30, 24, 0.05);
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: clamp(6rem, 12vw, 10rem);
  line-height: 1;
  transform: rotate(-11deg);
}

.value-section::after {
  position: absolute;
  top: 206px;
  left: max(18px, calc((100vw - var(--container)) / 2 + 18px));
  width: 160px;
  height: 84px;
  content: "";
  border-top: 1px solid rgba(42, 30, 24, 0.12);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.value-dossier {
  position: relative;
  margin-top: 34px;
}

.value-dossier::after {
  position: absolute;
  right: 26px;
  bottom: 24px;
  z-index: 2;
  content: "Archivio C-04";
  color: rgba(42, 30, 24, 0.28);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.value-dossier-sheet {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(42, 30, 24, 0.16);
  border-radius: 10px;
  background:
    radial-gradient(circle at 84% 16%, rgba(217, 166, 74, 0.08), transparent 12rem),
    linear-gradient(180deg, rgba(255, 248, 234, 0.97), rgba(251, 243, 228, 0.98)),
    var(--paper-soft);
  box-shadow: 0 28px 60px rgba(53, 35, 19, 0.12);
}

.value-dossier-sheet::before {
  position: absolute;
  top: 32px;
  right: 38px;
  width: 120px;
  height: 120px;
  content: "";
  border: 1px solid rgba(42, 30, 24, 0.06);
  border-radius: 50%;
}

.value-dossier-sheet::after {
  position: absolute;
  top: 20px;
  left: 28px;
  content: "Dossier 01";
  color: rgba(42, 30, 24, 0.22);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.value-entry,
.workflow-step,
.plan-card,
.faq-list details {
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.78);
  box-shadow: var(--shadow-small);
}

.value-entry {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 320px;
  padding: 54px 26px 30px;
  border: 0;
  border-right: 1px solid rgba(42, 30, 24, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.value-entry:last-child {
  border-right: 0;
}

.value-entry::before {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 46px;
  height: 1px;
  content: "";
  background: rgba(42, 30, 24, 0.14);
}

.value-entry-meta {
  display: grid;
  gap: 14px;
}

.value-entry-books .value-entry-meta,
.value-entry-opn .value-entry-meta,
.value-entry-aut .value-entry-meta,
.value-entry-sum .value-entry-meta {
  position: relative;
  display: block;
  width: min(100%, 230px);
  aspect-ratio: 300 / 197;
  padding: 0;
}

.value-entry-books .value-entry-meta {
  background: url("/static/01-books.png") center center / contain no-repeat;
}

.value-entry-opn .value-entry-meta {
  background: url("/static/02-opn.png") center center / contain no-repeat;
}

.value-entry-aut .value-entry-meta {
  background: url("/static/03-aut.png") center center / contain no-repeat;
}

.value-entry-sum .value-entry-meta {
  background: url("/static/04-sum.png") center center / contain no-repeat;
}

.value-entry-books .value-index,
.value-entry-opn .value-index,
.value-entry-aut .value-index,
.value-entry-sum .value-index {
  position: absolute;
  z-index: 1;
  top: 12px;
  left: 4px;
}

.value-entry-books .value-icon-repeat,
.value-entry-opn .value-icon-dispute,
.value-entry-aut .value-icon-context,
.value-entry-sum .value-icon-edit {
  display: none;
}

.value-index {
  color: var(--red);
  font-size: 1.4rem;
  font-weight: 950;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.value-entry-copy {
  display: grid;
  gap: 10px;
}

.value-icon {
  position: relative;
  width: 64px;
  height: 64px;
  color: var(--ink);
}

.value-icon::before,
.value-icon::after {
  position: absolute;
  content: "";
}

.value-icon-repeat {
  background:
    linear-gradient(rgba(42, 30, 24, 0.12), rgba(42, 30, 24, 0.12)) 20px 19px / 17px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) 20px 27px / 23px 2px no-repeat,
    linear-gradient(rgba(42, 30, 24, 0.12), rgba(42, 30, 24, 0.12)) 20px 35px / 18px 2px no-repeat,
    linear-gradient(rgba(42, 30, 24, 0.1), rgba(42, 30, 24, 0.1)) 30px 14px / 18px 24px no-repeat,
    linear-gradient(var(--paper-soft), var(--paper-soft)) 26px 12px / 20px 26px no-repeat,
    linear-gradient(var(--paper-soft), var(--paper-soft)) 14px 20px / 20px 26px no-repeat;
}

.value-icon-repeat::before {
  inset: 20px 30px 18px 14px;
  border: 1.5px solid rgba(42, 30, 24, 0.55);
  transform: rotate(-5deg);
}

.value-icon-repeat::after {
  inset: 12px 18px 26px 26px;
  border: 1.5px solid rgba(42, 30, 24, 0.55);
  transform: rotate(4deg);
}

.value-icon-dispute::before {
  top: 17px;
  left: 8px;
  width: 20px;
  height: 20px;
  border-top: 2px solid var(--green);
  border-right: 2px solid var(--green);
  transform: rotate(45deg);
}

.value-icon-dispute::after {
  right: 10px;
  bottom: 13px;
  width: 22px;
  height: 22px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}

.value-icon-dispute {
  background:
    linear-gradient(135deg, transparent 47%, rgba(42, 30, 24, 0.5) 48%, rgba(42, 30, 24, 0.5) 52%, transparent 53%) center / 58px 58px no-repeat,
    linear-gradient(var(--green), var(--green)) 15px 28px / 24px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) 30px 34px / 22px 2px no-repeat;
}

.value-icon-context {
  background:
    linear-gradient(var(--paper-soft), var(--paper-soft)) 34px 16px / 20px 24px no-repeat,
    linear-gradient(rgba(42, 30, 24, 0.16), rgba(42, 30, 24, 0.16)) 38px 22px / 12px 2px no-repeat,
    linear-gradient(var(--green), var(--green)) 38px 28px / 10px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) 38px 34px / 14px 2px no-repeat;
}

.value-icon-context::before {
  top: 12px;
  left: 6px;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(42, 30, 24, 0.72);
  border-radius: 50%;
}

.value-icon-context::after {
  left: 2px;
  bottom: 10px;
  width: 28px;
  height: 18px;
  border: 2px solid rgba(42, 30, 24, 0.72);
  border-bottom: 0;
  border-radius: 20px 20px 0 0;
  box-shadow: 34px -8px 0 -1px var(--paper-soft), 34px -8px 0 0 rgba(42, 30, 24, 0.58);
}

.value-icon-edit {
  background:
    linear-gradient(var(--paper-soft), var(--paper-soft)) 14px 12px / 34px 42px no-repeat,
    linear-gradient(rgba(42, 30, 24, 0.16), rgba(42, 30, 24, 0.16)) 20px 22px / 22px 2px no-repeat,
    linear-gradient(var(--red), var(--red)) 20px 30px / 18px 2px no-repeat,
    linear-gradient(rgba(42, 30, 24, 0.16), rgba(42, 30, 24, 0.16)) 20px 38px / 16px 2px no-repeat;
}

.value-icon-edit::before {
  inset: 12px 16px 10px 14px;
  border: 1.5px solid rgba(42, 30, 24, 0.62);
  transform: rotate(-4deg);
}

.value-icon-edit::after {
  right: 8px;
  bottom: 12px;
  width: 22px;
  height: 4px;
  background: var(--red);
  transform: rotate(-34deg);
  box-shadow: -2px -6px 0 0 var(--paper);
}

.value-entry h3,
.workflow-step h3 {
  margin: 0;
  font-size: 1.24rem;
  line-height: 1.22;
}

.value-entry p,
.workflow-step p {
  margin: 0;
}

.example-section {
  position: relative;
  padding-top: 46px;
  background: linear-gradient(180deg, var(--paper) 0%, #ead9bd 100%);
}

.example-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(480px, 1.2fr);
  gap: 62px;
  align-items: start;
}

.example-copy {
  display: grid;
  align-content: start;
  padding-top: 40px;
}

.example-copy > p:not(.section-kicker) {
  max-width: 520px;
  margin: 20px 0 0;
  font-size: 1.05rem;
}

.example-copy-quote-body {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
}

.example-copy-quote-lines {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.45;
}

.example-copy-quote-lines span {
  position: relative;
  padding-left: 16px;
  white-space: nowrap;
}

.example-copy-quote-lines span::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  content: "";
  border-radius: 50%;
  background: var(--red);
  transform: translateY(-50%);
}

.summary-showcase {
  position: relative;
  min-height: 742px;
  overflow: visible;
}

.summary-showcase::before {
  position: absolute;
  top: 78px;
  right: 40px;
  z-index: 1;
  width: 430px;
  height: 560px;
  content: "";
  border-radius: 50%;
  background: radial-gradient(circle, rgba(31, 92, 58, 0.24) 0%, rgba(31, 92, 58, 0.14) 44%, rgba(31, 92, 58, 0.03) 74%, rgba(31, 92, 58, 0) 100%);
  filter: blur(6px);
  transform: rotate(-10deg);
}

.phone-stage {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 58px;
  width: min(368px, 60%);
  transform: rotate(3deg);
  filter: drop-shadow(0 34px 40px rgba(39, 27, 22, 0.24));
}

.phone-stage img {
  display: block;
  width: 100%;
  height: auto;
}

.quote-stack {
  position: relative;
  z-index: 3;
  height: 100%;
}

.summary-quote {
  position: absolute;
  width: min(308px, calc(100% - 84px));
  padding: 20px;
  border: 1px solid rgba(42, 30, 24, 0.14);
  border-radius: 10px;
  background: rgba(255, 248, 234, 0.96);
  box-shadow: 0 18px 28px rgba(42, 30, 24, 0.08);
  backdrop-filter: blur(5px);
}

.example-copy-quote.summary-quote {
  position: relative;
  top: auto;
  right: auto;
  left: auto;
  width: min(100%, 560px);
  margin-top: 28px;
  transform: none;
  backdrop-filter: none;
}

.summary-quote-overview {
  top: 54px;
  left: 0;
  transform: none;
}

.summary-quote-overview::after {
  position: absolute;
  top: -14px;
  right: 18px;
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: 4.25rem;
  line-height: 1;
  content: "\"";
  color: rgba(214, 64, 47, 0.1);
}

.summary-quote-goal {
  top: 188px;
  right: 30px;
  transform: none;
}

.summary-quote-split {
  top: 364px;
  left: 12px;
  transform: none;
}

.summary-quote-risk {
  top: 516px;
  right: 0;
  transform: none;
}

.summary-quote-kicker {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.summary-quote-text {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 10px;
  margin: 0;
  color: var(--ink);
  font-size: 0.96rem;
  line-height: 1.4;
}

.summary-quote-mark {
  color: var(--red);
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: 1.58rem;
  line-height: 0.92;
}

.workflow-section {
  position: relative;
}

.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}

.workflow-step {
  position: relative;
  min-height: 300px;
  padding: 24px;
  border-radius: 10px;
  overflow: hidden;
}

.workflow-step:not(:last-child)::after {
  position: absolute;
  top: 52px;
  right: -12px;
  z-index: 3;
  width: 24px;
  height: 1px;
  content: "";
  background: var(--red);
}

.step-number {
  display: inline-grid;
  width: 36px;
  height: 36px;
  margin-bottom: 58px;
  place-items: center;
  border: 1px solid rgba(24, 88, 58, 0.22);
  border-radius: 50%;
  color: var(--green);
  font-weight: 950;
}

.step-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--green-deep);
}

.step-icon::before,
.step-icon::after {
  position: absolute;
  content: "";
}

.step-icon-source::before {
  inset: 13px 16px;
  border: 2px solid var(--paper-soft);
  border-radius: 3px;
}

.step-icon-source::after {
  top: 21px;
  left: 21px;
  width: 12px;
  height: 2px;
  background: var(--gold);
  box-shadow: 0 6px 0 var(--gold), 0 12px 0 var(--gold);
}

.step-icon-structure::before {
  top: 14px;
  left: 14px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--paper-soft);
  box-shadow: 16px 0 0 -2px var(--green-deep), 16px 0 0 0 var(--paper-soft), 0 16px 0 -2px var(--green-deep), 0 16px 0 0 var(--paper-soft), 16px 16px 0 -2px var(--green-deep), 16px 16px 0 0 var(--paper-soft);
}

.step-icon-map::before {
  top: 15px;
  left: 12px;
  width: 30px;
  height: 22px;
  border-top: 2px solid var(--paper-soft);
  border-bottom: 2px solid var(--paper-soft);
  transform: rotate(-18deg);
}

.step-icon-map::after {
  top: 23px;
  left: 23px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.step-icon-send::before {
  top: 15px;
  left: 14px;
  width: 27px;
  height: 23px;
  border: 2px solid var(--paper-soft);
  clip-path: polygon(0 0, 100% 15%, 55% 100%, 42% 60%, 0 0);
}

.access-section {
  background: var(--paper-soft);
}

.access-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(480px, 1.25fr);
  gap: 64px;
  align-items: start;
}

.access-intro {
  position: sticky;
  top: 116px;
}

.access-motif {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 36px;
  color: rgba(39, 27, 22, 0.44);
}

.motif-cup {
  display: grid;
  width: 74px;
  height: 62px;
  place-items: center;
  border: 2px solid rgba(39, 27, 22, 0.2);
  border-radius: 8px 8px 28px 28px;
  color: var(--red);
  font-family: Georgia, serif;
  font-size: 2rem;
}

.access-motif p {
  margin: 0;
  font-family: Georgia, serif;
  font-style: italic;
}

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

.plan-card {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  align-content: stretch;
  min-height: 450px;
  padding: 28px;
  border-radius: 10px;
}

.plan-card h3 {
  margin: 12px 0 18px;
  font-family: Georgia, "Palatino Linotype", serif;
  font-size: 1.85rem;
}

.plan-price {
  margin: 0;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.plan-card ul {
  margin-bottom: 30px;
}

.plan-card-footer {
  display: grid;
  gap: 14px;
  align-self: end;
  margin-top: auto;
}

.plan-eyebrow {
  margin: 0;
  color: var(--green);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan-card-accent {
  position: relative;
  color: var(--white);
  border-color: rgba(8, 47, 32, 0.4);
  background:
    radial-gradient(circle at 85% 10%, rgba(217, 166, 74, 0.18), transparent 12rem),
    var(--green-deep);
}

.plan-card-accent::after {
  position: absolute;
  right: 26px;
  bottom: 86px;
  width: 76px;
  height: 76px;
  border: 1px solid rgba(217, 166, 74, 0.3);
  border-radius: 50%;
  content: "C";
  color: rgba(217, 166, 74, 0.22);
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 76px;
  text-align: center;
}

.plan-card-accent .plan-eyebrow {
  color: var(--gold);
}

.plan-card-accent li {
  color: rgba(255, 250, 240, 0.82);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.42fr) minmax(0, 0.58fr);
  gap: 70px;
  align-items: center;
}

.faq-copy h2 {
  color: var(--white);
}

.faq-copy p:not(.section-kicker) {
  max-width: 590px;
  color: rgba(255, 248, 234, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.faq-list {
  display: grid;
  gap: 11px;
}

.faq-list details {
  border-color: rgba(255, 248, 234, 0.12);
  border-radius: 10px;
  background: #3a2820;
  box-shadow: 0 18px 38px rgba(18, 12, 9, 0.24);
}

.faq-list details[open] {
  border-color: rgba(244, 231, 208, 0.46);
  background: #422e24;
}

.faq-list summary {
  position: relative;
  cursor: pointer;
  padding: 21px 58px 21px 22px;
  color: rgba(255, 248, 234, 0.95);
  font-weight: 900;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 22px;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(255, 248, 234, 0.22);
  border-radius: 50%;
  content: "+";
  color: var(--cream);
  font-size: 1.25rem;
  line-height: 25px;
  text-align: center;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 58px 22px 22px;
  color: rgba(255, 248, 234, 0.72);
}

.transparency-section {
  color: var(--white);
  background: var(--ink);
}

.transparency-section .section-heading > .section-kicker.section-kicker-lined {
  color: var(--white);
}

.transparency-layout {
  display: grid;
  grid-template-columns: 86px minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: 38px;
  align-items: center;
}

.transparency-mark {
  display: grid;
  width: 78px;
  height: 90px;
  place-items: center;
  border: 2px solid var(--gold);
  border-radius: 40px 40px 26px 26px;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 2.4rem;
}

.transparency-layout > p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
  font-size: 1.03rem;
}

.final-cta-section {
  padding: 84px 0 0;
  background: var(--paper);
}

.final-cta {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.6fr);
  min-height: 510px;
  align-items: center;
  overflow: hidden;
  border: 1px solid rgba(24, 88, 58, 0.2);
  border-radius: 10px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 28%, rgba(217, 166, 74, 0.2), transparent 17rem),
    var(--green-deep);
  box-shadow: var(--shadow);
}

.final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 250, 240, 0.55) 0.8px, transparent 0.8px);
  background-size: 9px 9px;
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  padding: 58px 0 58px 58px;
}

.final-cta-copy > p {
  max-width: 610px;
  margin: 16px 0 28px;
  color: rgba(255, 250, 240, 0.74);
}

.final-mascot-wrap {
  position: relative;
  align-self: end;
  height: 500px;
}

.final-mascot {
  position: absolute;
  right: -12px;
  bottom: -70px;
  width: 390px;
  filter: drop-shadow(-18px 12px 28px rgba(0, 0, 0, 0.25));
}

.mascot-signature {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  width: 220px;
  opacity: 0.72;
}

.site-footer {
  padding: 48px 0 52px;
  color: var(--white);
  background: var(--green-black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 220px 1fr auto;
  gap: 36px;
  align-items: center;
}

.footer-brand-block p {
  margin: 12px 0 0;
  color: rgba(255, 250, 240, 0.56);
  font-size: 0.82rem;
  line-height: 1.45;
}

.footer-lockup {
  width: 150px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.88;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  color: rgba(255, 250, 240, 0.76);
  font-size: 0.9rem;
  font-weight: 750;
}

.footer-copy {
  margin: 0;
  color: rgba(255, 250, 240, 0.54);
  font-size: 0.82rem;
  text-align: right;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float-card {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@media (max-width: 1080px) {
  .header-row {
    grid-template-columns: 210px 1fr auto;
  }

  .site-nav {
    gap: 8px 18px;
    font-size: 0.93rem;
  }

  .example-layout,
  .access-layout,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .summary-showcase {
    width: min(100%, 700px);
    min-height: 890px;
    margin: 10px auto 0;
  }

  .example-copy {
    padding-top: 0;
  }

  .summary-showcase::before {
    top: 18px;
    right: 50%;
    width: min(430px, 78vw);
    height: 560px;
    transform: translateX(50%) rotate(-10deg);
  }

  .phone-stage {
    top: 0;
    right: 50%;
    width: min(340px, 54vw);
    transform: translateX(42%) rotate(3deg);
  }

  .quote-stack {
    display: grid;
    gap: 14px;
    padding-top: 298px;
    padding-inline: 10px;
    box-sizing: border-box;
  }

  .summary-quote {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    width: min(100%, 320px);
    transform: none;
  }

  .summary-quote:nth-child(even) {
    margin-left: auto;
  }

  .example-copy-quote.summary-quote {
    width: min(100%, 520px);
  }

  .example-copy-quote-lines span {
    white-space: normal;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 0.96fr) minmax(420px, 1.04fr);
    gap: 0;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero-copy h1 {
    font-size: clamp(3.15rem, 6vw, 4.25rem);
  }

  .value-dossier-sheet,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-entry:nth-child(2n) {
    border-right: 0;
  }

  .value-entry:nth-child(n + 3) {
    border-top: 1px solid rgba(42, 30, 24, 0.1);
  }

  .workflow-step:not(:last-child)::after {
    display: none;
  }

  .access-intro {
    position: static;
  }

  .transparency-layout {
    grid-template-columns: 78px 1fr;
  }

  .transparency-layout > p {
    grid-column: 2;
  }

  .footer-grid {
    grid-template-columns: 200px 1fr;
  }

  .footer-copy {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 70px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .header-row {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: 70px;
  }

  .brand-lockup {
    width: 174px;
  }

  .site-nav {
    display: none;
  }

  .header-cta {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.84rem;
  }

  .hero-section {
    min-height: 770px;
    padding: 0;
  }

  .hero-background {
    background:
      linear-gradient(180deg, rgba(10, 46, 31, 0.86) 0%, rgba(10, 46, 31, 0.78) 42%, rgba(10, 46, 31, 0.34) 72%, rgba(28, 19, 15, 0.2) 100%),
      url("/static/hero-composite.jpg") 64% center / cover no-repeat;
  }

  .hero-layout {
    display: block;
    min-height: 770px;
  }

  .hero-copy {
    max-width: 620px;
    padding: 42px 0 0;
  }

  .hero-copy h1 {
    max-width: 570px;
    font-size: clamp(2.8rem, 10vw, 4rem);
  }

  .hero-offer {
    max-width: 560px;
    margin-top: 19px;
    font-size: 1.02rem;
    line-height: 1.62;
  }

  .hero-offer-break {
    display: none;
  }

  .hero-actions .button-primary,
  .plan-card .button {
    width: 100%;
  }

  .hero-actions {
    max-width: 360px;
    margin-top: 22px;
  }

  .hero-example-link {
    margin: 0 auto;
  }

  .value-section,
  .example-section,
  .workflow-section,
  .access-section,
  .faq-section,
  .transparency-section {
    padding: 64px 0;
  }

  .final-cta-section {
    padding-top: 64px;
  }

  .section-heading h2,
  .example-copy h2,
  .transparency-layout h2,
  .final-cta h2 {
    font-size: clamp(2rem, 10vw, 2.75rem);
  }

  .value-dossier {
    margin-top: 28px;
  }

  .value-dossier::after {
    right: 18px;
    bottom: 18px;
    font-size: 0.61rem;
  }

  .value-dossier-sheet,
  .workflow-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .value-entry,
  .workflow-step,
  .plan-card {
    min-height: auto;
  }

  .value-entry {
    grid-template-columns: 86px 1fr;
    gap: 0 18px;
    padding: 28px 20px 24px;
    border-right: 0;
    border-top: 1px solid rgba(42, 30, 24, 0.1);
  }

  .value-entry:first-child {
    border-top: 0;
  }

  .value-entry::before {
    top: 28px;
    right: 20px;
    width: 30px;
  }

  .value-entry-meta {
    gap: 10px;
  }

  .value-entry-copy {
    gap: 8px;
  }

  .value-entry h3 {
    font-size: 1.08rem;
  }

  .value-entry p {
    font-size: 0.96rem;
  }

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

  .summary-showcase {
    min-height: 790px;
  }

  .summary-showcase::before {
    width: min(390px, 84vw);
    height: 500px;
  }

  .phone-stage {
    width: min(302px, 68vw);
  }

  .quote-stack {
    padding-top: 254px;
  }

  .summary-quote {
    width: min(100%, 300px);
    padding: 18px 19px;
  }

  .summary-quote-kicker {
    margin-bottom: 10px;
    font-size: 0.7rem;
  }

  .summary-quote-text {
    font-size: 0.96rem;
  }

  .access-section {
    background: var(--paper);
  }

  .plan-card {
    min-height: 390px;
  }

  .transparency-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .transparency-layout > p {
    grid-column: auto;
  }

  .transparency-mark {
    width: 64px;
    height: 72px;
    font-size: 2rem;
  }

  .final-cta {
    grid-template-columns: 1fr;
    min-height: 690px;
    row-gap: 24px;
    border-radius: 10px;
  }

  .final-cta-copy {
    padding: 38px 26px 0;
  }

  .final-cta-copy .button {
    width: 100%;
  }

  .final-mascot-wrap {
    height: 360px;
  }

  .final-mascot {
    right: 50%;
    bottom: -95px;
    width: 310px;
    transform: translateX(50%);
  }

  .mascot-signature {
    right: 14px;
    bottom: 16px;
    width: 180px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media (max-width: 430px) {
  .header-cta {
    font-size: 0;
  }

  .header-cta::after {
    content: "В Telegram";
    font-size: 0.8rem;
  }

  .hero-copy h1 br {
    display: none;
  }

  .hero-copy h1 em {
    margin-top: 7px;
  }

  .hero-copy {
    padding-top: 34px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12.5vw, 3.25rem);
  }

  .hero-copy h1 em {
    font-size: 0.61em;
  }

  .hero-copy .eyebrow {
    max-width: 290px;
    font-size: 0.68rem;
    line-height: 1.35;
  }

  .hero-offer {
    max-width: 355px;
    font-size: 0.95rem;
    line-height: 1.47;
  }

  .hero-actions {
    flex-wrap: nowrap;
    gap: 10px;
    max-width: none;
  }

  .hero-actions .button-primary {
    width: auto;
    min-height: 48px;
    padding: 0 13px;
    font-size: 0.82rem;
  }

  .hero-example-link {
    margin: 0;
    font-size: 0.74rem;
    white-space: nowrap;
  }

  .summary-showcase {
    min-height: 728px;
  }

  .summary-showcase::before {
    width: min(350px, 90vw);
    height: 430px;
  }

  .phone-stage {
    width: min(264px, 76vw);
  }

  .quote-stack {
    gap: 12px;
    padding-top: 224px;
    padding-inline: 8px;
  }

  .summary-quote {
    width: 100%;
  }

  .summary-quote:nth-child(even) {
    margin-left: 0;
  }

  .summary-quote-text {
    font-size: 0.93rem;
    line-height: 1.42;
  }

  .value-entry {
    grid-template-columns: 74px 1fr;
    gap: 0 14px;
    padding-inline: 16px;
  }

  .value-icon {
    width: 56px;
    height: 56px;
  }

  .value-entry h3 {
    font-size: 1rem;
  }

  .value-entry p {
    font-size: 0.92rem;
    line-height: 1.6;
  }

  .faq-list summary {
    padding-left: 18px;
  }

  .faq-list p {
    padding-right: 20px;
    padding-left: 18px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
