:root {
  --bg: #f6f4ef;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: #ffffff;
  --text: #17151e;
  --muted: #676171;
  --line: rgba(23, 21, 30, 0.08);
  --shadow: 0 24px 60px rgba(18, 12, 33, 0.08);
  --brand-deep: #2c1c53;
  --brand-violet: #8b46d5;
  --brand-fuchsia: #e94194;
  --brand-orange: #f46532;
  --brand-gold: #fdbe3b;
  --ai-bg: #090711;
  --ai-surface: rgba(255, 255, 255, 0.08);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --container: min(1180px, calc(100vw - 40px));
  --header-height: 88px;
  --parallax: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(139, 70, 213, 0.08), transparent 26%),
    radial-gradient(circle at 80% 18%, rgba(253, 190, 59, 0.12), transparent 18%),
    var(--bg);
  overflow-x: hidden;
  cursor: none;
}

body.intro-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 48%, rgba(139, 70, 213, 0.18), transparent 18%),
    radial-gradient(circle at 50% 50%, rgba(253, 190, 59, 0.08), transparent 24%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.03), transparent 36%),
    #08090c;
  color: #f8f8fb;
}

body.intro-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image: radial-gradient(rgba(74, 198, 166, 0.3) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 88%);
}

body.intro-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(84, 255, 197, 0.08), transparent 22%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.28));
}

body.projects-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 40%, rgba(84, 255, 197, 0.06), transparent 16%),
    radial-gradient(circle at top, rgba(255, 255, 255, 0.02), transparent 34%),
    #09090b;
  color: #f8f8fb;
}

body.projects-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image: radial-gradient(rgba(63, 171, 145, 0.32) 1px, transparent 1px);
  background-size: 12px 12px;
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.95), transparent 88%);
}

body.projects-page::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at center, rgba(84, 255, 197, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.28));
}

.founder-page-dark .projects-header {
  max-width: 760px;
}

.founder-page-dark .projects-header h1 {
  margin-bottom: 18px;
}

.founder-page-dark .projects-header p:not(.eyebrow) {
  max-width: 44ch;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.08rem;
  line-height: 1.8;
}

.founder-shell {
  padding-bottom: 84px;
}

.about-shell {
  position: relative;
}

.founder-portrait-wrap {
  display: flex;
  justify-content: flex-start;
  padding-top: 10px;
}

.founder-window {
  width: min(100%, 560px);
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(21, 22, 27, 0.96), rgba(16, 17, 21, 0.96));
  box-shadow:
    0 24px 44px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transform: rotate(-2.4deg) translateY(8px);
  transform-origin: center top;
  transition: box-shadow 180ms ease;
}

.founder-window__bar {
  display: grid;
  grid-template-columns: 80px 1fr 56px;
  align-items: center;
  height: 52px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.04);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.founder-window__bar p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.68);
  font-weight: 700;
}

.founder-window__dots {
  display: inline-flex;
  gap: 10px;
}

.founder-window__dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.founder-window__dots span:nth-child(1) {
  background: #ff6358;
}

.founder-window__dots span:nth-child(2) {
  background: #ffbd2e;
}

.founder-window__dots span:nth-child(3) {
  background: #28c840;
}

.founder-window__logo {
  display: flex;
  justify-content: flex-end;
}

.founder-window__logo img {
  width: 18px;
  height: auto;
  opacity: 0.86;
}

.founder-window__image {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.founder-window__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-nav {
  position: fixed;
  top: 22px;
  left: 50%;
  z-index: 8;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 7px;
  transform: translateX(-50%);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(33, 34, 39, 0.92), rgba(19, 20, 24, 0.92));
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.intro-nav__brand,
.intro-nav a,
.intro-nav span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
  border-radius: 999px;
  transition:
    color 220ms ease,
    background-color 220ms ease;
}

.intro-nav__brand img {
  width: 24px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(139, 70, 213, 0.32));
}

.intro-nav > * + *::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 16px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
}

.intro-nav a:hover,
.intro-nav a:focus-visible,
.intro-nav__brand:hover,
.intro-nav__brand:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.projects-nav {
  top: 16px;
}

.projects-nav .is-active {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
}

.intro-stage {
  position: relative;
  min-height: 100vh;
  width: min(1100px, calc(100vw - 40px));
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 40px 0;
  z-index: 1;
}

.projects-shell {
  position: relative;
  z-index: 1;
  width: min(1080px, calc(100vw - 40px));
  margin: 0 auto;
  padding: 144px 0 72px;
}

.projects-header {
  max-width: 560px;
  margin-bottom: 42px;
}

.projects-header h1 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(3rem, 7vw, 4.8rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
}

.projects-header p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  line-height: 1.75;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.project-card {
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(21, 22, 27, 0.96), rgba(16, 17, 21, 0.96));
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.project-card__visual {
  position: relative;
  min-height: 258px;
  margin: 10px;
  border-radius: 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 8, 10, 0.88), rgba(12, 13, 16, 0.92));
}

.project-card__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 8, 10, 0.08), rgba(8, 8, 10, 0.72));
  pointer-events: none;
}

.project-card--labs .project-card__visual::after {
  display: none;
}

.project-card__banner {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.94;
}

.project-card__glow,
.project-card__screen,
.project-card__case-frame,
.project-card__case-device,
.project-card__ai-grid,
.project-card__ai-core {
  z-index: 2;
}

.project-card__body {
  padding: 8px 20px 20px;
}

.project-card__body h2 {
  margin: 0 0 8px;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.04em;
}

.project-card__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.7;
}

.project-card__body a {
  display: inline-block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 700;
}

.project-card__glow {
  position: absolute;
  inset: auto 6% -10% 6%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(84, 255, 197, 0.7), rgba(84, 255, 197, 0.12) 46%, transparent 72%);
  filter: blur(18px);
}

.project-card__screen {
  position: absolute;
  inset: 20px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
}

.project-card__chip {
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 800;
}

.project-card__line {
  max-width: 22ch;
  text-align: center;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.3;
}

.project-card__panel {
  width: min(92%, 320px);
  height: 88px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(20, 21, 25, 0.98), rgba(15, 16, 20, 0.98));
  border: 1px solid rgba(84, 255, 197, 0.72);
  box-shadow:
    0 0 0 1px rgba(84, 255, 197, 0.14),
    0 0 28px rgba(84, 255, 197, 0.28);
}

.project-card--case .project-card__visual {
  background:
    linear-gradient(180deg, rgba(20, 20, 23, 0.98), rgba(16, 16, 18, 0.98)),
    #0f1014;
}

.project-card__case-frame,
.project-card__case-device {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-11deg);
  border-radius: 34px;
}

.project-card__case-frame {
  width: 164px;
  height: 270px;
  background: linear-gradient(155deg, #fffdf9, #d7d0c8 78%);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.34),
    inset -8px -8px 20px rgba(0, 0, 0, 0.08);
}

.project-card__case-device {
  width: 138px;
  height: 238px;
  transform: translate(-50%, -50%) rotate(9deg);
  background: linear-gradient(180deg, #23222c, #454551);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24);
}

.project-card--ai .project-card__visual {
  background:
    radial-gradient(circle at center, rgba(139, 70, 213, 0.18), transparent 32%),
    linear-gradient(180deg, rgba(10, 10, 12, 0.96), rgba(14, 15, 18, 0.98));
}

.project-card__ai-grid {
  position: absolute;
  inset: 18px;
  border-radius: 16px;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at center, black 42%, transparent 82%);
}

.project-card__ai-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 108px;
  height: 108px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  box-shadow: 0 0 34px rgba(139, 70, 213, 0.26);
  font-family: "Syne", "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.projects-footer-note {
  margin: 56px 0 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.34);
}

.about-page .projects-header {
  max-width: 700px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-page .point {
  background:
    linear-gradient(180deg, rgba(21, 22, 27, 0.96), rgba(16, 17, 21, 0.96));
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow:
    0 22px 40px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.about-page .point p {
  color: rgba(255, 255, 255, 0.62);
}

.intro-logo-wrap {
  position: relative;
  width: min(36vw, 260px);
  margin: 0 auto;
  transform: translateY(26px);
  animation: introLogoSettle 1.3s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  overflow: visible;
}

.intro-logo-mark {
  width: 100%;
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 0 28px rgba(139, 70, 213, 0.16))
    drop-shadow(0 26px 46px rgba(0, 0, 0, 0.32));
}

.intro-logo-outline path {
  stroke: rgba(139, 70, 213, 0.58);
  stroke-width: 12;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 5200;
  stroke-dashoffset: 5200;
  animation: introDraw 1.25s ease forwards;
}

.intro-logo-outline path:nth-child(2) {
  animation-delay: 0.16s;
}

.intro-logo-outline path:nth-child(3) {
  animation-delay: 0.28s;
}

.intro-logo-fill {
  opacity: 0;
  animation: introFill 0.6s ease 1.08s forwards;
}

.intro-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 16px;
  text-align: center;
}

.intro-heading-wrap {
  position: relative;
  display: inline-flex;
  justify-content: center;
}

.intro-heading {
  margin: 0;
  min-height: 1.1em;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  transform: rotate(-4.4deg);
  transform-origin: center center;
  animation: introHeadingStraighten 1s ease 2.8s forwards;
}

.intro-heading::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 0.95em;
  margin-left: 8px;
  vertical-align: -0.08em;
  background: rgba(255, 255, 255, 0.82);
  animation: blink 0.9s step-end infinite;
}

.intro-page.is-typed .intro-heading::after {
  opacity: 0;
}

.intro-subtitle {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
  opacity: 0;
  transform: translateY(12px);
  animation: introFadeUp 0.7s ease 3.25s forwards;
}

.intro-button {
  min-width: 158px;
  color: #101116;
  background: linear-gradient(180deg, #ffffff, #d9dde5);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 0;
  transform: translateY(12px);
  animation: introFadeUp 0.7s ease 3.45s forwards;
}

.intro-dragger {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 140px;
  height: 80px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.intro-dragger__cursor {
  position: absolute;
  top: 84px;
  left: 118px;
  width: 18px;
  height: 25px;
  clip-path: polygon(8% 0, 8% 100%, 34% 72%, 52% 95%, 65% 88%, 49% 65%, 82% 59%);
  background: linear-gradient(180deg, #151515, #050505);
  box-shadow:
    0 10px 24px rgba(17, 14, 24, 0.22),
    0 0 0 1.2px rgba(255, 255, 255, 0.92);
  border-radius: 3px;
  opacity: 0;
  animation: introMouseDrag 1.1s cubic-bezier(0.2, 0.9, 0.2, 1) 2.65s forwards;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--container);
  height: var(--header-height);
  margin: 0 auto;
  padding: 22px 0;
  gap: 18px;
  isolation: isolate;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 10px -12px;
  z-index: -1;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 42px rgba(17, 14, 24, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand img {
  width: 40px;
  height: auto;
}

.brand span {
  font-family: "Syne", "Manrope", sans-serif;
  font-size: 1.1rem;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 6px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(29, 29, 33, 0.96), rgba(17, 17, 20, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  box-shadow:
    0 18px 40px rgba(10, 10, 14, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.94rem;
  border-radius: 999px;
  transition:
    color 220ms ease,
    background-color 220ms ease;
}

.site-nav a + a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 1px;
  height: 18px;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.08);
}

.site-nav a::after {
  content: "";
  position: absolute;
  inset: auto 14px 6px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: center;
  background: linear-gradient(90deg, var(--brand-violet), var(--brand-orange));
  transition: transform 220ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
}

.section {
  width: var(--container);
  margin: 0 auto;
}

.hero {
  position: relative;
  min-height: calc(100vh - 20px);
  padding: 72px 0 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.72fr);
  align-items: center;
  gap: 124px;
}

.hero__grid {
  position: absolute;
  inset: 12% 0 auto;
  height: 520px;
  background-image:
    linear-gradient(rgba(44, 28, 83, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(44, 28, 83, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 34%, transparent 78%);
  pointer-events: none;
}

.hero__ambient {
  position: absolute;
  border-radius: 999px;
  filter: blur(12px);
  transform: translateY(calc(var(--parallax) * -1));
}

.hero__ambient--one {
  top: 18%;
  right: 20%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(139, 70, 213, 0.18), transparent 70%);
}

.hero__ambient--two {
  right: -4%;
  bottom: 8%;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(253, 190, 59, 0.18), transparent 66%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
  padding-right: 28px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-violet);
}

.hero h1,
.section-heading h2,
.manifesto h2,
.footer-cta h2 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.05em;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6.6vw, 5.8rem);
}

.hero__copy,
.venture p,
.point p,
.footer-cta p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.75;
}

.hero__copy {
  max-width: 60ch;
  margin: 22px 0 0;
}

.hero__actions,
.footer-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  background: var(--text);
  color: #fff;
}

.intro-page .button--primary {
  background: linear-gradient(180deg, #ffffff, #d9dde5);
  color: #101116;
}

.button--ghost {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.6);
}

.button--invert {
  background: #fff;
  color: #101010;
}

.hero-panel {
  position: relative;
  padding: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: translateY(calc(var(--parallax) * -1));
  margin-right: 20px;
  margin-left: 10px;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% 30%;
  height: 220px;
  background: linear-gradient(135deg, rgba(233, 65, 148, 0.18), rgba(253, 190, 59, 0.1));
  filter: blur(20px);
}

.hero-panel__top,
.hero-panel__labels {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

.hero-panel__top {
  font-size: 0.92rem;
  color: var(--muted);
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand-violet), var(--brand-gold));
  box-shadow: 0 0 16px rgba(139, 70, 213, 0.6);
}

.hero-panel__metric {
  position: relative;
  z-index: 1;
  margin: 32px 0;
}

.hero-panel__metric strong {
  display: block;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(4.2rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.hero-panel__track {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(44, 28, 83, 0.08);
  overflow: hidden;
}

.hero-panel__bar {
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-deep), var(--brand-violet), var(--brand-fuchsia), var(--brand-orange), var(--brand-gold));
  background-size: 160% 100%;
  animation: shimmer 6s linear infinite;
}

.hero-panel__labels {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.businesses {
  padding: 80px 0 40px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.7fr);
  gap: 24px;
  align-items: end;
  margin-bottom: 30px;
}

.section-heading h2,
.manifesto h2,
.footer-cta h2 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
}

.manifesto h2 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
}

.venture {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
  gap: 32px;
  align-items: center;
  padding: 34px;
  margin-bottom: 24px;
  border-radius: calc(var(--radius-xl) + 4px);
  overflow: hidden;
}

.venture__content h3,
.point h3 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.venture__label {
  margin: 0 0 12px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.venture__content p {
  max-width: 52ch;
}

.venture--labs {
  color: #f5f5f5;
  background:
    radial-gradient(circle at 15% 18%, rgba(139, 70, 213, 0.42), transparent 28%),
    radial-gradient(circle at 78% 20%, rgba(233, 65, 148, 0.22), transparent 22%),
    linear-gradient(180deg, #100d18, #090711);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(9, 7, 17, 0.38);
}

.venture--labs p:not(.venture__label) {
  color: rgba(255, 255, 255, 0.72);
}

.venture--case {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.78)),
    rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(23, 21, 30, 0.06);
  box-shadow: var(--shadow);
}

.venture__visual {
  position: relative;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
}

.venture__visual--labs {
  background:
    radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent),
    rgba(255, 255, 255, 0.02);
}

.labs-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 50px rgba(139, 70, 213, 0.25);
  font-family: "Syne", "Manrope", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}

.labs-grid {
  position: absolute;
  inset: 10% 12%;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(circle at center, black 44%, transparent 82%);
}

.labs-beam {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  filter: blur(10px);
  transform: translate(-50%, -50%);
}

.labs-beam--one {
  background: radial-gradient(circle, rgba(139, 70, 213, 0.42), transparent 64%);
  animation: orbitFloat 12s ease-in-out infinite;
}

.labs-beam--two {
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(253, 190, 59, 0.2), transparent 66%);
  animation: orbitFloat 18s ease-in-out infinite reverse;
}

.venture__visual--case {
  background:
    radial-gradient(circle at 50% 16%, rgba(253, 190, 59, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 236, 228, 0.92));
  border: 1px solid rgba(23, 21, 30, 0.05);
}

.case-shell,
.case-device {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%) rotate(-14deg);
  border-radius: 36px;
}

.case-shell {
  width: 170px;
  height: 280px;
  background: linear-gradient(155deg, #fff, #e8dfd5 75%);
  box-shadow:
    0 24px 50px rgba(52, 35, 18, 0.16),
    inset -8px -8px 22px rgba(0, 0, 0, 0.06);
}

.case-device {
  width: 146px;
  height: 252px;
  transform: translate(-50%, -50%) rotate(8deg);
  background: linear-gradient(180deg, #1e1c27, #4a4958);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.18);
}

.manifesto {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: 44px;
  padding: 80px 0;
}

.manifesto__sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

.manifesto__points {
  display: grid;
  gap: 18px;
}

.point {
  padding: 28px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(23, 21, 30, 0.06);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.point span {
  display: inline-block;
  margin-bottom: 18px;
  font-family: "Syne", "Manrope", sans-serif;
  color: var(--brand-violet);
  font-size: 1.4rem;
  font-weight: 700;
}

.footer-cta {
  position: relative;
  margin-bottom: 40px;
  padding: 52px;
  border-radius: 40px;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 70, 213, 0.12), transparent 30%),
    radial-gradient(circle at 100% 100%, rgba(253, 190, 59, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(23, 21, 30, 0.06);
  box-shadow: var(--shadow);
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 120;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(44, 28, 83, 0.7);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(5px);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition:
    width 180ms ease,
    height 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.cursor-ring.is-on-dark {
  border-color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.16);
}

.cursor-ring.is-hovering {
  width: 40px;
  height: 40px;
  border-color: rgba(139, 70, 213, 0.82);
  background: rgba(139, 70, 213, 0.12);
}

.cursor-ring.is-on-dark.is-hovering {
  border-color: rgba(255, 255, 255, 0.96);
  background: rgba(255, 255, 255, 0.2);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(246, 244, 239, 0.96);
  backdrop-filter: blur(6px);
  transition:
    opacity 700ms ease,
    visibility 700ms ease;
}

.loader__logo {
  width: min(42vw, 320px);
  transform-origin: center center;
  animation: loaderShift 2.8s cubic-bezier(0.68, -0.02, 0.18, 1) forwards;
}

.loader-mark {
  width: 100%;
  overflow: visible;
}

.loader-outline path {
  stroke: rgba(44, 28, 83, 0.76);
  stroke-width: 12;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 3200;
  stroke-dashoffset: 3200;
  animation: draw 1.3s ease forwards;
}

.loader-outline path:nth-child(2) {
  animation-delay: 0.18s;
}

.loader-outline path:nth-child(3) {
  animation-delay: 0.34s;
}

.loader-fill {
  opacity: 0;
  animation: fillIn 0.65s ease 1.2s forwards;
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes fillIn {
  to {
    opacity: 1;
  }
}

@keyframes loaderShift {
  0%,
  58% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translate3d(-34vw, -34vh, 0) scale(0.13);
    opacity: 0.18;
  }
}

@keyframes rotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes rotateReverse {
  to {
    transform: translate(-50%, -50%) rotate(-360deg);
  }
}

@keyframes orbitFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
  }

  50% {
    transform: translate(-47%, -53%) scale(1.08);
  }
}

@keyframes shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 100% 50%;
  }
}

@keyframes introLogoSettle {
  0% {
    opacity: 0;
    transform: translateY(34px) scale(0.78);
  }

  100% {
    opacity: 1;
    transform: translateY(-12px) scale(1);
  }
}

@keyframes introDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes introFill {
  to {
    opacity: 1;
  }
}

@keyframes introHeadingStraighten {
  0% {
    transform: rotate(-4.4deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes introMouseDrag {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0.92);
  }

  15% {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }

  100% {
    opacity: 1;
    transform: translate(-142px, -118px) scale(1);
  }
}

@keyframes introFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  50% {
    opacity: 0;
  }
}

@media (max-width: 960px) {
  .site-header,
  .section,
  .hero {
    width: min(100vw - 28px, 1180px);
  }

  .intro-stage {
    width: min(100vw - 28px, 1100px);
  }

  .projects-shell {
    width: min(100vw - 28px, 1080px);
    padding-top: 128px;
  }

  .intro-nav {
    max-width: calc(100vw - 28px);
  }

  .hero,
  .venture,
  .manifesto,
  .section-heading,
  .projects-grid,
  .about-grid {
    grid-template-columns: 1fr;
  }

  .founder-window {
    width: 100%;
  }

  .free-drag-window {
    position: relative;
    top: auto;
    left: auto;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    gap: 44px;
  }

  .site-header {
    height: auto;
    padding: 18px 0;
  }

  .site-header::before {
    inset: 8px -6px;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
  }

  .manifesto__sticky {
    position: static;
  }

  .footer-cta {
    padding: 34px 24px;
  }

  .loader__logo {
    width: min(54vw, 260px);
  }
}

@media (max-width: 640px) {
  .intro-nav {
    gap: 0;
    width: calc(100vw - 28px);
    justify-content: space-between;
  }

  .intro-nav__brand,
  .intro-nav a,
  .intro-nav span {
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .intro-copy {
    gap: 14px;
  }

  .intro-logo-wrap {
    width: min(52vw, 220px);
  }

  .hero h1 {
    max-width: 9ch;
  }

  .hero-panel,
  .venture,
  .point {
    padding: 22px;
  }

  .hero__content {
    padding-right: 0;
  }

  .venture__visual {
    min-height: 260px;
  }

  .brand span {
    font-size: 1rem;
  }
}

.labs-page {
  color: #f7f7fb;
  background:
    radial-gradient(circle at 20% 0%, rgba(139, 70, 213, 0.22), transparent 28%),
    radial-gradient(circle at 100% 12%, rgba(233, 65, 148, 0.16), transparent 18%),
    linear-gradient(180deg, #0e0b16, #08070d);
}

.founder-page {
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 70, 213, 0.1), transparent 24%),
    radial-gradient(circle at 100% 12%, rgba(253, 190, 59, 0.1), transparent 18%),
    linear-gradient(180deg, #f7f4ee, #f0ebe2);
}

.founder-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.72fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 140px);
  padding: 34px 0 52px;
}

.founder-hero__copy h1 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(2.9rem, 7vw, 5.4rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.founder-hero__copy p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  line-height: 1.8;
}

.founder-hero__card {
  padding: 32px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 100% 0%, rgba(139, 70, 213, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.72));
  border: 1px solid rgba(23, 21, 30, 0.06);
  box-shadow: var(--shadow);
}

.founder-hero__card span {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-violet);
}

.founder-hero__card strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.05em;
}

.founder-hero__card p {
  color: var(--muted);
  line-height: 1.75;
}

.founder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 64px;
}

.labs-page .site-header {
  padding-top: 26px;
}

.labs-page .brand {
  color: #fff;
}

.labs-page .eyebrow {
  color: #d4b7ff;
}

.labs-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.8fr);
  gap: 84px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 36px 0 64px;
}

.labs-hero__copy h1 {
  margin: 0;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(3.2rem, 8vw, 6.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.labs-hero__copy p:not(.eyebrow) {
  max-width: 58ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
}

.labs-hero__visual {
  position: relative;
  min-height: 420px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02)),
    rgba(255, 255, 255, 0.02);
  overflow: hidden;
}

.labs-story {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 60px;
}

.labs-products {
  padding-bottom: 72px;
}

.labs-products .section-heading {
  margin-bottom: 22px;
}

.labs-products__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.labs-product-card {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.labs-product-card h3 {
  margin: 0 0 12px;
  font-family: "Syne", "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.labs-product-card p:not(.venture__label) {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.8;
}

.labs-product-card .button {
  margin-top: 18px;
}

.labs-page .point {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.labs-page .point p {
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 960px) {
  .labs-hero,
  .labs-story,
  .labs-products__grid,
  .founder-hero,
  .founder-grid {
    grid-template-columns: 1fr;
  }

  .labs-hero {
    gap: 32px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .loader {
    display: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  body {
    cursor: auto;
  }

  .cursor-ring {
    display: none;
  }

  .intro-heading,
  .intro-subtitle,
  .intro-button,
  .intro-logo-wrap,
  .intro-dragger__cursor {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

@media (hover: none), (pointer: coarse) {
  body {
    cursor: auto;
  }

  .cursor-ring {
    display: none;
  }
}
