:root {
  color-scheme: dark;
  --ink: #101214;
  --surface: #1b1e22;
  --panel: #24282e;
  --panel-strong: #2b3037;
  --hairline: #3a4048;
  --text: #f2f4f7;
  --muted: #aab1bc;
  --soft: #d6dae0;
  --cyan: #43c6e8;
  --green: #56d364;
  --amber: #e8b84a;
  --rose: #e76f83;
  --blue: #6ba8ff;
  --radius: 8px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  line-height: 1.5;
}

a {
  color: inherit;
}

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 60px;
  padding: 14px clamp(18px, 4vw, 52px);
  background: rgba(16, 18, 20, 0.78);
  border-bottom: 1px solid rgba(214, 218, 224, 0.12);
  backdrop-filter: blur(22px);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
  text-decoration: none;
}

.mark-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 4px rgba(67, 198, 232, 0.14);
}

nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover,
nav a:focus-visible,
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--text);
}

.hero {
  position: relative;
  min-height: min(820px, 86svh);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 112px clamp(18px, 5vw, 72px) 72px;
  border-bottom: 1px solid var(--hairline);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background: rgba(6, 7, 8, 0.62);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

.eyebrow,
.kicker,
.screen-label {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(54px, 10vw, 116px);
  line-height: 0.92;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--soft);
  font-size: clamp(18px, 2.1vw, 26px);
  line-height: 1.25;
}

.hero-actions,
.site-footer p,
.button {
  display: flex;
  align-items: center;
}

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

.button {
  min-height: 44px;
  justify-content: center;
  border-radius: 7px;
  padding: 0 18px;
  border: 1px solid rgba(242, 244, 247, 0.18);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.button.primary {
  background: var(--text);
  color: var(--ink);
}

.button.secondary {
  background: rgba(242, 244, 247, 0.08);
  color: var(--text);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.summary-band,
.section,
.closing {
  border-bottom: 1px solid var(--hairline);
}

.summary-band {
  background: var(--surface);
}

.section {
  background: var(--ink);
}

.section.muted,
.closing {
  background: var(--surface);
}

.section-inner {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 9vw, 96px) 0;
}

.section-inner.narrow {
  width: min(820px, calc(100% - 36px));
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 5vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 19px;
  line-height: 1.2;
}

.summary-band p,
.section-heading p,
.two-column p,
.closing p,
.screen-card p,
.delight-row p,
dd {
  color: var(--muted);
}

.summary-band h2 + p,
.closing h2 + p {
  margin-top: 18px;
  font-size: 19px;
}

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

.screen-card {
  display: grid;
  gap: 16px;
  min-width: 0;
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 12px;
  background: var(--panel);
}

.screen-card.feature-card {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  align-items: center;
}

.screen-card img {
  width: 100%;
  border-radius: 6px;
  border: 1px solid rgba(242, 244, 247, 0.1);
  background: #0b0c0e;
}

.screen-card > div {
  padding: 4px 4px 8px;
}

.screen-card p:last-child {
  margin-bottom: 0;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: start;
}

.native-list {
  margin: 0;
  display: grid;
  gap: 12px;
}

.native-list div,
.delight-row article {
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 20px;
}

dt {
  font-weight: 800;
  margin-bottom: 4px;
}

dd {
  margin: 0;
}

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

.accent {
  display: block;
  width: 36px;
  height: 5px;
  border-radius: 999px;
  margin-bottom: 18px;
}

.accent.green {
  background: var(--green);
}

.accent.cyan {
  background: var(--cyan);
}

.accent.amber {
  background: var(--amber);
}

.closing .button {
  width: fit-content;
  margin-top: 24px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  color: var(--muted);
  background: #0b0c0e;
  font-size: 14px;
}

.site-footer p {
  gap: 16px;
  margin: 0;
}

.site-footer a {
  text-decoration: none;
}

.legal-page {
  background: var(--surface);
}

.legal-main {
  width: min(820px, calc(100% - 36px));
  margin: 0 auto;
  padding: 108px 0 72px;
}

.legal-main h1 {
  font-size: clamp(42px, 8vw, 72px);
}

.legal-main section {
  margin-top: 34px;
}

.legal-main li {
  margin: 8px 0;
  color: var(--muted);
}

@media (max-width: 820px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
    gap: 12px;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82svh;
    padding-top: 146px;
    padding-bottom: 44px;
  }

  .screen-grid,
  .screen-card.feature-card,
  .two-column,
  .delight-row {
    grid-template-columns: 1fr;
  }

  .screen-card.feature-card {
    grid-column: auto;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .button:hover,
  .button:focus-visible {
    transform: none;
  }
}
