@font-face {
  font-family: "Mont";
  src: url("assets/fonts/mont-regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("assets/fonts/mont-semibold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Mont";
  src: url("assets/fonts/mont-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --bg: #080808;
  --bg-soft: #101011;
  --panel: #151517;
  --panel-strong: #1d1d20;
  --text: #ffffff;
  --muted: #a7a7ad;
  --soft: #e4e4e7;
  --border: rgba(255, 255, 255, 0.1);
  --accent: #e84205;
  --accent-2: #ffb000;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 84% 8%, rgba(232, 66, 5, 0.16), transparent 26rem),
    linear-gradient(180deg, #0c0c0d 0%, var(--bg) 48%, #0b0b0c 100%);
  color: var(--text);
  font-family: "Mont", "Avenir Next", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

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

a:hover,
a:focus-visible {
  color: #ffffff;
}

.site-header,
.hero,
.section,
.download-panel,
.site-footer,
.legal-main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  background: rgba(8, 8, 8, 0.86);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

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

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.header-cta {
  min-width: 104px;
  padding: 0 18px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: 72px;
  min-height: 720px;
  padding: 74px 0 88px;
}

.app-line,
.section-kicker {
  margin: 0 0 14px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.download-panel h2,
.legal-document h1 {
  margin: 0;
  color: var(--text);
  font-weight: 700;
  line-height: 1.05;
}

.hero h1 {
  max-width: 660px;
  font-size: 72px;
}

.hero-lede {
  max-width: 570px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 21px;
  line-height: 1.55;
}

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

.button {
  min-width: 168px;
  padding: 0 22px;
}

.button.primary {
  color: var(--text);
  background: linear-gradient(135deg, var(--accent), #ff6a1f);
  box-shadow: 0 14px 36px rgba(232, 66, 5, 0.28);
}

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

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.hero-notes span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-shell {
  width: min(390px, 100%);
  padding: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.compare {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  background: var(--panel);
}

.compare-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.compare-after {
  position: absolute;
  inset: 0;
  width: 100%;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--position)) 0 0);
}

.compare-after .compare-image {
  width: 100%;
  max-width: 100%;
}

.compare-divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--position);
  width: 3px;
  transform: translateX(-50%);
  background: #ffffff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.28);
  pointer-events: none;
}

.compare-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 34px;
  height: 34px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.compare-range {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
}

.phone-caption {
  display: flex;
  justify-content: space-between;
  padding: 12px 4px 2px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.section {
  padding: 78px 0 26px;
}

.section.compact {
  padding-top: 26px;
}

.section-heading {
  max-width: 660px;
  margin-bottom: 26px;
}

.section h2,
.download-panel h2,
.legal-document h1 {
  font-size: 42px;
}

.section-heading p:not(.section-kicker),
.download-panel p,
.legal-source,
.legal-document p {
  color: var(--muted);
}

.media-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 224px;
  gap: 18px;
  overflow-x: auto;
  padding: 2px 0 18px;
  scroll-snap-type: x proximity;
}

.video-row {
  grid-auto-columns: 320px;
}

.template-card {
  position: relative;
  overflow: hidden;
  min-height: 336px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
  scroll-snap-align: start;
}

.template-card.wide {
  min-height: 260px;
}

.template-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.template-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
}

.template-card div {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
}

.template-card span {
  color: var(--accent-2);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.template-card h3,
.steps h3 {
  margin: 4px 0 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.25;
}

.workflow {
  padding-bottom: 80px;
}

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

.steps article {
  min-height: 204px;
  padding: 24px;
  border-radius: 20px;
  background: var(--panel);
  border: 1px solid var(--border);
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 22px;
  border-radius: 50%;
  color: var(--text);
  background: var(--accent);
  font-weight: 700;
}

.steps p {
  margin: 10px 0 0;
  color: var(--muted);
}

.download-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin-bottom: 80px;
  padding: 28px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(232, 66, 5, 0.18), transparent 38%),
    var(--panel-strong);
  border: 1px solid var(--border);
}

.download-panel img {
  border-radius: 16px;
}

.download-panel h2 {
  font-size: 28px;
}

.download-panel p {
  margin: 8px 0 0;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 36px 0 44px;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  max-width: 520px;
  margin: 8px 0 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 16px;
  font-weight: 600;
}

.legal-main {
  padding: 70px 0 90px;
}

.legal-document {
  max-width: 840px;
  margin: 0 auto;
  padding: 38px;
  border-radius: 24px;
  background: rgba(21, 21, 23, 0.74);
  border: 1px solid var(--border);
}

.legal-document h1 {
  margin-bottom: 18px;
}

.legal-source {
  margin: 0 0 34px;
}

.legal-source a,
.legal-document a {
  color: #ffb782;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-document section {
  padding: 26px 0;
  border-top: 1px solid var(--border);
}

.legal-document h2 {
  margin: 0 0 10px;
  color: var(--text);
  font-size: 22px;
  line-height: 1.25;
}

.legal-document h3 {
  margin: 22px 0 8px;
  color: var(--soft);
  font-size: 16px;
  line-height: 1.35;
}

.legal-document p,
.legal-document ul {
  margin: 0;
}

.legal-document p + p,
.legal-document p + ul,
.legal-document ul + p {
  margin-top: 12px;
}

.legal-document ul {
  padding-left: 22px;
  color: var(--muted);
}

.legal-document li + li {
  margin-top: 6px;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 44px;
    padding: 58px 0 64px;
  }

  .hero h1 {
    font-size: 52px;
  }

  .hero-lede {
    font-size: 19px;
  }

  .phone-shell {
    width: min(430px, 100%);
  }

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

  .download-panel {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .site-header,
  .hero,
  .section,
  .download-panel,
  .site-footer,
  .legal-main {
    width: min(1120px, calc(100% - 28px));
  }

  .brand span {
    font-size: 15px;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    flex-wrap: wrap;
    gap: 10px 12px;
    overflow-x: visible;
    font-size: 13px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-lede {
    max-width: 100%;
    font-size: 16px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 58px;
  }

  .section h2,
  .legal-document h1 {
    font-size: 32px;
  }

  .media-row,
  .video-row {
    grid-auto-columns: 78%;
  }

  .download-panel {
    padding: 22px;
    margin-bottom: 58px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }

  .legal-main {
    padding-top: 42px;
  }

  .legal-document {
    padding: 24px;
  }
}
