:root {
  color-scheme: dark;
  --black: #000000;
  --iron: #181818;
  --charcoal: #202020;
  --graphite: #494949;
  --ash: #969696;
  --white: #ffffff;
  --smoke: #f5f5f5;
  --muted: #b7b7b7;
  --purple: #9b5cff;
  --purple-dark: #5f2bbd;
  --purple-soft: #c9adff;
  --border: #313131;
  font-family: "Arial Narrow", "Roboto Condensed", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--black);
}

body {
  min-width: 320px;
  margin: 0;
  background: var(--black);
  color: var(--white);
}

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

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

.page {
  min-height: 100vh;
  background: var(--black);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  border: 0;
  border-radius: 0;
  background: var(--purple);
  color: var(--black);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.button:hover {
  background: var(--purple-dark);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  border-color: var(--purple);
  background: var(--purple-dark);
}

.hero,
.section {
  padding: clamp(32px, 5vw, 56px) clamp(24px, 5vw, 72px);
}

.hero {
  display: grid;
  min-height: 100vh;
  grid-template-columns: minmax(0, 1.03fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  border-bottom: 1px solid var(--border);
}

.section {
  border-bottom: 1px solid var(--border);
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple-soft);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 860px;
  margin-bottom: 20px;
  font-size: clamp(3.4rem, 10vw, 7.5rem);
  line-height: 0.92;
}

h2 {
  max-width: 940px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 6.2vw, 5rem);
  line-height: 1.05;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  line-height: 1.22;
}

.lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: var(--smoke);
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.56;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

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

.phone-frame {
  overflow: visible;
  background: transparent;
}

.phone-frame img {
  width: 100%;
}

.feature-grid,
.support-grid,
.shot-grid,
.home-shot-grid {
  display: grid;
  gap: 1px;
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shot-grid,
.home-shot-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
  background: var(--border);
}

.card,
.support-card,
.steps li,
.faq details,
.home-shot,
.shot,
.contact-panel {
  border: 0;
  border-radius: 0;
  background: var(--charcoal);
}

.card,
.support-card {
  padding: clamp(24px, 3vw, 40px);
}

.card p,
.support-card p,
.faq p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.55;
}

.icon {
  display: block;
  margin-bottom: 24px;
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.08em;
}

.band {
  background: var(--iron);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}

.steps {
  display: grid;
  gap: 1px;
  margin: 0;
  padding: 0;
  background: var(--border);
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px;
}

.step-number {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  background: var(--purple);
  color: var(--black);
  font-weight: 700;
}

.faq {
  display: grid;
  gap: 1px;
  background: var(--border);
}

.faq summary {
  min-height: 56px;
  cursor: pointer;
  padding: 20px 24px;
  color: var(--white);
  font-weight: 700;
  text-transform: uppercase;
}

.faq p {
  padding: 0 24px 24px;
}

.shot {
  overflow: hidden;
}

.shot img {
  width: 100%;
}

.shot figcaption,
.home-shot figcaption {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shot figcaption {
  padding: 18px 20px 22px;
}

.home-shot {
  display: grid;
  justify-items: center;
  margin: 0;
  padding: 24px;
}

.home-shot img {
  width: min(100%, 270px);
  border-radius: 0;
}

.home-shot figcaption {
  max-width: 300px;
  margin-top: 18px;
  text-align: center;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: clamp(28px, 4vw, 48px);
  background: var(--charcoal);
  box-shadow: inset 8px 0 0 var(--purple);
}

.cta-section {
  background: var(--black);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(32px, 5vw, 56px);
  background: var(--charcoal);
  box-shadow: inset 8px 0 0 var(--purple);
}

.cta-panel h2 {
  margin-bottom: 14px;
}

.cta-panel p:last-child {
  max-width: 680px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.app-store-link {
  display: inline-flex;
  width: 180px;
  min-height: 60px;
  align-items: center;
  justify-content: center;
}

.app-store-link img {
  width: 180px;
  height: auto;
}

.contact-panel h2 {
  margin-bottom: 12px;
}

.contact-panel p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.footer {
  padding: 32px clamp(24px, 5vw, 72px);
  background: var(--black);
  color: var(--ash);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer a:hover {
  color: var(--purple-soft);
}

.legal-page {
  max-width: 1180px;
  margin: 0 auto;
}

.legal-copy {
  display: grid;
  gap: 22px;
  max-width: 900px;
  padding-top: 16px;
}

.legal-copy h2 {
  margin: 22px 0 0;
  color: var(--white);
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.1;
}

.legal-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.legal-copy a {
  color: var(--purple-soft);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .support-grid,
  .shot-grid,
  .home-shot-grid {
    grid-template-columns: 1fr;
  }

  .hero-art {
    width: min(100%, 300px);
  }
}

@media (max-width: 560px) {
  .hero,
  .section {
    padding: 32px 20px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4rem);
  }

  h2 {
    font-size: clamp(2.2rem, 12vw, 3.4rem);
  }

  .actions .button,
  .contact-panel .button,
  .app-store-link {
    width: 100%;
  }

  .app-store-link {
    justify-content: flex-start;
  }
}
