:root {
  color-scheme: dark;
  --bg: #080a0d;
  --panel: #12161d;
  --panel-2: #181e27;
  --text: #f5f2ea;
  --muted: #aeb4bf;
  --line: rgba(255, 255, 255, 0.1);
  --gold: #d59a3a;
  --gold-2: #f0c36f;
  --green: #79c28a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(213, 154, 58, 0.2), transparent 34rem),
    linear-gradient(135deg, #050608 0%, #10151c 46%, #060708 100%);
  color: var(--text);
}

a {
  color: inherit;
}

.site-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  backdrop-filter: blur(18px);
  background: rgba(8, 10, 13, 0.78);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #171009;
  font-weight: 900;
  background:
    linear-gradient(145deg, rgba(255, 230, 158, 0.95), rgba(199, 121, 38, 0.95)),
    radial-gradient(circle at 50% 35%, #fff3b0, transparent 34%);
  box-shadow: 0 10px 32px rgba(213, 154, 58, 0.25);
}

.brand-text span {
  display: block;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 600;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-1px);
  border-color: rgba(213, 154, 58, 0.55);
  background: rgba(255, 255, 255, 0.09);
}

.button.primary {
  border-color: rgba(240, 195, 111, 0.55);
  background: linear-gradient(135deg, #d59a3a, #9a641f);
  color: #120d08;
}

.hero {
  padding: 94px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: 52px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--gold-2);
  font-weight: 800;
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
  line-height: 0.95;
}

.lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
  line-height: 1.65;
}

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

.hero-note {
  margin-top: 16px;
  color: #939ba8;
  font-size: 0.95rem;
}

.product-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.product-window {
  border-bottom: 1px solid var(--line);
  padding: 14px 16px;
  display: flex;
  gap: 7px;
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  background: #5f6875;
}

.dot:nth-child(1) {
  background: #ef725f;
}

.dot:nth-child(2) {
  background: #f0c36f;
}

.dot:nth-child(3) {
  background: #79c28a;
}

.product-body {
  padding: 24px;
}

.status-card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  background: rgba(0, 0, 0, 0.2);
  margin-bottom: 14px;
}

.status-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.status-row:last-child {
  border-bottom: 0;
}

.status-row strong {
  color: var(--text);
}

.pill {
  color: var(--green);
  font-weight: 800;
}

.section {
  padding: 58px 0;
}

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

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.section-heading p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 1.05rem;
}

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

.feature-card,
.content-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.055);
}

.feature-card h3,
.content-card h3 {
  font-size: 1.2rem;
}

.feature-card p,
.content-card p,
.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.65;
}

.icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(213, 154, 58, 0.16);
  color: var(--gold-2);
  font-weight: 900;
  margin-bottom: 18px;
}

.cta-band {
  margin: 54px 0 20px;
  padding: 34px;
  border-radius: 24px;
  border: 1px solid rgba(240, 195, 111, 0.28);
  background: linear-gradient(135deg, rgba(213, 154, 58, 0.16), rgba(255, 255, 255, 0.05));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.page-hero {
  padding: 72px 0 28px;
}

.page-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.6rem);
}

.legal-content {
  max-width: 860px;
  padding: 0 0 70px;
}

.legal-card {
  margin-top: 20px;
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
}

.legal-card h2 {
  margin-bottom: 10px;
  font-size: 1.45rem;
}

.legal-card ul {
  padding-left: 22px;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.contact-list a,
.contact-list span {
  display: block;
  padding: 16px 18px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
  text-decoration: none;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 30px 0;
  color: var(--muted);
}

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 28px, 1180px);
  }

  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 56px;
  }

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

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

@media (max-width: 540px) {
  .brand-text span {
    font-size: 0.72rem;
  }

  .nav-links {
    gap: 13px;
    font-size: 0.9rem;
  }

  .hero-actions .button,
  .cta-band .button {
    width: 100%;
  }

  .feature-card,
  .content-card,
  .legal-card,
  .cta-band {
    padding: 20px;
  }
}
