:root {
  --bg: #0b0d0c;
  --surface: #121715;
  --surface-strong: #18211d;
  --paper: #f5f2ec;
  --paper-strong: #ffffff;
  --ink: #f7f3ec;
  --muted: #b7c1bb;
  --muted-dark: #52615a;
  --green: #3b9b74;
  --green-dark: #247052;
  --gold: #d6a955;
  --clay: #b86443;
  --border: rgba(247, 243, 236, 0.12);
  --border-dark: rgba(11, 13, 12, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  letter-spacing: 0;
  -webkit-font-smoothing: antialiased;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(11, 13, 12, 0.9);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(14px);
}

.nav {
  max-width: 1180px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

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

.nav-links,
.nav-actions,
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a,
.footer-links a {
  color: var(--muted);
  font-size: 14px;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--green);
  color: #ffffff;
  box-shadow: 0 12px 34px rgba(59, 155, 116, 0.26);
}

.btn-primary:hover {
  background: var(--green-dark);
}

.btn-secondary {
  border-color: var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
}

.btn-secondary:hover {
  border-color: rgba(247, 243, 236, 0.3);
}

.section,
.hero {
  max-width: 1180px;
  margin: 0 auto;
  padding: 82px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.78fr);
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

h1,
h2,
h3 {
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: 0;
  margin: 0;
}

h1 {
  font-size: 56px;
  max-width: 760px;
}

h2 {
  font-size: 38px;
}

h3 {
  font-size: 22px;
}

p {
  margin: 0;
}

.lede {
  margin-top: 22px;
  max-width: 720px;
  font-size: 20px;
  color: #dce5e0;
}

.hero-actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-points {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
  list-style: none;
  color: var(--ink);
}

.hero-points li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 10px;
  display: inline-block;
  border-radius: 50%;
  background: var(--clay);
}

.hero-visual {
  position: relative;
  min-height: 430px;
}

.screen-stack {
  position: relative;
  min-height: 430px;
}

.screen {
  position: absolute;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.screen-main {
  inset: 38px 0 auto 20px;
  width: 92%;
}

.screen-side {
  right: 0;
  bottom: 20px;
  width: 55%;
}

.screen-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 42px;
  padding: 0 14px;
  border-bottom: 1px solid var(--border);
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
}

.screen img {
  width: 100%;
}

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}

.trust-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.trust-item strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.trust-item span {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}

.paper {
  background: var(--paper);
  color: var(--muted-dark);
}

.paper h2,
.paper h3 {
  color: #151816;
}

.section-header {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-header p {
  margin-top: 16px;
  font-size: 18px;
}

.grid-3,
.grid-2 {
  display: grid;
  gap: 18px;
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

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

.card,
.plain-card {
  border-radius: 8px;
  padding: 24px;
}

.card {
  background: var(--paper-strong);
  border: 1px solid var(--border-dark);
}

.plain-card {
  background: var(--surface);
  border: 1px solid var(--border);
}

.card h3,
.plain-card h3 {
  margin-bottom: 10px;
}

.card ul,
.plain-card ul {
  margin: 14px 0 0;
  padding-left: 18px;
}

.card li,
.plain-card li {
  margin-top: 7px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}

.comparison {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 8px;
  background: var(--paper-strong);
}

.comparison th,
.comparison td {
  text-align: left;
  padding: 16px;
  border-bottom: 1px solid var(--border-dark);
  vertical-align: top;
}

.comparison th {
  color: #151816;
  background: #ece7dc;
}

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

.faq-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface);
  padding: 20px;
}

.faq-item h3 {
  font-size: 19px;
  margin-bottom: 8px;
}

.cta-panel {
  max-width: 1180px;
  margin: 0 auto;
  padding: 56px 24px;
}

.cta-inner {
  border-radius: 8px;
  background: #151816;
  border: 1px solid var(--border);
  padding: 38px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.cta-inner p {
  margin-top: 10px;
  max-width: 640px;
}

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

.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.related-links a {
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 13px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.03);
  font-size: 14px;
}

.related-links a:hover {
  border-color: rgba(247, 243, 236, 0.3);
}

.site-footer {
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 34px 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 28px;
}

.footer-brand p {
  margin-top: 10px;
  font-size: 14px;
}

.footer-links {
  justify-content: flex-end;
  max-width: 620px;
}

@media (max-width: 880px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero,
  .split,
  .grid-2,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 52px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 30px;
  }

  .hero-visual,
  .screen-stack {
    min-height: 340px;
  }

  .trust-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .nav-links,
  .nav-actions {
    width: 100%;
  }

  .nav-actions .btn {
    width: 100%;
  }

  .section,
  .hero {
    padding: 54px 18px;
  }

  .trust-inner {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .screen-main {
    left: 0;
    width: 100%;
  }

  .screen-side {
    width: 68%;
  }

  .comparison {
    font-size: 14px;
  }

  .comparison th,
  .comparison td {
    padding: 12px;
  }

  .cta-inner {
    padding: 26px;
  }
}
