/* =============================================================================
 * product.css — workwithvera.com landing page only (https://workwithvera.com/)
 * Loaded from root index.html after styles.css. NOT linked from app/index.html.
 * Edit this file on the production branch for product landing redesigns.
 * App UI (/app/) uses ../styles.css only.
 * ============================================================================= */

:root {
  --product-landing-g1: 8, 18, 32;
  --product-landing-g2: 2, 6, 12;
  --landing-bg: #050a0f;
  --landing-surface: #08131d;
  --landing-text: #f2f5f7;
  --landing-text-muted: #8b98a5;
  --landing-teal: #20b7a8;
  --landing-teal-hover: #24c9b9;
  --landing-teal-soft: rgba(32, 183, 168, 0.72);
  --landing-border: rgba(255, 255, 255, 0.08);
  --landing-accent-border: rgba(32, 183, 168, 0.28);
  /* aliases used elsewhere in landing styles */
  --landing-bg-deep: #050a0f;
  --landing-bg-base: #050a0f;
  --landing-teal-border: var(--landing-accent-border);
}

/* Future landing redesigns: prefer #home, .landing-*, .product-* selectors. */

body:not(.app-open):not(.vera-mode):not(.bmo-open)::before {
  background:
    radial-gradient(ellipse 70% 45% at 50% -15%, rgba(32, 183, 168, 0.035) 0%, transparent 58%),
    linear-gradient(180deg, #060b10 0%, var(--landing-bg) 100%) !important;
}

body.app-open #bg-video,
body.app-open #how-video {
  opacity: 0;
  pointer-events: none;
}

/* =========================
   LANDING TYPOGRAPHY BASE
========================= */

#home {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* =========================
   LANDING DEMO CARD
========================= */

.landing-preview.landing-demo-card {
  width: min(920px, 94vw);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--landing-border);
  background: var(--landing-surface);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.36);
  margin-bottom: 0;
}

.landing-demo-toolbar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 9px 14px;
  border-bottom: 1px solid var(--landing-border);
  background: var(--landing-surface);
}

.landing-demo-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.landing-demo-viewport {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--landing-bg-deep);
}

.landing-demo-viewport .landing-preview-video,
.landing-demo-viewport #bg-video,
.landing-demo-viewport #how-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: none;
  z-index: 0;
}

/* Future product recording / UI screenshot: swap video for img or
   set object-fit: contain on .landing-preview-video inside viewport. */

.landing-preview-play {
  position: absolute;
  bottom: 12px;
  left: 12px;
  z-index: 2;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--landing-accent-border);
  background: rgba(5, 10, 15, 0.82);
  backdrop-filter: blur(8px);
  color: var(--landing-teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.15s ease;
}

.landing-preview-play:hover {
  background: var(--landing-surface);
  border-color: rgba(32, 183, 168, 0.4);
}

.landing-preview-play:active {
  transform: scale(0.96);
}

.landing-preview-play:focus-visible {
  outline: 2px solid var(--landing-teal-soft);
  outline-offset: 2px;
}

.landing-play-icon,
.landing-pause-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.landing-play-icon {
  display: none;
  margin-left: 2px;
}

.landing-pause-icon {
  display: flex;
}

.landing-preview-play.is-paused .landing-play-icon {
  display: flex;
}

.landing-preview-play.is-paused .landing-pause-icon {
  display: none;
}

.top-nav {
  position: fixed;
  top: env(safe-area-inset-top);
  left: 0;
  right: 0;
  height: 72px;
  padding: 0 clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 100;
}

.nav-left {
  flex-shrink: 0;
}

.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  flex: 1 1 auto;
  min-width: 0;
  max-width: calc(100% - 72px);
}

/* =========================
   MOBILE NAV
========================= */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;

  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: currentColor;
  opacity: 0.85;
}

/* slide-down menu */
.mobile-menu {
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;

  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;

  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(14px);

  transform: translateY(-120%);
  transition: transform 0.35s ease;
  z-index: 99;
}

.mobile-menu.open {
  transform: translateY(0);
}

/* =========================
   NAV LINKS
========================= */

.nav-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--landing-text-muted);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  cursor: pointer;
  opacity: 1;
  transition: color 0.2s ease, opacity 0.2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: var(--landing-teal);
}

#home .nav-logo:hover {
  opacity: 1;
  color: var(--landing-teal);
  text-shadow: none;
}
/* =========================
   LANDING HERO (ABOVE THE FOLD)
========================= */

.title-hero,
.landing-hero {
  position: relative;
  text-align: center;
}

.product-section.hero-section.landing-hero {
  position: relative;
  overflow: hidden;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100dvh;
  min-height: 100svh;
  padding-top: calc(72px + env(safe-area-inset-top) + clamp(48px, 8vh, 96px));
  padding-bottom: clamp(40px, 5vh, 64px);
  box-sizing: border-box;
}

.hero-decor {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-content,
.hero-section-inner.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  width: 100%;
}

.hero-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* --- Hero orbs --- */

.hero-orb {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 19, 29, 0.55);
  color: var(--landing-teal);
  box-shadow:
    0 0 24px rgba(32, 183, 168, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0.72;
}

.hero-orb--wave {
  left: clamp(4%, 8vw, 11%);
  top: clamp(18%, 22vh, 26%);
  width: 40px;
  height: 40px;
  opacity: 0.65;
}

.hero-orb--mic {
  left: clamp(6%, 10vw, 14%);
  top: clamp(34%, 38vh, 42%);
}

.hero-orb--headphones {
  right: clamp(5%, 9vw, 12%);
  top: clamp(20%, 24vh, 28%);
}

.hero-orb--chat {
  right: clamp(8%, 12vw, 15%);
  top: clamp(36%, 40vh, 44%);
  width: 42px;
  height: 42px;
}

/* --- Orbit paths --- */

.hero-orbit {
  position: absolute;
  width: clamp(180px, 22vw, 280px);
  height: auto;
  opacity: 0.28;
  pointer-events: none;
}

.hero-orbit--left {
  left: clamp(2%, 5vw, 8%);
  top: clamp(12%, 16vh, 20%);
}

.hero-orbit--right {
  right: clamp(2%, 5vw, 8%);
  top: clamp(14%, 18vh, 22%);
}

/* --- Sparks & dots --- */

.hero-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgba(32, 183, 168, 0.55);
  box-shadow: 0 0 8px rgba(32, 183, 168, 0.25);
  opacity: 0.5;
}

.hero-dot--1 { left: 22%; top: 28%; }
.hero-dot--2 { right: 24%; top: 32%; width: 4px; height: 4px; opacity: 0.4; }
.hero-dot--3 { left: 48%; top: 18%; width: 3px; height: 3px; background: rgba(242, 245, 247, 0.35); }

.hero-spark {
  position: absolute;
  font-size: 10px;
  line-height: 1;
  color: rgba(32, 183, 168, 0.45);
  opacity: 0.55;
  user-select: none;
}

.hero-spark--1 { left: 18%; top: 20%; font-size: 11px; }
.hero-spark--2 { right: 20%; top: 22%; }
.hero-spark--3 { right: 28%; top: 48%; color: rgba(242, 245, 247, 0.3); font-size: 14px; }

/* --- Preview sound rings --- */

.hero-preview-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vh, 52px);
}

.hero-preview-wrap::before,
.hero-preview-wrap::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}

.hero-preview-wrap::before {
  left: -8%;
  bottom: -12%;
  width: clamp(280px, 38vw, 420px);
  height: clamp(280px, 38vw, 420px);
  border: 1px solid rgba(32, 183, 168, 0.08);
  opacity: 0.45;
  background: radial-gradient(circle, rgba(32, 183, 168, 0.04) 0%, transparent 68%);
}

.hero-preview-wrap::after {
  right: -6%;
  bottom: -8%;
  width: clamp(220px, 30vw, 340px);
  height: clamp(220px, 30vw, 340px);
  border: 1px solid rgba(32, 183, 168, 0.06);
  opacity: 0.35;
  background: repeating-radial-gradient(
    circle at center,
    transparent 0,
    transparent 38px,
    rgba(32, 183, 168, 0.03) 39px,
    transparent 40px
  );
}

@media (max-width: 1100px) {
  .hero-decor {
    opacity: 0.85;
    transform: scale(0.92);
    transform-origin: center top;
  }

  .hero-orb {
    width: 38px;
    height: 38px;
    opacity: 0.58;
  }

  .hero-orbit {
    opacity: 0.22;
  }
}

@media (max-width: 768px) {
  .hero-orbit,
  .hero-orb--wave,
  .hero-orb--headphones,
  .hero-orb--chat,
  .hero-spark--2,
  .hero-spark--3,
  .hero-dot--2,
  .hero-dot--3 {
    display: none;
  }

  .hero-orb--mic {
    left: 6%;
    top: 30%;
    width: 34px;
    height: 34px;
    opacity: 0.4;
  }

  .hero-spark--1,
  .hero-dot--1 {
    opacity: 0.35;
  }

  .hero-preview-wrap::before,
  .hero-preview-wrap::after {
    width: clamp(200px, 55vw, 280px);
    height: clamp(200px, 55vw, 280px);
    opacity: 0.28;
  }
}

.hero-title,
.landing-hero .landing-headline {
  max-width: min(1100px, 92vw);
  margin: 0 auto;
  padding-top: 0;

  font-size: clamp(4rem, 7.2vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 0.96;
  text-align: center;
  text-transform: none;

  color: var(--landing-text);
}

.hero-title .line {
  display: block;
}

.landing-headline-accent {
  color: var(--landing-teal);
  text-shadow: none;
}

@media (max-width: 900px) {
  .hero-title,
  .landing-hero .landing-headline {
    font-size: clamp(2.75rem, 10vw, 4.5rem);
    line-height: 1;
    letter-spacing: -0.05em;
    padding-top: clamp(12px, 2vh, 24px);
    max-width: min(100%, 94vw);
  }
}

.hero-subtitle,
.landing-hero .landing-subhead {
  max-width: min(1280px, 96vw);
  width: 100%;
  margin: clamp(22px, 2.5vh, 30px) auto 0;
  margin-bottom: clamp(32px, 4vh, 44px);
  padding: 0 clamp(12px, 2vw, 20px);

  font-size: clamp(1rem, 1.55vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
  white-space: nowrap;

  color: var(--landing-text-muted);
  background: none;
  box-sizing: border-box;
}

@media (max-width: 900px) {
  .hero-subtitle,
  .landing-hero .landing-subhead {
    white-space: normal;
    max-width: min(680px, 92vw);
  }
}

.landing-hero .landing-cta-row {
  justify-content: center;
  width: 100%;
  margin-bottom: clamp(4px, 0.5vh, 8px);
}

/* =========================
   LANDING FADE-UP
========================= */

.landing-fade-up {
  opacity: 0;
  transform: translateY(10px);
}

.landing-fade-up.is-visible {
  animation: landingFadeUp 0.65s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}

.landing-fade-up-1.is-visible { animation-delay: 0s; }
.landing-fade-up-2.is-visible { animation-delay: 0.1s; }
.landing-fade-up-3.is-visible { animation-delay: 0.2s; }
.landing-fade-up-4.is-visible { animation-delay: 0.32s; }
.landing-fade-up-5.is-visible { animation-delay: 0.42s; }

.landing-fade-up-scroll {
  opacity: 0;
  transform: translateY(10px);
}

.landing-fade-up-scroll.is-visible {
  animation: landingFadeUp 0.65s cubic-bezier(0.22, 0.9, 0.3, 1) forwards;
}

.landing-fade-up-scroll.landing-fade-up-1.is-visible { animation-delay: 0s; }
.landing-fade-up-scroll.landing-fade-up-2.is-visible { animation-delay: 0.08s; }
.landing-fade-up-scroll.landing-fade-up-3.is-visible { animation-delay: 0.16s; }
.landing-fade-up-scroll.landing-fade-up-4.is-visible { animation-delay: 0.24s; }
.landing-fade-up-scroll.landing-fade-up-5.is-visible { animation-delay: 0.32s; }

@keyframes landingFadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landing-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
}

.landing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease,
    color 0.22s ease,
    transform 0.15s ease;
}

.landing-cta-primary {
  border: 1px solid var(--landing-accent-border);
  background: var(--landing-teal);
  color: var(--landing-bg);
  box-shadow: none;
}

.landing-cta-primary:hover {
  background: var(--landing-teal-hover);
  box-shadow: none;
}

.landing-cta-secondary {
  border: 1px solid var(--landing-border);
  background: transparent;
  color: var(--landing-text);
  backdrop-filter: none;
}

.landing-cta-secondary:hover {
  border-color: var(--landing-accent-border);
  color: var(--landing-teal);
  box-shadow: none;
}

.landing-cta-arrow {
  font-size: 1.05em;
  opacity: 0.75;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-cta-secondary:hover .landing-cta-arrow {
  opacity: 1;
  transform: translateX(2px);
}

.landing-cta:active {
  transform: scale(0.98);
}

.landing-cta:focus-visible {
  outline: 2px solid var(--landing-teal-soft);
  outline-offset: 3px;
}


/* =========================
   LANDING — RESPONSIVE
========================= */

@media (max-width: 900px) {
  .top-nav {
    flex-wrap: wrap;
    height: auto;
    padding: 16px 20px 12px;
    gap: 12px;
  }

  .nav-right {
    width: 100%;
    justify-content: flex-end;
    gap: 10px 16px;
  }

  .product-section.hero-section {
    padding-top: calc(96px + env(safe-area-inset-top));
  }
}

@media (max-width: 768px) {
  #home .top-nav {
    height: 56px;
    padding: 0 16px;
    justify-content: flex-start;
  }

  #home .nav-right {
    display: none;
  }

  .landing-hero .landing-headline,
  .hero-title {
    padding-top: 8px;
    margin-bottom: 0;
  }

  .landing-hero .landing-subhead,
  .hero-subtitle {
    font-size: 0.95rem;
    margin-top: 14px;
    margin-bottom: 22px;
  }

  .landing-hero .landing-cta-row {
    gap: 8px;
    margin-bottom: 28px;
  }

  .landing-cta {
    font-size: 0.85rem;
    padding: 10px 18px;
  }

  .landing-preview.landing-demo-card {
    width: min(100%, 94vw);
    border-radius: 10px;
  }

  .landing-preview-play {
    width: 36px;
    height: 36px;
    bottom: 10px;
    left: 10px;
  }
}

@media (max-width: 480px) {
  .nav-right {
    gap: 8px 12px;
    max-width: 100%;
  }

  .nav-right .nav-link {
    font-size: 10px;
    letter-spacing: 0.05em;
    white-space: normal;
    text-align: right;
    line-height: 1.3;
  }

  .landing-cta-row {
    flex-direction: column;
    width: min(100%, 280px);
  }

  .landing-cta {
    width: 100%;
  }
}


/* =========================
   PRODUCT SECTION SPACING
========================= */

.product-section {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(88px, 11vh, 140px) clamp(20px, 4vw, 48px);
  scroll-margin-top: 72px;
  box-sizing: border-box;
}

.product-section-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.product-section.hero-section {
  padding-top: calc(72px + env(safe-area-inset-top) + clamp(48px, 8vh, 96px));
  padding-bottom: clamp(40px, 5vh, 64px);
}

.product-section.use-cases-section .product-section-inner {
  max-width: 1180px;
}

@media (max-width: 768px) {
  .product-section {
    min-height: auto;
    padding: clamp(72px, 10vh, 104px) 20px;
  }

  .product-section.hero-section {
    min-height: 100dvh;
    min-height: 100svh;
    padding-top: calc(56px + env(safe-area-inset-top) + clamp(20px, 4vh, 40px));
    padding-bottom: 32px;
  }
}


/* =========================
   LOWER PAGE FLOW
========================= */

.lower-section-inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}


/* =========================
   CLOSING NOTE + CTA
========================= */

.closing-note-section {
  padding: clamp(120px, 15vh, 180px) 24px clamp(80px, 10vh, 120px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  scroll-margin-top: 72px;
}

.closing-note-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: clamp(56px, 7vw, 100px);
  align-items: center;
}

.creator-note {
  max-width: 640px;
}

.creator-note h2 {
  margin: 0 0 28px;
  font-size: clamp(24px, 2.2vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.035em;
  color: var(--landing-text);
}

.creator-note p {
  margin: 0;
  font-size: clamp(15px, 1vw, 17px);
  line-height: 1.7;
  color: rgba(242, 245, 247, 0.72);
}

.creator-note p + p {
  margin-top: 18px;
}

.creator-note p.creator-signature {
  margin-top: 28px;
  font-size: 13px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: rgba(242, 245, 247, 0.45);
}

.closing-cta {
  text-align: center;
  padding: clamp(36px, 5vw, 56px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: rgba(8, 19, 29, 0.38);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  scroll-margin-top: 72px;
}

.closing-cta h2 {
  margin: 0;
  font-size: clamp(34px, 3.4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--landing-text);
}

.closing-cta > p {
  margin: 12px 0 0;
  font-size: clamp(16px, 1.1vw, 19px);
  line-height: 1.5;
  color: rgba(242, 245, 247, 0.64);
}

.closing-cta .cta-actions {
  margin-top: 28px;
}

.closing-cta .landing-cta {
  display: inline-flex;
  text-decoration: none;
}

@media (max-width: 820px) {
  .closing-note-section {
    padding: clamp(80px, 12vh, 120px) 20px clamp(64px, 8vh, 96px);
  }

  .closing-note-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .creator-note {
    max-width: none;
  }

  .closing-cta {
    text-align: left;
  }

  .closing-cta h2 {
    font-size: clamp(30px, 8vw, 42px);
  }
}


/* =========================
   USE CASES
========================= */

.use-cases-title {
  margin: 0 0 clamp(28px, 4vh, 40px);
  text-align: center;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--landing-text);
}

.use-cases-panel {
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  background: rgba(8, 19, 29, 0.62);
  padding: clamp(20px, 3vw, 32px);
  box-shadow:
    0 20px 56px rgba(0, 0, 0, 0.38),
    0 0 0 1px rgba(32, 183, 168, 0.04) inset;
}

.use-cases-layout {
  display: grid;
  grid-template-columns: minmax(0, 300px) minmax(0, 1.75fr);
  gap: clamp(24px, 3.5vw, 40px);
  align-items: stretch;
}

.use-cases-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.use-case-feature {
  border: 1px solid var(--landing-border);
  border-radius: 12px;
  background: rgba(5, 10, 15, 0.45);
  overflow: hidden;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.use-case-feature.active {
  border-color: var(--landing-accent-border);
  background: var(--landing-surface);
  box-shadow: 0 0 0 1px rgba(32, 183, 168, 0.06);
  border-left: 3px solid var(--landing-teal);
}

.use-case-feature-btn {
  display: block;
  width: 100%;
  padding: 16px 18px;
  border: none;
  background: transparent;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--landing-text-muted);
  cursor: pointer;
  transition: color 0.2s ease;
}

.use-case-feature.active .use-case-feature-btn {
  color: var(--landing-text);
}

.use-case-feature-btn:hover {
  color: var(--landing-text);
}

.use-case-feature-body {
  padding: 0 18px 16px;
}

.use-case-feature-body[hidden] {
  display: none;
}

.use-case-feature-body p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--landing-text-muted);
}

.use-cases-preview {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--landing-border);
  background: var(--landing-surface);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.34);
}

.use-cases-preview-caption {
  margin: 0;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--landing-teal);
  border-bottom: 1px solid var(--landing-border);
  background: rgba(5, 10, 15, 0.35);
}

.use-cases-viewport {
  position: relative;
  flex: 1 1 auto;
  aspect-ratio: 16 / 9;
  min-height: clamp(300px, 44vh, 520px);
  background: var(--landing-bg-deep);
}

.use-cases-preview-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.use-cases-preview-play {
  bottom: 16px;
  left: 16px;
  width: 44px;
  height: 44px;
}

@media (max-width: 900px) {
  .use-cases-layout {
    grid-template-columns: 1fr;
  }

  .use-cases-features {
    order: 1;
  }

  .use-cases-preview {
    order: 2;
  }

  .use-cases-viewport {
    min-height: clamp(220px, 52vw, 360px);
  }
}

@media (max-width: 560px) {
  .use-cases-panel {
    padding: 16px;
  }

  .use-case-feature-btn {
    padding: 14px 16px;
    font-size: 0.95rem;
  }
}


/* =========================
   LANDING FOOTER
========================= */

.product-footer {
  padding: 36px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 10, 15, 0.6);
}

.product-footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-brand strong {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--landing-text);
}

.footer-brand span {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(139, 152, 165, 0.75);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.88rem;
  color: rgba(242, 245, 247, 0.62);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--landing-teal);
}

@media (max-width: 760px) {
  .product-footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}


/* =========================
   STATIC LEGAL / RESOURCE PAGES
========================= */

.legal-page {
  min-height: 100vh;
  background: var(--landing-bg);
  color: var(--landing-text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.legal-shell {
  width: min(860px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(32px, 6vh, 64px) 0 clamp(64px, 10vh, 104px);
}

.legal-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: clamp(48px, 8vh, 84px);
}

.legal-logo {
  color: var(--landing-text);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
}

.legal-nav-link {
  color: var(--landing-text-muted);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-nav-link:hover {
  color: var(--landing-teal);
}

.legal-document {
  padding: clamp(28px, 5vw, 48px);
  border: 1px solid var(--landing-border);
  border-radius: 16px;
  background: rgba(8, 19, 29, 0.46);
}

.legal-eyebrow {
  margin: 0 0 12px;
  color: var(--landing-teal);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.legal-title {
  margin: 0 0 10px;
  color: var(--landing-text);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 1.05;
}

.legal-updated {
  margin: 0 0 clamp(24px, 4vh, 36px);
  color: var(--landing-text-muted);
  font-size: 0.92rem;
}

.legal-intro {
  margin: 0 0 clamp(32px, 5vh, 48px);
  color: var(--landing-text-muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-email {
  margin: 16px 0 0;
}

.legal-email a {
  color: var(--landing-teal);
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
}

.legal-email a:hover {
  text-decoration: underline;
}

.legal-footer-links {
  margin-top: clamp(36px, 5vh, 48px);
  padding-top: 24px;
  border-top: 1px solid var(--landing-border);
}

.legal-footer-links-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--landing-text);
}

.legal-footer-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}

.legal-footer-link {
  display: inline-block;
  color: var(--landing-text-muted);
  font-size: 0.9rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.legal-footer-link:hover {
  color: var(--landing-teal);
}

.legal-section + .legal-section {
  margin-top: 32px;
}

.legal-section h2 {
  margin: 0 0 12px;
  color: var(--landing-text);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.legal-section p,
.legal-section li {
  color: var(--landing-text-muted);
  font-size: 0.98rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0;
}

.legal-section p + p {
  margin-top: 14px;
}

.legal-section ul {
  margin: 0;
  padding-left: 20px;
}

.legal-section a {
  color: var(--landing-teal);
  text-decoration: none;
}

.legal-section a:hover {
  text-decoration: underline;
}


/* =========================
   WAITLIST PAGE
========================= */

.waitlist-page {
  display: flex;
  flex-direction: column;
}

.waitlist-shell {
  width: min(520px, calc(100% - 40px));
  margin: 0 auto;
  padding: clamp(32px, 6vh, 64px) 0 clamp(64px, 10vh, 96px);
  flex: 1;
}

.waitlist-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: clamp(40px, 7vh, 64px);
}

.waitlist-card {
  padding: clamp(32px, 5vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(8, 19, 29, 0.46);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.22),
    0 0 0 1px rgba(32, 183, 168, 0.04) inset;
}

.waitlist-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 4.5vw, 2.35rem);
  font-weight: 650;
  letter-spacing: -0.035em;
  line-height: 1.1;
  color: var(--landing-text);
}

.waitlist-subtitle {
  margin: 0 0 clamp(28px, 4vh, 36px);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  line-height: 1.55;
  color: var(--landing-text-muted);
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.waitlist-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(242, 245, 247, 0.62);
}

.waitlist-input {
  width: 100%;
  box-sizing: border-box;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  background: rgba(5, 10, 15, 0.72);
  color: var(--landing-text);
  font-family: inherit;
  font-size: 1rem;
  line-height: 1.4;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.waitlist-input::placeholder {
  color: rgba(139, 152, 165, 0.65);
}

.waitlist-input:focus {
  outline: none;
  border-color: rgba(32, 183, 168, 0.45);
  box-shadow: 0 0 0 3px rgba(32, 183, 168, 0.12);
}

.waitlist-field-error {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: #f0a8a8;
}

.waitlist-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.waitlist-submit[disabled] {
  opacity: 0.65;
  cursor: not-allowed;
}

.waitlist-privacy {
  margin: clamp(20px, 3vh, 28px) 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: rgba(139, 152, 165, 0.82);
}

.waitlist-success {
  text-align: center;
}

.waitlist-success-title {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 650;
  letter-spacing: -0.03em;
  color: var(--landing-teal);
}

.waitlist-success-copy {
  margin: 0 0 24px;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--landing-text-muted);
}

.waitlist-back-link {
  display: inline-block;
}

.waitlist-global-error {
  margin: 20px 0 0;
  padding: 14px 16px;
  border: 1px solid rgba(240, 120, 120, 0.25);
  border-radius: 12px;
  background: rgba(80, 24, 24, 0.22);
  font-size: 0.9rem;
  line-height: 1.5;
  color: #f0c4c4;
}

@media (max-width: 560px) {
  .legal-shell {
    width: min(100% - 32px, 860px);
  }

  .legal-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-document {
    padding: 24px 20px;
  }

  .waitlist-shell {
    width: min(100% - 32px, 520px);
  }

  .waitlist-nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .waitlist-card {
    padding: 28px 20px;
  }
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 96px 64px 64px;
}

.hero-split {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 56px;
  align-items: center;
  max-width: 900px;
  width: 100%;
}

.hero-left {
  display: flex;
  justify-content: flex-end;
}

.hero-label {
  background: none;
  border: none;
  padding: 0;
  font-size: 14px;
  letter-spacing: 0.22em;
  color: #eaeaea;
  opacity: 0.65;
  cursor: pointer;
}

.hero-label:hover {
  opacity: 1;
}

.hero-text {
  font-size: 16.5px;
  line-height: 1.75;
  color: #eaeaea;

  max-width: 600px;

  /* 🔑 Indentation */
  margin-left: 32px;      /* shifts the paragraph block */
  text-indent: 48px;      /* subtle first-line indent */
}

/* =========================
   WHY IT MATTERS — PROBLEM / SOLUTION
========================= */

.why-vera-inner {
  max-width: 1120px;
}

.about-grid,
.why-vera-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(48px, 6vw, 96px);
  align-items: start;
}

.why-vera-problem {
  padding-right: clamp(24px, 3.5vw, 48px);
  border-right: 1px solid var(--landing-border);
}

.about-title,
.why-vera-col-title {
  margin: 0 0 clamp(20px, 2.5vh, 28px);
  font-size: clamp(2.125rem, 3.2vw, 3.25rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.05;
  color: var(--landing-text);
}

.why-vera-solution .about-title,
.why-vera-solution .why-vera-col-title {
  color: var(--landing-teal);
}

.about-copy p,
.why-vera-col p {
  margin: 0;
  max-width: 46ch;
  font-size: clamp(1.0625rem, 1.2vw, 1.3125rem);
  line-height: 1.65;
  color: rgba(242, 245, 247, 0.76);
}

.why-vera-col-body p + p,
.about-copy p + p {
  margin-top: 1.15em;
}

@media (max-width: 768px) {
  .about-grid,
  .why-vera-columns {
    grid-template-columns: 1fr;
    gap: clamp(40px, 8vw, 56px);
  }

  .why-vera-problem {
    padding-right: 0;
    padding-bottom: clamp(36px, 6vw, 48px);
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .about-copy p,
  .why-vera-col p {
    max-width: none;
  }

  .about-title,
  .why-vera-col-title {
    font-size: clamp(1.75rem, 7vw, 2.25rem);
  }
}

#about-vera {
  position: relative;
}

/* =========================
   HOW TO USE VERA — ACCESS
========================= */

.vera-use-access {
  padding: 220px 0 200px;   /* 🔑 more vertical air */
  position: relative;
}

/* subtle divider ABOVE the section */
.vera-use-access::before {
  content: "";
  display: block;

  width: 100%;
  max-width: 900px;
  height: 1px;

  margin: 0 auto 120px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.12),
    transparent
  );
}

.vera-use-access::before {
  opacity: 0;
  pointer-events: none;
}

/* centered editorial container */
.vera-use-access-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;

  text-align: center;
}

/* title spacing tweak */
.vera-use-access .vera-section-title {
  margin-bottom: 32px;
}

/* body copy */
.vera-use-access-text {
  font-size: 16px;
  line-height: 1.75;
  opacity: 0.9;

  max-width: 720px;
  margin: 0 auto 48px;
}

/* placeholder area (future input UI) */
.vera-use-access-placeholder {
  height: 120px;
  border-radius: 18px;

  background: rgba(255,255,255,0.035);
  border: 1px dashed rgba(255,255,255,0.18);

  display: flex;
  align-items: center;
  justify-content: center;
}

.vera-access-form {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.vera-access-form input {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 12px 14px;
  color: #eaeaea;
  font-size: 14px;
}

.vera-access-form button {
  background: rgba(255,255,255,0.9);
  color: #000;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  cursor: pointer;
  font-size: 13px;
  letter-spacing: 0.14em;
}
.vera-access-note {
  margin-top: 16px;
  font-size: 13px;
  opacity: 0.55;
  text-align: center;
}

.vera-inline-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.85;
}

.vera-inline-link:hover {
  opacity: 1;
}

.type-title {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.type-title[data-typed="true"] {
  opacity: 1;
  transform: translateY(0);
}
.typing-cursor::after {
  content: "";
  margin-left: 4px;
  animation: blink 1s infinite;
  opacity: 0.7;
}

@keyframes blink {
  0%, 50%, 100% { opacity: 0.7; }
  25%, 75% { opacity: 0; }
}
/* subtle vertical guide */
/* #about-vera .hero-split::before {
  content: "";
  position: absolute;

  left: 18%;
  transform: translateX(-18%); 

  top: -20px;
  width: 1px;
  height: 160px;

  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255,255,255,0.15),
    transparent
  );
}

/* optional: reduce total void slightly */
#about-vera.hero {
  max-height: 90vh;
} */

.vera-tag {
  font-size: 0.8em;
  opacity: 0.7;
  margin-left: 0.4em;
}

.vera-note {
  opacity: 0.85;
  font-style: italic;
}

.patch-notes {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;   /* 🔑 reduced */
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;

  margin: 0 0 28px 0;
}

.vera-log h2 {
  margin: 0 0 14px 0; /* VERSION close to PATCH NOTES */
  font-size: 1.6rem;
  letter-spacing: 0.12em;
}

.vera-log p {
  margin-top: 0;     /* prevent push-down */
}

.vera-log {
  position: relative;          /* REQUIRED */
  padding: 140px 8vw;
  background: transparent;     /* inherits body gradient */
}

.vera-log::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  margin-top: 90px;

  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.14),
    transparent
  );
}
.vera-log-inner {
  max-width: 900px;
  margin: 0 auto;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: #e6e6e6;
}

/* main container */
.patch-collapse {
  margin-top: 12px;
}

/* remove default marker */
.patch-collapse summary,
.patch-version summary {
  list-style: none;
}

.patch-collapse summary::-webkit-details-marker,
.patch-version summary::-webkit-details-marker {
  display: none;
}

/* MAIN TITLE (PATCH NOTES / DEV LOGS) */
.patch-main-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.9;

  cursor: pointer;
  position: relative;
  padding-right: 28px;
}

/* VERSION HEADINGS */
.patch-version summary {
  font-size: 1.6rem;
  letter-spacing: 0.12em;
  cursor: pointer;

  margin-top: 28px;
  padding-right: 24px;
  position: relative;
}

/* arrow indicator */
.patch-collapse summary::after,
.patch-version summary::after {
  content: "▸";
  position: absolute;
  right: 0;
  top: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
  opacity: 0.6;
}

.patch-collapse[open] > summary::after,
.patch-version[open] > summary::after {
  transform: rotate(90deg);
  opacity: 1;
}
.patch-collapse[open] > .patch-version:first-of-type {
  margin-top: 32px;
}

/* also add slight bottom padding to main title */
.patch-main-title {
  padding-bottom: 12px;
}
/* subtle spacing */
.patch-version[open] {
  padding-bottom: 12px;
}
.patch-version[open] > *:not(summary):first-of-type {
  margin-top: 18px;
}

/* slightly more breathing room under summary */
.patch-version summary {
  padding-bottom: 8px;
}
.patch-version summary {
  font-weight: 600;
}
/* soften hr when inside collapsible */
.patch-collapse hr {
  margin: 36px 0;
}
.patch-collapse .patch-version {
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

/* stagger class added via JS */
.patch-collapse.animate-versions .patch-version {
  opacity: 1;
  transform: translateY(0);
}

.patch-collapse[data-closing="true"],
.patch-version[data-closing="true"] {
  pointer-events: none;
}
.patch-version .patch-content {
  opacity: 0;
  transform: translateY(-25px);
  max-height: 0;
  overflow: hidden;
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    max-height 0.6s ease;
}

.patch-version.animate .patch-content {
  opacity: 1;
  transform: translateY(0);
  max-height: 10000px;
}
.vera-log h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  letter-spacing: 0.08em;
}

.vera-log h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.1rem;
  text-transform: uppercase;
  opacity: 0.85;
}

.vera-log p {
  line-height: 1.7;
  opacity: 0.9;
}

.vera-log ul {
  padding-left: 20px;
  line-height: 1.7;
}

.vera-log ul ul {
  margin-top: 6px;
}

.vera-log li {
  margin-bottom: 6px;
}

.vera-log hr {
  margin: 48px 0;
  border: none;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.scroll-reveal {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(6px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease,
    filter 0.9s ease;
}

/* When revealed */
.scroll-reveal.visible {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.hero-split.reverse {
  grid-template-columns: 1fr auto;
}

.hero-text-left {
  justify-self: start;
}

.hero-label-right {
  display: flex;
  justify-content: flex-start;
}

/* Static label (no pulse here) */
.hero-label.static {
  opacity: 0.55;
  cursor: default;
}

.hero-label.visible {
  animation: veraOpacityPulse 1.8s ease-in-out infinite;
}

@keyframes veraOpacityPulse {
  0% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.85;
  }
  100% {
    opacity: 0.35;
  }
}

.hero-headline {
  margin-left: 32px;
  margin-bottom: 16px;

  font-size: clamp(1.35rem, 2.2vw, 1.65rem); /* 🔑 reduced */
  font-weight: 500;

  letter-spacing: 0.06em;   /* subtle, not shouty */
  text-transform: none;

  color: rgba(255,255,255,0.85);

  line-height: 1.25;
  min-height: 1.3em;
}
/* =========================
   ABOUT ME — LINK LABEL
========================= */

.about-me-layout {
  align-items: flex-start;
}

#about-me .hero-split {
  justify-content: flex-start;
}

.about-me-text {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  margin-top: 60px; /* 🔑 shifts label + paragraph down */
}

#about-me .hero-text {
  text-align: left;
  margin-left: -8px; /* 🔑 shifts only the paragraph */
}

#about-me .hero-text {
  text-align: left;
}

/* clickable label */
.about-me-label {
  display: inline-block;
  font-size: 1.3rem;        /* 🔑 bigger */
  letter-spacing: 0.24em;
  text-transform: uppercase;
  opacity: 0.8;
  margin-bottom: 24px;
  text-decoration: none;
  color: inherit;
}

.about-me-label:hover {
  opacity: 1;
}

/* =========================
   ABOUT ME — PHOTO
========================= */

.about-me-photo {
  width: 100%;
  max-width: 360px;       /* controls image size */
  height: auto;
  border-radius: 14px;
  object-fit: cover;

  /* subtle cinematic feel */
  box-shadow: 0 20px 60px rgba(0,0,0,0.35);
}

.about-me-label {
  animation: veraOpacityPulse 2.2s ease-in-out infinite;
}

/* =========================
   OTHER PROJECTS — FINAL
========================= */

#other-projects {
  align-items: flex-start;
  padding-top: 160px;
}

/* wrapper */
.other-projects-wrap {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

/* clickable title */
.other-projects-title {
  font-size: 1.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.75;

  text-decoration: none;
  color: inherit;
}

.other-projects-title:hover {
  opacity: 1;
}

/* =========================
   PROJECT CARDS (SCALED UP)
========================= */

.projects-list {
  width: 100%;
  max-width: 900px;

  display: flex;
  flex-direction: column;
  gap: 32px;
}

.project-item {
  display: block;
  padding: 32px 36px;
  border-radius: 18px;

  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(6px);

  text-decoration: none;
  color: inherit;

  transition:
    transform 0.35s ease,
    background 0.35s ease;
}

.project-item:hover {
  background: rgba(255,255,255,0.07);
  transform: translateY(-4px);
}

.project-item h3 {
  margin: 0 0 10px;
  font-size: 1.3rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-item p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  opacity: 0.85;
}

.other-projects-title {
  animation: veraOpacityPulse 2.6s ease-in-out infinite;
}

/* =========================
   CREDITS — RED BARRELS INSPIRED
========================= */

#credits {
  align-items: flex-start;
  padding-top: 180px;
  padding-bottom: 220px;
}

.credits-eyebrow {
  display: block;

  font-size: 1.5rem;          /* slightly larger */
  font-weight: 600;            /* 🔑 makes it read as a title */
  letter-spacing: 0.26em;      /* tighter = stronger */
  text-transform: uppercase;

  color: rgba(255,255,255,0.85);  /* 🔑 higher contrast */
  opacity: 1;                  /* no fade */

  margin-bottom: 40px;
}


/* content container */
.credits-content {
  max-width: 420px;
}

/* individual blocks */
.credits-block {
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 28px;
  color: rgba(255,255,255,0.85);
}

.credits-block strong {
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* link styling — Red Barrels style */
.credits-link {
  display: inline-block;
  margin-top: 8px;

  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;

  color: rgba(255,255,255,0.7);
  text-decoration: none;
}

.credits-link:hover {
  color: rgba(255,255,255,0.95);
}

/* large right-side label */
.credits-label {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  letter-spacing: 0.38em;
  opacity: 0.25;
  text-transform: uppercase;
  user-select: none;
}

body:not(.vera-app-route) #home {
  transition: opacity 1.4s cubic-bezier(0.22, 0.8, 0.2, 1);
}
