/* ─── HERO ───────────────────────────────────────────── */
.hero {
  position: relative;
  display: flex; align-items: center;
  padding: 5rem 2.5rem 4rem;
  overflow: hidden;
  background: var(--bg-hero);
}

/* Background layer divs — added to HTML in Task 4 */
.hero-mesh {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 55% 65% at 78% 20%, rgba(13,181,160,0.16) 0%, transparent 65%),
    radial-gradient(ellipse 45% 55% at 15% 70%, rgba(168,139,255,0.09) 0%, transparent 60%),
    radial-gradient(ellipse 35% 45% at 90% 85%, rgba(13,181,160,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 50% 110%, rgba(13,181,160,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 80% 30% at 50% -10%, rgba(168,139,255,0.05) 0%, transparent 60%);
}
.hero-dots {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,0.022) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 90% at 50% 50%, black 30%, transparent 100%);
}
.hero-noise {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}
.hero-aurora {
  position: absolute; top: 0; left: 0; right: 0;
  height: 2px; z-index: 2; pointer-events: none;
  background: linear-gradient(90deg,
    transparent 0%, rgba(13,181,160,0) 10%,
    rgba(13,181,160,0.6) 35%, rgba(95,222,208,0.9) 50%,
    rgba(13,181,160,0.6) 65%, rgba(13,181,160,0) 90%, transparent 100%);
  filter: blur(1px);
}
.hero-aurora-glow {
  position: absolute; top: 0; left: 0; right: 0;
  height: 120px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(13,181,160,0.06) 0%, transparent 100%);
}

.hero-inner {
  position: relative; z-index: 3;
  max-width: 1240px; margin: 0 auto; width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 5rem; align-items: center;
}
.hero-copy {
  display: flex; flex-direction: column; gap: 1.75rem;
}

/* Eyebrow badge */
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.55rem;
  width: fit-content;
  padding: 0.3rem 0.75rem 0.3rem 0.4rem;
  background: rgba(13,181,160,0.07);
  border: 1px solid rgba(13,181,160,0.18);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px; font-weight: 600;
  color: rgba(13,181,160,0.85);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.hero-badge svg { width: 16px; height: 16px; flex-shrink: 0; }
.hero-badge::before {
  content: '';
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(13,181,160,0.12);
  border: 1px solid rgba(13,181,160,0.25);
  display: flex; align-items: center; justify-content: center;
  background-image: radial-gradient(circle at 50% 50%, var(--teal) 3px, transparent 3px);
  flex-shrink: 0;
}

/* Hero heading */
.hero h1, .hero-copy h1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.8rem, 5.5vw, 62px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: #fff;
}
.hero h1 .accent,
.hero-copy h1 .accent {
  background: linear-gradient(135deg, var(--teal-light) 0%, var(--teal) 50%, var(--teal-dim) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  filter: drop-shadow(0 0 28px rgba(13,181,160,0.35));
}

/* Hero sub */
.hero-copy > p, .hero-sub {
  font-size: 1.05rem; color: var(--text-60);
  line-height: 1.75; max-width: 440px;
}

/* Hero trust (small text below CTAs) */
.hero-trust {
  display: flex; align-items: center; gap: 0.5rem;
  font-size: 0.78rem; color: var(--text-40);
  flex-wrap: wrap;
}
.hero-trust-divider { opacity: 0.3; }

/* Hero CTA row */
.hero-ctas {
  display: flex; gap: 0.85rem; align-items: center; flex-wrap: wrap;
}

/* Hero image / screenshot */
.hero-image-wrap {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
/* Glow pool beneath screenshot — added div in Task 4 */
.screen-glow-pool {
  position: absolute; bottom: -40px; left: 50%;
  transform: translateX(-50%);
  width: 85%; height: 100px;
  background: radial-gradient(ellipse 100% 100% at 50% 50%, rgba(13,181,160,0.25) 0%, transparent 70%);
  filter: blur(30px);
  z-index: 0; pointer-events: none;
}
/* 3D tilt wrapper — added in Task 4 */
.screen-wrap {
  position: relative; z-index: 1;
  transform: perspective(1200px) rotateY(-6deg) rotateX(3deg);
  transform-style: preserve-3d;
  transition: transform 0.5s ease;
}
.screen-wrap:hover {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-8px);
}

/* Screenshot frame (existing .hero-screen) */
.hero-screen {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(13,181,160,0.18);
  box-shadow:
    0 0 0 1px rgba(13,181,160,0.06),
    0 2px 4px rgba(0,0,0,0.2),
    0 8px 24px rgba(0,0,0,0.35),
    0 32px 80px rgba(0,0,0,0.55),
    0 0 80px rgba(13,181,160,0.08);
}
.hero-screen-bar {
  background: rgba(18,26,42,0.97);
  border-bottom: 1px solid rgba(13,181,160,0.1);
  height: 34px; display: flex; align-items: center;
  padding: 0 0.85rem; gap: 0.4rem;
}
.hero-win-left {
  display: flex; align-items: center; gap: 0.4rem; flex: 1;
}
.win-controls { display: flex; gap: 0.4rem; margin-left: auto; }
.win-ctrl {
  width: 10px; height: 10px; border-radius: 50%;
  background: #F59E0B; opacity: 0.85;
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent; overflow: hidden;
}
.win-ctrl:first-child { background: #C42B1C; }
.win-ctrl:last-child,
.win-close { background: var(--teal); box-shadow: 0 0 6px rgba(13,181,160,0.6); opacity: 1; }
.hero-win-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--text-30);
  letter-spacing: 0.04em;
}
.hero-screen img { display: block; width: 100%; }
.hero-screen-body {
  min-height: 260px;
  background: linear-gradient(135deg, rgba(13,181,160,0.04) 0%, rgba(8,15,28,0.8) 100%);
}

/* BC watermark: hide it — removed from HTML in Task 4 */
.bc-watermark { display: none; }

/* HUD floating cards — added in Task 4 */
.hud {
  position: absolute;
  background: rgba(7,12,24,0.92);
  border: 1px solid rgba(13,181,160,0.22);
  border-radius: 10px; padding: 0.6rem 0.85rem;
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), 0 0 0 1px rgba(13,181,160,0.08);
  display: flex; align-items: center; gap: 0.55rem; min-width: 130px;
}
.hud-top { top: -18px; left: -28px; }
.hud-bot { bottom: -18px; right: -28px; }
.hud-icon {
  width: 28px; height: 28px; border-radius: 7px;
  background: rgba(13,181,160,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hud-icon svg { width: 13px; height: 13px; stroke: var(--teal); fill: none; stroke-width: 2; }
.hud-val {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700; color: #fff; line-height: 1;
}
.hud-lbl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.48rem; color: var(--text-40);
  letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px;
}

/* ─── TRUST STRIP ────────────────────────────────────── */
.trust-strip {
  background: var(--bg-mid);
  border-top: 1px solid rgba(13,181,160,0.08);
  border-bottom: 1px solid rgba(13,181,160,0.08);
  padding: 1.75rem 2.5rem;
}
.trust-strip-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 3.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.6rem; }
.trust-icon {
  width: 30px; height: 30px; border-radius: 7px;
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.12);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg { width: 14px; height: 14px; stroke: var(--teal); fill: none; stroke-width: 2; }
.trust-text {
  font-size: 0.78rem; font-weight: 600;
  color: var(--text-40); letter-spacing: 0.03em;
}

/* ─── FEATURES SECTION ───────────────────────────────── */
.features-section {
  padding: 6rem 0;
  background: var(--bg-alt);
  position: relative; overflow: hidden;
}
.features-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(168,139,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 100% 50%, rgba(13,181,160,0.05) 0%, transparent 60%);
}

/* Mosaic grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.08);
  border-radius: 20px;
  overflow: hidden;
}
.feature-card {
  background: var(--bg-alt);
  padding: 2rem; cursor: default;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  transition: background 0.25s, opacity 0.6s ease, transform 0.6s ease;
}
.feature-card.visible { opacity: 1; transform: translateY(0); }
.feature-card:hover { background: rgba(255,255,255,0.025); }
/* First card gets teal top-edge accent */
.feature-card:first-child::before {
  content: '';
  position: absolute; top: 0; left: 2rem; right: 2rem; height: 2px;
  background: linear-gradient(90deg, transparent, var(--teal), transparent);
}
.feature-card:hover .feature-icon {
  background: rgba(13,181,160,0.18);
  box-shadow: 0 0 20px rgba(13,181,160,0.12);
}
.feature-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
  transition: all 0.25s;
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.feature-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem; font-weight: 700;
  color: #fff; margin-bottom: 0.5rem;
}
.feature-card p {
  font-size: 0.85rem; color: var(--text-40); line-height: 1.65;
}

/* ─── FEATURE ROWS (alternating deep-dives) ──────────── */
.feature-row-section {
  padding: 6rem 0;
  background: var(--bg-hero);
}
.feature-row-section:nth-of-type(even) { background: var(--bg-mid); }
.feature-row {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem; align-items: center;
}
.feature-row.reverse .feature-row-text { order: 2; }
.feature-row.reverse .feature-row-image { order: 1; }
.feature-row-text .section-label { margin-bottom: 0.5rem; }
.feature-row-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; line-height: 1.2;
  margin-bottom: 0.85rem;
}
.feature-row-text p {
  font-size: 0.9rem; color: var(--text-50); line-height: 1.8;
  margin-bottom: 1.25rem;
}
/* Bullet list inside feature rows */
.feature-row-text ul {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.feature-row-text ul li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.875rem; color: var(--text-60); line-height: 1.55;
}
.feature-row-text ul li::before {
  content: '';
  width: 16px; height: 16px; border-radius: 50%;
  background: rgba(13,181,160,0.1);
  border: 1px solid rgba(13,181,160,0.25);
  flex-shrink: 0; margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%230DB5A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

/* Screenshot frames inside feature rows */
.feature-row-image { position: relative; }

/* Window chrome — HTML uses these class names */
.screenshot-bar {
  background: rgba(15,24,40,0.97);
  border-bottom: 1px solid rgba(13,181,160,0.08);
  height: 32px; display: flex; align-items: center;
  padding: 0 0.75rem; gap: 0.5rem;
  border-radius: 14px 14px 0 0;
}
.screenshot-bc-icon { flex-shrink: 0; }
.screenshot-url-bar {
  flex: 1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 0.15rem 0.5rem;
  font-size: 10px; color: var(--text-40);
  font-family: 'Segoe UI', system-ui, sans-serif;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  user-select: none;
}
.screenshot-win-controls { display: flex; align-items: center; gap: 0; flex-shrink: 0; }
.screenshot-win-ctrl {
  width: 28px; height: 22px; border-radius: 3px;
  display: inline-flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45); cursor: default;
  transition: background 0.12s, color 0.12s;
}
.screenshot-win-ctrl:hover { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.85); }
.screenshot-win-ctrl.win-close:hover { background: #C42B1C; color: #fff; }
.screenshot-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600;
  color: var(--text-30); letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; padding: 0.45rem;
  background: rgba(15,24,40,0.97);
  border-top: 1px solid rgba(13,181,160,0.08);
}
.screenshot-badge {
  position: absolute; bottom: -12px; right: -12px;
  background: rgba(7,12,24,0.95);
  border: 1px solid rgba(13,181,160,0.22);
  border-radius: 100px;
  padding: 0.28rem 0.7rem;
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.72rem; font-weight: 600; color: var(--text-60);
  box-shadow: 0 4px 16px rgba(0,0,0,0.4);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 6px rgba(13,181,160,0.8);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

.screenshot-frame {
  border-radius: 14px; overflow: hidden;
  border: 1px solid rgba(13,181,160,0.15);
  box-shadow:
    0 0 0 1px rgba(13,181,160,0.05),
    0 4px 16px rgba(0,0,0,0.3),
    0 16px 56px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.4s ease;
}
.screenshot-frame.visible {
  opacity: 1; transform: translateY(0);
}
.screenshot-frame.visible:hover {
  transform: translateY(-6px);
  box-shadow:
    0 0 0 1px rgba(13,181,160,0.08),
    0 8px 24px rgba(0,0,0,0.35),
    0 32px 80px rgba(0,0,0,0.6);
}
.screenshot-frame-bar {
  background: rgba(15,24,40,0.97);
  border-bottom: 1px solid rgba(13,181,160,0.08);
  height: 32px; display: flex; align-items: center; padding: 0 0.75rem; gap: 0.35rem;
}
.screenshot-frame-bar .dot {
  width: 9px; height: 9px; border-radius: 50%;
}
.dot-r { background: #C42B1C; opacity: 0.8; }
.dot-y { background: #F59E0B; opacity: 0.8; }
.dot-g { background: var(--teal); box-shadow: 0 0 5px rgba(13,181,160,0.5); }
.screenshot-frame img { display: block; width: 100%; }

/* Hotspot system — preserve existing class names, restyle */
.hotspot { position: absolute; }
.hotspot-dot {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  border: 2.5px solid rgba(255,255,255,0.9);
  box-shadow: 0 0 12px rgba(13,181,160,0.7), 0 0 24px rgba(13,181,160,0.4);
  cursor: pointer; position: relative;
  transition: transform 0.2s;
}
.hotspot-dot:hover { transform: scale(1.2); }
.hotspot-dot::after {
  content: '';
  position: absolute; inset: -4px;
  border-radius: 50%;
  border: 1.5px solid rgba(13,181,160,0.3);
  animation: hotspotRing 2.2s ease-out infinite;
}
@keyframes hotspotRing {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2.2); opacity: 0; }
}
.hotspot-card {
  position: absolute; bottom: calc(100% + 14px);
  transform: translateX(-60%);
  background: rgba(7,12,24,0.96);
  border: 1px solid rgba(13,181,160,0.25);
  border-radius: 12px; padding: 1rem 1.1rem;
  width: 268px; z-index: 10;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.18s ease;
}
.hotspot:hover .hotspot-card,
.hotspot.is-open .hotspot-card { opacity: 1; pointer-events: all; }
.hotspot-card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 0.5rem;
}
.hotspot-card-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem; font-weight: 700; color: #fff;
}
.hotspot-card-close {
  background: transparent; border: none;
  color: var(--text-40); cursor: pointer; font-size: 1.1rem;
  line-height: 1; padding: 0 0.2rem;
  transition: color 0.2s;
}
.hotspot-card-close:hover { color: var(--teal); }
.hotspot-card-body { font-size: 0.78rem; color: var(--text-50); line-height: 1.65; }

/* STF step viewer — preserve class names, restyle */
.stf-viewer {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
}
.stf-step-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 7px;
  background: rgba(13,181,160,0.12);
  border: 1px solid rgba(13,181,160,0.25);
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 600; color: var(--teal);
}
.stf-img-wrap { position: relative; overflow: hidden; display: grid; }
.stf-panel {
  grid-column: 1; grid-row: 1;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.stf-panel.active { opacity: 1; pointer-events: all; }
.stf-panel img { width: 100%; display: block; }
.stf-carousel {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; padding: 1rem;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--border);
}
.stf-arrow {
  width: 32px; height: 32px; border-radius: 8px;
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.2);
  color: var(--teal); cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s; font-size: 1rem;
}
.stf-arrow:hover:not(:disabled) { background: rgba(13,181,160,0.18); }
.stf-arrow:disabled { opacity: 0.3; cursor: not-allowed; }
.stf-dots { display: flex; gap: 0.5rem; }
.stf-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none; cursor: pointer; padding: 0;
  transition: all 0.2s;
}
.stf-dot.active {
  background: var(--teal);
  box-shadow: 0 0 6px rgba(13,181,160,0.6);
  width: 20px; border-radius: 4px;
}

/* ─── VIDEO SECTION ──────────────────────────────────── */
.video-section {
  padding: 6rem 0;
  background: var(--bg-mid);
  position: relative; overflow: hidden;
}
.video-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 60% at 50% 0%, rgba(13,181,160,0.06) 0%, transparent 65%);
}
.video-section .section-subtitle { color: rgba(255,255,255,0.5); }
.video-wrap {
  border-radius: 12px; overflow: hidden;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.4),
    0 0 0 1px rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s;
}
.video-wrap.visible { opacity: 1; transform: translateY(0); }
.video-wrap.visible:hover {
  box-shadow:
    0 48px 100px rgba(0,0,0,0.55),
    0 0 0 1px rgba(255,255,255,0.12);
}
.video-browser-bar {
  background: rgba(15,24,40,0.97);
  border-bottom: 1px solid rgba(13,181,160,0.08);
  height: 34px; display: flex; align-items: center;
  padding: 0 0.85rem; gap: 0.4rem;
}
.video-win-left { display: flex; align-items: center; gap: 0.4rem; flex: 1; }
.video-browser-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; color: var(--text-30); letter-spacing: 0.04em;
}
.video-win-ctrl {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.15);
  display: inline-flex; align-items: center; justify-content: center;
  color: transparent; overflow: hidden;
}
.video-win-ctrl:nth-child(1) { background: #C42B1C; opacity: 0.8; }
.video-win-ctrl:nth-child(2) { background: #F59E0B; opacity: 0.8; }
.video-win-ctrl:nth-child(3) { background: var(--teal); box-shadow: 0 0 5px rgba(13,181,160,0.5); opacity: 1; }
.video-wrap iframe, .video-wrap video {
  display: block; width: 100%;
  aspect-ratio: 16/9; border: none;
}

/* ─── PRICING ────────────────────────────────────────── */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-mid);
  position: relative; overflow: hidden;
}
.pricing-section::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(13,181,160,0.07) 0%, transparent 65%);
}
.pricing-grid {
  max-width: 820px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem;
}
.pricing-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(13,181,160,0.1);
  border-radius: 20px; padding: 2.25rem;
  position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-sandbox { }
.pricing-production {
  background: rgba(13,181,160,0.05);
  border-color: rgba(13,181,160,0.28);
  box-shadow: 0 0 60px rgba(13,181,160,0.08);
}
.pricing-production::before {
  content: '';
  position: absolute; top: 0; left: 1.5rem; right: 1.5rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(13,181,160,0.6), transparent);
}
.pricing-icon {
  width: 44px; height: 44px; border-radius: 11px;
  background: rgba(13,181,160,0.08);
  border: 1px solid rgba(13,181,160,0.15);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.1rem;
}
.pricing-icon svg { width: 20px; height: 20px; stroke: var(--teal); fill: none; stroke-width: 1.8; }
.pricing-tier {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: var(--text-40); letter-spacing: 0.2em;
  text-transform: uppercase; margin-bottom: 0.75rem;
}
.pricing-price {
  font-family: 'Poppins', sans-serif;
  font-size: 2.8rem; font-weight: 800;
  color: #fff; letter-spacing: -0.03em;
  line-height: 1; margin-bottom: 0.35rem;
}
.pricing-divider {
  border: none; height: 1px;
  background: rgba(13,181,160,0.1);
  margin: 1.25rem 0;
}
.pricing-bullets {
  list-style: none; display: flex; flex-direction: column;
  gap: 0.65rem; margin-bottom: 2rem; flex: 1;
}
.pricing-bullets li {
  display: flex; align-items: flex-start; gap: 0.6rem;
  font-size: 0.82rem; color: var(--text-60);
}
.pricing-bullets li svg { display: none; }
.pricing-bullets li::before {
  content: '';
  width: 14px; height: 14px; border-radius: 50%; flex-shrink: 0; margin-top: 2px;
  background: rgba(13,181,160,0.1);
  border: 1px solid rgba(13,181,160,0.25);
  background-image: url("data:image/svg+xml,%3Csvg width='8' height='6' viewBox='0 0 8 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 3l2 2 4-4' stroke='%230DB5A0' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
}
.btn-pricing {
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  width: 100%; padding: 0.85rem;
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s; letter-spacing: 0.01em;
}
.pricing-sandbox .btn-pricing {
  background: transparent;
  border: 1px solid rgba(13,181,160,0.35);
  color: var(--teal);
}
.pricing-sandbox .btn-pricing:hover {
  background: rgba(13,181,160,0.08);
  border-color: rgba(13,181,160,0.6);
  box-shadow: 0 0 20px rgba(13,181,160,0.1);
}
.pricing-production .btn-pricing {
  background: linear-gradient(135deg, rgba(13,181,160,0.22), rgba(13,181,160,0.08));
  border: 1px solid rgba(13,181,160,0.5);
  color: #fff;
  box-shadow: 0 0 24px rgba(13,181,160,0.12);
}
.pricing-production .btn-pricing:hover {
  background: linear-gradient(135deg, rgba(13,181,160,0.32), rgba(13,181,160,0.14));
  border-color: rgba(13,181,160,0.7);
  box-shadow: 0 0 36px rgba(13,181,160,0.2), 0 4px 16px rgba(0,0,0,0.3);
  transform: translateY(-2px);
}
.btn-pricing svg, .btn-pricing img { width: 18px; height: 18px; flex-shrink: 0; }

/* ─── CTA BANNER ─────────────────────────────────────── */
.cta-banner {
  padding: 5rem 2.5rem;
  background: var(--bg-mid);
  position: relative; overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(13,181,160,0.07) 0%, transparent 70%);
}
.cta-banner h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800; color: #fff;
  letter-spacing: -0.02em; margin-bottom: 0.75rem;
  position: relative; z-index: 1;
}
.cta-banner p {
  font-size: 1rem; color: var(--text-60);
  line-height: 1.7; max-width: 500px;
  margin: 0 auto 2rem; position: relative; z-index: 1;
}
.cta-banner-btns {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; position: relative; z-index: 1;
}

/* CTA banner button variants (dark theme versions of btn-white / btn-outline-white) */
.btn-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  background: linear-gradient(135deg, rgba(13,181,160,0.22), rgba(13,181,160,0.08));
  border: 1px solid rgba(13,181,160,0.5);
  border-radius: 10px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 700;
  text-decoration: none; cursor: pointer;
  box-shadow: 0 0 24px rgba(13,181,160,0.12), inset 0 1px 0 rgba(255,255,255,0.07);
  transition: all 0.25s;
}
.btn-white:hover {
  background: linear-gradient(135deg, rgba(13,181,160,0.32), rgba(13,181,160,0.14));
  border-color: rgba(13,181,160,0.75);
  box-shadow: 0 0 40px rgba(13,181,160,0.22), 0 4px 20px rgba(0,0,0,0.3);
  transform: translateY(-2px);
  color: #fff;
}
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.65);
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem; font-weight: 600;
  text-decoration: none; cursor: pointer;
  transition: all 0.25s;
}
.btn-outline-white:hover {
  border-color: rgba(255,255,255,0.3);
  color: #fff; transform: translateY(-2px);
}

/* ─── ROADMAP ─────────────────────────────────────────── */
.roadmap-main {
  padding: 6rem 0;
  background: var(--bg-alt);
}
.roadmap-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.roadmap-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(13,181,160,0.08);
  border-radius: 14px; padding: 1.1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease, border-color 0.25s, box-shadow 0.25s;
}
.roadmap-card.visible { opacity: 1; transform: translateY(0); }
.roadmap-card-released {
  position: relative;
  overflow: hidden;
}
.roadmap-card-released::after {
  content: 'RELEASED';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-30deg);
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: #e05578;
  opacity: 0.55;
  border: 2px solid #e05578;
  padding: 5px 14px;
  border-radius: 4px;
  pointer-events: none;
  white-space: nowrap;
  box-shadow: 0 0 12px rgba(224,85,120,0.15);
}
.roadmap-card:hover {
  border-color: rgba(13,181,160,0.25);
  box-shadow: 0 0 20px rgba(13,181,160,0.06);
}
.roadmap-card-head {
  display: flex; align-items: center; gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.roadmap-card-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--teal); flex-shrink: 0;
  box-shadow: 0 0 5px rgba(13,181,160,0.6);
}
.roadmap-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem; font-weight: 700; color: rgba(255,255,255,0.8);
}
.roadmap-card p {
  font-size: 0.78rem; color: var(--text-40); line-height: 1.6;
  margin-bottom: 0.65rem;
}
.roadmap-card-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--teal-dim);
  background: rgba(13,181,160,0.08);
  border-radius: 100px; padding: 0.15rem 0.55rem;
}
.roadmap-note-text {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-30);
  margin-top: 1.75rem;
  letter-spacing: 0.02em;
}

/* ─── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-image-wrap { display: none; }
  .feature-row,
  .feature-row.reverse { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse .feature-row-text,
  .feature-row.reverse .feature-row-image { order: unset; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 640px) {
  .hero { padding: 7rem 1.5rem 4rem; }
  .features-grid { grid-template-columns: 1fr; }
  .features-section,
  .feature-row-section,
  .video-section,
  .pricing-section,
  .roadmap-main { padding: 4rem 0; }
  .trust-strip-inner { gap: 1.5rem; }
}

/* ─── RELEASE NOTES PAGE ─────────────────────────────── */
.page-header {
  padding: 6rem 2.5rem 3rem;
  background: var(--bg-hero);
  border-bottom: 1px solid rgba(13,181,160,0.08);
}
.page-header-inner {
  max-width: 1240px; margin: 0 auto;
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.page-header-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.25rem 0.7rem; margin-bottom: 1rem;
  background: rgba(13,181,160,0.07);
  border: 1px solid rgba(13,181,160,0.18);
  border-radius: 100px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px; font-weight: 600;
  color: rgba(13,181,160,0.85);
  letter-spacing: 0.18em; text-transform: uppercase;
}
.page-header-badge svg { width: 12px; height: 12px; flex-shrink: 0; }
.page-header h1 {
  font-family: 'Poppins', sans-serif;
  font-weight: 800; font-size: 2.4rem;
  color: #fff; letter-spacing: -0.025em; margin-bottom: 0.5rem;
}
.page-header p { font-family: 'Inter', sans-serif; font-size: 0.95rem; color: var(--text-60); }
.page-header-meta a {
  display: flex; align-items: center; gap: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; color: var(--text-50);
  text-decoration: none; transition: color 0.2s;
}
.page-header-meta a:hover { color: var(--teal); }
.page-header-meta svg { width: 14px; height: 14px; flex-shrink: 0; }
.content-wrap {
  max-width: 1240px; margin: 0 auto;
  display: flex; gap: 3rem; align-items: flex-start;
  padding: 3rem 2.5rem 6rem;
}
.sidebar { width: 200px; flex-shrink: 0; position: sticky; top: 84px; }
.sidebar h3 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px; font-weight: 600;
  color: var(--text-30); letter-spacing: 0.18em;
  text-transform: uppercase; margin-bottom: 0.85rem;
}
.sidebar-nav { list-style: none; }
.sidebar-nav a {
  display: flex; align-items: center; gap: 0.5rem;
  padding: 0.4rem 0.75rem; border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem; color: var(--text-50);
  text-decoration: none; transition: all 0.2s;
}
.sidebar-nav a:hover { color: var(--text-70); background: rgba(255,255,255,0.04); }
.sidebar-nav a.active { color: var(--teal); }
.sidebar-version-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--teal); box-shadow: 0 0 5px rgba(13,181,160,0.8);
}
.releases { flex: 1; display: flex; flex-direction: column; gap: 2.5rem; }
.release-card {
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(13,181,160,0.1);
  border-radius: 16px; overflow: hidden;
}
.release-card-header {
  display: flex; align-items: center; gap: 0.75rem; flex-wrap: wrap;
  padding: 1.25rem 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  background: rgba(0,0,0,0.15);
}
.release-version {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1rem; font-weight: 600; color: var(--teal);
}
.release-date {
  display: flex; align-items: center; gap: 0.4rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem; color: var(--text-40); margin-left: auto;
}
.release-date svg { width: 12px; height: 12px; flex-shrink: 0; }
.release-tag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 0.2rem 0.55rem; border-radius: 100px;
}
.tag-major { background: rgba(13,181,160,0.12); color: var(--teal); border: 1px solid rgba(13,181,160,0.25); }
.tag-minor { background: rgba(255,255,255,0.05); color: var(--text-50); border: 1px solid rgba(255,255,255,0.1); }
.tag-patch { background: rgba(255,255,255,0.03); color: var(--text-40); border: 1px solid rgba(255,255,255,0.07); }
.release-card-body { padding: 1.5rem 1.75rem; display: flex; flex-direction: column; gap: 1.75rem; }
.release-section-header {
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.release-section-icon {
  width: 28px; height: 28px; border-radius: 7px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.release-section-icon svg { width: 13px; height: 13px; flex-shrink: 0; }
.icon-features { background: rgba(13,181,160,0.1); border: 1px solid rgba(13,181,160,0.2); }
.icon-features svg { color: var(--teal); }
.icon-fixes { background: rgba(245,158,11,0.08); border: 1px solid rgba(245,158,11,0.2); }
.icon-fixes svg { color: rgba(245,158,11,0.8); }
.release-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700; font-size: 0.9rem; color: #fff;
}
.release-section-count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--text-40); padding: 0.15rem 0.5rem; border-radius: 100px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08);
}
.change-list { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.change-item {
  display: flex; align-items: flex-start; gap: 0.65rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.85rem; line-height: 1.65; color: var(--text-60);
}
.change-badge {
  font-family: 'JetBrains Mono', monospace;
  font-size: 8px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.2rem 0.45rem; border-radius: 4px;
  flex-shrink: 0; margin-top: 0.25rem;
}
.badge-feat { background: rgba(13,181,160,0.15); color: var(--teal); border: 1px solid rgba(13,181,160,0.3); }
.badge-fix { background: rgba(245,158,11,0.1); color: rgba(245,158,11,0.9); border: 1px solid rgba(245,158,11,0.25); }
.badge-impr { background: rgba(168,139,255,0.1); color: rgba(168,139,255,0.9); border: 1px solid rgba(168,139,255,0.25); }
.change-text code {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.78rem; color: var(--teal-light);
  background: rgba(0,0,0,0.25); border-radius: 3px; padding: 0.1rem 0.3rem;
}
@media (max-width: 768px) {
  .content-wrap { flex-direction: column; padding: 2rem 1.25rem 4rem; }
  .sidebar { width: 100%; position: static; }
  .page-header-inner { flex-direction: column; }
  .page-header { padding: 4rem 1.25rem 2rem; }
}

/* ─── REDUCED MOTION ─────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .feature-card, .screenshot-frame, .pricing-card,
  .video-wrap, .roadmap-card {
    transition: none; opacity: 1; transform: none;
  }
  .hotspot-dot::after { animation: none; }
  .screen-wrap { transition: none; }
}
