@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --bg: #0d0908;
  --bg-soft: #15100e;
  --panel: rgba(27, 20, 17, .76);
  --panel-solid: #1a1310;
  --text: #f5eadb;
  --muted: #b9aa98;
  --gold: #d7ad69;
  --gold-light: #f0d39c;
  --red: #762e25;
  --line: rgba(221, 184, 121, .22);
  --shadow: 0 30px 90px rgba(0, 0, 0, .45);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 16% 8%, rgba(104, 35, 30, .18), transparent 29rem),
    radial-gradient(circle at 85% 30%, rgba(91, 51, 29, .14), transparent 34rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.ambient {
  position: fixed;
  width: 32rem;
  height: 32rem;
  filter: blur(110px);
  opacity: .12;
  pointer-events: none;
  z-index: -1;
}
.ambient-one { top: 2rem; left: -16rem; background: #a43e2f; }
.ambient-two { top: 32rem; right: -18rem; background: #9d6b35; }

.site-header {
  width: min(1280px, calc(100% - 40px));
  height: 84px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: Cinzel, serif;
  letter-spacing: .02em;
}
.brand img { filter: drop-shadow(0 0 16px rgba(215,173,105,.22)); }
.brand b { color: var(--gold-light); font-weight: 600; }

.site-nav { display: flex; align-items: center; gap: 30px; font-size: .92rem; color: #cdbdaa; }
.site-nav a { transition: color .2s ease; }
.site-nav a:hover { color: var(--gold-light); }
.nav-download {
  padding: 10px 17px;
  border: 1px solid rgba(240,211,156,.34);
  color: var(--gold-light) !important;
  background: rgba(215,173,105,.06);
}
.menu-button { display: none; }

main, footer { width: min(1280px, calc(100% - 40px)); margin: 0 auto; }

.hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  align-items: center;
  gap: 78px;
  padding: 72px 0 86px;
}
.eyebrow, .section-kicker {
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
}
.eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 23px; }
.eyebrow span { width: 30px; height: 1px; background: var(--gold); }

h1, h2 {
  margin: 0;
  font-family: Cinzel, Georgia, serif;
  font-weight: 500;
  line-height: 1.06;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(3rem, 6.2vw, 5.65rem); max-width: 780px; }
h1 em, h2 em { color: var(--gold-light); font-style: normal; }
.hero-lead {
  max-width: 690px;
  margin: 28px 0 0;
  color: #c9bbaa;
  font-size: clamp(1rem, 1.4vw, 1.14rem);
  line-height: 1.85;
}
.hero-actions { display: flex; gap: 14px; margin-top: 36px; }
.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid;
  font-size: .92rem;
  font-weight: 700;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button svg { width: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.button-primary {
  color: #190f09;
  border-color: var(--gold-light);
  background: linear-gradient(135deg, #f1d7a6, #c9954d);
  box-shadow: 0 10px 36px rgba(211, 159, 79, .18);
}
.button-secondary {
  border-color: rgba(240,211,156,.28);
  color: var(--text);
  background: rgba(255,255,255,.025);
}
.trust-line {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 19px;
  color: #9f9182;
  font-size: .75rem;
}
.trust-line i { width: 3px; height: 3px; border-radius: 50%; background: var(--gold); }

.hero-visual { position: relative; }
.app-window {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(235, 203, 148, .26);
  background: #130f0e;
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}
.app-topbar {
  height: 70px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 20px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  background: linear-gradient(90deg, rgba(90,34,27,.17), transparent);
}
.app-topbar strong { display: block; font-family: Cinzel, serif; font-size: .88rem; }
.app-topbar small { display: block; color: #7e746a; font-size: .67rem; }
.app-logo { width: 36px; height: 36px; display: grid; place-items: center; }
.window-dots { display: flex; gap: 6px; margin-left: auto; }
.window-dots span { width: 7px; height: 7px; border-radius: 50%; background: #4b4039; }
.app-body { min-height: 390px; display: grid; grid-template-columns: 56px 1fr; }
.app-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  padding-top: 25px;
  border-right: 1px solid rgba(255,255,255,.06);
}
.app-sidebar span { width: 16px; height: 16px; border: 1px solid #52463d; transform: rotate(45deg); }
.app-sidebar span.active { border-color: var(--gold); box-shadow: 0 0 14px rgba(215,173,105,.35); }
.dashboard { padding: 28px; background: radial-gradient(circle at 75% 10%, rgba(103,37,28,.13), transparent 45%); }
.dash-heading { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 22px; }
.dash-heading small { display: block; color: var(--gold); font-size: .56rem; letter-spacing: .16em; }
.dash-heading strong { display: block; margin-top: 4px; font-family: Cinzel, serif; font-size: 1.1rem; }
.status { color: #9e958b; font-size: .62rem; }
.status span { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: #6aaa75; box-shadow: 0 0 8px #6aaa75; }
.tiles { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; }
.tile {
  min-height: 91px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px;
  border: 1px solid rgba(225,190,133,.13);
  background: rgba(255,255,255,.025);
}
.tile-wide { grid-column: 1 / -1; }
.tile-accent { background: linear-gradient(135deg, rgba(117,45,34,.26), rgba(255,255,255,.02)); }
.tile-icon {
  width: 38px; height: 38px; flex: 0 0 38px; display: grid; place-items: center;
  border: 1px solid rgba(215,173,105,.28); color: var(--gold-light); font-family: Cinzel, serif;
}
.tile small { display: block; color: #8e8174; font-size: .52rem; letter-spacing: .11em; }
.tile strong { display: block; margin-top: 3px; font-size: .72rem; font-weight: 600; }
.visual-glow { position: absolute; inset: 20% 5% -10%; background: #6c2d22; filter: blur(90px); opacity: .2; }

.feature-intro {
  padding: 110px 0 54px;
  display: grid;
  grid-template-columns: 1fr .75fr;
  gap: 80px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.feature-intro h2, .faq-heading h2 { margin-top: 15px; font-size: clamp(2.4rem, 4.8vw, 4.5rem); }
.feature-intro > p { align-self: end; margin: 0 0 8px; color: var(--muted); line-height: 1.85; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  padding-bottom: 110px;
}
.feature-card {
  position: relative;
  min-height: 295px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(35,25,21,.9), rgba(17,13,11,.94));
}
.feature-card::after {
  content: "";
  position: absolute;
  width: 140px; height: 140px; right: -70px; bottom: -70px;
  border: 1px solid rgba(215,173,105,.1); transform: rotate(45deg);
}
.feature-card.featured { grid-row: span 2; min-height: 603px; background: radial-gradient(circle at 60% 75%, rgba(115,42,31,.25), transparent 55%), var(--panel-solid); }
.number { position: absolute; top: 23px; right: 25px; color: #5e5147; font-family: Cinzel, serif; font-size: .78rem; }
.feature-symbol {
  width: 48px; height: 48px; display: grid; place-items: center;
  margin-bottom: 48px; border: 1px solid rgba(215,173,105,.3); color: var(--gold-light); font-family: Cinzel, serif; font-size: 1.25rem;
}
.feature-card h3 { margin: 0; font-family: Cinzel, serif; font-size: 1.15rem; font-weight: 500; }
.feature-card p { margin: 12px 0 0; color: #a99b8d; font-size: .9rem; }
.mini-panel {
  margin-top: 78px;
  padding: 24px;
  border: 1px solid rgba(215,173,105,.23);
  background: rgba(8,6,5,.45);
}
.mini-panel span, .mini-panel small { display: block; color: #887b6e; font-size: .68rem; }
.mini-panel strong { display: block; margin: 8px 0; color: var(--gold-light); font-family: Cinzel, serif; font-size: 1.65rem; }

.updates-section { padding: 35px 0 120px; }
.updates-card {
  border: 1px solid rgba(215,173,105,.27);
  background: linear-gradient(120deg, rgba(98,37,29,.25), rgba(25,18,15,.95) 42%);
  box-shadow: var(--shadow);
}
.update-badge { padding: 13px 25px; border-bottom: 1px solid rgba(215,173,105,.17); color: var(--gold); font-size: .66rem; font-weight: 700; letter-spacing: .16em; }
.update-main { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding: 35px 40px; }
.update-main span { color: #8d8176; font-size: .8rem; }
.update-main h2 { margin-top: 3px; font-size: clamp(2rem, 4vw, 3.5rem); }
.update-main p { margin: 8px 0 0; color: var(--muted); }
.update-points { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,.06); }
.update-points span { padding: 18px 30px; color: #a99c8e; font-size: .82rem; border-right: 1px solid rgba(255,255,255,.06); }
.update-points span:last-child { border-right: 0; }
.update-points b { color: var(--gold); margin-right: 8px; }

.faq-section {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 95px;
  padding: 100px 0 135px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between;
  padding: 25px 4px;
  cursor: pointer;
  font-family: Cinzel, serif;
  font-size: 1rem;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--gold); font-family: Inter, sans-serif; font-size: 1.3rem; transition: transform .2s; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list p { margin: -4px 0 24px; padding-right: 40px; color: var(--muted); }

.final-cta {
  position: relative;
  overflow: hidden;
  padding: 100px 30px;
  text-align: center;
  border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 50%, rgba(113,42,31,.25), transparent 58%), #15100e;
}
.final-cta h2 { margin-top: 13px; font-size: clamp(2.5rem, 5vw, 4.8rem); }
.final-cta p { margin: 15px 0 28px; color: var(--muted); }
.cta-rune { position: absolute; inset: 50% auto auto 50%; transform: translate(-50%,-50%); color: rgba(215,173,105,.035); font-size: 28rem; line-height: 1; pointer-events: none; }

footer {
  padding: 58px 0 40px;
  display: grid;
  grid-template-columns: .55fr 1.4fr .55fr;
  gap: 45px;
  align-items: start;
  color: #81766c;
  font-size: .72rem;
}
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--text); font-family: Cinzel, serif; }
.footer-brand img { width: 28px; }
footer p { margin: 0; line-height: 1.7; }
.footer-links { display: flex; gap: 18px; justify-content: flex-end; color: #b7a999; }
footer small { grid-column: 1 / -1; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.05); }

@media (max-width: 980px) {
  .hero { grid-template-columns: 1fr; gap: 60px; padding-top: 65px; }
  .hero-copy { text-align: center; }
  .eyebrow, .hero-actions, .trust-line { justify-content: center; }
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-visual { width: min(650px, 100%); margin: 0 auto; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .feature-card.featured { grid-row: auto; min-height: 380px; }
  .mini-panel { margin-top: 35px; }
  .faq-section { grid-template-columns: 1fr; gap: 50px; }
  footer { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 720px) {
  .site-header { height: 70px; }
  .menu-button {
    display: grid; gap: 4px; width: 38px; height: 38px; place-content: center;
    border: 1px solid var(--line); background: transparent;
  }
  .menu-button span:not(.sr-only) { width: 17px; height: 1px; background: var(--gold-light); }
  .site-nav {
    display: none; position: absolute; top: 69px; left: 20px; right: 20px; z-index: 20;
    padding: 22px; flex-direction: column; align-items: stretch; gap: 18px;
    border: 1px solid var(--line); background: #15100e; box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .nav-download { text-align: center; }
  .hero { min-height: auto; padding: 70px 0; }
  h1 { font-size: clamp(2.7rem, 14vw, 4.2rem); }
  .hero-actions { flex-direction: column; }
  .trust-line { flex-wrap: wrap; }
  .app-window { transform: none; }
  .app-body { grid-template-columns: 42px 1fr; }
  .dashboard { padding: 18px; }
  .tiles { grid-template-columns: 1fr; }
  .tile-wide { grid-column: auto; }
  .feature-intro { grid-template-columns: 1fr; gap: 22px; padding-top: 80px; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card, .feature-card.featured { min-height: auto; }
  .update-main { align-items: flex-start; flex-direction: column; padding: 28px; }
  .update-points { grid-template-columns: 1fr; }
  .update-points span { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .faq-section { padding: 80px 0 100px; }
  .final-cta { padding: 75px 20px; }
}
