:root {
  --background: 0 0% 100%;
  --foreground: 267 81% 30%;
  --card: 0 0% 100%;
  --card-foreground: 267 81% 30%;
  --primary: 267 81% 30%;
  --primary-foreground: 0 0% 100%;
  --secondary: 267 40% 85%;
  --secondary-foreground: 267 81% 30%;
  --accent: 68 97% 54%;
  --accent-foreground: 267 81% 30%;
  --muted: 40 21% 91%;
  --muted-foreground: 267 30% 45%;
  --destructive: 343 100% 55%;
  --destructive-foreground: 0 0% 100%;
  --border: 40 15% 88%;
  --input: 40 15% 88%;
  --ring: 267 81% 30%;
  --radius: 0.75rem;
  --ll-purple: 267 81% 30%;
  --ll-purple-80: 267 65% 44%;
  --ll-lime: 87 100% 75%;
  --ll-lime-50: 87 60% 85%;
  --ll-lime-15: 87 40% 95%;
  --gradient-hero: linear-gradient(135deg, hsl(267, 81%, 30%) 0%, hsl(267, 65%, 25%) 100%);
  --gradient-lime: linear-gradient(135deg, hsl(87, 100%, 75%) 0%, hsl(87, 90%, 65%) 100%);
  --gradient-subtle: linear-gradient(180deg, hsl(40, 21%, 91%) 0%, hsl(0, 0%, 100%) 100%);
  --shadow-sm: 0 2px 8px -2px hsl(267 81% 30% / 0.08);
  --shadow-md: 0 8px 24px -8px hsl(267 81% 30% / 0.12);
  --shadow-lg: 0 16px 48px -12px hsl(267 81% 30% / 0.18);
  --shadow-lime: 0 8px 24px -8px hsl(87 100% 75% / 0.4);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Open Sans', system-ui, sans-serif;
  color: hsl(var(--foreground));
  background: hsl(var(--background));
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.antialiased {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; color: inherit; }
input { font: inherit; }

h1 {
  font-family: 'Arvo', Georgia, serif;
  font-style: italic;
  font-weight: 400;
}

h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', system-ui, sans-serif;
  font-weight: 600;
}

.min-h-screen { min-height: 100vh; }

.container-site {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px) { .container-site { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container-site { padding: 0 2rem; } }

.text-gradient-primary {
  background: var(--gradient-hero);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  display: inline-block;
  vertical-align: middle;
}
.icon--sm { width: 1rem; height: 1rem; }
.icon--xs { width: 0.75rem; height: 0.75rem; }
.icon--lg { width: 2rem; height: 2rem; }
.icon--white { color: hsl(var(--primary-foreground)); }
.icon--primary { color: hsl(var(--primary)); }
.icon--accent { color: hsl(var(--accent)); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
  text-decoration: none;
  line-height: 1;
}
.btn:focus-visible {
  outline: 2px solid hsl(var(--ring));
  outline-offset: 2px;
}

.btn--hero {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
  border-radius: 9999px;
  box-shadow: var(--shadow-md);
  padding: 0 2rem;
  height: 3rem;
}
.btn--hero:hover {
  background: hsl(var(--ll-purple-80));
  box-shadow: var(--shadow-lg);
}

.btn--hero-outline {
  border: 2px solid hsl(var(--primary));
  background: transparent;
  color: hsl(var(--primary));
  border-radius: 9999px;
  padding: 0 2rem;
  height: 3rem;
}
.btn--hero-outline:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-foreground));
}

.btn--lime {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
  border-radius: 9999px;
  box-shadow: var(--shadow-lime);
  padding: 0 2rem;
  height: 3rem;
}
.btn--lime:hover { filter: brightness(1.05); }

.btn--lg { height: auto; min-height: 3rem; padding: 0.75rem 1.25rem; font-size: 0.9375rem; max-width: 100%; white-space: normal; text-align: center; }
@media (min-width: 480px) { .btn--lg { height: 3rem; padding: 0 2rem; font-size: 1rem; white-space: nowrap; } }
.btn--xl { height: 3.5rem; padding: 0 2.5rem; font-size: 1.125rem; }
.btn--full { width: 100%; }
.btn--rounded { border-radius: 9999px; }

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: hsl(var(--background) / 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid hsl(var(--border));
  transition: all 0.3s ease;
}
.header--scrolled {
  background: hsl(var(--background) / 0.95);
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
@media (min-width: 768px) { .header__inner { height: 5rem; } }

.header__logo { display: flex; align-items: center; padding-top: 3px; }
.header__logo-img { height: 6rem; width: auto; }
@media (min-width: 768px) { .header__logo-img { height: 7.5rem; } }

.header__nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) { .header__nav { display: flex; } }

.header__nav-link {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(var(--muted-foreground));
  border-radius: 0.5rem;
  transition: color 0.2s;
}
.header__nav-link:hover { color: hsl(var(--primary)); }

.header__cta-wrap {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .header__cta-wrap { display: flex; } }

.header__menu-btn {
  display: flex;
  padding: 0.5rem;
  color: hsl(var(--foreground));
  transition: color 0.2s;
}
.header__menu-btn .icon { width: 1.5rem; height: 1.5rem; }
.header__menu-btn .icon--close { display: none; }
.header__menu-btn[aria-expanded="true"] .icon--menu { display: none; }
.header__menu-btn[aria-expanded="true"] .icon--close { display: block; }
@media (min-width: 1024px) { .header__menu-btn { display: none; } }

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: hsl(var(--background));
  border-bottom: 1px solid hsl(var(--border));
  overflow: hidden;
}
.mobile-menu[aria-hidden="false"] { display: block; animation: slideDown 0.2s ease-out; }
@media (min-width: 1024px) { .mobile-menu { display: none !important; } }

.mobile-menu__inner { padding: 1rem 0; }
.mobile-menu__link {
  display: block;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  color: hsl(var(--foreground));
  transition: background 0.2s;
}
.mobile-menu__link:hover { background: hsl(var(--muted)); }

@keyframes slideDown {
  from { opacity: 0; max-height: 0; }
  to { opacity: 1; max-height: 500px; }
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--gradient-subtle);
}
.hero__float-icon {
  display: none;
}
.hero__float-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
}

.hero__container { position: relative; z-index: 10; }

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; gap: 4rem; max-width: 48rem; margin: 0 auto; }
}

.hero__content { text-align: center; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  background: hsl(var(--primary));
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  white-space: nowrap;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 12px hsla(var(--primary), 0.3);
  max-width: 100%;
}
@media (min-width: 640px) { .hero__badge { font-size: 1rem; padding: 0.625rem 1.5rem; } }
.hero__badge-dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 9999px;
  background: hsl(var(--accent));
  animation: pulse 2s ease-in-out infinite;
  box-shadow: 0 0 6px hsl(var(--accent));
}
.hero__badge-link {
  color: hsl(var(--accent));
  text-decoration: underline;
  text-underline-offset: 2px;
  font-weight: 700;
  transition: color 0.2s;
}
.hero__badge-link:hover { color: #fff; }

.hero__heading {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .hero__heading { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__heading { font-size: 3.75rem; } }

.hero__subheading {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) { .hero__subheading { font-size: 1.25rem; } }

.hero__benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero__benefits { flex-direction: row; } }

.hero__benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(var(--foreground));
}
.hero__benefit .icon { color: hsl(var(--accent)); }
.hero__benefit-text { font-weight: 500; }

.hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) { .hero__ctas { flex-direction: row; } }
@media (min-width: 1024px) { .hero__ctas { justify-content: center; } }

/* Hero Visual */
.hero__visual {
  display: none;
  position: relative;
}
@media (min-width: 1024px) { .hero__visual { display: none; } }

.hero__circles {
  position: relative;
  aspect-ratio: 1;
  max-width: 32rem;
  margin: 0 auto;
}
.hero__circle {
  position: absolute;
  border-radius: 9999px;
}
.hero__circle--outer {
  inset: 0;
  border: 2px solid hsl(var(--ll-lime-50));
  animation: pulseSoft 3s ease-in-out infinite;
}
.hero__circle--mid {
  inset: 2rem;
  border: 2px solid hsl(var(--secondary));
}
.hero__circle--inner {
  inset: 4rem;
  background: var(--gradient-hero);
  box-shadow: var(--shadow-lg);
}
.hero__circle-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary-foreground));
  text-align: center;
}
.hero__stat-main {
  font-size: 3rem;
  font-family: 'Arvo', Georgia, serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.hero__stat-label {
  font-size: 0.875rem;
  opacity: 0.8;
}

.hero__floating-stat {
  position: absolute;
  background: hsl(var(--card));
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(var(--border));
}
.hero__floating-stat--left {
  left: -1rem;
  top: 25%;
  animation: floatAlt 4s ease-in-out infinite;
}
.hero__floating-stat--right {
  right: -1rem;
  bottom: 33%;
  animation: floatAlt 4s ease-in-out infinite 0.5s;
}
.hero__floating-value {
  font-size: 1.5rem;
  font-family: 'Arvo', Georgia, serif;
  font-weight: 700;
}
.hero__floating-value--primary { color: hsl(var(--primary)); }
.hero__floating-value--accent { color: hsl(var(--accent)); }
.hero__floating-label {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
}

/* ===== VIDEO DIALOG ===== */
.video-dialog {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.video-dialog[aria-hidden="false"] {
  display: flex;
}
.video-dialog__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.8);
  animation: fadeIn 0.2s ease;
}
.video-dialog__content {
  position: relative;
  width: 100%;
  max-width: 48rem;
  background: #000;
  border-radius: 0.5rem;
  overflow: hidden;
  animation: scaleIn 0.2s ease;
}
.video-dialog__close {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  z-index: 10;
  color: white;
  padding: 0.5rem;
  background: rgba(0,0,0,0.5);
  border-radius: 9999px;
}
.video-dialog__close .icon { width: 1.5rem; height: 1.5rem; }
.video-dialog__video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* ===== SECTIONS ===== */
.section {
  padding: 5rem 0;
}
@media (min-width: 768px) { .section { padding: 7rem 0; } }

#problem { padding-bottom: 3rem; }
@media (min-width: 768px) { #problem { padding-bottom: 4.2rem; } }

.section--muted { background: hsl(var(--muted) / 0.5); }
.section--light { background: hsl(var(--muted) / 0.3); }
.section--hero-bg {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
  overflow: hidden;
}

.section__header {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto 4rem;
}
.section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .section__title { font-size: 2.25rem; } }

.section__subtitle {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
}
.section__subtitle--light {
  color: hsl(var(--primary-foreground) / 0.8);
}
.section__strapline {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  margin-top: 1rem;
}

.section__hr {
  border: none;
  height: 3px;
  background: hsl(var(--primary));
  max-width: 6rem;
  margin: 0 auto 4rem;
  border-radius: 2px;
}

.section__cta { text-align: center; margin-top: 3rem; }
.section__footnote { font-size: 0.8rem; color: hsla(0, 0%, 100%, 0.6); text-align: center; margin-top: 2rem; font-style: italic; }

/* ===== CARDS ===== */
.card-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.card-grid--3 { grid-template-columns: 1fr; }
@media (min-width: 768px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.card {
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid hsl(var(--border));
}
.card--problem {
  background: hsl(var(--card));
  border-color: hsl(var(--destructive) / 0.2);
  box-shadow: var(--shadow-sm);
}
.card--solution {
  background: hsl(var(--card));
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.3s ease;
}
.card--solution:hover { box-shadow: var(--shadow-md); }

.card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.card__icon .icon { width: 1.5rem; height: 1.5rem; }

.card__icon--destructive {
  background: hsl(var(--destructive) / 0.1);
}
.card__icon--destructive .icon { color: hsl(var(--destructive)); }

.card__icon--brand {
  background: hsl(var(--ll-lime) / 0.15);
}
.card__icon--brand .icon { color: hsl(var(--ll-purple)); }

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.card__subtitle {
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--ll-purple));
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
}
.card__text {
  color: hsl(var(--muted-foreground));
  font-size: 0.9375rem;
  line-height: 1.6;
}

/* ===== MARQUEE / FOUNDING MEMBERS ===== */
.marquee {
  position: relative;
  margin-bottom: 3rem;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}
.marquee__track {
  display: flex;
  animation: scrollLeft 30s linear infinite;
  width: max-content;
}
.marquee--paused .marquee__track {
  animation-play-state: paused;
}
.section__cta--with-toggle {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.section__cta-spacer {
  flex: 1;
}
.marquee__toggle {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 9999px;
  border: 2px solid hsl(var(--accent));
  background: hsl(var(--primary));
  color: hsl(var(--accent));
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.2s;
}
.marquee__toggle:hover { opacity: 1; }
.marquee__icon { width: 1rem; height: 1rem; }

.member-card {
  flex-shrink: 0;
  width: 12rem;
  margin: 0 1rem;
  background: #EDEAE3;
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
  border: 1px solid hsl(var(--primary) / 0.12);
  transition: background 0.2s, box-shadow 0.2s;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}
.member-card:hover {
  background: #e4e0d8;
  box-shadow: 0 4px 16px hsl(var(--primary) / 0.15);
}

.member-card__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: hsl(var(--primary) / 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.member-card__icon .icon { width: 2rem; height: 2rem; color: hsl(var(--accent)); }

.member-card__link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: inherit;
  border-radius: 0.75rem;
  padding: 0.5rem;
  margin: -0.5rem;
  transition: background 0.2s, transform 0.2s;
}
.member-card__link:hover {
  background: hsl(var(--primary) / 0.12);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px hsl(var(--primary) / 0.15);
}
.member-card__link:hover .member-card__name {
  color: hsl(var(--primary));
}

.member-card__logo {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
}
.member-card__logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.member-card__name {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.25rem;
  color: hsl(var(--primary));
}
.member-card__industry {
  font-size: 0.75rem;
  color: hsl(var(--primary) / 0.55);
  margin-bottom: 0.5rem;
}

.member-card__badges {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.375rem;
  margin-top: auto;
}
.member-card__badge-img {
  width: 100%;
  max-width: 8rem;
  height: auto;
  border-radius: 1rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0 0.375rem;
  border-radius: 9999px;
  font-size: 0.625rem;
  font-weight: 600;
  border: 1px solid;
  line-height: 1.6;
}
.badge--founder {
  background: hsl(var(--accent) / 0.2);
  color: hsl(var(--accent));
  border-color: hsl(var(--accent) / 0.3);
}
.badge--partner {
  background: hsl(var(--primary-foreground) / 0.2);
  color: hsl(var(--primary-foreground));
  border-color: hsl(var(--primary-foreground) / 0.3);
}

/* ===== LEAD MAGNET ===== */
.lead-magnet {
  max-width: 42rem;
  margin: 0 auto;
  text-align: center;
}
.lead-magnet__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: hsl(var(--accent) / 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.lead-magnet__heading {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (min-width: 768px) { .lead-magnet__heading { font-size: 2.25rem; } }

.lead-magnet__subheading-italic {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 0.5rem;
  font-style: italic;
}
.lead-magnet__description {
  font-size: 1.125rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.lead-magnet__form { position: relative; }
.lead-magnet__form-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  max-width: 28rem;
  margin: 0 auto;
}
@media (min-width: 640px) { .lead-magnet__form-row { flex-direction: row; } }

.lead-magnet__input {
  flex: 1;
  height: 3rem;
  border-radius: 9999px;
  padding: 0 1.25rem;
  border: 2px solid hsl(var(--border));
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-size: 0.9375rem;
  outline: none;
  transition: border-color 0.2s;
}
.lead-magnet__input:focus { border-color: hsl(var(--primary)); }
.lead-magnet__input::placeholder { color: hsl(var(--muted-foreground)); }

.lead-magnet__success[hidden] {
  display: none;
}
.lead-magnet__success {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  background: hsl(var(--accent) / 0.15);
  max-width: 28rem;
  margin: 0 auto;
}
.lead-magnet__success .icon { flex-shrink: 0; }
.lead-magnet__success-text { font-weight: 500; color: hsl(var(--foreground)); }

.lead-magnet__privacy {
  font-size: 0.75rem;
  color: hsl(var(--muted-foreground));
  margin-top: 1rem;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--gradient-hero);
  color: hsl(var(--primary-foreground));
}
.footer__inner { padding: 3rem 1rem; }
@media (min-width: 640px) { .footer__inner { padding: 3rem 1.5rem; } }
@media (min-width: 768px) { .footer__inner { padding: 4rem 1.5rem; } }
@media (min-width: 1024px) { .footer__inner { padding: 4rem 2rem; } }

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer__grid { grid-template-columns: 2fr 1fr 1fr; gap: 3rem; } }

.footer__logo { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.footer__description {
  color: hsl(var(--primary-foreground) / 0.8);
  max-width: 24rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.footer__social { display: flex; gap: 0.75rem; }
.footer__social-link {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: hsl(var(--primary-foreground) / 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.footer__social-link:hover {
  background: hsl(var(--accent));
  color: hsl(var(--accent-foreground));
}

.footer__heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer__link {
  color: hsl(var(--primary-foreground) / 0.8);
  transition: color 0.2s;
}
.footer__link:hover { color: hsl(var(--accent)); }

.footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.8);
}
.footer__contact-item .icon { margin-top: 0.125rem; }
.footer__contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: hsl(var(--primary-foreground) / 0.8);
  transition: color 0.2s;
}
.footer__contact-link:hover { color: hsl(var(--accent)); }

.footer__bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(var(--primary-foreground) / 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__bottom { flex-direction: row; justify-content: space-between; }
}
.footer__copyright {
  color: hsl(var(--primary-foreground) / 0.6);
  font-size: 0.875rem;
}
.footer__tagline {
  font-size: 0.875rem;
  color: hsl(var(--primary-foreground) / 0.6);
}

/* ===== 404 ===== */
.error-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.error-page__title {
  font-size: 6rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 1rem;
}
.error-page__text {
  font-size: 1.25rem;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  background: hsl(var(--card));
  color: hsl(var(--foreground));
  box-shadow: var(--shadow-lg);
  border: 1px solid hsl(var(--border));
  transform: translateY(120%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 24rem;
}
.toast--visible {
  transform: translateY(0);
  opacity: 1;
}
.toast__close {
  padding: 0.25rem;
  opacity: 0.5;
  transition: opacity 0.2s;
}
.toast__close:hover { opacity: 1; }

/* ===== ANIMATIONS ===== */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@keyframes floatAlt {
  0%, 100% { transform: translateY(-8px); }
  50% { transform: translateY(8px); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
@keyframes pulseSoft {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.8; }
}
@keyframes scrollLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

/* Scroll animations */
[data-animate] {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-animate="fade-up"] { transform: translateY(30px); }
[data-animate="fade-in"] { transform: none; }
[data-animate="fade-right"] { transform: translateX(-20px); }
[data-animate="scale-in"] { transform: scale(0.9); }

[data-animate].is-visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}

/* ===== JOIN PAGE ===== */
.header--join { position: relative; }

.btn--back {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: hsl(var(--primary));
  background: transparent;
  border: 1.5px solid hsl(var(--border));
  border-radius: 2rem;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
.btn--back:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--secondary) / 0.15);
}

.join-page {
  min-height: 100vh;
  padding: 5rem 1.25rem 4rem;
  background: hsl(0 0% 98%);
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

.join-page__container {
  max-width: 32rem;
  width: 100%;
  margin: 0 auto;
}

.join-page__header {
  text-align: center;
  margin-bottom: 2rem;
}

.join-page__title {
  font-family: 'Arvo', serif;
  font-size: clamp(1.625rem, 4vw, 2rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
}

.join-page__subtitle {
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
  line-height: 1.6;
}

.join-page__card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.75rem;
  box-shadow: 0 1px 3px hsl(0 0% 0% / 0.04), 0 4px 16px hsl(0 0% 0% / 0.06);
  border: 1px solid hsl(0 0% 92%);
}

@media (min-width: 640px) {
  .join-page__card { padding: 2.5rem; }
}

@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateX(16px); }
  to { opacity: 1; transform: translateX(0); }
}

.join-screen {
  display: none;
}

.join-screen--active {
  display: block;
  animation: fadeSlideIn 0.3s ease forwards;
}

.join-screen__step {
  margin-bottom: 1.25rem;
}

.join-question__number {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: hsl(var(--primary));
  color: #fff;
  font-family: 'Arvo', serif;
  font-size: 0.9375rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.join-screen__question {
  font-family: 'Arvo', serif;
  font-size: clamp(1.0625rem, 2.5vw, 1.25rem);
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 0.5rem;
  line-height: 1.4;
}

.join-screen__subtext {
  font-size: 0.875rem;
  color: hsl(var(--muted-foreground));
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.join-screen__question + .join-yesno {
  margin-top: 1.5rem;
}

.join-screen__text {
  font-size: 1rem;
  color: hsl(var(--foreground));
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.join-screen__text--success {
  color: hsl(152 55% 38%);
  font-weight: 600;
}

.join-screen__actions {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.join-screen__restart {
  margin-top: 1.5rem;
  text-align: center;
}

.join-yesno {
  display: flex;
  gap: 0.75rem;
}

.btn--option {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border-radius: 2rem;
  border: 1.5px solid hsl(0 0% 85%);
  background: #fff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: hsl(var(--foreground));
  cursor: pointer;
  transition: border-color 0.2s, background-color 0.2s, box-shadow 0.2s, transform 0.12s;
}

.btn--option:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--secondary) / 0.12);
  box-shadow: 0 2px 8px hsl(267 81% 30% / 0.08);
}

.btn--option:active {
  transform: scale(0.97);
}

.btn--option:focus-visible {
  outline: 2px solid hsl(var(--primary));
  outline-offset: 2px;
}

.btn--option-selected {
  border-color: hsl(var(--primary));
  background: hsl(var(--secondary) / 0.2);
}

.join-result__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.join-result__icon .icon {
  width: 2rem;
  height: 2rem;
}

.join-result__icon--good {
  background: hsl(152 60% 92%);
}

.join-result__icon--good .icon {
  color: hsl(152 55% 38%);
}

.join-result__icon--neutral {
  background: hsl(var(--secondary) / 0.3);
}

.join-result__icon--neutral .icon {
  color: hsl(var(--muted-foreground));
}

.join-newsletter {
  margin-bottom: 0.5rem;
}

.join-newsletter__hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
}

.join-newsletter__field {
  display: flex;
  gap: 0.5rem;
}

.join-newsletter__input {
  flex: 1;
  padding: 0.75rem 1rem;
  border-radius: 2rem;
  border: 1.5px solid hsl(0 0% 85%);
  background: #fff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
  outline: none;
  transition: border-color 0.2s;
}

.join-newsletter__input:focus {
  border-color: hsl(var(--primary));
}

.join-newsletter__input::placeholder {
  color: hsl(var(--muted-foreground));
}

.btn--green {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: #fff;
  background: hsl(152 55% 42%);
  border: none;
  border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, box-shadow 0.2s;
}
.btn--green:hover {
  background: hsl(152 55% 36%);
  box-shadow: 0 4px 12px hsl(152 55% 42% / 0.3);
}

.btn--outline-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  font-family: 'Open Sans', system-ui, sans-serif;
  color: hsl(var(--foreground));
  background: #fff;
  border: 1.5px solid hsl(0 0% 85%);
  border-radius: 2rem;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}
.btn--outline-pill:hover {
  border-color: hsl(var(--primary));
  background: hsl(var(--secondary) / 0.1);
}

.btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

/* ===== FORM PAGES (Contact / Enquire) ===== */
.form-page__description {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: hsl(var(--muted-foreground));
  margin-bottom: 2rem;
}

.form-page__form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.form-page__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.form-page__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: hsl(var(--foreground));
}

.form-page__input {
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  border: 1.5px solid hsl(0 0% 85%);
  background: #fff;
  font-family: 'Open Sans', system-ui, sans-serif;
  font-size: 0.9375rem;
  color: hsl(var(--foreground));
  transition: border-color 0.2s;
  outline: none;
  width: 100%;
  box-sizing: border-box;
}

.form-page__input:focus {
  border-color: hsl(var(--primary));
}

.form-page__input[type="file"] {
  padding: 0.625rem;
  cursor: pointer;
}

.form-page__input::placeholder {
  color: hsl(var(--muted-foreground));
}

.form-page__textarea {
  resize: vertical;
  min-height: 120px;
}

.form-page__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}

.form-page__actions {
  margin-top: 0.5rem;
}

.form-page__details {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(0 0% 92%);
}

.form-page__details-heading {
  font-family: 'Arvo', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-bottom: 0.5rem;
  margin-top: 1.25rem;
}

.form-page__details-heading:first-child {
  margin-top: 0;
}

.form-page__details-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-page__details-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.form-page__details-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: hsl(var(--accent));
}

.form-page__success {
  text-align: center;
  animation: fadeSlideIn 0.4s ease;
}

.form-page__error {
  text-align: center;
  animation: fadeSlideIn 0.4s ease;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-animate] { opacity: 1; transform: none; }
  .marquee__track { animation: none; }
}

.form-page__help-link {
  display: inline-block;
  margin-top: 0.5rem;
  color: hsl(var(--primary));
  text-decoration: underline;
  font-weight: 600;
}
.form-page__help-link:hover {
  color: hsl(var(--accent));
}

.howto-content h2 {
  font-family: 'Arvo', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(var(--primary));
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}
.howto-content h2:first-child { margin-top: 0; }
.howto-content h3 {
  font-family: 'Arvo', serif;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1.25rem;
  margin-bottom: 0.5rem;
}
.howto-content p { margin-bottom: 0.75rem; line-height: 1.6; }
.howto-content ul, .howto-content ol {
  margin: 0 0 1rem 1.5rem;
  line-height: 1.6;
}
.howto-content li { margin-bottom: 0.25rem; }
.howto-required { color: hsl(0 70% 50%); font-size: 0.85em; }
.howto-optional { color: hsl(var(--muted-foreground)); font-size: 0.85em; }
.howto-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0.75rem 0 1.25rem;
  font-size: 0.9rem;
}
.howto-table th, .howto-table td {
  text-align: left;
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid hsl(0 0% 90%);
}
.howto-table th {
  font-weight: 600;
  color: hsl(var(--primary));
}
