:root {
  color-scheme: dark;
  --black: #050505;
  --panel: #141414;
  --panel-2: #1c1c1e;
  --panel-3: #222326;
  --ink: #f8f8f8;
  --muted: #a6a6ad;
  --quiet: #76767d;
  --line: rgba(255, 255, 255, 0.13);
  --red: #ff2d3f;
  --red-soft: rgba(255, 45, 63, 0.16);
  --blue: #0a9cff;
  --green: #32d75f;
  --orange: #ff9f0a;
  --shadow: 0 32px 84px rgba(0, 0, 0, 0.52);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #050505 0%, #0b0b0d 42%, #050505 100%);
  letter-spacing: 0;
}

body::selection {
  color: white;
  background: var(--red);
}

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

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  padding: 112px clamp(20px, 5vw, 72px) 70px;
  overflow: hidden;
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.78), transparent 84%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 74% 0 auto;
  z-index: -1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 45, 63, 0.85), transparent);
  box-shadow: 0 0 80px 24px rgba(255, 45, 63, 0.1);
}

.nav {
  position: absolute;
  z-index: 5;
  inset: 24px clamp(18px, 5vw, 72px) auto;
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-weight: 850;
}

.brand img,
.footer img {
  border-radius: 10px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.nav-link {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 760;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link[aria-current="page"],
.support-link {
  color: white;
}

.store-button,
.primary-button,
.secondary-button,
.support-submit {
  min-height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 850;
  line-height: 1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.store-button,
.primary-button {
  color: #050505;
  background: white;
}

.store-button {
  padding: 0 18px;
}

.primary-button,
.secondary-button {
  padding: 0 22px;
}

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

.store-button:hover,
.primary-button:hover,
.secondary-button:hover,
.support-submit:hover {
  transform: translateY(-2px);
}

.hero-copy {
  min-width: 0;
  max-width: 780px;
}

.eyebrow,
.section-kicker {
  margin-bottom: 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1 {
  max-width: 8.6ch;
  margin-bottom: 18px;
  font-size: clamp(4rem, 8vw, 7.2rem);
  line-height: 0.83;
  font-weight: 950;
}

.lede {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.45rem, 3.1vw, 2.85rem);
  line-height: 1.02;
  font-weight: 850;
  text-wrap: balance;
}

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

.hero-stage {
  position: relative;
  min-height: 680px;
}

.hero-phone {
  position: absolute;
  display: block;
  height: auto;
  filter: drop-shadow(0 34px 54px rgba(0, 0, 0, 0.58));
}

.hero-phone-main {
  z-index: 2;
  right: 11%;
  top: 0;
  width: min(34vw, 360px);
}

.hero-phone-side {
  z-index: 1;
  right: -10%;
  bottom: 8px;
  width: min(28vw, 290px);
  opacity: 0.64;
  transform: rotate(5deg);
}

.status-card {
  position: absolute;
  z-index: 3;
  right: 42%;
  bottom: 116px;
  width: min(78vw, 320px);
  padding: 16px 18px;
  border: 1px solid rgba(50, 215, 95, 0.36);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.78);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.status-card span {
  display: block;
  margin-bottom: 5px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 950;
  text-transform: uppercase;
}

.status-card strong {
  color: white;
  font-size: 1.03rem;
  line-height: 1.25;
}

.operation-strip,
.workbench,
.proof-band,
.screen-section,
.privacy-panel,
.more-apps,
.footer,
.support-main,
.policy-main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.operation-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 1px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  transform: translateY(-34px);
}

.operation-strip article {
  min-height: 260px;
  padding: 24px;
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 58%),
    var(--panel);
}

.operation-mark {
  display: block;
  margin-bottom: 54px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.operation-strip article:nth-child(2) .operation-mark {
  color: var(--red);
}

.operation-strip article:nth-child(3) .operation-mark {
  color: var(--green);
}

.operation-strip h2,
.operation-strip h3 {
  margin-bottom: 10px;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.04;
}

.operation-strip p,
.workbench-copy p,
.privacy-panel > p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.62;
}

.workbench {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(26px, 5vw, 72px);
  align-items: center;
  padding: clamp(48px, 8vw, 92px) 0;
}

.workbench h2,
.screen-heading h2,
.privacy-panel h2,
.support-copy h1,
.policy-copy h1 {
  font-size: clamp(2.6rem, 6.8vw, 6rem);
  line-height: 0.92;
  font-weight: 950;
  text-wrap: balance;
}

.workbench-copy p:last-child {
  margin-top: 22px;
}

.workbench-screens {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.72fr);
  gap: clamp(14px, 2vw, 24px);
  align-items: start;
}

.screen-card {
  min-width: 0;
}

.screen-card img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 26px 36px rgba(0, 0, 0, 0.5));
}

.screen-card figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 760;
  line-height: 1.35;
}

.screen-card-large {
  margin-top: 52px;
}

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

.proof-band div {
  min-height: 172px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 22px;
  border-radius: 7px;
  background: var(--panel-2);
}

.proof-band span {
  color: white;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  line-height: 0.8;
  font-weight: 950;
}

.proof-band p {
  color: var(--quiet);
  font-weight: 800;
}

.screen-section {
  padding: clamp(58px, 9vw, 104px) 0 clamp(34px, 5vw, 64px);
}

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

.screen-rail {
  display: grid;
  grid-auto-columns: minmax(220px, 300px);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding: 0 0 22px;
  scroll-snap-type: x proximity;
}

.screen-rail .screen-card {
  scroll-snap-align: start;
}

.screen-rail::-webkit-scrollbar {
  height: 10px;
}

.screen-rail::-webkit-scrollbar-track {
  background: #101012;
}

.screen-rail::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--panel-3);
}

.privacy-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: start;
  margin-top: clamp(10px, 2vw, 24px);
  margin-bottom: 8px;
  padding: clamp(24px, 4vw, 42px) clamp(24px, 4.6vw, 54px);
  border: 1px solid rgba(50, 215, 95, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(50, 215, 95, 0.14), transparent 42%),
    var(--panel);
}

.privacy-panel .section-kicker {
  color: var(--green);
}

.privacy-panel h2 {
  max-width: 100%;
  font-size: clamp(2.15rem, 4.2vw, 4.15rem);
}

.privacy-panel > p {
  max-width: min(100%, 860px);
  justify-self: start;
  font-size: clamp(1.05rem, 1.45vw, 1.24rem);
}

.more-apps {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(26px, 5vw, 64px);
  align-items: start;
  padding: clamp(48px, 8vw, 92px) 0 22px;
}

.more-apps-heading h2 {
  font-size: clamp(2.15rem, 4.8vw, 4.8rem);
  line-height: 0.94;
  font-weight: 950;
  text-wrap: balance;
}

.more-app-list {
  display: grid;
  gap: 12px;
}

.more-app-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 108px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 58%),
    var(--panel);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.more-app-card:hover,
.more-app-card:focus-visible {
  border-color: rgba(10, 156, 255, 0.42);
  background:
    linear-gradient(180deg, rgba(10, 156, 255, 0.1), transparent 62%),
    var(--panel);
  transform: translateY(-2px);
}

.more-app-card:focus-visible {
  outline: 3px solid rgba(10, 156, 255, 0.28);
  outline-offset: 4px;
}

.more-app-card img {
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36);
}

.more-app-card strong,
.more-app-card span span {
  display: block;
}

.more-app-card strong {
  margin-bottom: 5px;
  color: white;
  font-size: 1.08rem;
}

.more-app-card span span {
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.45;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 28px 0;
  color: var(--muted);
  font-weight: 800;
}

.footer div {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer a {
  color: white;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 14px 22px;
}

.footer .footer-policy {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
}

.support-page,
.policy-page {
  min-height: 100vh;
}

.support-hero,
.policy-hero {
  position: relative;
  min-height: 430px;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98), rgba(20, 20, 20, 0.94)),
    var(--black);
}

.support-hero::after,
.policy-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
}

.support-copy,
.policy-copy {
  max-width: 840px;
}

.support-copy p:last-child,
.policy-copy p:last-child {
  max-width: 640px;
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  line-height: 1.5;
}

.support-main,
.policy-main {
  padding: 64px 0 96px;
}

.support-form {
  display: grid;
  gap: 22px;
}

.field-group {
  display: grid;
  gap: 8px;
}

.field-group label {
  color: white;
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px 16px;
  color: white;
  background: var(--panel);
  font: inherit;
  font-size: 1.05rem;
  line-height: 1.4;
}

.field-group textarea {
  min-height: 190px;
  resize: vertical;
}

.field-group input:focus,
.field-group textarea:focus,
.store-button:focus-visible,
.primary-button:focus-visible,
.secondary-button:focus-visible,
.nav-link:focus-visible,
.footer a:focus-visible {
  outline: 3px solid rgba(10, 156, 255, 0.28);
  outline-offset: 4px;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: var(--blue);
}

.support-submit {
  width: fit-content;
  min-height: 48px;
  border: 0;
  padding: 0 22px;
  color: white;
  background: var(--blue);
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
}

.policy-main section {
  padding: 28px 0;
  border-top: 1px solid var(--line);
}

.policy-main section:first-child {
  border-top: 0;
  padding-top: 0;
}

.policy-main h2 {
  margin: 0 0 14px;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.1;
  font-weight: 950;
}

.policy-main h3 {
  margin: 26px 0 10px;
  font-size: 1.2rem;
}

.policy-main p,
.policy-main li {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
}

.policy-main p {
  margin-bottom: 14px;
}

.policy-main ul {
  margin: 0;
  padding-left: 20px;
}

.policy-main a {
  color: white;
  font-weight: 850;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-stage {
    width: min(100%, 620px);
    min-height: 680px;
    justify-self: center;
  }

  .hero-phone-main {
    right: 34%;
    width: min(58vw, 350px);
  }

  .hero-phone-side {
    right: 4%;
    width: min(45vw, 280px);
  }

  .status-card {
    right: 32%;
  }

  .operation-strip {
    grid-template-columns: 1fr;
  }

  .operation-strip article {
    min-height: 0;
  }

  .operation-mark {
    margin-bottom: 34px;
  }

  .workbench,
  .privacy-panel,
  .more-apps {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .hero {
    padding: 96px 20px 50px;
  }

  .nav {
    gap: 10px;
  }

  .brand span,
  .nav-link:not(.support-link):not(.studio-link):not([aria-current="page"]) {
    display: none;
  }

  .support-link,
  .studio-link,
  .nav-link[aria-current="page"] {
    display: inline-flex;
    font-size: 0.9rem;
  }

  .store-button {
    padding: 0 14px;
  }

  h1 {
    font-size: clamp(3.05rem, 13.8vw, 3.6rem);
  }

  .lede {
    font-size: clamp(1.35rem, 7vw, 2rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-stage {
    min-height: 520px;
    overflow: hidden;
  }

  .hero-phone-main {
    right: 28%;
    width: min(76vw, 300px);
  }

  .hero-phone-side {
    right: -18%;
    width: min(58vw, 230px);
  }

  .status-card {
    right: 6%;
    bottom: 46px;
    width: min(82vw, 300px);
  }

  .operation-strip,
  .workbench,
  .proof-band,
  .screen-section,
  .privacy-panel,
  .more-apps,
  .footer,
  .support-main,
  .policy-main {
    width: min(100% - 28px, 1180px);
  }

  .workbench-screens {
    grid-template-columns: 1fr;
  }

  .screen-card-large {
    margin-top: 0;
  }

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

  .screen-rail {
    grid-auto-columns: minmax(210px, 72vw);
  }

  .privacy-panel {
    padding: 28px;
  }

  .support-hero,
  .policy-hero {
    min-height: 360px;
    padding: 108px 20px 54px;
  }

  .support-copy h1,
  .policy-copy h1 {
    font-size: clamp(3.05rem, 13.5vw, 4rem);
  }

  .footer {
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 430px) {
  .hero-stage {
    min-height: 485px;
  }

  .status-card {
    bottom: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition: none !important;
  }
}
