/* ============================================================
   VIBE CODER SUPPLY CO. — Main Stylesheet
   Stop Thinking. Start Approving.
   ============================================================ */

/* ── Reset & Base ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Blue — brighter on dark backgrounds */
  --blue:        #3D80FF;
  --blue-light:  #6B9EFF;
  --blue-glow:   #4D9AFF;
  --blue-pale:   #0C1830;
  --blue-dark:   #2660DD;

  /* Dark surfaces */
  --white:       #08090E;   /* main bg */
  --gray-50:     #0D0F18;   /* alternate section bg */
  --gray-100:    #141720;   /* card / border */
  --gray-200:    #1E2235;   /* stronger border */
  --gray-300:    #3A4060;   /* muted elements */
  --gray-500:    #7A84A0;   /* secondary text */
  --gray-700:    #C0C8DC;   /* body text */
  --black:       #EDF0FA;   /* headlines */

  --warranty-bg: #0D0F1A;

  --font:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;
  --radius-xl:   28px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,0.4), 0 1px 2px rgba(0,0,0,0.3);
  --shadow:      0 4px 16px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-lg:   0 16px 48px rgba(0,0,0,0.6), 0 4px 16px rgba(0,0,0,0.5);
  --shadow-blue: 0 0 32px rgba(61,128,255,0.35), 0 0 8px rgba(61,128,255,0.2);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--gray-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Layout ───────────────────────────────────────────────── */
.vcsc-container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ───────────────────────────────────────────── */
.vcsc-section-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.vcsc-section-eyebrow--light { color: var(--blue-light); }
.vcsc-section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 16px;
}
.vcsc-section-sub {
  font-size: 17px;
  color: var(--gray-500);
  max-width: 560px;
  line-height: 1.6;
}
.vcsc-section-header {
  text-align: center;
  margin-bottom: 56px;
}
.vcsc-section-header .vcsc-section-sub {
  margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────────────── */
.vcsc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius);
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  transition: all 0.18s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.vcsc-btn--primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(0,87,255,0.30);
}
.vcsc-btn--primary:hover {
  background: var(--blue-dark);
  box-shadow: 0 4px 20px rgba(0,87,255,0.40);
  transform: translateY(-1px);
}
.vcsc-btn--ghost {
  background: transparent;
  color: var(--blue);
  border: 1.5px solid var(--blue);
}
.vcsc-btn--ghost:hover {
  background: var(--blue-pale);
  transform: translateY(-1px);
}
.vcsc-btn--full { width: 100%; justify-content: center; }
.vcsc-btn--waitlist { flex-shrink: 0; }
.vcsc-btn-arrow { font-size: 18px; }

/* ── Logo Mark ────────────────────────────────────────────── */
.vcsc-logo-mark {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: var(--blue);
  color: var(--white);
  font-size: 10px;
  line-height: 22px;
  text-align: center;
  border-radius: 4px;
}
.vcsc-logo-mark--sm {
  width: 18px;
  height: 18px;
  font-size: 8px;
  line-height: 18px;
  border-radius: 3px;
}

/* ── Header ───────────────────────────────────────────────── */
.vcsc-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(8,9,14,0.90);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--gray-100);
}
.vcsc-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.vcsc-header__logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--black);
}
.vcsc-logo-text { color: var(--black); }
.vcsc-logo-text { font-size: 13px; font-weight: 700; }
.vcsc-header__nav {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vcsc-nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-500);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.15s;
}
.vcsc-nav-link:hover { color: var(--blue-light); background: var(--blue-pale); }
.vcsc-nav-link--cta {
  background: var(--blue);
  color: var(--white);
  padding: 8px 18px;
  box-shadow: 0 2px 6px rgba(0,87,255,0.25);
}
.vcsc-nav-link--cta:hover {
  background: var(--blue-dark);
  color: var(--white);
}
.vcsc-header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.vcsc-header__hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-500);
  border-radius: 2px;
  transition: all 0.2s;
}
.vcsc-mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--gray-100);
  padding: 8px 0;
  background: var(--white);
}
.vcsc-mobile-nav a {
  display: block;
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-100);
}
.vcsc-mobile-nav a:hover { color: var(--blue-light); background: var(--blue-pale); }
.vcsc-mobile-nav.is-open { display: flex; }

/* ── Hero ─────────────────────────────────────────────────── */
.vcsc-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 100px 0 80px;
  overflow: hidden;
  background: var(--white);
}
.vcsc-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61,128,255,0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61,128,255,0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 1;
  mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 60% 50%, black 30%, transparent 80%);
}
.vcsc-hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
  min-height: calc(100vh - 180px);
}
.vcsc-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-pale);
  border: 1px solid rgba(0,87,255,0.2);
  color: var(--blue);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  letter-spacing: 0.01em;
}
.vcsc-badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.85); }
}

.vcsc-hero__headline {
  font-size: clamp(40px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 6px;
  text-shadow: 0 0 60px rgba(61,128,255,0.15);
}
.vcsc-hero__disclaimer {
  font-size: 13px;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 20px;
  padding-left: 2px;
}
.vcsc-hero__subheadline {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 36px;
}
.vcsc-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.vcsc-hero__trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.vcsc-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
}
.vcsc-trust-item svg { color: var(--blue); flex-shrink: 0; }

/* Hero visual */
.vcsc-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcsc-hero__img-wrap {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.vcsc-hero__img {
  width: 100%;
  border-radius: var(--radius-xl);
  display: block;
}
.vcsc-hero__glow {
  position: absolute;
  inset: -20%;
  background: radial-gradient(ellipse at center, rgba(77,154,255,0.25) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: scale(1); }
  50%       { opacity: 1;   transform: scale(1.05); }
}

/* Animated button press demo */
.vcsc-demo-button {
  position: absolute;
  bottom: -24px;
  right: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.vcsc-demo-button__key--approved {
  background: var(--gray-100);
  border: 1.5px solid var(--gray-200);
  border-radius: 14px;
  padding: 14px 22px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--blue-light);
  box-shadow: 0 6px 20px rgba(0,0,0,0.5), 0 0 0 0 rgba(77,154,255,0);
  animation: buttonPress 3.5s ease-in-out infinite;
  cursor: pointer;
  user-select: none;
}
@keyframes buttonPress {
  0%, 60%, 100% {
    transform: translateY(0);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 0 0 0 rgba(77,154,255,0);
  }
  70% {
    transform: translateY(3px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.10), 0 0 24px rgba(77,154,255,0.6);
  }
  80% {
    transform: translateY(0px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 0 40px rgba(77,154,255,0.4);
  }
  90% {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12), 0 0 16px rgba(77,154,255,0.2);
  }
}

.vcsc-demo-button__hint {
  position: absolute;
  bottom: -22px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--gray-500);
  white-space: nowrap;
}

/* Audio wave visualizer */
.vcsc-audio-wave {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-left: 10px;
  height: 28px;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.vcsc-audio-wave.is-playing {
  opacity: 1;
}
.vcsc-audio-wave span {
  display: block;
  width: 3px;
  border-radius: 3px;
  background: var(--blue-light);
  height: 4px;
  animation: none;
}
.vcsc-audio-wave.is-playing span {
  animation: waveBar 0.6s ease-in-out infinite alternate;
}
.vcsc-audio-wave.is-playing span:nth-child(1) { animation-delay: 0s;    animation-duration: 0.5s; }
.vcsc-audio-wave.is-playing span:nth-child(2) { animation-delay: 0.1s;  animation-duration: 0.7s; }
.vcsc-audio-wave.is-playing span:nth-child(3) { animation-delay: 0.05s; animation-duration: 0.4s; }
.vcsc-audio-wave.is-playing span:nth-child(4) { animation-delay: 0.15s; animation-duration: 0.6s; }
.vcsc-audio-wave.is-playing span:nth-child(5) { animation-delay: 0.08s; animation-duration: 0.5s; }
@keyframes waveBar {
  from { height: 4px; opacity: 0.5; }
  to   { height: 22px; opacity: 1; }
}

/* Hero scroll indicator */
.vcsc-hero__scroll {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  font-size: 12px;
  color: var(--gray-300);
  letter-spacing: 0.03em;
}
.vcsc-scroll-arrow {
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(5px); }
}

/* ── Product Section ──────────────────────────────────────── */
.vcsc-product {
  padding: 120px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}
.vcsc-product__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.vcsc-product__images { display: flex; flex-direction: column; gap: 20px; }
.vcsc-product__img-main .vcsc-product__photo {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
}
.vcsc-product__img-secondary { position: relative; }
.vcsc-product__photo--diagram {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  width: 100%;
  background: #F4F4F4;
  border: 1px solid var(--gray-200);
}
.vcsc-product__diagram-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-300);
  text-align: center;
  margin-top: 8px;
}

/* Product details */
.vcsc-product__meta-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.vcsc-product__category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
}
.vcsc-product__stars {
  font-size: 14px;
  color: #F5A623;
  display: flex;
  align-items: center;
  gap: 6px;
}
.vcsc-product__review-count { font-size: 12px; color: var(--gray-500); }
.vcsc-product__name {
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--black);
}
.vcsc-product__pricing {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.vcsc-product__price {
  font-size: 32px;
  font-weight: 800;
  color: var(--blue-light);
  letter-spacing: -0.02em;
}
.vcsc-product__price-note {
  font-size: 13px;
  color: var(--gray-500);
  line-height: 1.5;
  max-width: 240px;
}
.vcsc-product__description {
  font-size: 17px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
  line-height: 1.5;
  opacity: 0.9;
}
.vcsc-product__description--sub {
  font-weight: 400;
  font-size: 15px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.vcsc-product__ships-note {
  text-align: center;
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 12px;
}

/* Specs */
.vcsc-specs {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 24px;
}
.vcsc-specs__header {
  background: var(--black);
  padding: 14px 20px;
}
.vcsc-specs__title-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vcsc-specs__badge {
  background: var(--blue);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 3px 8px;
  border-radius: 3px;
}
.vcsc-specs__title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}
.vcsc-specs__list {
  list-style: none;
  background: var(--gray-100);
}
.vcsc-specs__item {
  display: flex;
  gap: 12px;
  padding: 14px 20px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--gray-700);
  border-bottom: 1px solid var(--gray-200);
}
.vcsc-specs__item:last-child { border-bottom: none; }
.vcsc-specs__icon {
  color: var(--blue);
  flex-shrink: 0;
  font-size: 12px;
  margin-top: 2px;
}

/* BOM table */
.vcsc-bom {
  margin-bottom: 28px;
}
.vcsc-bom__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
}
.vcsc-bom__table thead tr {
  background: var(--gray-200);
}
.vcsc-bom__table th {
  padding: 10px 14px;
  text-align: left;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gray-500);
  border-bottom: 1px solid var(--gray-200);
}
.vcsc-bom__table td {
  padding: 10px 14px;
  border-bottom: 1px solid var(--gray-200);
  color: var(--gray-700);
  background: var(--gray-100);
}
.vcsc-bom__table tbody tr:last-child td { border-bottom: none; }
.vcsc-bom__table tbody tr:hover td { background: var(--gray-200); }
.vcsc-bom__note {
  font-size: 11px;
  color: var(--gray-300);
  margin-top: 8px;
  font-style: italic;
}

/* ── Press Logos ──────────────────────────────────────────── */
.vcsc-press {
  padding: 48px 0;
  border-top: 1px solid var(--gray-100);
  border-bottom: 1px solid var(--gray-100);
  background: var(--white);
  background-image: linear-gradient(rgba(61,128,255,0.03) 0%, transparent 100%);
}
.vcsc-press__eyebrow {
  text-align: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-300);
  margin-bottom: 28px;
}
.vcsc-press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.vcsc-press__logo-item {
  padding: 9px 18px;
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  background: var(--gray-100);
  transition: all 0.15s;
}
.vcsc-press__logo-item:hover {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.vcsc-press__logo-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-300);
  white-space: nowrap;
  letter-spacing: -0.01em;
}
.vcsc-press__qualifier {
  font-size: 11px;
  font-weight: 500;
  color: var(--gray-200);
}

/* ── Reviews ──────────────────────────────────────────────── */
.vcsc-reviews {
  padding: 120px 0;
  background: var(--gray-50);
  overflow: hidden;
}
.vcsc-reviews__track-wrap {
  overflow-x: auto;
  overflow-y: visible;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 8px;
  margin: 0 -24px;
  padding-left: 24px;
}
.vcsc-reviews__track-wrap::-webkit-scrollbar { display: none; }
.vcsc-reviews__track {
  display: flex;
  gap: 20px;
  width: max-content;
  padding-right: 24px;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.vcsc-review-card {
  width: 320px;
  flex-shrink: 0;
  background: var(--gray-100);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s;
}
.vcsc-review-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.vcsc-review-card__stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.vcsc-review-card__quote {
  font-size: 15px;
  line-height: 1.65;
  color: var(--gray-700);
  margin-bottom: 20px;
  font-style: normal;
  quotes: none;
}
.vcsc-review-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vcsc-review-card__avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.vcsc-review-card__meta strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-700);
  margin-bottom: 2px;
}
.vcsc-review-card__meta span {
  font-size: 12px;
  color: var(--gray-500);
}
.vcsc-reviews__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.vcsc-reviews__btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--gray-200);
  background: var(--gray-100);
  color: var(--gray-700);
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.vcsc-reviews__btn:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: var(--blue-pale);
}
.vcsc-reviews__dots {
  display: flex;
  gap: 6px;
}
.vcsc-reviews__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gray-200);
  transition: all 0.2s;
  cursor: pointer;
}
.vcsc-reviews__dot.is-active {
  background: var(--blue);
  width: 20px;
  border-radius: 4px;
}

/* ── Founder ──────────────────────────────────────────────── */
.vcsc-founder {
  padding: 120px 0;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
}
.vcsc-founder__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  align-items: start;
  max-width: 880px;
  margin: 0 auto;
}
.vcsc-founder__photo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.vcsc-founder__avatar {
  width: 260px;
  height: 260px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 3px solid var(--gray-200);
  background: var(--gray-100);
  flex-shrink: 0;
}
.vcsc-founder__avatar svg { width: 100%; height: 100%; }
.vcsc-founder__badge-wrap {
  text-align: center;
}
.vcsc-founder__badge {
  display: inline-block;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.vcsc-founder__name {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: var(--black);
}
.vcsc-founder__title {
  font-size: 14px;
  color: var(--gray-500);
  margin-bottom: 28px;
}
.vcsc-founder__quote-wrap {
  position: relative;
  padding: 28px 32px;
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  margin-bottom: 24px;
}
.vcsc-founder__open-quote,
.vcsc-founder__close-quote {
  font-size: 80px;
  line-height: 0;
  color: var(--gray-200);
  font-family: Georgia, serif;
  position: absolute;
}
.vcsc-founder__open-quote { top: 36px; left: 16px; }
.vcsc-founder__close-quote { bottom: 16px; right: 20px; }
.vcsc-founder__quote {
  position: relative;
  z-index: 1;
}
.vcsc-founder__quote p {
  font-size: 15px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 14px;
}
.vcsc-founder__quote p:last-child { margin-bottom: 0; }
.vcsc-founder__sig {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.vcsc-founder__sig-name {
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-700);
  font-style: italic;
}
.vcsc-founder__sig-title {
  font-size: 13px;
  color: var(--gray-500);
}

/* ── Warranty ─────────────────────────────────────────────── */
.vcsc-warranty {
  padding: 120px 0;
  background: var(--gray-50);
}
.vcsc-warranty__card {
  max-width: 780px;
  margin: 0 auto;
  background: var(--warranty-bg);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.vcsc-warranty__header {
  background: var(--gray-100);
  border-bottom: 2px solid var(--gray-200);
  padding: 36px 48px;
  text-align: center;
}
.vcsc-warranty__logo-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
}
.vcsc-warranty__brand {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray-500);
}
.vcsc-warranty__title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--gray-700);
  margin-bottom: 12px;
  line-height: 1.2;
}
.vcsc-warranty__doc-number {
  font-size: 11px;
  color: var(--gray-300);
  letter-spacing: 0.02em;
}
.vcsc-warranty__body {
  padding: 36px 48px;
}
.vcsc-warranty__section {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-200);
}
.vcsc-warranty__section:last-of-type { border-bottom: none; }
.vcsc-warranty__section-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 10px;
}
.vcsc-warranty__section p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
}
.vcsc-warranty__footer-text {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 2px solid var(--gray-200);
}
.vcsc-warranty__footer-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--gray-700);
  margin-bottom: 16px;
}
.vcsc-warranty__fine-print {
  font-size: 11px !important;
  color: var(--gray-300) !important;
  line-height: 1.65 !important;
}

/* ── Waitlist ─────────────────────────────────────────────── */
.vcsc-waitlist {
  position: relative;
  padding: 120px 0;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-200);
  overflow: hidden;
}
.vcsc-waitlist__bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 25% 60%, rgba(61,128,255,0.12) 0%, transparent 55%),
                    radial-gradient(circle at 75% 40%, rgba(77,154,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.vcsc-waitlist__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.vcsc-waitlist__title {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--black);
  margin-bottom: 16px;
}
.vcsc-waitlist__sub {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.65;
}
.vcsc-waitlist__form-wrap { width: 100%; }
.vcsc-waitlist__input-group {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}
.vcsc-input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--black);
  font-family: var(--font);
  font-size: 15px;
  transition: all 0.15s;
  outline: none;
  min-width: 0;
}
.vcsc-input::placeholder { color: var(--gray-300); }
.vcsc-input:focus {
  border-color: var(--blue);
  background: var(--blue-pale);
}
.vcsc-waitlist__success {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,87,255,0.15);
  border: 1px solid rgba(0,87,255,0.35);
  color: var(--blue-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 12px;
}
.vcsc-waitlist__legal {
  font-size: 12px;
  color: var(--gray-300);
  margin-top: 12px;
}

/* ── Footer ───────────────────────────────────────────────── */
.vcsc-footer {
  background: #050609;
  border-top: 1px solid var(--gray-200);
  padding: 48px 0 0;
}
.vcsc-footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 40px;
  flex-wrap: wrap;
  gap: 32px;
}
.vcsc-footer__logo .vcsc-logo-text { color: var(--white); }
.vcsc-footer__logo .vcsc-logo-mark { background: var(--blue); }
.vcsc-footer__tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 10px;
}
.vcsc-footer__nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.vcsc-footer__nav a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  transition: color 0.15s;
}
.vcsc-footer__nav a:hover { color: var(--white); }
.vcsc-footer__social {
  display: flex;
  gap: 8px;
}
.vcsc-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all 0.15s;
}
.vcsc-social-icon:hover {
  border-color: var(--blue);
  color: var(--blue-light);
  background: rgba(0,87,255,0.1);
}
.vcsc-footer__legal {
  border-top: 1px solid var(--gray-200);
  padding: 16px 0;
}
.vcsc-footer__legal p {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ── Input global ─────────────────────────────────────────── */
input:focus { outline: none; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .vcsc-hero__inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 48px;
  }
  .vcsc-hero__subheadline { margin-left: auto; margin-right: auto; }
  .vcsc-hero__actions { justify-content: center; }
  .vcsc-hero__trust { justify-content: center; }
  .vcsc-hero__scroll { display: none; }
  .vcsc-demo-button { display: none; }

  .vcsc-product__grid { grid-template-columns: 1fr; gap: 48px; }
  .vcsc-product__images { order: -1; }

  .vcsc-founder__inner { grid-template-columns: 1fr; }
  .vcsc-founder__photo-wrap { flex-direction: column; gap: 20px; align-items: flex-start; }
  .vcsc-founder__avatar { width: 200px; height: 200px; }

  .vcsc-waitlist__inner { grid-template-columns: 1fr; gap: 40px; }

  .vcsc-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

@media (max-width: 640px) {
  .vcsc-header__nav { display: none; }
  .vcsc-header__hamburger { display: flex; }

  .vcsc-hero { padding: 88px 0 60px; }

  .vcsc-product, .vcsc-reviews, .vcsc-founder, .vcsc-warranty, .vcsc-waitlist { padding: 80px 0; }

  .vcsc-warranty__header, .vcsc-warranty__body { padding: 28px 24px; }

  .vcsc-waitlist__input-group { flex-direction: column; }
  .vcsc-btn--waitlist { width: 100%; justify-content: center; }

  .vcsc-hero__actions { flex-direction: column; }
  .vcsc-btn--primary, .vcsc-btn--ghost { width: 100%; justify-content: center; }

  .vcsc-press__logos { gap: 6px; }

  .vcsc-founder__photo-wrap { flex-direction: column; align-items: flex-start; }
}
