:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --bg-3: #121212;

  --card: #111111;
  --card-2: #181818;

  --text: #f6f1e8;
  --text-soft: rgba(246, 241, 232, 0.78);
  --text-muted: rgba(246, 241, 232, 0.54);

  --gold-1: #cfa43a;
  --gold-2: #f0cf75;
  --gold-3: rgba(207, 164, 58, 0.12);
  --gold-4: rgba(207, 164, 58, 0.24);

  --line: rgba(207, 164, 58, 0.14);
  --line-strong: rgba(207, 164, 58, 0.24);

  --shadow-xl: 0 40px 120px rgba(0, 0, 0, 0.72);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.48);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.28);

  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --max-width: 1180px;
}

* {
  box-sizing: border-box;
  min-width: 0;
}

html {
  scroll-behavior: auto;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 0%, rgba(207, 164, 58, 0.08), transparent 20%),
    radial-gradient(circle at 18% 18%, rgba(207, 164, 58, 0.035), transparent 24%),
    radial-gradient(circle at 85% 22%, rgba(207, 164, 58, 0.025), transparent 22%),
    linear-gradient(180deg, #090909 0%, #040404 100%);
  line-height: 1.65;
  overflow-x: hidden;
  text-size-adjust: 100%;
}

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

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
}

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

.bg-layer,
.bg-grid,
.bg-vignette {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-layer-1 {
  background: radial-gradient(circle at 50% 12%, rgba(240, 207, 117, 0.05), transparent 18%);
  filter: blur(18px);
  opacity: 0.7;
}

.bg-layer-2 {
  background:
    radial-gradient(circle at 20% 70%, rgba(207, 164, 58, 0.025), transparent 22%),
    radial-gradient(circle at 80% 80%, rgba(207, 164, 58, 0.025), transparent 20%);
  filter: blur(30px);
}

.bg-grid {
  opacity: 0.035;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
}

.bg-vignette {
  background: radial-gradient(circle at center, transparent 48%, rgba(0, 0, 0, 0.34) 100%);
}

.site-header,
main {
  position: relative;
  z-index: 1;
}

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

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

.site-header {
  padding: 18px 0 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 24px;
  background: linear-gradient(180deg, #151515, #0f0f0f);
  border: 1px solid rgba(207, 164, 58, 0.14);
  box-shadow:
    0 18px 55px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(145deg, #cfa43a, #f0cf75);
  color: #140f06;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  box-shadow:
    0 10px 26px rgba(207, 164, 58, 0.18),
    0 0 18px rgba(207, 164, 58, 0.08);
  flex-shrink: 0;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 36px;
  line-height: 1;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.03em;
}

.brand-sub {
  margin-top: 2px;
  color: var(--gold-2);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--text-soft);
  font-size: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a:hover {
  color: var(--gold-2);
}

.hero {
  padding: 130px 0 90px;
  text-align: center;
}

.hero-center {
  max-width: 930px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(207, 164, 58, 0.18);
  color: var(--gold-2);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(207, 164, 58, 0.05);
  box-shadow: 0 0 18px rgba(207, 164, 58, 0.06);
  margin-bottom: 22px;
}

.hero h1 {
  margin: 0 auto 22px;
  max-width: 900px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(48px, 6vw, 88px);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

.hero h1 span {
  color: var(--gold-2);
  display: inline-block;
  text-shadow: 0 0 25px rgba(207, 164, 58, 0.28);
}

.hero-lead {
  margin: 0 auto 14px;
  font-size: 24px;
  line-height: 1.45;
  color: var(--text);
  max-width: 760px;
}

.hero-questions {
  margin: 0 auto 16px;
  font-size: 20px;
  color: var(--text);
  line-height: 1.8;
  max-width: 680px;
  font-weight: 600;
}

.hero-text {
  margin: 0 auto 14px;
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 760px;
}

.hero-text-wide {
  max-width: 820px;
}

.hero-highlight {
  margin: 14px 0;
  font-size: 24px;
  color: var(--gold-2);
  font-weight: 700;
}

.hero-impact {
  margin: 22px auto 0;
  font-size: 18px;
  line-height: 1.9;
  color: var(--text-soft);
  max-width: 820px;
}

.hero-impact strong {
  color: var(--gold-2);
}

.hero-actions,
.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 36px;
}

.hero-micro {
  margin-top: 22px;
  font-size: 14px;
  color: var(--text-muted);
  opacity: 0.9;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 34px auto 0;
  max-width: 980px;
}

.proof-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, #161616, #0f0f0f);
  border: 1px solid rgba(207, 164, 58, 0.10);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.015),
    0 12px 30px rgba(0, 0, 0, 0.22);
  text-align: left;
}

.proof-card strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
  color: var(--gold-2);
}

.proof-card span {
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    opacity 180ms ease;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn-gold {
  background: linear-gradient(145deg, #cfa43a, #f0cf75);
  color: #171106;
  box-shadow:
    0 14px 34px rgba(207, 164, 58, 0.24),
    0 0 22px rgba(207, 164, 58, 0.10);
}

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

.btn-ghost {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  border: 1px solid rgba(207, 164, 58, 0.18);
}

.btn-ghost:hover {
  border-color: rgba(207, 164, 58, 0.30);
  color: var(--gold-2);
}

.section {
  padding: 64px 0;
}

.section-soft {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.00));
}

.section-intro {
  margin-bottom: 28px;
}

.section-intro.center {
  text-align: center;
}

.section-intro h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 700;
  color: var(--text);
  text-wrap: balance;
}

.section-intro p {
  margin: 0 auto;
  max-width: 860px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
}

.luxury-panel,
.info-card,
.step-card,
.quote-box,
.cta-card,
.reading-panel,
.app-shell {
  background: linear-gradient(145deg, #171717, #101010);
  border: 1px solid rgba(207, 164, 58, 0.12);
  border-radius: var(--radius-xl);
  box-shadow:
    var(--shadow-xl),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
  background-clip: padding-box;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
}

.luxury-panel {
  padding: 30px;
}

.luxury-panel p {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.95;
  text-align: center;
}

.card-grid {
  display: grid;
  gap: 18px;
}

.card-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.step-card {
  padding: 24px;
  text-align: center;
}

.info-card h3,
.step-card h3 {
  margin: 0 0 10px;
  font-size: 21px;
  color: var(--gold-2);
}

.info-card p,
.step-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.85;
}

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

.discover-item {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(207, 164, 58, 0.10);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
  color: var(--text);
  line-height: 1.7;
  text-align: center;
}

.step-no {
  margin-bottom: 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: 38px;
  color: var(--gold-2);
}

.creator-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
}

.creator-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.creator-copy .eyebrow {
  align-self: flex-start;
}

.creator-copy h2 {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1;
  letter-spacing: -0.04em;
}

.creator-copy p {
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.9;
  margin: 0 0 16px;
}

.creator-quote {
  display: flex;
}

.quote-box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  text-align: center;
}

.quote-box p {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  line-height: 1.08;
  color: var(--gold-2);
  letter-spacing: -0.03em;
}

.section-cta {
  padding-bottom: 44px;
}

.cta-card {
  padding: 36px 32px;
  text-align: center;
}

.cta-card h2 {
  margin: 0 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1;
  font-weight: 700;
}

.cta-card p {
  margin: 0 auto 18px;
  max-width: 760px;
  color: var(--text-soft);
  font-size: 17px;
  line-height: 1.85;
}

.cta-lead {
  margin: 0 auto 14px;
  max-width: 780px;
  font-size: 22px;
  line-height: 1.55;
  color: var(--text);
}

.reading-panel {
  margin-top: 26px;
  overflow: hidden;
  text-align: left;
}

.reading-panel-head {
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(207, 164, 58, 0.10);
}

.reading-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.reading-subtitle {
  font-size: 15px;
  color: var(--text-soft);
}

.reading-body {
  padding: 18px 22px 22px;
  display: grid;
  gap: 12px;
}

.reading-line {
  padding: 14px 16px;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(207, 164, 58, 0.08);
  color: var(--text-soft);
  line-height: 1.7;
}

.reading-line-gold {
  color: var(--gold-2);
  border-color: rgba(207, 164, 58, 0.14);
}

.cta-note {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.75;
}

.hidden-app {
  display: none;
}

.app-section {
  padding-top: 10px;
  padding-bottom: 90px;
}

.app-shell {
  padding: 0;
  overflow: hidden;
  animation: fadeInUp 0.45s ease;
}

.app-head {
  padding: 22px 22px 14px;
  border-bottom: 1px solid rgba(207, 164, 58, 0.10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.app-title {
  font-size: 22px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 6px;
}

.app-subtitle {
  color: var(--text-soft);
  font-size: 15px;
}

.app-progress {
  padding: 14px 22px 0;
  color: var(--gold-2);
  font-size: 14px;
  font-weight: 700;
}

.kg-messages {
  min-height: 360px;
  max-height: 680px;
  overflow-y: auto;
  padding: 20px 22px;
  white-space: normal;
  scroll-behavior: auto;
}

.kg-message-row {
  display: flex;
  margin-bottom: 14px;
}

.kg-message-row.assistant {
  justify-content: flex-start;
}

.kg-message-row.user {
  justify-content: flex-end;
}

.kg-message-bubble {
  max-width: min(760px, 100%);
  padding: 16px 18px;
  border-radius: 18px;
  white-space: pre-wrap;
  line-height: 1.8;
  font-size: 15px;
  box-shadow:
    0 10px 24px rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.02) inset;
}

.kg-message-row.assistant .kg-message-bubble {
  background: linear-gradient(145deg, #1a1a1a, #101010);
  border: 1px solid rgba(207, 164, 58, 0.16);
  color: var(--text);
}

.kg-message-row.user .kg-message-bubble {
  background: linear-gradient(145deg, #cfa43a, #f0cf75);
  color: #161106;
  border: none;
  font-weight: 600;
}

.kg-message-bubble.thinking {
  color: var(--text-soft);
}

.kg-form {
  display: flex;
  gap: 12px;
  padding: 18px 22px 22px;
  border-top: 1px solid rgba(207, 164, 58, 0.08);
}

#kg-input {
  flex: 1;
  min-width: 0;
  height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(207, 164, 58, 0.12);
  background: #0f0f0f;
  color: var(--text);
  padding: 0 16px;
  outline: none;
}

#kg-input::placeholder {
  color: var(--text-muted);
}

#kg-input:focus {
  border-color: rgba(207, 164, 58, 0.34);
  box-shadow: 0 0 0 4px rgba(207, 164, 58, 0.08);
}

.send-btn,
.continue-btn,
.copy-btn,
.share-btn {
  min-height: 52px;
  padding: 0 20px;
  border-radius: 16px;
  border: none;
  background: linear-gradient(145deg, #cfa43a, #f0cf75);
  color: #161106;
  font-weight: 700;
  cursor: pointer;
  box-shadow:
    0 10px 24px rgba(207, 164, 58, 0.22),
    0 0 18px rgba(207, 164, 58, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
}

.send-btn:hover,
.continue-btn:hover,
.copy-btn:hover,
.share-btn:hover {
  transform: translateY(-1px);
}

.continue-wrap {
  padding: 0 22px 22px;
  display: flex;
  justify-content: center;
}

.share-wrap {
  padding: 0 22px 22px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

strong {
  color: var(--gold-2);
}

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

@media (max-width: 1100px) {
  .hero-proof,
  .card-grid-3,
  .discover-grid,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .proof-card,
  .info-card,
  .step-card,
  .discover-item {
    text-align: center;
  }

  .creator-copy .eyebrow {
    align-self: center;
  }

  .creator-copy {
    text-align: center;
  }
}

@media (max-width: 760px) {
  .container,
  .narrow {
    width: calc(100% - 28px);
  }

  .site-header {
    padding-top: 12px;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: 16px;
  }

  .nav {
    width: 100%;
    gap: 14px;
  }

  .brand-name {
    font-size: 28px;
  }

  .hero {
    padding: 90px 0 64px;
  }

  .hero h1 {
    font-size: clamp(42px, 14vw, 68px);
    line-height: 1.08;
  }

  .hero-lead {
    font-size: 21px;
  }

  .hero-text,
  .section-intro p,
  .creator-copy p,
  .cta-card p {
    font-size: 16px;
    line-height: 1.8;
  }

  .hero-questions {
    font-size: 18px;
  }

  .hero-highlight {
    font-size: 22px;
  }

  .hero-impact {
    font-size: 17px;
  }

  .section {
    padding: 42px 0;
  }

  .luxury-panel,
  .info-card,
  .step-card,
  .quote-box,
  .cta-card {
    padding: 20px;
  }

  .cta-lead {
    font-size: 19px;
    line-height: 1.6;
  }

  .reading-title,
  .app-title {
    font-size: 20px;
  }

  .reading-subtitle,
  .app-subtitle {
    font-size: 14px;
  }

  .quote-box p {
    font-size: 34px;
  }

  .hero-actions,
  .cta-actions,
  .kg-form {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .send-btn,
  .continue-btn,
  .copy-btn,
  .share-btn {
    width: 100%;
  }

  .kg-messages {
    min-height: 300px;
    padding: 18px 18px 10px;
  }

  .app-progress,
  .app-head,
  .kg-form,
  .continue-wrap,
  .share-wrap,
  .reading-panel-head,
  .reading-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}