/* ========================================
   MIXIES — Website Styles
   60-30-10 Color Rule (Ghibli-inspired)
   60% #f8f7f4 (warm off-white)
   30% #1a1a1a (near-black)
   10% #c4956a (warm muted accent)
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

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

:root {
  --bg: #f8f7f4;
  --bg-warm: #f3f0ea;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --text-muted: #7a7a7a;
  --accent: #39e75f;
  --accent-hover: #2bc94d;
  --accent-light: rgba(57, 231, 95, 0.12);
  --border: rgba(26, 26, 26, 0.08);
  --border-strong: rgba(26, 26, 26, 0.15);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
}

p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-light);
}

/* --- Layout --- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: 800px;
}

section {
  padding: 6rem 0;
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(248, 247, 244, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.nav__logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.nav__logo {
  height: 88px;
  width: auto;
  object-fit: contain;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* Hidden Mixie style toggle */
.mixie-style-toggle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
  transition: opacity 0.2s;
  padding: 0;
}
.mixie-style-toggle:hover { opacity: 0.7; }
.mixie-style-toggle svg { width: 14px; height: 14px; }

.nav__link {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.nav__link:hover {
  color: var(--text);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* --- Mixie Guide Canvas --- */
#mixieGuide {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 50;
  pointer-events: none;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  border-radius: 100px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.btn--primary {
  background: var(--text);
  color: var(--bg);
}

.btn--primary:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(26, 26, 26, 0.15);
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border-strong);
}

.btn--secondary:hover {
  border-color: var(--text);
  transform: translateY(-1px);
}

.btn--accent {
  background: var(--accent);
  color: var(--text);
  font-weight: 600;
}

.btn--accent:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(57, 231, 95, 0.3);
}

.btn--large {
  padding: 1.1rem 2.8rem;
  font-size: 1rem;
}

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

.hero__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero__label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.hero h1 {
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--accent);
}

.hero__sub {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* (hero canvas removed — using full-page mixie guide instead) */

.hero__layout {
  display: flex;
  align-items: center;
  gap: 4rem;
}

.hero__phone {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

/* hero phone is now HTML/CSS — see device-mockups.css */

@media (max-width: 900px) {
  .hero__layout {
    flex-direction: column;
    text-align: center;
  }
  .hero__phone {
    order: -1;
    margin-bottom: 1rem;
  }
  /* phone responsive sizing handled in device-mockups.css */
}

/* --- Pillars Section --- */
.pillars {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

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

.pillars__header p {
  max-width: 500px;
  margin: 1rem auto 0;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.pillar {
  padding: 2.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 26, 26, 0.06);
  border-color: var(--border-strong);
}

.pillar__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
}

.pillar h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}

.pillar p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* --- Proof Section --- */
.proof {
  background: var(--text);
  color: var(--bg);
  position: relative;
  overflow: hidden;
}

.proof::before {
  display: none;
}

.proof__card {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.proof__stats {
  display: flex;
  justify-content: center;
  gap: 5rem;
  margin-bottom: 2.5rem;
}

.proof__stat {
  text-align: center;
}

.proof__number {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.proof__label {
  font-size: 1rem;
  font-weight: 500;
  color: rgba(248, 247, 244, 0.7);
  letter-spacing: 0.05em;
}

.proof__story {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(248, 247, 244, 0.9);
  font-style: italic;
}

.proof__quotes {
  position: relative;
  min-height: 120px;
}

.proof__quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  line-height: 1.7;
  color: rgba(248, 247, 244, 0.9);
  font-style: italic;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  pointer-events: none;
}

.proof__quote.active {
  opacity: 1;
  transform: translateY(0);
  position: relative;
  pointer-events: auto;
}

.proof__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.5rem;
}

.proof__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(248, 247, 244, 0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.proof__dot.active {
  background: var(--accent);
  transform: scale(1.25);
}

.proof__dot:hover {
  background: rgba(248, 247, 244, 0.5);
}

.proof__dot.active:hover {
  background: var(--accent);
}

.proof__logo-carousel {
  margin-top: 3rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(248, 247, 244, 0.1);
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, white 5%, white 95%, transparent);
}

.proof__logo-track {
  display: flex;
  align-items: center;
  gap: 3rem;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.proof__logo-track img {
  height: 36px;
  width: auto;
  opacity: 0.6;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}

.proof__logo-track img:hover {
  opacity: 1;
}

@keyframes logoScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- How It Works --- */
.how-it-works {
  border-top: 1px solid var(--border);
}

.how-it-works__header {
  text-align: center;
  margin-bottom: 4rem;
}

.how-it-works__header p {
  max-width: 500px;
  margin: 1rem auto 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.steps--three {
  grid-template-columns: repeat(3, 1fr);
}

.step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}

.step__number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--text);
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.step p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Connecting line between steps */
.steps::before {
  content: '';
  position: absolute;
  top: 23px;
  left: 15%;
  right: 15%;
  height: 1px;
  background: var(--border-strong);
  z-index: 0;
}

.step__number {
  position: relative;
  z-index: 1;
}

/* --- Solution Section --- */
.solution {
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.solution__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.solution__content h2 {
  margin: 1rem 0 1rem;
}

.solution__content p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
}

/* --- Platform Showcase --- */
.showcase__canvas-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

/* showcase is now HTML/CSS — see device-mockups.css */

/* --- AI Matching Section --- */
.ai-matching {
  border-top: 1px solid var(--border);
}

.ai-matching__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.ai-matching__text h2 {
  margin-bottom: 1rem;
}

.ai-matching__text p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Event Pass Section --- */
.event-pass {
  border-top: 1px solid var(--border);
}

.event-pass__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.event-pass__content h2 {
  margin: 1rem 0 1rem;
}

.event-pass__sub {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.event-pass__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-pass__list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

.event-pass__arrow {
  color: var(--accent);
  font-weight: 600;
}

.event-pass__reward {
  color: var(--accent);
  font-weight: 600;
}

.event-pass__personas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.event-pass__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* event pass is now HTML/CSS — see device-mockups.css */

.persona {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s ease;
}

.persona--active {
  border-color: var(--accent);
  background: rgba(57, 231, 95, 0.04);
}

.persona__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  color: #fff;
  flex-shrink: 0;
}

.persona__avatar--a { background: #e6a817; }
.persona__avatar--b { background: #7a7a7a; }
.persona__avatar--c { background: #e05252; }

.persona strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.persona span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Platform Features Grid --- */
.platform {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.platform__header {
  text-align: center;
  margin-bottom: 3rem;
}

.platform__header h2 {
  max-width: 700px;
  margin: 0 auto;
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.platform__columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.platform__col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.platform__col-header {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.platform__feature {
  padding: 2rem;
  min-height: 140px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.platform__feature:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.06);
}

.platform__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.platform__feature h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.platform__feature p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* --- Insights Section --- */
.insights {
  border-top: 1px solid var(--border);
}

.insights__inner {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.insights__inner h2 {
  margin-bottom: 1.5rem;
}

.insights__inner p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* --- Benefit Icons --- */
.benefit__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

/* --- Video Testimonial --- */
.video-testimonial {
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.video-testimonial__heading {
  margin-bottom: 0.5rem;
}

.video-testimonial__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 960px;
  margin: 0 auto;
}

.video-testimonial__frame {
  position: relative;
}

.video-testimonial__quotes {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.video-testimonial__quote {
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  border-left: 3px solid var(--accent);
  transition: all 0.3s ease;
}

.video-testimonial__quote:hover {
  transform: translateX(4px);
  box-shadow: 0 8px 30px rgba(26, 26, 26, 0.06);
}

.video-testimonial__quote p {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}

.video-testimonial__screen {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 16px;
  overflow: hidden;
  border: 3px solid #2a2a2a;
  box-shadow:
    0 4px 6px rgba(26, 26, 26, 0.04),
    0 20px 60px rgba(26, 26, 26, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.video-testimonial__screen video,
.video-testimonial__screen iframe {
  width: 100%;
  height: auto;
  display: block;
  border: none;
}

.video-testimonial__notch {
  width: 120px;
  height: 6px;
  background: #2a2a2a;
  border-radius: 0 0 4px 4px;
  margin: 0 auto;
  position: relative;
  top: -1px;
  box-shadow: 0 2px 8px rgba(26, 26, 26, 0.08);
}

.video-testimonial__glow {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 60px;
  background: radial-gradient(ellipse, rgba(57, 231, 95, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.video-testimonial__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.video-testimonial__placeholder p {
  color: rgba(248, 247, 244, 0.4);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.video-testimonial__play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(57, 231, 95, 0.15);
  border: 2px solid rgba(57, 231, 95, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-testimonial__play:hover {
  background: rgba(57, 231, 95, 0.25);
  border-color: var(--accent);
  transform: scale(1.08);
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.cta-banner h2 {
  margin-bottom: 1rem;
}

.cta-banner p {
  max-width: 480px;
  margin: 0 auto 2rem;
}

/* --- Footer --- */
.footer {
  padding: 3rem 0;
  border-top: 1px solid var(--border);
}

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

.footer__logo {
  height: 48px;
  opacity: 0.6;
}

.footer__links {
  display: flex;
  gap: 2rem;
}

.footer__link {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.footer__link:hover {
  color: var(--text);
}

.footer__copy {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* --- Organizer Page --- */
.page-hero {
  padding: 10rem 0 5rem;
  text-align: center;
}

.page-hero h1 {
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.page-hero p {
  max-width: 580px;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
}

/* Problem section */
.problem {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem__content {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.problem__content h2 {
  margin-bottom: 1.5rem;
}

.problem__content p {
  font-size: 1.1rem;
  line-height: 1.8;
}

/* Rewards & Sponsor Section */
.rewards-section {
  border-top: 1px solid var(--border);
}

.rewards-section__layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 3rem;
  align-items: center;
}

.rewards-section__text h2 {
  margin-bottom: 1rem;
}

.rewards-section__text p {
  color: var(--text-light);
  font-size: 1.1rem;
  line-height: 1.8;
}

.rewards-section__canvas-wrap {
  display: flex;
  justify-content: center;
}

/* rewards canvas is now HTML/CSS — see device-mockups.css */

/* Benefits grid */
.benefits {
  background: var(--bg-warm);
  border-top: 1px solid var(--border);
}

.benefits__header {
  text-align: center;
  margin-bottom: 3rem;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.benefit {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
}

.benefit h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.benefit p {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* FAQ */
.faq {
  border-top: 1px solid var(--border);
}

.faq__header {
  text-align: center;
  margin-bottom: 3rem;
}

.faq__list {
  max-width: 700px;
  margin: 0 auto;
}

.faq__item {
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
}

.faq__question {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq__question::after {
  content: '+';
  font-family: 'Inter', sans-serif;
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--text-muted);
  transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq__item.active .faq__answer {
  max-height: 300px;
  padding-top: 1rem;
}

.faq__answer p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Partner / Contact Form --- */
.form-section {
  padding: 10rem 0 6rem;
}

.form-section__inner {
  max-width: 560px;
  margin: 0 auto;
}

.form-section h1 {
  margin-bottom: 0.75rem;
}

.form-section > .container > .form-section__inner > p {
  margin-bottom: 2.5rem;
}

.form__intro {
  color: var(--text-light);
  margin-bottom: 2.5rem;
  font-size: 1.05rem;
}

.form__group {
  margin-bottom: 1.5rem;
}

.form__label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: var(--text);
}

.form__input,
.form__select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  background: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color 0.2s ease;
  outline: none;
}

.form__input:focus,
.form__select:focus {
  border-color: var(--accent);
}

.form__input::placeholder {
  color: var(--text-muted);
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form__submit {
  margin-top: 1rem;
  width: 100%;
}

.form__success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: #fff;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.form__success.visible {
  display: block;
}

.form__success h3 {
  margin-bottom: 0.75rem;
}

/* --- Mixie Face Decorative --- */
.mixie-face {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.15;
  pointer-events: none;
  user-select: none;
}

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

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-in:nth-child(2) { transition-delay: 0.1s; }
.animate-in:nth-child(3) { transition-delay: 0.2s; }
.animate-in:nth-child(4) { transition-delay: 0.3s; }

/* --- Responsive --- */
@media (max-width: 968px) {
  .pillars__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .steps--three {
    grid-template-columns: 1fr;
  }

  .steps::before {
    display: none;
  }

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

  .ai-matching__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ai-matching__text {
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
  }

  .rewards-section__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .rewards-section__text {
    text-align: center;
    overflow-wrap: break-word;
    word-wrap: break-word;
    min-width: 0;
  }

  h1, h2 {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
  }

  .rewards-section__text p,
  .ai-matching__text p {
    font-size: 0.95rem;
  }

  .ai-matching,
  .rewards-section {
    overflow-x: hidden;
  }

  .showcase__canvas-wrap {
    max-width: 100%;
    min-width: 0;
  }

  .rewards-section__canvas-wrap {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
  }

  .event-pass__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

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

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

  .hero__canvas {
    width: 100%;
    opacity: 0.3;
  }

  .hero__content {
    text-align: center;
    max-width: 100%;
  }

  .hero__ctas {
    justify-content: center;
  }

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

@media (max-width: 640px) {
  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.25rem;
  }

  .nav__links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(248, 247, 244, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
  }

  .nav__links.open {
    display: flex;
  }

  .nav__hamburger {
    display: flex;
  }

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

  .hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 4rem;
  }

  .hero__layout {
    flex-direction: column;
    text-align: center;
  }

  .hero__phone {
    order: 2;
    margin-top: 2rem;
  }

  .hero__ctas {
    flex-direction: column;
    align-items: center;
  }

  .btn--large {
    width: 100%;
    text-align: center;
  }

  .proof__number {
    font-size: 4rem;
  }

  .proof__stats {
    flex-direction: column;
    gap: 2rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }

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

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

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

  .proof__logo-track img {
    height: 28px;
  }

  .video-testimonial__layout {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 8rem 0 3rem;
  }

  h1 {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  h2 {
    font-size: clamp(1.2rem, 4vw, 1.75rem);
  }

  .ai-matching__text p,
  .rewards-section__text p {
    font-size: 0.95rem;
  }
}
