:root {
  --bg: #09040f;
  --bg-soft: #140a21;
  --panel: rgba(255, 255, 255, 0.08);
  --panel-strong: rgba(255, 255, 255, 0.12);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f7f3fb;
  --muted: #d8cfe7;
  --brand: #7c35af;
  --brand-strong: #9e4ee0;
  --brand-soft: #cfaff5;
  --accent: #f1f1f5;
  --success: #6ad89c;
  --shadow: 0 26px 70px rgba(4, 3, 11, 0.4);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --container: min(1180px, calc(100% - 2rem));
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(158, 78, 224, 0.28), transparent 34%),
    radial-gradient(circle at 85% 15%, rgba(124, 53, 175, 0.22), transparent 28%),
    linear-gradient(135deg, #06020b 0%, #13091e 38%, #09040f 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.03), transparent 22%),
    repeating-linear-gradient(
      115deg,
      transparent 0,
      transparent 18px,
      rgba(255, 255, 255, 0.022) 18px,
      rgba(255, 255, 255, 0.022) 19px
    );
  mix-blend-mode: screen;
}

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

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

button,
input,
textarea,
select {
  font: inherit;
}

.page-shell {
  position: relative;
  overflow: clip;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(22px);
  background: rgba(8, 3, 14, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  min-height: 5rem;
}

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

.brand img {
  width: clamp(3rem, 5vw, 4.25rem);
  height: clamp(3rem, 5vw, 4.25rem);
  object-fit: contain;
}

.brand span {
  display: grid;
  gap: 0.1rem;
}

.brand strong,
.brand small {
  line-height: 1;
}

.brand strong {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.brand small {
  color: var(--muted);
  font-size: 0.75rem;
}

.menu {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}

.menu a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.menu a:hover,
.menu a:focus-visible {
  color: var(--text);
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  padding: 0.3rem;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.55rem;
  height: 2px;
  border-radius: 999px;
  background: var(--text);
}

.menu-toggle span + span {
  margin-top: 0.32rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  font-size: 0.95rem;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

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

.button--primary {
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  color: #fff;
  box-shadow: 0 16px 34px rgba(123, 53, 175, 0.3);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.hero {
  padding: clamp(2.3rem, 4vw, 4rem) 0 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(1.6rem, 3vw, 2.4rem);
  align-items: start;
}

.hero__content {
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--brand-soft);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.74rem;
  font-weight: 700;
}

.hero h1,
.section-heading h2,
.benefits__copy h2,
.contact__panel h2 {
  font-family: "Rajdhani", sans-serif;
  margin: 0;
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2rem, 4vw, 4rem);
}

.hero__lead,
.benefits__copy p,
.section-heading p,
.contact-list p,
.timeline-card p,
.info-card p,
.model-panel p {
  color: var(--muted);
  line-height: 1.72;
  font-size: clamp(0.95rem, 1.2vw, 1.02rem);
}

.hero__lead {
  max-width: 56ch;
  margin: 1.15rem 0 0;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.75rem;
}

.trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  list-style: none;
  padding: 0;
  margin: 1.35rem 0 0;
}

.trust-points li,
.model-tab {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
  padding: 0.72rem 1rem;
}

.trust-points li {
  font-size: 0.82rem;
  color: var(--text);
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
  margin-top: 1.65rem;
}

.hero__highlights article,
.model-panel,
.info-card,
.timeline-card,
.contact__panel,
.contact__map,
.video-card,
.gallery-card {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.hero__highlights article {
  border-radius: 22px;
  padding: 1rem 1rem 1.1rem;
}

.hero__highlights strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 0.32rem;
}

.hero__highlights span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.55;
}

.hero__visual {
  display: grid;
  align-self: start;
  margin-top: clamp(2.5rem, 4vw, 3.3rem);
}

.hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-height: 0;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-card--panel {
  display: flex;
  align-items: flex-end;
  min-height: clamp(18rem, 34vw, 26rem);
  isolation: isolate;
  background: #12081d;
}

.hero-card--panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 5, 17, 0.04) 0%, rgba(10, 5, 17, 0.2) 35%, rgba(10, 5, 17, 0.84) 100%),
    radial-gradient(circle at top right, rgba(158, 78, 224, 0.4), transparent 34%);
}

.hero-card__overlay {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.5rem;
}

.panel-label {
  display: inline-block;
  margin-bottom: 0.8rem;
  color: var(--brand-soft);
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero-card__overlay strong {
  display: block;
  max-width: 12ch;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.search-rail {
  margin-top: clamp(2.6rem, 5vw, 4rem);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  overflow: hidden;
}

.search-rail__marquee {
  position: relative;
  min-height: 4rem;
}

.search-rail__track {
  position: absolute;
  inset: 0 auto 0 0;
  display: flex;
  gap: 1.15rem;
  align-items: center;
  padding: 0.95rem 1.5rem;
  width: max-content;
  min-width: max-content;
  will-change: transform;
}

.search-rail__track span {
  font-family: "Rajdhani", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.section {
  padding: clamp(3.8rem, 7vw, 6.2rem) 0;
}

.section-heading {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.section-heading h2,
.benefits__copy h2,
.contact__panel h2 {
  max-width: 18ch;
  font-size: clamp(1.85rem, 3.1vw, 3.2rem);
}

.section-heading p:last-child {
  max-width: 62ch;
  margin: 0;
}

.catalog__layout,
.benefits,
.contact {
  display: grid;
  gap: 1.2rem;
}

.catalog__layout {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: start;
}

.catalog__switcher,
.catalog__grid,
.benefits__timeline {
  display: grid;
  gap: 1rem;
}

.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.model-tab {
  color: var(--text);
  cursor: pointer;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.model-tab:hover,
.model-tab:focus-visible,
.model-tab.is-active {
  transform: translateY(-1px);
  background: rgba(158, 78, 224, 0.22);
  border-color: rgba(207, 175, 245, 0.38);
}

.model-panel {
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

.model-panel__eyebrow,
.text-link {
  color: var(--brand-soft);
}

.model-panel h3,
.info-card h3,
.timeline-card h3,
.contact-list h3 {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.2;
}

.model-panel h3 {
  margin-top: 0.45rem;
  font-family: "Rajdhani", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  text-transform: uppercase;
}

.text-link {
  display: inline-block;
  margin-top: 0.9rem;
  font-weight: 600;
}

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

.info-card {
  padding: 1.35rem;
  border-radius: var(--radius-md);
}

.info-card:last-child {
  grid-column: 1 / -1;
}

.info-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.9rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), var(--brand-strong));
  font-family: "Rajdhani", sans-serif;
  font-weight: 700;
}

.benefits {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
}

.benefits__copy {
  max-width: 35rem;
}

.benefits__copy p {
  margin-top: 1rem;
}

.benefits__timeline {
  position: relative;
}

.timeline-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  border-radius: 24px;
  padding: 1.35rem;
}

.timeline-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(158, 78, 224, 0.18);
  color: var(--brand-soft);
  font-family: "Rajdhani", sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
}

.timeline-card p,
.info-card p,
.contact-list p {
  margin: 0.5rem 0 0;
}

.video-strip {
  display: grid;
  grid-template-columns: repeat(6, minmax(14rem, 1fr));
  gap: 1rem;
  overflow-x: auto;
  padding-bottom: 0.2rem;
  scroll-snap-type: x mandatory;
}

.video-strip::-webkit-scrollbar {
  height: 8px;
}

.video-strip::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.18);
  border-radius: 999px;
}

.video-card {
  scroll-snap-align: start;
  border-radius: 26px;
  padding: 0.8rem;
}

.video-card video {
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 18px;
  background: #000;
}

.video-card__label {
  display: block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--muted);
}

.gallery-grid {
  columns: 4 16rem;
  column-gap: 1rem;
}

.gallery-card {
  position: relative;
  width: 100%;
  margin: 0 0 1rem;
  padding: 0;
  border-radius: 24px;
  overflow: hidden;
  cursor: pointer;
  break-inside: avoid;
}

.gallery-card img {
  width: 100%;
  height: auto;
  transition: transform 240ms ease, filter 240ms ease;
}

.gallery-card::after {
  content: attr(data-label);
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  border-radius: 999px;
  background: rgba(8, 3, 14, 0.72);
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(0.4rem);
  transition: opacity 200ms ease, transform 200ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-visible img {
  transform: scale(1.03);
  filter: saturate(1.08);
}

.gallery-card:hover::after,
.gallery-card:focus-visible::after {
  opacity: 1;
  transform: translateY(0);
}

.contact {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: stretch;
}

.contact__panel,
.contact__map {
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 1.9rem);
}

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

.contact-list article {
  padding-top: 0.9rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.6rem;
}

.contact__map {
  display: grid;
  gap: 1rem;
}

.contact__poster {
  width: min(100%, 18rem);
  justify-self: end;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__map iframe {
  width: 100%;
  min-height: 23rem;
  border: 0;
  border-radius: 26px;
}

.footer {
  padding: 0 0 2rem;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 1.6rem;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.footer img {
  width: 4.2rem;
  margin-bottom: 0.8rem;
}

.footer p {
  margin: 0;
  color: var(--muted);
  max-width: 36ch;
  line-height: 1.65;
}

.floating-whatsapp {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #2db46c, #22d067);
  box-shadow: 0 16px 34px rgba(34, 208, 103, 0.28);
}

.floating-whatsapp svg {
  width: 1.7rem;
  fill: #fff;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(4, 3, 11, 0.88);
}

.lightbox__content {
  width: min(100%, 70rem);
}

.lightbox__content img {
  max-height: 80vh;
  margin: 0 auto;
  border-radius: 24px;
}

.lightbox__content p {
  margin: 1rem 0 0;
  text-align: center;
  color: var(--muted);
}

.lightbox__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 50%;
  font-size: 2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 500ms ease,
    transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .topbar__cta {
    display: none;
  }

  .hero__grid,
  .catalog__layout,
  .benefits,
  .contact {
    grid-template-columns: 1fr;
  }

  .catalog__grid,
  .contact-list {
    grid-template-columns: 1fr 1fr;
  }

  .contact__poster {
    justify-self: start;
  }
}

@media (max-width: 820px) {
  .topbar__inner {
    min-height: 4.5rem;
    flex-wrap: wrap;
    padding: 0.7rem 0;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 0.5rem 0 0.2rem;
  }

  .menu.is-open {
    display: flex;
  }

  .hero__visual {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .hero-card--panel {
    min-height: 12rem;
  }

  .hero__highlights,
  .catalog__grid,
  .contact-list {
    grid-template-columns: 1fr;
  }

  .video-strip {
    grid-template-columns: repeat(6, minmax(12.5rem, 80vw));
  }

  .gallery-grid {
    columns: 2 12rem;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100%, calc(100% - 1.1rem));
  }

  .button {
    width: 100%;
  }

  .hero__actions,
  .contact__actions {
    display: grid;
  }

  .trust-points {
    flex-direction: column;
  }

  .gallery-grid {
    columns: 1;
  }

  .floating-whatsapp {
    width: 3.5rem;
    height: 3.5rem;
    right: 0.8rem;
    bottom: 0.8rem;
  }
}

@media (max-height: 900px) and (min-width: 980px) {
  .topbar__inner {
    min-height: 4.45rem;
  }

  .hero {
    padding-top: 1.7rem;
  }

  .hero__grid {
    gap: 1.4rem;
  }

  .hero__lead {
    margin-top: 0.9rem;
  }

  .hero__actions {
    margin-top: 1.25rem;
  }

  .hero__highlights {
    margin-top: 1.2rem;
  }

  .hero-card--panel {
    min-height: 14.2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
