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

:root {
  --bg-base: #f2f1ee;
  --bg-surface: #d7d4d4;
  --border: rgb(142, 142, 142);
  --text-primary: #1f2230;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: 'IBM Plex Mono', monospace;
  font-size: 16px;
  line-height: 1.7;
}

h1 {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
}

p {
  color: var(--text-primary);
}

.navbar {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 1100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.navbar-logo a {
  display: block;
  line-height: 0;
}

.navbar-logo img {
  display: block;
  height: 40px;
  width: auto;
  transition: opacity 0.2s ease;
}

.navbar-menu-button {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background-color: white;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  padding: 0;
}

.navbar-menu-button span {
  width: 20px;
  height: 2px;
  background-color: black;
  border-radius: 2px;
}

.navbar-logo img {
  opacity: 1;
  transition: opacity 0.2s ease;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 17, 23, 0.6);
  z-index: 1;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(6px) brightness(0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero h1 {
  background: white;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 600;
  line-height: 1.2;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  z-index: 2;
}

.scroll-indicator p {
  font-size: 0.9rem;
  margin-top: 5px;
}

.scroll-arrow {
  font-size: 24px;
  animation: bounce 1.5s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(8px);
    opacity: 1;
  }
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0.9rem 2.2rem;

  background: linear-gradient(135deg, #2dd4bf, #38bdf8, #1e3a8a);
  color: #fff;
  text-decoration: none;

  border-radius: 10px;

  font-weight: 600;
  font-size: 1.05rem;

  width: fit-content;           /* 🔥 prevents full width */
  margin: 0 auto;               /* 🔥 centers button */

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.intro-section {
  width: 100%;
  padding: 7rem 6%;
  background: var(--bg-base);
}

.section-shell {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.intro-text {
  max-width: 1300px;
  font-size: clamp(1.6rem, 3.2vw, 3.2rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-align: left;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 500;
  color: #1f2230;
  text-align: left;
}

.product-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.product-card {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  max-width: none;
  padding: 2rem;
  background: var(--bg-base);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.25s ease;
}

.product-card:hover {
  background: var(--bg-surface);
}

.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 700px;
}

.product-logo {
  width: 400px;
  height: auto;
  margin-bottom: 1rem;
}

.product-description {
  margin: 0;
}

.product-preview-panel {
  position: relative;
  flex: 0 0 360px;
  aspect-ratio: 16 / 9;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(31, 34, 48, 0.12);
  border-radius: 16px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
  margin-left: auto;
}

.vector-card:hover .product-preview-panel {
  background: linear-gradient(135deg, #2dd4bf, #38bdf8, #1e3a8a);
  border-color: transparent;
}

.preview-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.preview-version {
  position: absolute;
  right: 14px;
  bottom: 12px;
  z-index: 2;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  transition: opacity 0.25s ease;
}

.vector-card:hover .preview-video {
  opacity: 1;
}

.vector-card:hover .preview-version {
  opacity: 0;
}

.philosophy {
  max-width: 1300px;
  font-size: clamp(0.8rem, 1.6vw, 1.6rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #1a1a1a;
  text-align: center;
}

.menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #0c0f16;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.menu-overlay-inner {
  width: 90%;
  max-width: 1100px;
  height: 100%;
  margin: 0 auto;
  padding-top: 20px;
  display: flex;
  flex-direction: column;
}

.menu-overlay-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  margin-bottom: 4rem;
}

.menu-overlay-brand img {
  display: block;
  height: 40px;
  width: auto;
}

.menu-close-button {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: white;
  color: black;
  font-size: 1.6rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.menu-overlay-content {
  flex: 1;
  display: flex;
  align-items: flex-start;
}

.menu-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.menu-label {
  margin-bottom: 1.5rem;
  padding-bottom: 0.9rem;
  width: 100%;

  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.menu-column a {
  color: white;
  text-decoration: none;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;
  transition: opacity 0.2s ease;
}

.menu-column a:hover {
  opacity: 0.72;
}

.menu-link-reveal {
  display: inline-block;
  color: white;
  text-decoration: none;
  font-size: clamp(1.6rem, 3vw, 3rem);
  line-height: 1.05;

  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transform: translateY(8px);

  transition:
    clip-path 0.5s ease,
    opacity 0.35s ease,
    transform 0.5s ease;
}

.menu-overlay.open .menu-link-reveal {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: translateY(0);
}

.menu-column .menu-link-reveal:nth-of-type(1) {
  transition-delay: 0.08s;
}

.menu-column .menu-link-reveal:nth-of-type(2) {
  transition-delay: 0.14s;
}

.menu-column .menu-link-reveal:nth-of-type(3) {
  transition-delay: 0.20s;
}

.menu-column .menu-link-reveal:nth-of-type(4) {
  transition-delay: 0.26s;
}

.menu-column .menu-link-reveal:nth-of-type(5) {
  transition-delay: 0.32s;
}

.menu-column .menu-link-reveal:nth-of-type(6) {
  transition-delay: 0.38s;
}

/* ── Products page hero ── */
.products-hero {
  width: 100%;
  min-height: 40vh;
  background: #0c0f16;
  display: flex;
  align-items: flex-end;
  padding: 0 6% 4rem;
}

.products-hero-inner {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.products-label {
  font-size: clamp(2.5rem, 5vw, 5rem);
  letter-spacing: 0.1em;
  color: #ffffff;
  font-weight: 600;
}

/* ── Vector product page ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

.vector-hero .vector-eyebrow {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.1s;
}

.vector-hero .vector-hero-tagline {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.25s;
}

.vector-hero .vector-hero-image {
  animation: fadeUp 0.8s ease both;
  animation-delay: 0.45s;
}

.vector-hero .vector-hero-actions {
  animation: fadeUp 0.7s ease both;
  animation-delay: 0.6s;
}

.vector-hero {
  width: 100%;
  min-height: 100vh;
  background: #0c0f16;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 110px 6% 4rem;
  position: relative;
  overflow: hidden;
}

@keyframes heroPulse {
  0%, 100% { transform: scale(1);    opacity: 1; }
  50%       { transform: scale(1.18); opacity: 0.65; }
}

.vector-hero::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 50%;
  margin-left: -900px;
  width: 1800px;
  height: 1800px;
  background: radial-gradient(circle, rgba(45, 212, 191, 0.13) 0%, rgba(56, 189, 248, 0.08) 40%, transparent 70%);
  pointer-events: none;
  animation: heroPulse 10s ease-in-out infinite;
}

.vector-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2rem;
}


.vector-hero-image {
  width: 100%;
}

.vector-dashboard-img {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.5);
  display: block;
}

.vector-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}

.vector-eyebrow a {
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.vector-eyebrow a:hover { color: rgba(255,255,255,0.8); }
.vector-eyebrow span { margin: 0 0.4rem; }

.vector-hero-logo {
  height: 56px;
  width: auto;
}

.vector-hero-tagline {
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  color: #ffffff;
  font-weight: 600;
  width: 100%;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-align: center;
}

.vector-hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;
  background: transparent;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'IBM Plex Mono', monospace;
  border: 1px solid rgba(255,255,255,0.2);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.5);
  color: white;
}

.access-card .btn-ghost {
  color: rgba(31,34,48,0.65);
  border-color: rgba(31,34,48,0.2);
}

.access-card .btn-ghost:hover {
  color: #1a1a1a;
  border-color: rgba(31,34,48,0.5);
}

.version-chip {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
}

/* ── Product page sections ── */
.product-section {
  width: 100%;
  padding: 6rem 6%;
  background: var(--bg-base);
}

.product-section.surface {
  background: var(--bg-surface);
}

.product-section.dark {
  background: #0c0f16;
}

.product-section-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

#access .product-section-inner {
  align-items: center;
  text-align: center;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(31,34,48,0.4);
}

.section-label.light {
  color: rgba(255,255,255,0.35);
}

.product-section h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  max-width: 800px;
}

.product-section.dark h2 {
  color: white;
}

.product-section p {
  max-width: 720px;
  font-size: 0.95rem;
  color: rgba(31,34,48,0.7);
  line-height: 1.75;
}

.product-section.dark p {
  color: rgba(255,255,255,0.55);
}

/* Feature grid */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.feature-card:hover { background: var(--bg-surface); }

.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.feature-card ul li {
  font-size: 0.85rem;
  color: rgba(31,34,48,0.6);
  padding-left: 1rem;
  position: relative;
}

.feature-card ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2dd4bf;
}

/* Lens outputs */
.lens-output-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.lens-output-item {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lens-output-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.lens-output-item p {
  font-size: 0.88rem;
}

.lens-output-item ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lens-output-item ul li {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  padding-left: 1.2rem;
  position: relative;
}

.lens-output-item ul li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2dd4bf;
}

/* Philosophy bullets */
.philosophy-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  max-width: 600px;
}

.philosophy-list li {
  font-size: 1rem;
  color: rgba(31,34,48,0.7);
  padding-left: 1.2rem;
  position: relative;
}

.philosophy-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #2dd4bf;
}

/* Access cards */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 800px;
}

.access-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: background 0.2s, box-shadow 0.2s;
}

.access-card h3 {
  font-size: 1rem;
  font-weight: 600;
}

.access-card p {
  font-size: 0.88rem;
  color: rgba(31,34,48,0.6);
}

/* Numbered flow */
.flow-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: flow;
  max-width: 560px;
}

.flow-list li {
  counter-increment: flow;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.95rem;
  color: rgba(31,34,48,0.75);
}

.flow-list li::before {
  content: counter(flow, decimal-leading-zero);
  font-size: 0.75rem;
  font-weight: 600;
  color: #2dd4bf;
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

/* Disclaimer */
.disclaimer-block {
  padding: 1.5rem 2rem;
  border-left: 3px solid rgba(31,34,48,0.2);
  background: var(--bg-surface);
  border-radius: 0 12px 12px 0;
  max-width: 720px;
}

.disclaimer-block p {
  font-size: 0.85rem;
  color: rgba(31,34,48,0.55);
}

/* Closing CTA */
.closing-section {
  width: 100%;
  padding: 7rem 6%;
  background: var(--bg-base);
}

.closing-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.closing-inner p {
  font-size: clamp(1.4rem, 2.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: #1a1a1a;
}

.closing-inner p:last-of-type {
  background: linear-gradient(135deg, #2dd4bf, #38bdf8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Future tags */
.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.tag {
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.8rem;
  color: rgba(31,34,48,0.65);
  background: var(--bg-base);
}

/* Access section — pricing cards */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 860px;
}

.access-card {
  border: 0.5px solid var(--border);
  border-radius: 16px;
  background: var(--bg-base);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: box-shadow 0.2s;
}

.access-card.featured {
  border: 1.5px solid #2dd4bf;
  position: relative;
}

.access-card:hover { box-shadow: 0 0 24px rgba(120, 120, 120, 0.25); }
.access-card.featured:hover { box-shadow: 0 0 28px rgba(45, 212, 191, 0.35), 0 0 52px rgba(56, 189, 248, 0.15); }

.access-tier {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(31,34,48,0.5);
  text-align: center;
}

.access-tier.paid { color: #2dd4bf; }

.access-lens-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(45,212,191,0.8);
  letter-spacing: 0.04em;
  background: rgba(45,212,191,0.08);
  border: 1px solid rgba(45,212,191,0.2);
  border-radius: 6px;
  padding: 4px 10px;
  align-self: center;
}

.access-lens-label.muted {
  color: rgba(31,34,48,0.45);
  background: rgba(31,34,48,0.04);
  border-color: rgba(31,34,48,0.12);
}

.access-price {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.access-price span {
  font-size: 0.85rem;
  font-weight: 400;
  color: rgba(31,34,48,0.45);
}

.access-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.65rem;
  padding: 3px 10px;
  border-radius: 999px;
  background: var(--bg-base);
  border: 1px solid #2dd4bf;
  color: #2dd4bf;
  letter-spacing: 0.06em;
  font-weight: 600;
  white-space: nowrap;
}

.access-divider {
  border: none;
  border-top: 1px solid rgba(31,34,48,0.08);
}

.access-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.access-features li {
  font-size: 0.85rem;
  color: rgba(31,34,48,0.65);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.access-features li svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Stat chips */
.access-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 860px;
}

.access-stat {
  background: var(--bg-surface);
  border-radius: 10px;
  padding: 1rem;
}

.access-stat-num {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1;
}

.access-stat-lbl {
  font-size: 0.75rem;
  color: rgba(31,34,48,0.5);
  margin-top: 4px;
}

/* Flow stepper */
.flow-stepper {
  display: flex;
  align-items: center;
  max-width: 860px;
  width: 100%;
}

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}

.flow-step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-primary);
  background: var(--bg-base);
}

.flow-step-lbl {
  font-size: 0.7rem;
  color: rgba(31,34,48,0.55);
  text-align: center;
  line-height: 1.4;
  max-width: 120px;
}

.flow-connector {
  height: 1px;
  background: var(--border);
  flex: 1;
  margin-bottom: 22px;
  opacity: 0.4;
}

@media (max-width: 768px) {
  .access-stats { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .flow-stepper { flex-direction: column; gap: 1rem; }
  .flow-connector { display: none; }
}

/* Lens output grid */
.lens-output-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lens-output-item {
  padding: 2rem;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  background: rgba(255,255,255,0.03);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  transition: background 0.2s;
}

.lens-output-item:hover {
  background: rgba(255,255,255,0.05);
}

.lens-num {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.2);
}

.lens-divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.07);
  margin: 0.25rem 0;
}

/* Lens screenshot block */
.lens-screenshot-wrap {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}

.lens-screenshot-wrap img {
  width: 100%;
  display: block;
}

@media (max-width: 768px) {
  .lens-output-list { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .feature-grid { grid-template-columns: 1fr; }
  .access-grid { grid-template-columns: 1fr; }
  .vector-hero-logo { height: 40px; }
  .vector-hero-top { flex-direction: column; gap: 1rem; }
}

.site-footer {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 2rem 6%;
  background: var(--bg-base);
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  color: #4a4a4a;
  font-size: 0.85rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.footer-disclaimer {
  text-align: center;
  color: #4a4a4a;
  opacity: 0.7;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: #4a4a4a;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1a1a1a;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.2rem;
  }

  .product-card {
    flex-direction: column;
  }

  .product-preview-panel {
    flex: none;
    width: 100%;
  }

  .product-logo {
    width: 100%;
    max-width: 320px;
  }

  .site-footer {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}