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

:root {
  /* Backgrounds */
  --bg-deep: #060d06;
  --bg-primary: #0a1209;
  --bg-card: #0f1a0d;

  /* Gold Scale */
  --gold-dark: #8b6914;
  --gold: #c9a84c;
  --gold-light: #e8cf7a;

  /* Gold Alpha Scale */
  --gold-a5: rgba(201, 168, 76, 0.05);
  --gold-a6: rgba(201, 168, 76, 0.06);
  --gold-a7: rgba(201, 168, 76, 0.07);
  --gold-a8: rgba(201, 168, 76, 0.08);
  --gold-a10: rgba(201, 168, 76, 0.10);
  --gold-a15: rgba(201, 168, 76, 0.15);
  --gold-a20: rgba(201, 168, 76, 0.20);
  --gold-a25: rgba(201, 168, 76, 0.25);
  --gold-a30: rgba(201, 168, 76, 0.30);
  --gold-glow: var(--gold-a15);

  /* Green */
  --green-accent: #2d5a1e;
  --green-chart: #4a8f32;
  --green-a5: rgba(45, 90, 30, 0.05);
  --green-a6: rgba(45, 90, 30, 0.06);
  --green-a8: rgba(45, 90, 30, 0.08);

  /* Text */
  --text-primary: #f2ede4;
  --text-secondary: #b8b0a0;
  --text-muted: #7a7468;

  /* Error */
  --color-error: #e74c3c;
  --color-error-dark: #c0392b;
  --color-error-glow: rgba(192, 57, 43, 0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Easing */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html { scroll-behavior: smooth; scroll-padding-top: 2rem; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body.modal-open { overflow: hidden; }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 10002;
  transform: translateY(-150%);
  padding: 0.75rem 1rem;
  background: var(--gold);
  color: var(--bg-deep);
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s var(--ease-out-expo);
}
.skip-link:focus {
  transform: translateY(0);
}
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

.ambient-glow {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: 0;
}
.ambient-glow--gold {
  width: 600px; height: 600px;
  background: radial-gradient(circle, var(--gold-a7) 0%, transparent 70%);
  top: -200px; right: -200px;
  animation: float-glow 20s ease-in-out infinite;
}
.ambient-glow--green {
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--green-a8) 0%, transparent 70%);
  bottom: 20%; left: -150px;
  animation: float-glow 25s ease-in-out infinite reverse;
}
@keyframes float-glow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.1); }
  66% { transform: translate(-20px, 30px) scale(0.9); }
}

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}
.nav.scrolled {
  background: rgba(6, 13, 6, 0.94);
  box-shadow: 0 1px 0 var(--gold-a10);
}
.nav__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  text-decoration: none;
  letter-spacing: -0.02em;
}
.nav__logo span { color: var(--text-primary); font-weight: 400; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.nav__links a {
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s var(--ease-out-expo);
}
.nav__links a:hover { color: var(--gold); }
.nav__cta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease-out-expo);
  text-decoration: none;
}
.nav__cta:hover {
  background: var(--gold);
  color: var(--bg-deep);
}
button.nav__cta,
button.about__cta,
button.footer__button {
  appearance: none;
}

section {
  position: relative;
  z-index: 1;
  content-visibility: auto;
  contain-intrinsic-size: auto 720px;
}
.hero {
  content-visibility: visible;
  contain-intrinsic-size: auto;
}
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out-expo), transform 0.9s var(--ease-out-expo);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero {
  min-height: 94vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100%;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, var(--gold-a6) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, var(--green-a6) 0%, transparent 60%);
  pointer-events: none;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
  padding: 0.5rem 1rem;
  border: 1px solid var(--gold-a25);
  background: var(--gold-a5);
}
.hero__badge::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.7); }
}
.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero__title em {
  font-style: italic;
  color: var(--gold);
  position: relative;
}
.hero__title em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.hero__amount {
  display: block;
  font-size: 1.15em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero__subtitle {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
  max-width: 500px;
}
.hero__cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}
.btn {
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: var(--bg-deep);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out-back), box-shadow 0.3s;
  text-decoration: none;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  opacity: 0;
  transition: opacity 0.3s;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px var(--gold-a30);
}
.btn:hover::before { opacity: 1; }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 1.1rem 2.5rem;
}
.hero__trust {
  font-size: 0.82rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 560px;
  line-height: 1.5;
}
.hero__trust svg { color: var(--gold); flex-shrink: 0; }

.hero__photo-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__photo-frame {
  position: relative;
  width: 380px;
  height: 460px;
}
.hero__photo-frame::before {
  content: '';
  position: absolute;
  inset: -3px;
  background: linear-gradient(160deg, var(--gold) 0%, transparent 40%, transparent 60%, var(--gold-dark) 100%);
  z-index: 0;
}
.hero__photo-frame::after {
  content: '';
  position: absolute;
  top: 20px; left: 20px;
  right: -20px; bottom: -20px;
  border: 1px solid var(--gold-a15);
  z-index: -1;
}
.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: grayscale(15%) contrast(1.05);
}
.hero__photo-tag {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  background: var(--bg-deep);
  border: 1px solid var(--gold);
  padding: 0.5rem 1.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.ticker {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.85rem 0;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.ticker__track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 30s linear infinite;
  width: max-content;
}
.ticker__item {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--bg-deep);
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ticker__item::before {
  content: '◆';
  font-size: 0.5rem;
  opacity: 0.6;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0;
}
.section-title em {
  font-style: italic;
  color: var(--gold);
}
.section-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.5rem auto 0;
}
.section-subtitle {
  max-width: 720px;
  margin: 1rem auto 0;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}
.section-disclaimer {
  max-width: 780px;
  margin: 2rem auto 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  text-align: center;
}

.benefits {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
}
.benefits::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-a20), transparent);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.benefit-card {
  padding: 2.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-a8);
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}
.benefit-card:hover {
  border-color: var(--gold-a25);
  transform: translateY(-4px);
}
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}
.benefit-card:hover::before { transform: scaleX(1); }
.benefit-card__number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--gold-a10);
  line-height: 1;
  margin-bottom: 1.5rem;
}
.benefit-card__icon {
  width: 48px; height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-a20);
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.benefit-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.benefit-card__text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-secondary);
}

.method {
  padding: 7rem 0;
  background: var(--bg-deep);
  position: relative;
}
.method__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.method__visual {
  position: relative;
  height: 400px;
  background: var(--bg-card);
  border: 1px solid var(--gold-a10);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.method__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 70%, var(--gold-a5) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, var(--green-a5) 0%, transparent 50%);
}
.method__chart {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.method__title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
.method__title em {
  font-style: italic;
  color: var(--gold);
}
.method__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
}
.method__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.method__stat {
  text-align: center;
  padding: 1.25rem;
  background: var(--bg-card);
  border: 1px solid var(--gold-a10);
}
.method__stat-value {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
}
.method__stat-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.25rem;
  display: block;
}

.growth {
  padding: 7rem 0;
  background: var(--bg-primary);
  position: relative;
}
.growth::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-a20), transparent);
}
.growth__canvas-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--gold-a10);
  padding: 2rem;
  margin-top: 2rem;
}
.diagnostic-panel {
  background: var(--bg-card);
  border: 1px solid var(--gold-a10);
  padding: 2rem;
}
.diagnostic-panel__chart {
  min-height: 360px;
}
.growth__canvas {
  width: 100%;
  height: 350px;
  display: block;
}
.growth__disclaimer {
  font-size: 0.82rem;
  color: var(--text-secondary);
  text-align: center;
  margin-top: 1.5rem;
  line-height: 1.6;
}
.diagnostic-panel__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-top: 1.25rem;
}
.diagnostic-panel__list span {
  border: 1px solid var(--gold-a10);
  background: rgba(6, 13, 6, 0.42);
  color: var(--text-secondary);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.4;
  padding: 0.85rem;
  text-align: center;
}
.growth__legend {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}
.growth__legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--text-secondary);
}
.growth__legend-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
}
.growth__legend-dot--invested { background: var(--green-accent); }
.growth__legend-dot--total { background: var(--gold); }
.growth__legend-dot--profit { background: var(--gold-light); border: 1px dashed var(--gold); }

.about {
  padding: 7rem 0;
  background: var(--bg-deep);
  position: relative;
}
.about__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 4rem;
  align-items: center;
}
.about__photo-frame {
  width: 300px;
  height: 380px;
  position: relative;
}
.about__photo-frame::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(180deg, var(--gold) 0%, transparent 50%);
}
.about__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  filter: grayscale(15%);
}
.about__name {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.about__role {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.about__text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}
.about__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: gap 0.3s;
}
.about__cta:hover { gap: 0.85rem; }

.audience,
.call-steps,
.final-cta,
.legal-notice {
  padding: 7rem 0;
  position: relative;
}
.audience,
.final-cta {
  background: var(--bg-primary);
}
.call-steps,
.legal-notice {
  background: var(--bg-deep);
}
.audience::before,
.call-steps::before,
.final-cta::before,
.legal-notice::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-a20), transparent);
}
.audience__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.audience-card,
.call-step {
  background: var(--bg-card);
  border: 1px solid var(--gold-a10);
  color: var(--text-secondary);
  line-height: 1.7;
  padding: 2rem;
}
.audience-card {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--text-primary);
}
.call-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.call-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 1.25rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-family: var(--font-display);
  font-weight: 700;
}
.call-step h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: 0.75rem;
}
.call-step p {
  color: var(--text-secondary);
  line-height: 1.7;
}
.final-cta__inner {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
  padding: 3.5rem 2rem;
  border: 1px solid var(--gold-a15);
  background:
    radial-gradient(circle at 50% 0%, var(--gold-a8), transparent 55%),
    var(--bg-card);
}
.final-cta__inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.final-cta__inner p {
  max-width: 680px;
  margin: 0 auto 2rem;
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}
.final-cta__inner small {
  display: block;
  margin-top: 1rem;
  color: var(--text-secondary);
  font-size: 0.85rem;
}
.legal-notice__box {
  border: 1px solid var(--gold-a25);
  border-left: 3px solid var(--gold);
  background: var(--bg-card);
  padding: 2.5rem;
}
.legal-notice__box h2 {
  font-family: var(--font-display);
  color: var(--gold);
  font-size: 1.7rem;
  margin-bottom: 1rem;
}
.legal-notice__box p {
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 1rem;
}
.legal-notice__box p:last-child { margin-bottom: 0; }

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(0, 0, 0, 0.82);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  contain: layout paint style;
  transition: opacity 0.18s var(--ease-out-expo), visibility 0.18s;
  will-change: opacity;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-overlay.active .modal__box {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.modal__box {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  contain: layout paint style;
  transform: translateY(16px) scale(0.98);
  opacity: 0;
  transition: transform 0.22s var(--ease-out-expo), opacity 0.22s var(--ease-out-expo);
  will-change: transform, opacity;
}
.modal__box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid var(--gold-a20);
  color: var(--text-secondary);
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s;
  z-index: 2;
}
.modal__close:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.modal__title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  padding-right: 2rem;
}
.modal__title em { font-style: italic; color: var(--gold); }
.modal__sub {
  text-align: center;
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
@media (max-width: 480px) {
  .modal__box { padding: 2rem 1.5rem; }
  .modal__title { font-size: 1.35rem; }
}
.form__group {
  margin-bottom: 1.25rem;
}
.form__label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}
.form__input {
  width: 100%;
  padding: 0.95rem 1.25rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-primary);
  background: var(--bg-deep);
  border: 1px solid var(--gold-a15);
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}
select.form__input {
  appearance: none;
}
textarea.form__input {
  resize: vertical;
  min-height: 96px;
}
.form__input::placeholder { color: var(--text-muted); }
.form__input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.form__input.error {
  border-color: var(--color-error-dark);
  box-shadow: 0 0 0 3px var(--color-error-glow);
}
.form__error {
  font-size: 0.78rem;
  color: var(--color-error);
  margin-top: 0.35rem;
  display: none;
}
.form__error.visible { display: block; }
.form__consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
}
.form__consent input {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  margin-top: 0.15rem;
}
.form__consent label {
  color: var(--text-secondary);
  font-size: 0.86rem;
  line-height: 1.55;
}
.form__consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form__consent .form__error {
  grid-column: 2;
}
.form__submit {
  width: 100%;
  margin-top: 0.75rem;
  padding: 1.15rem;
  font-size: 1rem;
  letter-spacing: 0.06em;
}
.form__disclaimer {
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 1.25rem;
  line-height: 1.5;
}
.form__disclaimer svg {
  vertical-align: middle;
  margin-right: 0.25rem;
}

.form__success {
  display: none;
  text-align: center;
  padding: 2rem 0;
}
.form__success.visible { display: block; }
.form__success-icon {
  width: 64px; height: 64px;
  margin: 0 auto 1.5rem;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  animation: scale-in 0.5s var(--ease-out-back);
}
@keyframes scale-in {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
.form__success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.form__success-text {
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-disclaimer {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  padding: 1.5rem 1.5rem 0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

.footer {
  padding: 3rem 0;
  background: var(--bg-deep);
  border-top: 1px solid var(--gold-a8);
}
.footer__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  text-align: center;
}
.footer__brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
}
.footer__brand span { color: var(--text-muted); font-weight: 400; font-size: 0.85rem; }
.footer__links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  color: var(--text-muted);
  font-size: 0.82rem;
}
.footer__meta a {
  color: var(--text-secondary);
  text-decoration: none;
}
.footer__meta a:hover { color: var(--gold); }
.footer__link {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}
.footer__button {
  background: transparent;
  border: 0;
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
}
.footer__link:hover { color: var(--gold); }
.footer__sep {
  font-size: 0.7rem;
  color: rgba(122,116,104,0.4);
}
.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer__disclaimer {
  max-width: 720px;
  color: var(--text-secondary);
  font-size: 0.82rem;
  line-height: 1.6;
}

.legal-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 80% 45% at 80% 0%, var(--gold-a6) 0%, transparent 55%),
    var(--bg-deep);
}
.legal-page .nav {
  background: rgba(6, 13, 6, 0.96);
  border-bottom: 1px solid var(--gold-a10);
}
.legal-main {
  max-width: 860px;
  margin: 0 auto;
  padding: 8rem 1.5rem 4rem;
}
.legal-header {
  text-align: center;
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gold-a15);
}
.legal-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--gold);
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.legal-header p,
.legal-updated {
  color: var(--text-secondary);
  line-height: 1.7;
}
.legal-updated {
  display: inline-block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.legal-section {
  margin-bottom: 2.5rem;
}
.legal-section h2 {
  font-family: var(--font-display);
  color: var(--gold-light);
  font-size: 1.35rem;
  margin-bottom: 0.85rem;
}
.legal-section p,
.legal-section li {
  color: var(--text-secondary);
  font-size: 0.96rem;
  line-height: 1.8;
  margin-bottom: 0.8rem;
}
.legal-section ul {
  padding-left: 1.25rem;
}
.legal-section strong {
  color: var(--text-primary);
}
.legal-box {
  background: var(--bg-card);
  border: 1px solid var(--gold-a20);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light));
  z-index: 10000;
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 0.15s linear;
}

@media (max-width: 900px) {
  .nav__links { display: none; }
  .hero__grid { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle { margin-left: auto; margin-right: auto; }
  .hero__cta-group { align-items: center; }
  .hero__photo-frame { width: 280px; height: 340px; margin: 0 auto; }
  .hero__photo-wrapper { order: 1; }
  .benefits__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .method__grid { grid-template-columns: 1fr; }
  .method__visual { height: 300px; }
  .method__stats { grid-template-columns: repeat(3, 1fr); }
  .diagnostic-panel__list { grid-template-columns: repeat(2, 1fr); }
  .audience__grid,
  .call-steps__grid { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; text-align: center; }
  .about__photo-frame { width: 240px; height: 300px; margin: 0 auto; }
  .growth__legend { gap: 1.25rem; }
}
@media (max-width: 480px) {
  .nav { padding: 0.75rem 1rem; }
  .nav__logo { font-size: 1rem; }
  .nav__cta { padding: 0.5rem 0.75rem; font-size: 0.62rem; max-width: 170px; text-align: center; }
  .hero { padding: 6rem 0 4rem; }
  .hero__photo-frame { width: 220px; height: 270px; }
  .method__stats { grid-template-columns: 1fr; }
  .diagnostic-panel { padding: 1.25rem; }
  .diagnostic-panel__chart { min-height: 300px; }
  .diagnostic-panel__list { grid-template-columns: 1fr; }
  .audience,
  .call-steps,
  .final-cta,
  .legal-notice,
  .benefits,
  .method,
  .growth,
  .about { padding: 4.5rem 0; }
  .legal-notice__box,
  .final-cta__inner { padding: 2rem 1.25rem; }
  .growth__canvas { height: 280px; }
  .growth__legend { flex-direction: column; align-items: center; gap: 0.5rem; }
  .ticker__item { font-size: 0.7rem; }
}

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