:root {
  --bg: #141110;
  --bg-soft: #1f1a17;
  --card: #1f1a17;
  --card-raised: #2b2521;
  --ink: #f4ece6;
  --muted: #cabfb7;
  --dim: #8c7f77;
  --accent: #fa865e;
  --accent-hot: #fa865e;
  --accent-soft: rgba(250, 134, 94, 0.17);
  --line: rgba(244, 236, 230, 0.10);
  --line-strong: rgba(250, 134, 94, 0.36);
  --shadow: 0 20px 56px rgba(0, 0, 0, 0.28);
  --radius-xl: 38px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

* {
  box-sizing: border-box;
}

html {
  color: var(--ink);
  background: var(--bg);
  font-family: "Avenir Next", "Trebuchet MS", "Gill Sans", sans-serif;
  line-height: 1.55;
}

body {
  min-height: 100vh;
  margin: 0;
  background: var(--bg);
}

body::before {
  display: none;
  content: none;
}

::selection {
  color: #141110;
  background: var(--accent);
}

a {
  color: var(--accent-hot);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.shell-wide {
  width: min(1280px, calc(100% - 24px));
}

.support-shell {
  width: min(1480px, calc(100% - 12px));
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.mark img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 800;
}

.links a {
  min-height: 40px;
  padding: 9px 14px;
  color: var(--muted);
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
}

.links a:hover {
  color: var(--ink);
  border-color: var(--line);
  background: var(--card-raised);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 16px 0 58px;
}

.hero-copy,
.card,
.policy {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.hero-copy {
  position: relative;
  overflow: hidden;
  min-height: 0;
  padding: clamp(30px, 6vw, 62px);
  border-radius: var(--radius-xl);
}

.hero-copy::after {
  display: none;
  content: none;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1fr);
  gap: clamp(10px, 1.8vw, 18px) clamp(24px, 5vw, 52px);
  align-items: center;
}

.hero-title {
  grid-column: 2;
  align-self: end;
}

.hero-text {
  grid-column: 2;
  align-self: start;
  min-width: 0;
}

.hero-text .lead {
  margin-top: 0;
}

.hero-shot {
  grid-column: 1;
  grid-row: 1 / span 2;
  overflow: hidden;
  justify-self: start;
  width: min(100%, 312px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 42px;
  background: var(--bg);
}

.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  content: "";
  background: var(--accent);
  box-shadow: 0 0 0 7px var(--accent-soft);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.04;
  letter-spacing: -0.055em;
}

h1 {
  max-width: 10ch;
  font-size: clamp(2.48rem, 5.95vw, 4.65rem);
}

h2 {
  font-size: clamp(2.3rem, 6vw, 4.1rem);
}

h3 {
  font-size: 1.32rem;
}

.lead {
  position: relative;
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.06rem, 2vw, 1.28rem);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  text-decoration: none;
}

.button.primary {
  color: #141110;
  background: var(--accent);
  box-shadow: 0 18px 42px rgba(250, 134, 94, 0.24);
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--card-raised);
}

.store-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
}

.store-badge-link {
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  text-decoration: none;
}

.store-badge-link img {
  display: block;
  width: auto;
  height: 70px;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.feature-pills span {
  padding: 9px 13px;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--bg);
  font-size: 0.9rem;
  font-weight: 850;
}

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

.card {
  padding: 28px;
  border-radius: var(--radius-lg);
}

.card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.card-icon {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 18px;
  color: var(--accent);
  background: var(--accent-soft);
  font-size: 1.35rem;
}

.card-icon img {
  display: block;
  width: 24px;
  height: 24px;
}

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

.policy {
  padding: clamp(28px, 6vw, 56px);
  border-radius: var(--radius-xl);
}

.policy-wide {
  padding: clamp(24px, 4vw, 40px);
}

.support-policy {
  padding: clamp(20px, 2.8vw, 28px);
}

.policy h1 {
  max-width: 100%;
  font-size: clamp(2.7rem, 7vw, 5rem);
}

.policy h2 {
  margin-top: 34px;
  font-size: clamp(1.55rem, 4vw, 2.35rem);
}

.policy h3 {
  margin-top: 20px;
}

.policy p,
.policy li {
  color: var(--muted);
}

.policy ul {
  padding-left: 1.25rem;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 30px;
}

.support-contact-card {
  --support-card-bleed: clamp(12px, 2.6vw, 26px);
  width: calc(100% + (var(--support-card-bleed) * 2));
  margin-inline: calc(var(--support-card-bleed) * -1);
  padding: clamp(20px, 3vw, 28px);
}

.support-contact-split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 22px;
  align-items: start;
}

.support-contact-split h3 {
  margin-top: 0;
}

.footer {
  padding: 28px 0 44px;
  color: var(--dim);
  font-size: 0.92rem;
}

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

  .hero-copy {
    min-height: auto;
  }

  .hero-title,
  .hero-text,
  .hero-shot {
    grid-column: auto;
    grid-row: auto;
    align-self: auto;
  }

  .hero-title {
    text-align: center;
  }

  .hero-title h1 {
    margin-inline: auto;
  }

  .hero-text {
    text-align: center;
  }

  .store-badges {
    justify-content: center;
  }

  .hero-shot {
    justify-self: center;
    width: min(100%, 262px);
  }

  .shell-wide {
    width: min(1120px, calc(100% - 32px));
  }

  .support-shell {
    width: min(1120px, calc(100% - 28px));
  }

  .support-contact-split {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .support-contact-card {
    width: 100%;
    margin-inline: 0;
  }
}

@media (max-width: 620px) {
  .nav {
    display: grid;
    justify-items: start;
  }

  .links {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 8px;
  }

  h1 {
    font-size: clamp(2.08rem, 9.9vw, 3rem);
  }

  .hero-shot {
    width: min(100%, 214px);
  }

}
