:root {
  --bg: #050810;
  --bg2: #0a0e17;
  --card: #0f1623;
  --card-bg: rgba(15, 22, 35, 0.7);
  --card-bg-alt: rgba(15, 22, 35, 0.5);
  --text: #f0f4ff;
  --muted: #94a3b8;
  --muted2: #64748b;
  --line: rgba(255, 255, 255, 0.08);
  --shadow: 0 20px 80px -10px rgba(0, 0, 0, 0.6);
  --shadow2: 0 12px 40px -8px rgba(0, 0, 0, 0.5);
  --r: 20px;
  --r2: 32px;
  --max: 1200px;
  --accent1: #8b5cf6;
  --accent2: #06b6d4;
  --accent3: #10b981;
  --danger: #f43f5e;
  --focus: rgba(6, 182, 212, 0.6);
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-main);
  color: var(--text);
  background: var(--bg);
  background-image:
    radial-gradient(1000px 600px at 15% -10%,
      rgba(139, 92, 246, 0.15),
      transparent 60%),
    radial-gradient(1000px 800px at 85% 10%,
      rgba(6, 182, 212, 0.12),
      transparent 50%),
    radial-gradient(800px 400px at 50% 100%,
      rgba(16, 185, 129, 0.05),
      transparent 50%);
  background-attachment: fixed;
  line-height: 1.7;
  letter-spacing: 0.01em;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent1), var(--accent2));
  z-index: 9999;
  transition: width 0.1s ease;
  box-shadow: 0 0 10px rgba(124, 58, 237, 0.5);
}

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

a:hover {
  opacity: 0.92;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.skip-link:focus {
  left: 12px;
  outline: 2px solid var(--focus);
}

/* Header */
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(5, 8, 16, 0.65);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-header[data-elevate].is-elevated {
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-by {
  color: #fff;
  font-size: 11px;
  font-weight: bold;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.dot-node-link {
  display: flex;
  align-items: center;
}

.dot-node-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.1),
    0 0 15px rgba(124, 58, 237, 0.4);
  transform: rotate(45deg);
}

.brand-title {
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 14px;
}

.brand-sub {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 1px;
}

.nav {
  display: flex;
  gap: 14px;
  align-items: center;
}

.nav-link {
  color: var(--muted);
  font-size: 13px;
}

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

.header-cta {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Buttons */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all var(--transition-base);
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
  font-size: 14px;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.btn:hover::before {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.06);
}

.btn:active {
  transform: translateY(0px);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.btn-ghost {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.05);
}

.btn-primary {
  border-color: rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, var(--accent1), var(--accent2));
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
  box-shadow:
    0 4px 15px rgba(124, 58, 237, 0.3),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.btn-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
  opacity: 1;
  z-index: 1;
}

.btn-primary:hover {
  box-shadow:
    0 8px 25px rgba(124, 58, 237, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.2) inset;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -50%;
  background: linear-gradient(45deg,
      transparent 30%,
      rgba(255, 255, 255, 0.3) 50%,
      transparent 70%);
  transform: translateX(-100%) rotate(45deg);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(200%) rotate(45deg);
}

.btn-lg {
  padding: 13px 18px;
  font-size: 15px;
}

.btn-ic {
  opacity: 0.9;
  transition: transform 0.2s ease;
}

.btn:hover .btn-ic {
  transform: scale(1.1);
}

/* Hero */
/* Hero */
.hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: visible;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  /* Left side wider */
  gap: 60px;
  /* Increased gap */
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--accent2);
  padding: 6px 0;
  border-radius: 99px;
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  background: none !important;
  border: none !important;
  box-shadow: none !important;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0.4);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(6, 182, 212, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(6, 182, 212, 0);
  }
}

.hero-title {
  font-size: clamp(42px, 5vw, 64px);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0 0 24px;
  font-weight: 800;
  color: #fff;
}

.grad {
  background: linear-gradient(90deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.text-lime {
  color: #c2fe0b;
  font-weight: 900;
}

.marker-lime {
  background: #c2fe0b;
  display: inline-block;
  padding: 0 4px;
  line-height: 1.1;
  font-weight: 900;
  color: #111;
}

.hero-lead {
  color: #fff;
  font-size: 15.5px;
  margin: 0 0 18px;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.trust-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.trust-pill {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(6, 182, 212, 0.3);
  background: rgba(6, 182, 212, 0.15);
  border-radius: 999px;
  padding: 8px 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.trust-pill:first-child {
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.2), rgba(6, 182, 212, 0.2));
  border-color: rgba(6, 182, 212, 0.4);
}

.note {
  color: var(--muted2);
  font-size: 12px;
  margin: 14px 0 0;
}

.hero-panel .panel {
  height: 100%;
  border-radius: var(--r2);
  background: rgba(15, 22, 35, 0.4);
  /* slightly more transparent */
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  /* softer border */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  /* deeper shadow */
  padding: 32px 24px;
  /* more vertical padding */
  position: relative;
  z-index: 10;
  max-width: 440px;
  /* limit width to avoid being too prominent */
  margin-left: auto;
}

.panel-top {
  margin-bottom: 24px;
  text-align: center;
}

.panel-eyebrow {
  margin: 0 0 6px;
  color: var(--accent2);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.panel-title {
  margin: 0;
  font-weight: 900;
  font-size: 16px;
}

.panel-subheading {
  font-size: 15px;
  font-weight: bold;
  color: var(--accent2);
  margin-bottom: 12px;
  text-align: center;
  letter-spacing: 0.05em;
}

.panel-list {
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.panel-list li {
  display: flex;
  gap: 10px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
}

.check {
  width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(6, 182, 212, 0.22);
  color: rgba(219, 250, 255, 0.95);
  flex: 0 0 auto;
  margin-top: 1px;
  font-weight: 900;
  transition:
    transform var(--transition-fast),
    background var(--transition-base);
  animation: checkPop 0.4s ease;
}

@keyframes checkPop {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  50% {
    transform: scale(1.15);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.panel-list li:hover .check {
  transform: scale(1.1);
  background: rgba(6, 182, 212, 0.22);
}

.panel-cta {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.btn-block {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 16px;
}

.panel-note {
  margin: 8px 0 0;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.panel-art {
  margin: 12px 0 14px;
}

/* Background Effects */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.glow {
  position: absolute;
  filter: blur(80px);
  opacity: 0.4;
  border-radius: 50%;
  will-change: transform;
  mix-blend-mode: screen;
}

.g1 {
  width: 600px;
  height: 600px;
  left: -10%;
  top: -20%;
  background: var(--accent1);
}

.g2 {
  width: 700px;
  height: 700px;
  right: -15%;
  top: -10%;
  background: var(--accent2);
}

.hero-bg .gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

/* Report Stack Animation in FV panel */
.report-stack {
  position: relative;
  width: 100%;
  height: 240px;
  perspective: 1000px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stack-img {
  position: absolute;
  width: 80%;
  max-width: 320px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stack-bottom {
  transform: translateY(-30px) translateX(-40px) scale(0.85) rotate(-8deg);
  opacity: 0.5;
  z-index: 1;
}

.stack-middle {
  transform: translateY(-15px) translateX(0) scale(0.92) rotate(4deg);
  opacity: 0.7;
  z-index: 2;
}

.stack-top {
  transform: translateY(10px) translateX(40px) scale(1) rotate(-3deg);
  z-index: 3;
}

.report-stack:hover .stack-bottom {
  transform: translateY(-60px) translateX(-80px) scale(0.9) rotate(-12deg);
  opacity: 0.9;
}

.report-stack:hover .stack-middle {
  transform: translateY(-20px) translateX(0) scale(1) rotate(0deg);
  opacity: 1;
}

.report-stack:hover .stack-top {
  transform: translateY(40px) translateX(80px) scale(1.05) rotate(6deg);
}

/* Sections */
.section {
  padding: 100px 0;
  position: relative;
}

.section-alt {
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.section-head {
  margin-bottom: 48px;
  text-align: center;
}

[data-fade-in] {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}

[data-fade-in].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.kicker {
  display: inline-block;
  margin: 0 0 16px;
  color: var(--accent2);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 700;
  border: 1px solid rgba(6, 182, 212, 0.3);
  padding: 4px 10px;
  border-radius: 99px;
}

.section-head h2 {
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 800;
  letter-spacing: -0.01em;
}

.sub {
  margin: 0 auto;
  color: var(--muted);
  max-width: 60ch;
  font-size: 16px;
}

/* Problems List */
.problems-list {
  display: grid;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.problem-item {
  display: flex;
  gap: 24px;
  align-items: center;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.problem-item:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
}

.problem-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.problem-item:hover::before {
  opacity: 1;
}

.problem-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent2);
  opacity: 0.8;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  flex: 0 0 80px;
  text-align: right;
  font-style: italic;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-num.accent-green {
  color: var(--accent3);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.problem-num.accent-purple {
  color: var(--accent1);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.problem-num.accent-pink {
  color: var(--danger);
  text-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.problem-content {
  flex: 1;
}

.problem-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.problem-ic {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.problem-item:hover .problem-ic {
  animation: pulse 1s infinite;
}

.problem-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

/* Split */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}

.about-viz {
  margin: 0 0 12px;
}

.pill-grid {
  display: grid;
  gap: 12px;
}

.pill {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px;
}

.pill-title {
  margin: 0 0 6px;
  font-weight: 900;
}

.pill-text {
  margin: 0;
  color: var(--muted);
}

.metric {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.metric-row {
  display: flex;
  justify-content: space-between;
  gap: 14px;
}

.metric-label {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
}

.metric-value {
  margin: 0;
  font-weight: 800;
}

.callout {
  margin-top: 12px;
  border-radius: var(--r);
  border: 1px solid rgba(251, 113, 133, 0.22);
  background: rgba(251, 113, 133, 0.07);
  padding: 14px;
}

.callout-title {
  margin: 0 0 6px;
  font-weight: 900;
}

.callout-text {
  margin: 0;
  color: var(--muted);
}

.cta-band {
  margin-top: 18px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.2),
      rgba(6, 182, 212, 0.16));
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.12),
      rgba(6, 182, 212, 0.1));
  opacity: 0;
  transition: opacity var(--transition-base);
}

.cta-band:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
  border-color: rgba(6, 182, 212, 0.25);
}

.cta-band:hover::before {
  opacity: 1;
}

.cta-band-copy {
  position: relative;
  z-index: 1;
}

.cta-band-title {
  margin: 0 0 4px;
  font-weight: 900;
}

.cta-band-sub {
  margin: 0;
  color: var(--muted);
}

/* Performance */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.stat {
  padding: 32px 24px;
  border-radius: var(--r);
  background: var(--card-bg-alt);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.stat:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: var(--accent2);
  background: rgba(6, 182, 212, 0.08);
  box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15);
}

.stat:hover .stat-v {
  text-shadow: 0 0 15px rgba(6, 182, 212, 0.5);
}

.stat-k {
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
  letter-spacing: 0.05em;
  font-weight: 700;
}

.stat-v {
  font-size: 48px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 4px rgba(6, 182, 212, 0.3));
}

.stat-n {
  font-size: 13px;
  color: var(--muted2);
  line-height: 1.5;
}

.interview-carousel {
  position: relative;
  width: 100%;
  padding-bottom: 20px;
}

.slider-track-wrap {
  overflow-x: hidden;
  overflow-y: hidden;
  margin: 0 -16px;
  padding: 20px 0;
  -webkit-overflow-scrolling: touch;
}

.slider-track-wrap::-webkit-scrollbar {
  display: none;
  /* Chrome, Safari, etc. */
}

.slider-track {
  display: flex;
  width: max-content;
}

.interview-card {
  width: 320px;
  margin: 0 16px;
  display: flex;
  flex-direction: column;
  background: var(--card-bg-alt);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.4s var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.interview-card:hover {
  transform: translateY(-12px);
  border-color: var(--accent2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.interview-img-wrap {
  width: 100%;
  padding-top: 133.33%;
  /* 3:4 Aspect Ratio (Portrait) */
  position: relative;
  overflow: hidden;
}

.interview-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s var(--transition-base);
}

.interview-card:hover .interview-img {
  transform: scale(1.1);
}

.interview-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: linear-gradient(to bottom, rgba(15, 23, 42, 0), rgba(15, 23, 42, 0.9));
  margin-top: -100px;
  /* Stronger overlay for portrait */
  position: relative;
  z-index: 2;
}

.interview-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.interview-tag {
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  background: var(--accent2);
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 4px;
}

.interview-client {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.interview-title {
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 16px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  line-clamp: 3;
  overflow: hidden;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.interview-author {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: auto;
  font-weight: 600;
}

@media (max-width: 1024px) {
  .interview-card {
    width: 280px;
  }
}

@media (max-width: 768px) {
  .interview-card {
    width: 300px !important;
    /* Fixed width to prevent giant cards */
    margin: 0 10px !important;
    flex: 0 0 300px !important;
  }

  .interview-img-wrap {
    padding-top: 240px !important;
    /* Fixed height for image area */
    height: 240px !important;
  }

  .interview-img {
    background-size: cover !important;
    /* Or 'contain' if looking for 100% visible, but cover is better for aesthetic usually */
    background-position: center top !important;
    /* Prioritize heads/faces */
  }

  .interview-body {
    padding: 20px !important;
    margin-top: 0 !important;
    background: var(--card-bg-alt) !important;
    position: relative;
    z-index: 2;
  }

  .slider-track-wrap {
    margin: 0 -10px !important;
    padding: 10px 0 !important;
  }

  .interview-title {
    font-size: 16px !important;
    margin-bottom: 12px !important;
    -webkit-line-clamp: 3 !important;
    line-clamp: 3 !important;
    text-shadow: none !important;
    color: #fff !important;
  }

  .interview-author {
    font-size: 14px !important;
    color: var(--muted) !important;
  }

  .interview-meta {
    margin-bottom: 10px !important;
  }
}

.slider-dot.active {
  background: var(--accent2);
  transform: scale(1.5);
}

.prev,
.next {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  position: relative;
  transition: all 0.3s ease;
}

.prev:hover,
.next:hover {
  background: var(--accent2);
  border-color: var(--accent2);
}

.prev::after,
.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.prev::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.next::after {
  transform: translate(-70%, -50%) rotate(45deg);
}


.case-row dt {
  color: var(--muted2);
  font-weight: 900;
}

.case-row dd {
  margin: 0;
  color: var(--muted);
}

.case-row strong {
  color: rgba(234, 240, 255, 0.95);
}

.case-quote {
  margin-top: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 14, 20, 0.55);
  padding: 14px;
}

.case-quote__t {
  margin: 0 0 6px;
  font-weight: 950;
}

.case-quote__n {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
}

/* Deliverables */
.deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.viz {
  width: 100%;
  height: auto;
  display: block;
}

.viz-hero,
.viz-about,
.viz-report,
.viz-company {
  border-radius: 18px;
}

.report-preview {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 38, 0.42);
  padding: 14px;
  margin: 10px 0 18px;
}

.report-preview__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  align-items: center;
}

.report-preview__title {
  margin: 0 0 10px;
  font-weight: 950;
  font-size: 16px;
}

.report-preview__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.report-preview__list li {
  display: flex;
  gap: 10px;
}

.report-preview__cta {
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.deliverable {
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-bg);
  padding: 24px;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
  box-shadow: var(--shadow2);
}

.deliverable:hover {
  transform: translateY(-3px);
  border-color: rgba(6, 182, 212, 0.25);
  box-shadow: 0 14px 40px -10px rgba(0, 0, 0, 0.5);
}

.deliverable-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.deliverable-ic {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.deliverable:hover .deliverable-ic {
  transform: scale(1.1) rotate(-3deg);
  background: rgba(255, 255, 255, 0.06);
}

.deliverable h3 {
  margin: 0 0 10px;
}

.deliverable ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.deliverable li {
  margin: 6px 0;
}

/* Table */
.table-wrap {
  margin-top: 18px;
  border-radius: var(--r2);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.table th,
.table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

.table thead th {
  text-align: left;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.04);
  font-weight: 800;
}

/* Pricing */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 12px;
}

.price-card {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-bg);
  box-shadow: var(--shadow2);
  padding: 24px;
  position: relative;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  overflow: hidden;
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 60px -10px rgba(0, 0, 0, 0.6);
  border-color: rgba(255, 255, 255, 0.2);
}

.price-card.featured {
  border-color: rgba(6, 182, 212, 0.35);
  background: linear-gradient(180deg,
      rgba(6, 182, 212, 0.1),
      rgba(124, 58, 237, 0.08));
}

.ribbon {
  position: absolute;
  top: 14px;
  right: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  color: rgba(219, 250, 255, 0.95);
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(6, 182, 212, 0.22);
}

.price-top h3 {
  margin: 0 0 8px;
}

.price {
  margin: 0 0 6px;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.price span {
  font-size: 12px;
  color: var(--muted);
  font-weight: 800;
}

.price-note {
  margin: 0 0 10px;
  color: var(--muted);
}

.price-list {
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
}

.price-list li {
  margin: 7px 0;
}

.policy {
  margin-top: 16px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.policy-title {
  margin: 0 0 6px;
  font-weight: 900;
}

.policy-text {
  margin: 0;
  color: var(--muted);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.steps-flow {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  position: relative;
  margin-top: 12px;
}

.steps-flow::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: 22px;
  height: 2px;
  background: linear-gradient(90deg,
      rgba(6, 182, 212, 0.35),
      rgba(124, 58, 237, 0.35));
  opacity: 0.7;
  z-index: 0;
}

.step {
  display: flex;
  gap: 12px;
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
  padding: 14px;
}

.steps-flow .step {
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  min-height: 150px;
  position: relative;
  z-index: 1;
}

.step-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.step-no {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.16);
  border: 1px solid rgba(124, 58, 237, 0.22);
  display: grid;
  place-items: center;
  font-weight: 950;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
  animation: stepPulse 1.2s ease infinite;
}

@keyframes stepPulse {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

.step:hover .step-no {
  transform: scale(1.1);
  background: rgba(124, 58, 237, 0.22);
  border-color: rgba(124, 58, 237, 0.35);
  animation: none;
}

.step-ic {
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px;
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.step:hover .step-ic {
  transform: scale(1.1) rotate(5deg);
  background: rgba(255, 255, 255, 0.08);
}

.step-body h3 {
  margin: 0 0 6px;
}

.step-body p {
  margin: 0;
  color: var(--muted);
}

.flow-note {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.flow-note__item {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.flow-note__item strong {
  color: rgba(234, 240, 255, 0.92);
}

.flow-note__ic {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  margin-top: 2px;
}

.flow-note__item p {
  margin: 0;
}

/* Compare */
.compare {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 14px;
  align-items: start;
}

.compare-table .table thead th:last-child {
  color: rgba(234, 240, 255, 0.95);
  background: rgba(6, 182, 212, 0.12);
}

.compare-table .table tbody td:last-child {
  color: rgba(234, 240, 255, 0.95);
  background: rgba(6, 182, 212, 0.08);
}

.compare-table strong {
  color: rgba(234, 240, 255, 0.95);
}

.viz-compare {
  border-radius: 18px;
}

/* Trust */
.trust {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 14px;
  align-items: start;
}

.trust-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-card {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-bg);
  box-shadow: var(--shadow2);
  padding: 16px;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
  position: relative;
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.06),
      rgba(255, 255, 255, 0.02));
}

.trust-card__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.trust-card h3 {
  margin: 0;
  font-size: 15px;
}

.trust-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.trust-ic {
  width: 28px;
  height: 28px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.trust-card:hover .trust-ic {
  transform: scale(1.12) rotate(5deg);
  background: rgba(255, 255, 255, 0.08);
}

.viz-trust {
  border-radius: 18px;
}

/* Stakeholders */
.stakeholders {
  display: grid;
  gap: 14px;
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.persona {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: var(--card-bg);
  box-shadow: var(--shadow2);
  padding: 16px;
  position: relative;
  overflow: hidden;
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.persona:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.55);
  border-color: rgba(6, 182, 212, 0.25);
}

.persona::before {
  content: "";
  position: absolute;
  inset: -40% -40%;
  background:
    radial-gradient(circle at 30% 20%, rgba(6, 182, 212, 0.1), transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(124, 58, 237, 0.1), transparent 55%);
  opacity: 0.9;
  pointer-events: none;
}

.persona>* {
  position: relative;
}

.persona-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.persona-ic {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 5px;
  transition:
    transform var(--transition-base),
    background var(--transition-base);
}

.persona:hover .persona-ic {
  transform: scale(1.15) rotate(-5deg);
  background: rgba(255, 255, 255, 0.08);
}

.persona h3 {
  margin: 0;
  font-size: 15px;
}

.persona-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.persona-list li {
  margin: 7px 0;
}

.persona-list strong {
  color: rgba(234, 240, 255, 0.92);
}

.viz-stake {
  border-radius: 18px;
}

/* FAQ */
.faq {
  display: grid;
  gap: 10px;
}

.faq-item {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  padding: 14px 14px;
  cursor: pointer;
  list-style: none;
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--muted);
  font-weight: 950;
  transition:
    transform var(--transition-base),
    color var(--transition-base);
}

.faq-item summary:hover::after {
  color: var(--text);
  transform: scale(1.2);
}

.faq-item[open] summary::after {
  content: "–";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 14px 14px;
  color: var(--muted);
}

/* Company */
.company {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 14px;
  align-items: start;
}

.dl {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
  padding: 14px;
  margin: 0;
}

.dl-row {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.dl-row:last-child {
  border-bottom: 0;
}

.dl dt {
  color: var(--muted2);
  font-weight: 800;
}

.dl dd {
  margin: 0;
}

.company-note {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  padding: 14px;
}

.company-note-title {
  margin: 0 0 6px;
  font-weight: 950;
}

.company-note-text {
  margin: 0;
  color: var(--muted);
}

.company-viz {
  margin-top: 12px;
}

/* Form */
.preflight {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 38, 0.42);
  padding: 14px;
  margin: 10px 0 12px;
}

.preflight__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.preflight__item {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 14, 20, 0.55);
  padding: 12px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
}

.preflight__item strong {
  color: rgba(234, 240, 255, 0.92);
}

.preflight__item span {
  color: var(--muted2);
  font-size: 12px;
}

.preflight__item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
}

.preflight__ic {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 4px;
  margin-top: 1px;
}

.form {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: var(--card-bg);
  padding: 16px;
  box-shadow: var(--shadow2);
}

.form-steps {
  position: relative;
}

.form-step-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
  padding: 12px;
  border-radius: var(--r2);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.step-indicator-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.5;
  transition: opacity 0.2s ease;
}

.step-indicator-item.active {
  opacity: 1;
}

.step-indicator-no {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 14px;
  transition:
    transform var(--transition-base),
    background var(--transition-base),
    border-color var(--transition-base);
}

.step-indicator-item.active .step-indicator-no {
  background: linear-gradient(135deg,
      rgba(124, 58, 237, 0.95),
      rgba(6, 182, 212, 0.92));
  border-color: rgba(6, 182, 212, 0.35);
  animation: indicatorActive 0.5s ease;
}

@keyframes indicatorActive {
  0% {
    transform: scale(0);
    opacity: 0;
  }

  60% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.step-indicator-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: background var(--transition-base);
  position: relative;
  overflow: hidden;
}

.step-indicator-item.active~.step-indicator-line,
.step-indicator-item.active+.step-indicator-line {
  background: linear-gradient(90deg,
      rgba(6, 182, 212, 0.55),
      rgba(124, 58, 237, 0.55));
}

.step-indicator-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.3),
      transparent);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
}

.step-indicator-item.active~.step-indicator-line::after,
.step-indicator-item.active+.step-indicator-line::after {
  transform: translateX(100%);
}

.step-indicator-label {
  font-size: 11px;
  color: var(--muted2);
  font-weight: 800;
}

.step-indicator-line {
  width: 60px;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Performance optimizations */
.section[data-fade-in] {
  will-change: opacity, transform;
}

.section[data-fade-in].is-visible {
  will-change: auto;
}

/* Smooth transitions for all interactive elements */
.card,
.stat,
.deliverable,
.trust-card,
.persona,
.case,
.price-card {
  will-change: transform;
}

.card:hover,
.stat:hover,
.deliverable:hover,
.trust-card:hover,
.persona:hover,
.case:hover,
.price-card:hover {
  will-change: transform, box-shadow;
}

/* GPU acceleration for animations */
.viz,
.panel-art,
.about-viz,
.company-viz,
.trust-side,
.compare-viz {
  will-change: opacity, transform;
  transform: translateZ(0);
}

/* Optimize button animations */
.btn {
  will-change: transform;
}

.btn:hover {
  will-change: transform, box-shadow;
}

/* Reduce repaints on scroll */
.site-header[data-elevate] {
  will-change: box-shadow;
}

.site-header[data-elevate].is-elevated {
  will-change: auto;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.field {
  display: grid;
  gap: 6px;
}

.field-wide {
  grid-column: 1 / -1;
}

.field-label {
  font-size: 12px;
  color: var(--muted2);
  font-weight: 900;
}

.req {
  color: rgba(219, 250, 255, 0.95);
  background: rgba(6, 182, 212, 0.16);
  border: 1px solid rgba(6, 182, 212, 0.22);
  padding: 2px 8px;
  border-radius: 999px;
  margin-left: 6px;
}

/* Checkbox group */
.checkbox-group {
  display: grid;
  gap: 10px;
}

.checkbox-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition:
    background var(--transition-base),
    border-color var(--transition-base);
}

.checkbox-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
}

.checkbox-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  margin-top: 2px;
  cursor: pointer;
  accent-color: var(--accent2);
}

.checkbox-item input[type="checkbox"]:checked+.checkbox-label {
  color: var(--text);
  font-weight: 700;
}

.checkbox-item.is-invalid {
  border-color: rgba(251, 113, 133, 0.35);
  background: rgba(251, 113, 133, 0.08);
}

.checkbox-label {
  flex: 1;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
  transition: color var(--transition-base);
}

/* Form confirm */
.form-confirm {
  border-radius: var(--r2);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(16, 22, 38, 0.42);
  padding: 20px;
  margin-bottom: 20px;
}

.confirm-title {
  margin: 0 0 8px;
  font-weight: 900;
  font-size: 18px;
}

.confirm-note {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
}

.confirm-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
}

.confirm-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.confirm-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.confirm-item dt {
  color: var(--muted2);
  font-weight: 800;
  font-size: 13px;
}

.confirm-item dd {
  margin: 0;
  color: var(--text);
  font-size: 14px;
  word-break: break-word;
  white-space: pre-wrap;
}

.confirm-item dd:empty::before {
  content: "-";
  color: var(--muted2);
}

.form-captcha {
  margin: 20px 0;
  padding: 16px;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(5, 8, 14, 0.55);
  color: var(--text);
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(169, 182, 214, 0.68);
  transition: opacity 0.2s ease;
}

input:focus::placeholder,
textarea:focus::placeholder {
  opacity: 0.4;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(6, 182, 212, 0.5);
  box-shadow: 0 0 0 4px rgba(6, 182, 212, 0.15);
  background: rgba(5, 8, 14, 0.65);
}

input:valid:not(:placeholder-shown),
textarea:valid:not(:placeholder-shown) {
  border-color: rgba(34, 197, 94, 0.35);
}

.field-help {
  min-height: 16px;
  font-size: 12px;
  color: var(--danger);
  transition: opacity 0.2s ease;
}

.field.is-invalid input,
.field.is-invalid select,
.field.is-invalid textarea {
  border-color: rgba(251, 113, 133, 0.55);
  box-shadow: 0 0 0 4px rgba(251, 113, 133, 0.12);
  animation: shake 0.4s ease;
}

.field.is-valid input,
.field.is-valid select,
.field.is-valid textarea {
  border-color: rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}

@keyframes shake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-6px);
  }

  75% {
    transform: translateX(6px);
  }
}

.form-actions {
  margin-top: 14px;
  display: grid;
  gap: 10px;
}

.form-note {
  margin: 0;
  color: var(--muted2);
  font-size: 12px;
}

/* Footer */
.site-footer {
  padding: 28px 0 84px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.15);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-title {
  margin: 0;
  font-weight: 950;
}

.footer-sub {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  padding-top: 14px;
  color: var(--muted2);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

/* Sticky CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(11, 14, 20, 0.8);
  backdrop-filter: blur(10px);
  z-index: 60;
  transform: translateY(0);
  transition:
    transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.3s ease;
  opacity: 1;
}

.sticky-cta[aria-hidden="true"] {
  transform: translateY(100%);
  opacity: 0;
  pointer-events: none;
}

.sticky-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}

.sticky-title {
  margin: 0;
  font-weight: 950;
}

.sticky-sub {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.sticky-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Responsive */
@media (max-width: 980px) {
  /* タブレット（769〜980px）: 2カラムを維持、gap縮小 */
  .hero-grid {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 32px;
  }

  .hero-panel .panel {
    max-width: 100%;
    height: auto;
    margin: 0;
  }

  .nav {
    display: none;
  }

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

  .problems-list {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .dl-row {
    grid-template-columns: 110px 1fr;
  }

  .sticky-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .sticky-actions {
    justify-content: space-between;
  }

  .report-preview__grid {
    grid-template-columns: 1fr;
  }

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

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

  .case-row {
    grid-template-columns: 80px 1fr;
  }

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

  .steps-flow::before {
    display: none;
  }

  .flow-note {
    grid-template-columns: 1fr;
  }

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

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

  .trust-cards {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .container {
    width: min(var(--max), calc(100% - 28px));
  }

  .header-cta .btn-ghost {
    display: none;
  }

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

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

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

  .btn {
    min-height: 44px;
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0.1);
  }

  .btn:active {
    transform: scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn {
    transition: none;
  }
}

/* --- Added for Restoration --- */

/* Hero Updates */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-20px);
  }
}

/* Emotional Typography Features */
.features-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 0;
}

.timeline-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.1), rgba(6, 182, 212, 0.4), rgba(124, 58, 237, 0.1));
  transform: translateX(-50%);
  z-index: 1;
}

.feature-story {
  position: relative;
  z-index: 2;
  margin-bottom: 120px;
  width: 50%;
  padding: 0 40px;
}

.feature-story:last-child {
  margin-bottom: 0;
}

.feature-story.align-left {
  left: 0;
  text-align: left;
  padding-right: 60px;
}

.feature-story.align-right {
  left: 50%;
  text-align: left;
  padding-left: 60px;
}

.story-img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 20px;
}

.story-img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  object-fit: contain;
}

.feature-story.align-left .story-img {
  left: 100%;
}

.feature-story.align-right .story-img {
  right: 100%;
}

/* Giant background numbers */
.story-num {
  position: absolute;
  top: -40px;
  font-size: 180px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent2);
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.feature-story.align-left .story-num {
  right: 20px;
}

.feature-story.align-right .story-num {
  left: 20px;
}

/* Story Typography */
.story-content h3 {
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 24px;
}

.story-content h3 .grad {
  font-size: 32px;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.3);
}

.story-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
  word-break: keep-all;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .timeline-line {
    left: 20px;
    transform: none;
  }

  .feature-story {
    width: 100%;
    left: 0 !important;
    text-align: left !important;
    padding: 0 0 0 50px !important;
    margin-bottom: 80px;
    display: flex;
    flex-direction: column;
  }

  .story-img {
    position: relative;
    left: auto !important;
    right: auto !important;
    top: auto;
    transform: none;
    width: 100%;
    padding: 20px 0 0 0;
    margin-top: 20px;
  }

  .story-num {
    font-size: 120px;
    top: -20px;
    left: -10px !important;
    right: auto !important;
  }

  .story-content h3 {
    font-size: 24px;
  }

  .story-content h3 .grad {
    font-size: 26px;
  }

  .story-content p {
    font-size: 14px;
  }
}


/* Problems List */
.problems-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
}

.problem-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  border-radius: var(--r);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg,
      rgba(255, 255, 255, 0.03),
      rgba(255, 255, 255, 0.01));
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  padding: 32px;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.problem-item:hover {
  transform: translateX(5px);
  box-shadow: 0 12px 30px -5px rgba(0, 0, 0, 0.4);
  border-color: rgba(255, 255, 255, 0.15);
  background: linear-gradient(90deg,
      rgba(255, 255, 255, 0.05),
      rgba(255, 255, 255, 0.02));
}

.problem-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent2);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.problem-item:hover::before {
  opacity: 1;
}

.problem-num {
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent2);
  opacity: 0.8;
  text-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
  flex: 0 0 80px;
  text-align: right;
  font-style: italic;
  padding-right: 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.problem-num.accent-green {
  color: var(--accent3);
  text-shadow: 0 0 20px rgba(16, 185, 129, 0.4);
}

.problem-num.accent-purple {
  color: var(--accent1);
  text-shadow: 0 0 20px rgba(139, 92, 246, 0.4);
}

.problem-num.accent-pink {
  color: var(--danger);
  text-shadow: 0 0 20px rgba(244, 63, 94, 0.4);
}

.problem-content {
  flex: 1;
}

.problem-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 12px;
}

.problem-ic {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  color: rgba(255, 255, 255, 0.8);
}

.problem-item:hover .problem-ic {
  animation: pulse 1s infinite;
}

.problem-item h3 {
  margin: 0;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 800;
}

.problem-item p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.problem-conclusion {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.conclusion-arrow {
  color: var(--accent2);
  opacity: 0.7;
}

.pulse-arrow {
  animation: pulse-down 2s infinite ease-in-out;
}

@keyframes pulse-down {

  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(10px);
    opacity: 1;
  }
}

.conclusion-text {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 24px 0 0 0;
  color: var(--text);
  text-align: center;
}

.conclusion-highlight {
  display: inline-block;
  font-size: 52px;
  font-weight: 950;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  margin: 0 8px;
  vertical-align: middle;
  filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.5));
  animation: neon-flicker 4s infinite alternate;
}

@keyframes neon-flicker {

  0%,
  100% {
    filter: drop-shadow(0 0 16px rgba(6, 182, 212, 0.5));
  }

  50% {
    filter: drop-shadow(0 0 24px rgba(139, 92, 246, 0.7));
  }
}

@media (max-width: 768px) {
  .conclusion-text {
    font-size: 18px;
  }

  .conclusion-highlight {
    font-size: 36px;
  }
}

/* AIO Message Box */
.aio-desc {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.6;
}

.aio-message {
  background: rgba(255, 255, 255, 0.05);
  padding: 24px;
  border-radius: 16px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.aio-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 19px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.aio-row:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.aio-label {
  color: var(--text);
}

.aio-term {
  font-size: 23px;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: linear-gradient(135deg, var(--accent2), var(--accent1));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(6, 182, 212, 0.4));
  animation: aio-pulse 3s infinite alternate;
}

@keyframes aio-pulse {
  0% {
    filter: drop-shadow(0 0 8px rgba(6, 182, 212, 0.4));
    transform: scale(1);
  }

  100% {
    filter: drop-shadow(0 0 16px rgba(139, 92, 246, 0.6));
    transform: scale(1.02);
  }
}


.aio-conclusion {
  margin-top: 8px;
  text-align: right;
  font-size: 15px;
  color: var(--muted);
}

.aio-conclusion .aio-highlight {
  font-size: 19px;
  font-weight: 900;
  margin-left: 8px;
}

/* AIO Section Alignments */
#aio .split {
  align-items: center;
  gap: 40px;
}

/* AIO Option B (UI Mockup) */
.aio-visual.option-b {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 380px;
}

.mockup {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  width: 220px;
  height: 320px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
}

.mockup-head {
  background: rgba(255, 255, 255, 0.08);
  padding: 14px 10px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #ffffff;
  letter-spacing: 0.05em;
}

.mockup-body {
  padding: 12px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
}

.mockup-search-bar {
  background: rgba(255, 255, 255, 0.1);
  height: 24px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  padding: 0 10px;
}

.mockup-search-bar span {
  display: block;
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}

.mockup-result {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mockup-result.faded {
  opacity: 0.3;
}

.result-title {
  height: 10px;
  width: 80%;
  background: rgba(59, 130, 246, 0.8);
  border-radius: 4px;
}

.result-desc {
  height: 6px;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.result-desc.short {
  width: 60%;
}

.mockup-arrow {
  color: var(--accent2);
  opacity: 0.8;
  animation: slide-right 2s infinite ease-in-out;
}

@keyframes slide-right {

  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(8px);
  }
}

.mockup-ai-summary {
  background: linear-gradient(135deg,
      rgba(6, 182, 212, 0.15),
      rgba(139, 92, 246, 0.15));
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  box-shadow: 0 0 15px rgba(139, 92, 246, 0.1);
  animation: ai-glow 3s infinite alternate;
}

@keyframes ai-glow {
  0% {
    box-shadow: 0 0 10px rgba(6, 182, 212, 0.1);
  }

  100% {
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
  }
}

.ai-header {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent1);
  margin-bottom: 6px;
  text-shadow: 0 0 4px rgba(139, 92, 246, 0.5);
}

.zero-click-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  background: var(--accent2);
  color: #000;
  font-size: 11px;
  font-weight: 900;
  padding: 4px 8px;
  border-radius: 4px;
  transform: rotate(-10deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
  letter-spacing: 0.05em;
}

.click-cursor {
  position: absolute;
  top: 70px;
  left: 60px;
  animation: click-motion 3s infinite ease-in-out;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

@keyframes click-motion {
  0% {
    transform: translate(30px, 30px);
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  40% {
    transform: translate(0, 0) scale(1.1);
  }

  50% {
    transform: translate(0, 0) scale(0.9);
  }

  60% {
    transform: translate(0, 0) scale(1);
  }

  80% {
    opacity: 1;
  }

  100% {
    transform: translate(30px, 30px);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .aio-visual.option-b {
    flex-direction: column;
    height: auto;
    padding: 20px 0;
  }

  .mockup-arrow {
    transform: rotate(90deg);
  }
}

/* Reasons */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.reason-card {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
}

.reason-img {
  position: relative;
  height: 200px;
}

.reason-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reason-tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.reason-content {
  padding: 24px;
}

/* Performance */
.quote {
  font-size: 18px;
  font-weight: bold;
  color: var(--accent1);
  margin-bottom: 10px;
  line-height: 1.4;
}

.client-name {
  font-weight: bold;
  margin-bottom: 10px;
  color: #fff;
}

.small-text {
  font-size: 13px;
  color: var(--muted);
}

/* Price */
.price-card {
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid transparent;
  /* Default transparent */
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s ease;
  /* Smooth transition */
}

.price-card:hover {
  border-color: var(--accent1);
  /* Highlight on hover */
}

#price .split {
  align-items: stretch;
}

.price {
  font-size: 40px;
  font-weight: 900;
  margin: 20px 0;
  color: #fff;
}

.unit {
  font-size: 16px;
  color: var(--muted);
}

.check-list {
  text-align: left;
  list-style: none;
  padding: 0;
  margin: 0;
}

.check-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-left: 24px;
  position: relative;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent3);
}

.badge-rec {
  background: var(--accent1);
  color: #fff;
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 10px;
}

.comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 600px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th,
.comparison-table td {
  padding: 20px 16px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 15px;
  vertical-align: middle;
}

.comparison-table thead th {
  background: rgba(0, 0, 0, 0.2);
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
}

/* Base formatting for the first column */
.comparison-table tbody th {
  font-weight: 800;
  color: #fff;
  width: 120px;
  background: rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* 弊社 (Highlight column) styles */
.comparison-table th.highlight,
.comparison-table td.highlight {
  background: linear-gradient(180deg, rgba(2, 121, 255, 0.1), rgba(0, 163, 243, 0.05));
  border-left: 2px solid #0279FF;
  border-right: 2px solid #0279FF;
  position: relative;
  font-weight: bold;
}

.comparison-table thead th.highlight {
  background: linear-gradient(180deg, rgba(2, 121, 255, 0.2), rgba(0, 163, 243, 0.1));
  border-top: 2px solid #0279FF;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  color: #fff;
}

.comparison-table tbody tr:last-child td.highlight {
  border-bottom: 2px solid #0279FF;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

.badge {
  display: inline-block;
  background: linear-gradient(90deg, #FF4500, #FF8C00);
  color: white;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 12px;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(255, 69, 0, 0.3);
}

/* Cell content format */
.cell-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cell-content span {
  line-height: 1.5;
}

/* Icons */
.icon-good {
  width: 24px;
  height: 24px;
  color: #10B981;
  /* Green */
  flex-shrink: 0;
}

.icon-ok {
  width: 24px;
  height: 24px;
  color: #3B82F6;
  /* Blue */
  flex-shrink: 0;
}

.icon-soso {
  width: 24px;
  height: 24px;
  color: #F59E0B;
  /* Yellow */
  flex-shrink: 0;
}

.icon-bad {
  width: 24px;
  height: 24px;
  color: #EF4444;
  /* Red */
  flex-shrink: 0;
}

/* Flow */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-item {
  background: rgba(139, 92, 246, 0.1);
  /* Light purple background */
  padding: 24px;
  border-radius: 12px;
  position: relative;
  border: 1px solid #ffffff;
  /* Visible white border */
}

.step-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent2);
  opacity: 0.3;
  margin-bottom: 10px;
}

/* Accordion */
.accordion {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

details {
  background: var(--card-bg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
}

summary {
  padding: 20px;
  cursor: pointer;
  font-weight: bold;
  list-style: none;
  position: relative;
}

summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  color: var(--accent2);
}

details[open] summary::after {
  content: "-";
}

.accordion-content {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .feature-item.reverse {
    flex-direction: column;
  }

  .split,
  .reasons-grid,
  .cards-visual,
  .steps {
    grid-template-columns: 1fr;
  }

  .feature-item {
    flex-direction: column;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-visual {
    margin-top: 40px;
  }

  .hero-title {
    font-size: 36px;
  }
}

/* Image Modal */
.zoomable-img {
  cursor: zoom-in;
  transition: transform 0.3s ease;
}

.zoomable-img:hover {
  transform: scale(1.03);
}

.image-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

.image-modal-content {
  margin: auto;
  display: block;
  max-width: 90%;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.6);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0;
  }

  to {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
  }
}

.close-modal {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s;
  z-index: 10000;
}

.close-modal:hover {
  color: var(--accent2, #bbb);
}

@media (max-width: 768px) {
  .image-modal-content {
    max-width: 95%;
  }

  .close-modal {
    top: 10px;
    right: 20px;
    font-size: 30px;
  }
}

/* Company Profile */
.section-company {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--line);
}

.company-table-wrapper {
  max-width: 800px;
  margin: 0 auto;
  background: var(--card-bg);
  border-radius: var(--r);
  border: 1px solid var(--line);
  padding: 40px;
  box-shadow: var(--shadow2);
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}

.company-table th,
.company-table td {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  font-size: 15px;
}

.company-table tr:last-child th,
.company-table tr:last-child td {
  border-bottom: none;
}

.company-table th {
  width: 30%;
  color: var(--muted);
  font-weight: 600;
  white-space: nowrap;
}

.company-table td {
  color: var(--text);
}

.company-table td a {
  color: var(--accent2);
  transition: color var(--transition-fast);
}

.company-table td a:hover {
  color: var(--accent1);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .company-table-wrapper {
    padding: 20px;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }

  .company-table th {
    border-bottom: none;
    padding-bottom: 0;
    font-size: 13px;
  }

  .company-table td {
    padding-top: 5px;
    padding-bottom: 15px;
  }
}

/* ============================================
   Mobile Responsive Overhaul (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

  /* === Section Padding === */
  section {
    padding: 60px 0;
  }

  /* === Hero Section === */
  .hero {
    padding: 80px 0 40px;
  }

  .hero-grid {
    gap: 32px;
  }

  .hero-copy {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .trust-row {
    justify-content: center;
  }

  .trust-pill {
    font-size: 12px;
    padding: 6px 12px;
  }

  /* Hero Panel - show below content on mobile */
  .hero-panel {
    margin-top: 0;
  }

  .hero-panel .panel {
    max-width: 100%;
    margin: 0;
  }

  /* === Comparison Table - prevent horizontal scroll === */
  /* === Comparison Table - Card Layout for Mobile === */
  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box;
  }

  .comparison-table {
    min-width: 0 !important;
    border: none !important;
    background: transparent !important;
    overflow: visible !important;
  }

  /* Hide the header in card layout */
  .comparison-table thead {
    display: none !important;
  }

  .comparison-table tr {
    margin-bottom: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    overflow: hidden;
  }

  /* Category Header (Row label) */
  .comparison-table tbody th {
    background: rgba(255, 255, 255, 0.1) !important;
    color: var(--lime) !important;
    font-size: 16px !important;
    padding: 12px !important;
    text-align: center !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
  }

  .comparison-table td {
    padding: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative;
    text-align: left !important;
  }

  /* Column Labels */
  .comparison-table td::before {
    content: attr(data-label);
    display: block;
    font-size: 11px;
    font-weight: bold;
    color: var(--muted2);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* Label mapping using nth-child */
  .comparison-table td:nth-child(2)::before {
    content: "弊社 (おすすめ)";
    color: var(--lime);
  }

  .comparison-table td:nth-child(3)::before {
    content: "自社運用";
  }

  .comparison-table td:nth-child(4)::before {
    content: "SEO業者";
  }

  /* Highlight "弊社" section on mobile too */
  .comparison-table td.highlight {
    background: rgba(2, 121, 255, 0.08) !important;
    border-left: none !important;
    border-right: none !important;
    border-top: 1px solid rgba(2, 121, 255, 0.2) !important;
    border-bottom: 1px solid rgba(2, 121, 255, 0.2) !important;
  }

  .cell-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 12px;
  }

  .cell-content span {
    font-size: 14px !important;
    line-height: 1.6 !important;
  }

  .icon-good,
  .icon-bad,
  .icon-soso,
  .icon-ok {
    width: 20px;
    height: 20px;
    margin-top: 2px;
  }

  /* === Section Headers === */
  .section-h {
    font-size: 26px;
  }

  .section-lead {
    font-size: 14px;
  }

  /* === Stats Grid === */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .stat {
    padding: 20px 16px;
  }

  .stat-v {
    font-size: 36px;
  }

  /* === Problem Items === */
  .problem-item {
    padding: 20px;
  }

  .problem-num {
    font-size: 40px;
  }

  .problem-item h3 {
    font-size: 17px;
  }

  /* === Steps Flow === */
  .steps-flow {
    gap: 16px;
  }

  /* === AIO message === */
  .aio-row {
    font-size: 15px;
    align-items: center;
    text-align: center;
  }

  .aio-term {
    font-size: 18px;
  }

  /* === FAQ Accordion === */
  .accordion-summary {
    font-size: 14px;
    padding: 16px;
  }

  .accordion-content {
    font-size: 14px;
    padding: 0 16px 16px;
  }

  /* === Sticky Bar === */
  .sticky-bar .container {
    padding: 0 16px;
  }

  /* === Report Stack (FV) === */
  .report-stack {
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ============================================
   Extra Small Devices (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

  .hero-title {
    font-size: 38px !important;
    /* Larger for more impact */
    text-align: center !important;
  }

  .hero-lead {
    font-size: 10px !important;
    /* 2px smaller for better balance */
    text-align: center !important;
  }

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

  .stat-v {
    font-size: 44px;
  }

  .btn-lg {
    font-size: 14px;
    padding: 14px 16px;
  }

  .section-h {
    font-size: 22px;
  }

  .trust-pill {
    font-size: 11px;
    padding: 5px 10px;
  }

}

/* =====================================================
   MOBILE FULL FIX - Verified via browser debug
   ===================================================== */

/* --- Header Fix: prevent overflow on small screens --- */
@media (max-width: 768px) {
  .header-inner {
    gap: 8px;
    padding: 12px 0;
    flex-wrap: nowrap;
    overflow: hidden;
  }

  .brand {
    gap: 6px;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-title {
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 120px;
  }

  .brand-sub {
    display: none;
  }

  /* ドットアンドノードロゴ幅を制限 */
  .brand a img {
    height: 28px !important;
  }

  .nav {
    display: none;
  }

  .header-cta {
    gap: 6px;
    flex: 0 0 auto;
  }

  .header-cta .btn {
    font-size: 12px;
    padding: 8px 12px;
    white-space: nowrap;
  }

  .header-cta .btn-ghost {
    display: none;
  }

  /* --- Problems List: force 1 column --- */
  .problems-list {
    grid-template-columns: 1fr !important;
  }

  /* Second copy of problems-list (different CSS context) */
  .problem-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 12px;
  }

  .problem-top {
    gap: 10px;
  }

  .problem-num {
    font-size: 36px;
    flex: 0 0 60px;
  }

  .problem-item h3 {
    font-size: 16px;
  }

  .problem-item p {
    font-size: 13px;
  }

  /* --- Comparison Table: Card layout takes over scroll wrapper --- */
  .table-wrap,
  .comparison-wrapper,
  .comparison-table-wrapper {
    overflow-x: visible !important;
    width: 100% !important;
  }

  .comparison-table {
    min-width: 0 !important;
  }

  /* --- FV: hero section bottom padding on mobile --- */
  /* --- FV: Hero section mobile optimization --- */
  .hero-grid {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 32px !important;
  }

  .hero-copy {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
  }

  .hero-copy .badge {
    font-size: 11px !important;
    white-space: nowrap !important;
    padding: 6px 12px !important;
    margin: 0 auto 20px !important;
    display: inline-flex !important;
    width: fit-content !important;
    justify-content: center !important;
  }

  .hero-title {
    text-align: center !important;
    font-size: 38px !important;
    /* Larger impact on mobile */
    line-height: 1.25 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-lead {
    text-align: center !important;
    margin: 16px auto !important;
    font-size: 10px !important;
    /* match user's 10px request */
    width: 100% !important;
    line-height: 1.6 !important;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center !important;
    width: 100% !important;
    gap: 12px !important;
  }

  .hero-cta .btn-lg {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center;
    justify-content: center;
  }

  /* --- Section headings --- */
  .section-head h2 {
    font-size: 24px !important;
  }

  /* --- Stats: 2 column on phone --- */
  .stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .stat {
    padding: 18px 12px;
  }

  .stat-v {
    font-size: 34px;
  }

  .stat-k {
    font-size: 12px;
  }

  .stat-n {
    font-size: 12px;
  }

  /* --- AIO message rows --- */
  .aio-row {
    flex-direction: column;
    align-items: center !important;
    text-align: center !important;
    gap: 8px;
    font-size: 14px;
  }

  .aio-term {
    font-size: 20px !important;
  }

  /* --- Sticky bar --- */
  .sticky-inner {
    gap: 8px;
    padding: 8px 0;
  }

  .sticky-bar .btn {
    font-size: 13px;
    padding: 10px 14px;
  }

  /* --- Flow items --- */
  .feature-item,
  .feature-item.reverse {
    flex-direction: column !important;
    gap: 20px;
  }

  /* --- Trust pills wrap properly --- */
  .trust-row {
    flex-wrap: wrap;
    gap: 8px;
  }

  /* --- Steps flow on mobile --- */
  .steps-flow {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .dl-row {
    grid-template-columns: 100px 1fr;
    gap: 8px;
    font-size: 14px;
  }

  /* --- Page-wide: no horizontal overflow --- */
  body {
    overflow-x: hidden;
  }

  .container {
    overflow-x: hidden;
  }
}

@media (max-width: 480px) {
  .header-cta .btn-primary {
    font-size: 11px;
    padding: 8px 10px;
  }

  .hero-title {
    /* Inherit 38px from 768px media query unless specifically varied */
    font-size: 38px !important;
  }

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

  .stat-v {
    font-size: 44px;
  }

  .section-head h2 {
    font-size: 20px !important;
  }

  .trust-pill {
    font-size: 11px;
    padding: 5px 10px;
  }

}

/* =====================================================
   HEADER OVERFLOW FIX - brand-wrapper & BY logo
   ===================================================== */
@media (max-width: 768px) {
  .brand-wrapper {
    gap: 6px !important;
    min-width: 0;
    flex: 1 1 auto;
    overflow: hidden;
  }

  /* Hide "BY" + dot-node logo on mobile */
  .brand-wrapper>span,
  .brand-wrapper>a:last-child {
    display: none !important;
  }

  .site-header {
    overflow: hidden;
  }

  .header-inner {
    width: 100%;
    max-width: 100%;
  }

  .header-cta {
    flex-shrink: 0;
  }

  /* Comparison table: ensure the div wrapper enables scroll */
  .comparison-table {
    table-layout: fixed;
  }

  /* Force table wrapper to scroll */
  div[style*="overflow-x: auto"] {
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100vw;
  }

  /* company-table-wrapper on mobile */
  .company-table-wrapper {
    overflow-x: auto;
  }
}

/* =====================================================
   ROOT OVERFLOW FIX - prevent all horizontal scroll
   ===================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
}

/* Ensure absolute positioned decorative elements don't cause overflow */
.hero {
  overflow: hidden;
}

/* Glow elements at edges - clip at mobile */
@media (max-width: 768px) {

  .g1,
  .g2 {
    width: 300px;
    height: 300px;
    right: -5%;
    left: auto;
  }

  .g1 {
    left: -15%;
    right: auto;
  }

  /* Any section with absolute positioned decorative elements */
  section {
    overflow: hidden;
    position: relative;
  }

  /* Force all fixed-width elements inside container to respect viewport */
  .container>* {
    max-width: 100%;
  }
}

/* =====================================================
   FORM MOBILE FIX - Zoho CRM form responsive (clean)
   ===================================================== */

/* フォームタイトルを中央揃え（PC/SPどちらも） */
.zcwf_lblLeft .zcwf_title {
  text-align: center !important;
  font-size: 16px !important;
  font-weight: bold !important;
  padding: 0 0 16px !important;
  margin-bottom: 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* スマホのみのフォームスタイル */
@media (max-width: 768px) {

  /* ラベルを全幅・縦並びに */
  .zcwf_lblLeft .zcwf_col_lab {
    width: 100% !important;
    float: none !important;
    margin-right: 0 !important;
    padding: 0 0 4px 0 !important;
    display: block;
    font-size: 14px !important;
  }

  /* 入力欄を全幅に */
  .zcwf_lblLeft .zcwf_col_fld {
    width: 100% !important;
    float: none !important;
    padding: 0 !important;
    display: block;
    margin-bottom: 12px;
  }

  .zcwf_lblLeft .zcwf_col_fld input[type=text],
  .zcwf_lblLeft .zcwf_col_fld input[type=tel],
  .zcwf_lblLeft .zcwf_col_fld input[type=url],
  .zcwf_lblLeft .zcwf_col_fld input[type=email],
  .zcwf_lblLeft .zcwf_col_fld input[type=password],
  .zcwf_lblLeft .zcwf_col_fld textarea,
  .zcwf_lblLeft .zcwf_col_fld select {
    width: 100% !important;
    float: none !important;
  }

  /* 送信ボタン全幅 */
  .zcwf_lblLeft .formsubmit,
  .zcwf_lblLeft .zcwf_button {
    width: 100% !important;
    display: block !important;
    text-align: center;
  }
}
/* =====================================================
   UTILITY CLASSES
   ===================================================== */

/* Section-level CTA container */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* Extra-large CTA button */
.btn-xl {
  padding: 18px 40px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
}

/* Performance section: client list */
.client-section-intro {
  margin-top: 60px;
  text-align: center;
}

.client-section-title {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
}

.client-list-text {
  font-size: 0.95rem;
  opacity: 0.8;
  line-height: 1.8;
  word-break: keep-all;
}

/* Horizontal-scroll wrapper for comparison table */
.table-scroll-wrap {
  overflow-x: auto;
  margin-top: 60px;
}

/* Hero badge size override */
.hero-copy .badge {
  font-size: 16px;
}
