:root {
  color-scheme: dark;
  --bg: #0b0910;
  --bg-soft: #16111d;
  --surface: rgba(255, 255, 255, 0.08);
  --surface-strong: rgba(255, 255, 255, 0.12);
  --border: rgba(255, 255, 255, 0.1);
  --text: #f7f1ea;
  --muted: rgba(247, 241, 234, 0.72);
  --accent: #e88d52;
  --accent-strong: #ffb173;
  --shadow: rgba(6, 4, 10, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(232, 141, 82, 0.18), transparent 32%),
    radial-gradient(circle at 80% 20%, rgba(255, 177, 115, 0.12), transparent 28%),
    linear-gradient(180deg, #130f19 0%, var(--bg) 58%, #07060a 100%);
}

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

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

.page-shell {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 36px;
}

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

.brand,
.site-nav,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
}

.site-nav a,
.footer-links a,
.site-footer p {
  color: var(--muted);
  font-size: 0.96rem;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
  min-height: calc(100vh - 180px);
  padding: 48px 0 24px;
}

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

.eyebrow,
.feature-kicker {
  margin: 0 0 14px;
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  max-width: 10ch;
  font-size: clamp(3.6rem, 9vw, 6.5rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero-text {
  margin-top: 22px;
  max-width: 34rem;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

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

.button {
  border-radius: 999px;
  padding: 15px 22px;
  font-weight: 700;
  transition: transform 140ms ease, background 140ms ease, border-color 140ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #24150c;
  box-shadow: 0 20px 50px rgba(232, 141, 82, 0.2);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.hero-card,
.policy-card,
.feature-card {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.04));
  box-shadow: 0 30px 80px var(--shadow);
  backdrop-filter: blur(20px);
}

.hero-card {
  display: flex;
  justify-content: center;
  padding: 36px;
  border-radius: 36px;
}

.phone-frame {
  width: min(340px, 100%);
  padding: 16px;
  border-radius: 38px;
  background: linear-gradient(180deg, #24212b, #0f0d14);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.phone-screen {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  min-height: 620px;
  padding: 38px 24px 26px;
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(255, 177, 115, 0.22), transparent 30%),
    linear-gradient(180deg, #f7efe7 0%, #f0dfcf 100%);
  color: #2c211b;
  text-align: center;
}

.phone-logo {
  width: 110px;
  height: 110px;
}

.phone-title {
  font-size: 2.1rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.phone-subtitle {
  max-width: 16rem;
  color: rgba(44, 33, 27, 0.68);
  line-height: 1.6;
}

.status-pill {
  margin-top: auto;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(35, 147, 108, 0.14);
  color: #177252;
  font-weight: 700;
}

.phone-button {
  width: 100%;
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(135deg, #ea9257, #ffba81);
  color: #2b170f;
  font-size: 1.1rem;
  font-weight: 800;
}

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

.feature-card,
.policy-card {
  border-radius: 28px;
}

.feature-card {
  padding: 26px;
}

.feature-card h2 {
  font-size: 1.45rem;
  letter-spacing: -0.04em;
}

.feature-card p:last-child {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
}

.policy-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - 180px);
  padding: 40px 0;
}

.policy-card {
  width: min(760px, 100%);
  padding: 40px;
}

.policy-card h1 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 7vw, 4.6rem);
  margin-bottom: 18px;
}

.policy-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 14px;
}

.policy-card a {
  color: var(--accent-strong);
}

.support-card {
  text-align: center;
}

.support-card h1 {
  max-width: none;
}

.site-footer {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

  .hero {
    min-height: auto;
    padding-top: 28px;
  }

  .hero-copy {
    max-width: none;
  }

  h1 {
    max-width: 12ch;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 28px, 1160px);
    padding-top: 20px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav,
  .footer-links {
    flex-wrap: wrap;
  }

  .hero-card,
  .policy-card,
  .feature-card {
    border-radius: 24px;
  }

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

  .phone-screen {
    min-height: 560px;
    padding: 28px 18px 18px;
  }

  h1,
  .policy-card h1 {
    max-width: none;
    font-size: clamp(2.8rem, 14vw, 4rem);
  }
}
