/* Sketch2Render — Modern architectural re-skin */

:root {
  --s2r-blue: #3b82f6;
  --s2r-cyan: #06b6d4;
  --s2r-cyan-glow: rgba(6, 182, 212, 0.35);
  --s2r-navy: #0a0f1a;
  --s2r-bg: #f1f5f9;
  --s2r-text: #1e293b;
  --s2r-text-muted: #64748b;
  --s2r-border: rgba(15, 23, 42, 0.08);
  --s2r-white: #ffffff;
  --s2r-radius: 10px;
  --s2r-radius-lg: 16px;
  --s2r-radius-xl: 24px;
  --s2r-shadow: 0 4px 24px rgba(10, 15, 26, 0.06);
  --s2r-shadow-md: 0 8px 32px rgba(10, 15, 26, 0.1);
  --s2r-shadow-lg: 0 24px 64px rgba(10, 15, 26, 0.14);
  --s2r-shadow-glow: 0 0 48px var(--s2r-cyan-glow);
  --s2r-header-h: 76px;
  --font-sans: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, sans-serif;
  --gradient-brand: linear-gradient(135deg, var(--s2r-blue) 0%, var(--s2r-cyan) 100%);
  --gradient-dark: linear-gradient(160deg, #0a0f1a 0%, #111827 50%, #0f172a 100%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--s2r-text);
  background: var(--s2r-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--s2r-blue);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--s2r-cyan);
}

h1,
h2,
h3,
h4 {
  color: var(--s2r-navy);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  letter-spacing: -0.025em;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.625rem, 3.5vw, 2.5rem);
  font-weight: 700;
}

h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

p {
  margin: 0 0 1rem;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section--alt {
  background: var(--s2r-bg);
}

.section--stats {
  padding-top: 0;
  padding-bottom: 4rem;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--s2r-cyan);
  margin-bottom: 0.875rem;
  padding: 0.375rem 0.875rem;
  background: rgba(6, 182, 212, 0.08);
  border: 1px solid rgba(6, 182, 212, 0.2);
  border-radius: 999px;
}

.section-label::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s2r-cyan);
  box-shadow: 0 0 8px var(--s2r-cyan);
}

.section-intro {
  max-width: 620px;
  font-size: 1.125rem;
  color: var(--s2r-text-muted);
  line-height: 1.7;
}

.section-header {
  margin-bottom: 3.5rem;
}

.section-header--center {
  text-align: center;
}

.section-header--center .section-intro {
  margin: 0.875rem auto 0;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8125rem 1.625rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--s2r-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  white-space: nowrap;
  font-family: inherit;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--gradient-brand);
  color: var(--s2r-white);
  border-color: transparent;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.35);
}

.btn--primary:hover {
  box-shadow: 0 8px 28px rgba(59, 130, 246, 0.45), var(--s2r-shadow-glow);
  color: var(--s2r-white);
}

.btn--secondary {
  background: var(--s2r-white);
  color: var(--s2r-navy);
  border-color: var(--s2r-border);
  box-shadow: var(--s2r-shadow);
}

.btn--secondary:hover {
  border-color: var(--s2r-blue);
  color: var(--s2r-blue);
  box-shadow: var(--s2r-shadow-md);
}

.btn--ghost {
  background: transparent;
  color: var(--s2r-text);
  border-color: transparent;
  padding: 0.5rem 0.875rem;
}

.btn--ghost:hover {
  color: var(--s2r-blue);
  transform: none;
}

.btn--lg {
  padding: 1rem 2rem;
  font-size: 1.0625rem;
  border-radius: var(--s2r-radius-lg);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
}

.btn-group--center {
  justify-content: center;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--s2r-header-h);
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--s2r-border);
  box-shadow: var(--s2r-shadow);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--s2r-header-h);
  gap: 1rem;
}

.site-logo img {
  height: 38px;
  width: auto;
  transition: opacity 0.2s;
}

@media (max-width: 399px) {
  .site-logo img {
    height: 32px;
  }

  .site-header__actions .btn {
    padding: 0.4375rem 0.625rem;
    font-size: 0.75rem;
  }

  .site-header__actions .btn--ghost {
    padding: 0.4375rem 0.5rem;
  }
}

.site-logo:hover img {
  opacity: 0.85;
}

.site-nav {
  display: none;
  align-items: center;
  gap: 0.125rem;
}

.site-nav a {
  color: var(--s2r-text);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover {
  color: var(--s2r-blue);
  background: rgba(59, 130, 246, 0.06);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-left: auto;
}

.site-header__actions .btn {
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  white-space: nowrap;
}

.site-header__actions .btn--ghost {
  padding: 0.5rem 0.625rem;
  color: var(--s2r-navy);
  font-weight: 600;
}

.site-header__actions .btn--primary {
  box-shadow: 0 2px 10px rgba(59, 130, 246, 0.3);
}

.site-header__micro {
  display: none;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--s2r-cyan);
  margin-right: 0.25rem;
  padding: 0.3rem 0.625rem;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 999px;
  letter-spacing: 0.02em;
}

@media (min-width: 992px) {
  .site-header__micro {
    display: inline-flex;
  }
}

.menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius);
  cursor: pointer;
  color: var(--s2r-navy);
  box-shadow: var(--s2r-shadow);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.menu-toggle:hover {
  border-color: var(--s2r-blue);
}

.menu-toggle svg {
  width: 22px;
  height: 22px;
}

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--s2r-header-h) 0 0 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  z-index: 99;
  padding: 1.5rem;
  overflow-y: auto;
  border-top: 1px solid var(--s2r-border);
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav > a {
  display: block;
  padding: 1rem 0;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--s2r-navy);
  border-bottom: 1px solid var(--s2r-border);
}

.mobile-nav__actions {
  margin-top: 1.5rem;
  padding-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mobile-nav__actions .btn {
  width: 100%;
  display: inline-flex;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  border-bottom: none;
}

.mobile-nav__actions .btn--secondary {
  background: var(--s2r-bg);
  color: var(--s2r-navy);
  border: 2px solid #cbd5e1;
  box-shadow: var(--s2r-shadow);
}

.mobile-nav__actions .btn--secondary:hover {
  border-color: var(--s2r-blue);
  color: var(--s2r-blue);
  background: rgba(59, 130, 246, 0.06);
}

.mobile-nav__actions .btn--primary {
  color: var(--s2r-white);
  border: 2px solid transparent;
}

@media (min-width: 992px) {
  .site-nav {
    display: flex;
  }

  .site-header__actions {
    gap: 0.625rem;
    margin-left: 0;
  }

  .site-header__actions .btn {
    padding: 0.8125rem 1.625rem;
    font-size: 0.9375rem;
  }

  .site-header__actions .btn--ghost {
    padding: 0.5rem 0.875rem;
  }

  .menu-toggle,
  .mobile-nav {
    display: none !important;
  }
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--s2r-header-h) + 3.5rem) 0 5rem;
  background: var(--gradient-dark);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-mesh-bg.webp") center / cover no-repeat;
  opacity: 0.55;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: linear-gradient(transparent, var(--s2r-white));
  pointer-events: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.hero__copy h1 {
  color: var(--s2r-white);
}

.hero__copy h1 .text-gradient {
  background: linear-gradient(135deg, #60a5fa 0%, #22d3ee 50%, #a5f3fc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__copy p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.72);
  max-width: 520px;
  line-height: 1.75;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem 0.5rem 0.625rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
}

.hero-badge__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 12px rgba(34, 197, 94, 0.6);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(0.9); }
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin-top: 2rem;
}

.trust-strip span {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.4375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.trust-strip span::before {
  content: "✓";
  font-size: 0.625rem;
  color: var(--s2r-cyan);
  font-weight: 700;
}

.trust-strip span:not(:last-child)::after {
  content: none;
}

.hero__visual {
  position: relative;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, var(--s2r-cyan-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero__visual .s2r-split {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--s2r-radius-xl);
  box-shadow: var(--s2r-shadow-lg), 0 0 80px rgba(6, 182, 212, 0.15);
}

.hero__visual .s2r-split__meta {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

@media (min-width: 768px) {
  .hero {
    padding: calc(var(--s2r-header-h) + 5rem) 0 6rem;
  }

  .hero__grid {
    grid-template-columns: 1fr 1.05fr;
    gap: 4rem;
  }
}

/* Signature split */
.s2r-split {
  --split: 45%;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-lg);
  aspect-ratio: 16 / 10;
  background: var(--s2r-bg);
}

.s2r-split__sketch,
.s2r-split__render {
  position: absolute;
  top: 0;
  bottom: 0;
  object-fit: cover;
  height: 100%;
}

.s2r-split__sketch {
  left: 0;
  width: var(--split);
}

.s2r-split__render {
  left: var(--split);
  width: calc(100% - var(--split));
}

.s2r-split::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split);
  width: 3px;
  background: var(--gradient-brand);
  z-index: 2;
  transform: translateX(-50%);
  box-shadow: 0 0 12px var(--s2r-cyan-glow);
}

.s2r-split__labels {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0.625rem 1rem;
  background: linear-gradient(transparent, rgba(10, 15, 26, 0.75));
  z-index: 3;
  pointer-events: none;
}

.s2r-split__label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.95);
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  backdrop-filter: blur(4px);
}

.s2r-split__meta {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  color: var(--s2r-text-muted);
}

.s2r-split--composed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.s2r-split--composed::after {
  display: none;
}

.gallery-card:hover .s2r-split--composed img {
  transform: scale(1.03);
}

.s2r-split--interactive .s2r-split__render {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.s2r-split--interactive .s2r-split__sketch-wrap {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: var(--split-pos, 45%);
  overflow: hidden;
  z-index: 1;
}

.s2r-split--interactive .s2r-split__sketch-wrap .s2r-split__sketch {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: calc(100% / (var(--split-pos-num, 45) / 100));
  max-width: none;
  object-fit: cover;
}

.s2r-split--interactive .s2r-split__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--split-pos, 45%);
  width: 3px;
  background: var(--gradient-brand);
  z-index: 4;
  transform: translateX(-50%);
  pointer-events: none;
  box-shadow: 0 0 16px var(--s2r-cyan-glow);
}

.s2r-split--interactive .s2r-split__handle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--s2r-white);
  border: 3px solid transparent;
  border-radius: 50%;
  background-clip: padding-box;
  box-shadow: var(--s2r-shadow-lg), inset 0 0 0 2px var(--s2r-blue);
}

.s2r-split--interactive .s2r-split__handle::after {
  content: "↔";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 0.875rem;
  color: var(--s2r-blue);
  font-weight: 700;
  z-index: 1;
}

.s2r-split--interactive input[type="range"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 5;
  margin: 0;
}

.s2r-split--interactive::after {
  display: none;
}

/* Gallery */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
  justify-content: center;
}

.filter-btn {
  padding: 0.5625rem 1.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: 1px solid var(--s2r-border);
  border-radius: 999px;
  background: var(--s2r-white);
  color: var(--s2r-text);
  cursor: pointer;
  transition: all 0.25s;
  font-family: inherit;
  box-shadow: var(--s2r-shadow);
}

.filter-btn:hover {
  border-color: var(--s2r-blue);
  color: var(--s2r-blue);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: var(--gradient-brand);
  border-color: transparent;
  color: var(--s2r-white);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.gallery-card {
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.gallery-card:hover {
  transform: translateY(-4px);
}

.gallery-card .s2r-split {
  box-shadow: var(--s2r-shadow-md);
  transition: box-shadow 0.3s;
}

.gallery-card:hover .s2r-split {
  box-shadow: var(--s2r-shadow-lg);
}

.gallery-card.is-hidden {
  display: none;
}

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .steps::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: calc(16.66% + 1rem);
    right: calc(16.66% + 1rem);
    height: 2px;
    background: linear-gradient(90deg, var(--s2r-blue), var(--s2r-cyan), var(--s2r-blue));
    opacity: 0.25;
    z-index: 0;
  }
}

.step-card {
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-xl);
  padding: 2rem 1.75rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--s2r-shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--s2r-shadow-lg);
  border-color: rgba(59, 130, 246, 0.2);
}

.step-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  background: var(--gradient-brand);
  color: var(--s2r-white);
  font-size: 1rem;
  font-weight: 800;
  border-radius: 12px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}

.step-card p {
  font-size: 0.9375rem;
  color: var(--s2r-text-muted);
  margin: 0;
  line-height: 1.65;
}

/* Info cards */
.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .card-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.info-card {
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-xl);
  padding: 1.75rem;
  height: 100%;
  box-shadow: var(--s2r-shadow);
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-brand);
  opacity: 0;
  transition: opacity 0.3s;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s2r-shadow-md);
  border-color: rgba(59, 130, 246, 0.15);
}

.info-card:hover::before {
  opacity: 1;
}

.info-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 10px;
  color: var(--s2r-blue);
}

.info-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.info-card h3 {
  margin-bottom: 0.625rem;
}

.info-card p {
  font-size: 0.9375rem;
  color: var(--s2r-text-muted);
  margin: 0;
  line-height: 1.65;
}

.info-card em {
  color: var(--s2r-navy);
  font-style: normal;
  font-weight: 600;
}

/* Judgment proof */
.judgment-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .judgment-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.judgment-tile {
  position: relative;
  border-radius: var(--s2r-radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  border: 1px solid var(--s2r-border);
  box-shadow: var(--s2r-shadow);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s;
}

.judgment-tile:hover {
  transform: scale(1.04);
  box-shadow: var(--s2r-shadow-lg);
  z-index: 2;
}

.judgment-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.judgment-tile:hover img {
  transform: scale(1.08);
}

.judgment-tile__tag {
  position: absolute;
  bottom: 0.875rem;
  left: 0.875rem;
  padding: 0.375rem 0.75rem;
  background: rgba(10, 15, 26, 0.85);
  backdrop-filter: blur(8px);
  color: var(--s2r-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 6px;
  letter-spacing: 0.03em;
}

/* Video */
.video-block {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 992px) {
  .video-block {
    grid-template-columns: 1fr 1.4fr;
  }
}

.video-block__actions {
  margin-top: 1.5rem;
}

.video-wrap {
  border-radius: var(--s2r-radius-xl);
  overflow: hidden;
  box-shadow: var(--s2r-shadow-lg);
  background: var(--s2r-navy);
  border: 1px solid var(--s2r-border);
  position: relative;
}

.video-wrap::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: var(--gradient-brand);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.5;
}

.video-wrap video {
  width: 100%;
  display: block;
}

.video-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.25rem;
}

.badge {
  display: inline-block;
  padding: 0.4375rem 0.875rem;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--s2r-white);
  color: var(--s2r-text);
  border: 1px solid var(--s2r-border);
  border-radius: 999px;
  box-shadow: var(--s2r-shadow);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.price-card {
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  position: relative;
  box-shadow: var(--s2r-shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--s2r-shadow-md);
}

.price-card--featured {
  border-color: transparent;
  background: var(--gradient-dark);
  color: var(--s2r-white);
  box-shadow: var(--s2r-shadow-lg), 0 0 60px rgba(59, 130, 246, 0.15);
  transform: scale(1.02);
}

.price-card--featured:hover {
  transform: scale(1.02) translateY(-4px);
  box-shadow: var(--s2r-shadow-lg), 0 0 80px rgba(59, 130, 246, 0.25);
}

.price-card--featured h3,
.price-card--featured .price-card__tier,
.price-card--featured .price-card__amount,
.price-card--featured .price-card__desc,
.price-card--featured li {
  color: inherit;
}

.price-card--featured .price-card__tier {
  color: var(--s2r-cyan);
}

.price-card--featured .price-card__amount {
  color: var(--s2r-white);
}

.price-card--featured .price-card__amount span {
  color: rgba(255, 255, 255, 0.6);
}

.price-card--featured .price-card__desc {
  color: rgba(255, 255, 255, 0.65);
}

.price-card--featured li::before {
  color: var(--s2r-cyan);
}

.price-card--featured .early-access-form input {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.15);
  color: var(--s2r-white);
}

.price-card--featured .early-access-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.price-card__badge {
  position: absolute;
  top: -0.875rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.375rem 1rem;
  background: var(--gradient-brand);
  color: var(--s2r-white);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 999px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.4);
  letter-spacing: 0.04em;
}

.price-card__tier {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--s2r-blue);
  margin-bottom: 0.625rem;
}

.price-card__amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--s2r-navy);
  line-height: 1;
  margin-bottom: 0.375rem;
  letter-spacing: -0.03em;
}

.price-card__amount span {
  font-size: 1rem;
  font-weight: 500;
  color: var(--s2r-text-muted);
}

.price-card__desc {
  font-size: 0.9375rem;
  color: var(--s2r-text-muted);
  margin-bottom: 1.5rem;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex: 1;
}

.price-card li {
  position: relative;
  padding-left: 1.625rem;
  margin-bottom: 0.75rem;
  font-size: 0.9375rem;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--s2r-blue);
  font-weight: 800;
}

.price-card .btn {
  width: 100%;
}

.pricing-faq {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-xl);
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--s2r-text-muted);
  box-shadow: var(--s2r-shadow);
}

.pricing-faq span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.pricing-faq span::before {
  content: "✓";
  color: var(--s2r-cyan);
  font-weight: 800;
}

.early-access-form {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.early-access-form input {
  padding: 0.875rem 1rem;
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius);
  font-size: 0.9375rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.early-access-form input:focus {
  outline: none;
  border-color: var(--s2r-blue);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Social proof */
.proof-block {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 2.5rem;
  background: var(--gradient-dark);
  border-radius: var(--s2r-radius-xl);
  position: relative;
  overflow: hidden;
}

.proof-block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-mesh-bg.webp") center / cover no-repeat;
  opacity: 0.3;
  pointer-events: none;
}

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

.proof-block h2 {
  color: var(--s2r-white);
}

.proof-block p {
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}

.proof-block .section-label {
  background: rgba(6, 182, 212, 0.15);
  border-color: rgba(6, 182, 212, 0.3);
}

.proof-block__cta {
  margin-top: 1.5rem;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-lg);
  overflow: hidden;
  box-shadow: var(--s2r-shadow);
  transition: border-color 0.25s, box-shadow 0.25s;
}

.faq-item:hover {
  border-color: rgba(59, 130, 246, 0.2);
}

.faq-item[open] {
  box-shadow: var(--s2r-shadow-md);
  border-color: rgba(59, 130, 246, 0.25);
}

.faq-item summary {
  padding: 1.25rem 3rem 1.25rem 1.5rem;
  font-weight: 700;
  color: var(--s2r-navy);
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 0.975rem;
  transition: color 0.2s;
}

.faq-item summary:hover {
  color: var(--s2r-blue);
}

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

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  color: var(--s2r-blue);
  font-weight: 400;
  background: rgba(59, 130, 246, 0.08);
  border-radius: 8px;
  transition: background 0.2s, transform 0.25s;
}

.faq-item[open] summary::after {
  content: "−";
  background: var(--gradient-brand);
  color: var(--s2r-white);
}

.faq-item p {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9375rem;
  color: var(--s2r-text-muted);
  margin: 0;
  line-height: 1.7;
}

/* Final CTA */
.cta-final {
  background: var(--gradient-dark);
  color: var(--s2r-white);
  text-align: center;
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/images/hero-mesh-bg.webp") center / cover no-repeat;
  opacity: 0.4;
  pointer-events: none;
}

.cta-final .container {
  position: relative;
  z-index: 1;
}

.cta-final h2 {
  color: var(--s2r-white);
}

.cta-final p {
  color: rgba(255, 255, 255, 0.72);
  max-width: 560px;
  margin: 0 auto 2rem;
  font-size: 1.125rem;
}

.cta-final .trust-line {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
}

.cta-final .btn--primary {
  background: var(--s2r-white);
  color: var(--s2r-navy);
  border-color: var(--s2r-white);
  box-shadow: 0 4px 24px rgba(255, 255, 255, 0.2);
}

.cta-final .btn--primary:hover {
  background: var(--s2r-bg);
  color: var(--s2r-navy);
  box-shadow: 0 8px 32px rgba(255, 255, 255, 0.3);
}

.cta-final .btn--secondary {
  color: var(--s2r-white);
  border-color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(4px);
}

.cta-final .btn--secondary:hover {
  border-color: var(--s2r-white);
  color: var(--s2r-white);
  background: rgba(255, 255, 255, 0.12);
}

.cta-final__visual {
  max-width: 580px;
  margin: 0 auto 2.5rem;
}

.cta-final__visual .s2r-split {
  border-color: rgba(255, 255, 255, 0.15);
  box-shadow: var(--s2r-shadow-lg), 0 0 60px rgba(6, 182, 212, 0.2);
  border-radius: var(--s2r-radius-xl);
}

/* Footer */
.site-footer {
  background: #060a12;
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 2rem;
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--s2r-cyan), var(--s2r-blue), transparent);
  opacity: 0.5;
}

.site-footer h4,
.site-footer h5 {
  color: var(--s2r-white);
  font-size: 0.9375rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.9375rem;
  transition: color 0.2s;
}

.site-footer a:hover {
  color: var(--s2r-cyan);
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li {
  margin-bottom: 0.625rem;
}

.footer-brand p {
  font-size: 0.9375rem;
  max-width: 340px;
  line-height: 1.7;
}

.footer__contact-margin {
  margin-top: 1rem;
}

.footer__subscribe-title {
  margin-top: 1.5rem;
}

.footer__subscribe-desc {
  font-size: 0.875rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  background: rgba(59, 130, 246, 0.15);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-2px);
  color: var(--s2r-white);
}

.footer-social svg {
  width: 1.125rem;
  height: 1.125rem;
  fill: currentColor;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.8125rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
}

.subscribe-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.875rem;
}

.subscribe-form input {
  flex: 1;
  padding: 0.6875rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--s2r-radius);
  background: rgba(255, 255, 255, 0.06);
  color: var(--s2r-white);
  font-family: inherit;
  font-size: 0.875rem;
  transition: border-color 0.2s, background 0.2s;
}

.subscribe-form input:focus {
  outline: none;
  border-color: rgba(59, 130, 246, 0.5);
  background: rgba(255, 255, 255, 0.1);
}

.subscribe-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.subscribe-form .btn--primary {
  flex-shrink: 0;
  padding: 0.6875rem 1.125rem;
  font-size: 0.875rem;
}

/* Stats bar */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: -2rem;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .stats-bar {
    grid-template-columns: repeat(4, 1fr);
    margin-top: -3rem;
  }
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  background: var(--s2r-white);
  border: 1px solid var(--s2r-border);
  border-radius: var(--s2r-radius-xl);
  box-shadow: var(--s2r-shadow-md);
}

.stat-item__value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--s2r-navy);
  letter-spacing: -0.03em;
  background: var(--gradient-brand);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item__label {
  font-size: 0.8125rem;
  color: var(--s2r-text-muted);
  font-weight: 500;
  margin-top: 0.25rem;
}
