:root {
  --bg: #06101f;
  --bg-deep: #030816;
  --panel: rgba(10, 18, 34, 0.84);
  --panel-strong: rgba(12, 21, 39, 0.96);
  --panel-soft: rgba(255, 255, 255, 0.04);
  --line: rgba(77, 162, 255, 0.2);
  --line-strong: rgba(77, 162, 255, 0.38);
  --text: #edf4ff;
  --muted: #9eb1d6;
  --muted-strong: #c7d5ef;
  --blue: #4da2ff;
  --blue-strong: #2d88ea;
  --blue-soft: rgba(77, 162, 255, 0.18);
  --shadow: 0 32px 100px rgba(0, 0, 0, 0.38);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --shell: min(1040px, calc(100% - 48px));
  --section-space: clamp(18px, 2.4vw, 30px);
  --poster-frame-width: 403px;
  --poster-source-ratio: 1242 / 2688;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", ui-sans-serif, sans-serif;
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 162, 255, 0.26), transparent 28rem),
    radial-gradient(circle at 86% 16%, rgba(77, 162, 255, 0.22), transparent 32rem),
    linear-gradient(180deg, #06111f 0%, #040a16 46%, #030713 100%);
  text-rendering: optimizeLegibility;
}

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

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

.skip-link {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  color: #05101d;
  font-weight: 800;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 120;
  padding: 14px 0;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(4, 9, 18, 0.9), rgba(4, 9, 18, 0.44));
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 14, 28, 0.76);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.24);
}

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

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 14px;
}

.brand-mark {
  font-family: "Sora", ui-sans-serif, sans-serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark span {
  color: var(--blue);
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.header-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  min-width: 0;
}

.language-select {
  appearance: none;
  min-width: 68px;
  min-height: 38px;
  padding: 0 28px 0 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.005)),
    rgba(6, 14, 28, 0.78);
  color: var(--text);
  font-size: 0.82rem;
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: center;
  text-align-last: center;
  flex: 0 0 auto;
}

.header-controls .button {
  width: auto;
  white-space: nowrap;
  flex: 0 0 auto;
}

.sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, #5eb0ff, #4da2ff);
  box-shadow: 0 18px 40px rgba(77, 162, 255, 0.3);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.hero,
.section-intro,
.execution-band,
.cta-band,
.faq,
.poster-gallery,
.proof-strip {
  padding: var(--section-space) 0;
}

.hero {
  padding-top: 24px;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero h1,
.section-intro h2,
.execution-intro h2,
.cta-shell h2,
.faq h2,
.poster-copy h3 {
  margin: 0;
  font-family: "Sora", ui-sans-serif, sans-serif;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.07;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 39rem;
  margin: 18px 0 0;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.hero-points {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  position: relative;
  margin-top: 12px;
  padding-left: 22px;
  color: var(--muted-strong);
  line-height: 1.72;
}

.hero-points li::before {
  content: "";
  position: absolute;
  top: 0.68rem;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(135deg, #80c2ff, #4da2ff);
  box-shadow: 0 0 0 6px rgba(77, 162, 255, 0.14);
}

[dir="rtl"] .hero-points li {
  padding-left: 0;
  padding-right: 22px;
}

[dir="rtl"] .hero-points li::before {
  left: auto;
  right: 0;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-pills span {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
}

.poster-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)),
    rgba(8, 16, 30, 0.9);
  box-shadow:
    var(--shadow),
    0 0 0 1px rgba(115, 161, 255, 0.16);
}

.proof-strip {
  padding-top: 12px;
}

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

.proof-card,
.execution-card,
.faq-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 17, 32, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.proof-card strong,
.execution-card strong,
.faq-card h3 {
  display: block;
  font-size: 0.98rem;
}

.proof-card p,
.execution-card p,
.faq-card p,
.section-intro p,
.cta-shell p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.58;
  font-size: 0.94rem;
}

.section-intro p {
  max-width: 58ch;
}

.intro-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.82fr);
  gap: 20px;
  align-items: end;
}

.section-intro h2,
.execution-intro h2,
.cta-shell h2,
.faq h2 {
  font-size: clamp(1.72rem, 3vw, 2.8rem);
  line-height: 1.02;
  max-width: 15ch;
}

.poster-gallery {
  padding-top: 14px;
}

.poster-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, var(--poster-frame-width)));
  justify-content: center;
  gap: 18px;
}

.poster-card {
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
  gap: 14px;
  width: min(100%, var(--poster-frame-width));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
  transition: transform 180ms ease;
}

.poster-card:hover,
.poster-card:focus-within {
  transform: translateY(-4px);
}

.poster-card:hover .poster-media,
.poster-card:hover .poster-copy,
.poster-card:focus-within .poster-media,
.poster-card:focus-within .poster-copy {
  box-shadow: 0 32px 110px rgba(0, 0, 0, 0.42);
}

.poster-card:hover .poster-media,
.poster-card:focus-within .poster-media {
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.42),
    0 0 0 1px rgba(121, 171, 255, 0.28);
}

.poster-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center top;
}

.poster-media {
  width: 100%;
  aspect-ratio: var(--poster-source-ratio);
}

.poster-media img {
  background: transparent;
}

html[lang="en"] .poster-media,
html[lang="es"] .poster-media,
html[lang="fr"] .poster-media,
html[lang="ar"] .poster-media,
html[lang="it"] .poster-media,
html[lang="sk"] .poster-media,
html[lang="ru"] .poster-media {
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

html[lang="en"] .poster-media img,
html[lang="es"] .poster-media img,
html[lang="fr"] .poster-media img,
html[lang="ar"] .poster-media img,
html[lang="it"] .poster-media img,
html[lang="sk"] .poster-media img,
html[lang="ru"] .poster-media img {
  object-position: center center;
  filter: drop-shadow(0 28px 90px rgba(0, 0, 0, 0.42));
}

html[lang="en"] .poster-card:hover .poster-media,
html[lang="en"] .poster-card:focus-within .poster-media,
html[lang="es"] .poster-card:hover .poster-media,
html[lang="es"] .poster-card:focus-within .poster-media,
html[lang="fr"] .poster-card:hover .poster-media,
html[lang="fr"] .poster-card:focus-within .poster-media,
html[lang="ar"] .poster-card:hover .poster-media,
html[lang="ar"] .poster-card:focus-within .poster-media,
html[lang="ru"] .poster-card:hover .poster-media,
html[lang="it"] .poster-card:hover .poster-media,
html[lang="it"] .poster-card:focus-within .poster-media,
html[lang="sk"] .poster-card:hover .poster-media,
html[lang="sk"] .poster-card:focus-within .poster-media,
html[lang="ru"] .poster-card:focus-within .poster-media {
  box-shadow: none;
}

.poster-copy {
  padding: 16px 18px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    rgba(9, 17, 32, 0.78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.poster-copy h3 {
  font-size: clamp(1.14rem, 2vw, 1.44rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.poster-copy p:last-child {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.54;
}

.execution-shell {
  display: grid;
  gap: 26px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(68, 146, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015)),
    rgba(7, 14, 27, 0.86);
  box-shadow: var(--shadow);
}

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

.execution-card {
  min-height: 132px;
}

.cta-band {
  position: relative;
}

#why-converts {
  scroll-margin-top: 110px;
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(88, 157, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 82% 18%, rgba(53, 103, 255, 0.18), transparent 24rem);
  pointer-events: none;
}

.cta-shell {
  position: relative;
  padding: 24px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(17, 34, 64, 0.94), rgba(7, 15, 28, 0.94));
  box-shadow: var(--shadow);
}

.cta-shell > p {
  max-width: 44rem;
}

.faq-shell {
  display: grid;
  gap: 22px;
}

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

.faq-card h3 {
  margin: 0;
  font-family: "Sora", ui-sans-serif, sans-serif;
  letter-spacing: -0.04em;
}

.faq-card a {
  color: #8abaff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer {
  padding: 4px 0 20px;
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-top: 1px solid rgba(126, 171, 255, 0.12);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.footer-brand strong {
  display: block;
  font-family: "Sora", ui-sans-serif, sans-serif;
  font-size: 1rem;
}

.footer-brand p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.93rem;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid #8dc0ff;
  outline-offset: 3px;
}

@media (max-width: 1160px) {
  .intro-shell {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

@media (max-width: 960px) {
  .proof-grid,
  .faq-grid,
  .poster-grid {
    grid-template-columns: 1fr;
  }

  .poster-card {
    justify-self: center;
  }
}

@media (max-width: 840px) {
  .site-nav {
    display: none;
  }

  .nav-shell {
    padding: 10px 12px;
  }

  .hero,
  .section-intro,
  .execution-band,
  .cta-band,
  .faq {
    padding: 36px 0;
  }

  .hero {
    padding-top: 20px;
  }

  .proof-strip {
    padding-top: 6px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .execution-shell,
  .cta-shell {
    padding: 24px;
  }

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

  .proof-grid,
  .proof-card,
  .execution-card,
  .faq-card,
  .poster-card {
    border-radius: 20px;
  }
}

@media (max-width: 520px) {
  .site-header {
    padding: 10px 0;
  }

  .nav-shell {
    gap: 10px;
    padding: 8px 10px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 34px;
    height: 34px;
    border-radius: 12px;
  }

  .brand-mark {
    font-size: 1rem;
  }

  .header-controls {
    gap: 8px;
  }

  .language-select {
    min-height: 40px;
    min-width: 62px;
    padding: 0 24px 0 10px;
    font-size: 0.78rem;
  }

  .header-controls .button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.88rem;
  }
}

@media (max-width: 380px) {
  .nav-shell {
    flex-wrap: wrap;
    justify-content: center;
  }

  .brand {
    width: 100%;
    justify-content: center;
  }

  .header-controls {
    width: 100%;
    justify-content: center;
    margin-left: 0;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 24px);
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
    line-height: 1.08;
  }

  .section-intro h2,
  .execution-intro h2,
  .cta-shell h2,
  .faq h2 {
    font-size: clamp(1.72rem, 9vw, 2.3rem);
    max-width: 100%;
  }

  .poster-card {
    min-height: auto;
  }

  .poster-copy {
    padding-bottom: 0;
  }
  .execution-grid {
    grid-template-columns: 1fr;
  }

  .footer-shell {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}
