/* ============================================================
   Rabeh — Static Landing Page Stylesheet
   Design: Premium dark gaming · coral + grape + sun palette
   ============================================================ */

/* === Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Cairo:wght@400;600;700;800&family=JetBrains+Mono:wght@400;600&display=swap');

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  --coral:   hsl(354, 88%, 62%);
  --sun:     hsl(48,  100%, 58%);
  --teal:    hsl(174, 85%,  50%);
  --grape:   hsl(270, 90%,  65%);
  --ink:     hsl(30,  25%,  96%);
  --night:   hsl(240, 25%,  6%);
  --night-2: hsl(240, 22%,  9%);
  --night-3: hsl(240, 20%,  12%);

  --grad-hero:   linear-gradient(135deg, hsl(354,88%,62%) 0%, hsl(330,90%,55%) 50%, hsl(270,90%,60%) 100%);
  --grad-coral:  linear-gradient(135deg, hsl(354,88%,62%), hsl(15,95%,60%));
  --grad-sun:    linear-gradient(135deg, hsl(48,100%,58%), hsl(35,100%,55%));
  --grad-teal:   linear-gradient(135deg, hsl(174,85%,50%), hsl(190,90%,55%));
  --grad-purple: linear-gradient(135deg, hsl(270,90%,60%), hsl(300,80%,55%));
  --grad-mesh:
    radial-gradient(at 20% 10%,  hsl(354 88% 62% / .35) 0px, transparent 50%),
    radial-gradient(at 85%  0%,  hsl(270 90% 60% / .40) 0px, transparent 50%),
    radial-gradient(at 60% 90%,  hsl(174 85% 50% / .20) 0px, transparent 60%);

  --shadow-soft:        0 8px  24px -8px  hsl(354 88% 62% / .40);
  --shadow-pop:         0 25px 60px -15px hsl(354 88% 62% / .50);
  --shadow-glow-coral:  0 0 80px hsl(354 88% 62% / .50);
  --shadow-glow-purple: 0 0 80px hsl(270 90% 60% / .50);
  --shadow-glow-sun:    0 0 60px hsl(48  100% 58% / .40);
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Sora', system-ui, sans-serif;
  background-color: var(--night);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* RTL font override */
html[dir="rtl"] body,
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4 {
  font-family: 'Cairo', system-ui, sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'Sora', system-ui, sans-serif;
  letter-spacing: -0.03em;
  font-weight: 700;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

::selection {
  background: hsl(354 88% 62% / .4);
  color: var(--ink);
}

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Shared section header ───────────────────────────────────── */
.section-header {
  margin: 0 auto;
  max-width: 40rem;
  text-align: center;
}

.kicker {
  display: inline-block;
  padding: 0.375rem 1rem;
  border-radius: 9999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.section-title {
  margin-top: 1.25rem;
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}

/* ── Utility classes ─────────────────────────────────────────── */
.text-gradient-hero {
  background: var(--grad-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.glass {
  background: hsl(240 22% 9% / .6);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid hsl(30 25% 96% / .08);
}

.grid-bg {
  background-image:
    linear-gradient(hsl(30 25% 96% / .04) 1px, transparent 1px),
    linear-gradient(90deg, hsl(30 25% 96% / .04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.bg-mesh { background-image: var(--grad-mesh); }

/* Noise texture overlay */
.noise { position: relative; }
.noise::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

/* Gradient backgrounds */
.bg-coral     { background: var(--grad-coral); }
.bg-sun       { background: var(--grad-sun); }
.bg-teal-grad { background: var(--grad-teal); }
.bg-grape     { background: var(--grape); }

/* Shadow utilities */
.shadow-soft        { box-shadow: var(--shadow-soft); }
.shadow-pop         { box-shadow: var(--shadow-pop); }
.shadow-glow-coral  { box-shadow: var(--shadow-glow-coral); }
.shadow-glow-purple { box-shadow: var(--shadow-glow-purple); }
.shadow-glow-sun    { box-shadow: var(--shadow-glow-sun); }

/* Icon helper */
.icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

/* ── Animations ──────────────────────────────────────────────── */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-18px) rotate(2deg); }
}

@keyframes blob {
  0%, 100% {
    border-radius: 60% 40% 50% 50% / 50% 60% 40% 50%;
    transform: translate(0, 0) scale(1);
  }
  50% {
    border-radius: 40% 60% 60% 40% / 60% 40% 60% 40%;
    transform: translate(20px, -20px) scale(1.05);
  }
}

@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@keyframes marquee-rtl {
  from { transform: translateX(-50%); }
  to   { transform: translateX(0); }
}

/* Hero entrance (fires on load, not scroll) */
@keyframes fade-up-in {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes scale-in-kf {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

/* Scroll-triggered animation base states */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  border-bottom: 1px solid hsl(30 25% 96% / .05);
  background: hsl(240 25% 6% / .70);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.navbar .container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
}

/* Brand logo */
.brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.brand-mark {
  width: 2.5rem;
  height: 2.5rem;
  filter: drop-shadow(0 0 12px hsl(354 88% 62% / .4));
  flex-shrink: 0;
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

/* Desktop nav links — hidden on mobile */
.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(30 25% 96% / .60);
  transition: color 0.2s ease;
}

.nav-links a:hover { color: var(--coral); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  border: 1px solid hsl(30 25% 96% / .15);
  background: hsl(240 22% 9% / .6);
  backdrop-filter: blur(16px);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.lang-btn:hover {
  border-color: hsl(354 88% 62% / .5);
  color: var(--coral);
}

/* Primary CTA button */
.btn-primary {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--grad-coral);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-coral);
}

@media (min-width: 640px)  { .btn-primary { display: inline-flex; } }
@media (min-width: 768px)  { .nav-links   { display: flex; } }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  overflow: hidden;
}

/* Decorative layers */
.hero-mesh,
.hero-grid-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  pointer-events: none;
  filter: blur(120px);
  border-radius: 50%;
}

.hero-blob--coral {
  top: -10rem;
  right: -10rem;
  width: 31.25rem;
  height: 31.25rem;
  background: hsl(354 88% 62% / .30);
  animation: blob 12s ease-in-out infinite;
}

.hero-blob--grape {
  top: 50%;
  left: -10rem;
  width: 28rem;
  height: 28rem;
  background: hsl(270 90% 65% / .30);
  animation: blob 12s ease-in-out infinite 3s;
}

/* Hero two-column grid */
.hero-inner {
  position: relative;
  z-index: 10;
  display: grid;
  align-items: center;
  gap: 3rem;
  padding: 5rem 0 6rem;
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 4rem;
    padding: 7rem 0 8rem;
  }
}

/* Copy column */
.hero-copy { text-align: center; }

@media (min-width: 1024px) { .hero-copy { text-align: start; } }

/* Animated badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.75rem;
  color: hsl(30 25% 96% / .90);
  animation: fade-up-in 0.6s ease both;
}

@media (min-width: 640px) { .hero-badge { font-size: 0.875rem; } }

/* Pulsing dot */
.ping-dot {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 0.5rem;
  height: 0.5rem;
  flex-shrink: 0;
}

.ping-dot::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 9999px;
  background: var(--coral);
  opacity: .75;
  animation: ping 1s cubic-bezier(0, .2, .8, 1) infinite;
}

.ping-dot::after {
  content: '';
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--coral);
}

/* Headline */
.hero-h1 {
  margin-top: 1.5rem;
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--ink);
  animation: fade-up-in 0.7s 0.1s ease both;
}

.hero-h1 .block { display: block; }

/* Subtext */
.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: hsl(30 25% 96% / .65);
  animation: fade-up-in 0.6s 0.25s ease both;
}

@media (min-width: 1024px) { .hero-sub { margin-left: 0; } }

/* Waitlist form wrapper */
.hero-form-wrap {
  margin: 2.5rem auto 0;
  width: 100%;
  max-width: 36rem;
  animation: fade-up-in 0.6s 0.4s ease both;
}

@media (min-width: 1024px) { .hero-form-wrap { margin-left: 0; } }

/* Note below form */
.hero-note {
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(30 25% 96% / .50);
  animation: fade-up-in 0.6s 0.55s ease both;
}

/* ── Waitlist Form ──────────────────────────────────────────── */
.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-radius: 1rem;
  border: 1px solid hsl(30 25% 96% / .10);
  background: hsl(240 22% 9% / .80);
  padding: 0.5rem;
  box-shadow: var(--shadow-pop);
  backdrop-filter: blur(24px);
}

@media (min-width: 640px) {
  .waitlist-form {
    flex-direction: row;
    align-items: center;
  }
}

.waitlist-input {
  flex: 1;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-family: inherit;
  border: none;
  outline: none;
}

.waitlist-input::placeholder { color: hsl(30 25% 96% / .40); }

.waitlist-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: var(--grad-coral);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  box-shadow: var(--shadow-glow-coral);
  transition: transform 0.2s ease;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

.waitlist-btn:hover  { transform: scale(1.02); }
.waitlist-btn:active { transform: scale(0.98); }

/* Arrow icon default and hover transitions */
.waitlist-btn .btn-arrow { transition: transform 0.2s ease; }
.waitlist-btn:hover .btn-arrow { transform: translateX(4px); }

html[dir="rtl"] .waitlist-btn .btn-arrow { transform: rotate(180deg); }
html[dir="rtl"] .waitlist-btn:hover .btn-arrow { transform: rotate(180deg) translateX(4px); }

/* Form messages */
.form-message {
  display: none;
  margin-top: 0.75rem;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.form-message.success {
  display: inline-flex;
  background: hsl(174 85% 50% / .15);
  color: var(--teal);
}

.form-message.error {
  display: inline-flex;
  background: hsl(0 84% 60% / .15);
  color: hsl(0, 84%, 60%);
}

/* ── Hero Visual (right column) ─────────────────────────────── */
.hero-visual {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 32rem;
  aspect-ratio: 1 / 1;
  animation: scale-in-kf 0.8s 0.3s ease both;
}

.hero-visual-glow {
  position: absolute;
  inset: 0;
  border-radius: 2.5rem;
  background: hsl(354 88% 62% / .30);
  filter: blur(3rem);
}

.hero-img-wrap {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid hsl(30 25% 96% / .10);
  box-shadow: var(--shadow-pop);
}

.hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night), hsl(240 25% 6% / .20), transparent);
}

/* ── Floating Chips ──────────────────────────────────────────── */
.chip {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-radius: 1rem;
  border: 1px solid hsl(30 25% 96% / .10);
  box-shadow: var(--shadow-pop);
  animation: float 6s ease-in-out infinite;
}

.chip--coins   { top: -1rem; left: -1rem;    animation-delay: 0s; }
.chip--voucher { bottom: -1rem; right: -1rem; animation-delay: 0.5s; }

.chip--streak {
  top: 33%;
  right: -0.75rem;
  display: none;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: var(--grape);
  box-shadow: var(--shadow-glow-purple);
  gap: 0.5rem;
  border: none;
  animation-delay: 1s;
}

@media (min-width: 640px) {
  .chip--coins   { top: -1.5rem; left: -1.5rem; }
  .chip--voucher { bottom: -1.5rem; right: -1.5rem; }
  .chip--streak  { display: flex; }
}

.chip-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.chip-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: hsl(30 25% 96% / .50);
  line-height: 1.2;
}

.chip-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

.chip-streak-text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) { .how { padding: 8rem 0; } }

.how-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 768px)  { .how-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .how-grid { grid-template-columns: repeat(4, 1fr); } }

/* Step card */
.step-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid hsl(30 25% 96% / .10);
  background: var(--night-2);
  padding: 1.5rem;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-8px);
  border-color: hsl(30 25% 96% / .20);
  box-shadow: var(--shadow-pop);
}

.step-img-wrap {
  margin: -1.5rem -1.5rem 1.5rem;
  height: 10rem;
  overflow: hidden;
  position: relative;
}

.step-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.step-card:hover .step-img-wrap img { transform: scale(1.1); }

.step-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--night-2), hsl(240 22% 9% / .40), transparent);
}

.step-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.step-card:hover .step-icon { transform: rotate(-6deg); }

.step-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(30 25% 96% / .40);
}

.step-title {
  margin-top: 1rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
}

.step-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(30 25% 96% / .55);
}

/* ============================================================
   BRANDS
   ============================================================ */
.brands {
  position: relative;
  overflow: hidden;
  border-top: 1px solid hsl(30 25% 96% / .10);
  border-bottom: 1px solid hsl(30 25% 96% / .10);
  background: var(--night-2);
  padding: 6rem 0;
}

@media (min-width: 768px) { .brands { padding: 8rem 0; } }

/* Featured grid */
.brands-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

@media (min-width: 640px) { .brands-grid { grid-template-columns: repeat(4, 1fr); } }

.brand-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 6rem;
  border-radius: 1rem;
  border: 1px solid hsl(30 25% 96% / .05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.brand-tile:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-pop);
}

.brand-tile span {
  font-family: 'Sora', sans-serif;
  font-size: 1.5rem;
}

/* Marquee */
.brands-marquee-wrap {
  position: relative;
  margin-top: 3.5rem;
  overflow: hidden;
}

.marquee-fade-left,
.marquee-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 6rem;
  z-index: 10;
  pointer-events: none;
}

.marquee-fade-left  { left: 0;  background: linear-gradient(to right, var(--night-2), transparent); }
.marquee-fade-right { right: 0; background: linear-gradient(to left,  var(--night-2), transparent); }

.marquee-track {
  display: flex;
  width: max-content;
  gap: 0.75rem;
}

html[dir="ltr"] .marquee-track { animation: marquee     40s linear infinite; }
html[dir="rtl"] .marquee-track { animation: marquee-rtl 40s linear infinite; }

.marquee-tile {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  min-width: 180px;
  border-radius: 0.75rem;
  padding: 0 1.5rem;
}

.marquee-tile span { font-family: 'Sora', sans-serif; font-size: 1.125rem; }

.brands-footnote {
  margin-top: 2.5rem;
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(30 25% 96% / .40);
}

/* ============================================================
   WHY NOW
   ============================================================ */
.why {
  position: relative;
  padding: 6rem 0;
  overflow: hidden;
}

@media (min-width: 768px) { .why { padding: 8rem 0; } }

.why-grid {
  margin-top: 4rem;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 640px)  { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: repeat(4, 1fr); } }

/* Perk card */
.perk-card {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  padding: 1.75rem;
}

.perk-bg-icon {
  position: absolute;
  bottom: -1rem;
  right: -1rem;
  opacity: 0.10;
  color: inherit;
  pointer-events: none;
}

.perk-content { position: relative; }

.perk-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  backdrop-filter: blur(4px);
}

.perk-title {
  margin-top: 1.25rem;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.03em;
}

.perk-desc {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.6;
}

/* Card variants */
.perk-card--coral {
  background: var(--grad-coral);
  box-shadow: var(--shadow-glow-coral);
  color: #fff;
}
.perk-card--coral .perk-icon-wrap { background: rgba(255,255,255,.15); }
.perk-card--coral .perk-desc      { opacity: .90; }

.perk-card--dark {
  background: var(--night-2);
  border: 1px solid hsl(30 25% 96% / .15);
  color: var(--ink);
}
.perk-card--dark .perk-icon-wrap { background: rgba(255,255,255,.08); }
.perk-card--dark .perk-desc      { opacity: .65; }

.perk-card--grape {
  background: var(--grape);
  box-shadow: var(--shadow-glow-purple);
  color: #fff;
}
.perk-card--grape .perk-icon-wrap { background: rgba(255,255,255,.15); }
.perk-card--grape .perk-desc      { opacity: .90; }

.perk-card--sun {
  background: var(--grad-sun);
  box-shadow: var(--shadow-glow-sun);
  color: var(--night);
}
.perk-card--sun .perk-icon-wrap { background: rgba(0,0,0,.10); }
.perk-card--sun .perk-desc      { opacity: .90; }

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
}

@media (min-width: 768px) { .cta-band { padding: 8rem 0; } }

.cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 2.5rem;
  border: 1px solid hsl(30 25% 96% / .10);
  background: var(--night-2);
  padding: 2.5rem;
  text-align: center;
}

@media (min-width: 640px) { .cta-card { padding: 4rem; } }
@media (min-width: 768px) { .cta-card { padding: 5rem; } }

.cta-blob {
  position: absolute;
  top: -8rem;
  left: 50%;
  transform: translateX(-50%);
  height: 20rem;
  width: 120%;
  background: var(--grad-hero);
  opacity: .50;
  filter: blur(100px);
  pointer-events: none;
}

.cta-title {
  position: relative;
  margin: 0 auto;
  max-width: 48rem;
  font-size: clamp(1.75rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.cta-sub {
  position: relative;
  margin: 1.25rem auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  color: hsl(30 25% 96% / .65);
}

.cta-form-wrap {
  position: relative;
  margin: 2.5rem auto 0;
  max-width: 28rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid hsl(30 25% 96% / .10);
  background: var(--night);
  padding: 2.5rem 0;
}

.footer .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 640px) { .footer .container { flex-direction: row; } }

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-mark {
  width: 2.25rem;
  height: 2.25rem;
}

.footer-brand-name {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.footer-tag {
  font-size: 0.875rem;
  color: hsl(30 25% 96% / .50);
  margin-inline-start: 0.5rem;
}

.footer-rights {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: hsl(30 25% 96% / .40);
}
