:root {
  --bg: #07111f;
  --bg-soft: #0d1a2e;
  --surface: rgba(12, 22, 40, 0.78);
  --surface-strong: rgba(18, 31, 55, 0.9);
  --card-border: rgba(255, 255, 255, 0.1);
  --text: #f5f1e8;
  --muted: #c7c0b3;
  --accent: #d7b46a;
  --accent-strong: #f1d089;
  --accent-dark: #8d6a29;
  --success: #b6dfc7;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --max-width: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Display", "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(215, 180, 106, 0.2), transparent 32%),
    radial-gradient(circle at 80% 0%, rgba(241, 208, 137, 0.12), transparent 26%),
    linear-gradient(180deg, #091120 0%, #07111f 40%, #050c16 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 30%, transparent 88%);
  opacity: 0.25;
}

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

img {
  max-width: 100%;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.ambient-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.4;
  pointer-events: none;
}

.orb-one {
  top: 120px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(241, 208, 137, 0.26), transparent 66%);
}

.orb-two {
  top: 480px;
  left: -120px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.18), transparent 70%);
}

.nav {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px) saturate(140%);
  background: rgba(7, 17, 31, 0.72);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f4d998 0%, #b9842e 100%);
  color: #241507;
  box-shadow: 0 16px 28px rgba(215, 180, 106, 0.25);
  font-size: 18px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn-primary {
  color: #241507;
  background: linear-gradient(135deg, var(--accent-strong), var(--accent));
  box-shadow: 0 18px 36px rgba(215, 180, 106, 0.28);
}

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

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

.menu-button {
  display: none;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  border-radius: 12px;
  padding: 10px 12px;
}

.page {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px 56px;
}

.hero {
  padding: 64px 0 30px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 28px;
  align-items: stretch;
}

.hero-copy,
.hero-panel,
.glass-card,
.policy-card {
  background: linear-gradient(180deg, rgba(15, 27, 47, 0.92), rgba(10, 19, 35, 0.82));
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 38px;
  position: relative;
  overflow: hidden;
}

.hero-copy::after {
  content: "";
  position: absolute;
  inset: auto -40px -60px auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241, 208, 137, 0.18), transparent 64%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--accent-strong);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.page-title {
  margin: 18px 0 14px;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.04em;
}

.hero p,
.lede {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.hero-meta {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.meta-card {
  padding: 18px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-card strong {
  display: block;
  font-size: 26px;
  margin-bottom: 6px;
}

.hero-panel {
  padding: 28px;
  position: relative;
  overflow: hidden;
}

.hero-panel::before,
.hero-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(215, 180, 106, 0.18), transparent 70%);
}

.hero-panel::before {
  width: 220px;
  height: 220px;
  top: -60px;
  right: -60px;
}

.hero-panel::after {
  width: 180px;
  height: 180px;
  left: -70px;
  bottom: -70px;
}

.device-frame {
  position: relative;
  margin: 0 auto;
  max-width: 360px;
  padding: 22px;
  border-radius: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.device-screen {
  border-radius: 28px;
  padding: 22px;
  min-height: 520px;
  background:
    radial-gradient(circle at top right, rgba(241, 208, 137, 0.22), transparent 32%),
    linear-gradient(180deg, #12233e 0%, #0b1627 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.screen-badge {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--accent-strong);
  font-size: 13px;
  margin-bottom: 16px;
}

.screen-stack {
  display: grid;
  gap: 14px;
}

.screen-card {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.screen-card strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}

.section {
  padding: 16px 0;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -0.03em;
}

.section-header p {
  margin: 0;
  max-width: 620px;
  color: var(--muted);
}

.feature-grid,
.policy-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.glass-card,
.policy-card {
  padding: 26px;
}

.feature-card {
  grid-column: span 4;
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  background: linear-gradient(135deg, rgba(241, 208, 137, 0.24), rgba(215, 180, 106, 0.12));
  color: var(--accent-strong);
  font-size: 22px;
}

.glass-card h3,
.policy-card h2,
.policy-card h3 {
  margin: 0 0 12px;
}

.glass-card p,
.glass-card li,
.policy-card p,
.policy-card li {
  color: var(--muted);
  line-height: 1.8;
}

.glass-card ul,
.policy-card ul,
.policy-card ol {
  margin: 0;
  padding-left: 20px;
}

.policy-layout {
  padding-top: 44px;
}

.policy-intro {
  margin-bottom: 26px;
}

.policy-grid .policy-card {
  grid-column: span 12;
}

.policy-card.highlight {
  border-color: rgba(215, 180, 106, 0.3);
  box-shadow: 0 24px 70px rgba(215, 180, 106, 0.12);
}

.policy-card .label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(215, 180, 106, 0.12);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-banner {
  margin: 28px 0 0;
  padding: 24px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(215, 180, 106, 0.18), rgba(215, 180, 106, 0.08));
  border: 1px solid rgba(215, 180, 106, 0.26);
}

.cta-banner strong {
  display: block;
  font-size: 22px;
  margin-bottom: 8px;
}

.support-card-primary {
  grid-column: span 7;
}

.support-card-secondary {
  grid-column: span 5;
}

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

.contact-item {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--accent-strong);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.notice-list {
  display: grid;
  gap: 12px;
}

.notice-list li {
  list-style: none;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.footer {
  padding: 20px 20px 42px;
  color: rgba(245, 241, 232, 0.7);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  align-items: center;
}

.inline-link {
  color: var(--accent-strong);
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .support-card-primary,
  .support-card-secondary {
    grid-column: span 12;
  }
}

@media (max-width: 760px) {
  .nav-inner {
    align-items: flex-start;
  }

  .menu-button {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 10px;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a,
  .nav-links .btn-primary {
    width: 100%;
  }

  .hero-copy,
  .hero-panel,
  .glass-card,
  .policy-card {
    padding: 22px;
  }

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

  .page {
    padding: 0 16px 40px;
  }

  .hero {
    padding-top: 36px;
  }

  .page-title {
    font-size: 34px;
  }

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