/* ============================================
   BLUROO.AI — Marketing Site Styles
   Mercury.com-inspired design language
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Colors */
  --bg-cream: #F5F0EB;
  --bg-white: #FEFCF9;
  --nav-dark: #0A3AB5;
  --text-heading: #272735;
  --text-body: #535461;
  --text-light: #8A8A9A;
  --accent-blue: #1C1C1E;
  --accent-blue-hover: #0E0E10;
  --accent-blue-light: rgba(28, 28, 30, 0.08);
  --border-light: rgba(0, 0, 0, 0.06);
  --border-medium: rgba(0, 0, 0, 0.1);
  --white: #FFFFFF;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-pad: clamp(60px, 8vw, 120px);
  --container-max: 1200px;
  --container-wide: 1400px;
  --nav-height: 72px;

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --duration: 0.3s;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-cream);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease);
}

button {
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.container--wide {
  max-width: var(--container-wide);
}

/* --- Utility --- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all var(--duration) var(--ease);
  letter-spacing: -0.01em;
  white-space: nowrap;
}

.btn--primary {
  background: #0A3AB5;
  color: var(--white);
}
.btn--primary:hover {
  background: #082E94;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 58, 181, 0.3);
}

.btn--secondary {
  background: transparent;
  color: var(--text-heading);
  border: 1.5px solid var(--border-medium);
}
.btn--secondary:hover {
  border-color: var(--text-heading);
  background: rgba(0,0,0,0.02);
}

.btn--ghost {
  background: transparent;
  color: var(--accent-blue);
  padding: 12px 4px;
}
.btn--ghost:hover {
  color: var(--accent-blue-hover);
}
.btn--ghost svg {
  transition: transform var(--duration) var(--ease);
}
.btn--ghost:hover svg {
  transform: translateX(3px);
}

.btn--nav {
  background: var(--white);
  color: var(--nav-dark);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 6px;
}
.btn--nav:hover {
  background: rgba(255,255,255,0.9);
}

.btn--nav-outline {
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.2);
}
.btn--nav-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn--large {
  font-size: 16px;
  padding: 16px 36px;
  border-radius: 10px;
}

.btn--white {
  background: var(--white);
  color: var(--accent-blue);
  font-weight: 600;
}
.btn--white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}


/* ============================================
   ANNOUNCEMENT BAR
   ============================================ */
.announcement-bar {
  background: var(--accent-blue);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 600;
}
.announcement-bar a:hover {
  opacity: 0.85;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--nav-dark);
  transition: background var(--duration) var(--ease), box-shadow var(--duration) var(--ease);
}
.navbar.has-announcement {
  top: 38px;
}
.navbar.scrolled {
  background: rgba(10, 58, 181, 0.95);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.navbar.scrolled.has-announcement {
  top: 0;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 32px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.03em;
}
.navbar__logo-img {
  height: 36px;
  width: auto;
  filter: brightness(0) invert(1);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.navbar__menu a {
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: color var(--duration) var(--ease), background var(--duration) var(--ease);
}
.navbar__menu a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile nav toggle */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 8px;
  cursor: pointer;
}
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--duration) var(--ease);
}
.navbar__toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.navbar__toggle.active span:nth-child(2) {
  opacity: 0;
}
.navbar__toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--nav-dark);
  padding: 32px 24px;
  z-index: 999;
  overflow-y: auto;
}
.mobile-menu.active {
  display: block;
}
.mobile-menu__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu__list a {
  display: block;
  color: rgba(255,255,255,0.8);
  font-size: 18px;
  font-weight: 500;
  padding: 14px 16px;
  border-radius: 8px;
  transition: all var(--duration) var(--ease);
}
.mobile-menu__list a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.mobile-menu__actions {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-menu__actions .btn {
  width: 100%;
  justify-content: center;
}


/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  padding-top: calc(var(--nav-height) + 38px + clamp(48px, 6vw, 80px));
  padding-bottom: 0;
  background: var(--bg-cream);
  text-align: center;
  /* NOTE: no overflow:hidden — breaks position:sticky on zoom track */
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-blue-light);
  color: var(--accent-blue);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}
.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero__title {
  font-size: clamp(40px, 6vw, 76px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.05;
  letter-spacing: -0.035em;
  max-width: 900px;
  margin: 0 auto 24px;
}

.hero__subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-body);
  line-height: 1.6;
  max-width: 580px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero__cta-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 64px;
}

/* Email capture form */
.hero__email-form {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 6px 6px 6px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-md), 0 0 0 1px var(--border-light);
  max-width: 480px;
  margin: 0 auto 16px;
  transition: box-shadow var(--duration) var(--ease);
}
.hero__email-form:focus-within {
  box-shadow: var(--shadow-md), 0 0 0 2px var(--accent-blue);
}
.hero__email-form input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  font-family: var(--font-sans);
  background: transparent;
  color: var(--text-heading);
  min-width: 0;
}
.hero__email-form input::placeholder {
  color: var(--text-light);
}
.hero__email-form .btn {
  flex-shrink: 0;
}

.hero__cta-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
}

/* Product screenshot with perspective tilt */
/* Parallax zoom hero — sticky scroll */
.hero__zoom-track {
  position: relative;
  /* Extra height = scroll distance for the zoom animation */
  height: 300vh;
  margin-top: 40px;
}
.hero__zoom-sticky {
  position: sticky;
  top: 100px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: calc(100vh - 120px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  overflow: hidden;
  /* Positioning context for the full-res dashboard overlay */
}
.hero__zoom-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow-xl);
  transform-origin: 49.83% 49.26%;
  will-change: transform;
}
.hero__zoom-office {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__zoom-screen {
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 2;
  /* Size/position set by JS to match screen location at current zoom */
}


/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  padding: 48px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
}
.trust-bar__label {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  color: var(--text-body);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.trust-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 72px);
  flex-wrap: wrap;
  padding: 0 24px;
}
.trust-bar__logo {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.45;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity var(--duration) var(--ease);
}
.trust-bar__logo:hover {
  opacity: 0.7;
}


/* ============================================
   FEATURES OVERVIEW
   ============================================ */
.features {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
}
.features__header {
  text-align: center;
  margin-bottom: clamp(40px, 5vw, 72px);
}
.features__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.features__title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 700px;
  margin: 0 auto 16px;
}
.features__subtitle {
  font-size: 22px;
  color: var(--text-body);
  max-width: 660px;
  margin: 0 auto;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: 14px;
  padding: 32px 28px;
  transition: all var(--duration) var(--ease);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.feature-card:hover .feature-card__icon svg {
  stroke: var(--nav-dark);
}
.feature-card:hover .feature-card__title {
  color: var(--nav-dark);
}
.feature-card__icon {
  width: 48px;
  height: 48px;
  background: var(--accent-blue-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.feature-card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-blue);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.feature-card__title {
  font-size: 17px;
  font-weight: 650;
  color: var(--text-heading);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card__desc {
  font-size: 14.5px;
  color: var(--text-body);
  line-height: 1.55;
}


/* ============================================
   PRODUCT SHOWCASE
   ============================================ */
.showcase {
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
}
.showcase__item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 120px);
}
.showcase__item:last-child {
  margin-bottom: 0;
}
.showcase__item--reverse {
  direction: rtl;
}
.showcase__item--reverse > * {
  direction: ltr;
}

.showcase__content {
  max-width: 480px;
}
.showcase__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.showcase__title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--text-heading);
  line-height: 1.2;
  letter-spacing: -0.025em;
  margin-bottom: 16px;
}
.showcase__desc {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 24px;
}
.showcase__image-frame {
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}
.showcase__image-placeholder {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #F0EEF6 0%, #E8E5F0 50%, #F0EEF6 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
}
.showcase__image-placeholder svg {
  width: 40px;
  height: 40px;
  opacity: 0.4;
}


/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial {
  padding: var(--section-pad) 0;
  background: var(--bg-white);
  text-align: center;
}
.testimonial__inner {
  max-width: 720px;
  margin: 0 auto;
}
.testimonial__quote {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.45;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  font-style: italic;
}
.testimonial__quote::before {
  content: '';
  display: none;
}
.testimonial__author {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-heading);
}
.testimonial__role {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 4px;
}


/* ============================================
   STATS BAR
   ============================================ */
.stats {
  padding: clamp(48px, 6vw, 80px) 0;
  background: var(--nav-dark);
  color: var(--white);
}
.stats__grid {
  text-align: center;
}
.stats__row {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 32px;
}
.stats__item {
  width: 200px;
}
.stats__row:last-child {
  margin-bottom: 0;
}
.stats__item-number {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 8px;
}
.stats__item-label {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}


/* ============================================
   ABOUT / CREDIBILITY
   ============================================ */
.about {
  padding: var(--section-pad) 0;
  background: var(--bg-cream);
}
.about__inner {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.about__photo-frame {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #E8E5F0 0%, #D8D5E8 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 14px;
  font-weight: 500;
  box-shadow: var(--shadow-md);
}
.about__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.about__name {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--text-heading);
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.about__title-text {
  font-size: 17px;
  color: var(--accent-blue);
  font-weight: 600;
  margin-bottom: 20px;
}
.about__bio {
  font-size: 16px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 24px;
}
.about__credentials {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about__credentials li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.5;
}
.about__credentials li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent-blue);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}


/* ============================================
   PRESS / MEDIA
   ============================================ */
.press {
  padding: clamp(48px, 6vw, 72px) 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}
.press__label {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(32px, 5vw, 64px);
  flex-wrap: wrap;
  padding: 0 24px;
}
.press__logo {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-light);
  opacity: 0.4;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity var(--duration) var(--ease);
}
.press__logo:hover {
  opacity: 1;
  color: var(--nav-dark);
}


/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  padding: var(--section-pad) 0;
  background: var(--accent-blue);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 40%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.final-cta__title {
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  position: relative;
}
.final-cta__subtitle {
  font-size: 18px;
  opacity: 0.85;
  margin-bottom: 40px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.final-cta__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative;
}


/* ============================================
   PRESS / CREDIBILITY BAR
   ============================================ */
.press-bar {
  padding: 60px 0;
  background: var(--bg-cream);
  border-top: 1px solid var(--border-light);
}

.press-bar__label {
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  color: var(--text-body);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.press-bar__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.press-bar__logo {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-heading);
  opacity: 0.25;
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: opacity var(--duration) var(--ease), color var(--duration) var(--ease);
}

.press-bar__logo:hover {
  opacity: 1;
  color: var(--nav-dark);
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--nav-dark);
  color: rgba(255,255,255,0.7);
  padding: clamp(48px, 6vw, 80px) 0 0;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

/* Footer logo */
.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: white;
}
.footer__logo-full {
  height: 96px;
  width: auto;
  filter: brightness(0) invert(1);
}

.footer__brand-desc {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.5);
  margin-top: 16px;
  max-width: 280px;
}
.footer__social {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.footer__social a {
  color: rgba(255,255,255,0.45);
  transition: color var(--duration) var(--ease);
}
.footer__social a:hover {
  color: var(--white);
}
.footer__social svg {
  width: 20px;
  height: 20px;
}

.footer__col-title {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__links a {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  transition: color var(--duration) var(--ease);
}
.footer__links a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__disclaimer {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
  max-width: 500px;
}
.footer__copyright {
  font-size: 12px;
  color: rgba(255,255,255,0.35);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* staggered children */
.stagger-children .fade-up:nth-child(1) { transition-delay: 0.05s; }
.stagger-children .fade-up:nth-child(2) { transition-delay: 0.1s; }
.stagger-children .fade-up:nth-child(3) { transition-delay: 0.15s; }
.stagger-children .fade-up:nth-child(4) { transition-delay: 0.2s; }
.stagger-children .fade-up:nth-child(5) { transition-delay: 0.25s; }
.stagger-children .fade-up:nth-child(6) { transition-delay: 0.3s; }


/* ============================================
   RESPONSIVE
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .showcase__item {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .showcase__item--reverse {
    direction: ltr;
  }
  .showcase__content {
    max-width: 100%;
  }
  .about__inner {
    grid-template-columns: 200px 1fr;
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 32px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
  .stats__row {
    flex-wrap: wrap;
    gap: 32px 48px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .navbar__menu,
  .navbar__actions {
    display: none;
  }
  .navbar__toggle {
    display: flex;
  }

  .hero {
    padding-top: calc(var(--nav-height) + 38px + 40px);
  }
  .hero__email-form {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }
  .hero__email-form input {
    width: 100%;
    text-align: center;
    padding: 8px 0;
  }
  .hero__email-form .btn {
    width: 100%;
  }
  .hero__zoom-inner {
    border-radius: 8px;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .about__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .about__photo-frame {
    max-width: 200px;
    margin: 0 auto;
  }
  .about__credentials {
    align-items: center;
  }

  .stats__row {
    flex-wrap: wrap;
    gap: 24px;
  }

  .trust-bar__logos,
  .press__logos {
    gap: 24px;
  }

  .final-cta__actions {
    flex-direction: column;
  }
  .final-cta__actions .btn {
    width: 100%;
    max-width: 320px;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .hero__cta-group {
    flex-direction: column;
    gap: 12px;
  }
  .hero__cta-group .btn {
    width: 100%;
    max-width: 320px;
  }
  .hero__cta-links {
    flex-direction: column;
    gap: 12px;
  }
  .stats__row {
    flex-wrap: wrap;
    gap: 20px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
