:root {
  --canvas: #030303;
  --surface: #090909;
  --white: #f7f5ef;
  --body: #c2bcb1;
  --muted: #aaa398;
  --gold: #ddb13e;
  --gold-bright: #f5d66c;
  --green: #25d366;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  content: "";
  background-image:
    linear-gradient(rgba(229, 183, 62, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(229, 183, 62, 0.028) 1px, transparent 1px);
  background-size: 92px 92px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

main {
  display: flex;
  flex-direction: column;
}

.hero {
  order: 1;
}

.statement {
  order: 2;
}

.product {
  order: 3;
}

.services {
  order: 4;
}

.about {
  order: 5;
}

.process {
  order: 6;
}

.advantages {
  order: 7;
}

.final-cta {
  order: 8;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 10px;
  color: #080603;
  background: var(--gold-bright);
  font-size: 13px;
  font-weight: 700;
}

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

.section-shell,
.site-header {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(231, 185, 65, 0.09);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 28px rgba(221, 177, 62, 0.12);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
  text-transform: uppercase;
}

.brand-text strong {
  color: var(--white);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: 0.06em;
}

.brand-text small {
  margin-top: 5px;
  color: var(--gold);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.28em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-link {
  color: var(--body);
  font-size: 14px;
  transition: color 0.2s ease;
}

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

.header-cta {
  display: inline-flex;
  height: 38px;
  padding: 0 15px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: #d4d0c7;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-size: 13px;
}

.online-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px rgba(37, 211, 102, 0.8);
}

.hero {
  position: relative;
  display: flex;
  min-height: 830px;
  padding: 132px 0 74px;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.hero-glow {
  position: absolute;
  top: -280px;
  left: 50%;
  z-index: -1;
  width: 970px;
  height: 660px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(222, 169, 37, 0.23), rgba(125, 75, 5, 0.07) 40%, transparent 69%);
  filter: blur(18px);
}

.eyebrow {
  display: grid;
  width: min(650px, 100%);
  margin: 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  color: #c2a65f;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.17em;
}

.eyebrow span {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(235, 191, 78, 0.22));
}

.eyebrow span:last-child {
  background: linear-gradient(90deg, rgba(235, 191, 78, 0.22), transparent);
}

h1 {
  max-width: 1100px;
  margin: 27px 0 0;
  color: var(--white);
  font-size: clamp(60px, 7.9vw, 112px);
  font-weight: 500;
  letter-spacing: -0.07em;
  line-height: 0.92;
}

h1 em,
.process-intro h2 em,
.final-cta h2 em {
  color: transparent;
  background: linear-gradient(180deg, #fff0ae 4%, #d9a62d 54%, #875609 100%);
  background-clip: text;
  -webkit-background-clip: text;
  font-style: normal;
  text-shadow: 0 0 45px rgba(221, 177, 62, 0.09);
}

.hero-copy {
  max-width: 670px;
  margin: 30px 0 0;
  color: var(--body);
  font-size: 17px;
  line-height: 1.65;
  letter-spacing: -0.02em;
}

.hero-actions {
  display: flex;
  margin-top: 30px;
  align-items: center;
  gap: 22px;
}

.primary-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 21px;
  align-items: center;
  justify-content: center;
  gap: 25px;
  border-radius: 999px;
  color: #0b0803;
  background: linear-gradient(135deg, #f4d467, #c48d20);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.55), 0 12px 38px rgba(196, 141, 32, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary-button:hover {
  transform: translateY(-2px);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 18px 50px rgba(196, 141, 32, 0.27);
}

.text-button {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--body);
  font-size: 14px;
}

.text-button:hover {
  color: var(--white);
}

.trust-rail {
  display: flex;
  width: min(850px, 100%);
  margin-top: 98px;
  padding: 27px 32px;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(231, 185, 65, 0.05), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 1px rgba(244, 207, 109, 0.13), inset 0 0 0 1px rgba(231, 185, 65, 0.07), 0 26px 60px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(20px);
}

.trust-rail div {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 5px;
  text-align: left;
}

.trust-rail strong {
  color: #e5d6aa;
  font-size: 17px;
  font-weight: 550;
}

.trust-rail span {
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-rail i {
  width: 1px;
  height: 30px;
  background: rgba(231, 185, 65, 0.12);
}

.section-kicker {
  margin: 0 0 22px;
  color: #c2a158;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
}

.statement {
  padding: 120px 0;
  border-top: 1px solid rgba(231, 185, 65, 0.08);
}

.statement-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 100px;
  align-items: start;
}

.statement h2,
.section-heading h2,
.process-intro h2,
.final-cta h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.statement-copy {
  padding-top: 7px;
}

.statement-copy p {
  margin: 0 0 20px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.statement-copy p:last-child {
  color: #ddd7ce;
}

.about {
  display: grid;
  padding: 120px 0;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(64px, 8vw, 120px);
  align-items: start;
  border-top: 1px solid rgba(231, 185, 65, 0.08);
}

.about-profile {
  position: relative;
}

.about-photo-frame {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  background: #080806;
  box-shadow:
    inset 0 0 0 1px rgba(244, 207, 109, 0.12),
    0 34px 80px rgba(0, 0, 0, 0.48);
}

.about-photo-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  border-radius: inherit;
  background: linear-gradient(180deg, transparent 62%, rgba(3, 3, 3, 0.42));
  box-shadow: inset 0 0 0 1px rgba(231, 185, 65, 0.12);
  pointer-events: none;
}

.about-photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.about-profile-caption {
  position: absolute;
  right: -22px;
  bottom: 26px;
  z-index: 1;
  display: flex;
  min-width: 185px;
  padding: 17px 20px;
  flex-direction: column;
  gap: 6px;
  border-radius: 14px;
  background: rgba(8, 8, 6, 0.9);
  box-shadow:
    inset 0 0 0 1px rgba(231, 185, 65, 0.14),
    0 20px 50px rgba(0, 0, 0, 0.48);
  backdrop-filter: blur(16px);
}

.about-profile-caption span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.about-profile-caption strong {
  color: #e3d5af;
  font-size: 15px;
  font-weight: 550;
}

.about-content h2 {
  margin: 0 0 34px;
  color: var(--white);
  font-size: clamp(44px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1;
}

.about-copy {
  display: grid;
  gap: 18px;
}

.about-copy p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.72;
}

.about-copy p:first-child {
  color: #ddd7ce;
  font-size: 17px;
}

.about-mission {
  position: relative;
  margin-top: 42px;
  padding: 30px 32px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(221, 177, 62, 0.09), rgba(255, 255, 255, 0.014));
  box-shadow:
    inset 0 1px 1px rgba(248, 216, 128, 0.12),
    inset 0 0 0 1px rgba(231, 185, 65, 0.08);
}

.about-mission::before {
  position: absolute;
  top: 0;
  left: 32px;
  width: 74px;
  height: 1px;
  content: "";
  background: var(--gold);
  box-shadow: 0 0 18px rgba(221, 177, 62, 0.55);
}

.about-mission > span {
  color: #c7a454;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.about-mission h3 {
  max-width: 650px;
  margin: 18px 0 16px;
  color: #e8e2d8;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.2;
}

.about-mission p {
  margin: 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.about-mission strong {
  display: block;
  margin-top: 20px;
  color: #e3c978;
  font-size: 15px;
  font-weight: 550;
  line-height: 1.6;
}

.services {
  padding: 115px 0;
}

.section-heading {
  display: grid;
  margin-bottom: 52px;
  grid-template-columns: 1.25fr 0.55fr;
  gap: 100px;
  align-items: end;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.service-card {
  position: relative;
  display: grid;
  min-height: 225px;
  padding: 28px;
  grid-template-columns: 44px 1fr auto;
  gap: 18px;
  align-items: start;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(231, 185, 65, 0.043), rgba(255, 255, 255, 0.012));
  box-shadow: inset 0 1px 1px rgba(248, 216, 128, 0.11), inset 0 0 0 1px rgba(231, 185, 65, 0.07);
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card:hover {
  transform: translateY(-3px);
  background: linear-gradient(145deg, rgba(231, 185, 65, 0.075), rgba(255, 255, 255, 0.02));
}

.service-number {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #c8a85a;
  background: rgba(231, 185, 65, 0.05);
  box-shadow: inset 0 0 0 1px rgba(231, 185, 65, 0.11);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.service-card h3 {
  margin: 8px 0 13px;
  color: #e8e3d9;
  font-size: 21px;
  font-weight: 500;
  letter-spacing: -0.03em;
}

.service-card p {
  max-width: 405px;
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.service-arrow {
  color: #ae8c45;
  font-size: 15px;
}

.service-card-cta {
  background: linear-gradient(145deg, rgba(221, 177, 62, 0.12), rgba(138, 87, 7, 0.035));
}

.service-card-cta > a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #0b0803;
  background: var(--gold);
  font-size: 14px;
}

.product {
  position: relative;
  display: grid;
  padding: 84px;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(56px, 7vw, 90px);
  align-items: center;
  overflow: hidden;
  border-radius: 26px;
  background: #070705;
  box-shadow:
    inset 0 1px 1px rgba(248, 216, 128, 0.14),
    inset 0 0 0 1px rgba(231, 185, 65, 0.08),
    0 34px 90px rgba(0, 0, 0, 0.35);
}

.product-glow {
  position: absolute;
  top: -360px;
  left: -250px;
  width: 760px;
  height: 760px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 177, 62, 0.2), rgba(138, 87, 7, 0.06) 46%, transparent 70%);
  filter: blur(18px);
  pointer-events: none;
}

.product-intro,
.product-report {
  position: relative;
}

.product-badge {
  display: inline-flex;
  min-height: 34px;
  margin-bottom: 34px;
  padding: 0 13px;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: #d8d1c6;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.12em;
}

.product-badge i,
.product-report-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 10px rgba(245, 214, 108, 0.65);
}

.product-intro .section-kicker {
  margin-bottom: 18px;
}

.product-intro h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(46px, 4.8vw, 68px);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.product-lead {
  margin: 28px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
}

.product-proof {
  display: flex;
  margin-top: 30px;
  padding-left: 17px;
  flex-direction: column;
  gap: 7px;
  border-left: 2px solid var(--gold);
}

.product-proof strong {
  color: #e7dfd3;
  font-size: 16px;
  font-weight: 600;
}

.product-proof span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.product-actions {
  display: flex;
  margin-top: 34px;
  align-items: center;
  flex-wrap: wrap;
  gap: 13px;
}

.product-actions .primary-button {
  gap: 19px;
}

.download-button {
  display: inline-flex;
  min-height: 50px;
  padding: 0 19px;
  align-items: center;
  justify-content: center;
  gap: 11px;
  border-radius: 999px;
  color: #e3ddd3;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(231, 185, 65, 0.18);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.download-button:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: rgba(231, 185, 65, 0.07);
}

.download-button span {
  color: var(--gold-bright);
  font-size: 18px;
}

.product-report {
  padding: 30px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(231, 185, 65, 0.075), rgba(255, 255, 255, 0.018));
  box-shadow:
    inset 0 1px 1px rgba(248, 216, 128, 0.14),
    inset 0 0 0 1px rgba(231, 185, 65, 0.09),
    0 24px 60px rgba(0, 0, 0, 0.4);
}

.product-report-header {
  display: flex;
  padding-bottom: 24px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(231, 185, 65, 0.12);
}

.product-report-header > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-report-header > div span {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 10px;
  letter-spacing: 0.15em;
}

.product-report-header > div strong {
  color: #eee8de;
  font-size: 22px;
  font-weight: 550;
}

.product-report-status {
  display: inline-flex;
  min-height: 30px;
  padding: 0 11px;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: #d4caa9;
  background: rgba(221, 177, 62, 0.06);
  box-shadow: inset 0 0 0 1px rgba(221, 177, 62, 0.12);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.1em;
}

.product-report-summary {
  display: grid;
  margin: 27px 0 28px;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.product-report-summary strong {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  color: #0b0803;
  background: linear-gradient(135deg, #f4d467, #c48d20);
  font-size: 24px;
}

.product-report-summary span {
  max-width: 310px;
  color: var(--body);
  font-size: 15px;
  line-height: 1.55;
}

.product-report h3 {
  margin: 0 0 17px;
  color: #e4ded4;
  font-size: 18px;
  font-weight: 550;
}

.product-features {
  display: grid;
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.product-features li {
  display: grid;
  min-height: 48px;
  padding: 10px 12px;
  grid-template-columns: 22px 1fr;
  gap: 8px;
  align-items: center;
  border-radius: 11px;
  color: #d0c9be;
  background: rgba(255, 255, 255, 0.025);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
  font-size: 14px;
  line-height: 1.35;
}

.product-features li span {
  display: grid;
  width: 21px;
  height: 21px;
  place-items: center;
  border-radius: 50%;
  color: #171105;
  background: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.product-disclaimer {
  margin: 22px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(231, 185, 65, 0.1);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.process {
  display: grid;
  padding: 120px 0;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 120px;
  border-top: 1px solid rgba(231, 185, 65, 0.08);
}

.process-intro > p:last-child {
  max-width: 430px;
  margin: 27px 0 0;
  color: var(--body);
  font-size: 16px;
  line-height: 1.7;
}

.process-list {
  display: flex;
  flex-direction: column;
}

.process-list article {
  display: grid;
  min-height: 165px;
  padding: 26px 0;
  grid-template-columns: 65px 1fr;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(231, 185, 65, 0.09);
}

.process-list article:first-child {
  border-top: 1px solid rgba(231, 185, 65, 0.09);
}

.process-list span {
  padding-top: 3px;
  color: #c3a052;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
}

.process-list h3 {
  margin: 0 0 11px;
  color: #e1ddd4;
  font-size: 21px;
  font-weight: 500;
}

.process-list p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.6;
}

.advantages {
  display: grid;
  padding: 0 0 120px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.advantage {
  padding: 28px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.016);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.055);
}

.advantage span {
  color: #bf9e52;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
}

.advantage h3 {
  margin: 34px 0 13px;
  color: #e0dcd3;
  font-size: 19px;
  font-weight: 500;
}

.advantage p {
  margin: 0;
  color: var(--body);
  font-size: 15px;
  line-height: 1.65;
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: 120px 40px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  border-radius: 24px;
  text-align: center;
  background: #070705;
  box-shadow: inset 0 1px 1px rgba(248, 216, 128, 0.13), inset 0 0 0 1px rgba(231, 185, 65, 0.07);
}

.final-glow {
  position: absolute;
  top: -420px;
  left: 50%;
  width: 920px;
  height: 720px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(221, 177, 62, 0.25), rgba(138, 87, 7, 0.07) 44%, transparent 69%);
  filter: blur(20px);
  pointer-events: none;
}

.final-cta > *:not(.final-glow) {
  position: relative;
}

.final-cta h2 {
  font-size: clamp(48px, 6.2vw, 82px);
}

.final-cta > p:not(.section-kicker) {
  margin: 27px 0 30px;
  color: var(--body);
  font-size: 16px;
}

.footer {
  display: grid;
  padding: 48px 0 118px;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: end;
}

.footer-copy {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  text-align: center;
}

.footer-copy p {
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: flex-end;
  flex-direction: column;
  gap: 10px;
  color: var(--body);
  font-size: 14px;
}

.mobile-cta {
  display: none;
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.privacy-page {
  width: min(780px, calc(100% - 40px));
  margin: 0 auto;
  padding: 100px 0 120px;
}

.privacy-page h1 {
  margin: 0 0 30px;
  font-size: clamp(44px, 7vw, 76px);
}

.privacy-page h2 {
  margin: 44px 0 12px;
  color: #e9e3d8;
  font-size: 23px;
  font-weight: 600;
}

.privacy-page p,
.privacy-page li {
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
}

.privacy-page a {
  color: var(--gold-bright);
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 800px) {
  body::before {
    background-size: 62px 62px;
  }

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

  .site-header {
    min-height: 72px;
  }

  nav .nav-link {
    display: none;
  }

  .header-cta {
    padding: 0 11px;
    font-size: 11px;
  }

  .hero {
    min-height: 730px;
    padding: 95px 0 60px;
  }

  .hero-glow {
    top: -250px;
    width: calc(100% + 32px);
  }

  .eyebrow {
    gap: 9px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  h1 {
    margin-top: 24px;
    font-size: clamp(49px, 14.5vw, 73px);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 355px;
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-actions {
    margin-top: 25px;
    flex-direction: column;
    gap: 18px;
  }

  .trust-rail {
    display: grid;
    margin-top: 70px;
    padding: 22px 18px;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .trust-rail i {
    display: none;
  }

  .trust-rail div {
    align-items: center;
    text-align: center;
  }

  .statement {
    padding: 90px 0;
  }

  .statement-grid,
  .about,
  .section-heading,
  .process {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .statement h2,
  .section-heading h2,
  .process-intro h2 {
    font-size: 43px;
  }

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

  .about {
    padding: 90px 0;
    gap: 58px;
  }

  .about-profile {
    width: min(100%, 460px);
    margin-inline: auto;
  }

  .about-photo-frame {
    border-radius: 20px;
  }

  .about-profile-caption {
    right: 14px;
    bottom: 14px;
  }

  .about-content h2 {
    margin-bottom: 28px;
    font-size: 48px;
  }

  .about-copy p,
  .about-copy p:first-child {
    font-size: 16px;
  }

  .about-mission {
    margin-top: 34px;
    padding: 27px 24px;
  }

  .about-mission::before {
    left: 24px;
  }

  .services {
    padding: 90px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

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

  .product {
    width: calc(100% - 12px);
    padding: 58px 14px;
    grid-template-columns: 1fr;
    gap: 52px;
    border-radius: 20px;
  }

  .product-glow {
    top: -220px;
    left: -180px;
    width: 520px;
    height: 520px;
  }

  .product-badge {
    margin-bottom: 27px;
  }

  .product-intro h2 {
    font-size: 46px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-actions .primary-button,
  .download-button {
    width: 100%;
  }

  .product-report {
    padding: 24px 16px;
  }

  .product-features {
    grid-template-columns: 1fr;
    gap: 0;
    border-top: 1px solid rgba(231, 185, 65, 0.11);
  }

  .product-features li {
    min-height: 58px;
    padding: 14px 0;
    grid-template-columns: 26px 1fr;
    gap: 12px;
    border-bottom: 1px solid rgba(231, 185, 65, 0.11);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    font-size: 16px;
    line-height: 1.45;
  }

  .product-features li span {
    width: 24px;
    height: 24px;
  }

  .product-disclaimer {
    font-size: 14px;
  }

  .service-card {
    min-height: 210px;
    padding: 23px;
    grid-template-columns: 36px 1fr auto;
    gap: 13px;
  }

  .service-number {
    width: 34px;
    height: 34px;
  }

  .process {
    padding: 90px 0;
    gap: 48px;
  }

  .advantages {
    padding-bottom: 90px;
    grid-template-columns: 1fr;
  }

  .advantage h3 {
    margin-top: 24px;
  }

  .final-cta {
    width: calc(100% - 20px);
    min-height: 560px;
    padding: 90px 20px;
    border-radius: 20px;
  }

  .final-cta h2 {
    font-size: 48px;
  }

  .final-glow {
    width: 100%;
  }

  .final-cta > p:not(.section-kicker) {
    max-width: 330px;
    line-height: 1.6;
  }

  .footer {
    padding: 42px 0 110px;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-copy {
    text-align: left;
  }

  .footer-links {
    align-items: flex-start;
  }

  .mobile-cta {
    position: fixed;
    right: 16px;
    bottom: 16px;
    left: 16px;
    z-index: 30;
    display: flex;
    height: 56px;
    padding: 0 20px;
    align-items: center;
    justify-content: space-between;
    border-radius: 999px;
    color: #080a07;
    background: linear-gradient(135deg, #f3d36a, #c48c1f);
    box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.6), 0 18px 50px rgba(0, 0, 0, 0.6);
    font-size: 15px;
    font-weight: 700;
  }

  .mobile-cta span {
    display: inline-flex;
    align-items: center;
    gap: 9px;
  }

  .mobile-cta i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 8px rgba(37, 211, 102, 0.8);
  }
}
