
:root {
  --bg: #050507;
  --bg-soft: #0c0c11;
  --panel: #121219;
  --panel-2: #181821;
  --panel-3: #1f1f29;
  --text: #f4f6fb;
  --muted: #b9bfca;
  --muted-2: #9097a4;
  --line: rgba(255, 255, 255, 0.08);
  --accent: #ffb338;
  --accent-2: #ff6a2a;
  --danger: #e50914;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
  --radius: 24px;
  --max: 1320px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 179, 56, 0.08), transparent 22%),
    radial-gradient(circle at 18% 18%, rgba(229, 9, 20, 0.06), transparent 20%),
    linear-gradient(180deg, #050507 0%, #07080b 45%, #0a0a10 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.02), transparent 12%),
    radial-gradient(circle at 50% 0%, rgba(255,255,255,0.03), transparent 30%);
  mix-blend-mode: screen;
  opacity: 0.6;
}

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

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

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

.wrap {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.main {
  overflow: clip;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: rgba(5, 5, 7, 0.42);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: background 0.24s ease, border-color 0.24s ease;
}

.nav.scrolled {
  background: rgba(5, 5, 7, 0.9);
  border-color: var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 76px;
}

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

.brand img {
  height: 36px;
  width: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand-text span {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.nav-links a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 600;
  transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 1.7rem;
  line-height: 1;
  padding: 6px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(8, 8, 11, 0.98);
}

.mobile-menu-inner {
  display: grid;
  gap: 16px;
  padding: 18px 0 22px;
}

.mobile-menu-links {
  display: grid;
  gap: 14px;
}

.mobile-menu-links a {
  color: var(--muted);
  font-weight: 700;
}

.mobile-menu-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.btn-primary {
  color: #180d00;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  box-shadow: 0 18px 38px rgba(255, 126, 41, 0.2);
}

.btn-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

.btn-ghost {
  color: var(--text);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.16);
}

.btn-small {
  min-height: 40px;
  padding-inline: 16px;
  font-size: 0.9rem;
}

.link-btn {
  font-weight: 800;
  color: #ffd592;
  letter-spacing: 0.01em;
}

.chip,
.eyebrow,
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 12px;
}

.badge {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 7px 10px;
}

.badge--vip {
  color: #ffd98d;
  background: rgba(255, 179, 56, 0.14);
  border-color: rgba(255, 179, 56, 0.34);
}

.badge--live {
  color: #ffb0b8;
  background: rgba(229, 9, 20, 0.16);
  border-color: rgba(229, 9, 20, 0.3);
}

.page-home .hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: flex-end;
  padding: 46px 0 52px;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.76) 33%, rgba(5, 5, 7, 0.18) 62%, rgba(5, 5, 7, 0.92) 100%),
    linear-gradient(180deg, rgba(5, 5, 7, 0.2), rgba(5, 5, 7, 0.82) 92%, rgba(5, 5, 7, 0.98) 100%),
    url("images/spring-break-hero.webp") center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.page-home .hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 160px;
  background: linear-gradient(180deg, transparent, #07080b);
}

.hero-grid,
.page-hero-grid,
.newsletter-shell,
.form-grid,
.vip-feature,
.support-split {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 30px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(300px, 360px);
  align-items: end;
  width: 100%;
}

.hero-copy {
  padding-bottom: 26px;
}

.hero h1,
.page-hero h1 {
  margin: 14px 0 14px;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(3.1rem, 7vw, 6.4rem);
  max-width: 8.5ch;
}

.page-hero h1 {
  font-size: clamp(2.9rem, 5vw, 4.8rem);
  max-width: 11ch;
}

.lead,
.page-hero p,
.section-copy,
.info-card p,
.feature-card p,
.brand-tile p,
.plan p,
.page-card p,
.faq-body p,
.footer p,
.footer a,
.quick-note,
.note,
.kicker,
.list-copy,
.muted {
  color: var(--muted);
}

.lead,
.page-hero p {
  max-width: 58ch;
  font-size: 1.06rem;
  line-height: 1.72;
}

.hero-buttons,
.inline-form,
.meta-list,
.footer-social,
.device-list,
.plan-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.meta-list {
  margin-top: 28px;
}

.meta {
  padding: 10px 14px;
  border-radius: 999px;
  color: #f6f7fb;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.08);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero-panel,
.page-card,
.info-card,
.form-panel,
.help-card,
.plan,
.perk,
.feature-card,
.brand-tile,
.support-panel {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.02));
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.03)),
    linear-gradient(180deg, rgba(12,12,18,0.86), rgba(7,7,10,0.92));
  backdrop-filter: blur(14px);
}

.hero-poster {
  aspect-ratio: 2 / 3;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,0.2)),
    url("images/key-west-poster.webp") center / cover no-repeat;
}

.hero-panel-copy {
  padding: 16px 6px 6px;
}

.hero-panel h3,
.section-title,
.info-card h3,
.help-card h3,
.plan h3,
.support-panel h3 {
  margin: 0;
  letter-spacing: -0.03em;
}

.hero-panel h3 {
  font-size: 1.6rem;
  margin-top: 14px;
  margin-bottom: 8px;
}

.hero-statline {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.tiny-card {
  padding: 14px 14px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.05);
}

.tiny-card strong {
  display: block;
  font-size: 1.15rem;
  margin-bottom: 4px;
}

.tiny-card span {
  color: var(--muted);
  font-size: 0.86rem;
}

.page-hero {
  position: relative;
  padding: 112px 0 52px;
  border-bottom: 1px solid var(--line);
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 120px;
  background: linear-gradient(180deg, transparent, #07080b);
}

.page-hero--support {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.7) 45%, rgba(5, 5, 7, 0.42) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.4), rgba(5,5,7,0.88)),
    url("images/party-crowd.webp") center / cover no-repeat;
}

.page-hero--membership {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.72) 42%, rgba(5, 5, 7, 0.3) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.35), rgba(5,5,7,0.88)),
    url("images/spring-break-hero.webp") center / cover no-repeat;
}

.page-hero--help {
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.96) 0%, rgba(5, 5, 7, 0.68) 42%, rgba(5, 5, 7, 0.36) 100%),
    linear-gradient(180deg, rgba(5,5,7,0.5), rgba(5,5,7,0.9)),
    url("images/spark-tv-fire.webp") center / cover no-repeat;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 360px);
  align-items: center;
}

.page-card {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02)),
    rgba(10, 10, 13, 0.65);
  backdrop-filter: blur(14px);
}

.page-card img {
  max-height: 220px;
  width: auto;
  object-fit: contain;
  margin-inline: auto;
  filter: drop-shadow(0 18px 40px rgba(0,0,0,0.35));
}

.page-card ul,
.plan ul,
.feature-list {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-card li,
.plan li,
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #e6e9ef;
  line-height: 1.58;
}

.check {
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 179, 56, 0.14);
  color: #ffd48a;
  font-size: 0.88rem;
  margin-top: 2px;
}

.section {
  padding: 26px 0 12px;
}

.section-lg {
  padding: 56px 0 20px;
}

.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.section-kicker {
  margin: 0 0 8px;
}

.section-title {
  font-size: clamp(1.45rem, 2.4vw, 2.2rem);
}

.section-copy {
  margin: 8px 0 0;
  max-width: 62ch;
  line-height: 1.68;
}

.row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(280px, 1fr);
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x proximity;
}

.row::-webkit-scrollbar {
  height: 8px;
}

.row::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.14);
  border-radius: 999px;
}

.card {
  position: relative;
  min-height: 360px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
  box-shadow: var(--shadow);
  scroll-snap-align: start;
  transition: transform 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(255, 179, 56, 0.4);
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--card-bg) center / cover no-repeat;
  transform: scale(1.01);
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.22) 36%, rgba(0,0,0,0.9) 100%);
}

.card--poster::before {
  background: #0d0b10 var(--card-bg) center center / contain no-repeat;
}

.card-top,
.card-content,
.card-logo {
  position: absolute;
  z-index: 2;
}

.card-top {
  top: 18px;
  left: 18px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.card-logo {
  top: 18px;
  right: 18px;
  max-width: 132px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0,0,0,0.35));
}

.card-logo--small {
  max-width: 92px;
}

.card-logo--shield {
  max-width: 96px;
}

.card-content {
  inset: auto 0 0 0;
  padding: 24px;
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.45rem;
  letter-spacing: -0.03em;
}

.card p {
  margin: 0 0 14px;
  color: #d2d6df;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: #d7dbe4;
  font-size: 0.84rem;
  font-weight: 600;
}

.brand-grid,
.feature-grid,
.info-grid,
.help-grid,
.plan-grid,
.perk-strip {
  display: grid;
  gap: 18px;
}

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

.brand-tile {
  min-height: 220px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.brand-tile img {
  max-width: 100%;
  max-height: 72px;
  width: auto;
  object-fit: contain;
}

.brand-tile .brand-art {
  max-height: 108px;
  border-radius: 18px;
  width: 100%;
  object-fit: cover;
}

.brand-tile p {
  margin: 18px 0 0;
  line-height: 1.66;
}

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

.feature-card {
  padding: 22px;
}

.feature-card .feature-icon {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(255,179,56,0.18), rgba(229,9,20,0.16));
  color: #ffd48a;
  font-weight: 900;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
}

.feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.25rem;
  letter-spacing: -0.03em;
}

.feature-card p {
  margin: 0;
  line-height: 1.68;
}

.newsletter {
  padding: 64px 0 88px;
}

.newsletter-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  align-items: center;
  overflow: hidden;
  padding: 38px;
  border-radius: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 179, 56, 0.16), rgba(229, 9, 20, 0.12), rgba(255,255,255,0.03)),
    #0c0c12;
}

.newsletter-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("images/party-crowd.webp") center / cover no-repeat;
  opacity: 0.14;
  mix-blend-mode: screen;
}

.newsletter-copy,
.newsletter-form-wrap {
  position: relative;
  z-index: 1;
}

.newsletter h2 {
  margin: 12px 0 12px;
  font-size: clamp(2rem, 4.6vw, 4rem);
  letter-spacing: -0.05em;
  line-height: 0.96;
  max-width: 12ch;
}

.newsletter p {
  margin: 0;
  line-height: 1.7;
  color: #e7ebf2;
  max-width: 58ch;
}

.inline-form {
  margin-top: 20px;
}

.field,
.select,
textarea.field {
  width: 100%;
  min-height: 52px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.24);
  color: var(--text);
  padding: 0 16px;
}

textarea.field {
  padding: 16px;
  min-height: 164px;
  resize: vertical;
}

.field::placeholder,
textarea.field::placeholder {
  color: var(--muted-2);
}

.micro-note,
.inline-note,
.pricing-note,
.quick-note {
  font-size: 0.88rem;
  color: var(--muted);
}

.info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-bottom: 26px;
}

.info-card,
.help-card,
.form-panel,
.plan,
.perk,
.support-panel {
  padding: 24px;
}

.info-card h3,
.help-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}

.info-card a {
  color: #ffe2aa;
  font-weight: 800;
}

.form-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  align-items: start;
  padding-bottom: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 14px;
}

.form-stack {
  display: grid;
  gap: 14px;
}

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

.help-card {
  min-height: 190px;
}

.help-card .feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 18px;
  color: #ffd48a;
  font-weight: 900;
}

.search-shell {
  margin: 12px 0 28px;
  padding: 18px;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.search-shell .field {
  background: rgba(255,255,255,0.04);
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}

.faq-trigger {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-symbol {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  color: #ffd48a;
}

.faq-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.24s ease;
}

.faq-body > div {
  overflow: hidden;
}

.faq-body p {
  margin: 0;
  padding: 0 22px 22px;
}

.faq-item.open .faq-body {
  grid-template-rows: 1fr;
}

.plan-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
}

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.plan.popular {
  border-color: rgba(255,179,56,0.48);
  background:
    linear-gradient(180deg, rgba(255,179,56,0.14), rgba(255,255,255,0.03)),
    rgba(18,18,25,0.95);
  transform: translateY(-8px);
}

.plan .plan-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.plan.popular .plan-label {
  background: rgba(255,179,56,0.16);
  color: #ffd48a;
}

.plan .price {
  display: flex;
  align-items: flex-end;
  gap: 8px;
}

.plan .price strong {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.plan .price span {
  color: var(--muted);
  font-weight: 700;
  padding-bottom: 6px;
}

.plan-actions {
  margin-top: auto;
}

.perk-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
  margin-bottom: 12px;
}

.perk h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  letter-spacing: -0.03em;
}

.perk p {
  margin: 0;
  line-height: 1.65;
  color: var(--muted);
}

.vip-feature,
.support-split {
  grid-template-columns: minmax(260px, 320px) minmax(0, 1fr);
  align-items: center;
  padding: 16px 0 48px;
}

.poster {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.poster img {
  width: 100%;
  height: auto;
}

.kicker {
  margin: 0 0 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.015);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(3, minmax(0, 0.8fr));
  gap: 24px;
}

.footer .brand {
  margin-bottom: 14px;
}

.footer h4 {
  margin: 0 0 12px;
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
}

.footer a {
  display: block;
  margin: 9px 0;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #fff;
}

.legal {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 300;
  min-width: 260px;
  max-width: 420px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(10, 10, 14, 0.95);
  box-shadow: var(--shadow);
  color: #fff;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1120px) {
  .hero-grid,
  .page-hero-grid,
  .newsletter-shell,
  .form-grid,
  .vip-feature,
  .support-split {
    grid-template-columns: 1fr;
  }

  .hero-panel,
  .page-card {
    max-width: 420px;
  }

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

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

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

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

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

@media (max-width: 860px) {
  .nav-links,
  .nav-actions .btn.btn-secondary {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  body.menu-open .mobile-menu {
    display: block;
  }

  .page-home .hero {
    min-height: auto;
    padding-top: 86px;
  }

  .hero h1 {
    max-width: 100%;
  }

  .hero-panel,
  .page-card {
    max-width: none;
  }

  .row {
    grid-auto-columns: minmax(74vw, 1fr);
  }

  .feature-grid,
  .info-grid,
  .help-grid,
  .plan-grid,
  .brand-grid,
  .perk-strip,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .newsletter-shell {
    padding: 28px;
  }

  .legal {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(calc(100% - 28px), var(--max));
  }

  .nav-inner {
    min-height: 70px;
  }

  .brand img {
    height: 30px;
  }

  .brand-text span {
    display: none;
  }

  .hero,
  .page-hero {
    padding-bottom: 40px;
  }

  .card {
    min-height: 320px;
  }

  .hero-buttons .btn,
  .inline-form .btn,
  .mobile-menu-actions .btn {
    width: 100%;
  }

  .btn {
    min-height: 46px;
  }

  .newsletter-shell,
  .hero-panel,
  .page-card,
  .info-card,
  .form-panel,
  .help-card,
  .plan,
  .perk,
  .support-panel {
    border-radius: 24px;
  }
}


