/* ============================================
   LEAZY — Design System & Styles
   ============================================ */

/* --- Google Fonts --- */
@import url('https://api.fontshare.com/v2/css?f[]=general-sans@200,300,400,500,600,700&f[]=satoshi@400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');

/* --- CSS Variables --- */
:root {
  --bg: #0D0D0F;
  --bg-card: #1C1C21;
  --bg-card-hover: #25252B;
  --accent: #F5A623;
  --accent-glow: rgba(245, 166, 35, 0.25);
  --accent-soft: rgba(245, 166, 35, 0.10);
  --text: #FFFFFF;
  --text-secondary: #5C6B80;
  --text-muted: #3A4353;
  --border: rgba(255, 255, 255, 0.06);
  --border-accent: rgba(245, 166, 35, 0.3);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'General Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --max-width: 1200px;
}

/* --- Reset --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  opacity: 0.8;
}

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

/* --- Utility --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  padding: 6px 16px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
}

.section-title {
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* --- Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(13, 13, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Great Vibes', cursive;
  font-size: 30px;
  font-weight: 400;
  color: var(--text);
  letter-spacing: -0.5px;
}

.navbar-logo .accent {
  color: var(--accent);
}

.navbar-logo .logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.navbar-cta {
  padding: 10px 24px;
  background: var(--accent);
  color: var(--bg);
  font-weight: 600;
  font-size: 14px;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: var(--transition);
}

.navbar-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content {
  max-width: 580px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 28px;
  animation: fadeInUp 0.6s ease-out;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -2.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero h1 .accent {
  background: linear-gradient(135deg, var(--accent), #FFD470);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-form {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  animation: fadeInUp 0.6s ease-out 0.3s both;
}

.hero-form input {
  flex: 1;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  min-width: 0;
}

.hero-form input::placeholder {
  color: var(--text-muted);
}

.hero-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.hero-form button {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--accent), #E8941A);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.hero-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.hero-form button:active {
  transform: translateY(0);
}

.hero-form-note {
  font-size: 13px;
  color: var(--text-muted);
  animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.hero-image img {
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.5));
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem {
  background: linear-gradient(180deg, var(--bg) 0%, #111114 100%);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 60px;
  margin-bottom: 60px;
}

.problem-card {
  padding: 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.problem-card:hover {
  border-color: rgba(255, 255, 255, 0.1);
  background: var(--bg-card-hover);
  transform: translateY(-2px);
}

.problem-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: rgba(239, 68, 68, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.problem-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.problem-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.problem-transition {
  text-align: center;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -1px;
}

.problem-transition .accent {
  background: linear-gradient(135deg, var(--accent), #FFD470);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   SOLUTION SECTION
   ============================================ */
.solution {
  background: linear-gradient(180deg, #111114 0%, var(--bg) 100%);
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.solution-card {
  padding: 40px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: var(--transition);
}

.solution-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.solution-card:hover::before {
  opacity: 1;
}

.solution-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.solution-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.solution-card p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ============================================
   PRODUCT PREVIEW SECTION
   ============================================ */
.preview {
  overflow: hidden;
}

.preview-image {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}

.preview-image img {
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.preview-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.preview-feature {
  text-align: center;
  padding: 24px;
}

.preview-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  border-radius: 12px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
}

.preview-feature h4 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.preview-feature p {
  font-size: 14px;
  color: var(--text-secondary);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta {
  background: linear-gradient(180deg, var(--bg) 0%, #111114 50%, var(--bg) 100%);
}

.cta-box {
  max-width: 640px;
  margin: 0 auto;
  padding: 60px 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-box::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.3;
  pointer-events: none;
}

.cta-box h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 16px;
  position: relative;
}

.cta-box .section-subtitle {
  margin-bottom: 32px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.cta-form {
  display: flex;
  gap: 12px;
  max-width: 460px;
  margin: 0 auto 16px;
  position: relative;
}

.cta-form input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(13, 13, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 15px;
  font-family: var(--font);
  outline: none;
  transition: var(--transition);
  min-width: 0;
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.cta-form button {
  padding: 16px 28px;
  background: linear-gradient(135deg, var(--accent), #E8941A);
  color: var(--bg);
  font-weight: 700;
  font-size: 15px;
  font-family: var(--font);
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.cta-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px var(--accent-glow);
}

.cta-note {
  font-size: 13px;
  color: var(--text-muted);
  position: relative;
}

/* ============================================
   WAITLIST DASHBOARD (Hidden by default)
   ============================================ */
.waitlist-dashboard {
  display: none;
  min-height: 100vh;
  padding-top: 100px;
}

.waitlist-dashboard.active {
  display: block;
}

.dashboard-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.dashboard-card::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  opacity: 0.2;
  pointer-events: none;
}

.dashboard-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  position: relative;
  animation: bounceIn 0.6s ease-out;
}

.dashboard-card h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 8px;
  position: relative;
}

.dashboard-card .subtitle {
  color: var(--text-secondary);
  font-size: 16px;
  margin-bottom: 32px;
  position: relative;
}

.position-display {
  padding: 24px;
  background: rgba(13, 13, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 32px;
  position: relative;
}

.position-label {
  font-size: 13px;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}

.position-number {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent), #FFD470);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
}

/* Referral Section */
.referral-section {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  position: relative;
}

.referral-section h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

.referral-section .subtitle {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.referral-link-box {
  display: flex;
  gap: 8px;
  margin-bottom: 24px;
}

.referral-link-box input {
  flex: 1;
  padding: 14px 16px;
  background: rgba(13, 13, 15, 0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--accent);
  font-size: 14px;
  font-family: var(--font);
  font-weight: 500;
  outline: none;
  min-width: 0;
}

.referral-link-box button {
  padding: 14px 20px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.referral-link-box button:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

/* Share Buttons */
.share-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 32px;
}

.share-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card-hover);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}

.share-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.share-btn.whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #fff;
}

.share-btn.twitter:hover {
  background: #1DA1F2;
  border-color: #1DA1F2;
  color: #fff;
}

/* Rewards */
.rewards {
  margin-top: 32px;
}

.rewards h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  color: var(--text-secondary);
}

.reward-tier {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(13, 13, 15, 0.4);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 10px;
  transition: var(--transition);
}

.reward-tier.achieved {
  border-color: var(--border-accent);
  background: var(--accent-soft);
}

.reward-tier-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.reward-tier-info {
  flex: 1;
  text-align: left;
}

.reward-tier-info h5 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 2px;
}

.reward-tier-info p {
  font-size: 12px;
  color: var(--text-secondary);
}

.reward-tier-count {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
}

.reward-tier-count.done {
  color: var(--accent);
}

/* Progress Bar */
.progress-section {
  margin-top: 24px;
}

.progress-bar-bg {
  width: 100%;
  height: 8px;
  background: rgba(13, 13, 15, 0.6);
  border-radius: 100px;
  overflow: hidden;
  margin-top: 8px;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), #FFD470);
  border-radius: 100px;
  transition: width 1s cubic-bezier(0.4, 0, 0.2, 1);
  width: 0%;
}

.progress-label {
  font-size: 13px;
  color: var(--text-secondary);
  display: flex;
  justify-content: space-between;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
}

.footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-brand h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 4px;
  letter-spacing: -0.3px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--text-secondary);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 14px;
  color: var(--text-secondary);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--text);
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translate(-50%, 80px);
  padding: 14px 28px;
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-sm);
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font);
  z-index: 9999;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ============================================
   LOADING STATES
   ============================================ */
.btn-loading {
  position: relative;
  pointer-events: none;
  color: transparent !important;
}

.btn-loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 2px solid rgba(13, 13, 15, 0.3);
  border-top-color: var(--bg);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

/* ============================================
   KEYFRAMES
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.1); }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .hero-image {
    order: -1;
  }

  .hero-image img {
    max-width: 400px;
  }

  .hero-form {
    justify-content: center;
  }

  .solution-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }

  .preview-features {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 80px 0;
  }

  .problem-grid {
    grid-template-columns: 1fr;
  }

  .navbar-cta {
    display: none;
  }

  .footer .container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .share-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-form {
    flex-direction: column;
  }

  .dashboard-card {
    padding: 32px 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-form {
    flex-direction: column;
  }

  .hero-form button {
    width: 100%;
  }

  .referral-link-box {
    flex-direction: column;
  }

  .cta-box {
    padding: 40px 24px;
  }
}
