@import url("https://fonts.googleapis.com/css2?family=Inter+Tight:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap");

:root {
  --ink: #0e0e10;
  --paper: #fafaf7;
  --mid: #6b6b70;
  --paper-2: #f2f2ee;
  --paper-3: #e8e8e3;
  --ink-2: #1a1a1d;
  --ink-3: #2a2a2e;
  --lavender: #b8b0d6;
  --slate: #4a5568;
  --bg: var(--paper);
  --fg: var(--ink);
  --fg-2: var(--mid);
  --rule: var(--paper-3);
  --font-display: "Inter Tight", "Sohne", "ABC Diatype", "Neue Haas Grotesk", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", "Sohne Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--fg);
  font-size: 17px;
  line-height: 1.52;
  letter-spacing: 0;
}

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

a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 220ms var(--ease), opacity 220ms var(--ease);
}

a:hover,
a:focus-visible {
  border-bottom-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: 4px;
}

.page {
  min-height: 100vh;
  background:
    linear-gradient(90deg, transparent 0, transparent calc(100% - 1px), var(--rule) calc(100% - 1px)),
    var(--bg);
  background-size: 25% 100%, auto;
}

.shell {
  width: min(100%, 1180px);
  margin: 0 auto;
  padding: 0 32px;
}

.site-header {
  border-bottom: 1px solid var(--rule);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
  border-bottom: 0;
}

.brand-mark {
  width: 28px;
  height: 28px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 22px;
  color: var(--fg-2);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-label-short {
  display: none;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(320px, 0.84fr);
  gap: 64px;
  align-items: center;
  padding-top: 56px;
  padding-bottom: 56px;
}

.hero-panel {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--fg-2);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow .num {
  color: var(--fg);
}

.hero h1,
.page-title {
  margin: 18px 0 0;
  max-width: 10ch;
  font-size: 88px;
  line-height: 0.96;
  font-weight: 300;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 540px;
  margin: 26px 0 0;
  color: var(--fg-2);
  font-size: 20px;
  line-height: 1.42;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin-top: 44px;
}

.metric {
  min-height: 88px;
  padding: 16px 18px 14px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

.metric + .metric {
  padding-left: 18px;
  border-left: 1px solid var(--rule);
}

.metric-label {
  color: var(--fg-2);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-value {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  border: 1px solid var(--ink);
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--paper);
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
}

.button.secondary {
  background: transparent;
  color: var(--ink);
}

.button:hover,
.button:focus-visible {
  border-color: var(--ink);
  opacity: 0.78;
}

.phone-rail {
  min-height: 650px;
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 18px;
  align-items: center;
}

.phone-shot {
  border: 1px solid var(--rule);
  background: var(--paper);
  overflow: hidden;
}

.phone-shot img {
  width: 100%;
  height: auto;
}

.phone-shot.primary {
  transform: translateY(-18px);
}

.phone-stack {
  display: grid;
  gap: 18px;
}

.phone-stack .phone-shot:first-child {
  opacity: 0.72;
}

.phone-stack .phone-shot:last-child {
  opacity: 0.88;
}

.section {
  border-top: 1px solid var(--rule);
  padding-top: 72px;
  padding-bottom: 72px;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(220px, 0.56fr) minmax(0, 1fr);
  gap: 64px;
}

.section h2 {
  margin: 14px 0 0;
  font-size: 42px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: 0;
}

.section-lede {
  margin: 18px 0 0;
  max-width: 460px;
  color: var(--fg-2);
}

.feature-list {
  border-top: 1px solid var(--rule);
}

.feature {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
}

.feature-index {
  color: var(--fg-2);
  font-family: var(--font-mono);
  font-size: 12px;
}

.feature h3 {
  margin: 0;
  font-size: 23px;
  line-height: 1.15;
  font-weight: 400;
}

.feature p {
  margin: 8px 0 0;
  max-width: 680px;
  color: var(--fg-2);
}

.privacy-band {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--ink);
  color: var(--paper);
}

.privacy-band .shell {
  display: grid;
  grid-template-columns: minmax(240px, 0.64fr) minmax(0, 1fr);
  gap: 64px;
  padding-top: 72px;
  padding-bottom: 72px;
}

.privacy-band .eyebrow,
.privacy-band p,
.privacy-band .metric-label {
  color: #a0a0a4;
}

.privacy-band .eyebrow .num {
  color: var(--paper);
}

.checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 1px solid var(--ink-3);
}

.check {
  min-height: 96px;
  border-bottom: 1px solid var(--ink-3);
  padding: 20px 20px 20px 0;
}

.check:nth-child(even) {
  padding-left: 20px;
  border-left: 1px solid var(--ink-3);
}

.check strong {
  display: block;
  font-size: 20px;
  font-weight: 400;
}

.check span {
  display: block;
  margin-top: 4px;
  color: #a0a0a4;
  font-size: 14px;
}

.content-page {
  padding-top: 70px;
  padding-bottom: 90px;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: 72px;
}

.page-title {
  max-width: 8ch;
  font-size: 72px;
}

.policy {
  border-top: 1px solid var(--rule);
}

.policy-section {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 32px;
  padding: 30px 0;
  border-bottom: 1px solid var(--rule);
}

.policy-section h2 {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.policy-section p,
.policy-section li {
  color: var(--fg-2);
}

.policy-section p {
  margin: 0;
}

.policy-section p + p,
.policy-section ul + p,
.policy-section p + ul {
  margin-top: 14px;
}

.policy-section ul {
  margin: 0;
  padding-left: 18px;
}

.contact-line {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--rule);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0;
}

.site-footer {
  border-top: 1px solid var(--rule);
  padding: 34px 0;
  color: var(--fg-2);
  font-size: 14px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .page {
    background-size: 50% 100%, auto;
  }

  .hero,
  .section-grid,
  .privacy-band .shell,
  .content-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .hero {
    min-height: 0;
    padding-top: 46px;
  }

  .hero h1,
  .page-title {
    font-size: 58px;
    max-width: 9ch;
  }

  .phone-rail {
    min-height: 0;
    grid-template-columns: 1fr 1fr;
    width: min(100%, 560px);
    justify-self: center;
  }

  .phone-stack .phone-shot:last-child {
    display: none;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .shell {
    padding: 0 18px;
  }

  .nav {
    min-height: 58px;
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
    flex-direction: row;
    gap: 14px;
  }

  .brand {
    gap: 9px;
    font-size: 16px;
    flex: 0 0 auto;
  }

  .brand-mark {
    width: 25px;
    height: 25px;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: flex-end;
    gap: 12px;
    overflow: hidden;
    white-space: nowrap;
    font-size: 9px;
    letter-spacing: 0.1em;
  }

  .nav-links a:first-child {
    display: none;
  }

  .nav-label-full {
    display: none;
  }

  .nav-label-short {
    display: inline;
  }

  .hero {
    gap: 24px;
    padding-top: 30px;
    padding-bottom: 38px;
  }

  .hero h1,
  .page-title {
    font-size: clamp(44px, 13vw, 52px);
    line-height: 0.96;
  }

  .hero-copy {
    max-width: 32ch;
    margin-top: 16px;
    font-size: 16px;
    line-height: 1.42;
  }

  .hero-meta {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 24px;
  }

  .metric {
    min-height: 70px;
    padding: 12px 10px 12px 0;
    gap: 5px;
  }

  .metric + .metric {
    padding-left: 10px;
    border-left: 1px solid var(--rule);
    border-top: 0;
  }

  .metric-label {
    font-size: 9px;
  }

  .metric-value {
    font-size: 11px;
    white-space: normal;
  }

  .cta-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-top: 16px;
  }

  .button {
    min-height: 46px;
    padding: 0 10px;
    font-size: 13px;
    white-space: normal;
  }

  .phone-rail {
    grid-template-columns: 0.52fr 1fr;
    gap: 10px;
    width: 100%;
    max-height: 360px;
    overflow: hidden;
    align-items: start;
  }

  .phone-shot {
    margin: 0;
  }

  .phone-stack {
    display: grid;
    gap: 10px;
  }

  .phone-stack .phone-shot:last-child {
    display: block;
  }

  .phone-shot.primary {
    transform: translateY(-10px);
  }

  .section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .section-grid,
  .privacy-band .shell,
  .content-layout {
    gap: 28px;
  }

  .section h2 {
    max-width: 10ch;
    font-size: 32px;
  }

  .section-lede {
    margin-top: 14px;
    font-size: 15px;
    line-height: 1.45;
  }

  .feature {
    grid-template-columns: 52px minmax(0, 1fr);
    gap: 14px;
    padding: 18px 0;
  }

  .feature-index {
    font-size: 11px;
  }

  .feature h3 {
    font-size: 20px;
  }

  .feature p {
    font-size: 14px;
    line-height: 1.45;
  }

  .privacy-band .shell {
    padding-top: 44px;
    padding-bottom: 44px;
  }

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

  .check {
    min-height: 112px;
    padding: 16px 12px 16px 0;
  }

  .check:nth-child(even) {
    padding-left: 12px;
    border-left: 1px solid var(--ink-3);
  }

  .check strong {
    font-size: 17px;
    line-height: 1.1;
  }

  .check span {
    font-size: 12px;
    line-height: 1.35;
  }

  .content-page {
    padding-top: 42px;
    padding-bottom: 58px;
  }

  .page-title {
    max-width: 8ch;
    font-size: 44px;
  }

  .policy-section {
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    padding: 22px 0;
  }

  .policy-section h2 {
    font-size: 10px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .policy-section p,
  .policy-section li {
    font-size: 14px;
    line-height: 1.48;
  }

  .site-footer {
    padding: 24px 0;
  }

  .footer-row {
    gap: 16px;
  }

  .footer-links {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 12px;
    font-size: 9px;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 374px) {
  .shell {
    padding: 0 16px;
  }

  .nav {
    gap: 10px;
  }

  .nav-links {
    gap: 10px;
    font-size: 8.5px;
  }

  .hero h1,
  .page-title {
    font-size: 43px;
  }

  .button {
    font-size: 12px;
  }

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

  .check,
  .check:nth-child(even) {
    min-height: 0;
    padding: 16px 0;
    border-left: 0;
  }

  .footer-links {
    grid-template-columns: repeat(2, auto);
  }
}
