:root {
  --bg: #08111a;
  --bg-soft: #0f1b27;
  --panel: rgba(15, 27, 39, 0.78);
  --panel-strong: rgba(10, 19, 29, 0.92);
  --line: rgba(255, 232, 199, 0.16);
  --text: #f7efe3;
  --muted: #c8bcac;
  --soft: #9e978e;
  --gold: #d6a15a;
  --gold-soft: #f0c987;
  --rose: #b86d55;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.65;
  background:
    radial-gradient(circle at top left, rgba(123, 200, 196, 0.15), transparent 32%),
    radial-gradient(circle at top right, rgba(214, 161, 90, 0.16), transparent 28%),
    linear-gradient(180deg, #0d1822 0%, #08111a 48%, #050b12 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.58), transparent 92%);
  opacity: 0.45;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.028), transparent 14%),
    radial-gradient(circle at 80% 12%, rgba(255, 255, 255, 0.03), transparent 18%),
    radial-gradient(circle at 40% 78%, rgba(255, 255, 255, 0.02), transparent 16%);
  mix-blend-mode: screen;
}

a {
  color: inherit;
}

.site-shell {
  position: relative;
  z-index: 1;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
  background: rgba(5, 11, 18, 0.62);
  border-bottom: 1px solid rgba(255, 232, 199, 0.08);
}

.topbar-inner {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(240, 201, 135, 0.96), rgba(184, 109, 85, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 0 10px 26px rgba(184, 109, 85, 0.24);
}

.brand-mark span {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #2c190e;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-copy small {
  color: var(--soft);
  font-size: 0.73rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 10px 14px;
  border-radius: 999px;
  transition: 180ms ease;
}

.nav a:hover,
.nav a[aria-current="page"] {
  color: var(--text);
  background: rgba(255, 248, 239, 0.08);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.button {
  color: #1c120c;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 16px 36px rgba(214, 161, 90, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 248, 239, 0.06);
  border: 1px solid rgba(255, 248, 239, 0.12);
}

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

.hero,
.doc-hero,
.section,
.footer {
  padding: 34px 0;
}

.hero-grid,
.doc-hero-grid,
.support-grid,
.dual-grid,
.feature-grid,
.footer-grid {
  display: grid;
  gap: 22px;
}

.hero-grid,
.doc-hero-grid,
.support-grid,
.dual-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: start;
}

.hero-copy,
.hero-panel,
.doc-panel,
.support-panel,
.page-panel,
.footer-panel,
.feature-card,
.quick-card,
.service-card,
.faq-item,
.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(18, 30, 44, 0.92), rgba(9, 17, 26, 0.94));
  box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel,
.doc-panel,
.support-panel,
.page-panel,
.footer-panel,
.feature-card,
.quick-card,
.service-card,
.contact-card {
  padding: 24px;
}

.hero-copy::before,
.hero-panel::before,
.doc-panel::before,
.support-panel::before,
.page-panel::before,
.footer-panel::before {
  content: "";
  position: absolute;
  inset: auto -60px -80px auto;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(214, 161, 90, 0.18), transparent 72%);
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(240, 201, 135, 0.24);
  background: rgba(255, 248, 239, 0.05);
  color: var(--gold-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.headline,
.doc-title,
.section-title,
.footer-title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
}

.headline {
  font-size: clamp(3.4rem, 8vw, 6.8rem);
}

.doc-title {
  font-size: clamp(2.8rem, 6vw, 4.8rem);
}

.section-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

.footer-title {
  font-size: 2rem;
}

.highlight {
  color: var(--gold-soft);
}

.lede,
.doc-lede,
.section-copy,
.panel-copy,
.list-copy,
.footer-note,
.small-copy,
.doc-keyline,
.faq-answer {
  color: var(--muted);
}

.lede,
.doc-lede {
  max-width: 58ch;
  margin: 18px 0 0;
  font-size: 1.07rem;
}

.hero-meta,
.mode-list,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.meta-chip,
.mode-list li {
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 248, 239, 0.12);
  background: rgba(255, 248, 239, 0.05);
}

.hero-stack {
  display: grid;
  gap: 16px;
}

.mock-card,
.mode-card {
  border-radius: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.08), rgba(255, 248, 239, 0.02));
  padding: 20px;
}

.mock-topline,
.kicker {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.mock-title,
.panel-title,
.mode-card h3,
.feature-card h3,
.quick-card h3,
.service-card h3,
.contact-card h3,
.faq-question {
  margin: 0;
  color: var(--text);
}

.mock-title,
.panel-title,
.mode-card h3,
.feature-card h3,
.quick-card h3,
.service-card h3,
.contact-card h3 {
  font-size: 1.18rem;
}

.tile-row,
.kpi-grid,
.feature-grid,
.footer-grid {
  display: grid;
  gap: 16px;
}

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

.tile {
  min-height: 88px;
  border-radius: 22px;
  border: 1px solid rgba(255, 248, 239, 0.18);
  background: linear-gradient(180deg, rgba(255, 248, 239, 0.95), rgba(222, 210, 196, 0.84));
  display: grid;
  place-items: center;
  color: #3f2615;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 14px 24px rgba(0, 0, 0, 0.16);
}

.tile strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.7rem;
  line-height: 1;
}

.tile small {
  display: block;
  margin-top: 4px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mode-list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

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

.kpi {
  padding: 16px;
  border-radius: 20px;
  background: rgba(255, 248, 239, 0.05);
  border: 1px solid rgba(255, 248, 239, 0.1);
}

.kpi strong {
  display: block;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-soft);
}

.kpi span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.section-head {
  max-width: 760px;
  margin-bottom: 22px;
}

.doc-keyline {
  margin: 20px 0 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 248, 239, 0.12);
  font-size: 0.95rem;
}

.page-panel ul {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.page-panel li + li {
  margin-top: 8px;
}

.service-card a,
.contact-card a,
.page-panel a {
  color: var(--gold-soft);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  padding: 0;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 22px 18px;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-size: 1.04rem;
  font-weight: 800;
}

.faq-answer {
  padding: 0 22px 22px;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.footer-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 248, 239, 0.04);
  border: 1px solid rgba(255, 248, 239, 0.08);
}

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

@media (max-width: 980px) {
  .hero-grid,
  .doc-hero-grid,
  .support-grid,
  .dual-grid,
  .footer-grid,
  .feature-grid,
  .kpi-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-copy,
  .hero-panel,
  .doc-panel,
  .support-panel,
  .page-panel,
  .footer-panel,
  .feature-card,
  .quick-card,
  .service-card,
  .contact-card {
    padding: 20px;
    border-radius: 24px;
  }

  .headline {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }
}
