:root {
  color-scheme: dark;
  --bg: #111317;
  --panel: rgba(31, 34, 42, 0.78);
  --panel-strong: rgba(38, 42, 52, 0.92);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f7fb;
  --muted: #b8c0cc;
  --blue: #4cbaf0;
  --mint: #51ead5;
  --green: #36d18b;
  --amber: #f3c969;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #111317 0%, #17151a 42%, #12161b 100%);
  color: var(--text);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem clamp(1.2rem, 4vw, 4.5rem);
  border-bottom: 1px solid var(--line);
  background: rgba(17, 19, 23, 0.82);
  backdrop-filter: blur(18px);
}

.brand,
.site-header nav,
.hero-actions,
.trust-band,
.split,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 0.7rem;
  font-weight: 700;
}

.brand img {
  width: 34px;
  height: 34px;
}

.site-header nav {
  gap: clamp(0.8rem, 2vw, 1.8rem);
  color: var(--muted);
  font-size: 0.94rem;
}

.site-header nav a:hover {
  color: var(--text);
}

.store-link,
.primary,
.secondary {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0.72rem 1rem;
  font-weight: 700;
}

.store-link,
.secondary {
  background: rgba(255, 255, 255, 0.07);
}

.primary {
  background: linear-gradient(135deg, var(--blue), var(--mint));
  color: #06131a;
  border-color: transparent;
}

.hero {
  min-height: 86vh;
  display: grid;
  align-items: end;
  padding: clamp(2rem, 6vw, 5rem);
  position: relative;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 5rem clamp(1rem, 4vw, 4rem) 2rem clamp(1rem, 4vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  opacity: 0.92;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 23, 0.98) 0%, rgba(17, 19, 23, 0.94) 27%, rgba(17, 19, 23, 0.58) 48%, rgba(17, 19, 23, 0.12) 78%),
    linear-gradient(180deg, rgba(17, 19, 23, 0.1), rgba(17, 19, 23, 0.38));
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 64% center;
}

.hero-copy {
  position: relative;
  width: min(720px, 100%);
  padding-bottom: 5vh;
}

.eyebrow {
  margin: 0 0 0.8rem;
  color: var(--mint);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 1rem;
  font-size: clamp(3.2rem, 8vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0.85rem;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 0.45rem;
  font-size: 1.05rem;
}

.hero-copy p,
.section-heading p,
.split p,
.feature-list p,
.action-catalog p,
.pro-copy > p:not(.eyebrow),
.pro-feature-grid p,
.plans-grid li {
  color: var(--muted);
  line-height: 1.6;
}

.hero-copy > p {
  max-width: 620px;
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.hero-actions {
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 1.7rem;
}

.trust-band {
  width: min(1120px, calc(100% - 2rem));
  margin: -2.6rem auto 0;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(23, 25, 31, 0.86);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  justify-content: space-between;
  gap: 1rem;
}

.trust-band div {
  display: grid;
  gap: 0.22rem;
}

.trust-band strong {
  font-size: 1.2rem;
}

.trust-band span {
  color: var(--muted);
  font-size: 0.86rem;
}

.section {
  width: min(1180px, calc(100% - 2rem));
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.section.compact {
  padding-top: 2rem;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.plans-section {
  width: min(980px, calc(100% - 2rem));
}

.plans-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1rem, 2vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(31, 34, 42, 0.88), rgba(20, 22, 28, 0.86)),
    var(--panel);
  box-shadow: var(--shadow);
}

.plans-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.plans-heading > div:first-child {
  max-width: 720px;
}

.plans-heading h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.35rem, 2vw, 1.55rem);
  line-height: 1.15;
}

.plans-heading p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 118px;
  padding: 0.75rem 0.85rem;
  border: 1px solid rgba(81, 234, 213, 0.18);
  border-radius: 14px;
  background: rgba(43, 86, 87, 0.62);
  color: var(--text);
  font-size: 0.82rem;
}

.lock {
  position: relative;
  width: 14px;
  height: 13px;
  border: 2px solid var(--mint);
  border-radius: 4px;
}

.lock::before {
  content: "";
  position: absolute;
  left: 2px;
  top: -8px;
  width: 6px;
  height: 7px;
  border: 2px solid var(--mint);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 1rem;
  align-items: stretch;
}

.shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.shot img {
  display: block;
  width: 100%;
}

.shot figcaption {
  padding: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list {
  display: grid;
  gap: 1rem;
}

.feature-list article,
.plans-grid article,
.action-catalog article,
.pro-feature-grid article {
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.25rem;
  background: var(--panel);
}

.action-catalog {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.action-catalog article {
  min-height: 190px;
  background:
    linear-gradient(180deg, rgba(36, 52, 70, 0.72), rgba(25, 28, 35, 0.84)),
    var(--panel);
}

.action-catalog img {
  width: 34px;
  height: 34px;
  margin-bottom: 0.9rem;
  border-radius: 11px;
  box-shadow: 0 12px 30px rgba(42, 137, 255, 0.24);
}

.action-catalog p {
  margin-bottom: 0;
  font-size: 0.93rem;
  line-height: 1.55;
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 2.2rem;
  height: 2.2rem;
  margin-bottom: 1rem;
  border-radius: 11px;
  background: rgba(76, 186, 240, 0.2);
  color: var(--mint);
  font-weight: 800;
}

.split {
  justify-content: space-between;
  gap: 2rem;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: clamp(1.2rem, 4vw, 2.4rem);
  background: var(--panel-strong);
}

.split > div {
  max-width: 520px;
}

.widget-shot {
  width: min(430px, 100%);
}

.pro-section {
  padding-top: 1rem;
}

.pro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
  border: 1px solid rgba(76, 186, 240, 0.24);
  border-radius: 28px;
  padding: clamp(1rem, 3vw, 1.4rem);
  background:
    radial-gradient(circle at 18% 18%, rgba(76, 186, 240, 0.22), transparent 24rem),
    linear-gradient(145deg, rgba(22, 28, 39, 0.95), rgba(13, 16, 23, 0.92));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.pro-copy {
  align-self: center;
  padding: clamp(0.5rem, 2vw, 1rem);
}

.pro-copy > p:not(.eyebrow) {
  line-height: 1.65;
}

.pro-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.pro-feature-grid article {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.055);
}

.pro-feature-grid .icon {
  margin-bottom: 0.75rem;
}

.pro-feature-grid p {
  margin-bottom: 0;
  font-size: 0.92rem;
  line-height: 1.55;
}

.pro-banner {
  position: relative;
  min-height: 420px;
  margin: 0;
  border: 1px solid rgba(81, 234, 213, 0.24);
  border-radius: 24px;
  overflow: hidden;
  background: #071124;
}

.pro-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 14, 23, 0.12), rgba(10, 14, 23, 0.02));
  pointer-events: none;
}

.pro-banner img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
  margin-bottom: 0;
}

.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  overflow: hidden;
}

.plan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% 12%, rgba(76, 186, 240, 0.13), transparent 9rem);
  pointer-events: none;
}

.plan-card > * {
  position: relative;
}

.free-plan {
  border-color: rgba(79, 140, 255, 0.68);
}

.pro-plan {
  border-color: rgba(255, 255, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(31, 47, 59, 0.94), rgba(31, 34, 42, 0.92)),
    var(--panel);
}

.ultimate-plan {
  background:
    linear-gradient(180deg, rgba(46, 38, 61, 0.94), rgba(31, 34, 42, 0.9)),
    var(--panel);
}

.plan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.plan-card-top h3 {
  margin: 0 0 0.3rem;
  font-size: 1rem;
}

.plan-symbol {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--blue);
  background: rgba(76, 186, 240, 0.13);
}

.plan-symbol::before {
  content: "";
  display: block;
}

.plan-symbol.users::before {
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateY(-4px);
  box-shadow: 0 12px 0 -4px currentColor;
}

.plan-symbol.star {
  color: var(--mint);
  background: rgba(81, 234, 213, 0.14);
}

.plan-symbol.star::before {
  width: 18px;
  height: 18px;
  background: currentColor;
  clip-path: polygon(50% 0, 61% 35%, 98% 35%, 68% 56%, 79% 91%, 50% 70%, 21% 91%, 32% 56%, 2% 35%, 39% 35%);
}

.plan-symbol.team {
  color: #6c8cff;
  background: rgba(112, 92, 190, 0.24);
}

.plan-symbol.team::before {
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(-5px, -4px);
  box-shadow: 0 11px 0 -4px currentColor;
}

.plan-symbol.team::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translate(7px, -1px);
  opacity: 0.75;
}

.price {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.plan-features {
  display: grid;
  gap: 0.48rem;
  margin: 0.8rem 0 1rem;
  padding: 0;
  list-style: none;
}

.plan-features li {
  display: grid;
  grid-template-columns: 21px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.45rem;
  min-height: 22px;
  color: var(--text);
  font-size: 0.78rem;
  line-height: 1.35;
}

.plan-features li > span:first-child {
  display: inline-grid;
  place-items: center;
  width: 19px;
  height: 19px;
  border-radius: 7px;
}

.plan-features li > span:first-child::before {
  font-size: 0.78rem;
  font-weight: 900;
}

.plan-features .included > span:first-child {
  background: rgba(46, 212, 122, 0.18);
  color: var(--green);
}

.plan-features .included > span:first-child::before {
  content: "\2713";
}

.plan-features .excluded {
  color: rgba(184, 192, 204, 0.68);
}

.plan-features .excluded > span:first-child {
  background: rgba(255, 107, 107, 0.16);
  color: #ff6b6b;
}

.plan-features .excluded > span:first-child::before {
  content: "\00d7";
}

.plan-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 34px;
  margin-top: auto;
  padding: 0.55rem 0.85rem;
  border-radius: 13px;
  background: var(--blue);
  color: #06131a;
  font-size: 0.88rem;
  font-weight: 700;
}

.plan-button.muted {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
}

.plans-shot {
  max-width: 760px;
}

footer {
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1.2rem, 4vw, 4.5rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.lang {
  display: inline-flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
}

.lang button {
  min-width: 42px;
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.lang button.active {
  color: #06131a;
  background: linear-gradient(135deg, var(--blue), var(--mint));
}

[data-lang="es"] .en,
[data-lang="en"] .es {
  display: none !important;
}

.shot figcaption.es,
.shot figcaption.en {
  padding: 1rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.confirmation-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 22% 24%, rgba(76, 186, 240, 0.2), transparent 34rem),
    radial-gradient(circle at 78% 62%, rgba(81, 234, 213, 0.14), transparent 30rem),
    linear-gradient(135deg, #0c111b 0%, #111317 48%, #17151a 100%);
}

.confirmation-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(1.5rem, 5vw, 4rem);
}

.confirmation-card {
  width: min(100%, 560px);
  padding: clamp(1.6rem, 4vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(31, 34, 42, 0.92), rgba(17, 19, 23, 0.86));
  box-shadow: var(--shadow);
}

.confirmation-card img {
  width: 68px;
  height: 68px;
  margin-bottom: 1.4rem;
}

.confirmation-card h1 {
  margin: 0 0 0.8rem;
  font-size: clamp(2.2rem, 8vw, 4.2rem);
  line-height: 0.95;
}

.confirmation-card p:not(.eyebrow) {
  margin: 0 0 1.6rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 1100px) {
  .action-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pro-panel {
    grid-template-columns: 1fr;
  }
}

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

  .hero {
    min-height: 78vh;
    padding: 2rem 1rem;
  }

  .hero-media {
    inset: 4.5rem 0.8rem 1rem;
  }

  .trust-band,
  .product-grid,
  .action-catalog,
  .split,
  .pro-feature-grid,
  .plans-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .action-catalog article {
    min-height: auto;
  }

  .pro-banner {
    min-height: 280px;
  }

  .trust-band {
    margin-top: 1rem;
  }

  footer {
    display: grid;
  }

  .header-actions {
    width: 100%;
    justify-content: space-between;
  }
}
