/* ITZLYT — Design tokens (renovated) */
:root {
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --bg: #08080a;
  --bg-surface: #0f0f12;
  --bg-elevated: #16161a;
  --bg-card: rgba(22, 22, 26, 0.7);
  --accent: #f97316;
  --accent-hover: #fdba74;
  --accent-bright: #ff9f43;
  --accent-glow: rgba(249, 115, 22, 0.3);
  --accent-subtle: rgba(249, 115, 22, 0.1);
  --text: #fafafa;
  --text-muted: rgba(250, 250, 250, 0.7);
  --text-dim: rgba(250, 250, 250, 0.5);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);
  --font-display: 'Syne', sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 48px rgba(0, 0, 0, 0.45);
}

/* Reset & base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}

html.js-loaded body {
  opacity: 0;
  transition: opacity 0.4s var(--ease-out-quart);
}

html.js-loaded body.page-ready {
  opacity: 1;
}

html.js-loaded body.page-exit {
  opacity: 0;
  transition: opacity 0.25s var(--ease-out-quart);
}

@media (prefers-reduced-motion: reduce) {
  html.js-loaded body,
  html.js-loaded body.page-ready,
  html.js-loaded body.page-exit {
    opacity: 1;
    transition: none;
  }
}

main:focus {
  outline: none;
}

/* Skip link — accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  z-index: 1000;
  padding: 0.75rem 1.25rem;
  background: var(--accent);
  color: white;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: top var(--transition);
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Header */
#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition), transform 0.5s var(--ease-out-expo), opacity 0.4s var(--ease-out-quart);
  transform: translateY(-8px);
  opacity: 0;
}

html.js-loaded body.page-ready #header {
  transform: translateY(0);
  opacity: 1;
  transition-delay: 0.05s;
}

html:not(.js-loaded) #header {
  transform: none;
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  html.js-loaded #header {
    transform: none;
    opacity: 1;
  }
}

#header.scrolled {
  background: rgba(8, 8, 10, 0.9);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: 0.75rem 2rem;
  box-shadow: var(--shadow);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.03em;
  transition: color var(--transition);
}

.logo:hover {
  color: var(--accent);
}

.logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

/* Nav — desktop */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2.25rem;
}

nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color var(--transition);
}

nav a:hover,
nav a.active {
  color: var(--accent);
}

nav a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}


/* Hamburger — mobile */
#nav-toggle {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  min-width: 44px;
  min-height: 44px;
  color: var(--text);
}

#nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: var(--radius);
}

#nav-toggle .hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

#nav-toggle[aria-expanded="true"] .hamburger:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

#nav-toggle[aria-expanded="true"] .hamburger:nth-child(2) {
  opacity: 0;
}

#nav-toggle[aria-expanded="true"] .hamburger:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

@media (max-width: 768px) {
  #header {
    padding: 1rem 1.25rem;
  }

  #header.scrolled {
    padding: 0.75rem 1.25rem;
  }

  #nav-toggle {
    display: flex;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(8, 8, 10, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition);
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border);
  }

  /* Without JS: nav visible for accessibility */
  html:not(.js-loaded) #nav-menu {
    max-height: 300px;
  }

  html.js-loaded #nav-menu {
    max-height: 0;
  }

  html.js-loaded #nav-menu.open {
    max-height: 280px;
  }

  nav ul {
    flex-direction: column;
    padding: 1.25rem 1.5rem;
    gap: 0.25rem;
  }

  nav a {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    font-size: 1rem;
    min-height: 44px;
  }
}

/* Hero — home */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 5rem;
  overflow: hidden;
}

@media (max-width: 768px) {
  .hero {
    padding: 5rem 1.5rem 4rem;
    min-height: 90vh;
  }

  .hero-content {
    width: 100%;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .hero-cta .btn {
    width: 100%;
    max-width: 280px;
  }
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  animation: orbFloat 20s ease-in-out infinite;
}

.gradient-orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  top: -150px;
  right: -120px;
  animation-delay: 0s;
}

.gradient-orb-2 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.2) 0%, transparent 65%);
  bottom: 15%;
  left: -100px;
  animation-delay: -7s;
}

.gradient-orb-3 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(234, 88, 12, 0.15) 0%, transparent 65%);
  top: 45%;
  left: 40%;
  animation-delay: -14s;
}

@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -20px) scale(1.05); }
}

.noise-overlay {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 14vw, 7rem);
  letter-spacing: -0.05em;
  margin: 0 0 0.75rem;
  color: var(--text);
  line-height: 0.95;
}

.hero .tagline {
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  color: var(--text-muted);
  margin: 0;
  font-weight: 500;
}

.hero .hero-sub {
  font-size: 1rem;
  color: var(--text-dim);
  margin: 0.5rem 0 2rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.75rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: white;
  border: none;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-outline:active {
  transform: scale(0.98);
}

.btn-outline {
  background: transparent;
  color: var(--text-muted);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.btn:focus-visible {
  outline: 2px solid white;
  outline-offset: 2px;
}

.btn-outline:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Value prop — home */
.value-prop {
  padding: 4rem 2rem;
}

@media (max-width: 600px) {
  .value-prop {
    padding: 3rem 1.25rem;
  }

  .value-prop-title {
    margin-bottom: 2rem;
  }

  .quick-links {
    padding: 2rem 1.25rem 4rem;
  }
}

.value-prop-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  letter-spacing: -0.02em;
  text-align: center;
  margin: 0 0 2.5rem;
  color: var(--text);
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.value-item {
  text-align: center;
}

.value-num {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.value-item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.6;
}

/* Link cards — home */
.quick-links {
  padding: 2rem 2rem 6rem;
}

.quick-links-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
  text-align: center;
}

.link-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

.link-cards .link-card {
  min-height: 140px;
}

@media (max-width: 768px) {
  .link-cards {
    grid-template-columns: 1fr;
  }

  .link-card {
    min-height: auto;
    padding: 1.5rem 1.25rem;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .link-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.link-card {
  display: block;
  background: var(--bg-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  text-decoration: none;
  color: inherit;
  transition: background 0.25s var(--ease-out-expo), border-color 0.25s var(--ease-out-expo), transform 0.3s var(--ease-out-expo), box-shadow 0.3s var(--ease-out-expo);
  cursor: pointer;
}

.link-card:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius-lg);
}

.link-card:hover {
  background: rgba(26, 26, 26, 0.8);
  border-color: rgba(249, 115, 22, 0.3);
  transform: translateY(-4px) scale(1.01);
  box-shadow: var(--shadow-lg), 0 0 30px var(--accent-glow);
}

.link-card-icon {
  display: inline-block;
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 0.75rem;
  transition: transform var(--transition);
}

.link-card:hover .link-card-icon {
  transform: translateX(4px);
}

.link-card h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.link-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Page hero — subpages */
.page-hero {
  position: relative;
  padding: 8rem 2rem 4rem;
  overflow: hidden;
}

.page-hero-compact {
  padding: 6rem 2rem 3rem;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-hero-bg .gradient-orb-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -80px;
}

.page-hero-bg .gradient-orb-2 {
  width: 280px;
  height: 280px;
  bottom: -50px;
  left: -60px;
}

.founders-hero .founders-hero-orb {
  width: 200px;
  height: 200px;
  top: 50%;
  left: 50%;
  margin: -100px 0 0 -100px;
  animation: orbFloat 15s ease-in-out infinite reverse;
  animation-delay: -5s;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.page-subtitle {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Opening animation — hero content on page load */
@keyframes heroOpen {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-hero.hero-open .page-title.reveal {
  animation: heroOpen 0.6s var(--ease-out-expo) forwards;
}

.page-hero.hero-open .page-subtitle.reveal {
  opacity: 0;
  animation: heroOpen 0.5s var(--ease-out-expo) 0.15s forwards;
}

/* Sections */
.section {
  padding: 4rem 2rem 5rem;
  position: relative;
}

@media (max-width: 600px) {
  .section {
    padding: 3rem 1.25rem 4rem;
  }

  .feature-block {
    padding: 1.5rem 1.25rem;
  }

  .about-lead {
    font-size: 1.1rem;
  }

  .about-toc-inline .about-toc-link {
    min-height: 44px;
    padding: 0.6rem 1.1rem;
    display: inline-flex;
    align-items: center;
  }
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.container-narrow {
  max-width: 720px;
  padding: 0 1.25rem;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.02em;
  margin: 0 0 2rem;
  color: var(--text);
}

/* Content blocks */
.content-section {
  padding-top: 2rem;
}

.content-block {
  margin-bottom: 2.5rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.content-block h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.content-block .lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.75;
}

.content-block p {
  margin: 0 0 1rem;
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.content-block p:last-child {
  margin-bottom: 0;
}

.content-block a,
.about-cta-sub a,
.founders-cta-links a {
  color: var(--accent-bright);
  text-decoration: underline;
  text-decoration-color: rgba(249, 115, 22, 0.5);
  text-underline-offset: 3px;
  font-weight: 600;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.content-block a:hover,
.about-cta-sub a:hover,
.founders-cta-links a:hover {
  color: var(--accent-hover);
  text-decoration-color: var(--accent);
}

.content-block a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.styled-list {
  margin: 0.5rem 0 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
}

.styled-list li {
  margin-bottom: 0.5rem;
}

.styled-list li:last-child {
  margin-bottom: 0;
}

/* About page — fit in viewport, no scroll */
.about-page-body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.about-page-body main {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-page-body .page-hero.page-hero-compact {
  padding: 5rem 2rem 1rem;
  flex-shrink: 0;
}

.about-page-body .page-hero .page-title {
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 0.25rem;
}

.about-page-body .page-hero .page-subtitle {
  font-size: 0.95rem;
}

.about-page-body .about-intro {
  padding: 0.75rem 2rem 1rem;
  flex-shrink: 0;
}

.about-page-body .about-lead {
  font-size: 1rem;
  line-height: 1.5;
  margin: 0;
}

.about-page-body .about-toc-inline {
  margin-top: 1rem;
}

.about-page-body .about-carousel-wrapper {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.about-page-body .about-carousel {
  flex: 1;
  min-height: 0;
}

.about-page-body .about-slide {
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-y: auto;
}

.about-page-body .about-slide .feature-block {
  padding: 1.25rem 1.5rem;
}

.about-page-body .about-slide .feature-block-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.about-page-body .about-slide .feature-block p,
.about-page-body .about-slide .feature-block-list {
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-page-body .about-slide .feature-block-list {
  margin-top: 0.75rem;
}

.about-page-body .about-cta-compact {
  padding: 0.75rem 2rem 1rem;
  flex-shrink: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-page-body .about-cta-compact .about-cta-sub {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.about-page-body .about-cta-compact .about-cta-sub a {
  font-weight: 600;
  transition: color var(--transition);
}

.about-page-body footer {
  flex-shrink: 0;
  padding: 1rem 2rem;
  background: rgba(13, 13, 13, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-page-body .footer-inner {
  gap: 1rem;
  padding: 0.25rem 0;
}

.about-page-body .footer-logo {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.about-page-body .footer-nav {
  gap: 1.5rem;
}

.about-page-body .footer-nav a {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.about-page-body .footer-nav a:hover {
  color: var(--accent-bright);
}

.about-page-body .footer-copy {
  font-size: 0.75rem;
  color: var(--text-dim);
  letter-spacing: 0.02em;
}

@media (max-width: 768px) {
  .about-page-body .page-hero.page-hero-compact {
    padding: 4.5rem 1.25rem 0.75rem;
  }

  .about-page-body .about-intro {
    padding: 0.5rem 1.25rem 0.75rem;
  }

  .about-page-body .about-slide {
    padding: 1rem 1.25rem;
  }

  .about-page-body .about-slide .feature-block {
    padding: 1rem 1.25rem;
  }

  .about-page-body .about-cta-compact {
    padding: 0.5rem 1.25rem;
  }

  .about-page-body footer {
    padding: 0.875rem 1.25rem;
  }

  .about-page-body .footer-inner {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
  }

  .about-page-body .footer-nav {
    gap: 1rem;
  }

  .about-page-body .footer-copy {
    width: 100%;
    text-align: center;
  }
}

/* About page — reworked */
.about-intro {
  padding-top: 0;
  padding-bottom: 2rem;
}

.about-lead {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  max-width: 56ch;
}

/* About carousel — horizontal scroll / swipe */
.about-carousel-wrapper {
  overflow: hidden;
  margin: 0 -1.5rem;
}

.about-carousel {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.about-carousel::-webkit-scrollbar {
  display: none;
}

.about-slide {
  flex: 0 0 100%;
  min-width: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding: 2rem 1.5rem 4rem;
  box-sizing: border-box;
}

.about-slide .feature-block {
  max-width: 560px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .about-carousel-wrapper {
    margin: 0 -2rem;
  }

  .about-slide {
    padding: 3rem 2rem 5rem;
  }
}

/* Inline section links — above carousel */
.about-toc-inline {
  margin-top: 2.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.about-toc-inline .about-toc-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: color var(--transition), background var(--transition), border-color var(--transition), transform 0.2s ease;
}

.about-toc-inline .about-toc-link:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.about-toc-inline .about-toc-link.active {
  color: var(--accent);
  background: var(--accent-subtle);
  border-color: rgba(234, 88, 12, 0.35);
}

.about-toc-inline .about-toc-link:active {
  transform: scale(0.98);
}

.about-toc-inline .about-toc-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.feature-block {
  background: rgba(26, 26, 26, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 2rem 2.25rem;
  transition: border-color var(--transition);
}

.feature-block:hover {
  border-color: rgba(234, 88, 12, 0.15);
}

.feature-block-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 0 1rem;
  color: var(--text);
}

.feature-block p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.feature-block-list {
  margin: 0;
  padding-left: 1.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.feature-block-list li {
  margin-bottom: 0.35rem;
}

.feature-block-list li:last-child {
  margin-bottom: 0;
}

/* Venues page */


.about-cta {
  padding: 4rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.about-cta-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.about-cta-sub {
  margin: 0;
}


/* Founders */
.founders-intro {
  padding-top: 0;
  padding-bottom: 2rem;
}

.founders-lead {
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
  text-align: center;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.founders-section {
  padding-top: 0;
}

.founders-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}

.founder-card {
  background: rgba(26, 26, 26, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s var(--ease-out-expo), border-color 0.3s ease;
}

.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg), 0 0 50px rgba(234, 88, 12, 0.15), 0 20px 40px -20px rgba(0, 0, 0, 0.4);
  border-color: rgba(234, 88, 12, 0.25);
}

/* Alternate slide-in: odd from left, even from right */
.founder-card:nth-child(odd).reveal {
  transform: translateX(-40px) translateY(24px);
}

.founder-card:nth-child(even).reveal {
  transform: translateX(40px) translateY(24px);
}

.founder-card:nth-child(odd).reveal.visible {
  transform: translateX(0) translateY(0);
}

.founder-card:nth-child(even).reveal.visible {
  transform: translateX(0) translateY(0);
}

.founder-card:nth-child(odd):hover {
  transform: translateY(-6px);
}

.founder-card:nth-child(even):hover {
  transform: translateY(-6px);
}

.founder-card-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding: 2.5rem;
}

.founder-photo {
  flex-shrink: 0;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(234, 88, 12, 0.25) 0%, rgba(234, 88, 12, 0.06) 100%);
  border: 2px solid rgba(234, 88, 12, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo), box-shadow 0.4s ease;
}

.founder-card:hover .founder-photo {
  transform: scale(1.08);
  box-shadow: 0 0 30px rgba(234, 88, 12, 0.25);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease-out-expo);
}

.founder-card:hover .founder-photo img {
  transform: scale(1.05);
}

.founder-photo .initials {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.02em;
  color: var(--accent);
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.founder-card:hover .founder-photo .initials {
  color: var(--accent-hover);
  text-shadow: 0 0 20px rgba(234, 88, 12, 0.4);
}

.founder-info {
  flex: 1;
  min-width: 0;
}

.founder-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  margin: 0 0 0.25rem;
  color: var(--text);
}

.founder-role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
}

.founder-bio {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.founders-cta {
  padding-top: 2rem;
  padding-bottom: 3rem;
  text-align: center;
}

.founders-cta-text {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text);
}

.founders-cta-links {
  margin: 0;
}

.founders-cta-links a {
  position: relative;
  font-weight: 600;
  transition: color var(--transition), text-decoration-color var(--transition);
}

.founders-cta-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--ease-out-expo);
}

.founders-cta-links a:hover {
  color: var(--accent-hover);
}

.founders-cta-links a:hover::after {
  width: 100%;
}

.founders-cta-links .sep {
  color: var(--text-dim);
  margin: 0 0.5rem;
}

@media (max-width: 640px) {
  .founder-card-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.5rem;
    gap: 1.5rem;
  }

  .founder-photo {
    width: 120px;
    height: 120px;
  }

  .founder-photo .initials {
    font-size: 1.75rem;
  }

  .founder-name {
    font-size: 1.35rem;
  }

  .founders-lead {
    font-size: 1.1rem;
  }
}

/* Footer */
footer {
  padding: 3rem 2rem;
  border-top: 1px solid var(--border);
  background: var(--bg-surface);
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.footer-logo:hover {
  color: var(--accent);
}

.footer-nav {
  display: flex;
  gap: 2rem;
}

.footer-nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--accent-bright);
}

.footer-nav a:focus-visible,
.footer-logo:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-copy {
  margin: 0;
  color: var(--text-dim);
  font-size: 0.85rem;
}

@media (max-width: 600px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    order: 2;
  }

  .footer-copy {
    order: 3;
  }
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal[data-delay="100"].visible {
  transition-delay: 0.08s;
}

.reveal[data-delay="200"].visible {
  transition-delay: 0.16s;
}

.reveal[data-delay="300"].visible {
  transition-delay: 0.24s;
}

.reveal[data-delay="400"].visible {
  transition-delay: 0.32s;
}

.reveal[data-delay="50"].visible {
  transition-delay: 0.05s;
}

.reveal[data-delay="150"].visible {
  transition-delay: 0.12s;
}

.reveal[data-delay="250"].visible {
  transition-delay: 0.2s;
}

/* Back to top */
.back-to-top {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  padding: 0.75rem 1rem;
  min-height: 44px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.back-to-top:hover {
  color: var(--accent);
}

.back-to-top:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: var(--radius);
}

/* Table of contents — long pages */
.toc {
  background: rgba(26, 26, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 2.5rem;
}

.toc h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0 0 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.toc a {
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  min-height: 44px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color var(--transition);
}

.toc a:hover,
.toc a.active {
  color: var(--accent);
}

.toc a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* FAQ page */
.faq-list {
  margin: 0;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  transition: border-color var(--transition);
}

.faq-item.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s var(--ease-out-expo), transform 0.5s var(--ease-out-expo), border-color var(--transition);
}

.faq-item.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-item.reveal[data-delay="50"].visible { transition-delay: 0.05s; }
.faq-item.reveal[data-delay="100"].visible { transition-delay: 0.08s; }
.faq-item.reveal[data-delay="150"].visible { transition-delay: 0.12s; }
.faq-item.reveal[data-delay="200"].visible { transition-delay: 0.16s; }
.faq-item.reveal[data-delay="250"].visible { transition-delay: 0.2s; }

.faq-item:last-child {
  border-bottom: none;
}

.faq-item[open] {
  border-bottom-color: var(--border-hover);
}

.faq-question {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.4;
  padding: 1.25rem 2rem 1.25rem 0;
  margin: 0;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  position: relative;
  transition: color var(--transition);
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.25s var(--transition), transform 0.25s var(--ease-out-expo);
}

.faq-item[open] .faq-question::after {
  content: '−';
  color: var(--accent);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-question:hover {
  color: var(--accent);
}

.faq-answer {
  margin: 0;
  padding: 0 0 1.5rem 0;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .gradient-orb {
    animation: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Print */
@media print {
  .skip-link,
  #header,
  .hero-bg,
  .gradient-orb,
  .noise-overlay,
  .page-hero-bg,
  .back-to-top {
    display: none !important;
  }

  body {
    background: white;
    color: #111;
  }

  a {
    color: #111;
  }

  .hero,
  .page-hero {
    padding: 2rem 0;
    min-height: auto;
  }

  .hero h1,
  .page-title {
    color: #111;
  }

  .tagline,
  .page-subtitle,
  .hero-sub,
  .value-item p,
  .link-card p,
  .content-block p,
  .styled-list {
    color: #333;
  }

  .value-num,
  .founder-role {
    color: #c2410c;
  }
}
