:root {
  color-scheme: dark;
  --bg: #07090d;
  --bg-soft: #10141c;
  --bg-panel: #171b22;
  --text: #f8fafc;
  --muted: #aeb6c2;
  --line: rgba(255, 255, 255, 0.14);
  --orange: #ff9f0a;
  --red: #ff453a;
  --blue: #0a84ff;
  --green: #32d74b;
  --max-width: 1120px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 92% 16%, rgba(255, 69, 58, 0.36), transparent 34rem),
    radial-gradient(circle at 10% 88%, rgba(255, 159, 10, 0.18), transparent 28rem),
    linear-gradient(180deg, #05070b 0%, #0a0e14 48%, #080a0f 100%);
}

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

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

.site-header,
.site-footer {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.site-header {
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  color: #111318;
  background: linear-gradient(135deg, var(--orange), var(--red));
  font-size: 0.9rem;
  box-shadow: 0 0 26px rgba(255, 69, 58, 0.35);
}

.brand-mark::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
  border-left: 11px solid #111318;
}

.nav-links,
.site-footer nav {
  display: flex;
  gap: 18px;
  align-items: center;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a,
.site-footer a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
}

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

main {
  overflow: hidden;
}

.hero {
  position: relative;
  width: min(var(--max-width), calc(100% - 40px));
  min-height: calc(100vh - 160px);
  max-height: 920px;
  margin: 0 auto;
  padding: 38px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(320px, 1.06fr);
  gap: 40px;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 11ch;
  margin-bottom: 22px;
  font-size: clamp(3.8rem, 7vw, 6.8rem);
  line-height: 0.95;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.hero-text {
  max-width: 620px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.5;
}

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

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 0 18px;
  font-weight: 800;
  border: 1px solid var(--line);
}

.button-primary {
  color: #10131a;
  background: linear-gradient(135deg, var(--orange), var(--red));
  border-color: transparent;
}

.button-secondary {
  background: rgba(255, 255, 255, 0.06);
}

.hero-media {
  position: relative;
  min-height: 700px;
}

.phone {
  position: absolute;
  width: min(58vw, 395px);
  border-radius: 36px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.55);
}

.phone-front {
  right: 2%;
  top: 0;
  z-index: 2;
}

.phone-back {
  left: 0;
  top: 100px;
  opacity: 0.72;
  transform: rotate(-5deg);
}

.feature-band,
.screenshots,
.legal-page,
.support-page {
  width: min(var(--max-width), calc(100% - 40px));
  margin: 0 auto;
}

.feature-band {
  padding: 86px 0 76px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
}

.feature-grid article {
  min-height: 224px;
  padding: 28px;
  background: rgba(16, 20, 28, 0.92);
}

.feature-grid p,
.legal-content p,
.support-details li,
.contact-panel p,
.support-hero p {
  color: var(--muted);
  line-height: 1.65;
}

.screenshots {
  padding: 68px 0 90px;
}

.shot-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: start;
}

.shot-row img,
.support-hero img {
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  box-shadow: 0 18px 70px rgba(0, 0, 0, 0.4);
}

.site-footer {
  min-height: 92px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer p {
  margin: 0;
}

.legal-page,
.support-page {
  padding: 54px 0 90px;
}

.legal-hero,
.support-hero {
  margin-bottom: 44px;
}

.legal-hero h1,
.support-hero h1 {
  max-width: 12ch;
}

.legal-content {
  max-width: 820px;
}

.legal-content h2,
.support-details h2,
.contact-panel h2 {
  margin-top: 38px;
  font-size: 1.45rem;
}

.legal-content a,
.contact-panel a {
  color: var(--blue);
  font-weight: 800;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 42px;
  align-items: center;
}

.support-hero img {
  max-height: 720px;
  object-fit: cover;
  object-position: top;
}

.contact-panel,
.support-details {
  max-width: 820px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(16, 20, 28, 0.82);
}

.contact-panel {
  margin-bottom: 20px;
}

.contact-panel h2,
.contact-panel p {
  margin-top: 0;
}

.contact-panel p {
  margin-bottom: 0;
}

.support-details ul {
  margin: 0;
  padding-left: 20px;
}

.support-details h2 {
  margin-top: 0;
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    max-height: none;
    grid-template-columns: 1fr;
    padding-top: 30px;
  }

  .hero-media {
    min-height: 560px;
  }

  .phone {
    width: min(70vw, 360px);
  }

  .feature-grid,
  .shot-row,
  .support-hero,
  .contact-panel {
    grid-template-columns: 1fr;
  }

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

  .shot-row {
    grid-template-columns: repeat(3, minmax(220px, 1fr));
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .support-hero img {
    max-height: 560px;
    width: min(100%, 420px);
  }
}

@media (max-width: 620px) {
  .site-header,
  .site-footer {
    width: min(100% - 28px, var(--max-width));
  }

  .site-header {
    min-height: auto;
    padding: 16px 0 12px;
    flex-wrap: wrap;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 12px;
  }

  .hero,
  .feature-band,
  .screenshots,
  .legal-page,
  .support-page {
    width: min(100% - 28px, var(--max-width));
  }

  h1 {
    font-size: clamp(3.15rem, 17vw, 4.6rem);
  }

  h2 {
    font-size: 2.35rem;
  }

  .hero-media {
    min-height: 500px;
  }

  .phone {
    width: min(78vw, 300px);
  }

  .phone-front {
    right: -6px;
  }

  .phone-back {
    left: -18px;
    top: 84px;
  }

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

  .feature-grid article {
    min-height: 180px;
  }

  .contact-panel,
  .support-details {
    padding: 22px;
  }

  .site-footer {
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    padding: 24px 0;
  }
}
