:root {
  color-scheme: dark;
  --bg: #03070d;
  --bg-soft: #07111f;
  --panel: rgba(10, 20, 36, 0.82);
  --panel-strong: rgba(13, 25, 44, 0.95);
  --gold: #f3c65b;
  --gold-soft: #ffe3a3;
  --text: #fff6df;
  --muted: #c9c4b7;
  --line: rgba(243, 198, 91, 0.38);
  --shadow: rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 20%, rgba(243, 198, 91, 0.11), transparent 24rem),
    radial-gradient(circle at 10% 10%, rgba(42, 91, 142, 0.16), transparent 22rem),
    linear-gradient(180deg, #07111f 0%, #03070d 48%, #000 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle, rgba(255, 223, 139, 0.65) 0 1px, transparent 1px),
    radial-gradient(circle, rgba(255, 255, 255, 0.35) 0 1px, transparent 1px);
  background-size: 72px 72px, 119px 119px;
  background-position: 0 0, 31px 19px;
  opacity: 0.42;
}

a {
  color: var(--gold-soft);
  text-decoration: none;
}

a:hover {
  color: #fff;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: rgba(3, 7, 13, 0.78);
  border-bottom: 1px solid rgba(243, 198, 91, 0.18);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 1.35rem;
  font-weight: 700;
}

.brand-mark {
  color: var(--gold);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.5vw, 28px);
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  align-items: center;
  gap: clamp(32px, 6vw, 86px);
  padding: clamp(42px, 7vw, 92px) clamp(20px, 7vw, 108px);
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--gold-soft);
  font-weight: 800;
  line-height: 1.04;
}

h1 {
  font-size: clamp(3.25rem, 8vw, 7.2rem);
  text-shadow: 0 8px 28px rgba(0, 0, 0, 0.55);
}

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

p {
  color: var(--muted);
  font-family: Arial, sans-serif;
  font-size: 1.06rem;
  line-height: 1.8;
}

.lead {
  max-width: 620px;
  color: #f8edd2;
  font-size: clamp(1.08rem, 2vw, 1.35rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: Arial, sans-serif;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  color: #1a1204;
  background: linear-gradient(180deg, #ffd976, #e8b64b);
  box-shadow: 0 14px 34px rgba(232, 182, 75, 0.22);
}

.button.secondary {
  color: var(--gold-soft);
  background: rgba(4, 10, 18, 0.65);
}

.button.large {
  min-width: min(100%, 280px);
}

.phone-showcase {
  justify-self: center;
  width: min(100%, 390px);
  filter: drop-shadow(0 24px 42px var(--shadow));
}

.phone-showcase img,
.image-frame img {
  border-radius: 28px;
}

.section {
  padding: clamp(56px, 8vw, 110px) clamp(20px, 7vw, 108px);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 1.05fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: start;
}

.split.compact {
  padding-top: 50px;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature {
  padding: 24px;
  border: 1px solid rgba(243, 198, 91, 0.22);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24);
}

.feature span {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
}

.feature strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.3rem;
}

.feature p {
  margin-bottom: 0;
}

.visual-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(32px, 6vw, 76px);
  background: linear-gradient(180deg, rgba(7, 17, 31, 0.35), rgba(0, 0, 0, 0.4));
  border-block: 1px solid rgba(243, 198, 91, 0.12);
}

.image-frame {
  border: 1px solid rgba(243, 198, 91, 0.28);
  border-radius: 34px;
  padding: 10px;
  background: rgba(255, 225, 146, 0.04);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.support-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.support-band > div {
  max-width: 760px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 7vw, 108px);
  border-top: 1px solid rgba(243, 198, 91, 0.16);
  background: rgba(0, 0, 0, 0.35);
}

.site-footer p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-family: Arial, sans-serif;
}

.legal-page,
.support-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 88px) 0;
}

.legal-page h1,
.support-page h1 {
  font-size: clamp(2.55rem, 6vw, 5rem);
}

.legal-page h2,
.contact-box h2 {
  margin-top: 36px;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.legal-page a,
.contact-box a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.support-hero {
  padding: clamp(38px, 7vw, 78px);
  border: 1px solid rgba(243, 198, 91, 0.24);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(13, 25, 44, 0.92), rgba(4, 9, 16, 0.9));
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.32);
}

.support-hero p {
  max-width: 680px;
}

.contact-box {
  margin-top: 30px;
  padding: 28px;
  border: 1px solid rgba(243, 198, 91, 0.2);
  border-radius: 20px;
  background: var(--panel);
}

@media (max-width: 860px) {
  .site-header,
  .site-footer,
  .support-band {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .visual-band {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 54px;
  }

  .phone-showcase,
  .image-frame {
    width: min(100%, 360px);
    justify-self: center;
  }

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

@media (max-width: 520px) {
  .button {
    width: 100%;
  }

  .site-header {
    position: static;
  }
}
