:root {
  --bg: #071009;
  --panel: #0c1710;
  --panel2: #101d14;
  --line: #203528;
  --text: #f4f7f4;
  --muted: #a7b4aa;
  --green: #42f46c;
  --green2: #24c94e;
  --blue: #80bfff;
  --amber: #f5c75d;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  background: var(--bg);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family:
    Inter,
    Segoe UI,
    Arial,
    sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}
a {
  color: inherit;
}
.nav {
  height: 72px;
  padding: 0 max(24px, calc((100% - var(--max)) / 2));
  display: flex;
  align-items: center;
  gap: 32px;
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 16, 9, 0.96);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  text-decoration: none;
  font-size: 11px;
  font-weight: 800;
  color: var(--green);
  letter-spacing: 1px;
}
.brand b {
  display: inline-grid;
  place-items: center;
  width: 31px;
  height: 31px;
  border: 1px solid var(--green);
  border-radius: 6px;
  color: var(--green);
  font-size: 15px;
}
.brand strong {
  color: var(--text);
  font-size: 21px;
  letter-spacing: 0;
}
.nav > nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}
.nav > nav a,
footer nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 14px;
}
.nav > nav a:hover,
footer nav a:hover {
  color: var(--text);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid var(--green);
  border-radius: 6px;
  background: var(--green);
  color: #061108;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}
.button:hover {
  background: #65ff87;
}
.button.secondary {
  background: transparent;
  color: var(--text);
  border-color: #6d8072;
}
.button.secondary:hover {
  border-color: var(--green);
  color: var(--green);
}
.button.compact {
  min-height: 40px;
  padding: 0 15px;
}
.hero {
  height: min(760px, calc(100svh - 92px));
  min-height: 570px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}
.hero-image {
  background: url("/static/hero-translation-us-br.webp") center center / cover no-repeat;
}
.hero-shade {
  background: linear-gradient(
    90deg,
    rgba(3, 9, 5, 0.96) 0%,
    rgba(3, 9, 5, 0.82) 43%,
    rgba(3, 9, 5, 0.2) 75%,
    rgba(3, 9, 5, 0.05) 100%
  );
}
.hero-content {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  position: relative;
}
.eyebrow {
  text-transform: uppercase;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.4px;
  margin: 0 0 16px;
}
.hero h1 {
  font-size: clamp(56px, 8vw, 104px);
  line-height: 0.95;
  margin: 0 0 22px;
  max-width: 700px;
}
.lead {
  font-size: 19px;
  max-width: 660px;
  color: #d3dbd5;
  margin: 0 0 30px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.requirements {
  font-size: 13px;
  color: var(--muted);
  margin-top: 18px;
}
.engine-band {
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  border-block: 1px solid var(--line);
  background: #09140c;
  color: var(--muted);
}
.engine-band strong {
  color: var(--text);
  font-size: 17px;
}
.engine-band i {
  width: 4px;
  height: 4px;
  background: var(--green);
  border-radius: 50%;
}
.section {
  width: min(var(--max), calc(100% - 48px));
  margin: auto;
  padding: 104px 0;
}
.section-heading {
  max-width: 700px;
  margin-bottom: 48px;
}
.section h2,
.final-cta h2 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  margin: 0 0 18px;
}
.section-heading > p:last-child,
.comparison-copy > p,
.security-grid p,
.faq details p {
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}
.steps article {
  padding: 28px 24px 12px 0;
  border-right: 1px solid var(--line);
  min-height: 220px;
}
.steps article + article {
  padding-left: 24px;
}
.steps article:last-child {
  border-right: 0;
}
.steps span {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}
.steps h3,
.security-grid h3 {
  font-size: 18px;
  margin: 28px 0 10px;
}
.steps p {
  color: var(--muted);
  font-size: 14px;
}
.proof {
  display: grid;
  grid-template-columns: 0.8fr 1.4fr;
  gap: 54px;
  align-items: center;
}
.comparison {
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.comparison div {
  position: relative;
  border: 1px solid var(--line);
  background: #000;
}
.comparison img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.comparison span {
  position: absolute;
  left: 12px;
  top: 12px;
  background: #071009;
  padding: 5px 9px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
}
.check-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.check-list li {
  padding: 10px 0 10px 25px;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.check-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
}
.pricing {
  width: 100%;
  padding-inline: max(24px, calc((100% - var(--max)) / 2));
  background: #0a150d;
  border-block: 1px solid var(--line);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.plans article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  display: flex;
  flex-direction: column;
  min-height: 310px;
}
.plans article.featured {
  border-color: var(--green);
  background: var(--panel2);
}
.plan-name {
  color: var(--green);
  font-weight: 800;
  margin: 0;
}
.plans h3 {
  font-size: 30px;
  margin: 14px 0 4px;
}
.plans h3 small {
  font-size: 13px;
  color: var(--muted);
}
.plans .muted {
  color: var(--muted);
  font-size: 14px;
  min-height: 44px;
}
.plans strong {
  margin: 22px 0 auto;
}
.plans .button {
  margin-top: 28px;
}
.topups {
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  margin: 24px 0 0;
}
.security {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 70px;
}
.security-grid {
  display: grid;
  gap: 0;
}
.security-grid article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.security-grid h3 {
  margin: 0 0 8px;
}
.security-grid p {
  margin: 0;
}
.faq {
  max-width: 900px;
}
.faq details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 700;
}
.faq details p {
  max-width: 760px;
}
.final-cta {
  text-align: center;
  padding: 100px 24px;
  background: #111d14;
  border-top: 1px solid var(--line);
}
.final-cta p {
  color: var(--muted);
  margin-bottom: 28px;
}
footer {
  padding: 52px max(24px, calc((100% - var(--max)) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 26px;
  align-items: center;
  border-top: 1px solid var(--line);
  color: var(--muted);
}
.footer-brand {
  width: 150px;
}
footer p {
  font-size: 13px;
}
footer nav {
  display: flex;
  gap: 20px;
}
footer small {
  grid-column: 1/-1;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.legal {
  width: min(820px, calc(100% - 40px));
  margin: auto;
  padding: 80px 0 120px;
}
.legal h1 {
  font-size: 48px;
  line-height: 1.05;
}
.legal h2 {
  margin-top: 40px;
}
.legal p,
.legal li {
  color: var(--muted);
}
.legal .updated {
  color: var(--green);
  font-size: 13px;
  font-weight: 700;
}
.legal a {
  color: var(--green);
}
@media (max-width: 850px) {
  .nav > nav {
    display: none;
  }
  .nav .compact {
    margin-left: auto;
  }
  .hero {
    min-height: 610px;
  }
  .hero-image {
    background-position: 62% center;
  }
  .hero-shade {
    background: rgba(3, 9, 5, 0.78);
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .steps article:nth-child(2) {
    border-right: 0;
  }
  .proof,
  .security {
    grid-template-columns: 1fr;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .comparison {
    order: -1;
  }
  .engine-band {
    gap: 12px;
    flex-wrap: wrap;
    padding: 20px;
  }
  .engine-band p {
    width: 100%;
    text-align: center;
    margin: 0;
  }
  footer {
    grid-template-columns: 1fr;
  }
  footer small {
    grid-column: 1;
  }
}
@media (max-width: 540px) {
  .nav {
    padding: 0 14px;
  }
  .nav .brand span {
    display: none;
  }
  .nav .compact {
    font-size: 0;
    width: 44px;
    padding: 0;
  }
  .nav .compact:after {
    content: "↓";
    font-size: 20px;
  }
  .hero {
    height: calc(100svh - 86px);
    min-height: 590px;
  }
  .hero-content {
    width: calc(100% - 30px);
  }
  .hero h1 {
    font-size: 54px;
  }
  .lead {
    font-size: 16px;
  }
  .actions .button {
    width: 100%;
  }
  .section {
    width: calc(100% - 30px);
    padding: 76px 0;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .steps article,
  .steps article + article {
    padding: 22px 0;
    border-right: 0;
  }
  .proof {
    gap: 34px;
  }
  .comparison {
    grid-template-columns: 1fr;
  }
  .pricing {
    padding-inline: 15px;
  }
  .plans article {
    padding: 24px;
  }
  .security {
    gap: 22px;
  }
  .final-cta {
    padding: 76px 18px;
  }
}
