/* ═══════════════════════════════════════════════════════════
   Fusiey — Landing Page Stylesheet
   Scoped under .fusiey-page to isolate from style.css
   ═══════════════════════════════════════════════════════════ */

/* ── Reset (scoped) ── */
.fusiey-page *, .fusiey-page *::before, .fusiey-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ── Design Tokens ── */
.fusiey-page {
  --ink:          #1a1a2e;
  --ink-light:    #3d3d5c;
  --ink-faint:    #7b7b9e;
  --paper:        #fef9ef;
  --cotton:       #fff8f0;
  --cotton-dark:  #f5eed6;
  --butter:       #ffd166;
  --butter-dark:  #e6a800;
  --coral:        #ff6b6b;
  --mint:         #06d6a0;
  --sky:          #a8dadc;
  --lavender:     #c77dff;

  --shadow-sm:    2px 2px 0 var(--ink);
  --shadow-md:    3px 3px 0 var(--ink);
  --shadow-lg:    5px 5px 0 var(--ink);
  --shadow-xl:    7px 7px 0 var(--ink);

  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --radius-pill:  100px;

  --font:         'Nunito', system-ui, -apple-system, sans-serif;
  --font-pixel:   'Press Start 2P', monospace;

  --transition:   0.18s ease;
  --section-gap:  100px;

  font-family: var(--font);
  background-color: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

html { scroll-behavior: smooth; }

/* ── Pixel font utility ── */
.fusiey-page .pixel {
  font-family: var(--font-pixel);
  letter-spacing: -0.5px;
}

/* ── Kawaii Card (universal 3D sticker) ── */
.fusiey-page .kawaii-card {
  background: var(--cotton);
  border: 2px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.fusiey-page .kawaii-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-lg);
}

/* ── Container ── */
.fusiey-page .f-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Accent colour text ── */
.fusiey-page .f-accent {
  color: var(--coral);
  display: inline;
}

/* ── Decorative bead dots ── */
.fusiey-page .bead-dots {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.fusiey-page .bead-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  opacity: 0.18;
  animation: beadFloat 8s ease-in-out infinite;
}
.fusiey-page .bead-dot--butter { background: var(--butter); animation-delay: 0s; }
.fusiey-page .bead-dot--coral  { background: var(--coral);  animation-delay: 2s; }
.fusiey-page .bead-dot--mint   { background: var(--mint);   animation-delay: 4s; }
.fusiey-page .bead-dot--sky    { background: var(--sky);    animation-delay: 1s; }

@keyframes beadFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: .18; }
  50%       { transform: translateY(-16px) scale(1.1); opacity: .28; }
}

/* ═══════════════════════════ NAV ═══════════════════════════ */
.fusiey-page .f-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: background 0.3s, border-color 0.3s, box-shadow 0.3s;
  border-bottom: 2px solid transparent;
}
.fusiey-page .f-nav.scrolled {
  background: rgba(254,249,239,0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-color: var(--ink);
  box-shadow: 0 2px 0 var(--ink);
}

.fusiey-page .f-nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 32px;
}

.fusiey-page .f-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.fusiey-page .f-logo-icon {
  border: 2px solid var(--ink);
  border-radius: 10px;
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--cotton);
  padding: 3px;
  display: flex;
}
.fusiey-page .f-logo-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
  letter-spacing: -0.5px;
}

.fusiey-page .f-nav-links {
  display: flex;
  list-style: none;
  gap: 28px;
  margin-left: auto;
}
.fusiey-page .f-nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-light);
  transition: color var(--transition);
}
.fusiey-page .f-nav-links a:hover { color: var(--ink); }

.fusiey-page .f-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.fusiey-page .f-nav-back {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  text-decoration: none;
  transition: color var(--transition);
}
.fusiey-page .f-nav-back:hover { color: var(--ink); }

.fusiey-page .f-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 2px solid var(--ink);
  border-radius: 8px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  box-shadow: 2px 2px 0 var(--ink);
}
.fusiey-page .f-hamburger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}

.fusiey-page .f-nav-mobile {
  display: none;
  flex-direction: column;
  padding: 16px 24px 24px;
  background: var(--cotton);
  border-top: 2px solid var(--ink);
  gap: 4px;
}
.fusiey-page .f-nav-mobile.open { display: flex; }
.fusiey-page .f-mobile-link {
  text-decoration: none;
  color: var(--ink-light);
  font-size: 16px;
  font-weight: 700;
  padding: 12px 0;
  border-bottom: 1px solid rgba(26,26,46,0.1);
  transition: color var(--transition);
}
.fusiey-page .f-mobile-link:hover { color: var(--ink); }

/* ═══════════════════════════ BUTTONS ═══════════════════════════ */
.fusiey-page .f-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  text-decoration: none;
  cursor: pointer;
  border: 2px solid var(--ink);
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.fusiey-page .f-btn:hover {
  transform: translate(-1px, -1px);
  box-shadow: var(--shadow-md);
}
.fusiey-page .f-btn:active {
  transform: translate(1px, 1px);
  box-shadow: none;
}

.fusiey-page .f-btn-primary {
  background: var(--butter);
  color: var(--ink);
}
.fusiey-page .f-btn-secondary {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.fusiey-page .f-btn-secondary:hover { background: rgba(26,26,46,0.06); }

.fusiey-page .f-btn-ghost {
  background: rgba(26,26,46,0.06);
  color: var(--ink-faint);
  border-color: rgba(26,26,46,0.2);
  box-shadow: none;
  cursor: not-allowed;
}
.fusiey-page .f-btn-ghost:hover {
  transform: none;
  box-shadow: none;
}

.fusiey-page .f-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* ═══════════════════════════ SCROLL ANIMATIONS ═══════════════════════════ */
.fusiey-page .f-animate {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}
.fusiey-page .f-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero slide-up (always plays) */
.fusiey-page .f-slide-up {
  opacity: 0;
  transform: translateY(24px);
  animation: slideUp 0.65s ease forwards;
}
@keyframes slideUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════ SECTIONS ═══════════════════════════ */
.fusiey-page .f-section {
  padding: var(--section-gap) 0;
  position: relative;
}
.fusiey-page .f-section--cotton {
  background: var(--cotton);
}

.fusiey-page .f-section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 14px;
  border: 2px solid var(--ink);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  box-shadow: 2px 2px 0 var(--ink);
  background: var(--paper);
}
.fusiey-page .f-section--cotton .f-section-label {
  background: var(--cotton);
}

.fusiey-page .f-section-h2 {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 20px;
}

.fusiey-page .f-section-desc {
  font-size: 17px;
  color: var(--ink-light);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 56px;
}

/* Wave dividers */
.fusiey-page .f-wave {
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  line-height: 0;
  z-index: 2;
}
.fusiey-page .f-wave svg { width: 100%; height: 60px; display: block; }
.fusiey-page .f-wave--flip { top: -1px; bottom: auto; transform: scaleY(-1); }

/* ═══════════════════════════ HERO ═══════════════════════════ */
.fusiey-page .f-hero {
  min-height: 100vh;
  background: var(--paper);
  padding: 120px 0 120px;
  position: relative;
  overflow: hidden;
}
/* Scattered bead decoration */
.fusiey-page .f-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(circle 6px, rgba(255,209,102,.18) 100%, transparent 0),
    radial-gradient(circle 4px, rgba(255,107,107,.14) 100%, transparent 0),
    radial-gradient(circle 5px, rgba(6,214,160,.12) 100%, transparent 0);
  background-size: 80px 80px, 120px 120px, 100px 100px;
  background-position: 10px 10px, 50px 40px, 20px 70px;
  pointer-events: none;
}

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

.fusiey-page .f-hero-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.fusiey-page .f-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
  background: var(--butter);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.fusiey-page .f-hero-h1 {
  font-size: clamp(38px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  margin-bottom: 20px;
  color: var(--ink);
  text-shadow: 3px 3px 0 rgba(26,26,46,.08);
}

.fusiey-page .f-hero-sub {
  font-size: 17px;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 32px;
}

.fusiey-page .f-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.fusiey-page .f-hero-social-proof {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-light);
}
.fusiey-page .f-proof-avatars {
  display: flex;
  margin-right: 4px;
}
.fusiey-page .f-avatar {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-left: -6px;
  flex-shrink: 0;
}
.fusiey-page .f-avatar:first-child { margin-left: 0; }
.fusiey-page .f-avatar--sm {
  width: 26px; height: 26px;
  font-size: 12px;
}

/* Before/After Slider */
.fusiey-page .f-hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.fusiey-page .f-slider-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  animation: floatBead 5s ease-in-out infinite;
}
@keyframes floatBead {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}
.fusiey-page .f-slider {
  position: relative;
  width: 380px;
  height: 380px;
  border: 3px solid var(--ink);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  flex-shrink: 0;
  background: var(--sky);
}
.fusiey-page .f-slider-after,
.fusiey-page .f-slider-before {
  position: absolute;
  inset: 0;
}
.fusiey-page .f-slider-after img,
.fusiey-page .f-slider-before img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  pointer-events: none;
}
.fusiey-page .f-slider-before {
  clip-path: inset(0 50% 0 0);
  transition: none;
}
.fusiey-page .f-slider-label {
  position: absolute;
  bottom: 10px;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 2px 2px 0 var(--ink);
  background: rgba(255,255,255,.85);
  color: var(--ink);
  pointer-events: none;
}
.fusiey-page .f-slider-label--before { left: 10px; }
.fusiey-page .f-slider-label--after  { right: 10px; }

.fusiey-page .f-slider-handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  background: var(--ink);
  z-index: 10;
  cursor: ew-resize;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fusiey-page .f-handle-bead {
  position: absolute;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--butter);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: ew-resize;
  transition: transform 0.1s ease;
}
.fusiey-page .f-handle-bead:hover {
  transform: scale(1.1);
}
.fusiey-page .f-slider-hint {
  font-size: 13px;
  color: var(--ink-faint);
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* ═══════════════════════════ HOW IT WORKS ═══════════════════════════ */
.fusiey-page .f-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  margin-top: 56px;
}
.fusiey-page .f-step {
  text-align: center;
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fusiey-page .f-step-num {
  font-size: 13px;
  color: var(--ink-faint);
  letter-spacing: 1px;
}
.fusiey-page .f-step-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fusiey-page .f-step-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink);
}
.fusiey-page .f-step-desc {
  font-size: 14px;
  color: var(--ink-light);
  line-height: 1.7;
}
.fusiey-page .f-step-arrow {
  font-size: 32px;
  color: var(--ink-faint);
  text-align: center;
  font-weight: 900;
  flex-shrink: 0;
}

/* ═══════════════════════════ WHY FUSIEY ═══════════════════════════ */
.fusiey-page .f-features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.fusiey-page .f-feature {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.fusiey-page .f-feature-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fusiey-page .f-feature-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--ink);
}
.fusiey-page .f-feature-desc {
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.75;
  flex: 1;
}
.fusiey-page .f-feature-tag {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  background: rgba(26,26,46,.06);
  color: var(--ink-light);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  width: fit-content;
}

/* ═══════════════════════════ GALLERY ═══════════════════════════ */
.fusiey-page .f-gallery-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 56px;
}
.fusiey-page .f-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 8px 4px 16px;
  scrollbar-width: none;
}
.fusiey-page .f-gallery::-webkit-scrollbar { display: none; }

.fusiey-page .f-gallery-card {
  flex: 0 0 320px;
  scroll-snap-align: start;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}

.fusiey-page .f-gallery-pair {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
}
.fusiey-page .f-gallery-img {
  position: relative;
  flex: 1;
  overflow: hidden;
}
.fusiey-page .f-gallery-img img {
  width: 100%; height: 140px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.fusiey-page .f-gallery-card:hover .f-gallery-img img {
  transform: scale(1.05);
}
.fusiey-page .f-gallery-thumb-label {
  position: absolute;
  bottom: 6px; left: 6px;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.88);
  border: 1.5px solid var(--ink);
  color: var(--ink);
}
.fusiey-page .f-gallery-divider {
  font-size: 18px;
  font-weight: 900;
  color: var(--ink-faint);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.fusiey-page .f-gallery-caption {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-light);
  text-align: center;
}

.fusiey-page .f-gallery-btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50% !important;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  background: var(--butter) !important;
  transition: transform var(--transition), box-shadow var(--transition);
}
.fusiey-page .f-gallery-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--shadow-md) !important;
}

/* ═══════════════════════════ COMMUNITY ═══════════════════════════ */
.fusiey-page .f-stat-num {
  font-size: 52px;
  color: var(--coral);
  display: inline;
}
.fusiey-page .f-community-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 56px 0 40px;
}
.fusiey-page .f-community-card {
  padding: 0;
  overflow: hidden;
}
.fusiey-page .f-community-img img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.fusiey-page .f-community-card:hover .f-community-img img {
  transform: scale(1.04);
}
.fusiey-page .f-community-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-top: 2px solid var(--ink);
}
.fusiey-page .f-community-user {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
}
.fusiey-page .f-community-stats {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--ink-faint);
  font-weight: 700;
}
.fusiey-page .f-community-title {
  padding: 0 16px 14px;
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.fusiey-page .f-community-cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.fusiey-page .f-community-hint {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-faint);
}

/* ═══════════════════════════ PRICING ═══════════════════════════ */
.fusiey-page .f-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
  margin-top: 56px;
}
.fusiey-page .f-pricing-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.fusiey-page .f-pricing-card--featured {
  background: var(--butter) !important;
  box-shadow: var(--shadow-lg) !important;
  transform: translateY(-8px);
}
.fusiey-page .f-pricing-card--featured:hover {
  transform: translate(-2px, -10px);
}
.fusiey-page .f-pricing-card--soon {
  opacity: 0.75;
}

.fusiey-page .f-pricing-badge {
  display: inline-flex;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 800;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  width: fit-content;
}
.fusiey-page .f-pricing-badge--mint   { background: var(--mint);   color: var(--ink); }
.fusiey-page .f-pricing-badge--butter { background: var(--ink);    color: var(--butter); }
.fusiey-page .f-pricing-badge--coral  { background: var(--coral);  color: #fff; }

.fusiey-page .f-pricing-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fusiey-page .f-price-amount {
  font-size: 40px;
  font-weight: 900;
  color: var(--ink);
}
.fusiey-page .f-price-period {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-faint);
}

.fusiey-page .f-pricing-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.fusiey-page .f-pricing-list li {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink-light);
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.fusiey-page .f-check { color: var(--mint); font-size: 16px; flex-shrink: 0; }
.fusiey-page .f-x     { color: var(--coral); font-size: 16px; flex-shrink: 0; }
.fusiey-page .f-soon  { color: var(--ink-faint); font-style: italic; }

/* ═══════════════════════════ BEAD KIT ═══════════════════════════ */
.fusiey-page .f-beadkit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 48px;
  background: linear-gradient(135deg, var(--butter) 0%, #fff3cd 100%) !important;
  box-shadow: var(--shadow-xl) !important;
}
.fusiey-page .f-beadkit-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
/* Palette card replaces image */
.fusiey-page .f-beadkit-palette-card {
  width: 100%;
  background: rgba(255,255,255,.7);
  border: 2.5px solid var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: 5px 5px 0 var(--ink);
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.fusiey-page .f-palette-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 11px;
  color: var(--ink);
  letter-spacing: .06em;
  text-align: center;
}
.fusiey-page .f-palette-grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 10px;
  width: 100%;
  max-width: 320px;
}
.fusiey-page .f-palette-grid span {
  aspect-ratio: 1;
  border-radius: 50%;
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  display: block;
  transition: transform .15s ease;
  cursor: default;
}
.fusiey-page .f-palette-grid span:hover {
  transform: scale(1.25) translateY(-3px);
}
.fusiey-page .f-palette-note {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-light);
  text-align: center;
  letter-spacing: .03em;
}

/* Kit chips row */
.fusiey-page .f-beadkit-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  width: 100%;
}
.fusiey-page .f-chip {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255,255,255,.8);
  border: 2px solid var(--ink);
  box-shadow: 2px 2px 0 var(--ink);
  white-space: nowrap;
}

.fusiey-page .f-beadkit-title {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  color: var(--ink);
  margin: 10px 0;
  letter-spacing: -0.5px;
}
.fusiey-page .f-beadkit-desc {
  font-size: 16px;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 8px;
}
.fusiey-page .f-beadkit-specs {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.fusiey-page .f-beadkit-specs li {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-light);
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.fusiey-page .f-beadkit-price-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.fusiey-page .f-beadkit-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--ink);
  display: block;
}
.fusiey-page .f-beadkit-price-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--ink-faint);
  display: block;
  margin-top: 2px;
}
.fusiey-page .f-beadkit-disclaimer {
  font-size: 12px;
  font-weight: 700;
  color: var(--ink-faint);
  margin-top: 12px;
  font-style: italic;
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.fusiey-page .f-faq {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 56px;
  max-width: 780px;
}
.fusiey-page .f-faq-item {
  padding: 0;
  overflow: hidden;
}
.fusiey-page .f-faq-q {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  font-size: 16px;
  font-weight: 800;
  color: var(--ink);
  cursor: pointer;
  user-select: none;
  transition: background var(--transition);
}
.fusiey-page .f-faq-q::-webkit-details-marker { display: none; }
.fusiey-page .f-faq-q::after {
  content: '+';
  font-size: 22px;
  font-weight: 900;
  color: var(--coral);
  flex-shrink: 0;
  transition: transform 0.25s ease;
  line-height: 1;
}
.fusiey-page .f-faq-item[open] .f-faq-q {
  background: var(--butter);
}
.fusiey-page .f-faq-item[open] .f-faq-q::after {
  content: '×';
  transform: rotate(45deg);
}
.fusiey-page .f-faq-a {
  padding: 0 24px 20px;
  border-top: 2px solid var(--ink);
  font-size: 15px;
  color: var(--ink-light);
  line-height: 1.8;
  animation: faqOpen 0.25s ease;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ═══════════════════════════ FOOTER ═══════════════════════════ */
.fusiey-page .f-footer {
  background: var(--ink);
  color: var(--paper);
  padding-top: 72px;
}
.fusiey-page .f-footer-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  padding-bottom: 56px;
  border-bottom: 2px solid rgba(255,255,255,.1);
}

.fusiey-page .f-footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.fusiey-page .f-footer-logo .f-logo-icon {
  background: var(--paper);
  border-color: rgba(255,255,255,.3);
  box-shadow: 2px 2px 0 rgba(255,255,255,.2);
}
.fusiey-page .f-footer-logo .f-logo-text {
  color: var(--paper);
}
.fusiey-page .f-footer-tagline {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,249,239,.65);
  margin-bottom: 8px;
}

.fusiey-page .f-footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.fusiey-page .f-social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,249,239,.6);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 2px 2px 0 rgba(255,255,255,.1);
}
.fusiey-page .f-social-btn:hover {
  border-color: var(--butter);
  color: var(--butter);
  transform: translate(-1px, -1px);
}

.fusiey-page .f-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.fusiey-page .f-footer-col-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,249,239,.4);
  margin-bottom: 16px;
}
.fusiey-page .f-footer-link {
  display: block;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,249,239,.65);
  margin-bottom: 10px;
  transition: color var(--transition);
}
.fusiey-page .f-footer-link:hover { color: var(--butter); }

.fusiey-page .f-footer-bar {
  padding: 20px 0;
}
.fusiey-page .f-footer-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,249,239,.35);
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media (max-width: 1024px) {
  .fusiey-page .f-hero-inner  { gap: 40px; }
  .fusiey-page .f-beadkit     { gap: 40px; }
  .fusiey-page .f-community-grid { grid-template-columns: repeat(2, 1fr); }
  .fusiey-page .f-pricing-grid { gap: 16px; }
}

@media (max-width: 768px) {
  .fusiey-page { --section-gap: 72px; }

  .fusiey-page .f-nav-links,
  .fusiey-page .f-nav-actions { display: none; }
  .fusiey-page .f-hamburger    { display: flex; }

  .fusiey-page .f-hero {
    padding: 100px 0 80px;
  }
  .fusiey-page .f-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .fusiey-page .f-hero-text   { align-items: center; }
  .fusiey-page .f-hero-actions { justify-content: center; }
  .fusiey-page .f-hero-visual { order: -1; }
  .fusiey-page .f-slider { width: 300px; height: 300px; }

  .fusiey-page .f-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .fusiey-page .f-step-arrow { display: none; }

  .fusiey-page .f-features-grid { grid-template-columns: 1fr; }

  .fusiey-page .f-community-grid { grid-template-columns: 1fr; }

  .fusiey-page .f-pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
  .fusiey-page .f-pricing-card--featured { transform: none; }
  .fusiey-page .f-pricing-card--featured:hover { transform: translate(-2px, -2px); }

  .fusiey-page .f-beadkit {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 28px;
  }

  .fusiey-page .f-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-bottom: 32px;
  }
  .fusiey-page .f-footer-links { grid-template-columns: repeat(2, 1fr); }
  .fusiey-page .f-footer-bar-inner { flex-direction: column; gap: 8px; text-align: center; }

  .fusiey-page .f-gallery-btn { display: none; }
}

@media (max-width: 480px) {
  .fusiey-page .f-hero-h1 { letter-spacing: -1px; }
  .fusiey-page .f-hero-actions { flex-direction: column; align-items: center; }
  .fusiey-page .f-slider { width: 260px; height: 260px; }
  .fusiey-page .f-footer-links { grid-template-columns: 1fr; }
  .fusiey-page .f-pricing-grid { max-width: 100%; }
  .fusiey-page .f-beadkit-price-row { flex-direction: column; align-items: flex-start; }
}
