/* === RESET & BASE === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #1a1714;
  --bg-card: #252220;
  --bg-card-hover: #2e2b28;
  --gold: #d4a853;
  --gold-light: #fccb7f;
  --white: #f0ece4;
  --gray: #a09888;
  --gray-dim: #6b6258;
  --text: #e8e0d4;
  --font-serif: 'Roboto Serif', Georgia, serif;
  --font-sans: 'Roboto', -apple-system, sans-serif;
  --slide-w: 100vw;
  --slide-h: 100vh;
}

html, body {
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

/* === DECK CONTAINER === */
.deck {
  display: flex;
  height: 100vh;
  transition: transform 0.7s cubic-bezier(0.65, 0, 0.35, 1);
  will-change: transform;
}

/* === SLIDE BASE === */
.slide {
  min-width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 48px 64px;
}

/* Background decorative elements */
.bg-circles {
  position: absolute;
  right: -20%;
  bottom: -30%;
  width: 80%;
  height: auto;
  opacity: 0.4;
  pointer-events: none;
  z-index: 0;
}

.bg-glow {
  position: absolute;
  right: -10%;
  bottom: -20%;
  width: 70%;
  height: auto;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
}

.slide-content {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* === FOOTER === */
.slide-footer {
  position: absolute;
  bottom: 24px;
  left: 64px;
  right: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.footer-left {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--gray);
  letter-spacing: 0.5px;
}

.footer-logo {
  width: 24px;
  height: 24px;
}

/* === NAVIGATION === */
.nav-dots {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 100;
}

.nav-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gray-dim);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  padding: 0;
}

.nav-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 4px;
}

.nav-arrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  z-index: 100;
  pointer-events: none;
}

.nav-arrow {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--gray);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  transition: all 0.3s ease;
  backdrop-filter: blur(8px);
}

.nav-arrow:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.nav-arrow:disabled {
  opacity: 0.2;
  cursor: default;
}

.slide-counter {
  position: fixed;
  top: 24px;
  right: 64px;
  font-size: 13px;
  color: var(--gray-dim);
  z-index: 100;
  font-variant-numeric: tabular-nums;
}

/* === TYPOGRAPHY HELPERS === */
.gold { color: var(--gold-light); }
.gold-text { color: var(--gold); }
.italic { font-style: italic; }
.underline-gold { text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 4px; }
.slide-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}

/* === MEDIA PLACEHOLDERS === */
.media-placeholder {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-dim);
  font-size: 13px;
  min-height: 120px;
  overflow: hidden;
}

/* === CHIP === */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 13px;
  color: var(--text);
  background: transparent;
}

.chip-icon {
  font-style: normal;
  font-size: 11px;
  opacity: 0.6;
}

/* ============================
   SLIDE 1: HERO
   ============================ */
.hero-content {
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding-top: 4vh;
  overflow: hidden;
}

.slide-hero::before {
  content: '';
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(180, 150, 80, 0.15) 0%, rgba(120, 100, 60, 0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  line-height: 1.3;
  color: var(--white);
  margin-bottom: 44px;
  font-variant-numeric: lining-nums proportional-nums;
}

.phone-mockup {
  position: relative;
  flex: 1;
  overflow: visible;
  display: flex;
  justify-content: center;
  margin-bottom: -15vh;
}

.phone-frame {
  width: 320px;
  height: 620px;
  background: linear-gradient(145deg, #c0c0c0 0%, #a0a0a0 30%, #888 60%, #a0a0a0 100%);
  border-radius: 44px;
  padding: 6px;
  position: relative;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  animation: phoneFloat 4s ease-in-out infinite;
}

.phone-btn {
  position: absolute;
  background: linear-gradient(180deg, #b0b0b0 0%, #888 100%);
  border-radius: 2px;
  z-index: 3;
}

.phone-btn-silent {
  left: -3px;
  top: 100px;
  width: 3px;
  height: 24px;
}

.phone-btn-volup {
  left: -3px;
  top: 148px;
  width: 3px;
  height: 40px;
}

.phone-btn-voldown {
  left: -3px;
  top: 196px;
  width: 3px;
  height: 40px;
}

.phone-btn-power {
  right: -3px;
  top: 168px;
  width: 3px;
  height: 52px;
}

.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 84px;
  height: 22px;
  background: #000;
  border-radius: 12px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 16px;
}

.phone-camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: radial-gradient(circle, #1a1a3a 30%, #0a0a2a 60%, #333 100%);
  box-shadow: 0 0 2px rgba(255, 255, 255, 0.1);
}

.phone-screen {
  width: 100%;
  height: 100%;
  padding: 52px 22px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0d0d0d;
  border-radius: 38px;
  overflow: hidden;
}

.screen-logo {
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
}

.screen-heading {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  margin-bottom: 10px;
}

.screen-sub {
  font-size: 13px;
  color: var(--gray);
  margin-bottom: 28px;
}

.screen-input {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  padding: 14px 14px 14px 16px;
  margin-bottom: 18px;
}

.screen-input-text {
  font-size: 11px;
  color: var(--gray-dim);
  flex: 1;
  line-height: 1.4;
}

.screen-mic {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.screen-chips {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.screen-chip-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}

.screen-chip {
  font-size: 11px;
  color: var(--white);
  padding: 9px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.screen-chip i {
  font-style: normal;
  font-size: 12px;
  opacity: 0.5;
}

.screen-chip-wide {
  padding: 8px 28px;
}

.slide.active .screen-chips .screen-chip {
  transition: border-color 0.4s ease, background 0.4s ease, box-shadow 0.4s ease;
}

.screen-chip.chip-glow {
  border-color: rgba(212, 168, 83, 0.85);
  background: rgba(212, 168, 83, 0.25);
  box-shadow: 0 0 24px rgba(212, 168, 83, 0.45), 0 0 6px rgba(212, 168, 83, 0.3), inset 0 0 10px rgba(212, 168, 83, 0.12);
  color: #fff;
}

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}

/* ============================
   SLIDE 2: SOCIAL PROOF
   ============================ */
.proof-content {
  flex-direction: row;
  gap: 48px;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.proof-card {
  flex: 0 1 420px;
}

.proof-header {
  margin-bottom: 20px;
}

.proof-name {
  font-family: var(--font-serif);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}

.proof-role {
  font-size: 13px;
  color: var(--gold);
  font-style: italic;
}

.proof-media {
  margin-bottom: 16px;
}

.proof-video {
  width: 100%;
  border-radius: 12px;
  background: #111;
}

.proof-tweet-img {
  width: 100%;
  max-height: 50vh;
  object-fit: contain;
  object-position: top left;
  border-radius: 12px;
}

.proof-quote {
  font-size: 13px;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 12px;
}

.proof-quote em {
  font-style: italic;
}

.proof-date {
  font-size: 12px;
  color: var(--gray-dim);
}

.proof-caption {
  display: none;
  font-size: 13px;
  line-height: 1.5;
  color: var(--gray);
  font-style: italic;
  min-height: 2.5em;
  text-align: center;
  transition: opacity 0.3s ease;
}

/* ============================
   SLIDE 3: PRODUCT INTRO
   ============================ */
.intro-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.intro-logo {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
}

.intro-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 12px;
}

.intro-sub {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 32px;
}

.intro-input {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 18px 24px;
  max-width: 640px;
  width: 100%;
  margin-bottom: 16px;
}

.intro-input span {
  font-size: 14px;
  color: var(--gray-dim);
  flex: 1;
  text-align: left;
}

.intro-typing-text::after {
  content: '|';
  color: var(--gold);
  animation: cursorBlink 0.7s step-end infinite;
  margin-left: 1px;
}

.intro-mic {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

.intro-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 48px;
}

.intro-reveal {
  text-align: center;
}

.intro-dots {
  font-size: clamp(24px, 3vw, 40px);
  color: var(--gray);
  margin-bottom: 8px;
}

.intro-quant {
  font-family: var(--font-serif);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 400;
  color: var(--gold-light);
}

/* ============================
   SLIDE 4: THE PAIN
   ============================ */
.pain-content {
  flex-direction: row;
  gap: 32px;
  align-items: stretch;
}

.pain-left {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.5vw, 36px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 24px;
}

.pain-list {
  list-style: none;
  margin-bottom: 24px;
}

.pain-list li {
  font-size: 15px;
  color: var(--text);
  padding: 6px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pain-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--gold);
  flex-shrink: 0;
}

.pain-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 16px;
}

.pain-highlight {
  font-size: 15px;
  line-height: 1.7;
  color: var(--gold);
}

.pain-right {
  flex: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 0;
}

.pain-phones {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(12px, 1.5vw, 24px);
  width: 100%;
  height: 100%;
}

.pain-phone {
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6));
  flex-shrink: 0;
}

.pain-phone-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  background: var(--bg);
}

.pain-phone-1 {
  width: min(220px, 18vw);
}

.pain-phone-2 {
  width: min(220px, 18vw);
}

.pain-phone-3 {
  width: min(220px, 18vw);
}

/* ============================
   SLIDE 5: THE SOLUTION
   ============================ */
.solution-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.solution-questions {
  margin-bottom: 32px;
}

.solution-q {
  font-family: var(--font-serif);
  color: var(--white);
  margin-bottom: 16px;
}

.solution-q-1 {
  font-size: clamp(20px, 2.2vw, 30px);
}

.solution-q-2 {
  font-size: clamp(24px, 2.8vw, 36px);
}

.solution-q-3 {
  font-size: clamp(28px, 3.2vw, 44px);
}

.solution-pills {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.pill {
  padding: 12px 28px;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--white);
}

.solution-calm {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 16px;
}

.solution-possible {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4.5vw, 64px);
  font-weight: 400;
}

/* ============================
   SLIDE 6: CONVERSATION
   ============================ */
.conversation-content {
  flex-direction: row;
  gap: 56px;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.conversation-left {
  flex: 1;
  max-width: 480px;
}

.conversation-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 32px;
}

.conversation-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 18px;
  padding-left: 16px;
  border-left: 2px solid rgba(200, 170, 110, 0.2);
}

.conversation-highlight {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  padding: 16px 20px;
  background: rgba(200, 170, 110, 0.06);
  border: 1px solid rgba(200, 170, 110, 0.12);
  border-radius: 10px;
}

.conversation-right {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.macbook-mockup {
  width: 100%;
  max-width: 620px;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.4));
}

.macbook-screen {
  background: #1c1c1e;
  border-radius: 12px 12px 0 0;
  border: 2px solid #3a3a3c;
  border-bottom: none;
  padding: 8px 8px 0 8px;
  overflow: hidden;
}

.conversation-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

.macbook-base {
  background: linear-gradient(180deg, #3a3a3c 0%, #2c2c2e 100%);
  height: 14px;
  border-radius: 0 0 8px 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.macbook-notch {
  width: 60px;
  height: 4px;
  background: #4a4a4c;
  border-radius: 2px;
}

/* ============================
   SLIDE 7: AI ERA
   ============================ */
.ai-content {
  padding-top: 16px;
}

.ai-header {
  margin-bottom: 28px;
}

.ai-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.2;
}

.ai-body-wrap {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
}

.ai-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ai-card {
  padding: 14px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  border-left: 3px solid var(--gold);
}

.ai-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 0;
}

.ai-right {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ai-video-player {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px 8px 0 0;
}

.ai-transform {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.transform-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.transform-pill {
  padding: 8px 18px;
  border-radius: 24px;
  font-size: 13px;
  font-weight: 500;
}

.transform-pill.dark {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
}

.transform-pill.gold-bg {
  background: var(--gold);
  color: #1a1714;
}

.transform-arrow {
  color: var(--gold);
  font-size: 14px;
  font-weight: 600;
}

/* ============================
   SLIDE 8: TECHNOLOGY STACK
   ============================ */
.techstack-content {
  justify-content: center;
  padding-top: 0;
}

.techstack-header {
  margin-bottom: 28px;
}

.techstack-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 38px);
  color: var(--white);
  font-weight: 400;
}

.techstack-layers {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.tech-layer {
  display: flex;
  align-items: stretch;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.tech-layer:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(200, 170, 110, 0.2);
}

.layer-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  flex-shrink: 0;
  background: linear-gradient(180deg, rgba(200, 170, 110, 0.15) 0%, rgba(200, 170, 110, 0.05) 100%);
  border-right: 1px solid rgba(200, 170, 110, 0.15);
}

.layer-num {
  font-family: var(--font-mono, 'SF Mono', 'Fira Code', monospace);
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.layer-body {
  flex: 1;
  padding: 14px 20px;
}

.layer-name {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 3px;
  letter-spacing: 0.3px;
}

.layer-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
  margin-bottom: 8px;
}

.layer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 4px;
}

.layer-tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  background: rgba(200, 170, 110, 0.1);
  border: 1px solid rgba(200, 170, 110, 0.2);
  color: var(--gold-light);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.layer-example {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
  margin-top: 6px;
  opacity: 0.8;
}

.layer-meta {
  font-size: 11px;
  color: var(--gray-dim);
  margin-top: 6px;
  letter-spacing: 0.5px;
}

/* ============================
   SLIDE 9: VIRAL MARKETING
   ============================ */
.viral-content {
  flex-direction: row;
  gap: 40px;
  align-items: center;
  justify-content: center;
  padding-top: 0;
}

.viral-left {
  flex: 1;
}

.viral-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 2.8vw, 36px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 20px;
}

.viral-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 12px;
}

.viral-concept-label {
  font-size: 14px;
  color: var(--gold);
  margin-bottom: 8px;
}

.viral-quote {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.viral-right {
  flex: 1.5;
}

.viral-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding-bottom: 10px;
}

.viral-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
}

img.viral-img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.viral-caption {
  position: absolute;
  bottom: 28px;
  left: 12px;
  font-size: 11px;
  color: var(--white);
  background: rgba(0,0,0,0.7);
  padding: 4px 10px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
}

.viral-label {
  position: absolute;
  bottom: 8px;
  left: 12px;
  font-size: 10px;
  color: var(--gray-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================
   SLIDE 9: FEATURES
   ============================ */
.features-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.features-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 32px;
}

.features-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  max-width: 1000px;
  margin-bottom: 40px;
}

.feature-tag {
  display: inline-block;
  padding: 10px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 24px;
  font-size: 13px;
  color: var(--white);
}

.tag-dim {
  color: var(--gray-dim);
}

.features-monetize {
  text-align: center;
}

.monetize-label {
  font-size: 15px;
  color: var(--gold);
  margin-bottom: 8px;
}

.monetize-items {
  font-size: 15px;
  color: var(--gray);
}

/* ============================
   SLIDE 10: MARKET SIZE
   ============================ */
.market-content {
  align-items: center;
  justify-content: center;
  text-align: center;
}

.market-title {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 400;
  color: var(--white);
  margin-bottom: 40px;
}

.market-cards {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.market-card {
  flex: 1;
  border: 1px solid var(--gold);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  min-width: 200px;
}

.market-stat {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 4px;
}

.market-stat-sub {
  font-size: 14px;
  margin-bottom: 8px;
}

.market-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

.market-summary {
  text-align: center;
}

.market-summary p {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2.2vw, 28px);
  color: var(--white);
  line-height: 1.6;
}

/* ============================
   SLIDE 11: TEAM
   ============================ */
.team-content {
  justify-content: center;
  padding-top: 0;
}

.team-grid {
  margin-bottom: 32px;
}

.team-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 12px;
}

.team-member {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
}

.team-member.founder {
  padding: 16px 28px;
  gap: 14px;
}

.founder-photo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--gold);
}

.founder-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.team-name {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
}

.founder .team-name {
  font-size: 18px;
}

.team-role {
  font-size: 12px;
  color: var(--gold);
  font-style: italic;
}

.team-integrations {
  text-align: center;
}

.integrations-label {
  font-size: 16px;
  margin-bottom: 20px;
}

.chain-logos-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  align-items: center;
  max-width: 880px;
  margin: 0 auto;
}

.chain-logos-grid img {
  height: auto;
  max-height: 22px;
  max-width: 110px;
  width: auto;
  object-fit: contain;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.chain-logos-grid img[alt="Near"],
.chain-logos-grid img[alt="Venom"],
.chain-logos-grid img[alt="Bitcoin"] {
  max-height: 18px;
  max-width: 90px;
}

.chain-logos-grid img:hover {
  opacity: 1;
}

/* ============================
   SLIDE 12: CONTACT
   ============================ */
.contact-content {
  justify-content: center;
  align-items: center;
  padding-top: 48px;
}

.contact-top {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.contact-brand-mark {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: brandGlow 3s ease-in-out infinite;
}

.contact-brand-icon {
  width: 100%;
  height: 100%;
}

.active-badge {
  position: absolute;
  bottom: -12px;
  right: -55px;
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 600;
  color: #4ade80;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.active-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: activePulse 2s ease-in-out infinite;
}

@keyframes activePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50%      { box-shadow: 0 0 0 5px rgba(74, 222, 128, 0); }
}

.contact-typewriter {
  text-align: center;
  min-height: 56px;
  position: relative;
}

.typewriter-line {
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  min-height: 1.6em;
}

.typewriter-line-2 {
  color: var(--gold-light);
  font-style: italic;
}

.typewriter-cursor {
  display: inline;
  font-weight: 300;
  color: var(--gold);
  animation: cursorBlink 0.7s step-end infinite;
}

.typewriter-cursor.hidden {
  display: none;
}

@keyframes cursorBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0; }
}

@keyframes brandGlow {
  0%, 100% { filter: drop-shadow(0 0 12px rgba(212, 168, 83, 0.3)); }
  50%      { filter: drop-shadow(0 0 28px rgba(252, 203, 127, 0.6)); }
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 400;
  color: var(--gray);
  margin-bottom: 28px;
}

.contact-cards {
  display: flex;
  gap: 24px;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 20px 28px;
}

.contact-photo {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  overflow: hidden;
  flex-shrink: 0;
}

.contact-photo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 4px;
}

.contact-email {
  font-size: 14px;
}


/* ============================
   SLIDE ENTRANCE ANIMATIONS
   ============================ */

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

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: scale(1); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* All animatable children start hidden */
.slide .slide-label,
.slide .hero-title,
.slide .phone-mockup,
.slide .screen-logo,
.slide .screen-heading,
.slide .screen-sub,
.slide .screen-input,
.slide .screen-chip-row,
.slide .proof-card,
.slide .intro-logo,
.slide .intro-heading,
.slide .intro-sub,
.slide .intro-input,
.slide .intro-chips,
.slide .intro-reveal,
.slide .pain-left,
.slide .pain-right,
.slide .solution-questions,
.slide .solution-pills,
.slide .solution-calm,
.slide .solution-possible,
.slide .conversation-left,
.slide .conversation-right,
.slide .ai-header,
.slide .ai-left,
.slide .ai-right,
.slide .techstack-header,
.slide .tech-layer,
.slide .viral-left,
.slide .viral-right,
.slide .features-title,
.slide .features-tags,
.slide .features-monetize,
.slide .market-title,
.slide .market-card,
.slide .market-summary,
.slide .team-row,
.slide .team-integrations,
.slide .contact-brand,
.slide .contact-typewriter,
.slide .contact-title,
.slide .contact-card {
  opacity: 0;
}

/* --- Slide 1: Hero --- */
.slide.active .hero-title        { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.slide.active .phone-mockup      { animation: fadeUp 0.8s ease both; animation-delay: 0.35s; }
.slide.active .screen-logo       { animation: scaleIn 0.5s ease both; animation-delay: 0.6s; }
.slide.active .screen-heading    { animation: fadeUp 0.6s ease both; animation-delay: 0.75s; }
.slide.active .screen-sub        { animation: fadeIn 0.5s ease both; animation-delay: 0.95s; }
.slide.active .screen-input      { animation: fadeUp 0.5s ease both; animation-delay: 1.1s; }
.slide.active .screen-chip-row:nth-child(1) { animation: fadeUp 0.4s ease both; animation-delay: 1.3s; }
.slide.active .screen-chip-row:nth-child(2) { animation: fadeUp 0.4s ease both; animation-delay: 1.45s; }
.slide.active .screen-chip-row:nth-child(3) { animation: fadeUp 0.4s ease both; animation-delay: 1.6s; }

/* --- Slide 2: Social Proof --- */
.slide.active .proof-card:nth-child(1) { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.slide.active .proof-card:nth-child(2) { animation: fadeUp 0.7s ease both; animation-delay: 0.3s; }

/* --- Slide 3: Product Intro --- */
.slide.active .intro-logo        { animation: scaleIn 0.5s ease both; animation-delay: 0.1s; }
.slide.active .intro-heading     { animation: fadeUp 0.7s ease both; animation-delay: 0.2s; }
.slide.active .intro-sub         { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }
.slide.active .intro-input       { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.slide.active .intro-chips       { animation: fadeIn 0.6s ease both; animation-delay: 0.65s; }
.slide.active .intro-reveal      { animation: fadeUp 0.8s ease both; animation-delay: 0.8s; }

/* --- Slide 4: The Pain --- */
.slide.active .pain-left          { animation: slideInLeft 0.7s ease both; animation-delay: 0.1s; }
.slide.active .pain-right         { animation: slideInRight 0.7s ease both; animation-delay: 0.3s; }

/* --- Slide 5: The Solution --- */
.slide.active .slide-label        { animation: fadeUp 0.5s ease both; animation-delay: 0.05s; }
.slide.active .solution-questions  { animation: fadeUp 0.7s ease both; animation-delay: 0.15s; }
.slide.active .solution-pills      { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.slide.active .solution-calm       { animation: fadeIn 0.6s ease both; animation-delay: 0.6s; }
.slide.active .solution-possible   { animation: scaleIn 0.7s ease both; animation-delay: 0.75s; }

/* --- Slide 6: Conversation --- */
.slide.active .conversation-left   { animation: slideInLeft 0.7s ease both; animation-delay: 0.1s; }
.slide.active .conversation-right  { animation: slideInRight 0.7s ease both; animation-delay: 0.3s; }

/* --- Slide 7: AI Era --- */
.slide.active .ai-header          { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.slide.active .ai-left            { animation: slideInLeft 0.7s ease both; animation-delay: 0.25s; }
.slide.active .ai-right           { animation: slideInRight 0.7s ease both; animation-delay: 0.35s; }

/* --- Slide 8: Technology Stack --- */
.slide.active .techstack-header   { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.slide.active .tech-layer:nth-child(1) { animation: fadeUp 0.5s ease both; animation-delay: 0.2s; }
.slide.active .tech-layer:nth-child(2) { animation: fadeUp 0.5s ease both; animation-delay: 0.3s; }
.slide.active .tech-layer:nth-child(3) { animation: fadeUp 0.5s ease both; animation-delay: 0.4s; }
.slide.active .tech-layer:nth-child(4) { animation: fadeUp 0.5s ease both; animation-delay: 0.5s; }
.slide.active .tech-layer:nth-child(5) { animation: fadeUp 0.5s ease both; animation-delay: 0.6s; }

/* --- Slide 9: Viral Marketing --- */
.slide.active .viral-left         { animation: slideInLeft 0.7s ease both; animation-delay: 0.1s; }
.slide.active .viral-right        { animation: fadeIn 0.7s ease both; animation-delay: 0.3s; }

/* --- Slide 9: Features --- */
.slide.active .features-title     { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.slide.active .features-tags      { animation: fadeIn 0.8s ease both; animation-delay: 0.3s; }
.slide.active .features-monetize  { animation: fadeUp 0.6s ease both; animation-delay: 0.6s; }

/* --- Slide 10: Market Size --- */
.slide.active .market-title       { animation: fadeUp 0.7s ease both; animation-delay: 0.1s; }
.slide.active .market-card:nth-child(1) { animation: fadeUp 0.6s ease both; animation-delay: 0.2s; }
.slide.active .market-card:nth-child(2) { animation: fadeUp 0.6s ease both; animation-delay: 0.35s; }
.slide.active .market-card:nth-child(3) { animation: fadeUp 0.6s ease both; animation-delay: 0.5s; }
.slide.active .market-card:nth-child(4) { animation: fadeUp 0.6s ease both; animation-delay: 0.65s; }
.slide.active .market-summary     { animation: fadeUp 0.6s ease both; animation-delay: 0.85s; }

/* --- Slide 11: Team --- */
.slide.active .team-row:nth-child(1) { animation: fadeUp 0.6s ease both; animation-delay: 0.1s; }
.slide.active .team-row:nth-child(2) { animation: fadeUp 0.6s ease both; animation-delay: 0.25s; }
.slide.active .team-row:nth-child(3) { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.slide.active .team-row:nth-child(4) { animation: fadeUp 0.6s ease both; animation-delay: 0.55s; }
.slide.active .team-integrations   { animation: fadeIn 0.7s ease both; animation-delay: 0.7s; }

/* --- Slide 12: Contact --- */
.slide.active .contact-brand      { animation: scaleIn 0.6s ease both; animation-delay: 0.1s; }
.slide.active .contact-typewriter { animation: fadeIn 0.5s ease both; animation-delay: 0.4s; }
.slide.active .contact-title      { animation: fadeUp 0.7s ease both; animation-delay: 0.6s; }
.slide.active .contact-card:nth-child(1) { animation: fadeUp 0.6s ease both; animation-delay: 0.4s; }
.slide.active .contact-card:nth-child(2) { animation: fadeUp 0.6s ease both; animation-delay: 0.55s; }

/* === KEYBOARD HINT === */
@media (min-width: 768px) {
  .nav-arrows {
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  body:hover .nav-arrows {
    opacity: 1;
  }
}

/* ============================
   MOBILE RESPONSIVE
   ============================ */
@media (max-width: 768px) {
  .slide {
    padding: 24px 20px;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .slide-footer {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }

  .slide-counter {
    right: 20px;
    top: 16px;
    font-size: 11px;
  }

  .nav-arrows { padding: 0 6px; }
  .nav-arrow { width: 36px; height: 36px; font-size: 14px; }
  .nav-dots { bottom: 16px; gap: 6px; }
  .nav-dot { width: 6px; height: 6px; }
  .nav-dot.active { width: 18px; }

  .slide-label {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .bg-circles { width: 120%; right: -40%; bottom: -40%; }
  .bg-glow { width: 100%; right: -20%; bottom: -30%; }

  /* --- Hero --- */
  .hero-content { padding-top: 2vh; overflow: hidden; }
  .hero-title { font-size: clamp(22px, 6vw, 32px); margin-bottom: 52px; }
  .phone-mockup { margin-bottom: -25vh; flex: 1; }
  .phone-frame {
    width: 260px;
    height: 530px;
    border-radius: 40px;
    padding: 5px;
  }
  .phone-notch { width: 76px; height: 20px; top: 12px; border-radius: 11px; padding-right: 14px; }
  .phone-camera { width: 7px; height: 7px; }
  .phone-screen { padding: 44px 18px 18px; border-radius: 35px; }
  .phone-btn-silent { top: 80px; height: 20px; }
  .phone-btn-volup { top: 118px; height: 34px; }
  .phone-btn-voldown { top: 158px; height: 34px; }
  .phone-btn-power { top: 138px; height: 44px; }
  .screen-logo { width: 28px; height: 28px; margin-bottom: 14px; }
  .screen-heading { font-size: 17px; margin-bottom: 8px; }
  .screen-sub { font-size: 11px; margin-bottom: 20px; }
  .screen-input { padding: 10px 12px; margin-bottom: 14px; border-radius: 12px; }
  .screen-input-text { font-size: 9px; }
  .screen-mic { width: 22px; height: 22px; }
  .screen-chip { font-size: 9px; padding: 6px 10px; }
  .screen-chip-wide { padding: 6px 20px; }

  /* --- Social Proof --- */
  .proof-content {
    flex-direction: column;
    gap: 24px;
    padding-top: 12px;
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .proof-name { font-size: 20px; }
  .proof-quote { display: none; }
  .proof-date { display: none; }
  .proof-caption { display: block; }
  .proof-tweet-img { max-height: 30vh; }

  /* --- Product Intro --- */
  .intro-heading { font-size: clamp(20px, 5.5vw, 28px); }
  .intro-sub { font-size: 14px; margin-bottom: 20px; }
  .intro-input { padding: 14px 16px; }
  .intro-input span { font-size: 12px; }
  .intro-chips { gap: 6px; margin-bottom: 24px; }
  .chip { padding: 6px 12px; font-size: 11px; }
  .intro-quant { font-size: clamp(36px, 10vw, 56px); }
  .intro-dots { font-size: clamp(18px, 5vw, 28px); }

  /* --- The Pain --- */
  .pain-content {
    flex-direction: column;
    gap: 20px;
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .pain-left { flex: none; }
  .pain-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 16px; }
  .pain-list li { font-size: 13px; padding: 4px 0; }
  .pain-body { font-size: 12px; margin-bottom: 10px; }
  .pain-highlight { font-size: 13px; }
  .pain-right { flex: none; }
  .pain-phones { gap: 8px; }
  .pain-phone-1,
  .pain-phone-2,
  .pain-phone-3 { width: 28vw; }
  .pain-phone-img { border-radius: 16px; }

  /* --- The Solution --- */
  .solution-content { justify-content: center; }
  .solution-q-1 { font-size: clamp(16px, 4vw, 22px); }
  .solution-q-2 { font-size: clamp(18px, 4.5vw, 26px); }
  .solution-q-3 { font-size: clamp(20px, 5vw, 30px); }
  .solution-pills { flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
  .pill { padding: 8px 16px; font-size: 13px; }
  .solution-calm { font-size: 14px; }
  .solution-possible { font-size: clamp(28px, 8vw, 44px); }

  /* --- Conversation --- */
  .conversation-content {
    flex-direction: column;
    gap: 0;
    padding-top: 8px;
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .conversation-left {
    display: contents;
  }
  .slide-conversation .slide-label { order: 0; }
  .conversation-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 12px; order: 1; }
  .conversation-body { font-size: 13px; margin-bottom: 10px; }
  .conversation-body:nth-of-type(1) { order: 2; }
  .conversation-highlight { font-size: 14px; order: 5; margin-top: 12px; }
  .conversation-body:nth-of-type(2) { order: 6; }
  .conversation-right { order: 3; margin: 8px 0; }
  .macbook-mockup { max-width: 100%; }

  /* --- AI Era --- */
  .ai-content { padding-top: 8px; overflow-y: auto; padding-bottom: 48px; }
  .ai-header { margin-bottom: 16px; }
  .ai-title { font-size: clamp(22px, 5.5vw, 32px); }
  .ai-body-wrap {
    flex-direction: column;
    flex: none;
    gap: 12px;
  }
  .ai-left { gap: 8px; }
  .ai-card { padding: 10px 14px; }
  .ai-body { font-size: 13px; }
  .ai-transform { flex-direction: column; gap: 8px; margin-top: 10px; }
  .transform-row { gap: 8px; }
  .transform-pill { padding: 6px 14px; font-size: 12px; }

  /* --- Technology Stack --- */
  .techstack-header { margin-bottom: 16px; }
  .techstack-title { font-size: clamp(20px, 5vw, 28px); }
  .techstack-content {
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .techstack-layers { gap: 2px; }
  .layer-indicator { width: 36px; }
  .layer-num { font-size: 11px; }
  .layer-body { padding: 10px 14px; }
  .layer-name { font-size: 13px; }
  .layer-desc { font-size: 11px; margin-bottom: 6px; }
  .layer-tags { gap: 4px; }
  .layer-tag { font-size: 10px; padding: 2px 8px; }
  .layer-example { font-size: 11px; }
  .layer-meta { font-size: 10px; }

  /* --- Viral Marketing --- */
  .viral-content {
    flex-direction: column;
    gap: 8px;
    padding-top: 12px;
    justify-content: flex-start;
    align-items: stretch;
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .viral-left { flex: none; margin-bottom: 22px; }
  .viral-title { font-size: clamp(20px, 5vw, 28px); margin-bottom: 4px; }
  .viral-concept-block { display: none; }
  .viral-left > .viral-body { font-size: 12px; margin-bottom: 0; }
  .viral-body { font-size: 12px; margin-bottom: 8px; }
  .viral-quote { font-size: 12px; margin-bottom: 8px; }
  .viral-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .viral-caption { font-size: 9px; bottom: 22px; padding: 3px 6px; }
  .viral-label { font-size: 8px; bottom: 6px; left: 8px; }

  /* --- Features --- */
  .features-content {
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .features-title { font-size: clamp(24px, 6vw, 36px); margin-bottom: 20px; }
  .features-tags { gap: 6px; margin-bottom: 24px; }
  .feature-tag { padding: 6px 12px; font-size: 11px; }
  .monetize-label { font-size: 13px; }
  .monetize-items { font-size: 13px; }

  /* --- Market Size --- */
  .market-content {
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .market-title { font-size: clamp(24px, 6vw, 36px); margin-bottom: 20px; }
  .market-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
  }
  .market-card { min-width: unset; padding: 16px 12px; }
  .market-stat { font-size: clamp(24px, 6vw, 36px); }
  .market-summary p { font-size: clamp(16px, 4vw, 22px); }

  /* --- Team --- */
  .team-content {
    padding-top: 12px;
    overflow-y: auto;
    padding-bottom: 48px;
  }
  .team-grid { margin-bottom: 20px; }
  .team-row { flex-wrap: wrap; gap: 8px; margin-bottom: 8px; }
  .team-member { padding: 8px 12px; gap: 6px; }
  .team-member.founder { padding: 10px 16px; gap: 10px; }
  .founder-photo { width: 40px; height: 40px; }
  .team-name { font-size: 13px; }
  .founder .team-name { font-size: 15px; }
  .team-role { font-size: 10px; }
  .integrations-label { font-size: 13px; margin-bottom: 12px; }
  .chain-logos-grid { gap: 12px 18px; }
  .chain-logos-grid img { max-height: 16px; max-width: 80px; }
  .chain-logos-grid img[alt="Near"],
  .chain-logos-grid img[alt="Venom"],
  .chain-logos-grid img[alt="Bitcoin"] {
    max-height: 13px;
    max-width: 68px;
  }

  /* --- Contact --- */
  .contact-content { padding-top: 24px; }
  .contact-brand { gap: 12px; margin-bottom: 20px; }
  .contact-brand-mark { width: 56px; height: 56px; }
  .active-badge { font-size: 9px; right: -41px; bottom: -4px; }
  .active-dot { width: 5px; height: 5px; }
  .typewriter-line { font-size: 13px; }
  .contact-typewriter { min-height: 44px; }
  .contact-title { font-size: clamp(16px, 4vw, 20px); margin-bottom: 20px; }
  .contact-cards { flex-direction: column; gap: 12px; }
  .contact-card { padding: 14px 16px; gap: 12px; }
  .contact-photo { width: 48px; height: 48px; }
  .contact-name { font-size: 18px; }
  .contact-email { font-size: 12px; }
}
