:root {
  color-scheme: light;
  --bg: #ffffff;
  --ink: #161616;
  --muted: #5f5f5f;
  --line: rgba(22, 22, 22, 0.1);
  --orange: #ff7300;
  --button: #111111;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: "Manrope", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  font: inherit;
}

.page {
  width: min(100% - 30px, 520px);
  min-height: 100vh;
  margin: 0 auto;
  padding: 18px 0 34px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  flex: 0 0 auto;
}

.brand-text {
  display: grid;
  line-height: 1.08;
}

.brand-name {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.brand-label {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.lang-switch {
  display: inline-flex;
  gap: 4px;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
}

.lang-btn {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  padding: 7px 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.lang-btn.is-active {
  background: #111111;
  color: #ffffff;
}

.hero {
  display: flex;
  min-height: calc(100vh - 76px);
  flex-direction: column;
  justify-content: center;
  padding: 42px 0 0;
  text-align: center;
}

h1 {
  margin: 0;
  font-size: clamp(2.45rem, 11vw, 4.4rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 900;
  text-wrap: balance;
}

.accent {
  color: var(--orange);
}

.lead {
  margin: 20px auto 0;
  max-width: 460px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.65;
  font-weight: 650;
}

.lead strong {
  color: var(--ink);
  font-weight: 900;
}

.cta-area {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 60px;
  border: 0;
  border-radius: 999px;
  background: var(--button);
  color: #ffffff;
  cursor: pointer;
  font-size: 1.04rem;
  font-weight: 900;
  letter-spacing: -0.01em;
}

.cta-button svg {
  flex: 0 0 auto;
}

.microcopy {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 26px;
}

.proof-item {
  min-height: 70px;
  padding: 12px 8px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
}

.proof-value {
  display: block;
  color: var(--orange);
  font-size: 1rem;
  font-weight: 900;
  line-height: 1;
}

.proof-label {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.25;
}

.footer-note {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
  font-size: 12px;
  font-weight: 650;
}

@media (hover: hover) and (pointer: fine) {
  .lang-btn:hover:not(.is-active) {
    color: var(--ink);
    background: rgba(22, 22, 22, 0.06);
  }

  .cta-button:hover {
    background: var(--orange);
  }
}

@media (max-width: 380px) {
  .page {
    width: min(100% - 22px, 520px);
  }

  h1 {
    font-size: 2.28rem;
  }

  .lead {
    font-size: 0.98rem;
  }

  .proof-row {
    gap: 6px;
  }
}
