:root {
  color-scheme: dark;
  --background: #090b10;
  --surface: #11151d;
  --surface-raised: #171c26;
  --border: #2a303c;
  --text: #f3f0e8;
  --muted: #a9afbb;
  --gold: #d6ae56;
  --gold-bright: #edca78;
  --gold-soft: rgba(214, 174, 86, 0.13);
  --glow: rgba(214, 174, 86, 0.18);
  --content-width: 72rem;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 20rem;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, var(--glow), transparent 28rem),
    linear-gradient(180deg, #0c0f15 0%, var(--background) 42%);
}

a {
  color: inherit;
}

.topline {
  width: 100%;
  height: 0.25rem;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #8f6b26, var(--gold-bright), #8f6b26);
  box-shadow: 0 0 1.5rem rgba(214, 174, 86, 0.42);
}

.site-header,
.site-footer,
main {
  width: min(calc(100% - 3rem), var(--content-width));
  margin-inline: auto;
}

.site-header {
  min-height: 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.brand:focus-visible,
.site-footer a:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 0.3rem;
  border-radius: 0.15rem;
}

.brand-mark {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border: 1px solid rgba(237, 202, 120, 0.58);
  border-radius: 0.45rem;
  color: var(--gold-bright);
  background: var(--gold-soft);
  box-shadow: 0 0 1rem rgba(214, 174, 86, 0.12);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.beta-badge,
.coming-soon {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(214, 174, 86, 0.35);
  border-radius: 999px;
  color: var(--gold-bright);
  background: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.beta-badge {
  padding: 0.55rem 0.75rem;
}

main {
  flex: 1;
}

.hero {
  max-width: 56rem;
  margin: 0 auto;
  padding: clamp(5rem, 11vw, 8.5rem) 0 clamp(4rem, 8vw, 6rem);
  text-align: center;
}

.eyebrow {
  margin: 0 0 0.85rem;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.4rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.96;
  text-wrap: balance;
  text-shadow: 0 0 2.4rem rgba(214, 174, 86, 0.12);
}

.subtitle {
  max-width: 46rem;
  margin: 1.6rem auto 0;
  color: #c8cbd2;
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.7;
  text-wrap: balance;
}

.beta-notice {
  max-width: 44rem;
  margin: clamp(2.5rem, 6vw, 4rem) auto 0;
  padding: 1.35rem 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  border: 1px solid rgba(214, 174, 86, 0.34);
  border-radius: 0.8rem;
  background: linear-gradient(135deg, rgba(214, 174, 86, 0.12), rgba(17, 21, 29, 0.78));
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.2);
  text-align: left;
}

.notice-icon {
  width: 2.35rem;
  height: 2.35rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #151009;
  background: var(--gold-bright);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  font-weight: 700;
}

.beta-notice h2 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.beta-notice p {
  margin: 0.35rem 0 0;
  color: #c6c9d0;
  font-size: 0.94rem;
}

.features {
  padding: 0 0 clamp(5rem, 10vw, 8rem);
}

.section-heading {
  margin-bottom: 1.75rem;
}

.section-heading h2 {
  max-width: 38rem;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
}

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

.feature-card {
  min-height: 20rem;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--surface);
  box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.15);
}

.card-number {
  color: rgba(214, 174, 86, 0.62);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.feature-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.75rem;
  font-weight: 500;
}

.feature-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.coming-soon {
  padding: 0.48rem 0.68rem;
}

.site-footer {
  min-height: 6.5rem;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: #868d9a;
  font-size: 0.82rem;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.site-footer a {
  color: #b8bdc7;
  text-decoration: none;
}

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

.content-page {
  width: min(calc(100% - 3rem), 48rem);
  margin-inline: auto;
  padding: clamp(4rem, 10vw, 7rem) 0;
}

.content-page h1 {
  font-size: clamp(2.7rem, 7vw, 4.6rem);
}

.content-page .lead {
  margin: 1.5rem 0 0;
  color: #c8cbd2;
  font-size: 1.1rem;
}

.placeholder-panel {
  margin-top: 2.5rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0.6rem;
  background: var(--surface);
  color: var(--muted);
}

.back-link {
  display: inline-block;
  margin-top: 2rem;
  color: var(--gold-bright);
  font-weight: 700;
  text-decoration: none;
}

@media (max-width: 48rem) {
  .site-header,
  .site-footer,
  main {
    width: min(calc(100% - 2rem), var(--content-width));
  }

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

  .feature-card {
    min-height: 15rem;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 30rem) {
  .site-header {
    min-height: 4.5rem;
  }

  .brand span:last-child {
    display: none;
  }

  .hero {
    padding-top: 4rem;
  }

  .beta-notice {
    padding: 1.1rem;
  }
}

