:root {
  color-scheme: dark;
  --lp-gradient-from: #c4b5fd;
  --bg: #0a0b10;
  --bg-elevated: #12141f;
  --text: #e8eaef;
  --muted: #9aa3b8;
  --accent: #7c6cfc;
  --border: rgba(255, 255, 255, 0.08);
  --topbar-bg: rgba(10, 11, 16, 0.88);
  --topbar-bg-scrolled: rgba(10, 11, 16, 0.96);
  --topbar-scroll-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  --video-surface: #000;
  --video-frame-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(139, 92, 246, 0.38);
  --video-end-overlay: radial-gradient(
    ellipse at center,
    color-mix(in srgb, var(--lp-gradient-from) 42%, transparent) 0%,
    rgba(8, 9, 16, 0.96) 100%
  );
  --card-title: #c4b5fd;
  --features-panel-bg: linear-gradient(
    165deg,
    color-mix(in srgb, var(--lp-gradient-from) 38%, transparent) 0%,
    rgba(10, 11, 20, 0.98) 100%
  );
  --feature-row-bg: rgba(0, 0, 0, 0.25);
  --feature-row-border: rgba(255, 255, 255, 0.05);
  --code-accent: #c4b5fd;
  --hero-sub-gradient: linear-gradient(
    96deg,
    var(--lp-gradient-from) 0%,
    #7c6cfc 100%
  );
  --max: 920px;
  --lp-block-gradient: linear-gradient(
    165deg,
    color-mix(in srgb, var(--lp-gradient-from) 32%, transparent) 0%,
    rgba(8, 9, 16, 0.99) 100%
  );
  --lp-slide-card-bg: rgba(12, 14, 24, 0.92);
  --lp-slide-card-border: rgba(255, 255, 255, 0.09);
  --font: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

@media (prefers-color-scheme: light) {
  :root {
    color-scheme: light;
    --bg: #f4f5fa;
    --bg-elevated: #ffffff;
    --text: #12131a;
    --muted: #525a6a;
    --accent: #5340d9;
    --border: rgba(0, 0, 0, 0.09);
    --topbar-bg: rgba(255, 255, 255, 0.88);
    --topbar-bg-scrolled: rgba(255, 255, 255, 0.95);
    --topbar-scroll-shadow: 0 10px 40px rgba(15, 23, 42, 0.1);
    --video-surface: #0e0f12;
    --video-frame-shadow: 0 20px 56px rgba(91, 67, 220, 0.2), 0 0 0 1px rgba(91, 67, 220, 0.28);
    --video-end-overlay: radial-gradient(
      ellipse at center,
      color-mix(in srgb, var(--lp-gradient-from) 55%, white) 0%,
      rgba(255, 255, 255, 0.99) 100%
    );
    --card-title: #5340d9;
    --features-panel-bg: linear-gradient(
      165deg,
      color-mix(in srgb, var(--lp-gradient-from) 72%, white) 0%,
      rgba(255, 255, 255, 0.99) 100%
    );
    --feature-row-bg: rgba(83, 64, 217, 0.07);
    --feature-row-border: rgba(0, 0, 0, 0.07);
    --code-accent: #5340d9;
    --lp-block-gradient: linear-gradient(
      165deg,
      color-mix(in srgb, var(--lp-gradient-from) 45%, white) 0%,
      rgba(255, 255, 255, 0.99) 100%
    );
    --lp-slide-card-bg: rgba(255, 255, 255, 0.9);
    --lp-slide-card-border: rgba(0, 0, 0, 0.08);
    --hero-sub-gradient: linear-gradient(
      96deg,
      var(--lp-gradient-from) 0%,
      #5340d9 100%
    );
  }
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

.site-topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0.4rem 0 0.45rem;
  max-width: 100%;
  width: 100%;
  box-sizing: border-box;
  background: var(--topbar-bg);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.25s ease, background 0.25s ease;
}

.topbar-inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 clamp(0.75rem, 2.5vw, 1.5rem);
  box-sizing: border-box;
}

/* Равные боковые колонки — заголовок визуально по центру всей шапки */
.topbar-inner > .brand {
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-start;
}

.topbar-inner > .topbar-title {
  flex: 0 1 auto;
  min-width: 0;
}

.topbar-inner > .topbar-actions {
  flex: 1 1 0;
  min-width: 0;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  .topbar-inner {
    flex-wrap: wrap;
    row-gap: 0.35rem;
  }

  .topbar-inner > .brand {
    flex: 1 1 auto;
    order: 1;
  }

  .topbar-inner > .topbar-actions {
    flex: 0 0 auto;
    order: 2;
  }

  .topbar-inner > .topbar-title {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 0.2rem;
  }
}

.site-topbar.is-scrolled {
  box-shadow: var(--topbar-scroll-shadow);
  background: var(--topbar-bg-scrolled);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  color: var(--text);
  text-decoration: none;
}
.brand:hover {
  text-decoration: none;
  opacity: 0.92;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn-chrome {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.8125rem;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #4f46e5, #7c3aed);
  color: #fff;
  box-shadow: 0 4px 20px rgba(90, 77, 232, 0.45);
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}
.btn-chrome:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(124, 108, 252, 0.55);
  text-decoration: none;
  color: #fff;
}
.btn-chrome .chrome-logo {
  flex-shrink: 0;
  display: block;
  object-fit: contain;
}

@media (max-width: 520px) {
  .btn-text-desktop {
    display: none;
  }
}

@media (min-width: 521px) {
  .btn-text-mobile {
    display: none;
  }
}

.hero-title {
  margin: 0;
}

.topbar-title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  max-width: min(38em, 86vw);
}

.site-topbar .shimmer-title {
  display: block;
  margin: 0 auto 0.12rem;
  max-width: none;
  font-size: clamp(0.82rem, 1.9vw, 1.28rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.03em;
  background: linear-gradient(
    110deg,
    var(--lp-gradient-from) 0%,
    #7c6cfc 18%,
    #a855f7 36%,
    #ec4899 52%,
    #8b5cf6 68%,
    #e9d5ff 86%,
    var(--lp-gradient-from) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.site-topbar .hero-title-sub {
  display: block;
  font-size: clamp(0.62rem, 1.35vw, 0.82rem);
  font-weight: 600;
  line-height: 1.22;
  letter-spacing: -0.015em;
  max-width: none;
  margin: 0 auto;
  background: var(--hero-sub-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Topbar title on two-row layout (narrow viewports): much larger type */
@media (max-width: 900px) {
  .topbar-title {
    max-width: min(100%, 22em);
  }

  .site-topbar .shimmer-title {
    font-size: clamp(1.35rem, 5.8vw, 1.85rem);
    line-height: 1.15;
    margin-bottom: 0.28rem;
  }

  .site-topbar .hero-title-sub {
    font-size: clamp(1.05rem, 4vw, 1.35rem);
    line-height: 1.28;
  }
}

@media (max-width: 480px) {
  .site-topbar .shimmer-title {
    font-size: clamp(1.45rem, 6.5vw, 1.95rem);
  }

  .site-topbar .hero-title-sub {
    font-size: clamp(1.1rem, 4.5vw, 1.4rem);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 220% center;
  }
}

.video-wrap {
  position: relative;
  max-width: min(var(--max), 100% - 2rem);
  margin: 0.35rem auto 2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--video-frame-shadow);
  background: var(--video-surface);
  box-sizing: border-box;
}

.video-wrap--no-src video {
  display: none;
}

.video-placeholder {
  margin: 0;
  padding: 2.25rem 1.5rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.video-placeholder code {
  font-size: 0.88em;
  color: var(--code-accent);
}

.video-wrap video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.video-end-cta {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--video-end-overlay);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s ease;
}

.video-end-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.video-end-cta .btn-chrome {
  padding: 0.85rem 1.35rem;
  font-size: 1rem;
  box-shadow: 0 8px 40px rgba(90, 77, 232, 0.55);
}

.lp-post-hero {
  text-align: center;
}

.lp-post-hero__headline {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.lp-post-hero__sub {
  margin: 0 auto 1.25rem;
  max-width: 40em;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.55;
}

.lp-post-hero__poster-wrap {
  --lp-post-hero-poster-bleed: 1.4rem;
  width: calc(100% + 2 * var(--lp-post-hero-poster-bleed));
  max-width: none;
  margin: 0 calc(-1 * var(--lp-post-hero-poster-bleed)) 1.35rem;
  border-radius: 12px;
  overflow: hidden;
  line-height: 0;
}

.lp-post-hero__poster {
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
}

.lp-post-hero__cta-wrap {
  margin: 0;
}

.lp-evolution {
  text-align: center;
}

.lp-evolution__figure {
  margin: 0 0 1.6rem;
  line-height: 0;
}

.lp-evolution__img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.lp-evolution__prose {
  text-align: left;
  margin: 0 auto;
  max-width: 42rem;
}

.lp-evolution__prose h2 {
  text-align: center;
  margin-bottom: 1.1rem;
}

.lp-evolution__prose p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 2.2vw, 1.05rem);
  line-height: 1.62;
}

.lp-evolution__prose p:last-child {
  margin-bottom: 0;
}

.lp-evolution__outro {
  font-weight: 600;
  color: var(--text);
}

.lp-num-bullets,
.lp-icon-bullets,
.lp-ordered-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.lp-num-bullets li,
.lp-icon-bullets li {
  margin-bottom: 0.65rem;
  padding-left: 0.15rem;
}

.lp-num-bullets li:last-child,
.lp-icon-bullets li:last-child {
  margin-bottom: 0;
}

.lp-icon-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.lp-icon-bullets li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0;
}

.lp-icon-bullets__ico {
  flex-shrink: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}

.lp-ordered-facts {
  counter-reset: lp-fact;
  padding-left: 0;
}

.lp-ordered-facts li {
  counter-increment: lp-fact;
  position: relative;
  margin-bottom: 0.65rem;
  padding-left: 2rem;
}

.lp-ordered-facts li::before {
  content: counter(lp-fact) ".";
  position: absolute;
  left: 0;
  font-weight: 700;
  color: var(--accent);
}

.lp-ordered-facts li:last-child {
  margin-bottom: 0;
}

.lp-lead {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.lp-final__cta {
  margin: 1.5rem 0 0;
  text-align: center;
}

/* Outbound links to popular AI chats (brand favicons via hostname). */
.lp-ai-outbound__sub {
  margin: 0.35rem 0 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
}

.lp-ai-outbound__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  margin-top: 1.1rem;
}

.lp-ai-outbound__grid a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--lp-slide-card-bg);
  color: var(--text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.12s ease;
}

.lp-ai-outbound__grid a:hover {
  border-color: var(--accent);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}

.lp-ai-outbound__grid .lp-ai-outbound__ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  object-fit: contain;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--muted) 12%, transparent);
  padding: 2px;
  box-sizing: border-box;
}

@media (max-width: 480px) {
  .lp-ai-outbound__grid {
    flex-direction: column;
    align-items: stretch;
  }
  .lp-ai-outbound__grid a {
    justify-content: center;
  }
}

.lp-accordions-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: stretch;
  max-width: var(--max);
  margin: 0 auto 2.75rem;
  box-sizing: border-box;
}

.lp-accordions-band .lp-accordion-cell {
  margin-bottom: 0;
  min-width: 0;
}

@media (max-width: 720px) {
  .lp-accordions-band {
    grid-template-columns: 1fr;
  }
}

.lp-slider {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.35rem;
  align-items: stretch;
  margin-top: 0.75rem;
  max-width: 100%;
}

.lp-slider-viewport {
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 14px;
  border: none;
  background: transparent;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.lp-slider-viewport::-webkit-scrollbar {
  display: none;
}

.lp-slider-track {
  display: flex;
  min-height: 12rem;
}

.lp-slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
  padding: 1.25rem 1.35rem 1.35rem;
  border-right: none;
  background: var(--lp-slide-card-bg);
  border: 1px solid var(--lp-slide-card-border);
  border-radius: 14px;
}

.lp-slide__title {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.lp-slide__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.5;
}

.lp-slide--quote {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.lp-slide__label {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--card-title);
}

.lp-slide__quote {
  margin: 0;
  padding: 0;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--text);
  border: none;
}

.lp-slider-btn {
  align-self: center;
  width: 2.5rem;
  min-height: 3rem;
  border: none;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.lp-slider-btn:hover {
  background: var(--accent);
  color: #fff;
}

@media (prefers-color-scheme: light) {
  .lp-slider-btn {
    background: rgba(0, 0, 0, 0.06);
  }
}

@media (max-width: 520px) {
  .lp-slider {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .lp-slider-prev {
    grid-row: 1;
    width: 100%;
    min-height: 2.5rem;
  }

  .lp-slider-viewport {
    grid-row: 2;
  }

  .lp-slider-next {
    grid-row: 3;
    width: 100%;
    min-height: 2.5rem;
  }
}

.section {
  max-width: var(--max);
  margin: 0 auto 2.75rem;
  padding: 1.35rem 1.4rem 1.45rem;
  background: var(--lp-block-gradient);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-sizing: border-box;
}

.section.lp-slider-wrap,
.section:has(.accordion) {
  border: none;
}

.section h2 {
  font-size: clamp(1.25rem, 3vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
  color: var(--text);
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.accordion details {
  background: transparent;
  border: none;
  border-radius: 12px;
  overflow: hidden;
}

.section .accordion details {
  background: transparent;
}

.accordion summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--text);
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  user-select: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}
.accordion summary::after {
  content: "＋";
  font-weight: 400;
  color: var(--accent);
}
.accordion details[open] summary::after {
  content: "−";
}

.accordion .acc-body {
  padding: 0 1.15rem 1.1rem;
  color: var(--muted);
  font-size: 0.9rem;
  border-top: none;
}

.accordion .acc-body p {
  margin: 0 0 0.65rem;
}

.accordion .acc-body p:last-child {
  margin-bottom: 0;
}

.accordion .acc-body ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}
.accordion .acc-body li {
  margin-bottom: 0.35rem;
}

/* ─── EmojiPT “Team” block (before final CTA) ─── */
.emojipt-team-wrap .emojipt-team-inner {
  max-width: 56rem;
  margin: 0 auto;
  text-align: center;
}

.emojipt-team-wrap h2.emojipt-team-heading {
  margin: 0 0 0.75rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
  color: var(--text);
}

.emojipt-team-kicker {
  display: block;
  font-size: clamp(0.92rem, 2.1vw, 1.08rem);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--muted);
}

/* Same flowing gradient + motion as `.site-topbar .shimmer-title` */
.emojipt-team-title-line {
  display: block;
  font-size: clamp(1.45rem, 3.5vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  background: linear-gradient(
    110deg,
    var(--lp-gradient-from) 0%,
    #7c6cfc 18%,
    #a855f7 36%,
    #ec4899 52%,
    #8b5cf6 68%,
    #e9d5ff 86%,
    var(--lp-gradient-from) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: shimmer 7s linear infinite;
}

.emojipt-team-subhead {
  margin: 0 auto 2rem;
  max-width: 36em;
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.emojipt-founder-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.25rem;
  text-align: center;
}

.emojipt-avatar-circle {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg-elevated);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 20px 40px rgba(0, 0, 0, 0.35),
    0 0 0 4px color-mix(in srgb, var(--bg-elevated) 92%, var(--accent)),
    0 0 0 7px color-mix(in srgb, var(--accent) 45%, transparent);
  transition: transform 0.2s ease;
}

.emojipt-avatar-circle:hover {
  transform: scale(1.03);
}

.emojipt-avatar-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.emojipt-founder-name {
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}

.emojipt-founder-title {
  margin-top: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.25rem 0.95rem;
  border-radius: 999px;
  color: var(--card-title);
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 38%, transparent);
}

.emojipt-one-man-army {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  padding: 0.3rem 1rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--text) 6%, transparent);
  display: inline-block;
}

.emojipt-roles-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 0.85rem;
  margin-top: 0.5rem;
}

.emojipt-role-card {
  flex: 1 1 240px;
  max-width: 280px;
  padding: 1.25rem 1rem 1.1rem;
  text-align: center;
  border-radius: 16px;
  background: var(--lp-slide-card-bg);
  border: 1px solid var(--lp-slide-card-border);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.emojipt-role-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--accent) 35%, var(--lp-slide-card-border));
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

@media (prefers-color-scheme: light) {
  .emojipt-role-card:hover {
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  }
}

.emojipt-role-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.emojipt-role-name {
  display: inline-block;
  font-weight: 800;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  color: var(--text);
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 0.5rem;
  background: color-mix(in srgb, var(--accent) 12%, transparent);
}

.emojipt-role-occupant {
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--card-title);
  margin: 0.35rem 0 0.15rem;
}

.emojipt-role-sub {
  font-size: 0.78rem;
  line-height: 1.4;
  color: var(--muted);
  max-width: 220px;
  margin: 0 auto;
}

.emojipt-easter-egg {
  margin: 2.5rem auto 0;
  max-width: 36rem;
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.75rem;
  text-align: center;
  background: color-mix(in srgb, #f59e0b 14%, var(--bg-elevated));
  border: 1px solid color-mix(in srgb, #f59e0b 35%, var(--border));
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

@media (prefers-color-scheme: light) {
  .emojipt-easter-egg {
    background: color-mix(in srgb, #fef3c7 88%, #fff);
    border-color: rgba(245, 158, 11, 0.35);
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.06);
  }
}

.emojipt-egg-title {
  font-weight: 800;
  font-size: 0.78rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  color: #b45309;
  background: rgba(255, 255, 255, 0.35);
}

@media (prefers-color-scheme: light) {
  .emojipt-egg-title {
    color: #9a3412;
    background: rgba(255, 247, 237, 0.95);
  }
}

.emojipt-egg-description {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--text);
  opacity: 0.92;
  flex: 1 1 12rem;
}

.emojipt-meta-note {
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  line-height: 1.55;
  color: var(--muted);
  text-align: center;
}

.emojipt-meta-note strong {
  color: var(--text);
}

@media (max-width: 700px) {
  .emojipt-team-subhead {
    margin-bottom: 1.5rem;
  }

  .emojipt-founder-node {
    margin-bottom: 1.75rem;
  }

  .emojipt-role-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.site-footer {
  max-width: var(--max);
  margin: 0 auto 2rem;
  text-align: center;
  padding: 1.35rem 1.4rem 1.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  background: var(--lp-block-gradient);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-sizing: border-box;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
