:root {
  color-scheme: dark;
  --background: #050607;
  --surface: #101214;
  --elevated: #17191c;
  --gold: #ffc629;
  --gold-deep: #f19a05;
  --gold-soft: #ffe37a;
  --text: #f8f8f5;
  --muted: #a9a9a2;
  --stroke: rgba(214, 158, 18, 0.4);
  --shadow: rgba(255, 198, 41, 0.2);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at 80% 0%, rgba(255, 198, 41, 0.16), transparent 34rem),
    radial-gradient(circle at 10% 20%, rgba(241, 154, 5, 0.12), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  user-select: none;
}

body {
  overflow-x: hidden;
}

a,
button,
.app-icon,
.mini-icon {
  -webkit-user-drag: none;
}

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

.page-shell {
  width: min(1120px, calc(100vw - 32px));
  margin: 0 auto;
  padding: 36px 0 44px;
}

.hero {
  min-height: 92svh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  text-align: center;
}

.brand-lockup {
  width: min(238px, 58vw);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.app-icon-shield {
  width: 100%;
  height: 100%;
  padding: 10px;
  border-radius: 34px;
  background: linear-gradient(145deg, rgba(255, 227, 122, 0.26), rgba(241, 154, 5, 0.06));
  border: 1px solid var(--stroke);
  box-shadow: 0 24px 90px rgba(255, 198, 41, 0.22);
}

.app-icon,
.mini-icon {
  pointer-events: none;
  background-image: url("appicon.png");
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.app-icon {
  width: 100%;
  height: 100%;
  border-radius: 26px;
}

.mini-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 14px;
}

.eyebrow {
  margin: 0;
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 840px;
  margin-bottom: 0;
  font-size: clamp(2.35rem, 7vw, 5.8rem);
  line-height: 0.95;
  font-weight: 950;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: 1.55;
  font-weight: 700;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
}

.button {
  min-width: 164px;
  padding: 15px 20px;
  border-radius: 16px;
  font-weight: 900;
  border: 1px solid var(--stroke);
}

.button.primary {
  color: #090909;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--gold-deep));
  box-shadow: 0 16px 46px var(--shadow);
}

.button.secondary {
  color: var(--gold);
  background: rgba(16, 18, 20, 0.72);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.notice,
.policy-card {
  background: linear-gradient(135deg, rgba(17, 20, 22, 0.94), rgba(7, 8, 9, 0.94));
  border: 1px solid var(--stroke);
  box-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.feature-card {
  min-height: 186px;
  padding: 22px;
  border-radius: 18px;
}

.feature-kicker {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
}

.feature-card h2,
.notice h2,
.policy-card h2 {
  margin: 12px 0 8px;
  font-size: 1.2rem;
}

.feature-card p,
.notice p,
.policy-card p {
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}

.notice {
  margin-top: 14px;
  padding: 22px;
  border-radius: 18px;
}

.policy-shell {
  max-width: 860px;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--muted);
  font-weight: 850;
}

.top-nav a {
  color: var(--gold);
}

.policy-card {
  padding: clamp(22px, 4vw, 42px);
  border-radius: 22px;
}

.policy-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.policy-heading h1 {
  font-size: clamp(2rem, 7vw, 4rem);
}

.updated,
.disclaimer {
  color: var(--gold);
  font-weight: 850;
}

@media (max-width: 760px) {
  .page-shell {
    width: min(100vw - 24px, 1120px);
    padding-top: 22px;
  }

  .hero {
    min-height: 86svh;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }
}
