/* =============================================================
   REASONS v6: THREE LENSES — 白基調版
   全体トーン（白+オレンジ）に合わせた再設計
   ============================================================= */

.lenses {
  --bg-deep: #f7f8fb;
  --bg-mid: #ffffff;
  --bg-card: #ffffff;
  --bg-card-2: #fff9f5;
  --bg-dark: #0f172a;
  --line: rgba(15, 23, 42, 0.08);
  --line-strong: rgba(15, 23, 42, 0.14);
  --text-main: #0f172a;
  --text-sub: #475569;
  --text-dim: #94a3b8;
  --accent: #FF7500;
  --accent-2: #FF9340;
  --accent-3: #FFCB8E;
  --accent-deep: #E85A00;

  position: relative;
  padding: clamp(96px, 11vw, 180px) 0 clamp(80px, 10vw, 140px);
  background:
    radial-gradient(ellipse 80% 60% at 20% 0%, rgba(255, 117, 0, 0.07), transparent 55%),
    radial-gradient(ellipse 60% 50% at 100% 100%, rgba(255, 147, 64, 0.05), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #faf9f7 100%);
  color: var(--text-main);
  overflow: hidden;
  isolation: isolate;
}

.lenses .section-inner {
  position: relative;
  max-width: 1240px;
  z-index: 2;
}

/* ============== 背景装飾 ============== */
.lenses__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.lenses__bg-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.lenses__bg-blob--a {
  top: 5%;
  right: -10%;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(255, 117, 0, 0.22), transparent 70%);
  animation: lensesBlob 22s ease-in-out infinite;
}
.lenses__bg-blob--b {
  bottom: -10%;
  left: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 184, 136, 0.16), transparent 70%);
  animation: lensesBlob 28s ease-in-out infinite reverse;
}

@keyframes lensesBlob {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.15); }
  66%      { transform: translate(-30px, 40px) scale(0.9); }
}

.lenses__bg-noise {
  display: none;
}

/* ============== HEAD ============== */
.lenses__head {
  text-align: center;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.lenses__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  margin-bottom: 32px;
}
.lenses__eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.lenses__title {
  font-family: 'Noto Sans JP', 'Inter', sans-serif;
  font-size: clamp(38px, 7vw, 104px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 28px;
}

.lenses__title-line {
  display: block;
  position: relative;
}

.lenses__title-line--1 {
  background: linear-gradient(180deg, #0f172a 0%, #334155 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lensesTitleReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  opacity: 0;
  transform: translateY(30px);
}

.lenses__title-line--2 {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lensesTitleReveal 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) .2s forwards;
  opacity: 0;
  transform: translateY(30px);
}

.lenses__title-dot {
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}

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

.lenses__sub {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-sub);
  line-height: 1.85;
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  animation: lensesFadeIn 1s ease .5s forwards;
  opacity: 0;
}

.lenses__sub strong {
  color: var(--accent-deep);
  font-weight: 800;
  background: linear-gradient(transparent 62%, rgba(255, 117, 0, 0.2) 62%);
  padding: 0 2px;
}

@keyframes lensesFadeIn {
  to { opacity: 1; }
}

.lenses__head-scroll {
  position: relative;
  margin: 48px auto 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  font-weight: 700;
}

/* 案A: 下指差しキャラ */
.lenses__scroll-mascot {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin-bottom: 4px;
  animation: scrollMascotWave 3s ease-in-out infinite;
  filter: drop-shadow(0 6px 10px rgba(15, 23, 42, 0.12));
}

@keyframes scrollMascotWave {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50%      { transform: translateY(-4px) rotate(2deg); }
}

/* 案C: 手書き矢印 */
.lenses__head-scroll-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lenses__scroll-arrow {
  opacity: 0.7;
}
.lenses__scroll-arrow--l {
  animation: scrollArrowL 2s ease-in-out infinite;
}
.lenses__scroll-arrow--r {
  animation: scrollArrowR 2s ease-in-out infinite;
}
@keyframes scrollArrowL {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(-3px); }
}
@keyframes scrollArrowR {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}

/* デフォルト：案A有効 (案Cも同時に見えるので、ユーザーが片方選んだら残す) */
body.scroll-mascot-only .lenses__head-scroll-label { gap: 0; }
body.scroll-mascot-only .lenses__scroll-arrow { display: none; }

body.scroll-arrow-only .lenses__scroll-mascot { display: none; }

.lenses__head-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(180deg, rgba(255, 117, 0, 0.5), transparent);
  animation: lensesScrollLine 2.2s ease-in-out infinite;
}

@keyframes lensesScrollLine {
  0%   { transform: scaleY(0.3); transform-origin: top; opacity: 0.4; }
  50%  { transform: scaleY(1);   transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0.3); transform-origin: bottom; opacity: 0.4; }
}

/* ============== FOUNDATION ============== */
.lenses__foundation {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 48px;
  align-items: center;
  padding: clamp(36px, 4.5vw, 64px);
  border-radius: 32px;
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 147, 64, 0.1), transparent 50%),
    linear-gradient(135deg, #ffffff 0%, var(--bg-card-2) 100%);
  border: 1px solid rgba(255, 147, 64, 0.2);
  box-shadow:
    0 40px 80px -40px rgba(255, 117, 0, 0.22),
    0 10px 30px -20px rgba(15, 23, 42, 0.1);
  margin-bottom: 40px;
  overflow: hidden;
  isolation: isolate;
}

/* 左テキスト側の背景画像（透過・ブラー） */
.lenses__foundation::after {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  width: 60%;
  height: 100%;
  background-image: url('../images/generated/reason-demo.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  filter: blur(1.5px) saturate(0.6) contrast(1.1);
  mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 55%, transparent 90%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 25%, #000 55%, transparent 90%);
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: multiply;
}

.lenses__foundation-main,
.lenses__dash {
  position: relative;
  z-index: 2;
}

.lenses__foundation::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 25%, var(--accent-2) 50%, var(--accent) 75%, transparent 100%);
}

.lenses__foundation-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(255, 117, 0, 0.25);
  color: var(--accent-deep);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 20px;
  box-shadow: 0 8px 16px -8px rgba(255, 117, 0, 0.2);
}

.lenses__foundation-kicker-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: var(--accent);
}

.lenses__foundation-main {
  min-width: 0;
}

.lenses__foundation-title {
  font-size: clamp(26px, 3.2vw, 40px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  color: var(--text-main);
  margin: 0 0 20px;
}

.lenses__foundation-desc {
  font-size: clamp(14px, 1.3vw, 16px);
  line-height: 1.95;
  color: var(--text-sub);
  margin: 0 0 24px;
}

.lenses__foundation-desc strong {
  color: var(--text-main);
  font-weight: 700;
}

.lenses__price-inline {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900 !important;
  font-size: 1.05em;
  letter-spacing: 0.01em;
}

.lenses__foundation-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.lenses__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--line);
  color: var(--text-sub);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background .3s ease, border-color .3s ease, transform .3s ease, color .3s ease, box-shadow .3s ease;
}

.lenses__tag:hover {
  background: #fff4ec;
  border-color: rgba(255, 117, 0, 0.4);
  color: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px -6px rgba(255, 117, 0, 0.25);
}

.lenses__tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-2);
}

/* ============== DASHBOARD: Mission Control 風 ============== */
.lenses__dash {
  position: relative;
  perspective: 1400px;
}

.lenses__dash-window {
  position: relative;
  border-radius: 20px;
  padding: 20px 24px 24px;
  background:
    radial-gradient(ellipse 120% 100% at 20% 0%, rgba(255, 117, 0, 0.18) 0%, transparent 50%),
    radial-gradient(ellipse 80% 60% at 100% 100%, rgba(255, 147, 64, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #0a0e1a 0%, #070912 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 50px 100px -40px rgba(15, 23, 42, 0.55),
    0 10px 24px -12px rgba(255, 117, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  transform: rotateY(-4deg) rotateX(1.5deg);
  transform-style: preserve-3d;
  transition: transform .7s cubic-bezier(0.2, 0.8, 0.2, 1);
  isolation: isolate;
}

/* グリッドパターン背景 */
.lenses__dash-window::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 85%);
  pointer-events: none;
  z-index: 0;
}

/* 微かなscanline効果 */
.lenses__dash-window::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 117, 0, 0.04) 50%, transparent 100%);
  background-size: 100% 4px;
  pointer-events: none;
  mix-blend-mode: overlay;
  opacity: 0.6;
  z-index: 1;
}

.lenses__foundation:hover .lenses__dash-window {
  transform: rotateY(-2deg) rotateX(0.5deg) translateY(-6px);
}

/* ============== TOPBAR ============== */
.lenses__dash-topbar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 22px;
}

.lenses__dash-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.85);
}

.lenses__dash-brand-mark {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 12px rgba(255, 117, 0, 0.6);
  position: relative;
}

.lenses__dash-brand-mark::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.lenses__dash-brand-slash {
  color: rgba(255, 255, 255, 0.35);
  margin: 0 1px;
}

.lenses__dash-live {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(40, 200, 80, 0.12);
  border: 1px solid rgba(40, 200, 80, 0.28);
  font-family: 'Inter', monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: #4ade80;
}

.lenses__dash-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 10px #4ade80;
  animation: lensesLiveDot 1.6s ease-in-out infinite;
}

@keyframes lensesLiveDot {
  0%, 100% { opacity: 0.55; transform: scale(0.85); }
  50%      { opacity: 1;   transform: scale(1.25); box-shadow: 0 0 14px #4ade80; }
}

/* ============== MAIN METRIC: 比較バー + 削減値 ============== */
.lenses__dash-main {
  position: relative;
  z-index: 2;
  margin-bottom: 20px;
}

.lenses__dash-main-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.lenses__dash-main-label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
}

.lenses__dash-main-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 117, 0, 0.15);
  border: 1px solid rgba(255, 117, 0, 0.3);
  font-family: 'Inter', monospace;
  font-size: 9.5px;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: var(--accent-2);
}

.lenses__dash-main-tag svg {
  color: var(--accent);
}

/* 比較バー */
.lenses__dash-compare {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 22px;
  padding: 18px 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.025);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.lenses__dash-compare-row {
  display: grid;
  grid-template-columns: 120px 1fr 50px;
  gap: 12px;
  align-items: center;
}

.lenses__dash-compare-label {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.7);
}

.lenses__dash-compare-row--my .lenses__dash-compare-label {
  color: #ffffff;
  font-weight: 800;
}

.lenses__dash-compare-track {
  position: relative;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
}

.lenses__dash-compare-fill {
  position: absolute;
  inset: 0;
  border-radius: 4px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.22) 100%);
  width: 0;
  animation: lensesCompareFill 1.4s cubic-bezier(0.3, 0.85, 0.4, 1) .8s forwards;
  --target: var(--w);
}

.lenses__dash-compare-fill--accent {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  box-shadow: 0 0 16px rgba(255, 117, 0, 0.55);
  animation-delay: 1.3s;
}

@keyframes lensesCompareFill {
  0%   { width: 0; }
  100% { width: var(--target); }
}

.lenses__dash-compare-fill::after {
  content: '';
  position: absolute;
  top: 0;
  left: -40%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  animation: lensesCompareShine 3s ease-in-out infinite;
  animation-delay: 2.5s;
}

@keyframes lensesCompareShine {
  0%, 100% { left: -40%; opacity: 0; }
  40%      { opacity: 1; }
  60%      { opacity: 1; }
  100%     { left: 140%; opacity: 0; }
}

.lenses__dash-compare-val {
  font-family: 'Inter', monospace;
  font-size: 12px;
  font-weight: 800;
  text-align: right;
  color: rgba(255, 255, 255, 0.7);
}

.lenses__dash-compare-val small {
  font-size: 9px;
  opacity: 0.7;
}

.lenses__dash-compare-val--accent {
  color: var(--accent-3);
  font-size: 14px;
}

/* 削減値 巨大表示 */
.lenses__dash-reduction {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 18px 20px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 117, 0, 0.2), transparent 50%),
    linear-gradient(135deg, rgba(255, 117, 0, 0.08) 0%, rgba(255, 147, 64, 0.03) 100%);
  border: 1px solid rgba(255, 117, 0, 0.22);
  position: relative;
  overflow: hidden;
}

.lenses__dash-reduction::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 140%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 147, 64, 0.1) 50%, transparent 100%);
  animation: lensesReductionGlow 4s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lensesReductionGlow {
  0%, 100% { transform: translateX(-30%); }
  50%      { transform: translateX(30%); }
}

.lenses__dash-reduction-minus {
  font-family: 'Inter', sans-serif;
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.05em;
  -webkit-text-stroke: 2px var(--accent);
  text-shadow: 0 0 20px rgba(255, 117, 0, 0.5);
}

.lenses__dash-reduction-num {
  font-family: 'Inter', sans-serif;
  font-size: clamp(56px, 7.5vw, 96px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, #ffffff 0%, #ffe5d1 40%, #FF9340 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 8px 24px rgba(255, 117, 0, 0.5));
  font-variant-numeric: tabular-nums;
}

.lenses__dash-reduction-unit {
  font-family: 'Inter', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 900;
  line-height: 0.9;
  color: var(--accent-2);
  margin-right: auto;
}

.lenses__dash-reduction-label {
  font-family: 'Inter', monospace;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.24em;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  padding-top: 4px;
}

/* ============== 3メトリック ============== */
.lenses__dash-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lenses__dash-metric {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: background .3s ease, border-color .3s ease;
}

.lenses__dash-metric:hover {
  background: rgba(255, 117, 0, 0.08);
  border-color: rgba(255, 117, 0, 0.25);
}

.lenses__dash-metric-num {
  font-family: 'Inter', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
  display: inline-flex;
  align-items: baseline;
}

.lenses__dash-metric-num small {
  font-size: 0.55em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin-left: 1px;
}

.lenses__dash-metric:first-child .lenses__dash-metric-num {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lenses__dash-metric-label {
  font-family: 'Inter', monospace;
  font-size: 9.5px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============== FOUNDATION v3: Q&A Minimal (Pattern 5) ============== */
.lenses__qa {
  position: relative;
  max-width: 860px;
  margin: 0 auto 56px;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 4.5vw, 56px);
  border-radius: 28px;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(255, 117, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 60% 40% at 100% 100%, rgba(255, 147, 64, 0.06), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  border: 1px solid rgba(255, 117, 0, 0.1);
  box-shadow:
    0 40px 80px -40px rgba(255, 117, 0, 0.2),
    0 10px 30px -20px rgba(15, 23, 42, 0.08);
  text-align: center;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  overflow: hidden;
  isolation: isolate;
}

/* 上部のオレンジグラデバー */
.lenses__qa::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 40%, var(--accent-2) 60%, transparent 100%);
  opacity: 0.6;
  z-index: 2;
}

/* 装飾: 内側に薄いダッシュボーダー */
.lenses__qa::after {
  content: '';
  position: absolute;
  inset: 24px;
  border-radius: 22px;
  border: 1px dashed rgba(255, 117, 0, 0.1);
  pointer-events: none;
  z-index: 0;
}

.lenses__qa > * { position: relative; z-index: 1; }

/* Q: 質問 */
.lenses__qa-q {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 900;
  line-height: 1.55;
  margin: 0 0 28px;
  letter-spacing: -0.01em;
  color: var(--text-main);
}

/* 矢印ディバイダー */
.lenses__qa-arrow {
  margin: 0 auto 28px;
  width: 2px;
  height: 36px;
  background: linear-gradient(180deg, var(--accent), transparent);
  position: relative;
}
.lenses__qa-arrow::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
}

/* A ラベル */
.lenses__qa-a-label {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px -8px rgba(255, 117, 0, 0.45);
}

/* A: 回答 */
.lenses__qa-a {
  font-size: clamp(22px, 2.8vw, 30px);
  font-weight: 900;
  line-height: 1.5;
  margin: 0 0 16px;
  letter-spacing: -0.015em;
  color: var(--text-main);
}
.lenses__qa-a em {
  font-style: normal;
  color: var(--accent-deep);
}

.lenses__qa-a-sub {
  font-size: clamp(13px, 1.3vw, 14.5px);
  color: var(--text-sub);
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.85;
}

/* 2択ミニカード */
.lenses__qa-compare-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin: 0 auto 40px;
  max-width: 540px;
  text-align: left;
}
@media (min-width: 520px) {
  .lenses__qa-compare-grid { grid-template-columns: 1fr 1fr; }
}

.lenses__qa-choice-mini {
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 14px;
  border: 1px solid var(--line);
}

.lenses__qa-choice-mini-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 900;
  color: var(--text-sub);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.lenses__qa-choice-mini-tag::before {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.08);
}

.lenses__qa-choice-mini-title {
  font-size: 14.5px;
  font-weight: 900;
  margin: 0 0 6px;
  color: var(--text-main);
  letter-spacing: -0.005em;
}

.lenses__qa-choice-mini-desc {
  font-size: 12.5px;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0 0 10px;
}

.lenses__qa-choice-mini-verdicts {
  display: flex;
  gap: 14px;
  font-size: 11.5px;
  font-weight: 800;
}

.lenses__qa-r-pos { color: #EB1515; font-weight: 800; }
.lenses__qa-r-neg { color: #94a3b8; text-decoration: line-through; }

/* 装飾エンブレム (星) */
.lenses__qa-emblem {
  width: 72px;
  height: 72px;
  margin: 8px auto 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 30%, #fff 0%, #fff6ec 100%);
  border: 1px solid rgba(255, 117, 0, 0.25);
  box-shadow:
    0 20px 40px -14px rgba(255, 117, 0, 0.35),
    inset 0 -2px 4px rgba(255, 117, 0, 0.08);
  position: relative;
}
.lenses__qa-emblem::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(255, 117, 0, 0.3);
  opacity: 0.7;
  animation: lensesQaSpin 18s linear infinite;
}
.lenses__qa-emblem svg {
  width: 32px;
  height: 32px;
  color: var(--accent-deep);
}
@keyframes lensesQaSpin { to { transform: rotate(360deg); } }

/* MYの答え - キッカー */
.lenses__qa-ans-kicker {
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: 0.28em;
  color: var(--accent-deep);
  margin: 0 auto 14px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lenses__qa-ans-kicker::before,
.lenses__qa-ans-kicker::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--accent);
}

/* MY答えタイトル (3行構成) */
.lenses__qa-ans-title {
  margin: 0 auto 18px;
  max-width: 620px;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--text-main);
  font-weight: 900;
  font-size: 18px;
}
.lenses__qa-ans-line1 {
  display: block;
  font-size: clamp(14px, 1.6vw, 17px);
  font-weight: 700;
  color: var(--text-sub);
  letter-spacing: 0.02em;
  margin-bottom: 2px;
}
.lenses__qa-ans-line2 {
  display: block;
  font-size: clamp(32px, 8vw, 52px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(90deg, var(--accent), var(--accent-deep));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.lenses__qa-ans-line2 .lenses__qa-ans-small {
  font-size: 0.5em;
  font-weight: 700;
  background: none;
  -webkit-text-fill-color: var(--text-sub);
  color: var(--text-sub);
  letter-spacing: 0;
}
.lenses__qa-ans-line3 {
  display: block;
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: 900;
  color: var(--text-main);
  line-height: 1.5;
}
.lenses__qa-ans-line3 span { color: var(--accent-deep); }

.lenses__qa-ans-desc {
  font-size: clamp(13px, 1.3vw, 14.5px);
  line-height: 1.85;
  color: var(--text-sub);
  max-width: 520px;
  margin: 0 auto 40px;
}
.lenses__qa-ans-desc strong {
  color: var(--accent-deep);
  font-weight: 800;
}

/* KPI 3指標 */
.lenses__qa-kpi {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto 40px;
  max-width: 560px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.lenses__qa-kpi-c {
  padding: 4px 6px;
  border-right: 1px solid var(--line);
}
.lenses__qa-kpi-c:last-child { border-right: none; }
.lenses__qa-kpi-num {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(26px, 6vw, 40px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
}
.lenses__qa-kpi-num small {
  font-size: 0.48em;
  -webkit-text-fill-color: var(--accent-deep);
  background: none;
}
.lenses__qa-kpi-label {
  font-size: 10.5px;
  font-weight: 800;
  color: var(--text-sub);
  margin-top: 8px;
  letter-spacing: 0.06em;
}

/* CTA ボタン */
.lenses__qa-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  box-shadow:
    0 20px 36px -14px rgba(255, 117, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  transition: transform .3s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .3s ease;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.lenses__qa-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.3) 50%, transparent 100%);
  animation: lensesQaCtaShine 3.5s ease-in-out infinite;
}
@keyframes lensesQaCtaShine {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}
.lenses__qa-cta:hover {
  transform: translateY(-3px);
  box-shadow:
    0 28px 44px -16px rgba(255, 117, 0, 0.7),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.lenses__qa-cta-arrow {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: transform .25s ease, background .25s ease;
}
.lenses__qa-cta:hover .lenses__qa-cta-arrow {
  transform: translateX(3px);
  background: rgba(255, 255, 255, 0.35);
}

.lenses__qa-cta-note {
  font-size: 11.5px;
  color: var(--text-dim);
  margin: 14px 0 0;
  letter-spacing: 0.02em;
}

@media (prefers-reduced-motion: reduce) {
  .lenses__qa-cta::after { animation: none !important; }
  .lenses__qa-emblem::before { animation: none !important; }
}

/* ============== Q&A SP レスポンシブ ============== */
@media (max-width: 720px) {
  .lenses__qa {
    padding: 36px 20px 40px;
    border-radius: 22px;
    margin: 0 auto 40px;
  }
  .lenses__qa::after { inset: 16px; border-radius: 18px; }
  .lenses__qa-q { font-size: 20px; line-height: 1.55; margin-bottom: 24px; }
  .lenses__qa-arrow { height: 32px; margin-bottom: 24px; }
  .lenses__qa-a-label { font-size: 10.5px; padding: 5px 12px; margin-bottom: 16px; }
  .lenses__qa-a { font-size: 20px; line-height: 1.55; margin-bottom: 14px; }
  .lenses__qa-a-sub { font-size: 12.5px; margin-bottom: 28px; line-height: 1.8; }

  .lenses__qa-compare-grid { gap: 8px; margin-bottom: 32px; }
  .lenses__qa-choice-mini { padding: 14px 16px; }
  .lenses__qa-choice-mini-tag { font-size: 10px; margin-bottom: 4px; }
  .lenses__qa-choice-mini-title { font-size: 13.5px; margin-bottom: 4px; }
  .lenses__qa-choice-mini-desc { font-size: 11.5px; margin-bottom: 8px; line-height: 1.65; }
  .lenses__qa-choice-mini-verdicts { gap: 10px; font-size: 11px; }

  .lenses__qa-emblem { width: 60px; height: 60px; margin-bottom: 22px; }
  .lenses__qa-emblem svg { width: 26px; height: 26px; }

  .lenses__qa-ans-kicker { font-size: 9.5px; margin-bottom: 12px; }
  .lenses__qa-ans-kicker::before, .lenses__qa-ans-kicker::after { width: 18px; }
  .lenses__qa-ans-line1 { font-size: 13px; }
  .lenses__qa-ans-line2 { font-size: clamp(30px, 9vw, 42px); }
  .lenses__qa-ans-line2 .lenses__qa-ans-small { font-size: 0.5em; }
  .lenses__qa-ans-line3 { font-size: 15px; }
  .lenses__qa-ans-desc { font-size: 12.5px; line-height: 1.85; margin-bottom: 32px; }

  .lenses__qa-kpi { padding: 18px 0; margin-bottom: 32px; }
  .lenses__qa-kpi-num { font-size: clamp(22px, 7.5vw, 32px); }
  .lenses__qa-kpi-label { font-size: 9.5px; margin-top: 6px; letter-spacing: 0.04em; }

  .lenses__qa-cta {
    width: 100%;
    max-width: 320px;
    padding: 16px 24px;
    font-size: 14px;
    justify-content: center;
  }
  .lenses__qa-cta-note { font-size: 10.5px; margin-top: 12px; }

  /* Card stat (2,000個/月 など): SP 縦積み */
  .lenses__card-stat {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    padding: 16px 18px;
  }
  .lenses__card-stat-value { align-items: baseline; gap: 6px; }
  .lenses__card-stat-big { font-size: 34px; letter-spacing: -0.03em; }
  .lenses__card-stat-unit { font-size: 13px; }
  .lenses__card-stat-label {
    border-left: none;
    border-top: 1px solid rgba(255, 117, 0, 0.25);
    padding-left: 0;
    padding-top: 10px;
    font-size: 12px;
    align-self: stretch;
    line-height: 1.55;
  }
  .lenses__card-stat-label br { display: none; }
}

@media (max-width: 380px) {
  .lenses__qa { padding: 30px 14px 32px; }
  .lenses__qa::after { inset: 10px; }
  .lenses__qa-q { font-size: 18px; }
  .lenses__qa-a { font-size: 18px; }
  .lenses__qa-ans-line2 { font-size: clamp(26px, 9vw, 36px); }
  .lenses__qa-kpi-num { font-size: clamp(18px, 6.5vw, 26px); }
}

/* ============== CONNECTOR ============== */
.lenses__connector {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 20px 0 40px;
}

.lenses__connector-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.4;
  animation: lensesConnectorDot 1.4s ease-in-out infinite;
}
.lenses__connector-dot:nth-child(1) { animation-delay: 0s; }
.lenses__connector-dot:nth-child(2) { animation-delay: 0.2s; }
.lenses__connector-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes lensesConnectorDot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50%      { opacity: 1;   transform: scale(1.5); }
}

/* ============== 3 LENSES SECTION HEAD ============== */
.lenses__section-head {
  text-align: center;
  margin-bottom: 56px;
}

.lenses__section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-deep);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  margin-bottom: 24px;
}

.lenses__section-title {
  font-size: clamp(26px, 3.4vw, 44px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--text-main);
  margin: 0 0 12px;
}

.lenses__section-sub {
  font-size: clamp(13px, 1.3vw, 15px);
  color: var(--text-sub);
  line-height: 1.8;
  margin: 0;
}

/* ============== ACCENT UTILITIES ============== */
.lenses__accent-text {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lenses__accent-underline {
  position: relative;
  display: inline-block;
}
.lenses__accent-underline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.06em;
  height: 0.3em;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  opacity: 0.28;
  z-index: -1;
  border-radius: 2px;
}

/* ============== 3 LENSES GRID ============== */
.lenses__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: clamp(64px, 8vw, 120px);
}

.lenses__card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px -20px rgba(15, 23, 42, 0.12);
  transition: transform .5s cubic-bezier(0.2, 0.8, 0.2, 1), border-color .3s ease, box-shadow .5s ease;
  isolation: isolate;
}

.lenses__card:hover {
  transform: translateY(-12px);
  border-color: rgba(255, 117, 0, 0.3);
  box-shadow:
    0 40px 80px -30px rgba(255, 117, 0, 0.3),
    0 0 0 1px rgba(255, 117, 0, 0.15);
}

/* Featured スタイル撤去（3カード均等） */

/* Card Media (画像) */
.lenses__card-media {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f1f5f9;
  border-bottom: 3px solid var(--accent);
}

.lenses__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .8s cubic-bezier(0.2, 0.8, 0.2, 1), filter .5s ease;
  filter: saturate(0.95) contrast(1.02);
}

.lenses__card:hover .lenses__card-media img {
  transform: scale(1.08);
  filter: saturate(1.1) contrast(1.05);
}

.lenses__card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(15, 23, 42, 0) 0%,
    rgba(15, 23, 42, 0) 70%,
    rgba(15, 23, 42, 0.25) 100%);
  pointer-events: none;
}

.lenses__card-num {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  font-family: 'Inter', sans-serif;
  font-size: clamp(80px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: -0.05em;
  color: rgba(255, 255, 255, 0.15);
  pointer-events: none;
  z-index: 2;
  text-shadow: 0 4px 24px rgba(15, 23, 42, 0.35);
  transition: color .4s ease, transform .4s ease;
}

.lenses__card:hover .lenses__card-num {
  color: rgba(255, 255, 255, 0.3);
  transform: translateY(calc(-50% - 4px));
}

.lenses__card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  box-shadow: 0 10px 24px -10px rgba(255, 117, 0, 0.65);
  z-index: 2;
}


/* Card Body */
.lenses__card-body {
  padding: 32px 28px 32px;
  position: relative;
  z-index: 2;
}

.lenses__card-title {
  font-size: clamp(22px, 2.2vw, 26px);
  font-weight: 900;
  line-height: 1.35;
  color: var(--text-main);
  margin: 0 0 16px;
  letter-spacing: -0.01em;
  position: relative;
  padding-bottom: 14px;
}

.lenses__card-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-2) 100%);
}

.lenses__card-desc {
  font-size: 14px;
  line-height: 2;
  color: var(--text-sub);
  margin: 0;
}

.lenses__card-desc strong {
  color: var(--text-main);
  font-weight: 700;
}

.lenses__card-desc em {
  font-style: normal;
  color: var(--accent-deep);
  font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(255, 117, 0, 0.18) 60%);
  padding: 0 2px;
}

/* カード下部の統計ボックス（数字+ラベル 横並び） */
.lenses__card-stat {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 22px;
  padding: 20px 22px 20px 26px;
  border-radius: 14px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 147, 64, 0.14), transparent 60%),
    linear-gradient(180deg, #fff9f5 0%, #ffffff 100%);
  border: 1px solid rgba(255, 117, 0, 0.22);
  box-shadow:
    0 12px 24px -14px rgba(255, 117, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
}

.lenses__card-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 4px;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-2) 100%);
}

/* 数字部分だけを巨大強調、単位は中サイズで横に */
.lenses__card-stat-value {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-shrink: 0;
  min-width: 0;
}

.lenses__card-stat-big {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(38px, 4.2vw, 52px);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -0.04em;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.lenses__card-stat-unit {
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
  font-size: clamp(14px, 1.4vw, 16px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--accent-deep);
  white-space: nowrap;
}

.lenses__card-stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-sub);
  line-height: 1.6;
  letter-spacing: 0.01em;
  border-left: 1px solid rgba(255, 117, 0, 0.25);
  padding-left: 16px;
  align-self: stretch;
  display: flex;
  align-items: center;
}

/* Card Stat */
.lenses__card-stat {
  padding-top: 20px;
  border-top: 1px dashed var(--line-strong);
}

.lenses__card-stat-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 6px;
}

.lenses__card-stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 48px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  background: linear-gradient(180deg, var(--accent) 0%, var(--accent-deep) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lenses__card-stat-num small {
  font-size: 26px;
}

.lenses__card-stat-unit {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent-deep);
}

.lenses__card-stat-label {
  display: block;
  font-size: 11.5px;
  color: var(--text-dim);
  letter-spacing: 0.02em;
  line-height: 1.5;
}

/* ============== CONCLUSION ============== */
.lenses__conclusion {
  position: relative;
  text-align: center;
  padding: clamp(56px, 7vw, 96px) clamp(28px, 5vw, 64px);
  border-radius: 36px;
  background:
    linear-gradient(180deg, rgba(255, 117, 0, 0.85) 0%, rgba(255, 147, 64, 0.88) 50%, rgba(255, 184, 136, 0.9) 100%),
    url('../images/generated/reason-offices.webp') center/cover;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  box-shadow: 0 40px 80px -30px rgba(255, 117, 0, 0.5);
}

.lenses__conclusion::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  pointer-events: none;
}

.lenses__conclusion::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.25), transparent 70%);
  pointer-events: none;
  animation: lensesBlob 16s ease-in-out infinite;
}

.lenses__conclusion-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.lenses__conclusion-eyebrow-dash {
  width: 30px;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
}

.lenses__conclusion-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 36px;
  position: relative;
  z-index: 2;
}

.lenses__conclusion-title-big {
  display: block;
  margin-top: 6px;
  font-size: clamp(36px, 6vw, 80px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  text-shadow: 0 2px 16px rgba(200, 60, 20, 0.2);
}

.lenses__conclusion-title-big .lenses__accent-text {
  background: linear-gradient(180deg, #ffffff 0%, #fff0e0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  display: inline-block;
}

.lenses__conclusion-title-big .lenses__accent-text::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.1em;
  height: 0.15em;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.lenses__conclusion-metrics {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
  margin: 0 auto 44px;
  padding: 28px 36px;
  max-width: 720px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  z-index: 2;
}

.lenses__conclusion-metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
  min-width: 0;
}

.lenses__conclusion-metric-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

.lenses__conclusion-metric-value {
  font-family: 'Inter', sans-serif;
  font-size: clamp(28px, 3.6vw, 44px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #ffffff;
}

.lenses__conclusion-metric-value small {
  font-size: 0.55em;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  margin-left: 2px;
}

.lenses__conclusion-metric--main .lenses__conclusion-metric-value {
  color: #ffffff;
  text-shadow: 0 4px 16px rgba(200, 60, 20, 0.25);
  position: relative;
}

.lenses__conclusion-metric--main .lenses__conclusion-metric-value::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 3px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

.lenses__conclusion-metric-sep {
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

/* Conclusion button */
.lenses__conclusion-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 48px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-deep);
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.01em;
  box-shadow:
    0 24px 48px -16px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
  transition: transform .35s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
  z-index: 2;
}

.lenses__conclusion-btn::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  opacity: 0;
  animation: lensesBtnPulse 2.2s ease-out infinite;
  pointer-events: none;
}

@keyframes lensesBtnPulse {
  0%   { opacity: 0.6; transform: scale(1); }
  100% { opacity: 0;   transform: scale(1.25); }
}

.lenses__conclusion-btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 40%;
  height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255, 180, 120, 0.25) 50%,
    transparent 100%);
  animation: lensesBtnGlow 3.5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes lensesBtnGlow {
  0%, 100% { left: -100%; }
  50%      { left: 150%; }
}

.lenses__conclusion-btn > :not(.lenses__conclusion-btn-glow) {
  position: relative;
  z-index: 2;
}

.lenses__conclusion-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 32px 60px -18px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.lenses__conclusion-btn-arrow {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #fff;
  transition: transform .3s ease, background .3s ease;
}

.lenses__conclusion-btn:hover .lenses__conclusion-btn-arrow {
  transform: translateX(4px) rotate(-10deg);
}

.lenses__conclusion-btn-arrow svg {
  width: 18px;
  height: 18px;
}

.lenses__conclusion-note {
  margin: 24px 0 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.02em;
  position: relative;
  z-index: 2;
}

/* ============== SCROLL-IN ============== */
@media (prefers-reduced-motion: no-preference) {
  .lenses__foundation,
  .lenses__section-head,
  .lenses__card,
  .lenses__conclusion {
    opacity: 0;
    transform: translateY(40px);
    animation: lensesScrollIn 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  }
  .lenses__foundation { animation-delay: .7s; }
  .lenses__section-head { animation-delay: .9s; }
  .lenses__card:nth-child(1) { animation-delay: 1s; }
  .lenses__card:nth-child(2) { animation-delay: 1.15s; }
  .lenses__card:nth-child(3) { animation-delay: 1.3s; }
  .lenses__conclusion { animation-delay: 1.1s; }
}

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

@media (prefers-reduced-motion: reduce) {
  .lenses__bg-blob,
  .lenses__connector-dot,
  .lenses__head-scroll-line,
  .lenses__conclusion::after,
  .lenses__conclusion-btn::after,
  .lenses__conclusion-btn-glow,
  .lenses__dash-live-dot,
  .lenses__dash-compare-fill,
  .lenses__dash-compare-fill::after,
  .lenses__dash-reduction::before {
    animation: none !important;
  }
  .lenses__dash-compare-fill { width: var(--target); }
}

/* ============== RESPONSIVE ============== */
@media (max-width: 1024px) {
  .lenses__foundation {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .lenses__dash {
    max-width: 480px;
    margin: 0 auto;
    width: 100%;
  }
  .lenses__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .lenses__grid {
    grid-template-columns: 1fr;
  }
  .lenses__conclusion-metrics {
    padding: 22px 16px;
    gap: 12px;
  }
  .lenses__conclusion-metric-label {
    font-size: 10px;
    letter-spacing: 0.1em;
  }
  .lenses__conclusion-btn {
    padding: 18px 32px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 520px) {
  .lenses {
    padding: 72px 0 56px;
  }
  .lenses__title {
    font-size: 40px;
  }
  .lenses__foundation {
    padding: 28px 22px;
    border-radius: 24px;
  }
  .lenses__dash-window {
    padding: 16px 18px 18px;
    border-radius: 18px;
  }
  .lenses__dash-main-big {
    font-size: 56px;
  }
  .lenses__dash-grid {
    gap: 6px;
  }
  .lenses__dash-metric {
    padding: 10px;
  }
  .lenses__dash-metric-num {
    font-size: 16px;
  }
  .lenses__dash-metric-label {
    font-size: 8.5px;
    letter-spacing: 0.12em;
  }
  .lenses__card-num {
    font-size: 100px;
  }
  .lenses__conclusion {
    padding: 48px 20px;
    border-radius: 28px;
  }
  .lenses__conclusion-metrics {
    flex-direction: column;
    gap: 16px;
  }
  .lenses__conclusion-metric-sep {
    width: 60%;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  }
}
