@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,600;0,700;1,600;1,700&family=Noto+Sans+SC:wght@400;500;600;700&display=swap");

:root {
  --bg: #0a0a12;
  --ink: #f3efe7;
  --muted: rgba(188, 186, 200, 0.7);
  --gold: #d4a574;
  --gold-soft: #e8c9a0;
  --gold-deep: #b8895a;
  --line: rgba(212, 165, 116, 0.16);
}

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

html { scroll-behavior: smooth; }

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: "Noto Sans SC", "Segoe UI", sans-serif;
  background: var(--bg);
  overflow-x: hidden;
}

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

.bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 50% -15%, rgba(212, 165, 116, 0.16), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 20%, rgba(180, 140, 100, 0.07), transparent 50%),
    radial-gradient(ellipse 40% 35% at 0% 80%, rgba(212, 165, 116, 0.05), transparent 45%),
    linear-gradient(165deg, #0a0a12 0%, #11111c 50%, #151526 100%);
}

.bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    radial-gradient(circle at 20% 25%, rgba(255,255,255,0.03) 1px, transparent 1px),
    radial-gradient(circle at 75% 70%, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 68px 68px, 92px 92px;
}

.glow {
  position: fixed;
  width: min(72vw, 700px);
  height: min(72vw, 700px);
  border-radius: 50%;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 165, 116, 0.1), transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: pulse 10s ease-in-out infinite alternate;
}

@keyframes pulse {
  from { opacity: 0.5; transform: translateX(-50%) scale(1); }
  to { opacity: 1; transform: translateX(-50%) scale(1.15); }
}

.wrap {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100% - 40px));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
  animation: rise 0.7s ease both;
}

.logo {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  font-style: italic;
  background: linear-gradient(135deg, #f8efe4, var(--gold), var(--gold-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  padding: 8px 12px;
  transition: color 0.2s ease;
}

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

.nav .pill {
  color: #120e09 !important;
  background: linear-gradient(135deg, #f5e6d3, var(--gold), var(--gold-deep));
  border-radius: 999px;
  padding: 9px 18px;
  font-weight: 600;
  box-shadow: 0 10px 28px rgba(212, 165, 116, 0.24);
}

.nav .pill:hover { filter: brightness(1.06); }

/* Hero — one composition */
.hero {
  min-height: calc(100vh - 90px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 0 80px;
  animation: rise 0.95s 0.06s ease both;
}

.hero-rule {
  width: 64px;
  height: 2px;
  margin-bottom: 30px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.hero h1 {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(52px, 10vw, 100px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  max-width: 8.5em;
  background: linear-gradient(140deg, #faf4ea 0%, var(--gold-soft) 38%, var(--gold) 68%, var(--gold-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero .claim {
  margin-top: 26px;
  max-width: 22em;
  font-size: clamp(17px, 2.3vw, 22px);
  font-weight: 500;
  line-height: 1.55;
  color: rgba(235, 230, 220, 0.88);
  letter-spacing: 0.02em;
}

.hero .sub {
  margin-top: 14px;
  max-width: 30em;
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
}

.hero-cta {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  color: #120e09;
  background: linear-gradient(135deg, #f5e6d3, var(--gold), var(--gold-deep));
  box-shadow: 0 14px 36px rgba(212, 165, 116, 0.3);
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

/* Strength wall */
.strength {
  padding: 0 0 96px;
}

.strength-head {
  margin-bottom: 36px;
  max-width: 28em;
}

.eyebrow {
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strength-head h2 {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  color: #f5f1e9;
}

.wall {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.wall article {
  display: grid;
  grid-template-columns: minmax(140px, 220px) 1fr;
  gap: 24px 40px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  align-items: baseline;
}

.wall .label {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 3vw, 28px);
  font-style: italic;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.01em;
}

.wall .body h3 {
  font-size: 16px;
  font-weight: 600;
  color: #f2eee6;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.wall .body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
  max-width: 40em;
}

/* Statement band */
.statement {
  padding: 88px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
}

.statement blockquote {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(28px, 4.5vw, 44px);
  font-weight: 600;
  font-style: italic;
  line-height: 1.35;
  color: #f6f2ea;
  max-width: 14em;
  margin: 0 auto 18px;
}

.statement p {
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.06em;
}

/* Stack */
.stack {
  padding: 96px 0;
}

.stack-head {
  max-width: 30em;
  margin-bottom: 40px;
}

.stack-head h2 {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 700;
  color: #f5f1e9;
  margin-bottom: 12px;
}

.stack-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(212, 165, 116, 0.22);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(235, 225, 210, 0.9);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Close */
.close {
  padding: 100px 0 80px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.close h2 {
  font-family: "Cormorant Garamond", "Noto Sans SC", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 700;
  color: #f5f1e9;
  margin-bottom: 14px;
}

.close p {
  color: var(--muted);
  margin-bottom: 30px;
  font-size: 15px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 28px 0 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  color: rgba(160, 160, 180, 0.42);
  font-size: 13px;
  letter-spacing: 0.04em;
}

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

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

@media (max-width: 720px) {
  .wrap { width: calc(100% - 28px); }
  .wall article { grid-template-columns: 1fr; gap: 8px; padding: 26px 0; }
  .hero { min-height: auto; padding: 28px 0 56px; }
  .nav a:not(.pill) { display: none; }
  .strength, .stack { padding-bottom: 64px; }
  .statement, .close { padding: 64px 0; }
}
