:root {
  color-scheme: light;
  --ink: #17211f;
  --muted: #5d6c68;
  --line: #d9e1de;
  --paper: #fbfcfa;
  --band: #eef5f1;
  --accent: #136f63;
  --accent-2: #a33d2d;
  --gold: #b48728;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    "Apple SD Gothic Neo", sans-serif;
}

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

.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 250, 0.92);
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  font-weight: 750;
}

.mark {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--ink);
  color: var(--accent);
}

nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 14px;
}

.hero {
  min-height: calc(100vh - 68px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.88fr);
  gap: 48px;
  align-items: center;
  padding: 72px 7vw 64px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

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

h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: 56px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}

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

.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
}

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

.secondary {
  background: white;
}

.product-shot {
  min-height: 440px;
  display: grid;
  place-items: center;
}

.browser-frame {
  width: min(100%, 520px);
  aspect-ratio: 1.14;
  border: 1px solid var(--ink);
  background: white;
  box-shadow: 18px 18px 0 var(--band);
  padding: 22px;
}

.traffic {
  display: flex;
  gap: 8px;
  margin-bottom: 28px;
}

.traffic span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line);
}

.page-line {
  height: 22px;
  border-radius: 2px;
  background: #dfe8e5;
  margin-bottom: 14px;
}

.wide {
  width: 82%;
}

.translation-card {
  border-left: 4px solid var(--accent);
  background: #f0f7f3;
  padding: 18px;
  margin: 18px 0 28px;
}

.tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 850;
  margin-bottom: 8px;
}

.video-card {
  min-height: 148px;
  background: #182320;
  color: white;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 22px;
}

.play {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  margin-bottom: 12px;
}

.band,
.providers {
  padding: 72px 7vw;
}

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

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

h2 {
  font-size: 34px;
  line-height: 1.16;
  letter-spacing: 0;
}

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

article {
  background: white;
  border: 1px solid var(--line);
  padding: 24px;
}

article p,
.steps,
td {
  color: var(--muted);
  line-height: 1.65;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border: 1px solid var(--line);
}

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

th {
  font-size: 13px;
  color: var(--accent);
}

.steps {
  max-width: 860px;
  padding-left: 20px;
}

.steps li {
  margin-bottom: 10px;
}

footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  min-height: 84px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 860px) {
  .topbar {
    height: auto;
    align-items: flex-start;
    gap: 16px;
    flex-direction: column;
    padding: 18px 22px;
  }

  nav {
    flex-wrap: wrap;
    gap: 14px;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 48px 22px;
  }

  h1 {
    font-size: 40px;
  }

  .product-shot {
    min-height: 320px;
  }

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

  .band,
  .providers {
    padding: 52px 22px;
  }
}
