:root {
  --bg0: #07070b;
  --bg1: #0a0b12;
  --bg2: #0b0c14;
  --card: rgba(17, 18, 25, 0.62);
  --card2: rgba(17, 18, 25, 0.82);
  --border: rgba(255, 255, 255, 0.10);
  --muted: rgba(244, 244, 245, 0.70);
  --text: rgba(244, 244, 245, 0.96);
  --accent0: #ff5f7a;
  --accent1: #ffb36b;
  --shadow: rgba(255, 95, 122, 0.25);
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 20% -10%, rgba(255, 95, 122, 0.20), transparent 60%),
    radial-gradient(1000px 600px at 80% 0%, rgba(255, 179, 107, 0.14), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1) 45%, var(--bg2));
}

a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }

.bg-orbs {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(700px 320px at 10% 18%, rgba(255, 95, 122, 0.08), transparent 60%),
    radial-gradient(520px 260px at 80% 30%, rgba(255, 179, 107, 0.06), transparent 55%),
    radial-gradient(860px 360px at 70% 110%, rgba(255, 95, 122, 0.06), transparent 55%);
  opacity: 1;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 26px 28px 54px;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0 28px;
}

/* Ensure the nav sits on top of everything when open */
.nav.is-open {
    display: flex;
    z-index: 1000;
    position: absolute;
    top: 80px; /* Adjust based on your header height */
    left: 16px;
    right: 16px;
    background: var(--bg1);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 20px;
    flex-direction: column;
}

/* Ensure the button toggle reflects state */
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
/* end */

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand.mini { opacity: 0.9; }
.brand-icon {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: 0 18px 40px -30px var(--shadow);
  color: rgba(255, 179, 107, 0.95);
}
.brand.mini .brand-icon { width: 30px; height: 30px; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-name { font-weight: 700; letter-spacing: 0.2px; }
.brand-sub { font-size: 10px; letter-spacing: 0.28em; opacity: 0.7; margin-top: 4px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: white;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  margin: 4px auto;
}

.nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  color: rgba(244, 244, 245, 0.80);
  font-size: 13px;
}
.nav a { transition: opacity 180ms ease; }
.nav a:hover { opacity: 1; color: rgba(244, 244, 245, 0.95); }

.btn {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.06em;
  transition: transform 160ms ease, filter 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  user-select: none;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  color: #07070b;
  background: linear-gradient(90deg, var(--accent0), var(--accent1));
  box-shadow: 0 18px 45px -22px rgba(255, 95, 122, 0.65);
}
.btn-primary:hover { filter: brightness(1.06); box-shadow: 0 18px 55px -22px rgba(255, 179, 107, 0.72); }
.btn-outline {
  color: rgba(244, 244, 245, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  padding: 12px 16px;
  letter-spacing: 0.04em;
  font-weight: 650;
}
.btn-outline:hover { background: rgba(255, 255, 255, 0.10); border-color: rgba(255, 255, 255, 0.18); }
.btn-nav {
  padding: 11px 16px;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: #07070b;
  background: linear-gradient(90deg, rgba(255, 95, 122, 0.95), rgba(255, 179, 107, 0.95));
}
.btn-ico { font-size: 15px; line-height: 1; }

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 95, 122, 0.35);
  background: linear-gradient(90deg, rgba(255, 95, 122, 0.22), rgba(255, 179, 107, 0.14));
  box-shadow: 0 16px 34px -26px rgba(255, 95, 122, 0.70);
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
}

.accent {
  background: linear-gradient(90deg, var(--accent0), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 54px;
  align-items: center;
  padding: 14px 0 14px;
}
.hero-left { max-width: 520px; }
.hero-title {
  margin: 16px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 54px;
  line-height: 1.04;
  letter-spacing: -0.01em;
}
.hero-bullets {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: grid;
  gap: 12px;
  color: rgba(244, 244, 245, 0.82);
  font-size: 13px;
}
.hero-bullets li { display: flex; align-items: center; gap: 10px; }
.bullet-ico {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 179, 107, 0.90);
  font-size: 11px;
}
.hero-actions { margin-top: 22px; }
.hero-note {
  margin-top: 16px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: rgba(244, 244, 245, 0.65);
}
.note-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 179, 107, 0.9);
  box-shadow: 0 0 0 6px rgba(255, 179, 107, 0.08);
}

.hero-media {
  position: relative;
  height: 430px;
  border-radius: 34px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 40px 90px -55px rgba(0, 0, 0, 0.9);
}
.hero-image {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 7, 11, 0.12), rgba(7, 7, 11, 0.74)),
    radial-gradient(900px 420px at 80% 20%, rgba(255, 179, 107, 0.10), transparent 60%),
    radial-gradient(900px 420px at 20% 20%, rgba(255, 95, 122, 0.10), transparent 60%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    url("images/header.png");
  background-repeat: no-repeat;
  background-position: center, center, center, center, center;
  background-size: cover, cover, cover, cover, contain;
  filter: saturate(0.95) contrast(1.05);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(900px 420px at 75% 20%, rgba(255, 95, 122, 0.12), transparent 55%),
    radial-gradient(700px 380px at 15% 15%, rgba(255, 179, 107, 0.08), transparent 55%);
  mix-blend-mode: screen;
  opacity: 0.9;
  pointer-events: none;
}

.stats-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 16, 22, 0.72);
  backdrop-filter: blur(18px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  padding: 14px 14px;
  box-shadow: 0 25px 80px -55px rgba(0, 0, 0, 0.9);
}
.stat { display: grid; gap: 5px; padding: 8px 10px; border-radius: 16px; }
.stat-top { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.stat-value { font-weight: 800; font-size: 14px; color: rgba(255, 179, 107, 0.95); }
.stat-ico { color: rgba(255, 95, 122, 0.92); font-size: 14px; }
.stat-label { font-size: 11px; line-height: 1.2; color: rgba(244, 244, 245, 0.72); }

.section { padding: 54px 0 0; }
.section-head { text-align: center; }
.section-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 34px;
  letter-spacing: -0.01em;
}

.feature-row {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.feature-card {
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--card);
  backdrop-filter: blur(16px);
  padding: 18px 16px;
  box-shadow: 0 28px 75px -60px rgba(0, 0, 0, 0.9);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
  min-height: 132px;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 179, 107, 0.18);
  background: rgba(17, 18, 25, 0.72);
  box-shadow: 0 30px 85px -60px rgba(255, 95, 122, 0.18);
}
.feature-ico {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(18px 18px at 30% 30%, rgba(255, 179, 107, 0.20), rgba(255, 95, 122, 0.10));
  display: grid;
  place-items: center;
  color: rgba(244, 244, 245, 0.92);
  font-weight: 800;
  margin-bottom: 12px;
}
.feature-card h3 {
  margin: 0;
  font-size: 13px;
  font-weight: 800;
  color: rgba(244, 244, 245, 0.92);
}
.feature-card p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(244, 244, 245, 0.64);
}

.content-grid {
  margin-top: 22px;
  display: grid;
  grid-template-columns: 2fr 1.05fr;
  gap: 18px;
  align-items: start;
}
.grid-left { display: grid; gap: 18px; }
.content-card {
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--card);
  backdrop-filter: blur(16px);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: 210px;
  box-shadow: 0 28px 75px -60px rgba(0, 0, 0, 0.9);
}
.card-media { position: relative; min-height: 210px; background: rgba(255, 255, 255, 0.04); }
.phone-mock {
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(255, 95, 122, 0.12), transparent 60%),
    radial-gradient(500px 220px at 70% 35%, rgba(255, 179, 107, 0.10), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("images/mobile1.png");
  background-repeat: no-repeat;
  background-position: center, center, center, center;
  background-size: cover, cover, cover, contain;
}
.community-mock {
  background:
    radial-gradient(600px 260px at 30% 20%, rgba(255, 179, 107, 0.10), transparent 60%),
    radial-gradient(500px 220px at 70% 35%, rgba(255, 95, 122, 0.10), transparent 60%),
    linear-gradient(160deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    url("images/mobile2.png");
  background-repeat: no-repeat;
  background-position: center, center, center, center;
  background-size: cover, cover, cover, contain;
}
/* =========================
   DREAM COLLAGE SECTION
========================= */

.collage {
  padding: 14px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  background: linear-gradient(
    180deg,
    rgba(255,255,255,0.03),
    rgba(255,255,255,0.01)
  );
}

/* INDIVIDUAL TILE */

.collage-tile {
  position: relative;
  height: 115px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  padding: 12px;
  transition: transform 0.35s ease,
              border-color 0.35s ease,
              box-shadow 0.35s ease;
}

/* DARK CINEMATIC OVERLAY */

.collage-tile::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,0.82),
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.05)
    );

  z-index: 1;
}

/* GLOW EFFECT */

.collage-tile::after {
  content: "";
  position: absolute;
  inset: 0;

  background:
    radial-gradient(
      circle at top right,
      rgba(255,95,122,0.18),
      transparent 45%
    );

  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 2;
}

/* HOVER EFFECT */

.collage-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(255,179,107,0.25);

  box-shadow:
    0 25px 45px rgba(0,0,0,0.45),
    0 0 20px rgba(255,95,122,0.08);
}

.collage-tile:hover::after {
  opacity: 1;
}

/* TEXT */

.collage-tile span {
  position: relative;
  z-index: 3;

  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.55);
}

/* =========================
   INDIVIDUAL IMAGES
========================= */

.home {
  background-image:
    url("images/home.jpg");
}

.family {
  background-image:
    url("images/family.jpg");
}

.travel {
  background-image:
    url("images/travel.jpg");
}

.business {
  background-image:
    url("images/business.jpg");
}
.card-body { padding: 22px 22px 22px 18px; }
.card-body h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.05;
}
.card-body p {
  margin: 12px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: rgba(244, 244, 245, 0.68);
}
.card-list {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: grid;
  gap: 8px;
  font-size: 12px;
  color: rgba(244, 244, 245, 0.70);
}
.card-list li { display: flex; align-items: center; gap: 10px; }
.card-list li::before {
  content: "•";
  color: rgba(255, 179, 107, 0.85);
  font-size: 18px;
  line-height: 0;
}

.waitlist-card {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(17, 18, 25, 0.72);
  backdrop-filter: blur(18px);
  padding: 24px 22px;
  box-shadow: 0 28px 75px -60px rgba(0, 0, 0, 0.9);
}
.waitlist-head h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 26px;
  line-height: 1.05;
}
.waitlist-head p {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.6;
  color: rgba(244, 244, 245, 0.64);
}
.waitlist-form { margin-top: 16px; display: grid; gap: 12px; }
.field label, .field-label { display: block; font-size: 11px; font-weight: 700; color: rgba(244, 244, 245, 0.78); }
.field input, .field select {
  margin-top: 8px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 244, 245, 0.92);
  outline: none;
  transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}
.field input:focus, .field select:focus {
  border-color: rgba(255, 95, 122, 0.45);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 4px rgba(255, 95, 122, 0.12);
}
.field select option { background: #0b0c14; color: rgba(244, 244, 245, 0.96); }
.error {
  min-height: 14px;
  margin-top: 6px;
  font-size: 11px;
  color: rgba(255, 95, 122, 0.95);
}
.segmented {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 8px;
}
.segmented.cols-3 { grid-template-columns: repeat(3, 1fr); }
.segmented.cols-4 { grid-template-columns: repeat(4, 1fr); }
.segmented button {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 244, 245, 0.86);
  padding: 11px 10px;
  font-weight: 750;
  font-size: 12px;
  letter-spacing: 0.02em;
}
.segmented button:hover { background: rgba(255, 255, 255, 0.07); }
.segmented button.is-active {
  border-color: rgba(255, 95, 122, 0.45);
  background: rgba(255, 95, 122, 0.16);
  color: rgba(244, 244, 245, 0.96);
}

.btn-submit {
  width: 100%;
  padding: 13px 18px;
  margin-top: 6px;
  position: relative;
}
.btn-submit[disabled] { opacity: 0.82; cursor: not-allowed; }
.btn-spin {
  width: 16px;
  height: 16px;
  border-radius: 999px;
  border: 2px solid rgba(7, 7, 11, 0.45);
  border-top-color: rgba(7, 7, 11, 0.95);
  display: none;
  animation: spin 700ms linear infinite;
}
.btn-submit.is-loading .btn-spin { display: inline-block; }
.btn-submit.is-loading .btn-text { opacity: 0.95; }
@keyframes spin { to { transform: rotate(360deg); } }

.privacy {
  text-align: center;
  font-size: 11px;
  color: rgba(244, 244, 245, 0.55);
  margin-top: 6px;
}

.rewards {
  margin-top: 12px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(17, 18, 25, 0.55);
  padding: 14px 14px;
}
.rewards-title { font-weight: 800; font-size: 13px; }
.rewards-sub { margin-top: 5px; font-size: 11px; color: rgba(244, 244, 245, 0.62); }
.rewards-list { margin-top: 12px; display: grid; gap: 10px; }
.reward-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; font-size: 12px; color: rgba(244, 244, 245, 0.86); }
.reward-row span:last-child { font-weight: 800; color: rgba(244, 244, 245, 0.96); }

.section-rewards .reward-cards {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.reward-card {
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: var(--card);
  backdrop-filter: blur(16px);
  padding: 18px 18px;
  box-shadow: 0 28px 75px -60px rgba(0, 0, 0, 0.9);
}
.reward-ico {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: radial-gradient(18px 18px at 30% 30%, rgba(255, 179, 107, 0.20), rgba(255, 95, 122, 0.10));
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  font-weight: 900;
}
.reward-title { font-weight: 900; font-size: 13px; }
.reward-text { margin-top: 6px; font-size: 12px; line-height: 1.55; color: rgba(244, 244, 245, 0.64); }

.final-card {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(17, 18, 25, 0.58);
  backdrop-filter: blur(18px);
  padding: 40px 28px;
  box-shadow: 0 45px 110px -80px rgba(0, 0, 0, 0.95);
}
.final-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 420px at 40% 10%, rgba(255, 95, 122, 0.16), transparent 58%),
    radial-gradient(900px 420px at 80% 10%, rgba(255, 179, 107, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(7, 7, 11, 0.20), rgba(7, 7, 11, 0.85));
  opacity: 0.95;
}
.final-content { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.final-content h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.01em;
}
.final-sub { margin: 10px 0 0; color: rgba(244, 244, 245, 0.72); font-size: 13px; }
.final-logo { margin: 18px auto 20px; display: inline-flex; align-items: center; gap: 10px; }
.final-foot { margin-top: 16px; font-size: 11px; color: rgba(244, 244, 245, 0.60); }

.footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  padding: 26px 0 0;
  margin-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-mid { font-size: 12px; color: rgba(244, 244, 245, 0.58); text-align: center; }
.footer-right { display: flex; justify-content: flex-end; gap: 10px; }
.footer-right a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(244, 244, 245, 0.78);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}
.footer-right a:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 179, 107, 0.16); }

.toast {
  position: fixed;
  left: 50%;
  top: 16px;
  transform: translateX(-50%);
  width: min(620px, calc(100vw - 28px));
  z-index: 999;
  pointer-events: none;
}
.toast .toast-inner { pointer-events: auto; }
.toast .toast-inner {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 13, 19, 0.78);
  backdrop-filter: blur(18px);
  padding: 18px 18px;
  box-shadow: 0 40px 110px -75px rgba(0, 0, 0, 0.95);
  position: relative;
  overflow: hidden;
}
.toast .toast-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 220px at 15% 0%, rgba(255, 95, 122, 0.18), transparent 60%),
    radial-gradient(520px 220px at 85% 10%, rgba(255, 179, 107, 0.12), transparent 60%);
  opacity: 0.9;
  pointer-events: none;
}
.toast .toast-inner > * { position: relative; }

.toast-title { font-size: 16px; font-weight: 900; letter-spacing: -0.01em; }
.toast-msg { margin-top: 8px; font-size: 13px; line-height: 1.5; color: rgba(244, 244, 245, 0.74); }

.toast-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.toast-chip {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.10);
  background: rgba(255, 255, 255, 0.05);
  padding: 12px 12px;
}
.toast-chip-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(244, 244, 245, 0.62);
  font-weight: 800;
}
.toast-chip-value {
  margin-top: 8px;
  font-size: 18px;
  font-weight: 950;
  color: rgba(244, 244, 245, 0.95);
}
.toast-chip-link { font-size: 12px; font-weight: 800; line-height: 1.35; word-break: break-all; }
.toast-chip-link a { color: rgba(255, 179, 107, 0.95); text-decoration: none; }
.toast-chip-link a:hover { text-decoration: underline; }
.toast-copy {
  margin-top: 10px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 179, 107, 0.22);
  background: rgba(255, 179, 107, 0.10);
  color: rgba(244, 244, 245, 0.92);
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 0.02em;
  cursor: pointer;
}
.toast-copy:disabled { opacity: 0.45; cursor: default; }
.toast-chip-hint { margin-top: 10px; font-size: 11px; color: rgba(244, 244, 245, 0.65); font-weight: 800; letter-spacing: 0.02em; }

@media (max-width: 700px) {
  .toast { top: 10px; width: min(720px, calc(100vw - 20px)); }
  .toast .toast-inner { padding: 16px 14px; border-radius: 24px; }
  .toast-grid { grid-template-columns: 1fr; }
  .toast-chip-value { font-size: 17px; }
}

.reveal { opacity: 0; transform: translateY(16px); transition: opacity 700ms ease, transform 700ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.float { animation: float 5.4s ease-in-out infinite; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }

@media (max-width: 1100px) {
  .feature-row { grid-template-columns: repeat(3, 1fr); }
  .hero { gap: 34px; }
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; gap: 22px; }
  .hero-left { max-width: none; }
  .hero-title { font-size: 46px; }
  .hero-media { height: 390px; }
  .content-grid { grid-template-columns: 1fr; }
  .content-card { grid-template-columns: 1fr; }
  .card-media { min-height: 210px; }
  .section-rewards .reward-cards { grid-template-columns: repeat(2, 1fr); }
  .footer { grid-template-columns: 1fr; justify-items: center; text-align: center; }
  .footer-right { justify-content: center; }
}

@media (max-width: 700px) {
  .container { padding: 20px 16px 46px; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .nav {
    position: absolute;
    top: 74px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(15, 16, 22, 0.72);
    backdrop-filter: blur(18px);
    box-shadow: 0 30px 80px -55px rgba(0, 0, 0, 0.95);
  }
  .navbar { position: relative; }
  .nav.is-open { display: flex; }
  .btn-nav { width: 100%; }
  .hero-title { font-size: 40px; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .section-title { font-size: 30px; }
  .final-content h2 { font-size: 30px; }
}
