:root {
  --rf-primary: #00c4cc;
  --rf-black: #000000;
  --rf-white: #ffffff;
  --rf-soft: #f4f4f4;
  --rf-text: #111111;
  --rf-muted: #5f6b76;
  --rf-line: #e7eaee;
  --rf-sky: #7ecbff;
  --rf-shadow-blue: #2c5fb8;
  --rf-dark-navy: #07111d;

  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;

  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.06);
  --shadow-card: 0 18px 60px rgba(0, 0, 0, 0.08);
  --shadow-primary: 0 16px 45px rgba(0, 196, 204, 0.25);

  --container: 1180px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--rf-text);
  background: var(--rf-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

button,
input {
  font: inherit;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.1rem;
}

.brand-rf {
  color: var(--rf-primary);
}

.brand-finder {
  color: var(--rf-text);
}

.menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.menu a {
  color: var(--rf-text);
  font-weight: 600;
  transition: 0.25s ease;
}

.menu a:hover {
  color: var(--rf-primary);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.6rem;
  cursor: pointer;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 700;
  transition: 0.25s ease;
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--rf-primary);
  color: var(--rf-white);
  box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(0.98);
}

.btn-secondary {
  background: var(--rf-white);
  color: var(--rf-text);
  border-color: var(--rf-line);
}

.btn-secondary:hover {
  border-color: var(--rf-primary);
  color: var(--rf-primary);
}

.btn-dark {
  background: var(--rf-black);
  color: var(--rf-white);
}

.btn-dark:hover {
  transform: translateY(-2px);
}

.btn-nav {
  padding: 12px 20px;
  background: var(--rf-text);
  color: var(--rf-white) !important;
}

.btn-nav:hover {
  background: var(--rf-primary);
  color: var(--rf-white) !important;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 88px;
  background:
    radial-gradient(circle at top left, rgba(0, 196, 204, 0.10), transparent 30%),
    radial-gradient(circle at bottom right, rgba(126, 203, 255, 0.15), transparent 28%),
    #ffffff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--rf-primary);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(2.6rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 720px;
}

.hero-subtitle {
  margin-top: 24px;
  font-size: 1.15rem;
  color: var(--rf-muted);
  max-width: 620px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.proof-badge {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(0, 196, 204, 0.08);
  color: var(--rf-text);
  font-weight: 700;
  border: 1px solid rgba(0, 196, 204, 0.18);
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  border-radius: 38px;
  box-shadow: var(--shadow-card);
}

.phone-back {
  position: absolute;
  width: 300px;
  height: 560px;
  background: linear-gradient(180deg, #dffcff 0%, #9fe9ef 100%);
  transform: rotate(-10deg) translate(-90px, 10px);
  opacity: 0.75;
}

.phone-front {
  position: relative;
  z-index: 2;
  width: 320px;
  min-height: 590px;
  background: var(--rf-white);
  border: 1px solid #edf1f5;
  padding: 22px;
}

.phone-header {
  margin-bottom: 18px;
}

.phone-dots {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
}

.phone-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d4dae0;
}

.phone-title {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.match-card,
.adn-mini-card {
  border-radius: 24px;
  background: #fff;
  border: 1px solid var(--rf-line);
  box-shadow: var(--shadow-soft);
}

.match-card {
  padding: 18px;
}

.match-top {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 16px;
}

.match-top h3 {
  font-size: 1rem;
  line-height: 1.1;
}

.match-top p {
  color: var(--rf-muted);
  font-size: 0.92rem;
  margin-top: 4px;
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--rf-text);
}

.avatar-1 {
  background: linear-gradient(135deg, #00c4cc, #7ecbff);
}

.match-score {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 196, 204, 0.12);
  color: #0a5e61;
  font-weight: 800;
  margin-bottom: 14px;
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--rf-soft);
  font-size: 0.84rem;
  font-weight: 700;
}

.adn-mini-card {
  margin-top: 16px;
  padding: 18px;
}

.adn-mini-card h4 {
  margin-bottom: 14px;
  font-size: 1rem;
}

.bar-item {
  display: grid;
  grid-template-columns: 82px 1fr;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: #edf2f6;
  overflow: hidden;
}

.bar div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rf-primary), var(--rf-sky));
}

.floating-card {
  position: absolute;
  z-index: 3;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-soft);
  border-radius: 20px;
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  max-width: 220px;
}

.floating-card strong {
  font-size: 0.96rem;
  margin-bottom: 4px;
}

.floating-card span {
  font-size: 0.86rem;
  color: var(--rf-muted);
}

.floating-card-top {
  top: 52px;
  right: -10px;
}

.floating-card-bottom {
  bottom: 48px;
  left: -12px;
}

/* SECCIONES */
.section {
  padding: 100px 0;
}

.section-soft {
  background: var(--rf-soft);
}

.section-dark {
  background: linear-gradient(180deg, #07111d 0%, #0d1b2a 100%);
  color: var(--rf-white);
}

.section-adn {
  background:
    radial-gradient(circle at top right, rgba(0, 196, 204, 0.12), transparent 25%),
    radial-gradient(circle at bottom left, rgba(126, 203, 255, 0.14), transparent 22%),
    #ffffff;
}

.section-cta {
  background: linear-gradient(135deg, #00c4cc 0%, #7ecbff 100%);
}

.section-heading {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 56px;
}

.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.section-heading p {
  font-size: 1.08rem;
  color: var(--rf-muted);
}

.heading-light p,
.heading-light h2 {
  color: var(--rf-white);
}

.heading-light .section-kicker {
  color: var(--rf-primary);
}

.kicker-dark {
  color: rgba(0, 0, 0, 0.65);
}

/* PROBLEMA */
.problem-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.problem-card {
  background: var(--rf-white);
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-soft);
}

.problem-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.08);
  color: var(--rf-text);
  font-weight: 800;
  margin-bottom: 18px;
}

.problem-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.problem-card p {
  color: var(--rf-muted);
}

/* SOLUCION */
.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  position: relative;
  background: var(--rf-white);
  border: 1px solid var(--rf-line);
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.solution-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--rf-primary), var(--rf-sky));
}

.solution-number {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--rf-primary);
  margin-bottom: 14px;
}

.solution-card h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.solution-card p {
  color: var(--rf-muted);
}

/* STEPS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.step-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 26px;
  padding: 28px;
  backdrop-filter: blur(8px);
}

.step-badge {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: var(--rf-primary);
  color: var(--rf-white);
  font-weight: 800;
  margin-bottom: 18px;
}

.step-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.step-card p {
  color: rgba(255, 255, 255, 0.75);
}

/* ADN */
.adn-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 40px;
  align-items: center;
}

.adn-text h2 {
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.adn-text p {
  color: var(--rf-muted);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.adn-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  list-style: none;
}

.adn-list li {
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(0, 196, 204, 0.08);
  color: var(--rf-text);
  font-weight: 700;
  border: 1px solid rgba(0, 196, 204, 0.12);
}

.adn-panel {
  background: var(--rf-white);
  border: 1px solid var(--rf-line);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow-card);
}

.adn-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.adn-row:last-child {
  margin-bottom: 0;
}

.adn-row span {
  font-weight: 700;
}

.adn-bar {
  height: 14px;
  border-radius: 999px;
  background: #edf2f6;
  overflow: hidden;
}

.adn-bar div {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--rf-primary), var(--rf-sky));
}

/* AUDIENCE */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.audience-card {
  background: var(--rf-white);
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  padding: 28px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.audience-emoji {
  font-size: 2rem;
  margin-bottom: 16px;
}

.audience-card h3 {
  margin-bottom: 10px;
}

.audience-card p {
  color: var(--rf-muted);
}

/* QUOTES */
.quotes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.quote-card {
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid var(--rf-line);
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: var(--shadow-soft);
}

.quote-card p {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* CTA */
.cta-box {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 28px;
  align-items: center;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 38px;
  border-radius: 34px;
  box-shadow: 0 20px 60px rgba(44, 95, 184, 0.16);
}

.cta-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

.cta-content p {
  font-size: 1.08rem;
  color: rgba(0, 0, 0, 0.78);
  max-width: 620px;
}

.waitlist-form {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}

.form-group {
  margin-bottom: 16px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.form-group input {
  width: 100%;
  border: 1px solid #d8e0e5;
  border-radius: 16px;
  padding: 14px 16px;
  background: #fff;
  outline: none;
  transition: 0.2s ease;
}

.form-group input:focus {
  border-color: var(--rf-primary);
  box-shadow: 0 0 0 4px rgba(0, 196, 204, 0.12);
}

.waitlist-form .btn {
  width: 100%;
  margin-top: 8px;
}

/* FOOTER */
.site-footer {
  background: var(--rf-black);
  color: var(--rf-white);
  padding: 36px 0;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand .brand-rf {
  color: var(--rf-primary);
}

.footer-brand .brand-finder {
  color: var(--rf-white);
}

.footer-text {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
  max-width: 360px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

.footer-links a:hover {
  color: var(--rf-primary);
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-grid,
  .adn-grid,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding-top: 20px;
  }

  .floating-card-top {
    right: 20px;
  }

  .floating-card-bottom {
    left: 20px;
  }

  .problem-grid,
  .audience-grid,
  .quotes-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 860px) {
  .nav {
    position: relative;
    min-height: auto;
    padding: 14px 0;
    flex-wrap: nowrap;
  }

  .menu {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(100% + 8px);
    display: flex;
    width: auto;
    order: unset;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 14px;
    margin-top: 0;
    border: 1px solid var(--rf-line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    max-height: 0;
    opacity: 0;
    transform: translateY(-6px);
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease, opacity 0.25s ease, transform 0.25s ease;
  }

  .menu.is-open {
    max-height: 420px;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .menu a {
    padding: 10px 12px;
    border-radius: 12px;
  }

  .menu .btn-nav {
    width: 100%;
    margin-top: 4px;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--rf-line);
    background: var(--rf-white);
    color: var(--rf-text);
  }

  .hero {
    padding: 48px 0 72px;
  }

  .section {
    padding: 78px 0;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .phone-back {
    display: none;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .nav {
    padding: 10px 0;
  }

  .brand {
    max-width: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .hero-subtitle,
  .section-heading p,
  .cta-content p {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-box {
    padding: 22px;
    gap: 18px;
    border-radius: 24px;
  }

  .waitlist-form {
    padding: 20px;
    border-radius: 20px;
  }

  .form-group {
    margin-bottom: 14px;
  }

  .form-group label {
    margin-bottom: 6px;
    font-size: 0.92rem;
  }

  .form-group input {
    padding: 12px 14px;
    border-radius: 14px;
  }

  .waitlist-form .btn {
    padding: 13px 16px;
  }

  .problem-grid,
  .audience-grid,
  .quotes-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .phone-front {
    width: 100%;
    max-width: 330px;
  }

  .floating-card {
    position: static;
    margin-top: 14px;
    max-width: 100%;
  }

  .hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .adn-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  .cta-box {
    padding: 18px;
  }

  .waitlist-form {
    padding: 16px;
  }
}
/* =========================
   COOKIE BANNER
========================= */

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner__content {
  width: min(100%, 1120px);
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
  border-radius: 24px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.cookie-banner__text {
  flex: 1;
}

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--rf-text);
}

.cookie-banner__description {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--rf-muted);
}

.cookie-banner__description a {
  color: var(--rf-primary);
  font-weight: 700;
}

.cookie-banner__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  font-family: inherit;
  cursor: pointer;
  transition: 0.25s ease;
}

.cookie-btn--primary {
  background: var(--rf-primary);
  color: var(--rf-white);
  box-shadow: 0 14px 35px rgba(0, 196, 204, 0.22);
}

.cookie-btn--primary:hover {
  transform: translateY(-2px);
}

.cookie-btn--secondary {
  background: var(--rf-black);
  color: var(--rf-white);
}

.cookie-btn--secondary:hover {
  transform: translateY(-2px);
}

.cookie-btn--ghost {
  background: var(--rf-white);
  color: var(--rf-text);
  border-color: var(--rf-line);
}

.cookie-btn--ghost:hover {
  border-color: var(--rf-primary);
  color: var(--rf-primary);
}

/* =========================
   COOKIE MODAL
========================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.cookie-modal.is-visible {
  display: block;
}

.cookie-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 17, 29, 0.45);
  backdrop-filter: blur(6px);
}

.cookie-modal__dialog {
  position: relative;
  width: min(calc(100% - 24px), 640px);
  margin: 8vh auto 0;
  background: #ffffff;
  border-radius: 28px;
  border: 1px solid var(--rf-line);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.16);
  padding: 28px;
  z-index: 2;
}

.cookie-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.cookie-modal__eyebrow {
  color: var(--rf-primary);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.cookie-modal__header h3 {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: -0.04em;
}

.cookie-modal__close {
  width: 42px;
  height: 42px;
  border: 1px solid var(--rf-line);
  border-radius: 50%;
  background: #fff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.cookie-modal__body {
  display: grid;
  gap: 16px;
}

.cookie-option {
  border: 1px solid var(--rf-line);
  border-radius: 22px;
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-option__info h4 {
  font-size: 1rem;
  margin-bottom: 6px;
}

.cookie-option__info p {
  color: var(--rf-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.cookie-modal__footer {
  margin-top: 22px;
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}

/* =========================
   SWITCH
========================= */

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 56px;
  height: 32px;
  flex-shrink: 0;
}

.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-switch__slider {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #dce4e8;
  transition: 0.25s ease;
  cursor: pointer;
}

.cookie-switch__slider::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  left: 4px;
  top: 4px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  transition: 0.25s ease;
}

.cookie-switch input:checked + .cookie-switch__slider {
  background: var(--rf-primary);
}

.cookie-switch input:checked + .cookie-switch__slider::before {
  transform: translateX(24px);
}

/* =========================
   MANAGE BUTTON
========================= */

.cookie-manage-btn {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 9998;
  display: none;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  color: var(--rf-text);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.10);
}

.cookie-manage-btn.is-visible {
  display: inline-flex;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 860px) {
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-btn {
    flex: 1 1 auto;
  }
}

@media (max-width: 640px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
  }

  .cookie-banner__content {
    padding: 18px;
    border-radius: 20px;
  }

  .cookie-banner__actions,
  .cookie-modal__footer {
    flex-direction: column;
    width: 100%;
  }

  .cookie-btn {
    width: 100%;
  }

  .cookie-option {
    align-items: flex-start;
  }

  .cookie-modal__dialog {
    padding: 22px;
    margin-top: 6vh;
  }
}
.waitlist-proof{
  margin-top:16px;
  font-size:0.9rem;
  color:#6b7280;
  text-align:center;
}

.waitlist-proof strong{
  color:#00C4CC;
  font-weight:700;
}
.btn:disabled {
  opacity: 0.7;
  cursor: wait;
}
.logo {
  width: clamp(150px, 18vw, 210px);
  height: auto;
  display: block;
}

.logo-footer {
  height: 36px;
  width: auto;
}

@media (max-width: 860px) {
  .logo {
    width: clamp(130px, 26vw, 170px);
  }
}

@media (max-width: 640px) {
  .logo {
    width: clamp(120px, 40vw, 155px);
  }

  .logo-footer {
    height: 32px;
  }
}
