:root {
  --bg: #000000;
  --text: #ffffff;
  --muted: #8e8e8e;
  --nav-text: #2e2e2e;
  --pill-dark: #28282a;
  --sign-in-text: #c8c8c8;
  --nav-shadow: 0 4px 14px rgba(0, 0, 0, 0.16);
  --trust-bg: #28282a;
  --trust-border: rgba(255, 255, 255, 0.4);
  --trust-text: #c4c2c3;
  --line: rgba(255, 255, 255, 0.1);
  --card: rgba(255, 255, 255, 0.03);
  --card-hover: rgba(255, 255, 255, 0.06);
  --font-sans: "Inter", "Segoe UI", system-ui, sans-serif;
  --font-display: "BubbledotICG-FinePos", "Geist Pixel Circle", monospace;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  overflow: hidden;
}
.bg {
  position: absolute;
  inset: 0;
  background: #000;
  overflow: hidden;
  z-index: 0;
}
.bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.bg::after {
  /* gentle scrim so the dark stats/headline stay legible on bright frames */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    120% 80% at 50% 40%,
    transparent 40%,
    rgba(0, 0, 0, 0.35) 100%
  );
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(16px, 2.4vh, 28px) clamp(14px, 3vw, 32px);
}

.topbar {
  flex-shrink: 0;
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 2.8vw, 28px);
  animation: slideDown 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.logo {
  flex-shrink: 0;
  width: clamp(40px, 4.4vw, 46px);
  height: clamp(40px, 4.4vw, 46px);
  border-radius: 50%;
  background: #fff;
  box-shadow: var(--nav-shadow);
  display: grid;
  place-items: center;
  transition: transform 0.25s ease;
}
.logo:hover {
  transform: scale(1.04);
}
.logo img {
  width: 74%;
  height: 74%;
  object-fit: contain;
  border-radius: 18%;
}

.nav {
  flex: 1;
  max-width: 430px;
  height: clamp(44px, 5.2vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 4px;
  padding: 4px 8px;
  background: #fff;
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
}
.nav-link {
  position: relative;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: -0.01em;
  opacity: 0.5;
  padding: 6px 6px 9px;
  transition: opacity 0.2s ease;
}
.nav-link:hover {
  opacity: 0.75;
}
.nav-link.active {
  opacity: 1;
}
.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  transform: translateX(-50%);
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}

.signin {
  flex-shrink: 0;
  height: clamp(44px, 5.2vw, 48px);
  display: inline-flex;
  align-items: center;
  padding: 0 clamp(16px, 2vw, 22px);
  background: var(--pill-dark);
  color: var(--sign-in-text);
  border-radius: 999px;
  box-shadow: var(--nav-shadow);
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(13px, 1.4vw, 15px);
  letter-spacing: -0.01em;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.signin:hover {
  background: #323234;
  color: #fff;
  transform: translateY(-1px);
}

.burger {
  display: none;
}

.hero-center {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 24px 0;
}

/* Trust row */
.trust {
  --trust-size: clamp(36px, 4.5vw, 42px);
  display: inline-flex;
  align-items: center;
  margin-bottom: clamp(16px, 2.5vh, 26px);
}
.avatars {
  display: inline-flex;
  align-items: center;
}
.avatar {
  width: var(--trust-size);
  height: var(--trust-size);
  border-radius: 50%;
  background: var(--trust-bg);
  border: 1px solid var(--trust-border);
  padding: 5px;
  display: grid;
  place-items: center;
  transition: transform 0.35s ease;
}
.avatar .inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #fff;
  display: grid;
  place-items: center;
}
.avatar i {
  color: #111;
  font-size: calc(var(--trust-size) * 0.34);
  line-height: 1;
}
.avatar.a1 {
  z-index: 1;
}
.avatar.a2 {
  z-index: 2;
  margin-left: calc(var(--trust-size) * -0.42);
}
.avatar.a3 {
  z-index: 4;
  margin-left: calc(var(--trust-size) * -0.42);
}
.avatar.a1:hover {
  transform: translateY(-2px);
}
.avatar.a2:hover {
  transform: translateY(-4px);
}
.avatar.a3:hover {
  transform: translateY(-2px);
}
.trust-pill {
  position: relative;
  z-index: 3;
  height: var(--trust-size);
  display: inline-flex;
  align-items: center;
  background: var(--trust-bg);
  border: 1px solid var(--trust-border);
  border-radius: 999px;
  color: var(--trust-text);
  font-weight: 500;
  font-size: clamp(12px, 1.4vw, 13.5px);
  white-space: nowrap;
  margin-left: calc(var(--trust-size) * -0.42);
  padding-left: calc(var(--trust-size) * 0.58);
  padding-right: 16px;
}

/* Headline */
.headline {
  font-family: var(--font-display);
  color: #fff;
  line-height: 1.12;
  letter-spacing: -0.04em;
  white-space: nowrap;
  overflow: hidden;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.46), 0 1px 4px rgba(0, 0, 0, 0.38);
}
.headline span {
  display: block;
  font-size: clamp(28px, 6.2vw, 80px);
}
.headline.anim {
  opacity: 1;
  transform: none;
  filter: none;
  animation: none;
}
.headline.anim span {
  opacity: 0;
  transform: translateY(14px);
  animation: headlineFade 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.headline.anim span:nth-child(1) {
  animation-delay: 0.12s;
}
.headline.anim span:nth-child(2) {
  animation-delay: 0.3s;
}

.subhead {
  max-width: min(500px, 92%);
  margin: clamp(14px, 2vh, 22px) auto 0;
  font-size: clamp(calc(13.5px + 2pt), calc(1.55vw + 2pt), calc(16.5px + 2pt));
  line-height: 1.55;
  color: #d0d0d0;
  opacity: 0.85;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #000;
  font-weight: 600;
  font-size: clamp(13.5px, 1.5vw, 14.5px);
  text-decoration: none;
  padding: clamp(11px, 1.6vh, 13px) clamp(22px, 3vw, 28px);
  border-radius: 999px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.15),
    0 0 22px rgba(255, 255, 255, 0.32), 0 0 44px rgba(255, 255, 255, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25),
    0 0 30px rgba(255, 255, 255, 0.5), 0 0 64px rgba(255, 255, 255, 0.22);
}
.hero-center .cta {
  margin-top: clamp(18px, 2.6vh, 28px);
}
.hero-center .cta.anim {
  animation: revealPulse 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}

/* Stats */
.stats {
  flex-shrink: 0;
  width: 100%;
  max-width: 920px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(12px, 2vw, 28px);
}
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 4px;
}
.stat-icon {
  font-family: var(--font-display);
  color: #fff;
  font-size: clamp(22px, 3vw, 33px);
  line-height: 1;
}
.stat-value {
  color: #fff;
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
}
.stat-label {
  color: var(--muted);
  font-size: clamp(11px, 1.2vw, 12.5px);
}

/* ============ SHARED SECTION ============ */
.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: clamp(72px, 12vh, 140px) clamp(20px, 5vw, 40px);
}
.section-head {
  text-align: center;
  margin-bottom: clamp(40px, 6vh, 64px);
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.1;
  font-size: clamp(30px, 5vw, 52px);
  color: #fff;
}
.lede {
  margin: 16px auto 0;
  max-width: 560px;
  color: var(--muted);
  font-size: clamp(14px, 1.5vw, 16px);
  line-height: 1.6;
}

/* ============ TEAM ORBIT ============ */
.culture {
  max-width: 100%;
  overflow: hidden;
}
.orbit-wrap {
  --r: clamp(240px, 37vw, 450px);
  --cw: clamp(68px, 9.3vw, 110px);
  --ch: clamp(86px, 11.8vw, 136px);
  --spin: 90s;
  position: relative;
  width: min(1160px, 96vw);
  height: calc(var(--r) + var(--ch) + 26px);
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to bottom, #000 0 64%, transparent 97%);
  mask-image: linear-gradient(to bottom, #000 0 64%, transparent 97%);
}
.orbit-center {
  position: absolute;
  left: 50%;
  top: calc(var(--r) * 0.72);
  transform: translate(-50%, -50%);
  width: min(540px, 74%);
  text-align: center;
  z-index: 5;
}
.orbit-center .eyebrow {
  margin-bottom: 14px;
}
.orbit {
  position: absolute;
  left: 50%;
  top: calc(var(--r) + var(--ch) / 2 + 12px);
  width: 0;
  height: 0;
  transform-origin: 0 0;
  animation: orbitSpin var(--spin) linear infinite;
}
.slot {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  transform: rotate(var(--a)) translateY(calc(-1 * var(--r)))
    rotate(calc(-1 * var(--a)));
}
.card-pos {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--cw);
  height: var(--ch);
  transform: translate(-50%, -50%) rotate(var(--tilt, 0deg));
}
.card {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.55);
  animation: orbitCounter var(--spin) linear infinite;
}
@keyframes orbitSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes orbitCounter {
  to {
    transform: rotate(-360deg);
  }
}

/* ============ TOP APP BELT ============ */
.app-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
  -webkit-mask-image: linear-gradient(
    to right,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
  mask-image: linear-gradient(
    to right,
    transparent,
    #000 7%,
    #000 93%,
    transparent
  );
}
.app-track {
  display: flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  animation: teamScroll 40s linear infinite;
}
.app-marquee:hover .app-track {
  animation-play-state: paused;
}
.app-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--card);
  text-decoration: none;
  color: #fff;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.app-chip:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.22);
}
.chip-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.chip-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.chip-icon.has-icon img {
  opacity: 1;
}
.chip-icon.has-icon i {
  opacity: 0;
}
.chip-name {
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

/* ============ APPS ============ */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.app-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  text-decoration: none;
  color: #fff;
  transition: background 0.25s ease, border-color 0.25s ease,
    transform 0.25s ease;
}
.app-card:hover {
  background: var(--card-hover);
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}
.app-icon {
  position: relative;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 22px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25);
}
.app-icon img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.app-icon.has-icon img {
  opacity: 1;
}
.app-icon.has-icon i {
  opacity: 0;
}
.app-meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.app-name {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.app-cat {
  font-size: 12.5px;
  color: var(--muted);
}
.app-badge {
  margin-left: auto;
  align-self: flex-start;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #cfe0ff;
  background: rgba(96, 165, 250, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.35);
  padding: 3px 8px;
  border-radius: 999px;
}
.app-go {
  margin-left: 6px;
  color: var(--muted);
  font-size: 12px;
  transition: color 0.2s ease, transform 0.2s ease;
}
.app-card:hover .app-go {
  color: #fff;
  transform: translate(2px, -2px);
}
.app-badge + .app-go {
  margin-left: 10px;
}

/* ============ ABOUT ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.about-copy h2 {
  text-align: left;
  margin: 14px 0 20px;
}
.about-copy .eyebrow {
  margin-bottom: 8px;
}
.about-copy p {
  color: #c9c9c9;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 14px;
}
.verticals {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vert {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--card);
}
.vert-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 16px;
}
.vert h4 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 3px;
}
.vert p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* ============ CAPABILITIES ============ */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cap-card {
  padding: 26px 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--card);
  transition: background 0.25s ease, transform 0.25s ease;
}
.cap-card:hover {
  background: var(--card-hover);
  transform: translateY(-3px);
}
.cap-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 19px;
  margin-bottom: 18px;
}
.cap-card h3 {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.cap-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* ============ CONTACT ============ */
.contact {
  text-align: center;
}
.contact-title {
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1.08;
  font-size: clamp(32px, 6vw, 60px);
  margin: 14px 0 18px;
}
.contact-actions {
  display: inline-flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 28px;
}
.ghost-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: clamp(11px, 1.6vh, 13px) clamp(20px, 3vw, 26px);
  border-radius: 999px;
  border: 1px solid var(--line);
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.ghost-btn:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.04);
}
.footer {
  margin-top: clamp(56px, 9vh, 96px);
  padding-top: 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
}

/* ============ ANIMATIONS ============ */
.anim {
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  filter: blur(6px);
  animation: reveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes reveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes revealPulse {
  0% {
    opacity: 0;
    transform: translateY(22px) scale(0.98);
    filter: blur(6px);
  }
  70% {
    opacity: 1;
    transform: translateY(-2px) scale(1.02);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}
@keyframes headlineFade {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes teamScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* Scroll-reveal for sections */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-on-scroll.in {
  opacity: 1;
  transform: none;
}

/* ============ MOBILE MENU CHROME ============ */
.overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 40;
  background: rgba(0, 0, 0, 0.62);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  animation: overlayIn 0.28s ease both;
}
.overlay:not([hidden]) {
  display: block;
}
.mobile-menu {
  display: none;
  position: fixed;
  z-index: 50;
  top: calc(clamp(16px, 2.4vh, 28px) + 48px + 14px);
  left: 50%;
  transform: translateX(-50%);
  width: min(360px, calc(100% - 28px));
  flex-direction: column;
  gap: 4px;
  background: #fff;
  border-radius: 28px;
  padding: 22px 18px 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  animation: menuIn 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.mobile-menu:not([hidden]) {
  display: flex;
}
.mobile-menu a {
  position: relative;
  text-align: center;
  text-decoration: none;
  color: var(--nav-text);
  font-weight: 500;
  font-size: 16px;
  padding: 13px 10px 16px;
  border-radius: 14px;
  opacity: 0;
  animation: linkIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}
.mobile-menu a:nth-child(1) { animation-delay: 0.06s; }
.mobile-menu a:nth-child(2) { animation-delay: 0.12s; }
.mobile-menu a:nth-child(3) { animation-delay: 0.18s; }
.mobile-menu a:nth-child(4) { animation-delay: 0.24s; }
.mobile-menu a:nth-child(5) { animation-delay: 0.3s; }
.mobile-menu a.active::after {
  content: "";
  position: absolute;
  bottom: 8px;
  left: 50%;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #000;
  transform: translateX(-50%);
  box-shadow: -5px 0 0 #000, 5px 0 0 #000;
}
.mobile-menu .signin-full {
  margin-top: 8px;
  background: var(--pill-dark);
  color: #fff;
  border-radius: 999px;
}
.mobile-menu .signin-full.active::after {
  display: none;
}
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes menuIn {
  from { opacity: 0; transform: translate(-50%, -12px) scale(0.98); }
  to { opacity: 1; transform: translate(-50%, 0) scale(1); }
}
@keyframes linkIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 860px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
  .about-copy h2 {
    text-align: left;
  }
  .cap-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .topbar {
    max-width: 100%;
    justify-content: space-between;
  }
  .nav,
  .signin {
    display: none;
  }
  .logo {
    width: 48px;
    height: 48px;
  }
  .burger {
    display: grid;
    grid-auto-flow: row;
    justify-items: center;
    align-content: center;
    gap: 4px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: var(--pill-dark);
    box-shadow: var(--nav-shadow);
    cursor: pointer;
  }
  .burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: #fff;
    transition: transform 0.28s ease, opacity 0.2s ease, background 0.28s ease;
  }
  .burger[aria-expanded="true"] { background: #fff; }
  .burger[aria-expanded="true"] span { background: #111; }
  .burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

  .headline {
    letter-spacing: -0.08em;
    line-height: 1.05;
  }
  .trust-pill { font-size: 12px; }

  .app-grid {
    grid-template-columns: 1fr;
  }
  .cap-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 420px) {
  .trust { --trust-size: 34px; }
  .headline { letter-spacing: -0.09em; line-height: 1.04; }
  .app-name { white-space: normal; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .anim,
  .headline.anim span,
  .topbar,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ============ ORBIT READABILITY SCRIM ============ */
.orbit-center::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 220%;
  background: radial-gradient(
    60% 60% at 50% 50%,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.55) 45%,
    transparent 78%
  );
  z-index: -1;
  pointer-events: none;
}

/* ============ CODEWAY-STYLE STICKY SHOWCASE ============ */
.showcase {
  position: relative;
  z-index: 1;
}
.sticky-layer {
  position: sticky;
  top: 0;
  height: 100vh;
  margin-bottom: -100vh;
}
.bg-layer {
  z-index: 0;
  background: #1d4ed8;
  transition: background-color 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.phone-layer {
  z-index: 2;
  display: grid;
  place-items: center;
  pointer-events: none;
}
.phone-layer .phone-frame.big {
  opacity: var(--showcase-opacity, 1);
  transform: translateY(var(--showcase-phone-y, 0vh)) scale(var(--showcase-scale, 1));
  transform-origin: center center;
  will-change: opacity, transform;
}
.bg-layer {
  opacity: var(--showcase-bg-opacity, 1);
  will-change: opacity;
}
.showcase-panels {
  position: relative;
  z-index: 1;
}
.show-panel {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr min(320px, 34vw) 1fr;
  align-items: center;
  gap: clamp(20px, 4vw, 56px);
  padding: 80px clamp(24px, 6vw, 88px);
  color: #fff;
}
.show-copy {
  grid-column: 1;
  max-width: 460px;
  justify-self: end;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.show-stats {
  grid-column: 3;
  justify-self: start;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-width: 150px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}
.show-panel.active .show-copy,
.show-panel.active .show-stats {
  opacity: 1;
  transform: none;
}

.show-mid {
  grid-column: 2;
}
.show-app {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.show-ic {
  position: relative;
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 24px;
  overflow: hidden;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.3),
    0 6px 16px rgba(0, 0, 0, 0.3);
}
.show-ic img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.show-ic.has-icon img {
  opacity: 1;
}
.show-ic.has-icon i {
  opacity: 0;
}
.show-app-txt h3 {
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.15;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.show-cat {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}
.show-badge {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  white-space: nowrap;
}
.show-copy p {
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 30px;
}
.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 11px 22px;
  border-radius: 14px;
  background: #fff;
  color: #0a0a0a;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.store-btn:hover {
  transform: translateY(-2px);
}
.store-btn i {
  font-size: 26px;
}
.store-btn .sb-txt {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  text-align: left;
}
.store-btn .sb-txt small {
  font-size: 10px;
  opacity: 0.7;
}
.store-btn .sb-txt b {
  font-size: 17px;
  font-weight: 600;
}
.coming-pill {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.02em;
}
.stat-big {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.sb-num {
  font-size: clamp(30px, 3.4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sb-num i {
  font-size: 0.55em;
  color: #ffd166;
  vertical-align: 0.14em;
}
.sb-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}
.stat-rule {
  width: 44px;
  height: 1px;
  background: rgba(255, 255, 255, 0.25);
}

/* Phone frame */
.phone-frame {
  position: relative;
  width: clamp(230px, 26vw, 300px);
  aspect-ratio: 300 / 620;
  border-radius: 42px;
  background: #0a0a0c;
  padding: 10px;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.phone-island {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 34%;
  height: 22px;
  background: #000;
  border-radius: 999px;
  z-index: 3;
}
.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 33px;
  background-color: #111;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  transition: opacity 0.32s ease;
}
.phone-layer .phone-screen {
  opacity: 1;
}
.panel-phone {
  display: none;
}

/* ============ SHOWCASE MOBILE (stack, no sticky) ============ */
@media (max-width: 820px) {
  .sticky-layer.phone-layer,
  .sticky-layer.bg-layer {
    display: none;
  }
  .show-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
    min-height: auto;
    padding: 64px clamp(20px, 6vw, 40px);
    background: var(--bg);
    gap: 26px;
  }
  .show-copy {
    grid-column: 1;
    justify-self: center;
    order: 1;
    opacity: 1;
    transform: none;
    max-width: 440px;
  }
  .show-app {
    justify-content: center;
  }
  .show-app-txt h3 {
    justify-content: center;
  }
  .show-mid {
    grid-column: 1;
    order: 2;
  }
  .panel-phone {
    display: block;
  }
  .show-stats {
    grid-column: 1;
    order: 3;
    flex-direction: row;
    justify-self: center;
    align-items: center;
    gap: 22px;
    opacity: 1;
    transform: none;
  }
  .stat-rule {
    width: 1px;
    height: 34px;
  }
}

/* ============ FINAL EDITORIAL PASS ============ */
body {
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.hero { order: 1; }
.app-marquee { order: 2; }
.culture { order: 3; }
.showcase { order: 4; }
.mission-values { order: 5; }
.about { order: 6; }
.editorial-break { order: 7; }
.contact { order: 8; }
.overlay, .mobile-menu { order: 10; }

.culture {
  width: 100vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(82, 109, 255, .16), transparent 34%),
    radial-gradient(circle at 80% 75%, rgba(174, 69, 255, .12), transparent 32%),
    #050505;
  max-width: none;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.orbit-center .lede { max-width: 590px; margin-inline: auto; }

.app-marquee {
  background: #050505;
  border-top-color: rgba(255,255,255,.06);
  border-bottom-color: rgba(255,255,255,.06);
}

.showcase-intro {
  position: relative;
  z-index: 5;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 120px clamp(24px, 7vw, 104px) 86px;
  background: #050505;
  border-top: 1px solid rgba(255,255,255,.09);
}
.showcase-intro h2 {
  font-family: var(--font-display);
  font-size: clamp(48px, 7.2vw, 108px);
  line-height: .93;
  letter-spacing: -.045em;
  max-width: 980px;
  margin: 18px 0 24px;
}
.showcase-intro p { color: #9f9f9f; font-size: clamp(15px, 1.5vw, 19px); }
.bg-layer {
  background: linear-gradient(180deg,#050505 0%,#06101e 10%,#07182e 44%,#145cc5 100%);
  transition: background .9s cubic-bezier(.22,1,.36,1);
  overflow: hidden;
}
.bg-layer::before,
.bg-layer::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: inset 0 0 90px rgba(255,255,255,.04);
}
.bg-layer::before { width: 44vw; height: 44vw; right: -16vw; top: -13vw; }
.bg-layer::after { width: 32vw; height: 32vw; left: -13vw; bottom: -12vw; }
.show-panel {
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 340px) minmax(190px, 1fr);
  gap: clamp(36px, 6vw, 96px);
  padding-inline: clamp(32px, 8vw, 120px);
}
.show-copy {
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: rgba(5,5,8,.25);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0,0,0,.14);
}

@media (min-width: 821px) {
  .show-panel[data-shot="charades"] {
    min-height: 100vh;
  }

  .show-panel[data-shot="charades"] .show-copy {
    max-width: 400px;
    padding: 20px;
    border-radius: 22px;
    background: rgba(5, 16, 27, .2);
    backdrop-filter: blur(14px);
  }

  .show-panel[data-shot="charades"] .show-app {
    margin-bottom: 16px;
  }

  .show-panel[data-shot="charades"] .show-copy > p {
    font-size: 15px;
    line-height: 1.62;
  }

  .show-panel[data-shot="charades"] .store-btn {
    margin-top: 20px;
    transform: scale(.92);
    transform-origin: left center;
  }

  .show-panel[data-shot="charades"] .show-copy,
  .show-panel[data-shot="charades"] .show-stats {
    opacity: var(--showcase-opacity, 1);
    transform: translateY(var(--showcase-copy-y, 0vh));
    will-change: opacity, transform;
  }
}
.show-stats {
  padding: 25px 0;
}
.phone-frame.big {
  width: clamp(258px, 28vw, 326px);
  aspect-ratio: .473;
  padding: 9px;
  border-radius: 48px;
  background: linear-gradient(145deg,#34343a,#070709 55%);
  box-shadow: 0 42px 100px rgba(0,0,0,.52), inset 0 0 0 1px rgba(255,255,255,.2);
}
.phone-frame.big .phone-screen { border-radius: 39px; }
.phone-screen {
  background-size: 100% 100%;
  background-position: center;
  background-color: #08080a;
}
.shot-carai { background-image: url('assets/screens/car-ai.webp') !important; }
.shot-horoscope { background-image: url('assets/screens/daily-horoscope.webp') !important; }
.shot-tabu { background-image: url('assets/screens/tabu.webp') !important; }
.shot-drama { background-image: url('assets/screens/drama-one.webp') !important; }
.shot-charades { background-image: url('assets/screens/charades.webp') !important; }
.shot-growby { background-image: url('assets/screens/growby-v2.webp') !important; }
.p8 { background-image: url('assets/team/team-8.webp') !important; }
.p9 { background-image: url('assets/team/team-9.webp') !important; }
.p10 { background-image: url('assets/team/team-10.webp') !important; }
.p11 { background-image: url('assets/team/team-11.webp') !important; }

/* ============ MISSION VALUES ============ */
.mission-values {
  position: relative;
  isolation: isolate;
  padding: clamp(92px, 13vw, 170px) clamp(22px, 6vw, 92px);
  background:
    radial-gradient(circle at 16% 5%, rgba(54, 89, 255, .10), transparent 30%),
    radial-gradient(circle at 86% 80%, rgba(151, 74, 255, .08), transparent 34%),
    linear-gradient(180deg,#050505 0%,#030303 78%,#000 100%);
  overflow: hidden;
}
.mission-values::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .18;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg,rgba(255,255,255,.045) 1px,transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom,transparent,#000 20%,#000 78%,transparent);
}
.mission-head { max-width: 860px; margin: 0 auto clamp(48px,7vw,84px); text-align: center; }
.mission-head h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(42px, 6.5vw, 92px);
  line-height: .98;
  letter-spacing: -.045em;
}
.mission-head p { max-width: 640px; margin: 22px auto 0; color: #9c9ca3; line-height: 1.7; }
.value-grid { max-width: 1180px; margin: auto; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 16px; }
.value-card {
  min-height: 235px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 28px;
  background: linear-gradient(145deg,rgba(255,255,255,.095),rgba(255,255,255,.025));
  backdrop-filter: blur(22px) saturate(125%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.12), 0 18px 55px rgba(0,0,0,.12);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}
.value-card:hover { transform: translateY(-6px); border-color: rgba(255,255,255,.24); background: linear-gradient(145deg,rgba(255,255,255,.13),rgba(255,255,255,.035)); }
.value-icon {
  position: relative;
  display: grid;
  place-items: center;
  margin-bottom: 32px;
  width: 76px;
  height: 76px;
  border: 0;
  border-radius: 24px;
  color: #d9d9dd;
  background:
    radial-gradient(circle at 34% 24%,rgba(255,255,255,.62),transparent 18%),
    linear-gradient(145deg,#737379 0%,#ededf0 31%,#4b4b50 55%,#bfc0c5 74%,#343438 100%);
  box-shadow:
    inset 2px 2px 4px rgba(255,255,255,.72),
    inset -4px -5px 8px rgba(0,0,0,.52),
    0 14px 34px rgba(0,0,0,.32);
  transform: perspective(260px) rotateX(8deg) rotateY(-9deg);
}
.value-icon::after {
  content:"";
  position:absolute;
  inset:6px;
  border-radius:19px;
  border:1px solid rgba(255,255,255,.36);
  box-shadow: inset 0 0 18px rgba(0,0,0,.2);
}
.value-icon i {
  position:relative;
  z-index:1;
  font-size: 25px;
  color:#343438;
  filter: drop-shadow(0 1px 1px rgba(255,255,255,.62));
}
.value-card h3 { font-size: 20px; letter-spacing: -.025em; margin-bottom: 10px; }
.value-card p { color: #9999a1; font-size: 14px; line-height: 1.65; }

/* ============ EDITORIAL APP MOMENT ============ */
.editorial-break {
  position: relative;
  width: 100%;
  min-height: clamp(390px, 45vw, 620px);
  overflow: hidden;
  background: #000;
}
.editorial-image {
  position: absolute;
  inset: -4% 0;
}
.editorial-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 55%;
  filter: saturate(.86) contrast(1.03) brightness(.84);
}
.editorial-break::before,
.editorial-break::after {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  pointer-events: none;
}
.editorial-break::before {
  top: 0;
  height: 30%;
  background: linear-gradient(to bottom,#000 0%,rgba(0,0,0,.96) 18%,rgba(0,0,0,.54) 62%,transparent 100%);
}
.editorial-break::after {
  bottom: 0;
  height: 55%;
  background: linear-gradient(to top,#000 0%,#000 12%,rgba(0,0,0,.95) 27%,rgba(0,0,0,.62) 60%,transparent 100%);
}
.contact {
  position: relative;
  margin-top: clamp(-82px,-6vw,-42px);
  z-index: 3;
  background: #000;
}

@media (max-width: 820px) {
  .show-panel { background: var(--bg); padding-block: 78px; }
  .show-copy { padding: 22px; background: rgba(5,5,8,.22); }
  .panel-phone .phone-frame { aspect-ratio: .473; width: min(72vw, 310px); }
  .phone-screen { background-size: 100% 100%; }
  .value-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .value-card { min-height: 215px; }
  .editorial-break { min-height: 500px; }
  .editorial-image img { object-position: 58% center; }
}

@media (max-width: 560px) {
  .mission-values { padding-inline: 16px; }
  .value-grid { grid-template-columns: 1fr; }
  .value-card { min-height: 0; }
  .editorial-break { min-height: 430px; }
  .editorial-break::before { height: 27%; }
  .editorial-break::after { height: 58%; }
}
