:root {
  --bg-0: #060b16;
  --bg-1: #0d1322;
  --bg-2: #111a2f;
  --surface: rgba(12, 18, 33, 0.68);
  --surface-strong: rgba(15, 22, 40, 0.84);
  --surface-soft: rgba(255, 255, 255, 0.03);
  --text: #f5f7fb;
  --text-muted: #a9b1c7;
  --accent: #d6a85f;
  --accent-soft: #f0c987;
  --line: rgba(214, 168, 95, 0.18);
  --line-strong: rgba(240, 201, 135, 0.28);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.42);
  --glow: 0 0 48px rgba(214, 168, 95, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Inter", "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 15% 10%, rgba(240, 201, 135, 0.1), transparent 18%),
    radial-gradient(circle at top left, rgba(214, 168, 95, 0.08), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(240, 201, 135, 0.06), transparent 22%),
    radial-gradient(circle at bottom center, rgba(65, 91, 155, 0.12), transparent 28%),
    linear-gradient(160deg, var(--bg-0) 0%, var(--bg-1) 52%, #09101d 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    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: 42px 42px;
  opacity: 0.18;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(214, 168, 95, 0.08), transparent 18%),
    radial-gradient(circle at 78% 72%, rgba(63, 91, 166, 0.08), transparent 24%);
  opacity: 0.9;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 16px 0;
}

.nav-shell,
.glass-panel,
.benefit-card,
.stat-block,
.submission-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(20, 28, 48, 0.84), rgba(10, 15, 29, 0.78));
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1240px, calc(100% - 12px));
  margin: 0 auto;
  padding: 14px 18px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand-mark,
.site-nav a,
.button,
button {
  text-decoration: none;
}

.brand-mark {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

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

.site-nav a {
  color: var(--text-muted);
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.site-nav a:hover {
  color: var(--text);
}

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 72px;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-visual,
.benefits,
.premium-band,
.cta-copy,
.application,
.trust-strip,
.legal-page,
.admin-page {
  border-radius: 30px;
}

.hero-copy,
.hero-visual,
.benefits,
.premium-band,
.cta-copy,
.application,
.legal-page,
.admin-page {
  position: relative;
  overflow: hidden;
  padding: 34px;
}

.hero-copy {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent),
    radial-gradient(circle at top right, rgba(240, 201, 135, 0.08), transparent 30%);
}

.hero-copy::before,
.hero-visual::before,
.premium-band::before,
.application::before,
.legal-page::before,
.admin-page::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(240, 201, 135, 0.08), transparent 34%, transparent 72%, rgba(240, 201, 135, 0.04));
}

.kicker,
.stat-label {
  margin: 0;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

h1,
h2,
h3,
.brand-mark {
  font-family: "Playfair Display", serif;
}

h1 {
  margin: 14px 0 0;
  max-width: 10ch;
  font-size: clamp(3.6rem, 8vw, 6.7rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.4rem;
}

.intro,
.premium-copy,
.benefit-card p,
.trust-strip p,
.legal-block p,
.legal-footer,
.submission-card p,
.legal-updated,
.form-note,
.visual-card p {
  color: var(--text-muted);
  line-height: 1.72;
}

.panel-intro {
  max-width: 48ch;
  margin: 16px 0 0;
  color: var(--text-muted);
  line-height: 1.68;
}

.intro {
  max-width: 58ch;
  margin: 22px 0 0;
  font-size: 1.05rem;
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.metric {
  min-width: 180px;
  padding: 14px 18px;
  border-radius: 18px;
  border: 1px solid rgba(240, 201, 135, 0.12);
  background: rgba(255, 255, 255, 0.025);
}

.metric span {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
}

.metric strong {
  font-size: 1.02rem;
  font-weight: 700;
}

.hero-actions,
.admin-actions,
.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 30px;
}

.button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: "Inter", "Segoe UI", sans-serif;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.button.primary,
button {
  color: #18120a;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-soft) 100%);
  box-shadow: 0 14px 34px rgba(214, 168, 95, 0.24), 0 0 32px rgba(214, 168, 95, 0.12);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line);
}

.button:hover,
button:hover {
  transform: translateY(-2px) scale(1.01);
}

.button.primary:hover,
button:hover {
  box-shadow: 0 18px 40px rgba(214, 168, 95, 0.28), 0 0 36px rgba(240, 201, 135, 0.18);
}

.disclaimer {
  margin-top: 18px;
  max-width: 60ch;
  color: rgba(169, 177, 199, 0.88);
  font-size: 0.92rem;
}

.hero-visual {
  display: grid;
  align-content: space-between;
  min-height: 640px;
  isolation: isolate;
}

.portrait-frame {
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow), 0 0 36px rgba(214, 168, 95, 0.12);
  position: relative;
}

.portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88) contrast(1.06) brightness(0.8) sepia(0.12);
}

.portrait-main {
  width: min(100%, 360px);
  height: 420px;
  margin-left: auto;
}

.hero-portrait {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  height: 500px;
  margin-left: auto;
}

.hero-portrait img {
  object-position: center 18%;
  transform: scale(1.08);
}

.editorial-portrait {
  width: min(100%, 320px);
  height: 420px;
  margin: 28px auto 0;
}

.editorial-portrait img {
  object-position: center 20%;
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(3, 6, 12, 0.08), rgba(5, 8, 14, 0.18) 36%, rgba(214, 168, 95, 0.1) 100%),
    radial-gradient(circle at top left, rgba(240, 201, 135, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(9, 14, 26, 0.08), rgba(9, 14, 26, 0.42));
}

.portrait-overlay.soft {
  background:
    linear-gradient(180deg, rgba(5, 8, 14, 0.04), rgba(5, 8, 14, 0.16) 42%, rgba(214, 168, 95, 0.08) 100%),
    radial-gradient(circle at top right, rgba(240, 201, 135, 0.12), transparent 34%);
}

.portrait-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 12, 22, 0.62);
  border: 1px solid rgba(240, 201, 135, 0.16);
  backdrop-filter: blur(12px);
}

.caption-label {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 700;
}

.portrait-caption strong {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
}

.editorial-caption {
  left: 14px;
  right: 14px;
  bottom: 14px;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.65;
}

.orb-one {
  top: 56px;
  right: 62px;
  width: 210px;
  height: 210px;
  background: radial-gradient(circle, rgba(214, 168, 95, 0.28), transparent 68%);
}

.orb-two {
  bottom: 88px;
  left: 54px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(90, 123, 204, 0.24), transparent 70%);
}

.visual-card {
  position: relative;
  z-index: 1;
  margin-left: auto;
  width: min(100%, 340px);
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-strong);
  box-shadow: var(--glow);
}

.visual-card strong {
  display: block;
  margin: 12px 0 8px;
  font-family: "Playfair Display", serif;
  font-size: 2rem;
}

.visual-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.stat-block {
  padding: 20px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
}

.stat-block strong {
  display: block;
  margin-top: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}

.benefits,
.premium-band,
.cta-section,
.legal-page,
.admin-page {
  margin-top: 28px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  max-width: 14ch;
}

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

.benefit-card {
  padding: 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover,
.submission-card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow), 0 0 40px rgba(214, 168, 95, 0.08);
}

.premium-band {
  text-align: center;
}

.premium-band h2 {
  max-width: 18ch;
  margin: 10px auto 0;
}

.premium-copy {
  max-width: 66ch;
  margin: 20px auto 0;
}

.premium-line {
  width: min(220px, 55%);
  height: 1px;
  margin: 0 auto 22px;
  background: linear-gradient(90deg, transparent, rgba(240, 201, 135, 0.58), transparent);
}

.cta-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.94fr);
  gap: 28px;
  align-items: start;
}

.trust-strip {
  margin-top: 28px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.trust-strip div {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.trust-strip span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--accent-soft);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.application {
  padding: 32px;
}

.onboarding-panel {
  background:
    linear-gradient(180deg, rgba(18, 26, 46, 0.92), rgba(9, 14, 28, 0.86)),
    radial-gradient(circle at top right, rgba(240, 201, 135, 0.08), transparent 30%);
}

.onboarding-panel::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(240, 201, 135, 0.08);
  pointer-events: none;
}

.application-form,
.admin-auth {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

label {
  display: grid;
  gap: 8px;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

input,
textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid rgba(240, 201, 135, 0.18);
  border-radius: 18px;
  outline: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.025));
  color: var(--text);
  font: inherit;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(169, 177, 199, 0.7);
}

input:focus,
textarea:focus {
  border-color: rgba(240, 201, 135, 0.42);
  box-shadow: 0 0 0 3px rgba(214, 168, 95, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

textarea {
  resize: vertical;
  min-height: 128px;
}

.checkbox-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px;
}

.checkbox-row input {
  margin-top: 3px;
}

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

.turnstile-shell {
  padding-top: 6px;
}

.legal-links {
  margin-top: 20px;
}

.legal-links a:hover,
.legal-footer a:hover {
  color: var(--text);
}

.legal-links a,
.legal-footer a {
  color: var(--accent-soft);
  font-weight: 700;
  text-decoration: none;
}

.legal-page,
.admin-page {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.legal-title {
  max-width: none;
}

.legal-updated {
  margin: 12px 0 0;
}

.legal-block {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(240, 201, 135, 0.12);
}

.legal-block h2 {
  margin: 0 0 10px;
  font-size: 1.25rem;
}

.admin-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.submission-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.submission-card {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.025));
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.submission-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
}

.submission-card h2 {
  margin: 0;
  font-size: 1.3rem;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(214, 168, 95, 0.1);
  color: var(--accent-soft);
  border: 1px solid rgba(240, 201, 135, 0.18);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.disabled-link {
  opacity: 0.45;
  pointer-events: none;
}

@media (max-width: 1100px) {
  .hero,
  .cta-section,
  .benefit-grid,
  .trust-strip,
  .admin-summary {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

  .portrait-main {
    margin-left: 0;
  }
}

@media (max-width: 820px) {
  .site-nav,
  .nav-cta {
    display: none;
  }

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

  .site-shell {
    width: min(100% - 20px, 1240px);
    padding-top: 22px;
  }

  .hero-copy,
  .hero-visual,
  .benefits,
  .premium-band,
  .cta-copy,
  .application,
  .legal-page,
  .admin-page {
    padding: 24px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(3rem, 12vw, 4.8rem);
  }

  h2 {
    font-size: clamp(1.8rem, 8vw, 2.8rem);
  }

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

  .portrait-main {
    width: 100%;
    height: 360px;
  }

  .hero-portrait {
    height: 400px;
  }

  .hero-portrait img {
    transform: scale(1.04);
  }

  .editorial-portrait {
    width: 100%;
    height: 320px;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy,
  .hero-visual,
  .benefits,
  .premium-band,
  .cta-copy,
  .application,
  .benefit-card {
    animation: rise-in 560ms ease both;
  }

  .hero-visual {
    animation-delay: 80ms;
  }

  .benefits {
    animation-delay: 130ms;
  }

  .premium-band {
    animation-delay: 180ms;
  }

  .application {
    animation-delay: 220ms;
  }

  @keyframes rise-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
