:root {
  --ink: #111522;
  --muted: #5d6472;
  --paper: #f7f4ee;
  --panel: #ffffff;
  --line: #d9d5ca;
  --teal: #159b8f;
  --teal-dark: #0d6c66;
  --coral: #c65743;
  --gold: #b6862c;
  --night: #10131f;
  --shadow: 0 18px 45px rgba(17, 21, 34, 0.09);
  font-family: 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);
  line-height: 1.6;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  padding: 0.75rem 1rem;
  background: var(--night);
  color: #fff;
  z-index: 20;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(247, 244, 238, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--night);
  color: #f6f1e7;
  font-size: 1.1rem;
  box-shadow: inset 0 -4px 0 var(--teal);
}

.brand span:last-child {
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.95rem;
  color: var(--muted);
}

.nav-links a {
  text-decoration: none;
}

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

.language {
  color: var(--teal-dark);
  font-weight: 700;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #fff;
  background: var(--teal-dark);
  box-shadow: 0 8px 18px rgba(13, 108, 102, 0.22);
}

.button-primary:hover {
  background: #095a55;
}

.button-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.button-secondary:hover {
  box-shadow: var(--shadow);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 38px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 44px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(2.35rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
  font-size: 1.2rem;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #404755;
  font-size: 1.15rem;
}

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

.trust-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  min-height: 96px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.trust-item strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.1;
}

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

.hero-media {
  position: relative;
}

.hero-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.media-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px;
  border-radius: 8px;
  color: #f6f1e7;
  background: rgba(16, 19, 31, 0.86);
  font-size: 0.95rem;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ebe7dc;
}

.section.dark {
  color: #f7f4ee;
  background: var(--night);
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.section-head {
  max-width: 780px;
  margin-bottom: 30px;
}

.section-head p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.dark .section-head p,
.dark .muted {
  color: #bdc2cf;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.dark .card {
  color: #f7f4ee;
  background: #191e2d;
  border-color: #2b3142;
}

.card p {
  margin: 10px 0 0;
  color: var(--muted);
}

.dark .card p {
  color: #c9cfda;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 14px;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  color: var(--teal-dark);
  background: #dff3ee;
  font-size: 0.78rem;
  font-weight: 800;
}

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

.step {
  position: relative;
  padding: 22px;
  min-height: 190px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.step::before {
  counter-increment: steps;
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: #fff;
  background: var(--coral);
  font-weight: 900;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

th {
  background: #f0ece1;
  font-size: 0.88rem;
}

tr:last-child td {
  border-bottom: 0;
}

.verdict {
  color: var(--teal-dark);
  font-weight: 800;
}

.note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.92rem;
}

.license-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.license-list li {
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--gold);
  border-radius: 8px;
}

.quote {
  margin: 0;
  padding: 28px;
  background: #fff;
  border-left: 5px solid var(--teal);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.quote p {
  margin: 0;
  font-size: 1.2rem;
}

.quote cite {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-style: normal;
}

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

.faq details {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.faq summary {
  cursor: pointer;
  padding: 18px 20px;
  font-weight: 800;
}

.faq details p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 34px;
  border-radius: 8px;
  color: #f7f4ee;
  background: var(--night);
}

.cta-band p {
  margin: 10px 0 0;
  color: #c9cfda;
}

.source-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.94rem;
}

.source-list a {
  color: var(--teal-dark);
}

.site-footer {
  padding: 32px 0;
  color: #c9cfda;
  background: var(--night);
}

.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.disclosure {
  max-width: 760px;
}

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

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    padding-top: 44px;
    grid-template-columns: 1fr;
  }

  .hero-media img {
    aspect-ratio: 16 / 10;
  }

  .grid.three,
  .grid.two,
  .workflow,
  .cta-band {
    grid-template-columns: 1fr;
  }

  .trust-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .hero,
  .container,
  .nav,
  .footer-inner {
    width: min(100% - 24px, 1180px);
  }

  .nav-links {
    gap: 14px;
    font-size: 0.88rem;
  }

  .button {
    width: 100%;
    white-space: normal;
    text-align: center;
  }

  .hero-actions {
    display: grid;
  }

  .section {
    padding: 52px 0;
  }

  .cta-band {
    padding: 24px;
  }
}
