/* ============================================
   ÍCARO RB — Base & Layout
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  color: var(--color-white);
  background: var(--color-navy-solid);
  overflow-x: hidden;
  line-height: 1.5;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: var(--fw-semibold); margin: 0; }
p { margin: 0; }
ul { list-style: none; margin: 0; padding: 0; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-pad);
  position: relative;
}

.text-orange { color: var(--color-orange); }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--color-navy-solid);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease-soft), visibility .6s var(--ease-soft);
}
.preloader__bird { width: 64px; animation: pulse 1.1s ease-in-out infinite; }
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-orange);
  color: var(--color-navy-solid);
  font-weight: var(--fw-semibold);
  font-size: 15px;
  letter-spacing: .03em;
  padding: 16px 34px;
  border-radius: var(--radius-pill);
  border: none;
  white-space: nowrap;
  transition: transform var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast) var(--ease-soft), background var(--dur-fast);
}
@media (hover: hover) and (pointer: fine) {
  .btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-btn); background: var(--color-orange-dark); }
}
.btn:active { transform: translateY(-1px) scale(0.97); }
.btn--nav { padding: 13px 28px; font-size: 14px; }
.btn--lg { padding: 18px 40px; font-size: 15px; }

/* ============================================
   HEADER
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  padding: 22px 0;
  transition: background var(--dur-fast) var(--ease-soft), padding var(--dur-fast) var(--ease-soft), box-shadow var(--dur-fast);
}
.header.is-scrolled {
  background: rgba(5, 12, 33, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 14px 0;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; }
.logo__img { width: clamp(180px, 14vw, 240px); height: auto; }

.nav__list { display: flex; align-items: center; gap: 40px; }
.nav__link {
  font-size: 15px; font-weight: var(--fw-semibold); letter-spacing: .02em;
  color: var(--color-white); opacity: .85; position: relative; padding-bottom: 4px;
  transition: opacity var(--dur-fast);
}
.nav__link::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--color-orange); transition: width var(--dur-fast) var(--ease-soft);
}
.nav__link:hover, .nav__link.is-active { opacity: 1; }
.nav__link:hover::after, .nav__link.is-active::after { width: 100%; }

/* El CTA del menu solo existe en movil; en escritorio ya esta el del header. */
.nav__cta { display: none; }

.nav__toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.nav__toggle span { width: 26px; height: 2px; background: var(--color-white); border-radius: 2px; transition: transform .3s, opacity .3s; }

/* ============================================
   SKY WRAP — continuous background photo spanning
   About/Clientes + Quote. This is the SAME source photo as the
   hero video, pre-cropped to start exactly where the video's last
   frame ends (past the tower, already in open cloud/sky) so the
   building is never rendered twice at the seam.
   ============================================ */
.sky-wrap {
  position: relative;
  background-image: url('../img/sky-below-hero.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
  background-color: #14336B;
  /* La union con el hero se leia como una linea recta. Medido: la ultima
     franja del hero queda en rgb(48,45,69) por la izquierda — no por la foto,
     sino porque .hero__overlay (el velo que hace legible el titular) llega
     hasta el borde — mientras la foto de aqui arranca en rgb(156,127,174).
     Son dos FOTOS, asi que un degradado a color plano solo cambiaria la linea
     por una banda neblinosa (ya se probo en la ronda 4): va fundido cruzado.
     La otra mitad del arreglo esta en .hero__overlay, que se apaga antes de
     llegar abajo. */
  margin-top: -120px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 120px);
          mask-image: linear-gradient(180deg, transparent 0, #000 120px);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
}

/* ============================================
   HERO — self-contained; the video itself supplies the
   tower/clouds image, no shared background beneath it.
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  /* Fallback only — matches the video's own dusk sky tones (deep blue
     top fading to the pink/lavender cloud tone at the bottom) so that
     if the video hasn't started yet there is no color mismatch against
     it or against the sky continuing below the Hero. */
  background: linear-gradient(180deg, #142451 0%, #33478c 45%, #8b7fa8 80%, #9f82ae 100%);
}
.hero__media { position: absolute; inset: 0; z-index: 1; }
.hero__video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
/* Fade the last stretch of the video into the sky background that
   continues below the Hero — safe now that the sky asset no longer
   contains its own copy of the tower, so this can only blend matching
   sky/cloud color, never create a ghosted second building. */
.hero__media::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: 0; height: 14%;
  /* Ends on the same tone the sky background starts with just below,
     so the Hero/Nosotros boundary reads as one continuous photo. */
  background: linear-gradient(180deg, transparent 0%, rgba(159,130,174,.55) 60%, #9f82ae 100%);
  pointer-events: none;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(4,12,32,.72) 0%, rgba(4,12,32,.42) 45%, rgba(4,12,32,.08) 70%);
  /* El velo existe para que el titular se lea sobre el video; en el borde
     inferior ya no hay texto y ahi solo servia para oscurecer el hero contra
     la foto que sigue. Se apaga antes de llegar: es la causa real del escalon
     (rgb(48,45,69) contra rgb(156,127,174) por la izquierda). */
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 88%);
          mask-image: linear-gradient(180deg, #000 0%, #000 58%, transparent 88%);
}
.hero__clouds { position: absolute; inset: 0; z-index: 2; pointer-events: none; }
.cloud { position: absolute; opacity: .55; will-change: transform; }
.cloud--1 { width: 46vw; left: -6vw; bottom: -4vh; animation: float-cloud-1 26s ease-in-out infinite; }
.cloud--2 { width: 34vw; right: -4vw; bottom: 6vh; opacity: .4; animation: float-cloud-2 32s ease-in-out infinite; }

.hero__content {
  position: relative; z-index: 3;
  padding-top: var(--header-height);
  max-width: 780px;
  margin-left: 0;
  margin-right: auto;
  text-align: left;
}
.hero__title {
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
  font-weight: var(--fw-bold);
  letter-spacing: .01em;
  color: var(--color-white);
}
.hero__title em { font-style: normal; color: var(--color-orange); }
.reveal-line { display: block; overflow: hidden; }
.hero__subtitle {
  margin-top: 26px;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: var(--fw-regular);
  color: var(--color-white-70) ;
  color: rgba(255,255,255,.92);
  max-width: 560px;
}
.hero__content .btn { margin-top: 34px; }

.hero__scroll-cue { position: absolute; bottom: 34px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero__scroll-cue span {
  display: block; width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.5); border-radius: 14px; position: relative;
}
.hero__scroll-cue span::before {
  content: ""; position: absolute; top: 6px; left: 50%; width: 4px; height: 8px; margin-left: -2px;
  background: var(--color-orange); border-radius: 2px; animation: scroll-cue 1.8s ease-in-out infinite;
}

/* ============================================
   ABOUT / NUESTROS CLIENTES
   ============================================ */
.about {
  position: relative;
  /* 60px de aire + los 120px que .sky-wrap sube para el fundido cruzado con
     el hero: asi el globo conserva exactamente la separacion de antes y no
     entra en la franja del fundido. */
  padding: 180px 0 0;
  overflow: hidden;
}

/* Full-bleed visual stage: globe bleeds off the left edge of the
   viewport exactly like the reference — only a slice of the sphere
   is visible, with the country pills sitting on its surface. */
.about__visual {
  position: relative;
  width: 100%;
  min-height: 44vw;
  display: flex;
  align-items: center;
  z-index: 2;
}

.globe-wrap {
  position: absolute;
  left: -24.6vw;
  top: 50%;
  transform: translateY(-50%);
  width: 46.7vw;
  min-width: 340px;
  max-width: 760px;
  aspect-ratio: 1 / 1;
}
.globe-circle {
  position: absolute; inset: 0;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: inset 0 0 60px rgba(0,0,0,.25);
}
.globe-img {
  width: 100%; height: 100%;
  object-fit: cover;
  animation: globe-self-rotate 140s linear infinite;
}

/* Pills float OUTSIDE the sphere, in the open sky to its right —
   measured directly off the reference PDF (percentages relative to
   the globe's own bounding box, so they scale together with it). */
.country-pill {
  position: absolute;
  background: var(--color-pill-bg);
  border: 1px solid var(--color-pill-border);
  backdrop-filter: blur(6px);
  color: var(--color-white);
  font-size: 13px;
  font-weight: var(--fw-semibold);
  letter-spacing: .04em;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  z-index: 3;
  transform: translateX(-50%);
}
.country-pill--mx { left: 89.4%; top: 11.9%; }
.country-pill--hn { left: 100.9%; top: 41.2%; }
.country-pill--gt { left: 93.2%; top: 70.5%; }

.about__text {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  margin-left: 36.2vw;
  padding-right: var(--container-pad);
  max-width: none;
}
.about__text p {
  font-size: clamp(16px, 1.6vw, 19px);
  line-height: 1.7;
  color: rgba(255,255,255,.94);
  font-weight: var(--fw-regular);
  max-width: 900px;
}

/* Clients / marquee */
.clients { margin-top: 140px; position: relative; z-index: 2; }
.clients__title {
  text-align: center;
  font-size: clamp(30px, 4vw, 46px);
  font-weight: var(--fw-bold);
  padding: 0 var(--container-pad) 40px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.marquee {
  width: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255,255,255,.25);
  border-bottom: 1px solid rgba(255,255,255,.25);
  padding: 36px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee__track {
  display: flex;
  align-items: center;
  gap: 56px;
  width: max-content;
  animation: marquee-scroll 34s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__item {
  flex: 0 0 auto; height: 52px;
  display: flex; align-items: center; justify-content: center;
}
.marquee__item img { height: 100%; width: auto; object-fit: contain; }
/* Dos lockups apaisados: a la misma ALTURA que los demás quedan enormes de
   ancho (Afirme 268px y Inbursa 197px contra los 52-140px del resto) y rompen
   el ritmo de la fila. El diseño original ya los bajaba, pero los selectores
   apuntaban al nombre de archivo del sitio estático (`byK8Cx`, `WBWr7U`), que
   al portar el sitio pasó a ser `cliente-inbursa.png` y `cliente-afirme.png`:
   las dos reglas llevaban desde entonces sin aplicarse a nada. */
.marquee__item img[src*="cliente-inbursa"] { height: 58%; }
.marquee__item img[src*="cliente-afirme"] { height: 40%; }

/* ============================================
   QUOTE + VIDEO
   ============================================ */
.quote {
  padding: 120px 0;
  position: relative;
}
.quote__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.quote__line {
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: var(--fw-semibold);
  line-height: 1.3;
  color: var(--color-white);
}
.quote__accent { color: var(--color-orange); }
.quote__rule { display: block; width: 110px; height: 2px; background: var(--color-orange); margin: 32px 0; opacity: .6; }

.video-frame {
  position: relative;
  aspect-ratio: 16/11;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, #4B5A79, #7C8AA5);
  box-shadow: var(--shadow-card);
}
.video-frame__video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.video-frame__mute {
  position: absolute; right: 20px; bottom: 20px;
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(8, 20, 45, .55);
  border: 1px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--dur-fast) var(--ease-soft), transform var(--dur-fast) var(--ease-soft), background var(--dur-fast);
}
.video-frame.is-playing .video-frame__mute { opacity: 1; transform: none; }
.video-frame--fallback .video-frame__mute { display: none; }
.video-frame__mute:hover { background: var(--color-orange); color: var(--color-navy-solid); }

/* ============================================
   COVERAGES
   ============================================ */
.coverages {
  position: relative;
  background: linear-gradient(180deg, #0B2C5C 0%, #0A2244 100%);
  /* El borde inferior de .sky-wrap promedia rgb(5,48,94) y la textura que
     cubre esta seccion (coverages__bg, opacidad 1) empieza en rgb(4,28,65):
     un escalon claro->oscuro que se leia como una linea recta. Como son dos
     IMAGENES, no sirve fundir a un color plano; se hace fundido cruzado —
     esta seccion sube 120px sobre la anterior y entra con mascara.
     El padding-top compensa esos 120px para no perder el aire del titulo. */
  margin-top: -120px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0, #000 120px);
          mask-image: linear-gradient(180deg, transparent 0, #000 120px);
  padding-top: 220px;
  overflow: hidden;
}
.coverages__bg {
  position: absolute; inset: 0;
  background-image: url('../img/home/sky-texture.png');
  background-size: cover;
  background-position: center top;
  opacity: 1;
  z-index: 0;
}
/* Only fade the last stretch of the photo into the solid contact
   background, right before the steps title — the photo itself already
   goes vivid-sky -> dusk -> dark water, so no color tint is added over
   the aviación/property/etc. pins area (must stay true to the PDF's
   original photo colors there). */
.coverages::before {
  content: "";
  position: absolute; inset: 0;
  /* Aterriza en #04081A, el color exacto de .contact que viene debajo. Antes
     terminaba en #0A2244 y quedaba un escalón de tono en la unión. */
  background: linear-gradient(180deg, transparent 0%, transparent 78%, rgba(5,14,34,.85) 92%, #04081A 100%);
  z-index: 1;
}
.coverages__intro { position: relative; z-index: 2; text-align: center; padding-bottom: 60px; }
.coverages__intro h2 { font-size: clamp(28px, 3.6vw, 44px); font-weight: var(--fw-semibold); line-height: 1.25; }

.coverages__map { position: relative; z-index: 2; width: 100%; padding-bottom: 140px; min-height: 900px; }
.coverages__plane { position: absolute; left: 12%; top: 6%; width: 12%; z-index: 1; animation: plane-drift 12s ease-in-out infinite; }

.coverage-pin { position: absolute; left: var(--x); top: var(--y); display: flex; align-items: center; gap: 14px; }
.coverage-pin__plus {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--color-plus-bg-2);
  border: 1px solid rgba(255,255,255,.35);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: var(--fw-semibold); color: var(--color-white);
  backdrop-filter: blur(4px);
  transition: transform var(--dur-fast) var(--ease-soft), background var(--dur-fast);
  flex: 0 0 auto;
}
.coverage-pin__plus:hover { background: var(--color-orange); color: var(--color-navy-solid); transform: scale(1.12); }
.coverage-pin__label { font-size: 14px; font-weight: var(--fw-semibold); letter-spacing: .03em; white-space: nowrap; }

/* Steps — a wide gap separates this from the map/pins above (per the
   PDF, the title sits well below the last pin, over the photo's own
   naturally dark water) */
.steps { position: relative; z-index: 2; text-align: left; padding-top: 34vw; padding-bottom: 110px; }
.steps__title { text-align: center; font-size: clamp(24px, 3vw, 34px); font-weight: var(--fw-bold); margin-bottom: 50px; }
.steps__list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-bottom: 56px; }
.step { display: flex; align-items: flex-start; gap: 16px; }
.step__number { font-size: 46px; font-weight: var(--fw-bold); color: var(--color-orange); line-height: 1; }
.step p { font-size: 17px; font-weight: var(--fw-semibold); line-height: 1.4; }
.steps__cta { display: flex; width: max-content; margin: 0 auto; }

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--color-navy-solid-2);
  padding: 210px 0 90px;
  text-align: center;
  position: relative;
}
.contact__title { font-size: clamp(26px, 3.4vw, 40px); font-weight: var(--fw-semibold); line-height: 1.3; margin-bottom: 60px; }
.contact__title em { font-style: normal; color: var(--color-orange); }

.contact__form { text-align: left; max-width: 980px; margin: 0 auto; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-bottom: 26px; }
.form-field label {
  display: block; font-size: 13px; font-weight: var(--fw-semibold); letter-spacing: .04em;
  margin-bottom: 10px; color: var(--color-white);
}
.form-field input, .form-field textarea {
  width: 100%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  color: var(--color-white);
  font-family: inherit;
  font-size: 15px;
  transition: border-color var(--dur-fast), background var(--dur-fast);
}
.form-field input:focus, .form-field textarea:focus {
  outline: none; border-color: var(--color-orange); background: rgba(255,255,255,.12);
}
.form-field textarea { resize: vertical; min-height: 140px; }
.form-field--full { margin-bottom: 34px; }

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  max-width: 720px;
  margin: 0 auto 34px;
}
.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-orange);
  cursor: pointer;
}
.form-consent label {
  font-size: 13.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .75);
  cursor: pointer;
}
.form-consent label a {
  color: var(--color-orange);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.form-consent label a:hover { color: var(--color-white); }

.contact__submit { display: block; margin: 0 auto; }
.contact__submit:disabled { opacity: .45; cursor: not-allowed; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--color-navy-solid-2); padding: 0 0 50px; }
.footer__inner {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px;
  padding-top: 40px; border-top: 1px solid rgba(251,179,74,.35);
}
.footer__nav { display: flex; gap: 40px; flex-wrap: wrap; }

/* El menú del pie no se parte por dentro: o entra completo en la misma línea
   que el logo, o baja entero debajo. Partirlo era lo que dejaba el logo
   "desfasado" — centrado contra un bloque de dos renglones. */
@media (min-width: 861px) {
  .footer__nav { flex-wrap: nowrap; gap: clamp(20px, 2.4vw, 40px); }
  .footer__inner .logo--footer .logo__img { width: clamp(150px, 12vw, 202px); }
}
.footer__nav a { font-size: 14px; font-weight: var(--fw-semibold); color: var(--color-white-70); transition: color var(--dur-fast); }
.footer__nav a:hover { color: var(--color-orange); }

/* Enlace de salto (accesibilidad): invisible hasta recibir foco de teclado. */
.skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--color-orange);
  color: #050B1F;
  padding: 10px 18px;
  border-radius: 0 0 12px 0;
  font-weight: 700;
  text-decoration: none;
}
.skip:focus {
  left: 0;
}

/* ============================================
   GRACIAS — destino del formulario (/gracias)
   Existe para poder MEDIR el envío: una URL propia es lo que una herramienta
   de analítica cuenta como conversión. No lleva foto porque no hay ninguna
   aprobada para ella; se resuelve con el degradado de marca.
   ============================================ */
.thanks {
  min-height: calc(100vh - var(--header-height) - 170px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-height) + 80px) 0 100px;
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(20, 64, 127, .55) 0%, rgba(5, 11, 31, 0) 70%),
    linear-gradient(180deg, #071129 0%, var(--color-navy-solid) 100%);
  text-align: center;
}
.thanks__inner { max-width: 760px; }
.thanks__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: rgba(251, 179, 74, .14);
  border: 1px solid rgba(251, 179, 74, .45);
  margin-bottom: 34px;
}
.thanks__mark svg { width: 46px; height: 46px; fill: var(--color-orange); }
.thanks__title {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: var(--fw-bold);
  line-height: 1.12;
  margin-bottom: 22px;
}
.thanks__title em { font-style: normal; color: var(--color-orange); }
.thanks__text {
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.7;
  color: rgba(255, 255, 255, .92);
  max-width: 620px;
  margin: 0 auto 16px;
}
.thanks__note {
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-white-70);
  margin-bottom: 42px;
}
.thanks__actions { display: flex; gap: 18px; justify-content: center; flex-wrap: wrap; }

/* Botón secundario: mismo tamaño, sin relleno. Solo se usa aquí, para que las
   dos salidas no compitan entre sí. */
.btn--ghost {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, .45);
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background: rgba(255, 255, 255, .08);
    border-color: var(--color-white);
    box-shadow: none;
  }
}

@media (max-width: 640px) {
  .thanks { padding-top: calc(var(--header-height) + 50px); padding-bottom: 70px; }
  .thanks__mark { width: 70px; height: 70px; margin-bottom: 26px; }
  .thanks__mark svg { width: 38px; height: 38px; }
  .thanks__actions { flex-direction: column; align-items: center; }
  .thanks__actions .btn { width: 100%; max-width: 320px; }
}
