:root {
  --dark: #141414;
  --black: #0f0f0f;
  --cream: #f6efe6;
  --cream-2: #efe2d2;
  --white: #ffffff;
  --gold: #b8873e;
  --gold-light: #d6ad63;
  --text: #1c1c1c;
  --muted: #5d5d5d;
  --border: rgba(20, 20, 20, 0.12);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.12);
  --radius: 28px;
}

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

body {
  font-family: Inter, Arial, sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.55;
}

h1, h2, h3 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 500;
  letter-spacing: -0.04em;
}

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

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

.section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
}

.section > .container {
  position: relative;
  z-index: 1;
}

.section:not(.about)::before,
.section:not(.about)::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184,135,62,.16);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.section:not(.about)::before {
  width: 360px;
  height: 360px;
  left: -180px;
  top: 72px;
}

.section:not(.about)::after {
  width: 520px;
  height: 520px;
  right: -260px;
  bottom: -210px;
}

.section.analysis::before,
.section.analysis::after {
  border-color: rgba(255,255,255,.14);
}

.section.analysis::after {
  right: -380px;
  bottom: -300px;
}

.eyebrow {
  display: inline-flex;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--gold);
  color: white;
  padding: 18px 28px;
  border-radius: 14px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 13px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 40px rgba(184, 135, 62, 0.25);
  transition: 0.25s ease;
}

.btn:hover { background: #98692e; transform: translateY(-2px); }

.btn-secondary {
  background: rgba(255,255,255,0.55);
  color: var(--dark);
  border: 1px solid var(--border);
  box-shadow: none;
}

.btn-secondary:hover { background: white; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 80px;
  background:
    radial-gradient(circle at 88% 0%, rgba(214,173,99,.34) 0%, transparent 28%),
    linear-gradient(135deg, #f8f2ea 0%, #efe2d2 100%);
}

.hero::before,
.hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184,135,62,.25);
  border-radius: 999px;
  width: 420px;
  height: 420px;
  pointer-events: none;
}

.hero::before { left: -170px; top: 120px; }
.hero::after { right: -160px; bottom: -160px; }

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 60px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(48px, 7vw, 86px);
  line-height: .95;
  max-width: 780px;
}

.gold { color: var(--gold); }

.hero p {
  font-size: 20px;
  line-height: 1.7;
  color: #333;
  max-width: 690px;
  margin-top: 24px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.hero-note {
  margin-top: 14px;
  color: #555;
  font-size: 14px;
  font-weight: 700;
}

.portrait-card {
  position: relative;
  border-radius: 34px;
  padding: 12px;
  background: rgba(255,255,255,.45);
  border: 1px solid rgba(255,255,255,.7);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.portrait-card img {
  width: 100%;
  height: 620px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.quote-box {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  background: rgba(15,15,15,.86);
  color: white;
  padding: 24px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
}

.quote-box strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 500;
}

.quote-box span {
  display: block;
  margin-top: 12px;
  color: var(--gold-light);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 12px;
  font-weight: 800;
}

.audience-strip {
  background: var(--dark);
  padding: 58px 0 68px;
}

.audience-label {
  margin-bottom: 24px;
  color: white;
  text-align: center;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(48px, 7vw, 86px);
  font-weight: 500;
  line-height: .95;
  letter-spacing: 0;
}

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

.audience-item {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.035);
  color: var(--gold-light);
  border-radius: 18px;
  padding: 18px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: 12px;
  font-weight: 800;
}

.two-col {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 70px;
  align-items: start;
}

.section h2 {
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1;
  max-width: 760px;
}

.card {
  background: white;
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
}

.lead {
  font-size: 21px;
  line-height: 1.75;
  color: #333;
}

.pain-list { display: grid; gap: 14px; margin-top: 30px; }

.pain-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #f7f1e8;
  border-radius: 16px;
  padding: 17px;
  font-size: 18px;
}

.icon-dot {
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--dark);
  color: var(--gold-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  margin-top: 2px;
}

.statement {
  margin-top: 34px;
  padding-left: 22px;
  border-left: 3px solid var(--gold);
  font-size: 21px;
  line-height: 1.65;
  font-weight: 700;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--dark);
  color: white;
}

.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 12%, rgba(214,173,99,.24) 0%, transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.06), transparent 42%);
  pointer-events: none;
}

.about::after {
  content: '';
  position: absolute;
  width: 560px;
  height: 560px;
  right: -250px;
  top: 88px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  pointer-events: none;
  z-index: 0;
}

.about-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 52px;
  align-items: stretch;
  --about-story-offset: clamp(140px, 12vw, 176px);
}

.about h2 {
  color: white;
  max-width: 560px;
  margin-bottom: 24px;
  font-size: clamp(34px, 4vw, 56px);
  line-height: .98;
}

.about-intro {
  position: sticky;
  top: 34px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-image {
  margin-top: 28px;
  flex: 1;
  min-height: 520px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 44px rgba(0,0,0,.24);
}

.about-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.about-proof {
  margin-top: 18px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: rgba(255,255,255,.06);
  border-radius: 0 18px 18px 0;
}

.about-proof strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--gold-light);
  font-size: 30px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.about-proof span {
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.45;
}

.about-story {
  margin-top: var(--about-story-offset);
  background: rgba(246,239,230,.92);
  color: var(--text);
  border: 1px solid rgba(184,135,62,.18);
  border-radius: 18px;
  padding: 30px 34px;
  box-shadow: 0 16px 42px rgba(0,0,0,.1);
}

.about-story p {
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

.about-story p + p { margin-top: 9px; }

.about-story .story-quote {
  margin: 16px 0;
  padding: 13px 0 13px 18px;
  border-left: 3px solid var(--gold);
  color: var(--dark);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(26px, 2.8vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.about-story .story-emphasis {
  color: var(--dark);
  font-size: 19px;
  line-height: 1.35;
  font-weight: 800;
}

.about-story .story-final {
  margin-top: 16px;
  padding: 16px;
  border-radius: 14px;
  background: rgba(255,255,255,.62);
  color: var(--dark);
  font-size: 17px;
  line-height: 1.42;
  font-weight: 800;
}

.benefits {
  background: var(--cream-2);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 54px;
}

.benefit-card {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(184,135,62,.22);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(184,135,62,.12);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 24px;
}

.benefit-card h3 {
  font-family: Inter, Arial, sans-serif;
  letter-spacing: 0;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-card p { color: var(--muted); }

.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.compare-card {
  border-radius: var(--radius);
  padding: 34px;
  box-shadow: var(--shadow);
  background: white;
}

.compare-card.dark {
  background: var(--dark);
  color: white;
}

.tag {
  display: inline-flex;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--dark);
  color: white;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 11px;
  font-weight: 800;
  margin-bottom: 24px;
}

.dark .tag { background: var(--gold); }

.compare-list {
  list-style: none;
  display: grid;
  gap: 18px;
  font-size: 18px;
}

.compare-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.analysis {
  background: var(--dark);
  color: white;
}

.analysis h2 { color: white; }

.analysis-steps {
  display: grid;
  gap: 16px;
}

.analysis-step {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 18px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(28,28,28,.96);
  border-radius: 20px;
  padding: 22px;
  font-size: 18px;
}

.form-wrap {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  background: white;
  border-radius: 34px;
  padding: 48px;
  box-shadow: var(--shadow);
}

.form-wrap h2 { font-size: clamp(36px, 4vw, 56px); }

.form-wrap p {
  margin-top: 20px;
  font-size: 18px;
  line-height: 1.75;
  color: #444;
}

.notice {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  background: #f7f1e8;
  padding: 18px;
  border-radius: 18px;
  font-weight: 700;
}

form {
  background: #f8f2ea;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: grid;
  gap: 14px;
}

.form-trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

input, select {
  width: 100%;
  border: 1px solid rgba(20,20,20,.12);
  background: white;
  border-radius: 14px;
  padding: 17px 16px;
  font: inherit;
  outline: none;
}

input:focus, select:focus { border-color: var(--gold); }

.privacy {
  text-align: center;
  color: #777;
  font-size: 12px;
  line-height: 1.6;
}

footer {
  border-top: 1px solid var(--border);
  padding: 36px 0;
  text-align: center;
}

.logo {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 36px;
  color: var(--gold);
  margin-bottom: 8px;
}

footer p {
  text-transform: uppercase;
  letter-spacing: .25em;
  font-size: 12px;
  font-weight: 800;
}

footer span {
  display: block;
  margin-top: 6px;
  color: var(--gold);
  letter-spacing: .18em;
}

.footer-links {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.footer-links a,
.footer-links button,
.back-link {
  border: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
}

.footer-links a[aria-current="page"] {
  color: var(--gold);
}

.legal-page {
  background: var(--cream);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 64px;
  background:
    radial-gradient(circle at 88% 0%, rgba(214,173,99,.28) 0%, transparent 30%),
    linear-gradient(135deg, #f8f2ea 0%, #efe2d2 100%);
}

.legal-hero::before,
.legal-hero::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(184,135,62,.22);
  border-radius: 999px;
  pointer-events: none;
}

.legal-hero::before {
  width: 320px;
  height: 320px;
  left: -150px;
  top: 70px;
}

.legal-hero::after {
  width: 460px;
  height: 460px;
  right: -230px;
  bottom: -260px;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
}

.legal-hero h1 {
  font-size: clamp(48px, 7vw, 84px);
  line-height: .95;
  margin-top: 24px;
}

.legal-hero p {
  max-width: 640px;
  margin-top: 22px;
  color: #333;
  font-size: 20px;
  line-height: 1.65;
}

.legal-main {
  padding: 76px 0 96px;
}

.legal-content {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.legal-section {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 18px 45px rgba(0,0,0,.06);
}

.legal-section h2 {
  margin-bottom: 16px;
  font-family: Inter, Arial, sans-serif;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0;
}

.legal-section h3 {
  margin: 22px 0 8px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0;
}

.legal-section p,
.legal-section li,
.legal-data {
  color: #444;
  font-size: 17px;
  line-height: 1.7;
}

.legal-section a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-updated {
  color: var(--dark);
  font-weight: 700;
}

.legal-section code {
  color: var(--dark);
  font-family: Menlo, Consolas, monospace;
  font-size: .94em;
}

.legal-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
}

.legal-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: white;
}

.legal-table th,
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  color: #444;
  font-size: 14px;
  line-height: 1.5;
}

.legal-table th {
  color: var(--dark);
  background: #f8f2ea;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.legal-table tr:last-child td {
  border-bottom: 0;
}

.legal-data {
  display: grid;
  gap: 16px;
  margin: 0;
}

.legal-data div {
  display: grid;
  grid-template-columns: minmax(150px, .35fr) 1fr;
  gap: 18px;
  align-items: end;
}

.legal-data dt {
  color: var(--dark);
  font-weight: 800;
}

.legal-data dd {
  margin: 0;
}

.blank-value {
  display: block;
  min-height: 28px;
  border-bottom: 1px solid rgba(20,20,20,.28);
}

.legal-links {
  display: grid;
  gap: 8px;
  margin-top: 10px;
  padding-left: 20px;
}

.result-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--cream);
}

.result-box {
  width: min(680px, 100%);
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow);
  text-align: center;
}

.result-box h1 {
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1;
  margin-bottom: 18px;
}

.result-box p {
  color: #444;
  font-size: 18px;
  line-height: 1.65;
  margin-bottom: 26px;
}

.result-detail {
  color: #777;
  font-size: 14px;
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent {
  position: fixed;
  inset: 0;
  z-index: 20;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 22px;
  background: rgba(15, 15, 15, .42);
}

.cookie-panel {
  width: min(980px, 100%);
  max-height: calc(100vh - 44px);
  overflow: auto;
  display: grid;
  grid-template-columns: 1fr .92fr;
  gap: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 28px 90px rgba(0,0,0,.24);
}

.cookie-copy h2 {
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}

.cookie-copy p,
.cookie-option p {
  color: #4b4b4b;
  line-height: 1.55;
}

.cookie-eyebrow {
  margin-bottom: 14px;
}

.cookie-options {
  display: grid;
  gap: 12px;
}

.cookie-option {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  border: 1px solid rgba(20,20,20,.12);
  border-radius: 18px;
  padding: 16px;
  background: #f8f2ea;
}

.cookie-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.cookie-option strong {
  display: block;
  margin-bottom: 4px;
  color: var(--dark);
  font-size: 16px;
}

.cookie-option p {
  font-size: 13px;
}

.cookie-switch {
  width: 44px;
  height: 24px;
  border-radius: 999px;
  background: rgba(20,20,20,.18);
  position: relative;
  transition: .2s ease;
  margin-top: 2px;
}

.cookie-switch::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 3px 8px rgba(0,0,0,.2);
  transition: .2s ease;
}

.cookie-option input:checked + .cookie-switch,
.cookie-option.is-locked .cookie-switch {
  background: var(--gold);
}

.cookie-option input:checked + .cookie-switch::after,
.cookie-option.is-locked .cookie-switch::after {
  transform: translateX(20px);
}

.cookie-actions {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.cookie-btn {
  min-height: 48px;
  border: 1px solid rgba(20,20,20,.16);
  background: white;
  color: var(--dark);
  border-radius: 14px;
  padding: 12px 16px;
  font: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  cursor: pointer;
}

.cookie-btn-primary {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
}

@media (max-width: 950px) {
  .hero-grid,
  .two-col,
  .about-grid,
  .form-wrap,
  .cookie-panel { grid-template-columns: 1fr; }
  .audience-grid,
  .benefit-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-grid { grid-template-columns: 1fr; }
  .portrait-card img { height: 520px; }
  .about-intro {
    position: static;
    display: block;
    height: auto;
  }
  .about-image { min-height: 0; }
  .about-image img { height: 500px; }
  .about-story { margin-top: 0; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 72px 0; }
  .hero { padding-top: 42px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .audience-grid,
  .benefit-grid { grid-template-columns: 1fr; }
  .portrait-card img { height: 460px; }
  .quote-box { left: 22px; right: 22px; bottom: 22px; }
  .about-image img { height: 350px; }
  .about-story { padding: 22px; }
  .about-story p {
    font-size: 15.5px;
    line-height: 1.48;
  }
  .about-story .story-quote { font-size: 28px; }
  .about-story .story-final { font-size: 17px; }
  .form-wrap { padding: 24px; }
  .legal-hero { padding: 48px 0 52px; }
  .legal-main { padding: 52px 0 72px; }
  .legal-section {
    padding: 22px;
    border-radius: 18px;
  }
  .legal-data div {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .legal-table {
    min-width: 680px;
  }
  .cookie-consent {
    padding: 14px;
  }
  .cookie-panel {
    max-height: calc(100vh - 28px);
    padding: 20px;
    border-radius: 18px;
  }
  .cookie-actions {
    grid-template-columns: 1fr;
  }
  .cookie-btn {
    width: 100%;
  }
}
