/* ═══════════════════════════════════════════════════════════════
   SHOEBOX HOME PAGE — "Living Ember" Theme
   A showstopper experience: woodburning background, glowing tiles,
   cinematic hover animations, and ember particle effects.
   ═══════════════════════════════════════════════════════════════ */

/* ── Override body gradient so the canvas is visible everywhere ─ */
body:has(#ember-canvas),
body.ember-bg-active {
  background: transparent !important;
  background-image: none !important;
}

/* Dark base on html so the canvas draws on top of it */
html:has(#ember-canvas) {
  background: #1a0e06 !important;
}

/* Ensure all page content renders above the background layers */
body.ember-bg-active header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

body.ember-bg-active main,
body.ember-bg-active footer {
  position: relative;
  z-index: 2;
}

body.ember-bg-active #navi-helper {
  z-index: 1001;
}

/* ── Animated Background Canvas ─────────────────────────────── */
#ember-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
}

/* Woodgrain overlay texture (CSS-only, no image needed) */
.woodgrain-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 0.07;
  background-image:
    repeating-linear-gradient(
      80deg,
      transparent,
      transparent 3px,
      rgba(210, 160, 90, 0.25) 3px,
      rgba(210, 160, 90, 0.25) 4px
    ),
    repeating-linear-gradient(
      82deg,
      transparent,
      transparent 7px,
      rgba(180, 120, 60, 0.15) 7px,
      rgba(180, 120, 60, 0.15) 8px
    ),
    repeating-linear-gradient(
      78deg,
      transparent,
      transparent 13px,
      rgba(140, 90, 40, 0.12) 13px,
      rgba(140, 90, 40, 0.12) 14px
    );
}

/* Radial heat glow that pulses behind the grid */
.heat-glow {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 120vw;
  height: 120vh;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 106, 42, 0.08) 0%,
    rgba(62, 40, 25, 0.0) 70%
  );
  animation: heatPulse 6s ease-in-out infinite;
}

@keyframes heatPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50%      { opacity: 1;   transform: translate(-50%, -50%) scale(1.05); }
}

/* ── Module Grid ────────────────────────────────────────────── */
.module-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 3rem;
}

/* Last tile without a pair spans full width on mobile */
.module-grid .module-tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media (min-width: 640px) {
  .module-grid {
    gap: 1.25rem;
  }
}

@media (min-width: 768px) {
  .module-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .module-grid .module-tile:last-child:nth-child(odd) {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .module-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 1280px) {
  .module-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* ── Tile Base ──────────────────────────────────────────────── */
.module-tile {
  position: relative;
  background: rgba(42, 24, 12, 0.75);
  border: 1px solid rgba(129, 87, 57, 0.45);
  border-radius: 1rem;
  padding: 1.25rem 0.75rem 1.15rem;
  text-align: center;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
  overflow: hidden;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.45s ease,
    border-color 0.4s ease,
    background 0.5s ease;
  will-change: transform, box-shadow;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

@media (min-width: 640px) {
  .module-tile {
    padding: 1.75rem 1rem 1.5rem;
  }
}

/* Inner glowing border ring (pseudo) */
.module-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 1rem;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(224, 156, 61, 0.0) 0%,
    rgba(224, 156, 61, 0.0) 100%
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  transition: background 0.5s ease;
}

/* Burn-mark glow behind tile on hover */
.module-tile::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 1.25rem;
  background: radial-gradient(
    ellipse at center,
    rgba(212, 106, 42, 0.0) 0%,
    rgba(212, 106, 42, 0.0) 70%,
    transparent 100%
  );
  z-index: -1;
  transition: background 0.5s ease;
  pointer-events: none;
}

/* ── Tile Hover ─────────────────────────────────────────────── */
.module-tile:hover {
  transform: translateY(-10px) scale(1.04);
  border-color: rgba(224, 156, 61, 0.8);
  background: rgba(62, 40, 25, 0.92);
  box-shadow:
    0 0 18px rgba(224, 156, 61, 0.25),
    0 0 60px rgba(212, 106, 42, 0.10),
    0 20px 40px rgba(0, 0, 0, 0.35);
}

.module-tile:hover::before {
  background: linear-gradient(
    135deg,
    rgba(224, 156, 61, 0.6) 0%,
    rgba(212, 106, 42, 0.3) 50%,
    rgba(220, 166, 91, 0.5) 100%
  );
}

.module-tile:hover::after {
  background: radial-gradient(
    ellipse at center,
    rgba(212, 106, 42, 0.15) 0%,
    rgba(212, 106, 42, 0.05) 60%,
    transparent 100%
  );
}

/* ── Icon Orb ───────────────────────────────────────────────── */
.tile-icon-orb {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.85rem;
  position: relative;
  transition:
    transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.5s ease;
}

/* Ember ring around icon on hover */
.tile-icon-orb::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid transparent;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
  pointer-events: none;
}

.module-tile:hover .tile-icon-orb {
  transform: scale(1.18) rotate(6deg);
  box-shadow: 0 0 20px rgba(224, 156, 61, 0.35);
}

.module-tile:hover .tile-icon-orb::after {
  border-color: rgba(224, 156, 61, 0.5);
  box-shadow: 0 0 12px rgba(224, 156, 61, 0.2);
}

.tile-icon-orb i {
  font-size: 1.35rem;
  color: #fff;
  transition: text-shadow 0.4s ease, transform 0.3s ease;
}

.module-tile:hover .tile-icon-orb i {
  text-shadow: 0 0 12px rgba(255, 200, 100, 0.7);
}

/* ── Tile Text ──────────────────────────────────────────────── */
.tile-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #FAF3E8;
  margin-bottom: 0.3rem;
  transition: color 0.3s ease, text-shadow 0.4s ease;
}

.module-tile:hover .tile-title {
  color: #E09C3D;
  text-shadow: 0 0 8px rgba(224, 156, 61, 0.3);
}

.tile-desc {
  font-size: 0.75rem;
  color: #C4A882;
  transition: color 0.3s ease;
  line-height: 1.4;
}

.module-tile:hover .tile-desc {
  color: #E9D6B9;
}

/* ── Floating Ember Sparks (CSS-only extra sparkle) ─────────── */
.module-tile .spark {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #E09C3D;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.module-tile:hover .spark {
  animation: sparkFloat 1.2s ease-out forwards;
}

.module-tile .spark:nth-child(1) { left: 20%; bottom: 10%; animation-delay: 0s; }
.module-tile .spark:nth-child(2) { left: 50%; bottom: 15%; animation-delay: 0.15s; }
.module-tile .spark:nth-child(3) { left: 75%; bottom: 8%;  animation-delay: 0.3s; }
.module-tile .spark:nth-child(4) { left: 35%; bottom: 20%; animation-delay: 0.1s; }

@keyframes sparkFloat {
  0%   { opacity: 1; transform: translateY(0) scale(1); }
  60%  { opacity: 0.8; }
  100% { opacity: 0; transform: translateY(-50px) scale(0.3); }
}

/* ── Section Heading ────────────────────────────────────────── */
.home-section-heading {
  text-align: center;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .home-section-heading {
    margin-bottom: 2.5rem;
  }
}

.home-section-heading h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #FAF3E8;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .home-section-heading h2 {
    margin-bottom: 1rem;
  }
}

/* Flame image in heading */
.heading-flame-icon {
  width: 48px;
  height: 48px;
  object-fit: contain;
  display: inline-block;
  vertical-align: middle;
  filter: drop-shadow(0 0 8px rgba(224, 156, 61, 0.5));
  animation: flameGlow 2s ease-in-out infinite;
}

@keyframes flameGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(224, 156, 61, 0.5)); }
  50%      { filter: drop-shadow(0 0 16px rgba(212, 106, 42, 0.8)); }
}

@media (min-width: 768px) {
  .home-section-heading h2 {
    font-size: 3rem;
  }
}

.home-section-heading p {
  font-size: 1rem;
  color: #C4A882;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.5;
}

@media (min-width: 640px) {
  .home-section-heading p {
    font-size: 1.125rem;
    line-height: 1.7;
  }
}

/* ── Divider (burning line) ─────────────────────────────────── */
.ember-divider {
  height: 2px;
  max-width: 20rem;
  margin: 2rem auto 2.5rem;
  border: none;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(224, 156, 61, 0.6) 20%,
    rgba(212, 106, 42, 0.9) 50%,
    rgba(224, 156, 61, 0.6) 80%,
    transparent 100%
  );
  animation: emberLine 3s ease-in-out infinite;
}

@keyframes emberLine {
  0%, 100% { opacity: 0.7; }
  50%      { opacity: 1; }
}

/* ── Stagger entrance animation ─────────────────────────────── */
.module-tile {
  opacity: 0;
  transform: translateY(30px);
  animation: tileEnter 0.6s ease forwards;
}

.module-tile:nth-child(1)  { animation-delay: 0.05s; }
.module-tile:nth-child(2)  { animation-delay: 0.10s; }
.module-tile:nth-child(3)  { animation-delay: 0.15s; }
.module-tile:nth-child(4)  { animation-delay: 0.20s; }
.module-tile:nth-child(5)  { animation-delay: 0.25s; }
.module-tile:nth-child(6)  { animation-delay: 0.30s; }
.module-tile:nth-child(7)  { animation-delay: 0.35s; }
.module-tile:nth-child(8)  { animation-delay: 0.40s; }
.module-tile:nth-child(9)  { animation-delay: 0.45s; }
.module-tile:nth-child(10) { animation-delay: 0.50s; }
.module-tile:nth-child(11) { animation-delay: 0.55s; }
.module-tile:nth-child(12) { animation-delay: 0.60s; }
.module-tile:nth-child(13) { animation-delay: 0.65s; }
.module-tile:nth-child(14) { animation-delay: 0.70s; }
.module-tile:nth-child(15) { animation-delay: 0.75s; }

@keyframes tileEnter {
  from { opacity: 0; transform: translateY(30px) scale(0.95); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ── Bottom CTA Section ─────────────────────────────────────── */
.home-cta-section {
  text-align: center;
  padding-top: 1rem;
}

.home-cta-section p {
  font-size: 1.125rem;
  color: #E9D6B9;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

/* Pulsing CTA button glow */
.cta-btn-glow {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.cta-btn-glow::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 0.6rem;
  background: linear-gradient(90deg, #E09C3D, #D46A2A, #DCA65B, #E09C3D);
  background-size: 300% 100%;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
  animation: ctaShimmer 3s linear infinite;
}

.cta-btn-glow:hover::after {
  opacity: 1;
}

@keyframes ctaShimmer {
  0%   { background-position: 0% 50%; }
  100% { background-position: 300% 50%; }
}

/* ── Gradient icon backgrounds (matching each module) ──────── */
.icon-purple-pink   { background: linear-gradient(135deg, #9333ea, #ec4899); }
.icon-rose-pink     { background: linear-gradient(135deg, #f43f5e, #ec4899); }
.icon-blue-cyan     { background: linear-gradient(135deg, #3b82f6, #06b6d4); }
.icon-green-emerald { background: linear-gradient(135deg, #22c55e, #10b981); }
.icon-yellow-orange { background: linear-gradient(135deg, #eab308, #f97316); }
.icon-red-pink      { background: linear-gradient(135deg, #ef4444, #ec4899); }
.icon-indigo-purple { background: linear-gradient(135deg, #6366f1, #9333ea); }
.icon-gold-red      { background: linear-gradient(135deg, #facc15, #ef4444); }
.icon-amber-orange  { background: linear-gradient(135deg, #f59e0b, #f97316); }
.icon-cyan-teal     { background: linear-gradient(135deg, #06b6d4, #14b8a6); }
.icon-red-orange    { background: linear-gradient(135deg, #dc2626, #f97316); }
.icon-slate-blue    { background: linear-gradient(135deg, #64748b, #3b82f6); }
.icon-steel-blue    { background: linear-gradient(135deg, #475569, #1d4ed8); }
.icon-stone-gray    { background: linear-gradient(135deg, #78716c, #6b7280); }
.icon-orange-yellow { background: linear-gradient(135deg, #f97316, #facc15); }
.icon-emerald-teal  { background: linear-gradient(135deg, #10b981, #14b8a6); }

/* ── Hero Section Enhancements ──────────────────────────────── */
.hero-section-home {
  position: relative;
  overflow: hidden;
}

.hero-section-home .section-container {
  position: relative;
  z-index: 1;
}

/* Subtle ember border-top for hero */
.hero-section-home::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(224, 156, 61, 0.4),
    rgba(212, 106, 42, 0.6),
    rgba(224, 156, 61, 0.4),
    transparent
  );
}

/* ═══════════════════════════════════════════════════════════════
   FREE TOOLS SHOWCASE — immersive animated banner
   ═══════════════════════════════════════════════════════════════ */
.ftb-showcase {
  position: relative;
  background: linear-gradient(160deg, #1a0e06 0%, #3E2819 35%, #2a1508 65%, #1a0e06 100%);
  border: 1px solid rgba(224, 156, 61, 0.35);
  border-radius: 20px;
  padding: 56px 36px;
  text-align: center;
  overflow: hidden;
  box-shadow:
    0 0 40px rgba(212, 106, 42, 0.08),
    0 0 80px rgba(212, 106, 42, 0.04),
    inset 0 1px 0 rgba(224, 156, 61, 0.15);
}

/* ── Animated background orbs ────────────────────────────────── */
.ftb-bg-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.ftb-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
  animation: ftbOrbFloat 8s ease-in-out infinite;
}

.ftb-orb-1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #D46A2A, transparent 70%);
  top: -15%; left: 10%;
  animation-duration: 8s;
}

.ftb-orb-2 {
  width: 350px; height: 350px;
  background: radial-gradient(circle, #E09C3D, transparent 70%);
  bottom: -20%; right: 5%;
  animation-duration: 10s;
  animation-delay: -3s;
}

.ftb-orb-3 {
  width: 250px; height: 250px;
  background: radial-gradient(circle, #6366f1, transparent 70%);
  top: 30%; right: 20%;
  animation-duration: 12s;
  animation-delay: -6s;
  opacity: 0.06;
}

@keyframes ftbOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(30px, -20px) scale(1.1); }
  66%      { transform: translate(-20px, 15px) scale(0.95); }
}

/* ── Floating ember particles ────────────────────────────────── */
.ftb-ember {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: #E09C3D;
  pointer-events: none;
  opacity: 0;
  animation: ftbEmberRise 4s ease-out infinite;
}

.ftb-ember-1 { left: 8%;  bottom: 5%;  animation-delay: 0s;    width: 3px; height: 3px; }
.ftb-ember-2 { left: 18%; bottom: 0%;  animation-delay: 0.8s;  width: 5px; height: 5px; background: #D46A2A; }
.ftb-ember-3 { left: 32%; bottom: 8%;  animation-delay: 1.5s;  width: 3px; height: 3px; }
.ftb-ember-4 { left: 48%; bottom: 3%;  animation-delay: 2.2s;  width: 4px; height: 4px; background: #DCA65B; }
.ftb-ember-5 { left: 62%; bottom: 6%;  animation-delay: 0.4s;  width: 3px; height: 3px; }
.ftb-ember-6 { left: 75%; bottom: 2%;  animation-delay: 1.8s;  width: 5px; height: 5px; background: #D46A2A; }
.ftb-ember-7 { left: 85%; bottom: 7%;  animation-delay: 3.0s;  width: 3px; height: 3px; }
.ftb-ember-8 { left: 92%; bottom: 4%;  animation-delay: 2.6s;  width: 4px; height: 4px; background: #DCA65B; }

@keyframes ftbEmberRise {
  0%   { opacity: 0;   transform: translateY(0) scale(1); }
  10%  { opacity: 0.9; }
  60%  { opacity: 0.5; }
  100% { opacity: 0;   transform: translateY(-120px) translateX(15px) scale(0.2); }
}

/* ── Content layer ───────────────────────────────────────────── */
.ftb-content { position: relative; z-index: 1; }

/* ── Pulsing FREE badge ──────────────────────────────────────── */
.ftb-badge-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 24px;
}

.ftb-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 2px solid rgba(224, 156, 61, 0.3);
  animation: ftbPulse 2.5s ease-out infinite;
}

@keyframes ftbPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.2); opacity: 0; }
  100% { transform: scale(1.2); opacity: 0; }
}

.ftb-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, rgba(212, 106, 42, 0.25), rgba(224, 156, 61, 0.15));
  border: 1px solid rgba(224, 156, 61, 0.5);
  color: #E09C3D;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 22px;
  border-radius: 999px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  animation: ftbBadgeShimmer 3s ease-in-out infinite;
}

@keyframes ftbBadgeShimmer {
  0%, 100% { box-shadow: 0 0 10px rgba(224, 156, 61, 0.15); }
  50%      { box-shadow: 0 0 25px rgba(224, 156, 61, 0.3); }
}

/* ── Title ───────────────────────────────────────────────────── */
.ftb-title {
  font-size: 2rem;
  font-weight: 800;
  color: #FAF3E8;
  margin-bottom: 14px;
  line-height: 1.25;
}

.ftb-title-accent {
  background: linear-gradient(135deg, #E09C3D, #D46A2A, #E09C3D);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: ftbGradientShift 4s ease infinite;
}

@keyframes ftbGradientShift {
  0%, 100% { background-position: 0% center; }
  50%      { background-position: 100% center; }
}

/* ── Subtitle ────────────────────────────────────────────────── */
.ftb-subtitle {
  color: #E9D6B9;
  font-size: 1.1rem;
  max-width: 620px;
  margin: 0 auto 36px;
  line-height: 1.65;
}

/* ── Card grid ───────────────────────────────────────────────── */
.ftb-cards {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* ── Individual cards ────────────────────────────────────────── */
.ftb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(26, 14, 6, 0.6);
  border: 1px solid rgba(129, 87, 57, 0.3);
  border-radius: 16px;
  padding: 0;
  width: 300px;
  text-decoration: none;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  overflow: hidden;
}

.ftb-card-inner {
  position: relative;
  z-index: 1;
  padding: 32px 28px 28px;
}

/* Diagonal shine effect */
.ftb-card-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.06) 45%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(255, 255, 255, 0.06) 55%,
    transparent 70%
  );
  transition: left 0.7s ease;
  pointer-events: none;
  z-index: 2;
}

.ftb-card:hover .ftb-card-shine {
  left: 150%;
}

/* Card sparks on hover */
.ftb-card-spark {
  position: absolute;
  width: 3px; height: 3px;
  border-radius: 50%;
  background: #E09C3D;
  opacity: 0;
  pointer-events: none;
  z-index: 3;
}

.ftb-card:hover .ftb-card-spark {
  animation: ftbCardSparkle 0.8s ease-out forwards;
}

.ftb-card-spark-1 { top: 15%; left: 10%;  animation-delay: 0s; }
.ftb-card-spark-2 { top: 40%; right: 8%;  animation-delay: 0.15s; }
.ftb-card-spark-3 { bottom: 20%; left: 25%; animation-delay: 0.3s; }

@keyframes ftbCardSparkle {
  0%   { opacity: 1; transform: scale(1); }
  50%  { opacity: 0.8; transform: scale(2.5); }
  100% { opacity: 0; transform: scale(0.5); }
}

.ftb-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.ftb-card-music:hover {
  border-color: rgba(212, 106, 42, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 106, 42, 0.12);
}

.ftb-card-will:hover {
  border-color: rgba(99, 102, 241, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(99, 102, 241, 0.12);
}

.ftb-card-dogtags:hover {
  border-color: rgba(148, 163, 184, 0.6);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(148, 163, 184, 0.15);
}

/* Card icon */
.ftb-card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #fff;
  margin: 0 auto 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ftb-card:hover .ftb-card-icon {
  transform: scale(1.1) rotate(-3deg);
}

.ftb-card-icon-music {
  background: linear-gradient(135deg, #D46A2A, #E09C3D);
  box-shadow: 0 6px 20px rgba(212, 106, 42, 0.3);
}

.ftb-card:hover .ftb-card-icon-music {
  box-shadow: 0 8px 30px rgba(212, 106, 42, 0.5);
}

.ftb-card-icon-will {
  background: linear-gradient(135deg, #6366f1, #818cf8);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.3);
}

.ftb-card:hover .ftb-card-icon-will {
  box-shadow: 0 8px 30px rgba(99, 102, 241, 0.5);
}

.ftb-card-icon-dogtags {
  background: linear-gradient(135deg, #475569, #94a3b8);
  box-shadow: 0 6px 20px rgba(71, 85, 105, 0.35);
}

.ftb-card:hover .ftb-card-icon-dogtags {
  box-shadow: 0 8px 30px rgba(148, 163, 184, 0.5);
}

/* Card text */
.ftb-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #FAF3E8;
  margin-bottom: 8px;
}

.ftb-card-desc {
  font-size: 0.9rem;
  color: #E9D6B9;
  line-height: 1.55;
  margin-bottom: 16px;
}

/* Feature checkmarks */
.ftb-card-features {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}

.ftb-card-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: #C4A882;
}

.ftb-card-feature i {
  font-size: 0.65rem;
  color: #22c55e;
  flex-shrink: 0;
}

/* Card CTA button */
.ftb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 8px 20px;
  border-radius: 8px;
  transition: all 0.25s ease;
}

.ftb-card-cta-music {
  color: #E09C3D;
  background: rgba(212, 106, 42, 0.12);
  border: 1px solid rgba(212, 106, 42, 0.25);
}

.ftb-card:hover .ftb-card-cta-music {
  background: rgba(212, 106, 42, 0.2);
  border-color: rgba(212, 106, 42, 0.5);
}

.ftb-card-cta-will {
  color: #818cf8;
  background: rgba(99, 102, 241, 0.12);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

.ftb-card:hover .ftb-card-cta-will {
  background: rgba(99, 102, 241, 0.2);
  border-color: rgba(99, 102, 241, 0.5);
}

.ftb-card-cta-dogtags {
  color: #cbd5e1;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.ftb-card:hover .ftb-card-cta-dogtags {
  background: rgba(148, 163, 184, 0.22);
  border-color: rgba(148, 163, 184, 0.5);
}

/* ── Divider with diamond ────────────────────────────────────── */
.ftb-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.ftb-divider-line {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(224, 156, 61, 0.4), transparent);
}

.ftb-divider-diamond {
  color: #D46A2A;
  font-size: 0.7rem;
  opacity: 0.6;
  animation: ftbDiamondGlow 2s ease-in-out infinite;
}

@keyframes ftbDiamondGlow {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.8; }
}

/* ── "See all" link ──────────────────────────────────────────── */
.ftb-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #E09C3D;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  padding: 6px 0;
}

.ftb-link-text {
  border-bottom: 1px dashed rgba(224, 156, 61, 0.3);
  transition: border-color 0.2s;
}

.ftb-link:hover {
  color: #DCA65B;
}

.ftb-link:hover .ftb-link-text {
  border-color: #DCA65B;
}

.ftb-link:hover i {
  transform: translateX(4px);
}

.ftb-link i {
  transition: transform 0.25s ease;
}

/* ── Mobile responsive ───────────────────────────────────────── */
@media (max-width: 640px) {
  .ftb-showcase { padding: 36px 20px; }
  .ftb-title { font-size: 1.4rem; }
  .ftb-subtitle { font-size: 0.95rem; margin-bottom: 28px; }
  .ftb-cards { flex-direction: column; align-items: center; }
  .ftb-card { width: 100%; max-width: 340px; }
  .ftb-orb-1 { width: 250px; height: 250px; }
  .ftb-orb-2 { width: 200px; height: 200px; }
  .ftb-orb-3 { display: none; }
}

/* ═══════════════════════════════════════════════════════════════
   NAV — Free Tools link highlight
   ═══════════════════════════════════════════════════════════════ */
.nav-link-free,
.mobile-nav-free {
  color: #E09C3D !important;
  font-weight: 600;
}
.nav-link-free:hover,
.mobile-nav-free:hover {
  color: #DCA65B !important;
}

