:root {
  --bg: #0c1015;
  --bg-soft: #121821;
  --panel: #171f2a;
  --panel-2: #1d2836;
  --text: #f2ecdf;
  --muted: #aab5c4;
  --accent: #c8a66a;
  --accent-2: #7dc7c9;
  --line: rgba(242, 236, 223, 0.14);
  --ok: #9ad3aa;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  --radius-lg: 24px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1120px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: auto;
}

body {
  background:
    radial-gradient(1200px 700px at 85% -10%, rgba(125, 199, 201, 0.14), transparent 60%),
    radial-gradient(900px 500px at 5% 0%, rgba(200, 166, 106, 0.16), transparent 60%),
    var(--bg);
  color: var(--text);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 100%);
  opacity: 0.35;
  z-index: -1;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(12, 16, 21, 0.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 0 28px rgba(200, 166, 106, 0.5);
}

.nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.nav a {
  padding: 0.48rem 0.72rem;
  color: var(--muted);
  border-radius: 999px;
  transition: 180ms ease;
  font-size: 0.95rem;
  white-space: nowrap;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
  background: rgba(242, 236, 223, 0.08);
}

.actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  font-weight: 700;
  line-height: 1;
  transition: 180ms ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #d0af75, #bd9656);
  color: #11151b;
  box-shadow: 0 10px 30px rgba(200, 166, 106, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  filter: brightness(1.02);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-ghost:hover {
  border-color: rgba(242, 236, 223, 0.35);
  background: rgba(255, 255, 255, 0.05);
}

.nav-toggle {
  display: none;
}

.hero {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.36rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(200, 166, 106, 0.45);
  color: #e3cd9f;
  background: rgba(200, 166, 106, 0.09);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(2.4rem, 4vw, 4.55rem);
  margin-top: 1rem;
}

.lead {
  color: var(--muted);
  font-size: clamp(1.03rem, 1.8vw, 1.32rem);
  max-width: 62ch;
  margin: 1.2rem 0 0;
}

.hero-ctas {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.micro-list {
  margin: 1.3rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.micro-list li {
  padding: 0.42rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  color: #c7d0dc;
  font-size: 0.87rem;
}

.glass-panel {
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  box-shadow: var(--shadow);
  transition: transform 260ms ease, border-color 260ms ease, box-shadow 260ms ease;
  transform-style: preserve-3d;
}

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

.stat {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
}

.stat b {
  display: block;
  font-size: 1.32rem;
  font-family: "Cormorant Garamond", serif;
  color: #f4ddae;
}

.stat span {
  color: #b7c0cf;
  font-size: 0.92rem;
}

main > section:not(.hero) {
  padding: 2.6rem 0;
}

main > section:not(.hero):not(:last-of-type) {
  padding-bottom: 2.2rem;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.2rem;
  margin-bottom: 1.35rem;
}

.section-head p {
  max-width: 64ch;
  margin: 0;
  color: var(--muted);
}

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

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

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
  padding: 1.1rem 1rem;
  min-height: 100%;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
}

.card:hover,
.glass-panel:hover,
.kpi:hover,
.faq-list details:hover,
.timeline li:hover {
  transform: translateY(-3px);
  border-color: rgba(200, 166, 106, 0.45);
  box-shadow: 0 22px 46px rgba(0, 0, 0, 0.32);
}

.card h3 {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.card p {
  margin: 0;
  color: #bdc8d8;
}

.card ul {
  margin: 0.65rem 0 0;
  padding: 0;
  list-style: none;
  color: #d2daE5;
}

.card li {
  position: relative;
  padding-left: 1.05rem;
  margin-top: 0.36rem;
}

.card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.63rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-2);
}

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

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.timeline li {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius-md);
  padding: 0.9rem 0.95rem;
}

.timeline b {
  color: #efd4a0;
  display: inline-block;
  margin-bottom: 0.2rem;
}

.notice {
  border-left: 2px solid var(--accent);
  padding: 0.7rem 0.9rem;
  background: rgba(200, 166, 106, 0.08);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  color: #e4d9c5;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.kpi {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  padding: 0.8rem;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.kpi strong {
  display: block;
  color: #efd9ac;
  font-size: 1.1rem;
}

.kpi span {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-band {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.4rem;
  background: linear-gradient(135deg, rgba(125, 199, 201, 0.13), rgba(200, 166, 106, 0.13));
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.cta-band p {
  margin: 0.35rem 0 0;
  color: #d9e0ea;
}

.note {
  color: var(--muted);
  font-size: 0.92rem;
}

.faq-list {
  display: grid;
  gap: 0.7rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.8rem 0.9rem;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 700;
  color: #f1dfbe;
}

.faq-list p {
  margin: 0.5rem 0 0;
  color: #c8d2df;
}

.footer {
  border-top: 1px solid var(--line);
  margin-top: 2.4rem;
  padding: 2rem 0 2.4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: end;
}

.footer-links {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
}

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

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

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 450ms ease, transform 450ms ease;
}

.reveal.on {
  opacity: 1;
  transform: translateY(0);
}

.heading-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.heading-icon {
  width: 1rem;
  height: 1rem;
  color: var(--accent-2);
}

.heading-with-icon svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent-2);
  opacity: 0.95;
}

.btn-icon,
.btn svg {
  width: 0.98rem;
  height: 0.98rem;
}

.btn-primary .btn-icon,
.btn-primary svg {
  transition: transform 180ms ease;
}

.btn-primary:hover .btn-icon,
.btn-primary:hover svg {
  transform: translate(1px, -1px);
}

.email-fab {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 60;
  border: 1px solid rgba(200, 166, 106, 0.45);
  background: rgba(11, 16, 25, 0.88);
  color: #f1e7d4;
  border-radius: 999px;
  padding: 0.58rem 0.86rem;
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(8px);
}

.email-fab:hover {
  background: rgba(18, 25, 37, 0.95);
}

@media (max-width: 980px) {
  .hero-grid,
  .card-grid,
  .cols-2,
  .kpi-strip,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: none;
    flex-direction: column;
    gap: 0.45rem;
    background: rgba(12, 16, 21, 0.97);
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1rem 1rem;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding: 0.68rem 0.78rem;
    border-radius: 12px;
  }

  .actions .btn-ghost {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    width: 41px;
    height: 41px;
    border-radius: 10px;
    cursor: pointer;
  }

  .section-head {
    align-items: start;
    flex-direction: column;
  }

  .cta-band {
    flex-direction: column;
    align-items: start;
  }

  .email-fab {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
    border-radius: 12px;
    text-align: center;
  }
}
