:root {
  color-scheme: light;
  --ink: #17202f;
  --muted: #667085;
  --line: #dfe4ec;
  --soft: #f5f7fb;
  --panel: #ffffff;
  --brand: #e66f8b;
  --brand-strong: #c74765;
  --blue: #2563eb;
  --green: #0f766e;
  --shadow: 0 18px 50px rgba(24, 32, 47, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  line-height: 1.6;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  z-index: 10;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

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

.brand-mark {
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  color: #ffffff;
  background: var(--brand);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(230, 111, 139, 0.28);
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.language-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
}

.language-select select {
  min-height: 34px;
  padding: 0 30px 0 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font: inherit;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--brand);
  border: 1px solid var(--brand);
  border-radius: 8px;
  font-weight: 700;
}

.button:hover {
  background: var(--brand-strong);
  border-color: var(--brand-strong);
  text-decoration: none;
}

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

.button.secondary:hover {
  background: var(--soft);
  border-color: #c8d0dc;
}

.hero {
  min-height: calc(100vh - 72px);
  display: grid;
  align-items: end;
  padding: clamp(56px, 7vw, 96px) clamp(20px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.56)),
    url('../store-assets/screenshots/01-page-translation.png') center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-content {
  max-width: 760px;
  padding-bottom: min(8vh, 72px);
}

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

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

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 18px;
  line-height: 1.35;
}

.lead {
  max-width: 660px;
  margin-bottom: 28px;
  color: #344054;
  font-size: 19px;
}

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

.section {
  padding: clamp(54px, 7vw, 92px) clamp(20px, 5vw, 72px);
}

.section.soft {
  background: var(--soft);
}

.section-header {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.card {
  min-height: 100%;
  padding: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(24, 32, 47, 0.04);
}

.card p,
.doc p,
.doc li {
  color: var(--muted);
}

.screenshot {
  width: 100%;
  display: block;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.steps li {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
}

.step-number {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  border-radius: 50%;
  font-weight: 800;
}

.notice {
  padding: 16px 18px;
  color: #5f2936;
  background: #fff0f4;
  border: 1px solid #f0b8c4;
  border-radius: 8px;
}

.doc {
  max-width: 900px;
  margin: 0 auto;
}

.doc h1 {
  font-size: clamp(36px, 5vw, 56px);
}

.doc h2 {
  margin-top: 36px;
  font-size: 26px;
}

.doc table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.doc th {
  background: var(--soft);
}

.doc code {
  padding: 2px 5px;
  background: var(--soft);
  border-radius: 5px;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(20px, 5vw, 72px);
  color: var(--muted);
  background: #101828;
}

.site-footer a,
.site-footer strong {
  color: #ffffff;
}

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

  .hero {
    min-height: 720px;
    background-position: 58% center;
  }

  .grid,
  .two-column {
    grid-template-columns: 1fr;
  }
}
