/* ============================================================
   ToolVerse Homepage V2 — Section-specific styles
   Theme variables inherited from style.css — NO new colors.
   ============================================================ */

/* ---- SECTION 1: Hero V2 ---- */
.hero-v2 {
  position: relative;
  overflow: hidden;
  padding: 110px 0 130px;
  min-height: 92vh;
  display: flex;
  align-items: center;
}
.hero-v2-bg {
  position: absolute; inset: 0; z-index: -2;
  background: var(--bg-gradient);
  background-image:
    linear-gradient(180deg, rgba(11,42,74,0.92) 0%, rgba(10,33,64,0.88) 55%, rgba(6,21,39,0.97) 100%),
    url('/assets/img/hero-main.webp');
  background-size: cover, cover;
  background-position: center, center 30%;
}
.hero-v2-orb {
  position: absolute; z-index: -1;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
}
.hero-v2-orb--1 {
  top: -15%; right: -5%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.45), transparent 70%);
  opacity: 0.18;
  animation: orbDrift 14s ease-in-out infinite;
}
.hero-v2-orb--2 {
  bottom: -10%; left: -10%;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(34,211,238,0.35), transparent 70%);
  opacity: 0.14;
  animation: orbDrift 18s ease-in-out infinite reverse;
}
@keyframes orbDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(25px, -18px) scale(1.04); }
}
.hero-v2-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.hero-v2-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  color: var(--text-muted);
  margin-bottom: 30px;
  padding: 8px 22px;
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  background: var(--bg-surface);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
}
.hero-v2-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.2vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
  margin: 0 auto 30px;
  max-width: 820px;
  color: var(--text-primary);
}
.hero-v2-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 460px;
  margin: 0 auto 44px;
  line-height: 1.65;
}
.hero-v2-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
.hero-v2-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}
.float-pill-wrap {
  position: absolute;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(30px) scale(0.9);
  animation: pillEntrance 2.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pillEntrance {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.float-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: var(--radius-full);
  background: rgba(11,42,74,0.6);
  border: 1px solid var(--border-glass);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  color: var(--text-primary);
  font-size: 13px;
  font-weight: 500;
  pointer-events: auto;
  box-shadow: var(--shadow-md);
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  overflow: hidden;
}
.float-pill:hover {
  border-color: var(--border-glass-hover);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-md), var(--shadow-glow-cyan);
}
.fp-dot { width: 8px; height: 8px; border-radius: 50%; flex: none; }
.fp-1 { top: 12%; left: 1%; animation-delay: 1.8s; }
.fp-2 { top: 25%; right: 0%; animation-delay: 2.0s; }
.fp-3 { bottom: 25%; left: 3%; animation-delay: 2.2s; }
.fp-4 { bottom: 12%; right: 4%; animation-delay: 2.4s; }
.fp-5 { top: 4%; right: 12%; animation-delay: 2.6s; }

@keyframes pillDrift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ---- SECTION 2: Story (editorial) ---- */
.section-story { background: transparent; padding: 120px 0; }
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.story-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 22px;
}
.story-heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: left;
  color: var(--text-primary);
  margin: 0;
}
.story-right { padding-top: 16px; }
.story-text {
  font-size: 17.5px;
  line-height: 1.72;
  color: var(--text-secondary);
  margin-bottom: 18px;
}
.story-text:last-child { margin-bottom: 0; }
.story-text--accent {
  color: var(--text-primary);
  font-size: 18.5px;
}
.story-text--accent strong {
  background: var(--accent-gradient);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ---- SECTION 3: Process (browser privacy) ---- */
.section-process {
  background: rgba(6, 21, 39, 0.45);
  padding: 110px 0;
}
.process-eyebrow {
  display: block;
  text-align: center;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 18px;
}
.process-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-top: 60px;
}
.process-node {
  text-align: center;
  flex: 0 0 190px;
  max-width: 190px;
}
.process-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--bg-surface-hover);
  border: 1.5px solid rgba(34,211,238,0.3);
  margin-bottom: 18px;
  color: var(--accent-cyan);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.process-icon.accent-purple { border-color: rgba(139,92,246,0.3); color: var(--accent-purple); }
.process-icon.accent-pink   { border-color: rgba(255,61,138,0.3); color: var(--accent-pink); }
.process-icon.accent-mint   { border-color: rgba(52,211,153,0.35); color: var(--accent-mint); }
.process-node:hover .process-icon {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 28px rgba(0,0,0,0.3);
}
.process-node--safe .process-icon {
  border-width: 2px;
  box-shadow: 0 0 22px rgba(52,211,153,0.12);
}
.process-node h3 { font-size: 16px; margin-bottom: 6px; }
.process-node p  { font-size: 14px; margin: 0; color: var(--text-muted); line-height: 1.5; }
.process-connector {
  display: flex; align-items: center;
  padding-top: 32px; width: 52px; flex: 0 0 52px;
}
.process-connector span {
  display: block; width: 100%; height: 2px;
  background: linear-gradient(90deg, rgba(139,92,246,0.2), rgba(139,92,246,0.55), rgba(139,92,246,0.2));
  position: relative;
}
.process-connector span::after {
  content: ''; position: absolute; right: -3px; top: -3px;
  width: 7px; height: 7px;
  border-right: 1.5px solid var(--accent-purple);
  border-bottom: 1.5px solid var(--accent-purple);
  transform: rotate(-45deg);
}

/* ---- SECTION 4: Personas ---- */
.section-personas { padding: 110px 0; }
.persona-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.persona-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  display: flex; flex-direction: column;
}
.persona-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}
.persona-icon {
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: var(--radius-full);
  background: var(--bg-surface-hover);
  border: 1px solid rgba(34,211,238,0.3);
  margin-bottom: 18px;
  color: var(--accent-cyan);
}
.persona-icon.accent-purple { border-color: rgba(139,92,246,0.3); color: var(--accent-purple); }
.persona-icon.accent-pink   { border-color: rgba(255,61,138,0.3); color: var(--accent-pink); }
.persona-icon.accent-amber  { border-color: rgba(251,146,60,0.3); color: var(--accent-amber); }
.persona-icon.accent-mint   { border-color: rgba(52,211,153,0.3); color: var(--accent-mint); }
.persona-card h3 { font-size: 18px; margin-bottom: 8px; }
.persona-card > p { font-size: 14px; color: var(--text-muted); margin-bottom: 18px; line-height: 1.55; flex: 1; }
.persona-tools { display: flex; flex-direction: column; gap: 6px; }
.persona-tools a {
  font-size: 13px; color: var(--text-secondary);
  padding: 7px 13px; border-radius: var(--radius-sm);
  background: var(--bg-surface); border: 1px solid var(--border-glass);
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.persona-tools a:hover {
  color: var(--accent-cyan);
  border-color: rgba(34,211,238,0.3);
  background: rgba(34,211,238,0.05);
}

/* ---- SECTION 5: Workflows ---- */
.section-workflows {
  background: rgba(6, 21, 39, 0.45);
  padding: 110px 0;
}
.workflow-track {
  margin-top: 40px;
  padding: 30px 34px;
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.workflow-track + .workflow-track { margin-top: 18px; }
.workflow-label {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.workflow-timeline {
  display: flex;
  align-items: center;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-glass-hover) transparent;
}
.workflow-timeline::-webkit-scrollbar { height: 4px; }
.workflow-timeline::-webkit-scrollbar-track { background: transparent; }
.workflow-timeline::-webkit-scrollbar-thumb { background: var(--border-glass-hover); border-radius: 4px; }
.workflow-node {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 18px;
  background: var(--bg-surface-hover);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  color: var(--text-primary);
  font-size: 13.5px; font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.workflow-node:hover {
  border-color: var(--border-glass-hover);
  transform: translateY(-2px);
  color: var(--accent-cyan);
  box-shadow: var(--shadow-sm);
}
.wf-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%; background: var(--bg-surface);
  flex: none;
}
.wf-icon.accent-cyan   { color: var(--accent-cyan); }
.wf-icon.accent-purple { color: var(--accent-purple); }
.wf-icon.accent-pink   { color: var(--accent-pink); }
.wf-arrow {
  color: var(--text-muted);
  font-size: 16px; flex: none; opacity: 0.4;
  font-family: var(--font-mono);
}
.wf-done {
  font-family: var(--font-mono);
  font-size: 13px; color: var(--accent-mint);
  letter-spacing: 0.05em; white-space: nowrap;
  padding: 10px 18px;
  background: rgba(52,211,153,0.06);
  border: 1px solid rgba(52,211,153,0.2);
  border-radius: var(--radius-full);
}

/* ---- SECTION 6: Stats ---- */
.section-stats {
  padding: 110px 0;
  position: relative; overflow: hidden;
}
.section-stats::before {
  content: ''; position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 700px; height: 400px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(139,92,246,0.3), transparent 65%);
  opacity: 0.1; filter: blur(60px); pointer-events: none;
}
.stats-intro { text-align: center; margin-bottom: 56px; }
.stats-intro h2 { margin-bottom: 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.stat-block {
  text-align: center;
  padding: 22px 16px 20px;
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(11, 42, 74, 0.55) 0%, rgba(6, 21, 39, 0.75) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 
    0 14px 36px rgba(0, 0, 0, 0.40),
    0 0 24px rgba(34, 211, 238, 0.08),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.35);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s ease, border-color 0.35s ease;
}
.stat-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(34, 211, 238, 0.7), rgba(255, 133, 192, 0.7), transparent);
  opacity: 0.7;
  transition: opacity 0.35s ease, left 0.35s ease, right 0.35s ease;
}
.stat-block:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 255, 255, 0.30);
  box-shadow: 
    0 20px 48px rgba(0, 0, 0, 0.55),
    0 0 32px rgba(34, 211, 238, 0.22),
    inset 0 1.5px 0 rgba(255, 255, 255, 0.40);
}
.stat-block:hover::before {
  left: 8%;
  right: 8%;
  opacity: 1;
}
.stat-number {
  display: inline;
  font-family: 'Unbounded', 'Syne', system-ui, sans-serif;
  font-size: clamp(28px, 2.8vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(90deg, #22D3EE 0%, #A78BFA 50%, #FF85C0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.3));
}
.stat-plus {
  font-family: 'Unbounded', 'Syne', system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 900;
  background: linear-gradient(90deg, #FF85C0 0%, #22D3EE 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
  filter: drop-shadow(0 0 10px rgba(255, 133, 192, 0.3));
}
.stat-number--text {
  font-size: clamp(22px, 2.4vw, 32px);
  letter-spacing: -0.03em;
}
.stat-label {
  display: block;
  margin-top: 10px;
  font-family: 'Syne', system-ui, sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-2, #C3D3E3);
  opacity: 0.88;
}

/* ---- SECTION 7: Tools Showcase ---- */
.section-tools-showcase {
  background: rgba(6, 21, 39, 0.45);
  padding: 110px 0;
}
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.showcase-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 34px 30px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column; gap: 18px;
  color: var(--text-secondary);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.showcase-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--accent-gradient);
  opacity: 0; transition: opacity 0.3s ease;
}
.showcase-card:hover::before { opacity: 1; }
.showcase-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-lg);
}
.showcase-card-head { display: flex; align-items: center; gap: 16px; }
.showcase-card h3 { font-size: 22px; margin: 0; color: var(--text-primary); }
.showcase-card > p { font-size: 15px; line-height: 1.6; margin: 0; }
.showcase-card .card-tag { margin-top: auto; align-self: flex-start; }
.showcase-preview {
  background: rgba(6,21,39,0.5);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  overflow: hidden;
}
.showcase-preview .line { display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.showcase-preview .line-k { color: var(--accent-pink); }
.showcase-preview .line-s { color: var(--accent-cyan); }
.showcase-preview .line-p { color: var(--accent-purple); }
.showcase-preview .line-w { color: var(--text-muted); }

/* ---- SECTION 8: Explore Categories (asymmetric mosaic) ---- */
.section-explore { padding: 110px 0; }
.cat-mosaic {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
  margin-top: 52px;
}
.cat-mosaic-item {
  background: var(--bg-surface);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 14px;
  color: var(--text-secondary);
  position: relative; overflow: hidden;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}
.cat-mosaic-item:hover {
  transform: translateY(-5px);
  border-color: var(--border-glass-hover);
  box-shadow: var(--shadow-md);
}
.cat-mosaic-item:hover h3 { color: var(--accent-cyan); }
.cat-mosaic-item h3 { font-size: 22px; margin: 0; transition: color 0.2s ease; }
.cat-mosaic-item p { font-size: 15px; margin: 0; line-height: 1.55; }
.cat-mosaic-item .card-tag { margin-top: auto; }
/* Asymmetric: zigzag widths */
.cat-mosaic-item:nth-child(1) { grid-column: span 7; }
.cat-mosaic-item:nth-child(2) { grid-column: span 5; }
.cat-mosaic-item:nth-child(3) { grid-column: span 5; }
.cat-mosaic-item:nth-child(4) { grid-column: span 7; }
.cat-mosaic-item:nth-child(5) { grid-column: span 7; }
.cat-mosaic-item:nth-child(6) { grid-column: span 5; }
/* subtle accent glow per category on hover */
.cat-mosaic-item.accent-cyan:hover   { box-shadow: var(--shadow-md), var(--shadow-glow-cyan); }
.cat-mosaic-item.accent-purple:hover { box-shadow: var(--shadow-md), var(--shadow-glow-purple); }
.cat-mosaic-item.accent-pink:hover   { box-shadow: var(--shadow-md), var(--shadow-glow-pink); }

/* ---- SECTION 9: FAQ (reuses existing faq styles) ---- */
/* No additional styles needed — uses .section, .faq-list, .faq-item from style.css */

/* ---- SECTION 10: Final CTA V2 ---- */
.section-cta-v2 { position: relative; overflow: hidden; padding: 130px 0; }
.section-cta-v2::before {
  content: ''; position: absolute;
  left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 650px; height: 400px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(34,211,238,0.45), transparent 65%);
  opacity: 0.12; filter: blur(55px);
}
.section-cta-v2::after {
  content: ''; position: absolute;
  left: 30%; top: 40%; transform: translate(-50%, -50%);
  width: 500px; height: 300px; border-radius: 50%; z-index: -1;
  background: radial-gradient(circle, rgba(139,92,246,0.35), transparent 65%);
  opacity: 0.1; filter: blur(55px);
}
.cta-v2-inner {
  text-align: center;
  position: relative; z-index: 1;
}
.cta-v2-inner h2 {
  font-size: clamp(34px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.025em;
  margin-bottom: 18px;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.cta-v2-inner h2 .gradient-text { display: block; }
.cta-v2-sub {
  font-size: 19px;
  color: var(--text-secondary);
  max-width: 440px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

/* ---- Counter animation ---- */
.stat-number.is-counting {
  transition: none;
}

/* ============================================================
   RESPONSIVE — Homepage V2 sections
   ============================================================ */
@media (max-width: 1080px) {
  .hero-v2 { padding: 80px 0 100px; min-height: auto; }
  .hero-v2-title { font-size: clamp(36px, 5.5vw, 60px); }
  .story-grid { grid-template-columns: 1fr; gap: 40px; }
  .story-heading { text-align: center; }
  .story-eyebrow { display: block; text-align: center; }
  .persona-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 820px) {
  .hero-v2 { padding: 60px 0 80px; }
  .hero-v2-title { font-size: clamp(32px, 7vw, 48px); }
  .hero-v2-sub { font-size: 17px; }
  .float-pill { display: none; }
  .section-story { padding: 80px 0; }
  .story-grid { gap: 28px; }
  .story-heading { font-size: clamp(28px, 5vw, 40px); }
  .story-text { font-size: 16px; }
  .section-process { padding: 80px 0; }
  .process-flow { flex-wrap: wrap; gap: 20px; justify-content: center; }
  .process-connector { width: 36px; flex: 0 0 36px; padding-top: 0; align-items: center; }
  .process-node { flex: 0 0 140px; max-width: 140px; }
  .section-personas { padding: 80px 0; }
  .persona-grid { grid-template-columns: repeat(2, 1fr); }
  .section-workflows { padding: 80px 0; }
  .workflow-track { padding: 22px 20px; }
  .section-stats { padding: 80px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .section-tools-showcase { padding: 80px 0; }
  .showcase-grid { grid-template-columns: 1fr; }
  .section-explore { padding: 80px 0; }
  .cat-mosaic { grid-template-columns: repeat(2, 1fr); }
  .cat-mosaic-item:nth-child(n) { grid-column: span 1; }
  .section-cta-v2 { padding: 90px 0; }
  .cta-v2-inner h2 { font-size: clamp(28px, 5.5vw, 42px); }
}

@media (max-width: 520px) {
  .hero-v2 { padding: 44px 0 60px; }
  .hero-v2-title { font-size: 32px; letter-spacing: -0.02em; }
  .hero-v2-eyebrow { font-size: 11px; padding: 6px 16px; }
  .hero-v2-sub { font-size: 16px; }
  .process-flow { flex-direction: column; align-items: center; }
  .process-connector { width: auto; height: 28px; flex: 0 0 auto; padding-top: 0; flex-direction: column; }
  .process-connector span { width: 2px; height: 100%; }
  .process-connector span::after { right: auto; bottom: -3px; top: auto; left: -3px; transform: rotate(45deg); }
  .process-node { flex: none; max-width: 200px; }
  .persona-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; }
  .cat-mosaic { grid-template-columns: 1fr; }
  .section-cta-v2 { padding: 60px 0; }
}

/* Premium Frosted Glass / Translucent styling for Homepage V2 (matching info-cards/tool-shell) */
.persona-card,
.workflow-track,
.stat-block,
.showcase-card,
.cat-mosaic-item,
.faq-item {
  background: rgba(9, 27, 50, 0.38) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
}

.persona-card:hover,
.workflow-track:hover,
.stat-block:hover,
.showcase-card:hover,
.cat-mosaic-item:hover,
.faq-item:hover {
  background: rgba(9, 27, 50, 0.48) !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
}

/* Staggered entry animation on page load for Hero section */
@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-v2-eyebrow {
  opacity: 0;
  animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.15s;
}

.hero-title-line {
  display: block;
  opacity: 0;
  animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-title-line.line-1 { animation-delay: 0.45s; }
.hero-title-line.line-2 { animation-delay: 0.7s; }
.hero-title-line.line-3 { animation-delay: 0.95s; }

.hero-v2-sub {
  opacity: 0;
  animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.2s;
}

.hero-v2-actions {
  opacity: 0;
  animation: heroFadeInUp 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 1.45s;
}

/* Floating pills parent container (entrance handled by wraps) */
.hero-v2-float {
  opacity: 1;
}

/* Shine sweep animation for floating pills */
.float-pill::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  animation: shineSweep 6s infinite linear;
}

@keyframes shineSweep {
  0% { left: -150%; }
  35% { left: 150%; }
  100% { left: 150%; }
}

/* Staggered shine sweep delays for each pill */
.fp-1 .float-pill::after { animation-delay: 0.5s; }
.fp-2 .float-pill::after { animation-delay: 1.7s; }
.fp-3 .float-pill::after { animation-delay: 2.9s; }
.fp-4 .float-pill::after { animation-delay: 4.1s; }
.fp-5 .float-pill::after { animation-delay: 5.3s; }

/* Custom breathing glow animations for themed floating pills */
.fp-1 .float-pill, .fp-5 .float-pill {
  animation: 
    pillDrift 5s ease-in-out infinite,
    purplePillGlow 4s ease-in-out infinite alternate;
}
@keyframes purplePillGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
  50% { border-color: rgba(139, 92, 246, 0.45); box-shadow: var(--shadow-md), 0 0 16px rgba(139, 92, 246, 0.28); }
}

.fp-2 .float-pill {
  animation: 
    pillDrift 6s ease-in-out infinite,
    pinkPillGlow 4s ease-in-out infinite alternate;
}
@keyframes pinkPillGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
  50% { border-color: rgba(255, 61, 138, 0.45); box-shadow: var(--shadow-md), 0 0 16px rgba(255, 61, 138, 0.28); }
}

.fp-3 .float-pill {
  animation: 
    pillDrift 5.5s ease-in-out infinite,
    cyanPillGlow 4s ease-in-out infinite alternate;
}
@keyframes cyanPillGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
  50% { border-color: rgba(34, 211, 238, 0.45); box-shadow: var(--shadow-md), 0 0 16px rgba(34, 211, 238, 0.28); }
}

.fp-4 .float-pill {
  animation: 
    pillDrift 6.5s ease-in-out infinite,
    mintPillGlow 4s ease-in-out infinite alternate;
}
@keyframes mintPillGlow {
  0%, 100% { border-color: rgba(255,255,255,0.1); box-shadow: var(--shadow-md); }
  50% { border-color: rgba(52, 211, 153, 0.45); box-shadow: var(--shadow-md), 0 0 16px rgba(52, 211, 153, 0.28); }
}

/* Smooth premium Scroll Reveal transitions (Slowing down to 1.6s, adding scale transition & glows) */
.reveal {
  opacity: 0 !important;
  transform: translateY(32px) scale(0.93) !important;
  transition: 
    opacity 1.6s cubic-bezier(0.16, 1, 0.3, 1), 
    transform 1.6s cubic-bezier(0.16, 1, 0.3, 1), 
    border-color 1.6s cubic-bezier(0.16, 1, 0.3, 1), 
    box-shadow 1.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.reveal.is-visible {
  opacity: 1 !important;
  transform: translateY(0) scale(1) !important;
}

/* Theme accent glows when cards become visible */
.persona-card.accent-cyan.is-visible,
.showcase-card.accent-cyan.is-visible,
.cat-mosaic-item.accent-cyan.is-visible,
.process-node.is-visible {
  border-color: rgba(34, 211, 238, 0.38) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(34, 211, 238, 0.12) !important;
}

.persona-card.accent-purple.is-visible,
.showcase-card.accent-purple.is-visible,
.cat-mosaic-item.accent-purple.is-visible {
  border-color: rgba(139, 92, 246, 0.38) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(139, 92, 246, 0.12) !important;
}

.persona-card.accent-pink.is-visible,
.showcase-card.accent-pink.is-visible,
.cat-mosaic-item.accent-pink.is-visible {
  border-color: rgba(255, 61, 138, 0.38) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(255, 61, 138, 0.12) !important;
}

.persona-card.accent-amber.is-visible {
  border-color: rgba(251, 146, 60, 0.38) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(251, 146, 60, 0.12) !important;
}

.persona-card.accent-mint.is-visible {
  border-color: rgba(52, 211, 153, 0.38) !important;
  box-shadow: var(--shadow-lg), 0 0 24px rgba(52, 211, 153, 0.12) !important;
}

/* Staggered Delay for grid items (tek tek gelme efekti) */
.persona-card:nth-child(1) { transition-delay: 0.05s !important; }
.persona-card:nth-child(2) { transition-delay: 0.18s !important; }
.persona-card:nth-child(3) { transition-delay: 0.31s !important; }
.persona-card:nth-child(4) { transition-delay: 0.44s !important; }
.persona-card:nth-child(5) { transition-delay: 0.57s !important; }

.process-node:nth-of-type(1) { transition-delay: 0.05s !important; }
.process-node:nth-of-type(2) { transition-delay: 0.22s !important; }
.process-node:nth-of-type(3) { transition-delay: 0.39s !important; }
.process-node:nth-of-type(4) { transition-delay: 0.56s !important; }

.process-connector:nth-of-type(1) { transition-delay: 0.13s !important; }
.process-connector:nth-of-type(2) { transition-delay: 0.3s !important; }
.process-connector:nth-of-type(3) { transition-delay: 0.47s !important; }

.stat-block:nth-child(1) { transition-delay: 0.05s !important; }
.stat-block:nth-child(2) { transition-delay: 0.18s !important; }
.stat-block:nth-child(3) { transition-delay: 0.31s !important; }
.stat-block:nth-child(4) { transition-delay: 0.44s !important; }

.showcase-card:nth-child(1) { transition-delay: 0.05s !important; }
.showcase-card:nth-child(2) { transition-delay: 0.22s !important; }
.showcase-card:nth-child(3) { transition-delay: 0.39s !important; }
.showcase-card:nth-child(4) { transition-delay: 0.56s !important; }

.cat-mosaic-item:nth-child(1) { transition-delay: 0.05s !important; }
.cat-mosaic-item:nth-child(2) { transition-delay: 0.2s !important; }
.cat-mosaic-item:nth-child(3) { transition-delay: 0.35s !important; }
.cat-mosaic-item:nth-child(4) { transition-delay: 0.5s !important; }
.cat-mosaic-item:nth-child(5) { transition-delay: 0.65s !important; }
.cat-mosaic-item:nth-child(6) { transition-delay: 0.8s !important; }

/* ---- FAQ Redesign (Frosted Glass & Premium Transitions) ---- */
.container-faq {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
}
.container-faq::before,
.container-faq::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 3px;
  pointer-events: none;
  background-size: 100% 400%;
  animation: borderFlow 8s linear infinite;
  transition: opacity 0.4s ease, filter 0.4s ease;
  opacity: 0.45;
}
.container-faq::before {
  left: 16px;
  background-image: linear-gradient(180deg, 
    transparent 0%, 
    rgba(34, 211, 238, 0.45) 20%, 
    rgba(139, 92, 246, 0.45) 50%, 
    rgba(255, 61, 138, 0.45) 80%, 
    transparent 100%
  );
}
.container-faq::after {
  right: 16px;
  background-image: linear-gradient(180deg, 
    transparent 0%, 
    rgba(139, 92, 246, 0.45) 20%, 
    rgba(255, 61, 138, 0.45) 50%, 
    rgba(34, 211, 238, 0.45) 80%, 
    transparent 100%
  );
}
.container-faq:hover::before {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.65));
}
.container-faq:hover::after {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.65));
}
@keyframes borderFlow {
  0% { background-position: 0% 0%; }
  100% { background-position: 0% -400%; }
}
@media (max-width: 820px) {
  .container-faq {
    padding: 0 20px;
  }
  .container-faq::before,
  .container-faq::after {
    display: none;
  }
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  align-items: start;
}
@media (max-width: 820px) {
  .faq-list {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
.faq-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  margin-bottom: 16px;
  background: rgba(34, 211, 238, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  padding: 5px 16px;
  border-radius: var(--radius-full);
  box-shadow: 0 0 12px rgba(34, 211, 238, 0.1);
  text-shadow: 0 0 8px rgba(34, 211, 238, 0.4);
}
.section-title-faq {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 auto 16px;
  color: var(--text-primary);
  text-align: center;
}

/* Only "Questions" word gets the animated glow */
.faq-title-glow {
  display: inline;
  background: linear-gradient(90deg, #ffffff 0%, #a5f3fc 25%, #c084fc 50%, #ff3d8a 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShine 6s linear infinite, textGlow 4s ease-in-out infinite alternate;
  will-change: filter;
}

@keyframes textShine {
  0%   { background-position: 0% center; }
  100% { background-position: -200% center; }
}

@keyframes textGlow {
  0%, 100% {
    filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.30)) drop-shadow(0 0 20px rgba(139, 92, 246, 0.20));
  }
  50% {
    filter: drop-shadow(0 0 16px rgba(255, 61, 138, 0.42)) drop-shadow(0 0 30px rgba(34, 211, 238, 0.32));
  }
}

/* Glass shimmer on "Don't Search." — direct gradient sweep, 100% stable (no shaking/vibrating) */
.glass-shimmer {
  display: inline;
  background: linear-gradient(
    105deg,
    var(--accent-pink) 0%,
    var(--accent-purple) 30%,
    #ffffff 50%,
    var(--accent-pink) 70%,
    var(--accent-purple) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: glassSwipe 4s ease-in-out infinite;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.35));
}
@keyframes glassSwipe {
  0%   { background-position: 0% center; }
  100% { background-position: -200% center; }
}

/* Border: bracket [ ] style with rounded corners, no top/bottom line */
.container-faq::before,
.container-faq::after {
  content: '';
  position: absolute;
  top: 40px;
  bottom: 40px;
  width: 3px;
  pointer-events: none;
  background-size: 100% 400%;
  animation: borderFlow 8s linear infinite;
  transition: opacity 0.4s ease, filter 0.4s ease;
  opacity: 0.45;
  border-radius: 3px;
}
.container-faq::before {
  left: 16px;
  background-image: linear-gradient(180deg,
    rgba(34, 211, 238, 0.45) 0%,
    rgba(139, 92, 246, 0.45) 50%,
    rgba(255, 61, 138, 0.45) 100%
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.container-faq::after {
  right: 16px;
  background-image: linear-gradient(180deg,
    rgba(139, 92, 246, 0.45) 0%,
    rgba(255, 61, 138, 0.45) 50%,
    rgba(34, 211, 238, 0.45) 100%
  );
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.container-faq:hover::before {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(34, 211, 238, 0.65));
}
.container-faq:hover::after {
  opacity: 1;
  filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.65));
}
@keyframes borderFlow {
  0%   { background-position: 0% 0%; }
  100% { background-position: 0% -400%; }
}
.section-sub-faq {
  color: var(--text-secondary);
  font-size: 16px;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.6;
  opacity: 0.95;
  text-align: center;
}
.faq-controls {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
  margin-bottom: 30px;
}
.faq-search-wrap {
  position: relative;
  width: 100%;
}
.faq-search-wrap svg {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}
#faq-search {
  width: 100%;
  padding: 14px 20px 14px 48px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-glass);
  background: rgba(9, 27, 50, 0.42);
  color: var(--text-primary);
  font-size: 15px;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: border-color 0.2s, box-shadow 0.2s;
}
#faq-search:focus {
  outline: none;
  border-color: rgba(34, 211, 238, 0.45);
  box-shadow: 0 0 16px rgba(34, 211, 238, 0.15);
}

.faq-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.faq-chip {
  padding: 8px 18px;
  border-radius: var(--radius-full);
  background: rgba(9, 27, 50, 0.28);
  border: 1px solid var(--border-glass);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
}
.faq-chip:hover {
  background: rgba(9, 27, 50, 0.45);
  border-color: var(--border-glass-hover);
  color: var(--text-primary);
}
.faq-chip.is-active {
  background: var(--accent-gradient);
  border-color: transparent;
  color: var(--text-primary);
  box-shadow: var(--shadow-sm);
}

/* Progress Indicator */
.faq-progress {
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  overflow: hidden;
}
.faq-progress-bar {
  width: 0%;
  height: 100%;
  background: var(--accent-gradient);
  transition: width 0.4s ease;
}

/* Accordion Item styles */
.faq-item-v2 {
  background: rgba(9, 27, 50, 0.38) !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: var(--radius-lg);
  margin-bottom: 0 !important;
  overflow: hidden;
  backdrop-filter: blur(20px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(140%) !important;
  box-shadow: var(--shadow-lg), inset 0 1px 0 rgba(255, 255, 255, 0.09) !important;
  transition: border-color 0.4s, box-shadow 0.4s, transform 0.4s;
}
.faq-item-v2:hover {
  border-color: rgba(255, 255, 255, 0.22) !important;
  box-shadow: var(--shadow-lg), 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  transform: translateY(-2px);
}
.faq-item-v2.is-open {
  border-color: rgba(34, 211, 238, 0.45) !important;
}
.faq-item-v2.is-open.accent-purple {
  border-color: rgba(139, 92, 246, 0.45) !important;
}
.faq-item-v2.is-open.accent-pink {
  border-color: rgba(255, 61, 138, 0.45) !important;
}

.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 28px;
  background: transparent;
  border: none;
  text-align: left;
  color: var(--text-primary);
  cursor: pointer;
  outline: none;
}
.faq-badge-num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-muted);
  opacity: 0.6;
}
.faq-question {
  flex: 1;
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
  color: var(--text-primary);
}
.faq-chevron-icon {
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s;
  flex-shrink: 0;
}
.faq-item-v2.is-open .faq-chevron-icon {
  transform: rotate(180deg);
  color: var(--accent-cyan);
}
.faq-item-v2.is-open.accent-purple .faq-chevron-icon {
  color: var(--accent-purple);
}
.faq-item-v2.is-open.accent-pink .faq-chevron-icon {
  color: var(--accent-pink);
}

.faq-content-wrap {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.faq-content-body {
  padding: 0 28px 24px 72px;
}
.faq-content-body p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-secondary);
  margin: 0;
}

/* Outro CTA */
.faq-outro-cta {
  text-align: center;
  margin-top: 56px;
  padding: 44px 30px;
  background: rgba(9, 27, 50, 0.28);
  border: 1px dashed rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
}
.faq-outro-cta h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--text-primary);
}
.faq-outro-cta p {
  color: var(--text-muted);
  font-size: 15px;
  max-width: 460px;
  margin: 0 auto 24px;
  line-height: 1.55;
}

@media (max-width: 600px) {
  .faq-trigger {
    padding: 18px 20px;
    gap: 12px;
  }
  .faq-content-body {
    padding: 0 20px 20px 48px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-badge-num {
    display: none;
  }
}




