:root {
  --navy-950: #041424;
  --navy-900: #071c33;
  --navy-850: #0a2543;
  --navy-800: #0d3157;
  --blue-700: #174c91;
  --blue-600: #1e5aa8;
  --blue-100: #eaf1f8;
  --gold-600: #bd8616;
  --gold-500: #d4af37;
  --gold-400: #e7bf46;
  --ink-900: #172033;
  --ink-700: #3c485d;
  --ink-500: #64748b;
  --line: #dbe3ed;
  --surface: #ffffff;
  --surface-soft: #f6f8fb;
  --surface-warm: #fbfaf6;
  --success: #16704c;
  --danger: #a72c2c;
  --shadow-sm: 0 10px 32px rgba(7, 28, 51, 0.07);
  --shadow-md: 0 22px 65px rgba(7, 28, 51, 0.12);
  --radius-sm: 14px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1180px;
  --header-height: 88px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
}

body {
  margin: 0;
  background: var(--surface);
  color: var(--ink-900);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

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

:focus-visible {
  outline: 3px solid rgba(212, 175, 55, 0.72);
  outline-offset: 4px;
}

::selection {
  background: var(--gold-500);
  color: var(--navy-950);
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--navy-900);
  transform: translateY(-160%);
  transition: transform 0.2s ease;
}

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

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

.section {
  position: relative;
  padding: 112px 0;
}

.section-sm {
  padding: 78px 0;
}

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

.section-warm {
  background: var(--surface-warm);
}

.section-dark {
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 8%, rgba(30, 90, 168, 0.28), transparent 32%),
    linear-gradient(145deg, var(--navy-950), var(--navy-850));
  color: var(--surface);
}

.section-dark::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 44px 44px;
  content: "";
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 34px;
  height: 2px;
  background: var(--gold-500);
  content: "";
}

.section-dark .eyebrow,
.page-hero .eyebrow,
.cta-panel .eyebrow {
  color: var(--gold-400);
}

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

h1,
h2,
h3,
h4 {
  color: var(--navy-900);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.75rem, 6.4vw, 5.8rem);
}

h2 {
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.75rem);
}

.section-dark h2,
.section-dark h3,
.page-hero h1,
.cta-panel h2 {
  color: var(--surface);
}

.display-serif {
  font-family: "Source Serif 4", Georgia, serif;
  font-style: italic;
  font-weight: 500;
  letter-spacing: -0.025em;
}

.title-accent {
  color: var(--gold-500);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 54px;
  align-items: end;
  margin-bottom: 56px;
}

.section-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 4px;
  color: var(--ink-500);
}

.section-dark .section-heading p {
  color: rgba(255, 255, 255, 0.68);
}

.lead {
  color: var(--ink-700);
  font-size: clamp(1.06rem, 1.7vw, 1.22rem);
  line-height: 1.75;
}

.text-muted {
  color: var(--ink-500);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.92rem;
  font-weight: 750;
  line-height: 1.2;
  transition: transform 0.25s var(--ease), background-color 0.25s ease,
    border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
}

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

.btn-primary {
  background: var(--gold-500);
  color: var(--navy-950);
  box-shadow: 0 10px 28px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover {
  background: var(--gold-400);
  box-shadow: 0 14px 34px rgba(212, 175, 55, 0.28);
}

.btn-dark {
  background: var(--navy-900);
  color: var(--surface);
}

.btn-dark:hover {
  background: var(--blue-700);
}

.btn-outline {
  border-color: rgba(7, 28, 51, 0.18);
  background: rgba(255, 255, 255, 0.72);
  color: var(--navy-900);
}

.section-dark .btn-outline,
.page-hero .btn-outline,
.cta-panel .btn-outline {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.05);
  color: var(--surface);
}

.btn-outline:hover {
  border-color: var(--gold-500);
  background: rgba(212, 175, 55, 0.09);
}

.arrow {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
  transition: transform 0.25s var(--ease);
}

a:hover .arrow,
button:hover .arrow {
  transform: translateX(3px);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height 0.3s var(--ease), background-color 0.3s ease,
    border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled,
.site-header.header-solid {
  height: 76px;
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(4, 20, 36, 0.94);
  box-shadow: 0 10px 34px rgba(4, 20, 36, 0.15);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.nav-wrap {
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

.brand img {
  width: 78px;
  height: 64px;
  object-fit: contain;
  transform: scale(1.6);
  transition: width 0.3s var(--ease), height 0.3s var(--ease), transform 0.3s var(--ease);
}

.is-scrolled .brand img,
.header-solid .brand img {
  width: 65px;
  height: 54px;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a:not(.btn) {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 650;
  transition: color 0.2s ease;
}

.desktop-nav a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -9px;
  left: 0;
  height: 2px;
  background: var(--gold-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s var(--ease);
}

.desktop-nav a:not(.btn):hover,
.desktop-nav a:not(.btn).is-active {
  color: var(--surface);
}

.desktop-nav a:not(.btn):hover::after,
.desktop-nav a:not(.btn).is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--surface);
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before,
.nav-toggle-lines::after {
  position: absolute;
  left: 0;
}

.nav-toggle-lines::before {
  top: -6px;
}

.nav-toggle-lines::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-nav {
  position: fixed;
  inset: 76px 0 0;
  display: grid;
  align-content: start;
  gap: 2px;
  padding: 24px 20px 42px;
  background: rgba(4, 20, 36, 0.99);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-15px);
  transition: opacity 0.25s ease, transform 0.25s var(--ease);
}

.mobile-nav.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-nav a:not(.btn) {
  padding: 16px 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  color: var(--surface);
  font-size: 1.08rem;
  font-weight: 650;
}

.mobile-nav .btn {
  margin-top: 22px;
}

/* Hero */
.hero {
  position: relative;
  display: grid;
  min-height: 780px;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + 84px) 0 84px;
  background:
    radial-gradient(circle at 76% 26%, rgba(30, 90, 168, 0.32), transparent 30%),
    radial-gradient(circle at 94% 88%, rgba(212, 175, 55, 0.13), transparent 25%),
    linear-gradient(142deg, var(--navy-950) 0%, var(--navy-900) 52%, var(--navy-850) 100%);
  color: var(--surface);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 58px 58px;
  content: "";
  -webkit-mask-image: linear-gradient(to right, transparent, #000 48%, #000);
  mask-image: linear-gradient(to right, transparent, #000 48%, #000);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: clamp(40px, 6vw, 92px);
  align-items: center;
}

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

.hero h1 {
  max-width: 760px;
  margin-bottom: 26px;
  color: var(--surface);
  font-size: clamp(3rem, 5.7vw, 5.25rem);
}

.hero .lead {
  max-width: 650px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.74);
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  font-weight: 650;
}

.hero-note span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-note span::before {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
  content: "";
}

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

.system-orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.system-orbit::before,
.system-orbit::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  content: "";
}

.system-orbit::before {
  inset: 54px;
}

.system-orbit::after {
  inset: 112px;
  border-color: rgba(212, 175, 55, 0.25);
}

.system-core {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 164px;
  height: 164px;
  place-items: center;
  border: 1px solid rgba(212, 175, 55, 0.48);
  border-radius: 50%;
  background: rgba(7, 28, 51, 0.9);
  box-shadow: 0 0 80px rgba(30, 90, 168, 0.32), inset 0 0 44px rgba(30, 90, 168, 0.18);
  color: var(--surface);
  text-align: center;
  transform: translate(-50%, -50%);
}

.system-core strong {
  display: block;
  color: var(--gold-400);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.system-core span {
  display: block;
  margin-top: 5px;
  font-size: 1.08rem;
  font-weight: 800;
}

.orbit-dot {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 2px solid var(--navy-900);
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08);
}

.orbit-dot.dot-1 {
  top: 24px;
  left: 120px;
  animation: pulse 3.2s ease-in-out infinite;
}

.orbit-dot.dot-2 {
  right: 19px;
  bottom: 132px;
  animation: pulse 3.2s 0.8s ease-in-out infinite;
}

.orbit-dot.dot-3 {
  bottom: 40px;
  left: 78px;
  animation: pulse 3.2s 1.6s ease-in-out infinite;
}

.system-card {
  position: absolute;
  width: 192px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 20px;
  background: rgba(9, 38, 69, 0.94);
  box-shadow: 0 20px 42px rgba(0, 0, 0, 0.2);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: float 6s var(--ease) infinite;
}

.system-card strong {
  display: block;
  margin-bottom: 5px;
  color: var(--surface);
  font-size: 0.88rem;
}

.system-card span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.72rem;
  line-height: 1.5;
}

.system-card::before {
  display: block;
  width: 34px;
  height: 3px;
  margin-bottom: 13px;
  border-radius: 999px;
  background: var(--gold-500);
  content: "";
}

.system-card.card-1 {
  top: 15px;
  right: 0;
}

.system-card.card-2 {
  top: 214px;
  left: -22px;
  animation-delay: -2s;
}

.system-card.card-3 {
  right: 12px;
  bottom: 5px;
  animation-delay: -4s;
}

.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.hero-scroll::before {
  width: 1px;
  height: 34px;
  background: linear-gradient(var(--gold-500), transparent);
  content: "";
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-9px);
  }
}

@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.08);
  }
  50% {
    box-shadow: 0 0 0 14px rgba(212, 175, 55, 0.02);
  }
}

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -1px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1.15fr repeat(3, 1fr);
}

.trust-item {
  display: flex;
  min-height: 112px;
  align-items: center;
  gap: 14px;
  padding: 25px 30px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  padding-left: 0;
}

.trust-item:last-child {
  border-right: 0;
  padding-right: 0;
}

.trust-number {
  color: var(--navy-900);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 1;
}

.trust-label {
  color: var(--ink-500);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.45;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--navy-900);
  font-size: 0.82rem;
  font-weight: 750;
}

.trust-badge::before {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  content: "";
}

/* Problems */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.problem-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  transition: transform 0.35s var(--ease), border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.problem-card:hover {
  border-color: rgba(23, 76, 145, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-5px);
}

.problem-card::after {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(23, 76, 145, 0.08);
  border-radius: 50%;
  content: "";
}

.problem-index {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  margin-bottom: 36px;
  border-radius: 50%;
  background: var(--blue-100);
  color: var(--blue-700);
  font-size: 0.72rem;
  font-weight: 800;
}

.problem-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.problem-card p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.9rem;
}

/* Before and after */
.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.comparison-side {
  padding: 52px;
}

.comparison-side.after {
  background:
    radial-gradient(circle at 92% 8%, rgba(212, 175, 55, 0.12), transparent 24%),
    var(--navy-900);
  color: var(--surface);
}

.comparison-label {
  display: inline-flex;
  margin-bottom: 30px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--ink-500);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.after .comparison-label {
  background: rgba(212, 175, 55, 0.12);
  color: var(--gold-400);
}

.comparison-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.comparison-list li {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--ink-700);
  font-size: 0.95rem;
}

.comparison-list li::before {
  display: inline-flex;
  width: 22px;
  height: 22px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef1f4;
  color: var(--ink-500);
  content: "×";
  font-weight: 800;
}

.after .comparison-list li {
  color: rgba(255, 255, 255, 0.82);
}

.after .comparison-list li::before {
  background: rgba(212, 175, 55, 0.14);
  color: var(--gold-400);
  content: "✓";
}

/* Pillars */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.pillar-card {
  position: relative;
  display: flex;
  min-height: 520px;
  flex-direction: column;
  overflow: hidden;
  padding: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.045);
  transition: background-color 0.35s ease, transform 0.35s var(--ease),
    border-color 0.35s ease;
}

.pillar-card:hover {
  border-color: rgba(212, 175, 55, 0.4);
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-6px);
}

.pillar-number {
  margin-bottom: 54px;
  color: var(--gold-400);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.pillar-card h3 {
  margin-bottom: 16px;
  color: var(--surface);
  font-size: 1.85rem;
}

.pillar-card > p {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

.pillar-list {
  display: grid;
  gap: 10px;
  margin: 0 0 30px;
  padding: 0;
  list-style: none;
}

.pillar-list li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 9px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.82rem;
}

.pillar-list li::before {
  color: var(--gold-400);
  content: "•";
  font-size: 1rem;
}

.pillar-result {
  margin-top: auto;
  padding-top: 23px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--surface);
  font-size: 0.8rem;
  font-weight: 700;
}

/* Method */
.method-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.method-grid::before {
  position: absolute;
  top: 31px;
  right: 10%;
  left: 10%;
  height: 1px;
  background: linear-gradient(90deg, var(--gold-500), var(--blue-600));
  content: "";
}

.method-step {
  position: relative;
  z-index: 1;
}

.method-marker {
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  border: 7px solid var(--surface-soft);
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.74rem;
  font-weight: 800;
  box-shadow: 0 0 0 1px rgba(7, 28, 51, 0.12);
}

.method-step h3 {
  margin-bottom: 11px;
  font-size: 1.15rem;
}

.method-step p {
  margin-bottom: 16px;
  color: var(--ink-500);
  font-size: 0.88rem;
}

.method-step small {
  color: var(--blue-700);
  font-size: 0.76rem;
  font-weight: 750;
}

/* Result statement */
.result-panel {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  align-items: center;
}

.result-number {
  color: var(--gold-400);
  font-size: clamp(5rem, 11vw, 10rem);
  font-weight: 800;
  letter-spacing: -0.09em;
  line-height: 0.85;
}

.result-number span {
  display: block;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.5;
}

.result-copy h2 {
  margin-bottom: 24px;
}

.result-copy p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
  min-height: 230px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
}

.feature-icon {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
}

.feature-card h3 {
  margin-bottom: 12px;
  font-size: 1.13rem;
}

.feature-card p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.88rem;
}

/* CTA */
.cta-wrap {
  padding: 0 0 112px;
  background: var(--surface);
}

.cta-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 54px;
  align-items: center;
  overflow: hidden;
  padding: clamp(46px, 7vw, 82px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 90% 10%, rgba(30, 90, 168, 0.34), transparent 34%),
    linear-gradient(140deg, var(--navy-950), var(--navy-850));
  color: var(--surface);
  box-shadow: var(--shadow-md);
}

.cta-panel::after {
  position: absolute;
  right: -80px;
  bottom: -130px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(212, 175, 55, 0.24);
  border-radius: 50%;
  content: "";
}

.cta-panel > * {
  position: relative;
  z-index: 1;
}

.cta-panel h2 {
  max-width: 710px;
  margin-bottom: 0;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
}

/* Page hero */
.page-hero {
  position: relative;
  display: grid;
  min-height: 570px;
  align-items: end;
  overflow: hidden;
  padding: calc(var(--header-height) + 92px) 0 92px;
  background:
    radial-gradient(circle at 85% 22%, rgba(30, 90, 168, 0.34), transparent 32%),
    linear-gradient(145deg, var(--navy-950), var(--navy-850));
  color: var(--surface);
}

.page-hero::after {
  position: absolute;
  right: -110px;
  bottom: -210px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 50%;
  content: "";
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.page-hero h1 {
  margin-bottom: 24px;
  font-size: clamp(2.8rem, 6vw, 5.1rem);
}

.page-hero p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.12rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.76rem;
}

.breadcrumb a:hover {
  color: var(--gold-400);
}

/* About */
.manifesto-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 84px;
  align-items: start;
}

.manifesto-sticky {
  position: sticky;
  top: 120px;
}

.manifesto-sticky h2 {
  margin-bottom: 24px;
}

.manifesto-copy {
  display: grid;
  gap: 22px;
}

.manifesto-copy p {
  color: var(--ink-700);
  font-size: 1.04rem;
}

.quote-block {
  margin-top: 18px;
  padding: 34px;
  border-left: 3px solid var(--gold-500);
  background: var(--surface-soft);
  color: var(--navy-900);
  font-family: "Source Serif 4", Georgia, serif;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  font-style: italic;
  line-height: 1.45;
}

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

.value-card {
  min-height: 280px;
  padding: 36px;
  border-top: 3px solid var(--gold-500);
  background: rgba(255, 255, 255, 0.05);
}

.value-card span {
  display: block;
  margin-bottom: 48px;
  color: var(--gold-400);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.13em;
}

.value-card h3 {
  color: var(--surface);
}

.value-card p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.9rem;
}

/* Solutions details */
.solution-block {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 70px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.solution-block:last-child {
  border-bottom: 0;
}

.solution-title {
  position: sticky;
  top: 120px;
  align-self: start;
}

.solution-number {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.solution-title h2 {
  margin-bottom: 18px;
}

.solution-title p {
  color: var(--ink-500);
}

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

.deliverable {
  min-height: 154px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.deliverable strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy-900);
}

.deliverable p {
  margin-bottom: 0;
  color: var(--ink-500);
  font-size: 0.83rem;
}

.outcome-box {
  margin-top: 18px;
  padding: 28px;
  border-radius: 18px;
  background: var(--blue-100);
}

.outcome-box strong {
  display: block;
  margin-bottom: 7px;
  color: var(--blue-700);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.outcome-box p {
  margin-bottom: 0;
  color: var(--navy-900);
  font-weight: 700;
}

/* Methodology page */
.method-detail {
  display: grid;
  grid-template-columns: 84px 0.8fr 1.2fr;
  gap: 34px;
  align-items: start;
  padding: 52px 0;
  border-bottom: 1px solid var(--line);
}

.method-detail:last-child {
  border-bottom: 0;
}

.method-detail-number {
  display: inline-flex;
  width: 66px;
  height: 66px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-weight: 800;
}

.method-detail h2 {
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.method-detail > p,
.method-detail-copy > p {
  color: var(--ink-500);
}

.method-detail-copy ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-detail-copy li {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  color: var(--ink-700);
}

.method-detail-copy li::before {
  color: var(--gold-600);
  content: "✓";
  font-weight: 800;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 116px;
}

.contact-copy h2 {
  margin-bottom: 22px;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--navy-900);
  font-size: 0.9rem;
  font-weight: 700;
}

.contact-list a:hover {
  color: var(--blue-700);
}

.contact-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-500);
}

.contact-form {
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

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

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--navy-900);
  font-size: 0.78rem;
  font-weight: 750;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-soft);
  color: var(--ink-900);
  transition: border-color 0.2s ease, background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.form-field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--blue-600);
  background: var(--surface);
  box-shadow: 0 0 0 4px rgba(30, 90, 168, 0.1);
  outline: none;
}

.form-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  margin: 20px 0;
  color: var(--ink-500);
  font-size: 0.76rem;
}

.form-consent input {
  width: 17px;
  height: 17px;
  margin-top: 3px;
  accent-color: var(--navy-900);
}

.form-consent a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.84rem;
  font-weight: 650;
}

.form-status.is-visible {
  display: block;
}

.form-status.success {
  background: #e9f7f0;
  color: var(--success);
}

.form-status.error {
  background: #fff0f0;
  color: var(--danger);
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(1px, 1px, 1px, 1px) !important;
  white-space: nowrap !important;
}

/* Privacy */
.legal-content {
  max-width: 830px;
  margin-inline: auto;
}

.legal-content h2 {
  margin-top: 52px;
  margin-bottom: 16px;
  font-size: 1.8rem;
}

.legal-content h3 {
  margin-top: 32px;
  font-size: 1.2rem;
}

.legal-content p,
.legal-content li {
  color: var(--ink-700);
}

.legal-content a {
  color: var(--blue-700);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--surface);
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 48px;
  padding: 76px 0 58px;
}

.footer-brand img {
  width: 110px;
  height: 90px;
  object-fit: contain;
}

.footer-brand p {
  max-width: 320px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.82rem;
}

.footer-column h2 {
  margin-bottom: 22px;
  color: var(--surface);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--gold-400);
}

.footer-bottom {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.72rem;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease,
    transform 0.2s var(--ease);
}

.social-links a:hover {
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  gap: 10px;
  padding: 11px 17px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  background: #167d51;
  color: var(--surface);
  box-shadow: 0 14px 34px rgba(8, 64, 39, 0.26);
  font-size: 0.78rem;
  font-weight: 750;
  transition: transform 0.25s var(--ease), background-color 0.25s ease;
}

.whatsapp-float:hover {
  background: #126c45;
  transform: translateY(-3px);
}

.whatsapp-icon {
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  font-size: 0.68rem;
  font-weight: 800;
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

/* Responsive */
@media (max-width: 1040px) {
  :root {
    --header-height: 76px;
  }

  .desktop-nav {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .hero {
    min-height: auto;
    padding-top: 150px;
  }

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

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

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

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:first-child,
  .trust-item:last-child {
    padding-inline: 30px;
  }

  .pillar-grid,
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }

  .pillar-card:last-child,
  .feature-card:last-child {
    grid-column: 1 / -1;
  }

  .footer-main {
    grid-template-columns: 1.25fr 0.75fr 0.75fr;
  }

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 820px) {
  .section {
    padding: 86px 0;
  }

  .section-heading,
  .manifesto-grid,
  .solution-block,
  .contact-layout,
  .result-panel,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 40px;
  }

  .manifesto-grid,
  .solution-block,
  .contact-layout,
  .result-panel {
    gap: 38px;
  }

  .manifesto-sticky,
  .solution-title,
  .contact-copy {
    position: static;
  }

  .problem-grid,
  .value-grid {
    grid-template-columns: 1fr 1fr;
  }

  .problem-card:last-child,
  .value-card:last-child {
    grid-column: 1 / -1;
  }

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

  .comparison-side {
    padding: 38px;
  }

  .method-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 20px;
  }

  .method-grid::before {
    display: none;
  }

  .method-detail {
    grid-template-columns: 66px 1fr;
  }

  .method-detail-copy {
    grid-column: 2;
  }

  .cta-panel {
    gap: 34px;
  }

  .cta-actions {
    align-items: flex-start;
  }

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

  .footer-brand,
  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  :root {
    --radius-lg: 26px;
    --radius-md: 20px;
  }

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

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  h2 {
    font-size: clamp(2rem, 10vw, 2.8rem);
  }

  .brand img {
    width: 62px;
    height: 52px;
  }

  .hero {
    padding-top: 126px;
    padding-bottom: 62px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.6vw, 3.8rem);
  }

  .hero .lead {
    font-size: 1rem;
  }

  .button-row {
    align-items: stretch;
  }

  .button-row .btn {
    width: 100%;
  }

  .hero-visual {
    min-height: 410px;
    margin-top: 10px;
  }

  .system-orbit {
    width: 320px;
    height: 320px;
  }

  .system-orbit::before {
    inset: 43px;
  }

  .system-orbit::after {
    inset: 93px;
  }

  .system-core {
    width: 134px;
    height: 134px;
  }

  .system-card {
    width: 148px;
    padding: 14px;
  }

  .system-card.card-1 {
    top: 0;
    right: 0;
  }

  .system-card.card-2 {
    top: 172px;
    left: -4px;
  }

  .system-card.card-3 {
    right: 0;
    bottom: 0;
  }

  .hero-scroll {
    display: none;
  }

  .trust-grid,
  .problem-grid,
  .pillar-grid,
  .method-grid,
  .feature-grid,
  .value-grid,
  .deliverable-grid,
  .form-grid,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:first-child,
  .trust-item:last-child {
    min-height: 92px;
    padding: 20px 6px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .problem-card:last-child,
  .pillar-card:last-child,
  .feature-card:last-child,
  .value-card:last-child,
  .footer-brand,
  .footer-column:last-child {
    grid-column: auto;
  }

  .problem-card {
    min-height: auto;
    padding: 26px;
  }

  .problem-index {
    margin-bottom: 24px;
  }

  .comparison-side {
    padding: 30px 24px;
  }

  .pillar-card {
    min-height: 470px;
    padding: 30px 25px;
  }

  .method-grid {
    gap: 32px;
  }

  .method-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    column-gap: 16px;
  }

  .method-marker {
    grid-row: 1 / span 3;
    width: 54px;
    height: 54px;
    margin-bottom: 0;
    border-width: 5px;
  }

  .method-step h3,
  .method-step p {
    margin-bottom: 8px;
  }

  .method-detail {
    grid-template-columns: 52px 1fr;
    gap: 20px;
  }

  .method-detail-number {
    width: 52px;
    height: 52px;
  }

  .contact-form {
    padding: 28px 20px;
  }

  .form-field.full,
  .method-detail-copy {
    grid-column: auto;
  }

  .cta-wrap {
    padding-bottom: 72px;
  }

  .cta-panel {
    padding: 42px 24px;
  }

  .cta-actions {
    align-items: stretch;
  }

  .footer-main {
    gap: 34px;
    padding: 60px 0 42px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 52px;
    height: 52px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .whatsapp-float > span:last-child {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

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