:root {
  --bg: #0a0b10;
  --bg-soft: #12141b;
  --card: rgba(255, 255, 255, 0.05);
  --card-strong: rgba(255, 255, 255, 0.08);
  --text: #f4efe7;
  --muted: #b9b3aa;
  --line: rgba(255,255,255,0.09);
  --gold: #d4a65a;
  --gold-soft: rgba(212, 166, 90, 0.14);
  --shadow: 0 24px 70px rgba(0,0,0,0.35);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(212, 166, 90, 0.10), transparent 28%),
    radial-gradient(circle at 90% 15%, rgba(212, 166, 90, 0.08), transparent 18%),
    linear-gradient(180deg, #0a0b10 0%, #0c1017 100%);
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
code {
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--line);
  padding: 2px 6px;
  border-radius: 8px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(80px);
  z-index: -1;
  opacity: 0.45;
}
.orb-1 {
  width: 300px;
  height: 300px;
  background: rgba(212, 166, 90, 0.18);
  top: 60px;
  left: -80px;
}
.orb-2 {
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.06);
  right: -40px;
  top: 240px;
}

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

.header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  background: rgba(10, 11, 16, 0.74);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 64px;
  height: 64px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: 0;
  filter: drop-shadow(0 4px 14px rgba(0, 0, 0, 0.35));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand strong,
.footer strong,
.spec-card h3,
.content-card h2,
.content-card h3,
.hero h1,
.panel-card h2,
.section-heading h2 {
  font-family: 'Cinzel', Georgia, serif;
  letter-spacing: 0.02em;
}

.brand strong {
  display: block;
  font-size: 1rem;
}

.brand span {
  display: block;
  font-size: 0.84rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-weight: 500;
}

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

.section { padding: 84px 0; }
.hero { padding-top: 64px; }

.hero-grid,
.about-grid,
.showcase-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.content-card,
.spec-card {
  position: relative;
}

.eyebrow,
.section-kicker,
.panel-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 166, 90, 0.18);
  color: #f0c987;
  font-size: 0.86rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(2.4rem, 4vw, 4.4rem);
  line-height: 1.04;
  margin: 0 0 20px;
  max-width: 12ch;
}

.hero p,
.content-card p,
.panel-card p,
.spec-card p,
.footer p {
  color: var(--muted);
  margin: 0;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, #c38f41 0%, #d7af71 100%);
  color: #1a1309;
  box-shadow: 0 18px 34px rgba(196, 144, 66, 0.20);
}

.btn-outline {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.10);
  color: var(--text);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(212,166,90,0.22);
  color: #f0c987;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 26px 0 0;
  display: grid;
  gap: 12px;
}

.hero-points li,
.check-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.hero-points li::before,
.check-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 11px;
  background: var(--gold);
}

.hero-panel {
  display: grid;
  gap: 18px;
}

.panel-card,
.content-card,
.spec-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.main-card {
  padding: 30px;
  min-height: 280px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03)),
    radial-gradient(circle at top right, rgba(212,166,90,0.12), transparent 35%);
}

.main-card h2 {
  font-size: 1.65rem;
  margin: 0 0 14px;
}

.panel-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.mini-card {
  padding: 22px;
}

.mini-card strong {
  display: block;
  margin-bottom: 6px;
}

.content-card {
  padding: 34px;
}

.content-card h2,
.section-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 1.1;
  margin: 0 0 14px;
}

.highlight-card {
  background:
    linear-gradient(180deg, rgba(212,166,90,0.08), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.03);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  display: grid;
  gap: 12px;
}

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

.section-heading {
  margin-bottom: 28px;
  max-width: 880px;
}

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

.spec-card {
  padding: 28px;
}

.spec-card h3 {
  font-size: 1.35rem;
  margin: 0 0 12px;
}

.future-list {
  display: grid;
  gap: 18px;
  margin-top: 18px;
}

.future-list div {
  padding: 18px 18px 18px 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.future-list strong {
  display: block;
  margin-bottom: 6px;
}

.future-list span { color: var(--muted); }

.cta-card {
  background:
    linear-gradient(180deg, rgba(212,166,90,0.10), rgba(255,255,255,0.03)),
    rgba(255,255,255,0.03);
}

.section-cover {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  border-radius: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.section-cover-sm {
  height: 220px;
}

.wide-section-image {
  margin: 0 0 30px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.30);
}

.wide-section-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.footer {
  padding: 28px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-note {
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    padding: 14px 0;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    padding-top: 6px;
  }

  .hero-grid,
  .about-grid,
  .showcase-grid,
  .cards-grid,
  .panel-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 { max-width: 100%; }
  .main-card { min-height: initial; }
}

@media (max-width: 640px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 36px; }

  .content-card,
  .spec-card,
  .main-card,
  .mini-card {
    padding: 24px;
  }

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

  .nav-links {
    gap: 16px;
    font-size: 0.95rem;
  }

  .section-cover {
    height: 220px;
  }

  .section-cover-sm {
    height: 200px;
  }

  .wide-section-image img {
    height: 220px;
  }
}
