
:root {
  --bg: #070707;
  --panel: #111111;
  --panel-soft: #141414;
  --panel-strong: #181818;
  --text: #f5f2e9;
  --muted: #a89f87;
  --border: rgba(213, 174, 74, 0.18);
  --gold: #d5ae4a;
  --gold-soft: #c8ad62;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --header-height: 88px;
  --max: 1180px;
  --text-lg: 1.04;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: radial-gradient(circle at top, rgba(255, 255, 255, 0.02), transparent 35%), var(--bg);
  line-height: 1.75;
}

img,
svg {
  max-width: 100%;
  display: block;
}

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

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

button {
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.65;
}

.hp,
.screen-reader-only {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

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

.narrow {
  max-width: 800px;
}

.centered-copy {
  max-width: 760px;
  margin: 0 auto;
}

.screen-reader-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: #fff;
  color: #000;
  padding: 12px 18px;
  z-index: 100;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-height);
  backdrop-filter: blur(10px);
  background: rgba(10, 10, 10, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.site-logo {
  display: block;
  height: 64px;
  width: auto;
}

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

.primary-nav a,
.footer-grid a,
.text-link {
  color: var(--muted);
  transition: color 180ms ease, transform 180ms ease;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.footer-grid a:hover,
.footer-grid a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  color: var(--gold);
  outline: none;
}

.nav-cta {
  border: 1px solid var(--gold);
  padding: 12px 18px;
  border-radius: 999px;
  color: var(--gold);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 14px;
}

.hero,
.page-hero,
.section,
.venture-panel,
.cta-panel {
  padding: 100px 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  margin: 0 0 18px;
  font-size: 0.85rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--text);
}

h1 {
  font-family: Georgia, Cambria, "Times New Roman", serif;
  font-size: clamp(3rem, 4vw, 4.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.hero-text,
p,
.card p,
.support-form p,
.support-aside p,
.legal p,
.footer-copy {
  color: var(--muted);
  font-size: 1rem;
}

.hero-text {
  font-size: 1.1rem;
  max-width: 640px;
  margin-top: 22px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.button.primary {
  background: linear-gradient(135deg, #b68e2a, var(--gold));
  color: #080808;
}

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

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.hero-footnote {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.hero-panel {
  position: relative;
  padding: 42px;
  min-height: 420px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(213, 174, 74, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(213, 174, 74, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel::before,
.hero-panel::after {
  content: '';
  position: absolute;
  border-radius: 999px;
  opacity: 0.35;
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  top: -40px;
  right: -40px;
  background: radial-gradient(circle, rgba(213, 174, 74, 0.24), transparent 55%);
}

.hero-panel::after {
  width: 120px;
  height: 120px;
  bottom: -30px;
  left: 10%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 55%);
}

.hero-panel-mark {
  width: 84px;
  height: 84px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  box-shadow: inset 0 0 0 1px rgba(213, 174, 74, 0.16);
  background: radial-gradient(circle at 40% 30%, rgba(213, 174, 74, 0.3), transparent 55%);
}

.hero-panel-mark::before {
  content: '';
}

.hero-panel-copy {
  position: relative;
  z-index: 1;
}

.hero-panel-label {
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.78rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero-panel h2 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 3.2vw, 2.7rem);
  line-height: 1.08;
  max-width: 16ch;
}

.section {
  padding: 90px 0;
}

.section-header {
  max-width: 720px;
  margin-bottom: 40px;
}

.section-title {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  line-height: 1.05;
  margin-top: 8px;
}

.cards {
  display: grid;
  gap: 24px;
}

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

.cards.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.venture-card,
.support-aside,
.hero-panel,
.venture-card.active,
.venture-card.future {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 32px;
  border-radius: var(--radius-sm);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.18);
}

.card h3,
.venture-card h2 {
  font-family: Georgia, serif;
  margin: 0 0 16px;
}

.card p,
.venture-card p {
  margin: 0;
  color: var(--muted);
}

.card-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  background: rgba(213, 174, 74, 0.14);
  color: var(--gold);
  font-weight: 800;
}

.card:hover,
.venture-card:hover,
.support-aside:hover {
  border-color: rgba(213, 174, 74, 0.28);
}

.card:hover .card-mark,
.venture-card:hover .venture-status {
  transform: translateY(-2px);
}

.dark-panel {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.85fr);
  gap: 46px;
  align-items: flex-start;
}

.philosophy-list {
  display: grid;
  gap: 22px;
}

.philosophy-list div {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 28px;
  border-radius: var(--radius-sm);
}

.philosophy-list strong {
  display: block;
  margin-bottom: 10px;
  font-family: Georgia, serif;
  font-size: 1.05rem;
}

.venture-panel .venture-card {
  display: grid;
  gap: 22px;
}

.venture-status,
.footer-grid h2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.venture-status {
  background: rgba(213, 174, 74, 0.14);
  border-radius: 999px;
  color: var(--gold);
  padding: 10px 16px;
}

.venture-status.muted {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
}

.venture-brand {
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1.05;
}

.external-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.cta-panel {
  padding: 80px 0;
}

.cta-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 44px 44px 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.cta-block h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.center-buttons {
  justify-content: center;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: start;
}

.support-form {
  display: grid;
  gap: 18px;
}

.support-form label {
  display: grid;
  gap: 10px;
  color: var(--text);
}

.support-form input,
.support-form select,
.support-form textarea {
  width: 100%;
  min-height: 50px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  padding: 16px 18px;
}

.support-form textarea {
  min-height: 170px;
}

.support-form input:focus,
.support-form select:focus,
.support-form textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(213, 174, 74, 0.45);
  outline-offset: 3px;
}

.checkbox {
  display: grid;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.checkbox input {
  margin-right: 12px;
  width: auto;
}

.form-status {
  min-height: 32px;
  color: var(--text);
}

.form-status.status-success {
  color: var(--gold);
}

.form-status.status-error {
  color: #f0a38c;
}

.support-aside {
  padding: 32px;
  line-height: 1.65;
}

.support-aside h2,
.support-aside h3 {
  margin-top: 0;
  color: var(--text);
}

.legal {
  padding: 70px 0;
}

.legal .legal-toc {
  margin-bottom: 36px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.legal-toc h2 {
  margin-bottom: 18px;
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.legal-toc a {
  color: var(--muted);
}

.legal-notice {
  margin-bottom: 32px;
  padding: 20px;
  border-left: 4px solid var(--gold);
  background: rgba(213, 174, 74, 0.08);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-branding {
  display: grid;
  gap: 16px;
}

.footer-copy {
  max-width: 320px;
  color: var(--muted);
}

.footer-grid h2 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-grid > div {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--muted);
  padding-bottom: 36px;
}

.footer-logo {
  height: 56px;
}

@media (max-width: 980px) {
  .hero,
  .split,
  .form-layout,
  .cards.three,
  .cards.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .hero {
    gap: 32px;
  }
  .hero-panel,
  .cta-block,
  .support-aside,
  .card,
  .venture-card {
    padding: 28px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 24px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: inline-flex;
  }
  .primary-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    z-index: 45;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 24px;
    background: rgba(7, 7, 7, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    min-height: calc(100vh - var(--header-height));
  }
  .primary-nav.open {
    display: flex;
  }
  .primary-nav a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 1rem;
  }
  .site-header {
    padding: 0 20px;
  }
  .container {
    width: min(calc(100% - 32px), var(--max));
  }
  .hero-text,
  .card p,
  .support-aside p,
  .legal p {
    font-size: 1rem;
  }
}

@media (max-width: 520px) {
  .site-logo {
    height: 48px;
  }
  .hero {
    padding-top: 80px;
  }
  .hero h1 {
    font-size: 2.6rem;
  }
  .button {
    width: 100%;
  }
  .button-row {
    flex-direction: column;
  }
  .footer-bottom {
    font-size: 0.95rem;
  }
  .hero-panel {
    min-height: auto;
  }
}

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

@media print {
  body {
    background: #fff;
    color: #111;
  }
  .site-header,
  .footer-bottom,
  .footer-grid,
  .button,
  .nav-toggle,
  .primary-nav,
  .hero-panel,
  .support-aside,
  .legal-toc,
  .hero-footnote {
    display: none;
  }
  .container {
    width: auto;
    margin: 0;
  }
  a::after {
    content: " (" attr(href) ")";
  }
}
