/* ═══════════════════════════════════════════════════════════════
   TRAMPOLINE — Cinematic Scroll-Driven Website
   Design Tokens & Global Styles
   ═══════════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --color-navy: #0a0e27;
  --color-navy-light: #12183a;
  --color-cream: #f5f5f0;
  --color-lavender: #e8e0f0;
  --color-purple: #8B5CF6;
  --color-purple-light: #A78BFA;
  --color-white: #ffffff;
  --color-text-dark: #1a1a2e;
  --color-text-muted: #6b7280;
  --color-card-dark: #1a1a2e;
  --color-glass-bg: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.1);

  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-elastic: cubic-bezier(0.34, 1.56, 0.64, 1);

  --font-main: 'Inter', system-ui, -apple-system, sans-serif;

  --cursor-size: 8px;
  --cursor-hover-size: 40px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

body {
  font-family: var(--font-main);
  background-color: var(--color-navy);
  color: var(--color-white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Custom Cursor ── */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: var(--cursor-size);
  height: var(--cursor-size);
  background: var(--color-white);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  mix-blend-mode: difference;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo);
  will-change: transform;
}

.cursor-dot.hover {
  width: var(--cursor-hover-size);
  height: var(--cursor-hover-size);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ── Grain Texture ── */
.grain-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9990;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
}

/* ── Page Loader ── */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--color-navy);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--color-white);
  display: flex;
  overflow: hidden;
}

.loader-letter {
  display: inline-block;
  transform: translateY(100%);
}

.loader-wipe {
  position: absolute;
  inset: 0;
  background: var(--color-navy);
  clip-path: inset(0 0 0% 0);
}

/* ── Navigation ── */
.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 3rem;
  opacity: 0;
  transform: translateY(-20px);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.main-nav.visible {
  opacity: 1;
  transform: translateY(0);
}

.main-nav.scrolled {
  background: rgba(10, 14, 39, 0.85);
  backdrop-filter: blur(20px);
}

.nav-logo {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--color-white);
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  letter-spacing: 0.02em;
}

.nav-links a:hover {
  color: var(--color-white);
}

.nav-cta {
  padding: 0.6rem 1.5rem;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--color-white) !important;
  transition: background 0.3s ease, border-color 0.3s ease !important;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  cursor: none;
  position: relative;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  color: var(--color-white);
  border: none;
  box-shadow: 0 4px 20px rgba(139, 92, 246, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ── Section Base ── */
.section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 1: HERO
   ═══════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--color-navy);
  position: relative;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  will-change: transform;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, #4c3fe4, #8B5CF6);
  top: -10%;
  left: -5%;
  animation: blobMorph 15s ease-in-out infinite alternate;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, #2563eb, #60a5fa);
  top: 30%;
  right: -10%;
  animation: blobMorph 18s ease-in-out infinite alternate-reverse;
}

.blob-3 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, #7c3aed, #a78bfa);
  bottom: -10%;
  left: 30%;
  animation: blobMorph 12s ease-in-out infinite alternate;
}

@keyframes blobMorph {
  0% { transform: scale(1) rotate(0deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50% { transform: scale(1.1) rotate(5deg); border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
  100% { transform: scale(1) rotate(-5deg); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  will-change: transform;
}

.line-1 {
  width: 1px;
  height: 60%;
  top: 20%;
  left: 15%;
  animation: floatLine 8s ease-in-out infinite;
}

.line-2 {
  width: 1px;
  height: 40%;
  top: 30%;
  right: 20%;
  animation: floatLine 10s ease-in-out infinite reverse;
}

@keyframes floatLine {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(2deg); }
}

.hero-circle {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: 50%;
  top: 60%;
  left: 60%;
  animation: rotateSlow 30s linear infinite;
}

@keyframes rotateSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 3rem;
}

.hero-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1.5rem;
  opacity: 0;
}

.hero-headline {
  font-size: clamp(2.5rem, 8vw, 6.5rem);
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-white);
  margin-bottom: 2rem;
}

.word-wrap {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}

.word {
  display: inline-block;
  transform: translateY(120%);
}

.word-gradient {
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.6);
  max-width: 500px;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(30px);
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
}

.hero-testimonial {
  position: absolute;
  right: 3rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  opacity: 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 2rem;
  max-width: 320px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-purple), var(--color-purple-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  margin-bottom: 1rem;
}

.testimonial-quote {
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.testimonial-name {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-white);
}

.testimonial-role {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 2: TESTIMONIAL
   ═══════════════════════════════════════════════════════════════ */

.testimonial-section {
  background: var(--color-cream);
  padding: 10rem 3rem;
  position: relative;
}

.testimonial-deco {
  position: absolute;
  top: 5rem;
  left: 5rem;
  font-size: 20rem;
  font-family: Georgia, serif;
  line-height: 1;
  color: rgba(0, 0, 0, 0.04);
  pointer-events: none;
  user-select: none;
  will-change: transform, opacity;
}

.testimonial-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: end;
}

.testimonial-quote-large {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-text-dark);
}

.quote-line {
  display: block;
  overflow: hidden;
}

.quote-line span {
  display: inline-block;
}

.testimonial-attribution {
  text-align: right;
  padding-bottom: 0.5rem;
}

.attribution-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.attribution-role {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 3: FOUNDER STORY
   ═══════════════════════════════════════════════════════════════ */

.founder-section {
  background: var(--color-cream);
  position: relative;
  overflow: visible;
}

.founder-bg-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 50vw;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.03);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  white-space: nowrap;
  will-change: transform;
}

.founder-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 8rem 3rem;
  align-items: center;
  min-height: 100vh;
}

.founder-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 100px;
}

.founder-headline {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.founder-line {
  display: block;
  overflow: hidden;
}

.founder-line span {
  display: inline-block;
}

.founder-body {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
}

.founder-body p + p {
  margin-top: 1rem;
}

.founder-cta {
  opacity: 0;
}

.founder-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.founder-image {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.15));
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  will-change: transform;
}

.image-placeholder {
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-purple);
  opacity: 0.4;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 4: HOW IT WORKS
   ═══════════════════════════════════════════════════════════════ */

.how-it-works {
  background: var(--color-white);
  padding: 8rem 3rem;
}

.hiw-header {
  text-align: center;
  margin-bottom: 4rem;
}

.hiw-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 100px;
}

.hiw-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-text-dark);
}

.hiw-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-card {
  position: relative;
  padding: 3.5rem;
  border-radius: 24px;
  overflow: hidden;
}

.hiw-card-dark {
  background: var(--color-card-dark);
  color: var(--color-white);
}

.hiw-card-light {
  background: var(--color-cream);
  color: var(--color-text-dark);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.hiw-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(167, 139, 250, 0.1));
  filter: blur(60px);
  top: -20%;
  right: -10%;
  pointer-events: none;
}

.hiw-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple);
  margin-bottom: 1.5rem;
}

.hiw-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hiw-card ul {
  list-style: none;
  margin-bottom: 2rem;
}

.hiw-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.8;
}

.hiw-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-purple);
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 5: RESOURCES
   ═══════════════════════════════════════════════════════════════ */

.resources-section {
  background: var(--color-navy);
  padding: 8rem 3rem;
  position: relative;
}

.resources-header {
  text-align: center;
  margin-bottom: 4rem;
}

.resources-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-purple-light);
  margin-bottom: 1rem;
  padding: 0.4rem 1rem;
  background: rgba(139, 92, 246, 0.1);
  border-radius: 100px;
}

.resources-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--color-white);
}

.resources-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.resource-card {
  background: var(--color-glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-glass-border);
  border-radius: 24px;
  padding: 2.5rem;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
  will-change: transform;
}

.resource-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.resource-card-1 { z-index: 3; }
.resource-card-2 { z-index: 2; margin-top: 40px; }
.resource-card-3 { z-index: 1; margin-top: 80px; }

.resource-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(139, 92, 246, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-purple-light);
  margin-bottom: 1.5rem;
}

.resource-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.resource-card p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.resource-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-purple-light);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.3s ease;
}

.resource-link:hover {
  gap: 0.6rem;
}

/* ═══════════════════════════════════════════════════════════════
   SECTION 6: NEWSLETTER / FOOTER
   ═══════════════════════════════════════════════════════════════ */

.newsletter-section {
  background: var(--color-navy);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8rem 3rem;
  position: relative;
  overflow: hidden;
}

.newsletter-inner {
  text-align: center;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.newsletter-headline {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.newsletter-word {
  display: inline-block;
  margin-right: 0.3em;
}

.newsletter-subtext {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 2.5rem;
}

.newsletter-form {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-input-wrap {
  display: flex;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 0.4rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-input-wrap:focus-within {
  border-color: rgba(139, 92, 246, 0.5);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.newsletter-input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 0.8rem 1.2rem;
  color: var(--color-white);
  font-size: 0.95rem;
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.newsletter-input-wrap .btn {
  padding: 0.8rem 1.8rem;
  white-space: nowrap;
}

.footer-watermark {
  position: absolute;
  bottom: -5vw;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20vw;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.03);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
  line-height: 1;
}

/* ── WhatsApp FAB ── */
.whatsapp-fab {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 50;
  text-decoration: none;
  transition: transform 0.3s var(--ease-out-expo), box-shadow 0.3s ease;
  animation: whatsappPulse 5s ease-in-out infinite;
}

.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6); }
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .hero-testimonial {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    margin-top: 3rem;
    padding: 0 3rem;
  }

  .hero-content {
    padding-top: 8rem;
    padding-bottom: 2rem;
  }

  .testimonial-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .testimonial-attribution {
    text-align: left;
  }

  .founder-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .resources-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .resource-card-3 {
    margin-top: 0;
    grid-column: span 2;
    max-width: 50%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  body {
    cursor: auto;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
  }

  .main-nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 6rem 0 4rem;
  }

  .hero-content {
    padding: 0 1.5rem;
  }

  .hero-headline {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .hero-testimonial {
    padding: 0 1.5rem;
  }

  .testimonial-section {
    padding: 6rem 1.5rem;
  }

  .testimonial-deco {
    font-size: 10rem;
    top: 2rem;
    left: 1rem;
  }

  .founder-inner {
    padding: 4rem 1.5rem;
    min-height: auto;
  }

  .founder-bg-number {
    font-size: 30vw;
  }

  .how-it-works {
    padding: 4rem 1.5rem;
  }

  .hiw-cards {
    grid-template-columns: 1fr;
  }

  .resources-section {
    padding: 4rem 1.5rem;
  }

  .resources-cards {
    grid-template-columns: 1fr;
  }

  .resource-card-2,
  .resource-card-3 {
    margin-top: 0;
    grid-column: auto;
    max-width: none;
  }

  .newsletter-section {
    padding: 4rem 1.5rem;
  }

  .newsletter-input-wrap {
    flex-direction: column;
    border-radius: 20px;
  }

  .newsletter-input-wrap .btn {
    width: 100%;
  }

  .footer-watermark {
    font-size: 25vw;
  }
}

/* ═══════════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-blob,
  .hero-line,
  .hero-circle,
  .testimonial-deco,
  .founder-bg-number {
    animation: none !important;
  }
}
