:root {
  --navy: #0a1b33;
  --navy-deep: #061221;
  --teal: #22d3ee;
  --teal-dark: #0ea5c4;
  --text: #1a2230;
  --muted: #5c6778;
  --line: #e4e8ee;
  --gray: #f3f5f7;
  --white: #ffffff;
  --header-h: 76px;
  --max: 1120px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

h1,
h2,
h3 {
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 700;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2.1rem, 5vw, 3.6rem);
}

h2 {
  margin: 0 0 16px;
  font-size: clamp(1.7rem, 3.4vw, 2.55rem);
}

h3 {
  margin: 0 0 10px;
  font-size: 1.15rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-teal {
  background: var(--teal);
  color: var(--navy);
}

.btn-teal:hover {
  background: #67e8f9;
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(10, 27, 51, 0.28);
  backdrop-filter: blur(14px);
  transition: background 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(10, 27, 51, 0.94);
}

.header-inner {
  width: min(calc(100% - 40px), 1200px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  line-height: 0;
}

.logo img {
  height: 48px;
  width: auto;
  mix-blend-mode: screen;
}

.nav {
  display: flex;
  justify-content: center;
  gap: 34px;
}

.nav a {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
  font-weight: 500;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang {
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.lang button {
  background: transparent;
  color: rgba(255, 255, 255, 0.7);
  border: 0;
  padding: 7px 10px;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
}

.lang button.is-active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: transparent;
  padding: 10px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.58) 0%, rgba(0, 8, 16, 0.48) 45%, rgba(0, 0, 0, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(calc(100% - 40px), 760px);
  padding-top: 40px;
}

.hero-icon {
  width: min(220px, 72vw);
  margin: 0 auto 22px;
}

.hero-icon img {
  width: 100%;
  height: auto;
  mix-blend-mode: screen;
}

.hero-content p {
  margin: 0 auto;
  max-width: 46ch;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
}

.scroll-guide {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 90px;
  border-left: 2px dashed rgba(255, 255, 255, 0.45);
  transform: translateX(-50%);
  z-index: 2;
}

/* Features */
.features {
  position: relative;
  padding: 120px 0 80px;
  background: var(--white);
}

.features-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 40px;
  border-left: 2px dashed #d5dce6;
  transform: translateX(-50%);
}

.feature-row {
  width: min(calc(100% - 40px), 1080px);
  margin: 0 auto 110px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.feature-row.reverse {
  direction: rtl;
}

.feature-row.reverse > * {
  direction: ltr;
}

.feature-copy {
  max-width: 420px;
}

.feature-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.phone-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone-shot {
  width: min(300px, 72vw);
  height: auto;
  filter: drop-shadow(0 22px 36px rgba(10, 27, 51, 0.18));
}

.phone-shot-wide {
  width: min(420px, 86vw);
}

/* Mid CTA */
.mid-cta {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.mid-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mid-cta-card {
  position: relative;
  z-index: 2;
  width: min(460px, 92vw);
  margin: 60px 8vw 60px 0;
  padding: 48px 40px;
  background: rgba(8, 18, 34, 0.78);
  color: var(--white);
  backdrop-filter: blur(8px);
}

.mid-cta-brand {
  margin: 0 0 16px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-style: italic;
  font-size: 1.35rem;
}

.mid-cta-brand span {
  color: var(--teal);
}

.mid-cta-card p:not(.mid-cta-brand) {
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 24px;
}

/* Why */
.why {
  padding: 110px 0 90px;
  background: var(--gray);
  text-align: center;
}

.why-head {
  position: relative;
  max-width: 640px;
  margin: 0 auto 48px;
}

.laurel {
  width: min(280px, 80%);
  margin: 0 auto 8px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  text-align: left;
  margin-bottom: 56px;
}

.why-grid p {
  margin: 0;
  color: var(--muted);
}

.tiers {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.tier {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: var(--navy);
  font-size: 0.9rem;
}

.tier-icon {
  width: 72px;
  height: 72px;
}

.tier-icon svg {
  width: 100%;
  height: 100%;
}

/* Benefits */
.benefits {
  padding: 96px 0;
  background: var(--navy);
  color: var(--white);
}

.benefits h2 {
  color: var(--teal);
  text-align: center;
  margin-bottom: 56px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.benefits-grid svg {
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
}

.benefits-grid h3 {
  font-size: 1.05rem;
}

.benefits-grid p {
  margin: 0;
  color: #8de8dc;
  font-size: 0.95rem;
}

/* Stories */
.stories {
  padding: 100px 0 80px;
  background: var(--white);
  text-align: center;
}

.stories-art {
  margin: 36px 0 48px;
}

.stories-art img {
  width: min(920px, 100%);
  margin-inline: auto;
  border-radius: 8px;
}

.quotes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.quotes blockquote {
  margin: 0;
  padding: 22px;
  background: var(--gray);
  border-radius: 16px;
}

.quotes p {
  margin: 0 0 12px;
  color: var(--text);
}

.quotes cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.88rem;
  font-weight: 600;
}

/* Reach */
.reach {
  padding: 100px 0;
  background:
    radial-gradient(circle at 80% 62%, #22d3ee 0%, #0891b2 28%, transparent 58%),
    linear-gradient(165deg, #000000 0%, #021418 46%, #0a5f6c 100%);
  color: var(--white);
}

.reach-grid {
  display: grid;
  gap: 36px;
}

.reach-copy {
  max-width: 720px;
}

.reach-copy p {
  color: rgba(255, 255, 255, 0.78);
}

.reach-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(220px, 0.7fr);
  align-items: center;
  gap: 36px;
}

.ven-map-wrap {
  position: relative;
  width: min(100%, 680px);
}

.ven-map-wrap::before {
  content: "";
  position: absolute;
  inset: 6% 8% 2%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.34) 0%, rgba(34, 211, 238, 0.06) 70%, transparent 72%);
  pointer-events: none;
}

.ven-map-wrap svg {
  position: relative;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 28px rgba(10, 10, 30, 0.28));
}

.states-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 22px;
  font-weight: 600;
  font-size: 0.95rem;
}

.states-list li {
  cursor: pointer;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: color 0.18s ease, border-color 0.18s ease;
}

.states-list li:hover,
.states-list li.is-on {
  color: var(--teal);
  border-bottom-color: rgba(34, 211, 238, 0.5);
}

.states-list li[data-state="guayana-esequiba"] {
  font-style: italic;
}

/* Help / contact */
.help {
  padding: 90px 0;
  background: var(--gray);
}

.help-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}

.help-form {
  display: grid;
  gap: 14px;
  background: var(--white);
  padding: 28px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.help-form label {
  display: grid;
  gap: 6px;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.help-form input,
.help-form select,
.help-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  background: var(--white);
  color: var(--text);
}

.help-form textarea {
  min-height: 110px;
  resize: vertical;
}

.help-form input:focus,
.help-form select:focus,
.help-form textarea:focus {
  outline: 2px solid var(--teal);
  outline-offset: 1px;
}

.form-status {
  min-height: 1.3em;
  margin: 0;
  color: var(--teal-dark);
  font-size: 0.9rem;
}

.form-status.error {
  color: #c0392b;
}

/* Footer */
.site-footer {
  background: #000000;
  color: var(--white);
  padding: 48px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 36px;
}

.footer-brand {
  display: grid;
  gap: 18px;
}

.footer-logo {
  display: inline-flex;
  background: #000;
  border-radius: 10px;
  padding: 6px 10px;
}

.footer-logo img {
  height: 42px;
  width: auto;
}

.social {
  display: flex;
  gap: 14px;
}

.social a {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
}

.social svg {
  width: 16px;
  height: 16px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.footer-links strong {
  display: block;
  margin-bottom: 12px;
}

.footer-links a {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: var(--white);
}

.legal {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 16px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .feature-row,
  .feature-row.reverse,
  .why-grid,
  .benefits-grid,
  .quotes,
  .reach-visual,
  .help-grid,
  .footer-top,
  .footer-links {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .feature-row {
    gap: 36px;
    margin-bottom: 72px;
  }

  .features-line {
    display: none;
  }

  .mid-cta {
    justify-content: center;
  }

  .mid-cta-card {
    margin: 48px 20px;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 16px auto;
    display: none;
    flex-direction: column;
    gap: 0;
    background: var(--navy);
    border-radius: 14px;
    padding: 12px;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 12px 14px;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .lang {
    display: none;
  }
}

@media (max-width: 640px) {
  .benefits-grid,
  .why-grid {
    gap: 28px;
  }

  .tiers {
    gap: 20px;
  }

  .header-actions .btn {
    padding: 10px 14px;
    font-size: 0.8rem;
  }

  .logo img {
    height: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-bg {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.7)),
      url("../img/hero-caracas.jpg") center / cover no-repeat;
  }
}

/* Terms teaser on home */
.terms-teaser {
  padding: 96px 0;
  background: var(--white);
  scroll-margin-top: var(--header-h);
}

.terms-teaser .section-lead {
  max-width: 640px;
  margin: 0 0 40px;
}

.terms-teaser .section-lead p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 36px;
}

.terms-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--gray);
}

.terms-card h3 {
  margin-bottom: 8px;
}

.terms-card p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 0.95rem;
}

.terms-card .roles {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.terms-card .roles li {
  padding: 10px 12px;
  background: var(--white);
  border-radius: 10px;
  font-size: 0.9rem;
  color: var(--text);
}

.terms-card .roles strong {
  display: block;
  color: var(--navy);
  margin-bottom: 2px;
}

/* Legal page */
.legal-page .site-header {
  background: #000;
}

.legal-hero {
  padding: calc(var(--header-h) + 56px) 0 40px;
  background: #000;
  color: var(--white);
}

.legal-kicker {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-hero h1 {
  margin-bottom: 16px;
}

.legal-hero p {
  max-width: 68ch;
  color: rgba(255, 255, 255, 0.78);
}

.legal-meta {
  font-size: 0.92rem;
}

.legal-body {
  padding: 56px 0 90px;
  background: var(--gray);
}

.legal-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 20px);
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

.legal-toc strong {
  margin-bottom: 6px;
}

.legal-toc a {
  color: var(--muted);
}

.legal-toc a:hover {
  color: var(--navy);
}

.legal-copy {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px 44px;
}

.legal-copy h2 {
  font-size: 1.45rem;
  margin: 36px 0 12px;
  scroll-margin-top: calc(var(--header-h) + 20px);
}

.legal-copy h2:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-copy ul {
  padding-left: 1.2em;
}

.legal-copy a {
  color: var(--teal-dark);
  text-decoration: underline;
}

.legal-note {
  margin-top: 28px;
  padding: 16px 18px;
  background: var(--gray);
  border-radius: 12px;
  font-size: 0.92rem;
}

@media (max-width: 980px) {
  .terms-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    grid-template-columns: 1fr 1fr;
  }

  .legal-copy {
    padding: 28px 22px;
  }
}
