:root {
  --ink: #16191f;
  --ink-soft: #454d59;
  --muted: #697381;
  --paper: #f4f1ea;
  --paper-alt: #ebe7dd;
  --surface: #fffdf8;
  --surface-muted: #eef1f3;
  --line: #d8d3c9;
  --blue: #315fff;
  --blue-dark: #1f44c8;
  --teal: #087f78;
  --green: #247044;
  --amber: #b86b0f;
  --red: #b74335;
  --terminal: #0d1218;
  --terminal-soft: #16202a;
  --terminal-ink: #dbe7ef;
  --radius: 8px;
  --shadow: 0 28px 70px rgba(15, 20, 28, 0.22);
  --small-shadow: 0 12px 34px rgba(15, 20, 28, 0.14);
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.5;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3 {
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: 92px;
  font-weight: 900;
}

h2 {
  margin-bottom: 20px;
  font-size: 58px;
  font-weight: 880;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  font-weight: 830;
}

p {
  color: var(--ink-soft);
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 30;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 32px;
  color: #fffdf8;
  background: rgba(13, 18, 24, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
}

.brand,
.site-nav nav {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 850;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: var(--radius);
  object-fit: cover;
}

.site-nav nav {
  gap: 4px;
}

.site-nav nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: var(--radius);
  color: rgba(255, 253, 248, 0.76);
  font-size: 14px;
  font-weight: 760;
  text-decoration: none;
}

.site-nav nav a:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  min-height: min(720px, calc(100svh - 112px));
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 78px 32px 82px;
  color: #fffdf8;
  background: var(--terminal);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 18, 24, 0.97) 0%, rgba(13, 18, 24, 0.88) 42%, rgba(13, 18, 24, 0.32) 100%),
    linear-gradient(0deg, rgba(13, 18, 24, 0.72) 0%, rgba(13, 18, 24, 0.08) 48%, rgba(13, 18, 24, 0.34) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  width: 320px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-shot-main {
  right: 8%;
  top: -74px;
  width: 395px;
  opacity: 0.98;
}

.hero-shot-terminal {
  right: 34%;
  bottom: -310px;
  width: 350px;
  opacity: 0.72;
}

.hero-shot-editor {
  right: -70px;
  bottom: -255px;
  width: 330px;
  opacity: 0.78;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: 100%;
  min-width: 0;
  max-width: 760px;
  margin-left: max(0px, calc((100vw - 1180px) / 2));
}

.eyebrow {
  margin-bottom: 12px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero .eyebrow,
.terminal-band .eyebrow {
  color: #72ded6;
}

.hero-lede {
  max-width: 680px;
  margin-bottom: 30px;
  color: rgba(255, 253, 248, 0.86);
  font-size: 30px;
  line-height: 1.2;
}

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

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}

.trust-badges li {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  color: rgba(255, 253, 248, 0.86);
  background: rgba(255, 255, 255, 0.09);
  font-size: 13px;
  font-weight: 760;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 820;
  text-decoration: none;
}

.button-primary {
  color: #ffffff;
  background: var(--blue);
}

.button-primary:hover {
  background: var(--blue-dark);
}

.button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

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

.button-light {
  color: var(--ink);
  background: rgba(22, 25, 31, 0.06);
  border-color: rgba(22, 25, 31, 0.14);
}

.button-light:hover {
  background: rgba(22, 25, 31, 0.1);
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--line);
}

.signal-strip div {
  min-width: 0;
  min-height: 128px;
  padding: 24px 28px;
  background: var(--surface);
}

.signal-strip b {
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
  letter-spacing: 0;
}

.signal-strip span {
  color: var(--ink-soft);
  font-size: 15px;
}

.section,
.terminal-band,
.preview-band,
.site-footer,
.policy-hero,
.policy-content {
  padding-right: 32px;
  padding-left: 32px;
}

.section {
  padding-top: 92px;
  padding-bottom: 96px;
}

.section-copy,
.surface-grid,
.tool-grid,
.privacy-grid,
.permission-grid,
.preview-band,
.site-footer {
  max-width: 1180px;
  margin-right: auto;
  margin-left: auto;
}

.section-copy {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-copy-wide {
  max-width: 1000px;
}

.section-copy p {
  max-width: 720px;
  margin-bottom: 0;
  font-size: 19px;
}

.intro-section {
  background: var(--paper);
}

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

.surface-card,
.tool-card,
.privacy-grid article,
.permission-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--small-shadow);
  overflow: hidden;
}

.surface-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}

.surface-card img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  object-position: top center;
  background: #eef1f3;
}

.surface-card-dark {
  color: #f4f7f8;
  background: #101720;
  border-color: rgba(255, 255, 255, 0.1);
}

.surface-card > div,
.tool-card > div {
  padding: 22px;
}

.surface-card p,
.tool-card p,
.privacy-grid p,
.permission-grid p {
  margin-bottom: 0;
}

.surface-card-dark p {
  color: rgba(244, 247, 248, 0.72);
}

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

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

.tool-card img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center bottom;
  background: #e9ecef;
  border-bottom: 1px solid var(--line);
}

.tool-card-review img {
  object-position: center top;
}

.terminal-band {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.7fr);
  gap: 54px;
  align-items: center;
  padding-top: 80px;
  padding-bottom: 80px;
  color: #fffdf8;
  background: var(--terminal);
  overflow: hidden;
}

.terminal-copy {
  max-width: 720px;
  justify-self: end;
}

.terminal-copy p {
  max-width: 630px;
  color: rgba(255, 253, 248, 0.76);
  font-size: 20px;
}

.check-list {
  display: grid;
  gap: 12px;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 253, 248, 0.84);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.58em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #54d17d;
}

.terminal-figure {
  margin: 0;
}

.terminal-figure img {
  width: 100%;
  max-width: 420px;
  max-height: 780px;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.privacy-section {
  background: var(--paper);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.privacy-grid article {
  padding: 22px;
}

.privacy-grid article:nth-child(1) {
  border-top: 4px solid var(--green);
}

.privacy-grid article:nth-child(2) {
  border-top: 4px solid var(--red);
}

.privacy-grid article:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.privacy-grid article:nth-child(4) {
  border-top: 4px solid var(--blue);
}

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

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

.permission-grid article {
  min-height: 180px;
  padding: 22px;
}

.permission-grid article:nth-child(1) {
  border-top: 4px solid var(--blue);
}

.permission-grid article:nth-child(2) {
  border-top: 4px solid var(--green);
}

.permission-grid article:nth-child(3) {
  border-top: 4px solid var(--amber);
}

.permission-grid article:nth-child(4) {
  border-top: 4px solid var(--teal);
}

.permission-grid article:nth-child(5) {
  border-top: 4px solid var(--red);
}

.permission-grid article:nth-child(6) {
  border-top: 4px solid var(--terminal-soft);
}

.preview-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
  padding-top: 72px;
  padding-bottom: 76px;
  border-top: 1px solid var(--line);
}

.preview-band h2 {
  font-size: 44px;
}

.preview-band p {
  max-width: 740px;
  margin-bottom: 0;
  font-size: 18px;
}

.site-footer {
  max-width: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 28px;
  padding-bottom: 32px;
  color: rgba(255, 253, 248, 0.84);
  background: var(--terminal);
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.84);
}

.site-footer a {
  color: #ffffff;
  font-weight: 780;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.policy-page {
  background: var(--paper);
}

.policy-hero {
  padding-top: 90px;
  padding-bottom: 82px;
  color: #fffdf8;
  background: var(--terminal);
}

.policy-hero-copy,
.policy-content {
  max-width: 920px;
  margin-right: auto;
  margin-left: auto;
}

.policy-hero h1 {
  margin-bottom: 20px;
  font-size: 70px;
}

.policy-lede {
  max-width: 820px;
  margin-bottom: 18px;
  color: rgba(255, 253, 248, 0.82);
  font-size: 24px;
  line-height: 1.28;
}

.policy-meta {
  margin-bottom: 0;
  color: rgba(255, 253, 248, 0.66);
  font-size: 16px;
}

.policy-content {
  padding-top: 72px;
  padding-bottom: 84px;
}

.policy-summary,
.policy-section {
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}

.policy-summary {
  margin-bottom: 44px;
}

.policy-section {
  margin-bottom: 36px;
}

.policy-summary h2,
.policy-section h2 {
  margin-bottom: 16px;
  font-size: 32px;
}

.policy-summary ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 24px;
}

.policy-summary li,
.policy-section p {
  color: var(--ink-soft);
  font-size: 18px;
}

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

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section a {
  color: var(--blue-dark);
  font-weight: 760;
}

@media (max-width: 1040px) {
  h1 {
    font-size: 74px;
  }

  h2 {
    font-size: 46px;
  }

  .hero {
    min-height: 760px;
    align-items: flex-start;
  }

  .hero-copy {
    margin-left: 0;
  }

  .hero-shot-main {
    right: 16px;
    top: 290px;
    width: 310px;
  }

  .hero-shot-terminal {
    right: 250px;
    bottom: -220px;
    width: 280px;
  }

  .hero-shot-editor {
    right: -100px;
    bottom: -210px;
    width: 270px;
  }

  .signal-strip,
  .privacy-grid,
  .permission-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .tool-card img {
    height: 460px;
  }

  .terminal-band {
    grid-template-columns: 1fr;
  }

  .terminal-copy,
  .terminal-figure {
    justify-self: center;
    width: 100%;
    max-width: 720px;
  }

  .terminal-figure img {
    width: 360px;
  }

  .preview-band {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-nav {
    min-height: 60px;
    padding: 0 16px;
  }

  .site-nav nav {
    display: none;
  }

  h1 {
    font-size: 44px;
  }

  h2,
  .preview-band h2 {
    font-size: 34px;
  }

  h3 {
    font-size: 19px;
  }

  .hero {
    min-height: 720px;
    padding: 56px 18px 60px;
  }

  .hero-copy {
    max-width: calc(100vw - 36px);
  }

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

  .hero-shot-main {
    top: 382px;
    right: 18px;
    width: 222px;
  }

  .hero-shot-terminal {
    right: 152px;
    bottom: -120px;
    width: 196px;
  }

  .hero-shot-editor {
    right: -104px;
    bottom: -112px;
    width: 210px;
  }

  .button {
    width: 100%;
  }

  .signal-strip,
  .surface-grid,
  .tool-grid,
  .privacy-grid,
  .permission-grid {
    grid-template-columns: 1fr;
  }

  .signal-strip div {
    min-height: 104px;
    padding: 20px;
  }

  .section,
  .terminal-band,
  .preview-band,
  .site-footer,
  .policy-hero,
  .policy-content {
    padding-right: 18px;
    padding-left: 18px;
  }

  .section {
    padding-top: 64px;
    padding-bottom: 68px;
  }

  .section-copy p,
  .preview-band p,
  .terminal-copy p {
    font-size: 17px;
  }

  .surface-card img {
    height: 520px;
  }

  .tool-card img {
    height: 340px;
  }

  .terminal-band {
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .terminal-figure img {
    width: 100%;
    max-height: 620px;
  }

  .site-footer {
    display: grid;
  }

  .policy-hero {
    padding-top: 64px;
    padding-bottom: 58px;
  }

  .policy-hero h1 {
    font-size: 42px;
  }

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

  .policy-content {
    padding-top: 54px;
    padding-bottom: 60px;
  }

  .policy-summary h2,
  .policy-section h2 {
    font-size: 27px;
  }

  .policy-summary li,
  .policy-section p {
    font-size: 16px;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 40px;
  }

  h2,
  .preview-band h2 {
    font-size: 30px;
  }

  .hero {
    min-height: 690px;
  }

  .hero-shot-main {
    top: 396px;
    width: 198px;
  }

  .hero-shot-terminal {
    right: 132px;
    bottom: -98px;
    width: 176px;
  }

  .surface-card img {
    height: 460px;
  }
}
