/* Homepage 2026 — modern conversion-focused layout */

/* ── Hero ── */
.hero--modern {
  min-height: min(92vh, 880px);
  display: flex;
  align-items: stretch;
  background: rgb(var(--ink));
  animation: none;
  isolation: isolate;
}
.hero--modern::before,
.hero--modern::after {
  display: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  transform: scale(1.02);
  animation: heroKenBurns 28s ease-in-out infinite alternate;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(var(--ink) / 0.97) 0%, rgb(var(--ink) / 0.82) 38%, rgb(var(--brand-rgb) / 0.35) 72%, rgb(var(--ink) / 0.55) 100%),
    linear-gradient(to top, var(--surface-base) 0%, transparent 18%);
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 88px);
  max-width: var(--container);
}
.hero-content {
  max-width: 640px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--surface-base);
  background: var(--gradient-accent);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin: 0 0 22px;
  box-shadow: 0 4px 20px rgb(var(--accent-rgb) / 0.35);
}
.hero-eyebrow::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--surface-base);
  opacity: 0.5;
}
.hero--modern h1 {
  color: #fff;
  font-size: clamp(36px, 5.2vw, 58px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.06;
  margin-bottom: 20px;
  text-shadow: 0 4px 32px rgb(var(--ink) / 0.4);
}
.hero-lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(16px, 1.8vw, 18px);
  line-height: 1.7;
  margin: 0 0 28px;
  max-width: 560px;
}
.hero-lead strong { color: #fff; }
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}
.btn-accent {
  background: var(--gradient-accent);
  color: var(--heading);
  box-shadow: 0 8px 28px rgb(var(--accent-rgb) / 0.4);
}
.btn-accent:hover {
  color: var(--heading);
  box-shadow: 0 12px 36px rgb(var(--accent-rgb) / 0.5);
}
.btn-ghost {
  background: rgb(255 255 255 / 0.08);
  color: #fff;
  border: 1.5px solid rgb(255 255 255 / 0.28);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover {
  background: rgb(255 255 255 / 0.14);
  color: #fff;
  border-color: rgb(255 255 255 / 0.45);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}
.hero-trust li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(var(--accent-rgb) / 0.22);
  color: var(--accent);
  font-size: 11px;
  font-weight: 800;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.hero-panel {
  width: min(100%, 420px);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: var(--radius-xl);
  padding: 28px;
  backdrop-filter: blur(20px);
  box-shadow: 0 24px 64px rgb(var(--ink) / 0.35);
}
.hero-panel h2 {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 20px;
  opacity: 0.75;
}
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.hero-stat {
  background: rgb(255 255 255 / 0.06);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  border: 1px solid rgb(255 255 255 / 0.08);
}
.hero-stat strong {
  display: block;
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 6px;
}
.hero-stat span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}
.hero-panel-cta {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgb(255 255 255 / 0.1);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.5;
}
.hero-panel-cta a {
  color: var(--accent);
  font-weight: 700;
}

/* ── Trust strip ── */
.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -36px;
  padding-bottom: 8px;
}
.trust-strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  background: linear-gradient(145deg, var(--surface-elevated), var(--surface-pure));
  border-radius: var(--radius-xl);
  padding: 24px 28px;
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.4), 0 0 0 1px rgb(var(--brand-rgb) / 0.12);
  border: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 4px 8px;
}
.trust-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgb(var(--brand-rgb) / 0.12);
  color: var(--brand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  border: 1px solid rgb(var(--brand-rgb) / 0.2);
}
.trust-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: var(--heading);
}
.trust-item p {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text);
}

/* ── Categories bento ── */
.section-categories {
  padding-top: 72px;
}
.categories-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.categories-bento .category-card {
  min-height: 260px;
  border-radius: var(--radius-lg);
}
.categories-bento .category-card--wide {
  grid-column: span 6;
  min-height: 300px;
}
.categories-bento .category-card--tall {
  grid-column: span 4;
}
.category-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  background: var(--gradient-accent);
  color: var(--heading);
  box-shadow: var(--shadow-sm);
}
.category-meta {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 24px;
  margin: 0;
}
.category-meta h3 {
  font-size: 20px;
  margin: 0 0 6px;
  color: #fff;
}
.category-meta h3 a { color: #fff; }
.category-meta h3 a:hover { color: var(--accent); }
.category-meta p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* ── Process steps ── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  counter-reset: step;
}
.process-step {
  position: relative;
  background: linear-gradient(160deg, var(--surface-elevated), var(--surface-pure));
  border-radius: var(--radius-lg);
  padding: 28px 24px 24px;
  border: 1px solid var(--border);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.25);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.35);
  border-color: rgb(var(--brand-rgb) / 0.3);
}
.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--brand);
  margin-bottom: 14px;
}
.process-step h3 {
  font-size: 17px;
  margin-bottom: 10px;
}
.process-step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--text);
}

/* ── Value showcase (redesigned) ── */
.value-showcase--modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.value-showcase--modern .value-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface-pure);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.value-showcase--modern .value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.value-showcase--modern .value-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.value-showcase--modern .value-card-body {
  padding: 22px 24px 26px;
}
.value-showcase--modern .value-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}
.value-showcase--modern .value-card-body p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
}

/* ── Split feature ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split--reverse {
  direction: rtl;
}
.feature-split--reverse > * {
  direction: ltr;
}
.feature-media {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.feature-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.feature-copy h2 {
  font-size: clamp(26px, 3vw, 34px);
  margin-bottom: 16px;
}
.feature-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
}
.feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: var(--gradient-brand);
}

/* ── CTA banner ── */
.cta-banner {
  background: linear-gradient(135deg, #0A1020 0%, #142848 40%, #1A3060 100%);
  border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgb(var(--brand-rgb) / 0.2);
  box-shadow: 0 24px 64px rgb(0 0 0 / 0.4), inset 0 1px 0 rgb(255 255 255 / 0.05);
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgb(var(--accent-rgb) / 0.18), transparent 45%),
    radial-gradient(circle at 85% 30%, rgb(255 255 255 / 0.08), transparent 40%);
  pointer-events: none;
}
.cta-banner .container {
  position: relative;
  z-index: 1;
}
.cta-banner h2 {
  color: #fff;
  font-size: clamp(26px, 3.5vw, 38px);
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 560px;
  margin: 0 auto 28px;
  font-size: 17px;
}
.cta-banner .hero-actions {
  justify-content: center;
  margin-bottom: 0;
}

/* ── Testimonials modern ── */
.testimonials-grid--modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonials-grid--modern .testimonial-card {
  background: var(--surface-pure);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  transition: box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}
.testimonials-grid--modern .testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonials-grid--modern .stars {
  color: var(--accent);
  font-size: 15px;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonials-grid--modern h6 {
  margin: 16px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--text-strong);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-visual {
    justify-content: flex-start;
  }
  .hero-panel {
    width: 100%;
    max-width: 480px;
  }
  .trust-strip-inner {
    grid-template-columns: repeat(2, 1fr);
  }
  .categories-bento .category-card--wide,
  .categories-bento .category-card--tall {
    grid-column: span 6;
  }
  .process-grid,
  .value-showcase--modern,
  .testimonials-grid--modern {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .feature-split--reverse {
    direction: ltr;
  }
}

@media (max-width: 640px) {
  .hero--modern {
    min-height: auto;
  }
  .trust-strip {
    margin-top: -20px;
  }
  .trust-strip-inner {
    grid-template-columns: 1fr;
    padding: 20px;
  }
  .categories-bento .category-card--wide,
  .categories-bento .category-card--tall {
    grid-column: span 12;
    min-height: 220px;
  }
  .process-grid,
  .value-showcase--modern,
  .testimonials-grid--modern {
    grid-template-columns: 1fr;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg img {
    animation: none;
  }
}

/* ── Engine comparison grid ── */
.engine-compare-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.engine-compare-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.engine-compare-card:hover {
  border-color: rgb(var(--accent-rgb) / 0.35);
  transform: translateY(-4px);
}
.engine-compare-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--surface-base);
  background: var(--gradient-accent);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  align-self: flex-start;
}
.engine-compare-card h3 {
  font-size: 20px;
  margin: 0 0 6px;
}
.engine-compare-card h3 a {
  color: #fff;
  text-decoration: none;
}
.engine-compare-card h3 a:hover { color: var(--accent); }
.engine-compare-models {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 16px;
}
.engine-compare-card ul {
  margin: 0 0 18px;
  padding: 0 0 0 18px;
  flex: 1;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}
.engine-compare-card li { margin-bottom: 8px; }
.engine-compare-card strong { color: #fff; }
.engine-compare-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent) !important;
  text-decoration: none !important;
}
.engine-compare-link:hover { color: #fff !important; }

/* ── Order guide ── */
.order-guide {
  display: grid;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
}
.order-guide-step {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 20px;
  align-items: start;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.order-guide-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gradient-brand);
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgb(var(--brand-rgb) / 0.35);
}
.order-guide-step h3 {
  font-size: 18px;
  margin: 0 0 8px;
  color: #fff;
}
.order-guide-step p {
  margin: 0;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.order-guide-step a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}

/* ── Warranty grid ── */
.warranty-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.warranty-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 26px 22px;
  border-top: 3px solid var(--accent);
}
.warranty-card h3 {
  font-size: 17px;
  margin: 0 0 12px;
  color: #fff;
}
.warranty-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.warranty-card a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ── Shipping regions ── */
.shipping-regions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}
.shipping-region {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 22px 24px;
}
.shipping-region h3 {
  font-size: 16px;
  margin: 0 0 8px;
  color: var(--accent);
}
.shipping-region p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.82);
}
.shipping-note {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
}
.shipping-note a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .engine-compare-grid,
  .warranty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .engine-compare-grid,
  .warranty-grid,
  .shipping-regions {
    grid-template-columns: 1fr;
  }
  .order-guide-step {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .order-guide-num {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
}

/* ── Payment methods ── */
.payment-section {
  background: linear-gradient(180deg, #0F1522 0%, #0B0F19 100%);
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-methods-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 28px;
}
.payment-method-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s var(--ease), transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.payment-method-card:hover {
  border-color: rgb(var(--accent-rgb) / 0.35);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgb(0 0 0 / 0.35);
}
.payment-method-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: #0A0E16;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.payment-method-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.payment-method-body {
  padding: 24px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.payment-method-body h3 {
  font-size: 20px;
  margin: 0 0 12px;
  color: var(--accent);
}
.payment-method-body p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.88);
}
.payment-method-body ul {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
  flex: 1;
}
.payment-method-body li { margin-bottom: 6px; }
.payment-method-body strong { color: #fff; }
.payment-method-body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.payment-footnote {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
}
.payment-footnote a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 1024px) {
  .payment-methods-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ── Classic editorial guide sections (10 chapters) ── */
.home-classic {
  padding: clamp(80px, 11vw, 120px) 0;
  overflow: clip;
  position: relative;
}
.home-classic:not(.section-muted) {
  background:
    radial-gradient(ellipse 55% 45% at 0% 50%, rgb(var(--brand-rgb) / 0.07), transparent 70%),
    linear-gradient(180deg, #0B0F19 0%, #0D121E 100%);
}
.home-classic.section-muted {
  background:
    radial-gradient(ellipse 55% 45% at 100% 50%, rgb(var(--accent-rgb) / 0.05), transparent 70%),
    linear-gradient(180deg, #0F1522 0%, #0B0F19 100%);
}
.home-classic__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  gap: clamp(36px, 5.5vw, 72px);
  align-items: center;
}
.home-classic__layout--reverse {
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
}
.home-classic__layout--reverse .home-classic__media { order: 2; }
.home-classic__layout--reverse .home-classic__copy { order: 1; }

.home-classic__media {
  margin: 0;
  position: relative;
}
.home-classic__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 2px 18px 2px 18px;
  overflow: hidden;
  isolation: isolate;
  background: #070A10;
  box-shadow:
    0 4px 0 0 rgb(var(--accent-rgb) / 0.55),
    0 28px 56px rgb(var(--ink) / 0.5),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  transition: box-shadow 0.45s var(--ease), transform 0.45s var(--ease);
}
.home-classic__frame::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgb(var(--ink) / 0.55) 0%, transparent 42%),
    linear-gradient(120deg, rgb(var(--brand-rgb) / 0.12) 0%, transparent 50%);
}
.home-classic__frame::after {
  content: '';
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1px 12px 1px 12px;
  opacity: 0.7;
}
.home-classic__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.03);
  transition: transform 0.8s var(--ease);
  filter: saturate(1.06) contrast(1.05);
}
.home-classic:hover .home-classic__frame {
  transform: translateY(-4px);
  box-shadow:
    0 4px 0 0 var(--accent),
    0 36px 64px rgb(var(--ink) / 0.55),
    inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}
.home-classic:hover .home-classic__frame img,
.home-classic:hover .home-classic__frame img.img-motion-ken.is-visible {
  transform: scale(1.08);
  animation-play-state: paused;
}
.home-spot:hover .home-spot__frame img,
.home-spot:hover .home-spot__frame img.img-motion-ken.is-visible {
  transform: scale(1.09);
  animation-play-state: paused;
}
.home-classic__frame img.img-motion-ken.is-visible,
.home-spot__frame img.img-motion-ken.is-visible {
  animation: imgKenBurns 24s ease-in-out 0.5s infinite alternate;
}

.home-classic__media figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 0 2px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
}
.home-classic__media figcaption::before {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: rgb(var(--accent-rgb) / 0.7);
}

.home-classic__copy {
  position: relative;
  max-width: 620px;
  z-index: 1;
}
.home-classic__num {
  position: absolute;
  top: -36px;
  right: -8px;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(72px, 10vw, 108px);
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  -webkit-text-stroke: 1px rgb(var(--brand-rgb) / 0.22);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.home-classic__eyebrow {
  position: relative;
  display: inline-block;
  margin: 0 0 16px;
  padding: 0 0 0 16px;
  border-left: 2px solid var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.home-classic__title {
  position: relative;
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: clamp(26px, 3.1vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  text-align: left;
  max-width: 22ch;
}
.home-classic__title::after {
  content: '';
  display: block;
  width: 48px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--accent) 0%, rgb(var(--accent-rgb) / 0) 100%);
}
.home-classic__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}
.home-classic__body p {
  margin: 0 0 15px;
}
.home-classic__body p:first-child {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
}
.home-classic__body p:last-child {
  margin-bottom: 0;
}
.home-classic__body a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .home-classic {
    padding: 64px 0;
  }
  .home-classic__layout,
  .home-classic__layout--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .home-classic__layout--reverse .home-classic__media,
  .home-classic__layout--reverse .home-classic__copy {
    order: unset;
  }
  .home-classic__media { order: -1; }
  .home-classic__frame {
    border-radius: 2px 14px 2px 14px;
  }
  .home-classic__frame::after {
    inset: 10px;
  }
  .home-classic__num {
    top: -18px;
    right: 0;
    font-size: 64px;
  }
  .home-classic__title {
    max-width: none;
  }
  .home-classic__copy {
    max-width: none;
  }
}

/* ── Strategic spotlight sections ── */
.home-spot {
  padding: clamp(72px, 10vw, 112px) 0;
  position: relative;
  overflow: clip;
}
.home-spot--accent {
  background:
    radial-gradient(ellipse 60% 50% at 8% 30%, rgb(var(--brand-rgb) / 0.16), transparent 60%),
    radial-gradient(ellipse 45% 40% at 92% 70%, rgb(var(--accent-rgb) / 0.07), transparent 55%),
    linear-gradient(180deg, #0C111C 0%, #0B0F19 100%);
}
.home-spot.section-muted {
  background:
    radial-gradient(ellipse 50% 45% at 90% 40%, rgb(var(--brand-rgb) / 0.1), transparent 60%),
    linear-gradient(180deg, #0F1522 0%, #0B0F19 100%);
}
.home-spot__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.home-spot__layout--reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}
.home-spot__layout--reverse .home-spot__media { order: 2; }
.home-spot__layout--reverse .home-spot__copy { order: 1; }

.home-spot__media { margin: 0; }
.home-spot__frame {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px 2px 22px 2px;
  overflow: hidden;
  isolation: isolate;
  background: #070A10;
  box-shadow:
    0 0 0 1px rgb(var(--accent-rgb) / 0.28),
    0 32px 64px rgb(var(--ink) / 0.5);
  transition: transform 0.5s var(--ease), box-shadow 0.45s var(--ease);
}
.home-spot__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(to top, rgb(var(--ink) / 0.5) 0%, transparent 45%),
    linear-gradient(135deg, rgb(var(--accent-rgb) / 0.1) 0%, transparent 40%);
}
.home-spot:hover .home-spot__frame {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgb(var(--accent-rgb) / 0.45),
    0 40px 72px rgb(var(--ink) / 0.55);
}
.home-spot__frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  transition: transform 0.85s var(--ease);
  filter: saturate(1.08) contrast(1.04);
}

.home-spot__badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgb(var(--ink));
  background: var(--accent);
  padding: 7px 12px;
  border-radius: 2px;
  box-shadow: 0 8px 20px rgb(var(--accent-rgb) / 0.35);
}
.home-spot__media figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.48);
  font-style: normal;
}
.home-spot__media figcaption::before {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: rgb(var(--accent-rgb) / 0.7);
}

.home-spot__copy {
  max-width: 600px;
  position: relative;
}
.home-spot__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.home-spot__eyebrow::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--accent);
}
.home-spot__title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--heading);
  text-align: left;
  max-width: 20ch;
}
.home-spot__body {
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.78);
}
.home-spot__body p { margin: 0 0 14px; }
.home-spot__body p:first-child {
  font-size: 16.5px;
  color: rgba(255, 255, 255, 0.9);
}
.home-spot__body p:last-child { margin-bottom: 0; }
.home-spot__cta {
  margin: 26px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.home-spot__cta .btn {
  min-height: 48px;
  padding-inline: 22px;
  box-shadow: 0 10px 28px rgb(var(--accent-rgb) / 0.28);
}

@media (max-width: 900px) {
  .home-spot {
    padding: 60px 0;
  }
  .home-spot__layout,
  .home-spot__layout--reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .home-spot__layout--reverse .home-spot__media,
  .home-spot__layout--reverse .home-spot__copy {
    order: unset;
  }
  .home-spot__media { order: -1; }
  .home-spot:hover .home-spot__frame {
    transform: none;
  }
  .home-spot__title,
  .home-spot__copy {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-classic__frame,
  .home-classic__frame img,
  .home-spot__frame,
  .home-spot__frame img {
    transition: none;
  }
  .home-classic:hover .home-classic__frame,
  .home-classic:hover .home-classic__frame img,
  .home-spot:hover .home-spot__frame,
  .home-spot:hover .home-spot__frame img {
    transform: none;
  }
}
