/* ============================================
   ROUNDTRIP LANDING
   Design tokens portados del app oficial
   ============================================ */

:root {
  /* Colores marca */
  --rt-black: #0E1117;
  --rt-black-soft: #2D2F33;
  --rt-black-deep: #07183B;
  --rt-blue: #0D47A1;
  --rt-pink: #F21DA8;
  --rt-cyan: #0FDBF2;

  /* Superficies */
  --rt-bg: #0B1220;
  --rt-panel: #0F1A2B;
  --rt-card: #131F33;
  --rt-hover: #182842;

  /* Texto */
  --rt-text: #FFFFFF;
  --rt-text-secondary: #E2E8F0;
  --rt-muted: #94A3B8;

  /* Bordes */
  --rt-border: rgba(255, 255, 255, 0.08);
  --rt-border-strong: rgba(255, 255, 255, 0.14);

  /* Gradientes */
  --rt-gradient-brand: linear-gradient(135deg, #0D47A1 0%, #0FDBF2 50%, #F21DA8 100%);
  --rt-gradient-night: linear-gradient(180deg, #07183B 0%, #0E1117 100%);
  --rt-gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.02) 100%);

  /* Radios */
  --rt-radius-sm: 12px;
  --rt-radius-md: 20px;
  --rt-radius-lg: 24px;
  --rt-radius-pill: 999px;

  /* Shadows */
  --rt-shadow-md: 0 10px 24px rgba(0,0,0,.30);
  --rt-shadow-lg: 0 18px 50px rgba(0,0,0,.42);
  --rt-shadow-glow-blue: 0 8px 24px rgba(13,71,161,.25);
  --rt-shadow-glow-cyan: 0 8px 24px rgba(15,219,242,.20);
  --rt-shadow-glow-pink: 0 8px 24px rgba(242,29,168,.20);
  --rt-shadow-layered: 0 1px 2px rgba(0,0,0,.15), 0 8px 24px rgba(0,0,0,.20), 0 24px 48px rgba(0,0,0,.15);

  /* Tipografia */
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

  --text-xs: clamp(0.75rem, 0.73rem + 0.12vw, 0.82rem);
  --text-sm: clamp(0.875rem, 0.85rem + 0.15vw, 0.95rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.05rem + 0.4vw, 1.3rem);
  --text-xl: clamp(1.25rem, 1.15rem + 0.5vw, 1.5rem);
  --text-2xl: clamp(1.5rem, 1.3rem + 1vw, 2rem);
  --text-3xl: clamp(1.875rem, 1.5rem + 1.8vw, 2.75rem);
  --text-4xl: clamp(2.25rem, 1.8rem + 2.4vw, 3.5rem);
  --text-5xl: clamp(2.75rem, 2rem + 3.8vw, 4.5rem);

  /* Espaciado */
  --section-padding: clamp(4rem, 3rem + 3vw, 7rem) 0;
  --container-width: 1200px;
  --container-padding: clamp(1rem, 0.5rem + 2vw, 2rem);

  --transition: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  --transition-fast: 0.2s ease;
}

/* ============================================
   RESET
   ============================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  line-height: 1.6;
  color: var(--rt-text);
  background-color: var(--rt-black);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(13, 71, 161, 0.18), transparent 60%),
    radial-gradient(1000px 500px at 90% 10%, rgba(15, 219, 242, 0.10), transparent 55%),
    radial-gradient(1000px 600px at 50% 110%, rgba(242, 29, 168, 0.10), transparent 60%),
    var(--rt-gradient-night);
  background-attachment: fixed;
  background-repeat: no-repeat;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.5em;
  color: var(--rt-text);
}

p {
  margin: 0 0 1em;
}

:focus-visible {
  outline: 2px solid var(--rt-cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--rt-cyan);
  color: var(--rt-black);
}

/* ============================================
   UTILIDADES
   ============================================ */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

.rt-glass {
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border);
}

.gradient-text {
  background: var(--rt-gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--rt-cyan);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rt-cyan);
  box-shadow: 0 0 12px var(--rt-cyan);
}

/* Botones */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  border-radius: var(--rt-radius-pill);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), filter var(--transition-fast);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--rt-gradient-brand);
  color: #fff;
  box-shadow: var(--rt-shadow-glow-blue);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-2px);
  box-shadow: var(--rt-shadow-glow-cyan), var(--rt-shadow-glow-pink);
  filter: brightness(1.08);
}

.btn--ghost {
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  color: var(--rt-text);
  border: 1px solid var(--rt-border-strong);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--rt-cyan);
  transform: translateY(-1px);
}

.btn--lg {
  padding: 1.1rem 2.25rem;
  font-size: var(--text-lg);
}

.section {
  padding: var(--section-padding);
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto clamp(2.5rem, 2rem + 2vw, 4rem);
}

.section__title {
  font-size: var(--text-4xl);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.55;
}

/* ============================================
   HEADER
   ============================================ */
.header__burger {
  border: 3px solid red !important;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0.875rem 0;
  transition: padding var(--transition), background var(--transition), box-shadow var(--transition);
}

.header.scrolled {
  padding: 0.5rem 0;
  background: rgba(11, 18, 32, 0.75);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid var(--rt-border);
  box-shadow: var(--rt-shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.header__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--rt-text);
}

.header__logo-iso {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 18px rgba(15, 219, 242, 0.35));
  transition: transform var(--transition);
}

.header__logo:hover .header__logo-iso {
  transform: rotate(-8deg) scale(1.05);
}

.header__logo-wordmark {
  display: inline-block;
  height: 22px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

@media (max-width: 379px) {
  .header__logo-wordmark {
    height: 18px;
  }
}

.header__list {
  display: none;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--rt-text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.header__link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--rt-gradient-brand);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--transition);
}

.header__link:hover,
.header__link:focus-visible {
  color: var(--rt-text);
}

.header__link:hover::after,
.header__link:focus-visible::after {
  transform: scaleX(1);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header__cta {
  padding: 0.7rem 1.25rem;
  font-size: var(--text-sm);
}

.header__burger {
  position: relative;
  z-index: 1001;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rt-border);
  border-radius: 10px;
  padding: 0;
}

.header__burger span {
  position: absolute;
  display: block;
  width: 20px;
  height: 2px;
  background: var(--rt-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.header__burger span:nth-child(1) {
  transform: translateY(-6px);
}

.header__burger span:nth-child(2) {
  transform: translateY(0);
}

.header__burger span:nth-child(3) {
  transform: translateY(6px);
}

.header__burger.open span:nth-child(1) {
  transform: rotate(45deg);
}

.header__burger.open span:nth-child(2) {
  opacity: 0;
}

.header__burger.open span:nth-child(3) {
  transform: rotate(-45deg);
}
/* Burger ? X animation when menu is open */
.header__burger.open span:nth-child(1) {
  transform: rotate(45deg) translateY(6px);
}
.header__burger.open span:nth-child(2) {
  opacity: 0;
}
.header__burger.open span:nth-child(3) {
  transform: rotate(-45deg) translateY(-6px);
}

@media (min-width: 1024px) {
  .header__list {
    display: flex;
  }
  .header__burger {
    display: none;
  }
}

@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    inset: 64px 0 0 0;
    padding: 2.5rem var(--container-padding);
    background: rgba(11, 18, 32, 0.95);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    backdrop-filter: blur(24px) saturate(1.4);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
  }
  .header__nav.open {
    transform: translateX(0);
  }
  .header__list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    align-items: flex-start;
  }
  .header__link {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--rt-text);
  }
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(7rem, 5rem + 5vw, 10rem) 0 clamp(4rem, 3rem + 3vw, 7rem);
  overflow: hidden;
  isolation: isolate;
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}
.hero__glow--cyan {
  width: 480px;
  height: 480px;
  background: var(--rt-cyan);
  top: -120px;
  right: -120px;
  animation: float 18s ease-in-out infinite;
}
.hero__glow--pink {
  width: 400px;
  height: 400px;
  background: var(--rt-pink);
  bottom: -100px;
  left: -100px;
  animation: float 22s ease-in-out infinite reverse;
}
.hero__glow--blue {
  width: 520px;
  height: 520px;
  background: var(--rt-blue);
  top: 30%;
  left: 40%;
  opacity: 0.35;
  animation: float 25s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.1); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(3rem, 2rem + 4vw, 5rem);
  align-items: center;
}

.hero__content {
  max-width: 640px;
}

.hero__eyebrow,
.hero__title,
.hero__subtitle,
.hero__actions,
.hero__form,
.hero__stats,
.hero__preview {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.hero.is-visible .hero__eyebrow,
.hero.is-visible .hero__title,
.hero.is-visible .hero__subtitle,
.hero.is-visible .hero__actions,
.hero.is-visible .hero__form,
.hero.is-visible .hero__stats,
.hero.is-visible .hero__preview {
  opacity: 1;
  transform: translateY(0);
}

.hero.is-visible .hero__eyebrow   { transition-delay: 0.05s; }
.hero.is-visible .hero__title     { transition-delay: 0.15s; }
.hero.is-visible .hero__subtitle  { transition-delay: 0.25s; }
.hero.is-visible .hero__actions   { transition-delay: 0.35s; }
.hero.is-visible .hero__form      { transition-delay: 0.45s; }
.hero.is-visible .hero__stats     { transition-delay: 0.55s; }
.hero.is-visible .hero__preview   { transition-delay: 0.2s; }

.hero__eyebrow {
  margin-bottom: 1.5rem;
}

.hero__title {
  font-size: var(--text-5xl);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 1.25rem;
}

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 560px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}

.hero__form {
  margin-bottom: 2.5rem;
}

.hero__form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-md);
}

.hero__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: var(--rt-radius-md);
  color: var(--rt-text);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.hero__form input::placeholder {
  color: var(--rt-muted);
}

.hero__form input:focus {
  outline: none;
  border-color: var(--rt-cyan);
  background: rgba(15, 219, 242, 0.05);
}

.hero__form button {
  width: 100%;
}

.hero__form-hint {
  margin: 0.75rem 0 0;
  font-size: var(--text-xs);
  color: var(--rt-muted);
  text-align: center;
}

.hero__form-message {
  margin: 0.75rem 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  text-align: center;
  min-height: 1.2em;
}

.hero__form-message.is-ok { color: var(--rt-cyan); }
.hero__form-message.is-err { color: var(--rt-pink); }

.hero__stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 1rem 1.25rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
}

.hero__stats strong {
  font-size: var(--text-base);
  font-weight: 700;
}

.hero__stats span {
  font-size: var(--text-xs);
  color: var(--rt-muted);
}

/* App preview mockup */
.hero__preview {
  display: none;
  width: 100%;
  max-width: 540px;
  justify-self: center;
  position: relative;
}

.hero__device {
  background: var(--rt-panel);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-blue);
  transform: perspective(1400px) rotateY(-6deg) rotateX(4deg);
  transition: transform var(--transition);
}
.hero__device:hover {
  transform: perspective(1400px) rotateY(-3deg) rotateX(2deg);
}

.hero__device-chrome {
  display: flex;
  gap: 6px;
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.25);
  border-bottom: 1px solid var(--rt-border);
}
.hero__device-chrome span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.hero__device-screen {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 360px;
  background: #0a1423;
}

.mock-sidebar {
  padding: 1rem 0.75rem;
  border-right: 1px solid var(--rt-border);
}
.mock-logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  margin-bottom: 1.5rem;
}
.mock-logo-iso {
  width: 22px;
  height: 22px;
}
.mock-sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mock-sidebar li {
  padding: 0.5rem 0.6rem;
  font-size: 0.75rem;
  border-radius: 10px;
  color: var(--rt-text-secondary);
}
.mock-sidebar li.is-active {
  background: var(--rt-gradient-brand);
  color: #fff;
  font-weight: 600;
}

.mock-map {
  position: relative;
  background:
    linear-gradient(180deg, rgba(15, 219, 242, 0.04), rgba(242, 29, 168, 0.04)),
    #0a1423;
  overflow: hidden;
}

.mock-map__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(circle at center, #000, transparent 90%);
  mask-image: radial-gradient(circle at center, #000, transparent 90%);
}

.mock-map__search {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.9rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-pill);
  font-size: 0.7rem;
  color: var(--rt-muted);
  white-space: nowrap;
}

.mock-map__pin {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--rt-cyan);
  box-shadow: 0 0 0 3px rgba(15, 219, 242, 0.22), 0 0 20px var(--rt-cyan);
}
.mock-map__pin--1 { top: 38%; left: 44%; }
.mock-map__pin--2 { top: 22%; left: 72%; background: var(--rt-pink); box-shadow: 0 0 0 3px rgba(242, 29, 168, 0.22), 0 0 18px var(--rt-pink); }
.mock-map__pin--3 { top: 68%; left: 30%; background: var(--rt-blue); box-shadow: 0 0 0 3px rgba(13, 71, 161, 0.35), 0 0 18px var(--rt-blue); }

.mock-map__pulse {
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 2px solid var(--rt-cyan);
  animation: pulse 2.4s ease-out infinite;
}

@keyframes pulse {
  0% { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(2.4); opacity: 0; }
}

.mock-map__card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 0.7rem;
  padding: 0.6rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-md);
  max-width: 240px;
}
.mock-map__card-img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #0D47A1, #0FDBF2);
}
.mock-map__card-body {
  display: flex;
  flex-direction: column;
  font-size: 0.7rem;
}
.mock-map__card-body small {
  color: var(--rt-muted);
  font-size: 0.62rem;
  margin-bottom: 2px;
}
.mock-map__card-body strong {
  font-size: 0.78rem;
  margin-bottom: 2px;
}
.mock-map__card-body span {
  color: var(--rt-muted);
  font-size: 0.62rem;
}

/* Hero responsive */
@media (min-width: 640px) {
  .hero__form-fields {
    grid-template-columns: 1fr 1fr auto;
  }
  .hero__form button {
    width: auto;
  }
  .hero__stats {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .hero__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  }
  .hero__preview {
    display: block;
  }
}

/* ============================================
   REVEAL ANIMATIONS (genericas)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal--delay-1 { transition-delay: 0.1s; }
.reveal--delay-2 { transition-delay: 0.2s; }
.reveal--delay-3 { transition-delay: 0.3s; }
.reveal--delay-4 { transition-delay: 0.4s; }

/* ============================================
   WHAT IS ROUNDTRIP
   ============================================ */
.what {
  position: relative;
}

.what__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.what-card {
  position: relative;
  padding: 2rem 1.75rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
  isolation: isolate;
}

.what-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--rt-gradient-accent, linear-gradient(135deg, rgba(13,71,161,0.1) 0%, rgba(15,219,242,0.04) 100%));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.what-card:hover {
  transform: translateY(-4px);
  border-color: var(--rt-border-strong);
  box-shadow: var(--rt-shadow-lg);
}

.what-card:hover::before {
  opacity: 1;
}

.what-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1.25rem;
  border-radius: var(--rt-radius-md);
  background: var(--rt-gradient-brand);
  color: #fff;
  box-shadow: var(--rt-shadow-glow-cyan);
}

.what-card__icon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.what-card__title {
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.what-card__text {
  font-size: var(--text-base);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin: 0;
}

.what-card__tag {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.3rem 0.7rem;
  background: rgba(15, 219, 242, 0.1);
  border: 1px solid rgba(15, 219, 242, 0.25);
  border-radius: var(--rt-radius-pill);
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--rt-cyan);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

@media (min-width: 640px) {
  .what__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .what__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   SMART MAP SECTION
   ============================================ */
.smartmap {
  position: relative;
}

.smartmap__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.smartmap__content .eyebrow {
  margin-bottom: 1.25rem;
}

.smartmap__title {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.smartmap__text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.smartmap__features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 0.9rem;
}

.smartmap__features li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 1.1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
}

.smartmap__features .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rt-gradient-brand);
  color: #fff;
  flex-shrink: 0;
  margin-top: 2px;
}
.smartmap__features .check svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.smartmap__features strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.15rem;
}
.smartmap__features span {
  font-size: var(--text-sm);
  color: var(--rt-muted);
}

/* Map mockup (detallado — imita screenshot real) */
.smartmap__preview {
  position: relative;
  border-radius: var(--rt-radius-lg);
  overflow: hidden;
  border: 1px solid var(--rt-border-strong);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-blue);
  aspect-ratio: 16 / 11;
  background: #0a1423;
  isolation: isolate;
}

.smartmap__preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 40%, rgba(13, 71, 161, 0.25), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(242, 29, 168, 0.18), transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(15, 219, 242, 0.10), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.smartmap__preview::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  -webkit-mask-image: radial-gradient(circle at center, #000 50%, transparent 95%);
  mask-image: radial-gradient(circle at center, #000 50%, transparent 95%);
  z-index: 0;
  pointer-events: none;
}

/* Roads (fake) */
.smartmap__road {
  position: absolute;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 2px;
  z-index: 1;
}
.smartmap__road--h { height: 3px; left: 6%; right: 6%; }
.smartmap__road--v { width: 3px; top: 10%; bottom: 10%; }
.smartmap__road--1 { top: 32%; transform: rotate(-4deg); }
.smartmap__road--2 { top: 62%; transform: rotate(2deg); }
.smartmap__road--3 { left: 28%; transform: rotate(6deg); }
.smartmap__road--4 { left: 68%; transform: rotate(-3deg); }

/* Pins */
.smartmap__pin {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  z-index: 3;
  cursor: pointer;
  transition: transform var(--transition-fast);
}
.smartmap__pin::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  background: inherit;
  opacity: 0.35;
  filter: blur(4px);
}
.smartmap__pin:hover { transform: scale(1.25); }

.smartmap__pin--cyan {
  top: 30%; left: 28%;
  background: var(--rt-cyan);
  box-shadow: 0 0 0 4px rgba(15, 219, 242, 0.2), 0 0 24px var(--rt-cyan);
}
.smartmap__pin--pink {
  top: 50%; left: 62%;
  background: var(--rt-pink);
  box-shadow: 0 0 0 4px rgba(242, 29, 168, 0.2), 0 0 24px var(--rt-pink);
}
.smartmap__pin--blue {
  top: 70%; left: 38%;
  background: var(--rt-blue);
  box-shadow: 0 0 0 4px rgba(13, 71, 161, 0.35), 0 0 20px var(--rt-blue);
}

.smartmap__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid currentColor;
  animation: pulse 2.4s ease-out infinite;
  color: var(--rt-cyan);
}

.smartmap__pin--pink .smartmap__pulse { color: var(--rt-pink); }
.smartmap__pin--blue .smartmap__pulse { color: var(--rt-blue); }

/* Search bar inside map */
.smartmap__search {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.1rem;
  min-width: 260px;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-pill);
  font-size: var(--text-sm);
  color: var(--rt-muted);
  z-index: 4;
  box-shadow: var(--rt-shadow-md);
}

/* Place cards stack */
.smartmap__places {
  position: absolute;
  top: 70px;
  left: 16px;
  width: 220px;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  z-index: 4;
}

.smartmap__place {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0.7rem;
  padding: 0.55rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}

.smartmap__place:hover {
  transform: translateX(4px);
  border-color: var(--rt-cyan);
}

.smartmap__place-img {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  flex-shrink: 0;
}
.smartmap__place--1 .smartmap__place-img { background: linear-gradient(135deg, #0D47A1, #0FDBF2); }
.smartmap__place--2 .smartmap__place-img { background: linear-gradient(135deg, #0FDBF2, #F21DA8); }
.smartmap__place--3 .smartmap__place-img { background: linear-gradient(135deg, #F21DA8, #0D47A1); }

.smartmap__place-body {
  display: flex;
  flex-direction: column;
  font-size: 0.72rem;
  min-width: 0;
}
.smartmap__place-tag {
  display: inline-block;
  padding: 2px 6px;
  margin-bottom: 3px;
  font-size: 0.58rem;
  font-weight: 700;
  color: #fff;
  background: #10B981;
  border-radius: 6px;
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.smartmap__place-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--rt-text);
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.smartmap__place-meta {
  font-size: 0.62rem;
  color: var(--rt-muted);
}
.smartmap__place-rating {
  color: #FACC15;
  font-weight: 700;
  margin-left: 0.3rem;
}

/* Floating review bubble */
.smartmap__review {
  position: absolute;
  right: 20px;
  bottom: 28px;
  width: 220px;
  padding: 0.9rem 1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-lg), var(--rt-shadow-glow-pink);
  z-index: 5;
  font-size: 0.78rem;
  animation: floatUp 4s ease-in-out infinite;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.smartmap__review-head {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.smartmap__review-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--rt-gradient-brand);
  flex-shrink: 0;
}
.smartmap__review-author {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rt-text);
}
.smartmap__review-stars {
  font-size: 0.7rem;
  color: #FACC15;
  margin-left: auto;
}
.smartmap__review-text {
  font-size: 0.72rem;
  color: var(--rt-text-secondary);
  line-height: 1.4;
  margin: 0;
}

@media (min-width: 1024px) {
  .smartmap__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

/* ============================================
   FEED (personalized reviews)
   ============================================ */
.feed {
  position: relative;
  overflow: hidden;
}

.feed__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.feed__content {
  order: 2;
}

.feed__preview {
  order: 1;
  position: relative;
  perspective: 1400px;
}

.feed__title {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.feed__text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.feed__points {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.feed__point {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: flex-start;
}

.feed__point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--rt-radius-md);
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border-strong);
  color: var(--rt-cyan);
  flex-shrink: 0;
}
.feed__point-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.feed__point strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.feed__point span {
  font-size: var(--text-sm);
  color: var(--rt-muted);
  line-height: 1.5;
}

/* Feed phone-like stack */
.feed__stack {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
  transform: rotate(-3deg);
}

.feed__card {
  position: absolute;
  left: 0;
  right: 0;
  padding: 1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered);
  transition: transform var(--transition);
}

.feed__card--1 {
  top: 0;
  z-index: 3;
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-cyan);
}
.feed__card--2 {
  top: 35%;
  z-index: 2;
  transform: translateX(6%) scale(0.97);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-pink);
}
.feed__card--3 {
  top: 68%;
  z-index: 1;
  transform: translateX(-4%) scale(0.94);
  opacity: 0.9;
}

.feed__card-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.9rem;
}

.feed__avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
}
.feed__card--1 .feed__avatar { background: linear-gradient(135deg, #0D47A1, #0FDBF2); }
.feed__card--2 .feed__avatar { background: linear-gradient(135deg, #0FDBF2, #F21DA8); }
.feed__card--3 .feed__avatar { background: linear-gradient(135deg, #F21DA8, #0D47A1); }

.feed__meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.feed__username {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rt-text);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.feed__verify {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
  background: var(--rt-cyan);
  color: #0E1117;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}
.feed__place {
  font-size: var(--text-xs);
  color: var(--rt-muted);
}
.feed__place::before {
  content: '📍';
  margin-right: 3px;
  filter: saturate(0) brightness(1.8);
}

.feed__rating {
  margin-left: auto;
  color: #FACC15;
  font-size: 0.75rem;
  font-weight: 700;
}

.feed__media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: var(--rt-radius-md);
  margin-bottom: 0.8rem;
  overflow: hidden;
}
.feed__card--1 .feed__media {
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 200, 120, 0.6), transparent 60%),
    radial-gradient(circle at 70% 70%, rgba(255, 60, 130, 0.5), transparent 55%),
    linear-gradient(135deg, #0D47A1, #F21DA8);
}
.feed__card--2 .feed__media {
  background:
    radial-gradient(circle at 30% 70%, rgba(15, 219, 242, 0.5), transparent 55%),
    radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.25), transparent 50%),
    linear-gradient(180deg, #07183B, #0FDBF2);
}
.feed__card--3 .feed__media {
  background:
    radial-gradient(circle at 50% 60%, rgba(242, 29, 168, 0.4), transparent 55%),
    linear-gradient(135deg, #0E1117, #2D2F33);
}

.feed__media-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  padding: 0.3rem 0.6rem;
  background: rgba(14, 17, 23, 0.7);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--rt-radius-pill);
  font-size: 0.65rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 1px solid rgba(255,255,255,0.15);
}

.feed__caption {
  font-size: var(--text-sm);
  color: var(--rt-text-secondary);
  line-height: 1.5;
  margin: 0 0 0.75rem;
}

.feed__actions {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.75rem;
  color: var(--rt-muted);
}
.feed__actions span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}
.feed__xp {
  margin-left: auto;
  padding: 0.2rem 0.55rem;
  background: var(--rt-gradient-brand);
  color: #fff;
  border-radius: var(--rt-radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
}

@media (min-width: 1024px) {
  .feed__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  }
  .feed__content {
    order: 1;
  }
  .feed__preview {
    order: 2;
  }
}

/* ============================================
   JOURNEYS
   ============================================ */
.journeys {
  position: relative;
}

.journeys__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.journeys__title {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.journeys__text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.journeys__steps {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
  display: grid;
  gap: 1rem;
}

.journeys__step {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
}

.journeys__step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--rt-gradient-brand);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 800;
  box-shadow: var(--rt-shadow-glow-cyan);
  flex-shrink: 0;
}

.journeys__step strong {
  display: block;
  font-size: var(--text-base);
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.journeys__step span {
  font-size: var(--text-sm);
  color: var(--rt-muted);
  line-height: 1.5;
}

/* Journey preview — travelogue cards */
.journeys__preview {
  position: relative;
}

.journeys__panel {
  padding: 1.5rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-blue);
}

.journeys__panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}
.journeys__panel-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rt-muted);
}
.journeys__panel-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.55rem;
  background: var(--rt-cyan);
  color: #07183B;
  font-size: 0.7rem;
  font-weight: 800;
  border-radius: 50%;
}

/* Draft journey card */
.journeys__draft {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(15, 26, 43, 0.6);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  margin-bottom: 1.5rem;
}

.journeys__draft-icon {
  width: 50px;
  height: 50px;
  border-radius: 14px;
  background: var(--rt-gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.journeys__draft-icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.journeys__draft-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.journeys__draft-label {
  display: inline-block;
  padding: 2px 8px;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rt-muted);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  width: fit-content;
  margin-bottom: 4px;
}
.journeys__draft-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--rt-text);
  margin-bottom: 2px;
}
.journeys__draft-sub {
  font-size: 0.72rem;
  color: var(--rt-muted);
}

.journeys__draft-arrow {
  color: var(--rt-muted);
}

.journeys__list-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-bottom: 0.85rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.journeys__list-title .journeys__panel-count {
  font-size: 0.6rem;
  padding: 0.12rem 0.45rem;
}

/* Travelogue cards */
.journeys__travelogues {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-bottom: 1.25rem;
}

.journeys__trav {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--rt-radius-md);
  overflow: hidden;
  border: 1px solid var(--rt-border);
}
.journeys__trav--1 {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 200, 120, 0.5), transparent 60%),
    linear-gradient(180deg, #0D47A1, #F21DA8);
}
.journeys__trav--2 {
  background:
    radial-gradient(circle at 30% 60%, rgba(15, 219, 242, 0.4), transparent 60%),
    linear-gradient(180deg, #07183B, #0FDBF2);
}
.journeys__trav--3 {
  background:
    radial-gradient(circle at 70% 40%, rgba(242, 29, 168, 0.5), transparent 55%),
    linear-gradient(180deg, #2D2F33, #07183B);
}

.journeys__trav-days {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 0.2rem 0.5rem;
  background: rgba(14, 17, 23, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border-radius: var(--rt-radius-pill);
  font-size: 0.6rem;
  font-weight: 800;
  color: #fff;
}

.journeys__trav-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.6rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.7));
}
.journeys__trav-title {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  line-height: 1.2;
}
.journeys__trav-sub {
  display: block;
  font-size: 0.58rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.2;
}

/* Stats row */
.journeys__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  padding: 0.9rem;
  background: rgba(11, 18, 32, 0.5);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
}
.journeys__stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0.4rem;
  border-radius: 10px;
}
.journeys__stat-value {
  font-size: var(--text-lg);
  font-weight: 800;
  color: var(--rt-text);
  line-height: 1;
  margin-bottom: 3px;
}
.journeys__stat-label {
  font-size: 0.58rem;
  color: var(--rt-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

@media (min-width: 1024px) {
  .journeys__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

/* ============================================
   BOOKING WIZARDS
   ============================================ */
.booking {
  position: relative;
}

.booking__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-pill);
  max-width: max-content;
  margin-left: auto;
  margin-right: auto;
}

.booking__tab {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 1.1rem;
  border-radius: var(--rt-radius-pill);
  background: transparent;
  color: var(--rt-muted);
  font-size: var(--text-sm);
  font-weight: 600;
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-fast);
}

.booking__tab svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking__tab:hover {
  color: var(--rt-text);
}

.booking__tab.is-active {
  background: var(--rt-gradient-brand);
  color: #fff;
  box-shadow: var(--rt-shadow-glow-cyan);
}

.booking__panels {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.booking__panel {
  display: none;
  padding: 2rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-blue);
}

.booking__panel.is-active {
  display: block;
  animation: fadeInScale 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes fadeInScale {
  0% { opacity: 0; transform: scale(0.96); }
  100% { opacity: 1; transform: scale(1); }
}

.booking__panel-head {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--rt-border);
}

.booking__panel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--rt-radius-md);
  background: var(--rt-gradient-brand);
  color: #fff;
  flex-shrink: 0;
  box-shadow: var(--rt-shadow-glow-cyan);
}
.booking__panel-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking__panel h3 {
  font-size: var(--text-xl);
  margin: 0 0 0.25rem;
}

.booking__panel-sub {
  font-size: var(--text-sm);
  color: var(--rt-muted);
  margin: 0;
}

/* Mock search form */
.booking__form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.booking__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  transition: border-color var(--transition-fast);
}
.booking__field:hover {
  border-color: var(--rt-border-strong);
}
.booking__field-label {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--rt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.booking__field-value {
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--rt-text);
}
.booking__field-value--muted {
  color: var(--rt-muted);
  font-weight: 500;
}

.booking__submit {
  width: 100%;
  margin-top: 0.5rem;
}

/* Results preview */
.booking__results-title {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin-bottom: 0.85rem;
}

.booking__results {
  display: grid;
  gap: 0.6rem;
}

.booking__result {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 0.9rem 1rem;
  background: rgba(11, 18, 32, 0.4);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  transition: transform var(--transition-fast), border-color var(--transition-fast);
}
.booking__result:hover {
  transform: translateX(2px);
  border-color: var(--rt-cyan);
}

.booking__result-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.booking__result-title {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rt-text);
  margin-bottom: 3px;
}
.booking__result-sub {
  font-size: 0.75rem;
  color: var(--rt-muted);
}

.booking__result-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.booking__result-amount {
  font-size: var(--text-base);
  font-weight: 800;
  color: var(--rt-text);
  line-height: 1;
}
.booking__result-meta {
  font-size: 0.65rem;
  color: var(--rt-cyan);
  font-weight: 600;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (min-width: 640px) {
  .booking__form {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 900px) {
  .booking__form {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   AI COPILOT (Chat Gemini)
   ============================================ */
.copilot {
  position: relative;
}

.copilot__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
}

.copilot__title {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.copilot__text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.copilot__capabilities {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.copilot__cap {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-pill);
  font-size: var(--text-sm);
  color: var(--rt-text-secondary);
}
.copilot__cap-emoji {
  font-size: 1.1rem;
}

/* Chat mockup */
.copilot__chat {
  position: relative;
  padding: 1.25rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-pink);
}

.copilot__chat-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--rt-border);
  margin-bottom: 1.25rem;
}

.copilot__chat-avatar {
  position: relative;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--rt-gradient-brand);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.8rem;
  box-shadow: var(--rt-shadow-glow-cyan);
}

.copilot__chat-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #10B981;
  border: 2px solid var(--rt-panel);
  border-radius: 50%;
}

.copilot__chat-title {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--rt-text);
  margin: 0;
}
.copilot__chat-status {
  font-size: 0.72rem;
  color: #10B981;
}

.copilot__messages {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  max-height: 420px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 5%, #000 100%);
}

.copilot__msg {
  display: flex;
  max-width: 80%;
  animation: slideInMsg 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes slideInMsg {
  0% { opacity: 0; transform: translateY(8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.copilot__msg--user {
  align-self: flex-end;
}
.copilot__msg--ai {
  align-self: flex-start;
}

.copilot__bubble {
  padding: 0.75rem 1rem;
  font-size: var(--text-sm);
  line-height: 1.45;
  border-radius: var(--rt-radius-md);
  box-shadow: var(--rt-shadow-md);
}

.copilot__msg--user .copilot__bubble {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rt-border-strong);
  color: var(--rt-text);
  border-bottom-right-radius: 6px;
}

.copilot__msg--ai .copilot__bubble {
  background: var(--rt-gradient-brand);
  color: #fff;
  border-bottom-left-radius: 6px;
}

/* Suggestion cards inside AI bubble */
.copilot__suggest {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.75rem;
}
.copilot__suggest-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.75rem;
  background: rgba(14, 17, 23, 0.35);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--rt-radius-sm);
  font-size: 0.78rem;
}
.copilot__suggest-icon {
  font-size: 1rem;
}
.copilot__suggest-text {
  flex: 1;
}
.copilot__suggest-price {
  font-weight: 800;
  font-size: 0.75rem;
}

/* Typing indicator */
.copilot__typing {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 0.75rem 1rem;
  background: var(--rt-gradient-brand);
  border-radius: var(--rt-radius-md);
  border-bottom-left-radius: 6px;
}
.copilot__typing span {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  opacity: 0.6;
  animation: typing 1.4s infinite;
}
.copilot__typing span:nth-child(2) { animation-delay: 0.2s; }
.copilot__typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.6; }
  30% { transform: translateY(-4px); opacity: 1; }
}

/* Input field */
.copilot__input {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-pill);
}
.copilot__input-text {
  flex: 1;
  font-size: var(--text-sm);
  color: var(--rt-muted);
  padding: 0.35rem 0.5rem;
}
.copilot__input-btn {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--rt-gradient-brand);
  color: #fff;
  border-radius: 50%;
  flex-shrink: 0;
}
.copilot__input-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

@media (min-width: 1024px) {
  .copilot__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  }
}

/* ============================================
   FUTURE (SocialFi + $RTRIP + Roadmap)
   ============================================ */
.future {
  position: relative;
  overflow: hidden;
}

.future::before {
  content: '';
  position: absolute;
  top: 20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: var(--rt-pink);
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

.future::after {
  content: '';
  position: absolute;
  bottom: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: var(--rt-cyan);
  border-radius: 50%;
  filter: blur(180px);
  opacity: 0.12;
  pointer-events: none;
  z-index: -1;
}

/* Token showcase */
.future__token {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2.5rem, 2rem + 2vw, 4rem);
  align-items: center;
  margin-bottom: clamp(4rem, 3rem + 3vw, 6rem);
}

.future__token-coin {
  position: relative;
  aspect-ratio: 1;
  max-width: 440px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(2rem, 1rem + 4vw, 4rem);
}

.future__coin {
  position: relative;
  width: 60%;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: coinFloat 5s ease-in-out infinite;
  z-index: 2;
  filter:
    drop-shadow(0 20px 40px rgba(13, 71, 161, 0.45))
    drop-shadow(0 0 60px rgba(15, 219, 242, 0.35))
    drop-shadow(0 0 80px rgba(242, 29, 168, 0.25));
}

.future__coin-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Anillos giratorios */
.future__coin::before,
.future__coin::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: none;
  z-index: -1;
}
.future__coin::before {
  inset: -22px;
  animation: spin 22s linear infinite;
  border-style: dashed;
}
.future__coin::after {
  inset: -48px;
  animation: spin 35s linear infinite reverse;
  opacity: 0.5;
}

/* Halo ambiental detras */
.future__coin-halo {
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  background: var(--rt-gradient-brand);
  filter: blur(80px);
  opacity: 0.35;
  z-index: 0;
  animation: haloPulse 5s ease-in-out infinite;
}

@keyframes coinFloat {
  0%, 100% { transform: translateY(0) rotate(-4deg); }
  50% { transform: translateY(-14px) rotate(4deg); }
}

@keyframes haloPulse {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.08); }
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbit pills — mas lejos del centro para no pisar el iso */
.future__orbit {
  position: absolute;
  padding: 0.45rem 0.9rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-pill);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rt-text);
  box-shadow: var(--rt-shadow-md);
  white-space: nowrap;
  animation: orbitFloat 4s ease-in-out infinite;
  z-index: 3;
}

.future__orbit--1 { top: 0; left: 0; animation-delay: 0s; }
.future__orbit--2 { top: 4%; right: 0; animation-delay: 0.6s; }
.future__orbit--3 { bottom: 8%; left: 0; animation-delay: 1.2s; }
.future__orbit--4 { bottom: 0; right: 4%; animation-delay: 1.8s; }

.future__orbit-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.4rem;
  background: var(--rt-cyan);
  box-shadow: 0 0 10px var(--rt-cyan);
}
.future__orbit--2 .future__orbit-dot { background: var(--rt-pink); box-shadow: 0 0 10px var(--rt-pink); }
.future__orbit--3 .future__orbit-dot { background: var(--rt-blue); box-shadow: 0 0 10px var(--rt-blue); }
.future__orbit--4 .future__orbit-dot { background: #FACC15; box-shadow: 0 0 10px #FACC15; }

@keyframes orbitFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.future__token-content .eyebrow {
  margin-bottom: 1.25rem;
}

.future__token-title {
  font-size: var(--text-4xl);
  margin-bottom: 1.25rem;
}

.future__token-text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.future__token-perks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.future__perk {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.85rem 1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
}
.future__perk:hover {
  border-color: var(--rt-cyan);
  transform: translateX(4px);
}

.future__perk-icon {
  font-size: 1.35rem;
}

.future__perk strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  margin-bottom: 2px;
}
.future__perk span {
  font-size: 0.78rem;
  color: var(--rt-muted);
}

@media (min-width: 1024px) {
  .future__token {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }
  .future__token-perks {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Roadmap */
.future__roadmap-header {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 3rem;
}

.future__roadmap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.future__phase {
  position: relative;
  padding: 1.75rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-lg);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  overflow: hidden;
  isolation: isolate;
}

.future__phase::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--rt-gradient-brand);
  opacity: 0.4;
}

.future__phase:hover {
  transform: translateY(-4px);
  border-color: var(--rt-border-strong);
  box-shadow: var(--rt-shadow-lg);
}

.future__phase--live::before {
  opacity: 1;
  box-shadow: 0 0 20px var(--rt-cyan);
}

.future__phase-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.future__phase-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-pill);
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.future__phase--live .future__phase-label {
  background: rgba(15, 219, 242, 0.1);
  color: var(--rt-cyan);
  border-color: rgba(15, 219, 242, 0.3);
}
.future__phase--live .future__phase-label::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--rt-cyan);
  box-shadow: 0 0 10px var(--rt-cyan);
  animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.future__phase-quarter {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--rt-muted);
  letter-spacing: 0.05em;
}

.future__phase-title {
  font-size: var(--text-xl);
  margin-bottom: 0.65rem;
}

.future__phase-desc {
  font-size: var(--text-sm);
  color: var(--rt-text-secondary);
  line-height: 1.55;
  margin: 0 0 1rem;
}

.future__phase-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.future__phase-tag {
  display: inline-block;
  padding: 0.25rem 0.6rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rt-border);
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--rt-muted);
}

@media (min-width: 768px) {
  .future__roadmap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .future__roadmap {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  position: relative;
}

.faq__list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq__item {
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq__item[open] {
  border-color: var(--rt-border-strong);
}

.faq__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 1.25rem;
  text-align: left;
  font-family: inherit;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--rt-text);
  cursor: pointer;
  transition: color var(--transition-fast);
  list-style: none;
  user-select: none;
}

.faq__trigger::-webkit-details-marker {
  display: none;
}

.faq__trigger:hover {
  color: var(--rt-cyan);
}

.faq__icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--rt-border-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), background var(--transition);
}

.faq__icon svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__item[open] .faq__icon {
  background: var(--rt-gradient-brand);
  color: #fff;
  transform: rotate(45deg);
  border-color: transparent;
}

.faq__panel {
  overflow: hidden;
  animation: faqOpen 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes faqOpen {
  0% { opacity: 0; transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}

.faq__answer {
  padding: 0 1.25rem 1.25rem;
  font-size: var(--text-sm);
  line-height: 1.6;
  color: var(--rt-text-secondary);
  margin: 0;
}

/* ============================================
   FINAL CTA
   ============================================ */
.finalcta {
  position: relative;
  padding: clamp(4rem, 3rem + 3vw, 7rem) 0 clamp(5rem, 4rem + 4vw, 8rem);
  text-align: center;
  overflow: hidden;
}

.finalcta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 50%, rgba(13, 71, 161, 0.25), transparent 70%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(242, 29, 168, 0.2), transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 70%, rgba(15, 219, 242, 0.2), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.finalcta__panel {
  position: relative;
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(2.5rem, 2rem + 2vw, 4rem) clamp(1.5rem, 1rem + 2vw, 3rem);
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(30px) saturate(1.4);
  backdrop-filter: blur(30px) saturate(1.4);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered), var(--rt-shadow-glow-cyan);
}

.finalcta__title {
  font-size: var(--text-4xl);
  margin-bottom: 1rem;
}

.finalcta__text {
  font-size: var(--text-lg);
  color: var(--rt-text-secondary);
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.finalcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.finalcta__form {
  max-width: 520px;
  margin: 0 auto;
}

.finalcta__form-fields {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 0.5rem;
  background: rgba(11, 18, 32, 0.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
}

.finalcta__form input {
  width: 100%;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid transparent;
  border-radius: var(--rt-radius-md);
  color: var(--rt-text);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.finalcta__form input::placeholder {
  color: var(--rt-muted);
}

.finalcta__form input:focus {
  outline: none;
  border-color: var(--rt-cyan);
  background: rgba(15, 219, 242, 0.05);
}

.finalcta__form button {
  width: 100%;
}

.finalcta__form-hint {
  margin: 0.75rem 0 0;
  font-size: var(--text-xs);
  color: var(--rt-muted);
}

.finalcta__form-message {
  margin: 0.5rem 0 0;
  font-size: var(--text-sm);
  font-weight: 600;
  min-height: 1.2em;
}
.finalcta__form-message.is-ok { color: var(--rt-cyan); }
.finalcta__form-message.is-err { color: var(--rt-pink); }

@media (min-width: 640px) {
  .finalcta__form-fields {
    grid-template-columns: 1fr 1fr auto;
  }
  .finalcta__form button {
    width: auto;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  padding: clamp(3rem, 2rem + 2vw, 5rem) 0 2rem;
  border-top: 1px solid var(--rt-border);
  background: rgba(11, 18, 32, 0.4);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer__brand {
  max-width: 380px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--rt-text);
  margin-bottom: 1.25rem;
}
.footer__logo-iso {
  width: 44px;
  height: 44px;
  filter: drop-shadow(0 0 18px rgba(15, 219, 242, 0.35));
}
.footer__logo-wordmark {
  height: 26px;
  width: auto;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.2));
}

.footer__tagline {
  font-size: var(--text-sm);
  color: var(--rt-muted);
  line-height: 1.6;
  margin: 0 0 1.25rem;
}

.footer__socials {
  display: flex;
  gap: 0.6rem;
}

.footer__social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border: 1px solid var(--rt-border-strong);
  color: var(--rt-text);
  transition: background var(--transition-fast), transform var(--transition-fast), border-color var(--transition-fast);
}

.footer__social:hover,
.footer__social:focus-visible {
  background: var(--rt-gradient-brand);
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: var(--rt-shadow-glow-cyan);
}

.footer__social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.footer__col-title {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rt-muted);
  margin: 0 0 1rem;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer__link {
  font-size: var(--text-sm);
  color: var(--rt-text-secondary);
  transition: color var(--transition-fast);
}

.footer__link:hover,
.footer__link:focus-visible {
  color: var(--rt-cyan);
}

.footer__bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--rt-border);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  font-size: var(--text-xs);
  color: var(--rt-muted);
}

.footer__bottom a {
  color: var(--rt-text-secondary);
}

.footer__bottom-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: center;
}
.footer__bottom-links p {
  margin: 0;
}
.footer__bottom-links a {
  font-size: var(--text-xs);
  color: var(--rt-muted);
  transition: color var(--transition-fast);
}
.footer__bottom-links a:hover {
  color: var(--rt-cyan);
}

@media (min-width: 768px) {
  .footer__bottom-links {
    flex-direction: row;
    gap: 1.25rem;
    align-items: center;
  }
  .footer__bottom-links::before {
    content: '·';
    color: var(--rt-muted);
    order: 1;
  }
  .footer__bottom-links p { order: 0; }
  .footer__bottom-links a { order: 2; }
}

@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1.3fr 1fr;
  }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

/* ============================================
   CONTACT (Commercial / Partners)
   ============================================ */
.contact {
  position: relative;
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 1.5rem + 2vw, 3.5rem);
  align-items: start;
  max-width: 1040px;
  margin: 0 auto;
}

.contact__intro .eyebrow {
  margin-bottom: 1.25rem;
}

.contact__title {
  font-size: var(--text-3xl);
  margin-bottom: 1rem;
}

.contact__text {
  font-size: var(--text-base);
  color: var(--rt-text-secondary);
  line-height: 1.6;
  margin-bottom: 2rem;
}

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

.contact__channel {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.9rem 1.1rem;
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  transition: border-color var(--transition-fast), transform var(--transition-fast);
  color: inherit;
  text-decoration: none;
}
.contact__channel:hover {
  border-color: var(--rt-cyan);
  transform: translateX(4px);
}

.contact__channel-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--rt-radius-md);
  background: var(--rt-gradient-brand);
  color: #fff;
  flex-shrink: 0;
}
.contact__channel-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact__channel strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--rt-text);
  margin-bottom: 2px;
}
.contact__channel span {
  font-size: 0.78rem;
  color: var(--rt-muted);
}

/* Form */
.contact__form {
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.25rem);
  background: var(--rt-gradient-glass);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid var(--rt-border-strong);
  border-radius: var(--rt-radius-lg);
  box-shadow: var(--rt-shadow-layered);
}

.contact__form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact__field label {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--rt-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__field input,
.contact__field textarea,
.contact__field select {
  width: 100%;
  padding: 0.8rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--rt-border);
  border-radius: var(--rt-radius-md);
  color: var(--rt-text);
  font-family: inherit;
  font-size: var(--text-base);
  transition: border-color var(--transition-fast), background var(--transition-fast);
  resize: vertical;
}

.contact__field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2394A3B8' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.contact__field input::placeholder,
.contact__field textarea::placeholder {
  color: var(--rt-muted);
}

.contact__field input:focus,
.contact__field textarea:focus,
.contact__field select:focus {
  outline: none;
  border-color: var(--rt-cyan);
  background: rgba(15, 219, 242, 0.05);
}

.contact__field--full {
  grid-column: 1 / -1;
}

.contact__form-footer {
  margin-top: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact__form-footer .btn {
  width: 100%;
}

.contact__form-legal {
  font-size: var(--text-xs);
  color: var(--rt-muted);
  line-height: 1.5;
}
.contact__form-legal a {
  color: var(--rt-text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact__form-legal a:hover {
  color: var(--rt-cyan);
}

.contact__form-message {
  font-size: var(--text-sm);
  font-weight: 600;
  min-height: 1.2em;
  text-align: center;
}
.contact__form-message.is-ok { color: var(--rt-cyan); }
.contact__form-message.is-err { color: var(--rt-pink); }

@media (min-width: 640px) {
  .contact__form-grid {
    grid-template-columns: 1fr 1fr;
  }
  .contact__form-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .contact__form-footer .btn {
    width: auto;
  }
  .contact__form-legal {
    flex: 1;
  }
}

@media (min-width: 1024px) {
  .contact__inner {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }
}

/* ============================================
   MOBILE POLISH (< 640px fixes)
   ============================================ */
@media (max-width: 639px) {
  /* Future/Token: orbit pills mas chicas y centradas en mobile */
  .future__token-coin {
    padding: 2.5rem 0.5rem;
    max-width: 100%;
  }
  .future__orbit {
    font-size: 0.68rem;
    padding: 0.38rem 0.75rem;
  }
  .future__orbit--1 { top: 4%; left: 2%; }
  .future__orbit--2 { top: 8%; right: 2%; }
  .future__orbit--3 { bottom: 10%; left: 0; }
  .future__orbit--4 { bottom: 4%; right: 2%; }
  .future__coin {
    width: 55%;
  }

  /* Booking tabs: mas apretados y sin wrap raro */
  .booking__tabs {
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 0.35rem;
    max-width: 100%;
    width: 100%;
    justify-content: center;
  }
  .booking__tab {
    padding: 0.55rem 0.85rem;
    font-size: 0.78rem;
    flex: 1 1 calc(50% - 0.3rem);
    min-width: 0;
    justify-content: center;
  }
  .booking__tab svg {
    width: 14px;
    height: 14px;
  }
  .booking__panel {
    padding: 1.25rem;
  }

  /* Feed: achicar stack para que no se vea tan apretado */
  .feed__stack {
    max-width: 320px;
    transform: rotate(-2deg);
  }
  .feed__card {
    padding: 0.85rem;
  }

  /* Hero form: nombre y email apilados, boton abajo (ya es asi en base, pero asegurar) */
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero__actions .btn {
    justify-content: center;
    width: 100%;
  }

  /* Final CTA actions */
  .finalcta__actions .btn {
    width: 100%;
  }

  /* Header: ajuste de espaciado */
  .header__inner {
    gap: 0.75rem;
  }
  .header__cta {
    padding: 0.55rem 1rem;
    font-size: 0.78rem;
  }
  .header__cta svg {
    display: none;
  }

  /* Journey travelogues: 2 cols en mobile chico (antes eran 3 apretadas) */
  .journeys__travelogues {
    grid-template-columns: repeat(2, 1fr);
  }
  .journeys__trav--3 {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  /* Roadmap stats: 2x2 en vez de 4 en fila */
  .journeys__stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  /* Stats del Hero: 1 columna (ya lo estaba pero refuerzo) */
  .hero__stats {
    gap: 0.6rem;
  }
  .hero__stats li {
    padding: 0.85rem 1rem;
  }
}

/* ============================================
   PLANE / FLY THE WORLD
   ============================================ */
.planeworld {
  position: relative;
  padding: clamp(4rem, 3rem + 3vw, 7rem) 0 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, transparent 0%, rgba(7, 24, 59, 0.35) 40%, rgba(11, 18, 32, 0.85) 100%);
}

.planeworld::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40%;
  width: min(1500px, 130vw);
  aspect-ratio: 3 / 1;
  transform: translateX(-50%);
  background: radial-gradient(ellipse 50% 70% at 50% 50%, rgba(15, 219, 242, 0.25) 0%, rgba(13, 71, 161, 0.18) 40%, transparent 75%);
  pointer-events: none;
  z-index: 0;
  filter: blur(20px);
}

.planeworld__bg {
  position: absolute;
  inset: auto 0 0 0;
  height: 78%;
  background-image: url("../img/bakcground%20bottom.png");
  background-size: cover;
  background-position: center bottom;
  background-repeat: no-repeat;
  opacity: 0.28;
  filter: blur(1px) saturate(0.4) brightness(0.85) hue-rotate(-10deg);
  mix-blend-mode: screen;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 82%, transparent 100%);
          mask-image: linear-gradient(180deg, transparent 0%, #000 28%, #000 82%, transparent 100%);
  z-index: -2;
  pointer-events: none;
}

.planeworld__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.32;
  z-index: -1;
  pointer-events: none;
}
.planeworld__glow--blue {
  width: 620px;
  height: 620px;
  background: var(--rt-blue);
  left: -220px;
  top: 10%;
  animation: float 22s ease-in-out infinite;
}
.planeworld__glow--cyan {
  width: 520px;
  height: 520px;
  background: var(--rt-cyan);
  right: -180px;
  bottom: -120px;
  animation: float 26s ease-in-out infinite reverse;
}

.planeworld__inner {
  position: relative;
  text-align: center;
  z-index: 1;
}

.planeworld__eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rt-cyan);
  opacity: 0.9;
}

.planeworld__title {
  font-size: clamp(2.25rem, 1.6rem + 2.6vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0;
}

.planeworld__text {
  color: var(--rt-muted);
  margin: 1rem auto 0;
  max-width: 40ch;
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.125rem);
}

.planeworld__stage {
  position: relative;
  margin-top: clamp(1.5rem, 1rem + 2vw, 3rem);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: clamp(220px, 28vw, 420px);
}

.planeworld__world {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(1700px, 140vw);
  height: auto;
  transform: translate(-50%, 62%);
  opacity: 0.48;
  filter: saturate(0.92) brightness(0.85) blur(0.4px);
  -webkit-mask-image: radial-gradient(ellipse 70% 110% at 50% 100%, #000 35%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.35) 75%, transparent 95%);
          mask-image: radial-gradient(ellipse 70% 110% at 50% 100%, #000 35%, rgba(0,0,0,0.85) 55%, rgba(0,0,0,0.35) 75%, transparent 95%);
  z-index: 0;
  pointer-events: none;
  animation: worldDrift 24s ease-in-out infinite;
  will-change: transform;
}

@keyframes worldDrift {
  0%, 100% { transform: translate(-50%, 62%); }
  50%      { transform: translate(-50%, calc(62% - 5px)); }
}

.planeworld__trail {
  position: absolute;
  top: 58%;
  height: 2px;
  width: 46%;
  pointer-events: none;
  opacity: 0.5;
  filter: blur(0.5px);
}
.planeworld__trail--l {
  left: 0;
  background: linear-gradient(90deg, transparent 0%, var(--rt-cyan) 100%);
  box-shadow: 0 0 24px rgba(15, 219, 242, 0.55);
}
.planeworld__trail--r {
  right: 0;
  background: linear-gradient(90deg, var(--rt-pink) 0%, transparent 100%);
  box-shadow: 0 0 24px rgba(242, 29, 168, 0.45);
}

.planeworld__plane {
  position: relative;
  width: min(92%, 880px);
  height: auto;
  z-index: 2;
  filter:
    drop-shadow(0 22px 40px rgba(15, 219, 242, 0.28))
    drop-shadow(0 0 60px rgba(13, 71, 161, 0.45))
    drop-shadow(0 10px 20px rgba(0, 0, 0, 0.5));
  animation: planeFloat 7s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@keyframes planeFloat {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -14px, 0) rotate(0.6deg); }
}

.planeworld__horizon {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 219, 242, 0.45) 30%, rgba(242, 29, 168, 0.45) 70%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 640px) {
  .planeworld__trail { width: 38%; opacity: 0.4; }
  .planeworld__plane {
    width: 110%;
    max-width: none;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
  html {
    scroll-behavior: auto;
  }
}


/* ============================================
   MOBILE FIXES (patched)
   ============================================ */
@media (max-width: 1023px) {
  .header__nav {
    position: fixed;
    inset: 0;
    padding: 5.5rem var(--container-padding) 2rem;
    background: #0B1220;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .header__nav.open {
    transform: translateX(0);
  }

  .header,
  .header.scrolled {
    background: rgba(11, 18, 32, 0.98);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
}

@media (max-width: 768px) {
  .feed__inner {
    grid-template-columns: 1fr;
  }

  .feed__content {
    order: 2;
  }

  .feed__preview {
    order: 1;
    margin-bottom: 1.5rem;
  }

  .feed__stack {
    aspect-ratio: auto;
    max-width: 100%;
    transform: none;
    display: grid;
    gap: 1rem;
  }

  .feed__card {
    position: static;
    transform: none !important;
    left: auto;
    right: auto;
    top: auto;
    width: 100%;
  }

  .feed__card--1,
  .feed__card--2,
  .feed__card--3 {
    opacity: 1;
    box-shadow: var(--rt-shadow-layered);
  }

  .contact__inner {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact__form {
    order: 1;
  }

  .contact__intro {
    order: 2;
  }
}
