:root {
  --background: #05070d;
  --foreground: #f7faff;
  --card: rgba(11, 18, 32, 0.72);
  --card-foreground: #f7faff;
  --popover: rgba(15, 23, 42, 0.92);
  --popover-foreground: #f7faff;
  --primary: #3b82f6;
  --primary-foreground: #ffffff;
  --secondary: rgba(255, 255, 255, 0.06);
  --secondary-foreground: #dce5f5;
  --muted-surface: rgba(255, 255, 255, 0.04);
  --muted-foreground: #96a5ba;
  --accent: #3b82f6;
  --accent-foreground: #ffffff;
  --border: rgba(148, 163, 184, 0.18);
  --border-strong: rgba(148, 163, 184, 0.34);
  --input: rgba(148, 163, 184, 0.22);
  --ring: rgba(59, 130, 246, 0.44);
  --bg: var(--background);
  --bg-2: #080d18;
  --surface: #0b1220;
  --surface-2: #111a2a;
  --surface-3: #182235;
  --ink: var(--foreground);
  --ink-soft: var(--secondary-foreground);
  --muted: var(--muted-foreground);
  --muted-2: #65748a;
  --line: var(--border);
  --line-strong: var(--border-strong);
  --blue: var(--primary);
  --blue-2: var(--accent);
  --blue-3: #93c5fd;
  --culture-accent: var(--accent);
  --blue-deep: #1d4ed8;
  --panel: var(--card);
  --panel-strong: rgba(15, 23, 42, 0.88);
  --panel-soft: var(--muted-surface);
  --panel-edge: rgba(226, 232, 240, 0.1);
  --shadow: rgba(2, 10, 28, 0.58);
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-heavy: cubic-bezier(0.16, 1, 0.3, 1);
  --font: "Pretendard", "Avenir Next", "Apple SD Gothic Neo", system-ui, sans-serif;
  --mono: "SF Mono", "Menlo", "Monaco", monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    linear-gradient(165deg, rgba(51, 119, 255, 0.22), transparent 34%),
    linear-gradient(180deg, var(--bg), #040711 58%, #03050c);
  color: var(--ink);
  font-family: var(--font);
  letter-spacing: 0;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(122, 158, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 158, 232, 0.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  transform: translateY(-140%);
  transition: transform 300ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.52;
}

.grain {
  display: none;
}

.site-header,
main {
  position: relative;
}

main {
  z-index: 1;
}

.site-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  width: 100%;
  min-height: 76px;
  padding: 14px max(24px, calc((100vw - 1200px) / 2));
  --brand-filter: brightness(0) invert(1);
  --nav-color: rgba(245, 249, 255, 0.74);
  --nav-strong: #ffffff;
  --nav-active-line: rgba(245, 249, 255, 0.9);
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  pointer-events: none;
}

.company-page .site-header {
  --brand-filter: none;
  --nav-color: rgba(17, 24, 39, 0.62);
  --nav-strong: rgba(17, 24, 39, 0.92);
  --nav-active-line: rgba(17, 24, 39, 0.76);
}

.company-page .site-header.on-dark {
  --brand-filter: brightness(0) invert(1);
  --nav-color: rgba(245, 249, 255, 0.74);
  --nav-strong: #ffffff;
  --nav-active-line: rgba(245, 249, 255, 0.9);
}

.site-header.on-light {
  --brand-filter: none;
  --nav-color: rgba(17, 24, 39, 0.64);
  --nav-strong: rgba(17, 24, 39, 0.94);
  --nav-active-line: rgba(59, 130, 246, 0.82);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding-left: 4px;
  pointer-events: auto;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 156px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1;
}

.brand strong {
  font-size: 18px;
  font-weight: 780;
}

.brand small {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--mono);
  font-size: 10px;
}

.nav-links {
  display: inline-flex;
  justify-self: end;
  align-items: center;
  gap: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  pointer-events: auto;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  border-radius: 0;
  color: var(--nav-color);
  font-size: 14px;
  font-weight: 650;
  transition: color 360ms var(--ease);
}

.nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--nav-active-line);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 360ms var(--ease), transform 360ms var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--nav-strong);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  opacity: 1;
  transform: scaleX(1);
}

.header-cta {
  justify-self: end;
}

.action {
  --tx: 0px;
  --ty: 0px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 5px 6px 5px 18px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 780;
  transform: translate3d(var(--tx), var(--ty), 0);
  transition: transform 420ms var(--ease-heavy), border-color 420ms var(--ease), background 420ms var(--ease);
}

.action.primary,
.header-cta {
  background: var(--blue);
  color: white;
  box-shadow: 0 22px 52px rgba(51, 119, 255, 0.25);
}

.action.secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
}

.action i {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  font-style: normal;
  transition: transform 420ms var(--ease-heavy), background 420ms var(--ease);
}

.action:hover i {
  background: rgba(255, 255, 255, 0.24);
  transform: translate3d(2px, -1px, 0) scale(1.04);
}

.action:active {
  transform: translate3d(var(--tx), var(--ty), 0) scale(0.98);
}

.action:focus-visible,
.nav-links a:focus-visible,
.brand:focus-visible,
.text-link:focus-visible {
  outline: 2px solid var(--blue-2);
  outline-offset: 4px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 72px;
  min-height: 100dvh;
  padding: 148px 64px 88px;
}

.hero-copy {
  max-width: 740px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 760;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
}

h1 {
  margin-bottom: 28px;
  font-size: 82px;
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 22px;
  font-size: 56px;
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 14px;
  font-size: 28px;
  font-weight: 780;
  line-height: 1.18;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-lead,
.stage-step p,
.metric-panel p,
.news-item p,
.bio,
.join-item p,
.cta-shell p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.78;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.spotlight {
  --mx: 50%;
  --my: 50%;
  position: relative;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(59, 130, 246, 0.14), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.018));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.075), 0 30px 92px rgba(2, 8, 23, 0.32);
}

.hero-device {
  min-height: 650px;
  border-radius: var(--radius);
  padding: 8px;
}

.device-shell {
  position: relative;
  min-height: 634px;
  overflow: hidden;
  border-radius: 6px;
  background:
    linear-gradient(rgba(153, 185, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 185, 255, 0.05) 1px, transparent 1px),
    radial-gradient(ellipse at 44% 20%, rgba(51, 119, 255, 0.28), transparent 50%),
    #050a14;
  background-size: 40px 40px, 40px 40px, auto, auto;
}

.device-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--mono);
  font-size: 12px;
}

.device-top strong {
  margin-left: auto;
  color: var(--blue-2);
}

.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 0 rgba(51, 119, 255, 0.34);
  animation: pulseDot 2400ms var(--ease) infinite;
}

@keyframes pulseDot {
  50% {
    box-shadow: 0 0 0 14px rgba(51, 119, 255, 0);
  }
}

.journey-board {
  position: absolute;
  inset: 70px 24px 24px;
}

.journey-board svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.journey-board path {
  fill: none;
  stroke: rgba(108, 160, 255, 0.55);
  stroke-width: 1.4;
  stroke-dasharray: 7 14;
  animation: routeFlow 9000ms cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes routeFlow {
  to {
    stroke-dashoffset: -180;
  }
}

.journey-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  border: 1px solid rgba(153, 185, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  color: var(--ink);
  font-weight: 800;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.node-start {
  left: 4%;
  top: 10%;
}

.node-branch {
  left: 38%;
  top: 44%;
}

.node-message {
  right: 6%;
  top: 10%;
}

.node-convert {
  right: 5%;
  bottom: 9%;
}

.signal-card {
  position: absolute;
  z-index: 3;
  width: 230px;
  padding: 16px;
  border: 1px solid rgba(153, 185, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(13, 26, 46, 0.82);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: drift 6200ms var(--ease) infinite;
}

.signal-card span {
  display: block;
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.signal-card strong {
  display: block;
  margin-top: 9px;
  line-height: 1.42;
}

.card-a {
  left: 24px;
  bottom: 42px;
}

.card-b {
  top: 74px;
  right: 26px;
  animation-delay: -1800ms;
}

.card-c {
  left: 48%;
  bottom: 112px;
  animation-delay: -3200ms;
}

@keyframes drift {
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

.scroll-stage {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.78fr);
  gap: 72px;
  align-items: start;
  padding: 120px 64px 170px;
}

.stage-visual {
  position: sticky;
  top: 118px;
}

.stage-heading h2 {
  margin: 0;
}

.stage-screen {
  position: relative;
  min-height: 520px;
  margin-top: 34px;
  overflow: hidden;
  border-radius: var(--radius);
}

.stage-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(153, 185, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 185, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.stage-layer {
  position: absolute;
  inset: 18px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(153, 185, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(7, 16, 31, 0.02), rgba(7, 16, 31, 0.84)),
    rgba(7, 16, 31, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition: opacity 760ms var(--ease-heavy), transform 760ms var(--ease-heavy);
}

.stage-layer::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 28px;
  height: 210px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0) 46%, rgba(2, 7, 18, 0.42) 100%),
    var(--stage-image, linear-gradient(135deg, rgba(51, 119, 255, 0.3), transparent)) center / cover no-repeat;
  opacity: 0.96;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.26);
}

.stage-layer span,
.stage-step span,
.metric-panel span,
.news-item span,
.join-item span,
.voice-track span {
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 800;
}

.stage-layer strong {
  position: relative;
  display: block;
  max-width: 520px;
  font-size: 36px;
  line-height: 1.14;
}

.stage-layer p {
  position: relative;
  max-width: 520px;
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.culture-screen .stage-layer[data-layer="density"] {
  --stage-image: url("/about/assets/interview-density.jpg");
}

.culture-screen .stage-layer[data-layer="clarity"] {
  --stage-image: url("/about/assets/interview-clarity.jpg");
}

.culture-screen .stage-layer[data-layer="autonomy"] {
  --stage-image: url("/about/assets/interview-autonomy.jpg");
}

.culture-screen .stage-layer[data-layer="tooling"] {
  --stage-image: url("/about/assets/interview-ai.jpg");
}

.stage-layer em {
  position: relative;
  display: block;
  margin-top: 28px;
  color: rgba(168, 196, 255, 0.72);
  font-style: normal;
  font-size: 14px;
  font-weight: 720;
  line-height: 1.4;
}

.company-stage[data-active="origin"] .stage-layer[data-layer="origin"],
.company-stage[data-active="language"] .stage-layer[data-layer="language"],
.company-stage[data-active="speed"] .stage-layer[data-layer="speed"],
.company-stage[data-active="scale"] .stage-layer[data-layer="scale"],
.culture-stage[data-active="density"] .stage-layer[data-layer="density"],
.culture-stage[data-active="clarity"] .stage-layer[data-layer="clarity"],
.culture-stage[data-active="autonomy"] .stage-layer[data-layer="autonomy"],
.culture-stage[data-active="tooling"] .stage-layer[data-layer="tooling"] {
  opacity: 1;
  pointer-events: auto;
  transform: translate3d(0, 0, 0) scale(1);
}

.stage-steps {
  display: grid;
  gap: 120px;
  padding-top: 120px;
}

.stage-step {
  min-height: 420px;
  padding: 28px;
  border-top: 1px solid var(--line-strong);
}

.stage-step h3 {
  margin-top: 0;
}

.stage-step.is-active {
  border-color: var(--blue);
}

.stage-interview-link {
  display: none;
  margin-top: 24px;
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 820;
  line-height: 1.45;
  text-decoration: none;
}

.stage-interview-link:hover {
  color: var(--ink);
}

.quote-section {
  padding: 0 64px 150px;
}

.quote-panel {
  display: grid;
  min-height: 480px;
  align-content: center;
  padding: 54px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(130deg, rgba(51, 119, 255, 0.24), rgba(6, 16, 32, 0.74)),
    var(--surface);
}

.quote-panel p {
  max-width: 1080px;
  margin: 0;
  font-size: 66px;
  font-weight: 820;
  line-height: 1.12;
}

.quote-panel span {
  display: block;
  margin-top: 28px;
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 12px;
}

.momentum-section,
.news-section,
.voices-section,
.join-section,
.leaders-section,
.final-cta {
  padding: 120px 64px 150px;
}

.section-title {
  max-width: 980px;
  margin-bottom: 54px;
}

.momentum-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.78fr;
  gap: 16px;
}

.metric-panel,
.news-item,
.join-item,
.leader-card,
.voice-card,
.cta-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--card-foreground);
  background: var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.metric-panel {
  min-height: 280px;
  padding: 28px;
}

.metric-panel.wide {
  grid-row: span 2;
  min-height: 576px;
}

.metric-panel strong {
  display: block;
  margin-top: 18px;
  font-size: 34px;
  line-height: 1.16;
}

.metric-wave {
  height: 220px;
  margin-top: 44px;
  border-radius: 6px;
  background:
    linear-gradient(135deg, transparent 49%, rgba(51, 119, 255, 0.82) 50%, transparent 52%),
    linear-gradient(rgba(153, 185, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 185, 255, 0.1) 1px, transparent 1px);
  background-size: 100% 100%, 34px 34px, 34px 34px;
  animation: signalSweep 9000ms cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes signalSweep {
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.news-rail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 16px;
}

.news-item {
  min-height: 260px;
  padding: 28px;
  transition: transform 520ms var(--ease-heavy), border-color 520ms var(--ease);
}

.news-item:hover {
  border-color: var(--ring);
  transform: translate3d(0, -6px, 0);
}

.news-item strong {
  display: block;
  margin-top: 34px;
  font-size: 30px;
  line-height: 1.2;
}

.final-cta {
  padding-top: 50px;
}

.cta-shell {
  display: grid;
  justify-items: start;
  min-height: 430px;
  align-content: center;
  padding: 52px;
  background:
    radial-gradient(circle at 0% 0%, rgba(59, 130, 246, 0.16), transparent 34%),
    var(--popover);
}

.cta-shell h2 {
  max-width: 900px;
}

.hero-culture {
  grid-template-columns: minmax(0, 1fr);
}

.culture-page {
  --primary: #3b82f6;
  --accent: #3b82f6;
  --ring: rgba(59, 130, 246, 0.34);
  --blue: #3b82f6;
  --blue-2: #3b82f6;
  --blue-3: #93c5fd;
  --culture-accent: #3b82f6;
  --line: rgba(148, 163, 184, 0.18);
  --line-strong: rgba(148, 163, 184, 0.34);
  --panel: rgba(10, 17, 31, 0.7);
  --panel-strong: rgba(12, 20, 36, 0.9);
  --panel-soft: rgba(255, 255, 255, 0.035);
  --panel-edge: rgba(226, 232, 240, 0.1);
  background: linear-gradient(180deg, #05070d, #070b14 36%, #05070d);
}

.culture-page::before {
  background:
    linear-gradient(rgba(226, 232, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

.culture-page .site-header.on-light {
  --nav-active-line: rgba(17, 24, 39, 0.78);
}

.culture-page .spotlight {
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(226, 232, 240, 0.07), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018));
}

.culture-page .hero-culture {
  position: relative;
  isolation: isolate;
  display: block;
  min-height: 240dvh;
  align-content: normal;
  overflow: visible;
  padding: 0;
}

.culture-hero-sticky {
  position: sticky;
  top: 0;
  min-height: 100dvh;
  overflow: hidden;
  padding: 146px max(64px, calc((100vw - 1200px) / 2)) 132px;
}

.culture-hero-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    url("/about/assets/culture-hero-team.jpg") center / cover no-repeat;
  filter: blur(1px) saturate(1.02);
  opacity: var(--culture-bg-opacity, 0.9);
  transform: scale(1.01);
  transition: opacity 90ms linear;
}

.culture-hero-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.78) 0%, rgba(5, 8, 18, 0.5) 48%, rgba(5, 8, 18, 0.24) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.46) 0%, rgba(5, 8, 18, 0.12) 42%, rgba(5, 8, 18, 0.84) 100%),
    linear-gradient(rgba(226, 232, 240, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(226, 232, 240, 0.03) 1px, transparent 1px);
  background-size: auto, auto, 72px 72px, 72px 72px;
}

.culture-hero-intro {
  position: absolute;
  left: max(64px, calc((100vw - 1200px) / 2));
  top: 50%;
  z-index: 3;
  max-width: 960px;
  opacity: var(--culture-intro-opacity, 1);
  transform: translate3d(0, calc(-50% + var(--culture-intro-y, 0px)), 0) scale(var(--culture-intro-scale, 1));
  transform-origin: left center;
  transition: opacity 90ms linear, transform 90ms linear;
}

.culture-hero-intro h1 {
  max-width: 960px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(58px, 7.4vw, 118px);
  font-weight: 860;
  line-height: 1.03;
  text-shadow: 0 24px 88px rgba(0, 0, 0, 0.42);
}

.culture-scroll-guide {
  position: absolute;
  left: 50%;
  bottom: 42px;
  z-index: 4;
  display: inline-grid;
  justify-items: center;
  gap: 10px;
  color: rgba(248, 250, 252, 0.62);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0;
  opacity: calc(var(--culture-intro-opacity, 1) * 0.9);
  transform: translate3d(-50%, calc(var(--culture-intro-y, 0px) * -0.18), 0);
  transition: opacity 90ms linear, transform 90ms linear;
}

.culture-scroll-guide i {
  position: relative;
  display: block;
  width: 1px;
  height: 42px;
  overflow: hidden;
  background: rgba(248, 250, 252, 0.18);
}

.culture-scroll-guide i::after {
  content: "";
  position: absolute;
  left: 0;
  top: -42px;
  width: 1px;
  height: 42px;
  background: rgba(248, 250, 252, 0.78);
  animation: cultureScrollGuide 1800ms var(--ease-heavy) infinite;
}

@keyframes cultureScrollGuide {
  0% {
    transform: translateY(0);
  }
  62%,
  100% {
    transform: translateY(84px);
  }
}

.culture-about-copy {
  position: absolute;
  top: 50%;
  left: max(64px, calc((100vw - 1200px) / 2));
  z-index: 3;
  width: min(43vw, 590px);
  opacity: var(--culture-about-opacity, 0);
  transform: translate3d(var(--culture-about-x, 44px), calc(-50% + var(--culture-about-y, 28px)), 0);
  transition: opacity 90ms linear, transform 90ms linear;
}

.culture-about-kicker {
  margin: 0 0 24px;
  color: rgba(226, 232, 240, 0.7);
  font-size: 16px;
  font-weight: 760;
  letter-spacing: 0.02em;
}

.culture-about-copy h2 {
  max-width: 620px;
  margin: 0 0 28px;
  color: var(--ink);
  font-size: clamp(42px, 4.6vw, 74px);
  line-height: 1.04;
}

.culture-page .hero-lead {
  max-width: 600px;
  color: rgba(235, 242, 255, 0.8);
  font-size: 22px;
  font-weight: 650;
  line-height: 1.78;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
}

.culture-about-visuals {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.culture-about-photo {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 36px 100px rgba(0, 0, 0, 0.34);
  opacity: var(--culture-photo-opacity, 0);
  transition: opacity 90ms linear, transform 90ms linear;
}

.culture-about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.culture-about-photo.photo-one {
  right: max(256px, calc((100vw - 1200px) / 2 + 266px));
  top: 17%;
  z-index: 2;
  width: clamp(210px, 21vw, 320px);
  aspect-ratio: 3 / 4;
  transform: translate3d(var(--culture-photo-one-x, 34vw), var(--culture-photo-one-y, 6vh), 0) rotate(var(--culture-photo-one-r, -6deg));
}

.culture-about-photo.photo-two {
  right: max(86px, calc((100vw - 1200px) / 2 + 88px));
  bottom: 20%;
  z-index: 3;
  width: clamp(250px, 28vw, 420px);
  aspect-ratio: 4 / 3;
  transform: translate3d(var(--culture-photo-two-x, 28vw), var(--culture-photo-two-y, 14vh), 0) rotate(var(--culture-photo-two-r, 5deg));
}

.culture-about-photo.photo-three {
  right: max(32px, calc((100vw - 1200px) / 2 + 30px));
  top: 22%;
  z-index: 1;
  width: clamp(300px, 32vw, 460px);
  aspect-ratio: 16 / 9;
  transform: translate3d(var(--culture-photo-three-x, 36vw), var(--culture-photo-three-y, -7vh), 0) rotate(var(--culture-photo-three-r, 3deg));
  opacity: calc(var(--culture-photo-opacity, 0) * 0.82);
}

.culture-hero-sticky.is-about {
  --nav-read-zone: 1;
}

.culture-hero-mock {
  position: relative;
  min-height: 650px;
  overflow: hidden;
  border: 1px solid rgba(153, 185, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 18%, rgba(51, 119, 255, 0.2), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
    rgba(8, 17, 32, 0.82);
  box-shadow:
    0 42px 130px rgba(2, 10, 28, 0.48),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.culture-hero-mock::before,
.culture-hero-mock::after,
.mock-image-frame::before,
.mock-image-frame::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.culture-hero-mock::before {
  inset: 0;
  background:
    linear-gradient(rgba(168, 196, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(168, 196, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 46%, black 0%, transparent 74%);
}

.culture-hero-mock::after {
  left: 12%;
  right: 12%;
  bottom: 13%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.42), transparent);
}

.mock-image-frame {
  position: absolute;
  inset: 78px 56px;
  overflow: hidden;
  border: 1px solid rgba(153, 185, 255, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(5, 12, 24, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 32px 90px rgba(0, 0, 0, 0.22);
}

.mock-image-frame::before {
  inset: 26px;
  border: 1px dashed rgba(168, 196, 255, 0.22);
  border-radius: 12px;
}

.mock-image-frame::after {
  left: 50%;
  top: 50%;
  width: min(44vw, 320px);
  height: min(44vw, 320px);
  border: 1px solid rgba(168, 196, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 119, 255, 0.18), transparent 62%);
  transform: translate3d(-50%, -50%, 0);
}

.culture-page .leaders-section {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 32px;
}

.culture-page .voices-section {
  max-width: none;
  margin: 0;
  padding-right: 0;
  padding-left: 0;
}

.culture-page .scroll-stage {
  grid-template-columns: minmax(0, 1fr) minmax(344px, 384px);
  column-gap: 84px;
  row-gap: 72px;
  max-width: 1200px;
  margin: 0 auto;
}

.culture-page .stage-heading {
  grid-column: 1 / -1;
  grid-row: 1;
}

.culture-page .stage-steps {
  grid-column: 1;
  grid-row: 2;
  padding-top: 0;
}

.culture-page .stage-visual {
  grid-column: 2;
  grid-row: 2;
}

.culture-page .stage-screen {
  margin-top: 0;
}

.culture-page .culture-screen.spotlight {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.culture-page .culture-screen::before {
  display: none;
}

.team-console {
  display: grid;
  place-items: center;
  min-height: 650px;
  overflow: hidden;
  border-radius: var(--radius);
}

.console-orbit {
  position: absolute;
  inset: 40px;
  animation: orbitTurn 15000ms cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes orbitTurn {
  to {
    transform: rotate(360deg);
  }
}

.console-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 92px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink-soft);
  font-family: var(--mono);
  font-size: 12px;
}

.console-orbit span:nth-child(1) {
  left: 8%;
  top: 10%;
}

.console-orbit span:nth-child(2) {
  right: 4%;
  top: 30%;
}

.console-orbit span:nth-child(3) {
  left: 16%;
  bottom: 12%;
}

.console-orbit span:nth-child(4) {
  right: 18%;
  bottom: 7%;
}

.team-core {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  place-items: center;
  gap: 12px;
  width: 230px;
  height: 230px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  text-align: center;
  background: radial-gradient(circle, rgba(51, 119, 255, 0.34), rgba(8, 18, 34, 0.92) 68%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 30px 100px rgba(51, 119, 255, 0.18);
}

.team-core strong {
  font-size: 30px;
}

.team-core p {
  max-width: 140px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.console-feed {
  position: absolute;
  left: 28px;
  bottom: 28px;
  display: grid;
  gap: 8px;
  width: 220px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(7, 16, 31, 0.84);
}

.console-feed p {
  margin: 0;
  color: var(--blue-2);
  font-family: var(--mono);
  font-size: 12px;
}

.leaders-section {
  display: grid;
  gap: 24px;
}

.leader-card {
  position: relative;
  display: grid;
  grid-template-columns: 156px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-top: 1px solid rgba(226, 232, 240, 0.12);
  border-radius: 0;
  padding: 30px 0 6px;
  background: transparent;
  box-shadow: none;
}

.culture-page .leader-card.spotlight {
  background: transparent;
}

.leader-card.reverse {
  grid-template-columns: 156px minmax(0, 1fr);
}

.leader-card.reverse .portrait {
  order: -1;
}

.leader-card > :not(.portrait) {
  position: relative;
  z-index: 1;
  padding: 0;
}

.leader-card h2 {
  margin: 0 0 6px;
  font-size: 26px;
  line-height: 1.15;
}

.leader-role {
  margin: 0 0 14px;
  color: rgba(226, 232, 240, 0.68);
  font-family: inherit;
  font-size: 15px;
  font-weight: 720;
}

.leader-career {
  max-width: 760px;
  margin-top: 12px;
}

.leader-career li {
  border-color: rgba(148, 163, 184, 0.22);
  color: rgba(203, 213, 225, 0.76);
  background: rgba(148, 163, 184, 0.08);
}

.portrait {
  position: relative;
  align-self: start;
  width: 156px;
  height: 188px;
  overflow: hidden;
  border-radius: 10px;
  background:
    url("/about/assets/team/minyong.jpeg") center 38% / cover no-repeat;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.24);
}

.portrait::before {
  display: none;
}

.portrait::after {
  display: none;
}

.portrait.mingyu {
  background:
    url("/about/assets/team/minkyu-leader.jpg") center 34% / cover no-repeat;
}

.leader-card.reverse .portrait::before {
  display: none;
}

blockquote {
  max-width: 820px;
  margin: 16px 0 12px;
  padding-left: 0;
  border-left: 0;
  color: rgba(235, 242, 255, 0.86);
  font-size: 19px;
  font-weight: 560;
  line-height: 1.68;
  word-break: keep-all;
}

.text-link {
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 800;
}

.culture-screen .stage-layer::before {
  left: 0;
  right: 0;
  top: 0;
  height: 270px;
  border-radius: 6px 6px 0 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0) 64%, rgba(2, 7, 18, 0.26) 100%),
    var(--stage-image) center / cover no-repeat;
  box-shadow: none;
}

.culture-screen .stage-layer {
  inset: 0;
  align-content: end;
  padding: 292px 22px 22px;
}

.culture-screen .stage-layer::after {
  display: none;
}

.stage-layer strong,
.stage-layer p,
.stage-layer em {
  z-index: 1;
}

.culture-screen .stage-layer strong {
  max-width: 440px;
  font-size: 30px;
  line-height: 1.18;
}

.culture-screen .stage-layer p {
  max-width: 440px;
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.55;
}

.culture-screen .stage-layer p::after {
  content: "인터뷰 읽기";
  display: block;
  width: max-content;
  margin-top: 18px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 820;
  border-bottom: 1px solid rgba(255, 255, 255, 0.56);
}

.voices-section {
  overflow: hidden;
  scroll-margin-top: 110px;
}

.voice-marquee {
  width: 100%;
  overflow: hidden;
  padding-top: 18px;
  contain: layout paint style;
}

.voice-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: marquee 38000ms linear infinite;
  animation-play-state: paused;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
  will-change: transform;
}

.voice-marquee.is-active .voice-track {
  animation-play-state: running;
}

.voice-marquee:hover .voice-track,
.voice-marquee:focus-within .voice-track {
  animation-play-state: paused;
}

.voice-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 430px;
  min-height: 640px;
  overflow: hidden;
  padding: 276px 28px 28px;
  border-color: var(--panel-edge);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    var(--card);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.055);
  contain: layout paint style;
  transform: translateZ(0);
}

.voice-photo {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 268px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background:
    linear-gradient(180deg, rgba(2, 7, 18, 0) 18%, rgba(2, 7, 18, 0.16) 58%, rgba(11, 21, 38, 0.94) 100%),
    var(--voice-image) center / cover no-repeat;
  box-shadow: none;
  pointer-events: none;
}

.voice-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px;
  height: 84px;
  background: linear-gradient(180deg, transparent, rgba(11, 21, 38, 0.96));
}

.voice-photo.jeongwoo {
  --voice-image: url("/about/assets/team/optimized/jeongwoo.jpg");
  background-position: center 42%;
}

.voice-photo.kyungseo {
  --voice-image: url("/about/assets/team/optimized/kyungseo.jpg");
  background-position: center 38%;
}

.voice-photo.hyeonji {
  --voice-image: url("/about/assets/team/optimized/hyeonji.jpg");
  background-position: center 44%;
}

.voice-photo.soomin {
  --voice-image: url("/about/assets/team/optimized/soomin.jpg");
  background-position: center 34%;
}

.voice-photo.gunwoo {
  --voice-image: url("/about/assets/team/optimized/gunwoo.jpg");
  background-position: center 42%;
}

.voice-photo.hyukjun {
  --voice-image: url("/about/assets/team/optimized/hyukjun.jpg");
  background-position: center 38%;
}

.voice-photo.kahyeon {
  --voice-image: url("/about/assets/team/optimized/kahyeon.jpg");
  background-position: center 48%;
}

.voice-photo.minhye {
  --voice-image: url("/about/assets/team/optimized/minhye.jpg");
  background-position: center 26%;
}

.voice-card p {
  color: var(--ink-soft);
  font-size: 22px;
  line-height: 1.58;
}

.voice-meta {
  margin-top: auto;
  padding-top: 28px;
}

.voice-card strong,
.voice-card .voice-role {
  display: block;
}

.voice-card strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.45;
}

.voice-card .voice-role {
  margin-top: 3px;
  color: var(--ink-soft);
  font-family: var(--font);
  font-size: 15px;
  font-weight: 760;
  line-height: 1.42;
}

.career-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.career-chips li {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 9px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-foreground);
  background: var(--muted-surface);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.25;
}

.voice-card .text-link {
  display: inline-flex;
  margin-top: 18px;
}

@keyframes marquee {
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

.culture-news-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 64px 32px;
}

.culture-proof-section {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 112px max(64px, calc((100vw - 1200px) / 2)) 108px;
  scroll-margin-top: 96px;
  display: grid;
  gap: 86px;
  background: #f8fafc;
  color: #111827;
}

.proof-block {
  display: grid;
  gap: 38px;
}

.proof-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
}

.proof-head h2 {
  margin: 0;
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 1.08;
  color: #0f172a;
}

.proof-head p {
  justify-self: end;
  max-width: 600px;
  margin: 0 0 5px;
  color: #475569;
  font-size: 18px;
  font-weight: 680;
  line-height: 1.55;
  word-break: keep-all;
}

.proof-logo-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px 46px;
  padding-top: 8px;
}

.investor-proof {
  gap: 32px 60px;
}

.proof-logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 64px;
  padding: 0;
  background: transparent;
}

.proof-logo-wide {
  flex-basis: auto;
}

.proof-logo img {
  display: block;
  width: 164px;
  height: 46px;
  max-width: 100%;
  object-fit: contain;
  filter: none;
}

.proof-logo-wide img {
  width: 260px;
  height: 58px;
}

.schmidt-logo img {
  width: 240px;
  height: 58px;
}

.culture-news-section {
  padding-top: 88px;
  padding-bottom: 96px;
}

.culture-news-section .section-title {
  max-width: 1200px;
  margin-bottom: 52px;
}

.culture-news-section .section-title h2 {
  margin: 0;
  font-size: 42px;
  line-height: 1.2;
}

.culture-news-section .news-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  max-width: 1200px;
}

.culture-news-section .news-item {
  display: block;
  min-height: 431px;
  overflow: hidden;
  padding: 0 0 30px;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: inherit;
  background: var(--card);
  transition: transform 420ms var(--ease-heavy), border-color 420ms var(--ease-heavy);
}

.culture-news-section .news-item:hover {
  border-color: var(--border-strong);
  transform: translate3d(0, -5px, 0);
}

.culture-news-section .news-item img {
  display: block;
  width: 100%;
  aspect-ratio: 379 / 253;
  object-fit: cover;
  background: #0a1323;
  opacity: 0.9;
}

.culture-news-section .news-item span {
  display: block;
  margin: 30px 28px 14px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 650;
}

.culture-news-section .news-item strong {
  display: block;
  margin: 0 28px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.34;
  word-break: keep-all;
}

@media (max-width: 900px) {
  .culture-news-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .culture-proof-section {
    padding: 124px 24px 92px;
  }

  .proof-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .proof-head p {
    justify-self: start;
    max-width: 100%;
    font-size: 16px;
  }

  .proof-logo-grid,
  .investor-proof,
  .culture-news-section .news-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-logo-grid,
  .investor-proof {
    display: flex;
    gap: 22px 34px;
  }

  .proof-logo-wide {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .culture-news-section .news-rail {
    grid-template-columns: 1fr;
  }

  .proof-logo-grid,
  .investor-proof {
    gap: 22px 30px;
  }

  .proof-logo {
    min-height: 48px;
  }

  .proof-logo img {
    width: 138px;
    height: 38px;
  }

  .proof-logo-wide img {
    width: 212px;
    height: 48px;
  }

  .proof-logo-wide {
    grid-column: auto;
  }
}

.join-section {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  padding: 120px 64px 150px;
  color: var(--foreground);
  isolation: isolate;
}

.join-section::before,
.join-section::after {
  display: none;
}

.join-section .section-title {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin-bottom: 54px;
}

.join-section .section-title h2 {
  max-width: 840px;
  color: var(--foreground);
  font-size: 56px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.08;
}

.join-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 76px;
  row-gap: 46px;
  border: 0;
}

.join-item,
.join-item.spotlight {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  align-items: start;
  min-height: 214px;
  padding: 38px 0 42px;
  border: 0;
  border-radius: 0;
  color: var(--card-foreground);
  background: transparent;
  box-shadow: none;
}

.join-item:nth-child(n + 3) {
  border-top: 0;
}

.join-icon {
  width: 48px;
  height: 48px;
  margin-top: 3px;
  color: #3b82f6;
}

.join-icon svg {
  width: 100%;
  height: 100%;
  fill: rgba(59, 130, 246, 0.1);
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.join-copy h3 {
  margin: 0 0 14px;
  color: var(--foreground);
  font-size: 28px;
  font-weight: 780;
  letter-spacing: 0;
  line-height: 1.18;
}

.join-copy p {
  max-width: 410px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
}

@media (max-width: 1120px) {
  .join-section {
    padding-top: 110px;
    padding-bottom: 132px;
  }

  .join-grid {
    column-gap: 42px;
  }

  .join-item,
  .join-item.spotlight {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .join-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 760px) {
  .join-section {
    padding-top: 96px;
    padding-bottom: 116px;
  }

  .join-section .section-title {
    margin-bottom: 54px;
  }

  .join-section .section-title h2 {
    max-width: 420px;
    font-size: 34px;
    line-height: 1.14;
  }

  .join-grid {
    grid-template-columns: 1fr;
    row-gap: 30px;
  }

  .join-item,
  .join-item.spotlight {
    grid-template-columns: 50px minmax(0, 1fr);
    min-height: auto;
    padding: 30px 0 34px;
  }

  .join-item:nth-child(n + 2) {
    border-top: 0;
  }

  .join-icon {
    width: 34px;
    height: 34px;
  }

  .join-copy h3 {
    font-size: 23px;
  }

  .join-copy p {
    max-width: none;
    font-size: 16px;
  }
}

.inline-cta {
  padding: 92px 0 0;
}

.inline-cta .cta-shell {
  min-height: 360px;
}

.culture-page .final-cta {
  max-width: 1160px;
  margin: 0 auto;
  padding: 72px 64px 132px;
}

.culture-page .cta-shell {
  min-height: auto;
  padding: 56px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.culture-page .cta-shell h2 {
  font-size: 46px;
  line-height: 1.16;
}

.company-main {
  position: relative;
}

.company-scroll-hero {
  position: relative;
  min-height: 315dvh;
}

.sticky-company-hero {
  position: sticky;
  top: 0;
  display: grid;
  place-items: center;
  height: 100dvh;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(3, 7, 17, 0.94), rgba(5, 8, 18, 1) 58%, rgba(2, 4, 10, 1)),
    #050812;
  transition: background 720ms var(--ease-heavy);
}

.sticky-company-hero::before,
.sticky-company-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.sticky-company-hero::before {
  inset: -32%;
  z-index: 0;
  opacity: 0.54;
  background:
    conic-gradient(from 218deg at 50% 50%, transparent 0deg, rgba(51, 119, 255, 0.2) 58deg, transparent 112deg, rgba(168, 196, 255, 0.08) 172deg, transparent 244deg, rgba(51, 119, 255, 0.14) 306deg, transparent 360deg);
  filter: saturate(1.18);
  transform: translate3d(0, var(--mesh-shift, 0px), 0) rotate(-7deg) scale(1.04);
  transition: transform 720ms var(--ease-heavy), opacity 720ms var(--ease-heavy);
}

.sticky-company-hero::after {
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.94) 0%, transparent 18%, transparent 82%, rgba(5, 8, 18, 0.94) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.72) 0%, transparent 22%, transparent 70%, rgba(5, 8, 18, 0.9) 100%),
    repeating-linear-gradient(90deg, rgba(168, 196, 255, 0.04) 0 1px, transparent 1px 96px);
}

.company-scroll-hero.is-dark .sticky-company-hero,
.company-scroll-hero.is-dim .sticky-company-hero {
  background: #050812;
}

.depth-canvas,
.hero-wash,
.signal-mesh,
.hero-motion-field,
.phrase-stage {
  position: absolute;
  inset: 0;
}

.depth-canvas {
  z-index: 2;
  opacity: 0.62;
  mix-blend-mode: screen;
  transition: opacity 700ms var(--ease-heavy);
}

.company-scroll-hero.is-dim .depth-canvas {
  opacity: 0.84;
}

.company-scroll-hero.is-dark .depth-canvas {
  opacity: 1;
}

.hero-wash {
  z-index: 3;
  background:
    radial-gradient(ellipse at 50% 52%, transparent 0 36%, rgba(5, 8, 18, 0.14) 64%, rgba(5, 8, 18, 0.72) 100%),
    rgba(3, 5, 12, 0.04);
  transition: background 700ms var(--ease-heavy);
}

.company-scroll-hero.is-dim .hero-wash {
  background:
    radial-gradient(ellipse at 50% 52%, transparent 0 38%, rgba(5, 8, 18, 0.2) 66%, rgba(5, 8, 18, 0.78) 100%),
    rgba(3, 5, 12, 0.12);
}

.company-scroll-hero.is-dark .hero-wash {
  background:
    radial-gradient(ellipse at 50% 49%, rgba(51, 119, 255, 0.08), transparent 40%),
    radial-gradient(ellipse at 50% 52%, transparent 0 34%, rgba(5, 8, 18, 0.28) 66%, rgba(5, 8, 18, 0.86) 100%),
    rgba(3, 5, 12, 0.3);
}

.signal-mesh {
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.64;
  background:
    linear-gradient(rgba(51, 119, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(51, 119, 255, 0.055) 1px, transparent 1px);
  background-size: 84px 84px, 84px 84px;
  mask-image: radial-gradient(ellipse at 50% 52%, black 0 48%, transparent 76%);
  transform: translate3d(0, var(--mesh-shift, 0px), 0);
  transition: opacity 720ms var(--ease-heavy), filter 720ms var(--ease-heavy), transform 720ms var(--ease-heavy);
}

.signal-mesh::before,
.signal-mesh::after {
  content: "";
  position: absolute;
}

.signal-mesh::before {
  left: 50%;
  top: 50%;
  width: min(78vw, 1120px);
  height: min(78vw, 1120px);
  border: 1px solid rgba(168, 196, 255, 0.12);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.signal-mesh::after {
  left: 12%;
  right: 12%;
  top: 49%;
  height: 1px;
  background:
    linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.16), rgba(51, 119, 255, 0.4), rgba(168, 196, 255, 0.14), transparent);
  transform: rotate(-8deg);
  transform-origin: center;
}

.company-scroll-hero.is-dim .signal-mesh {
  opacity: 0.48;
  filter: saturate(0.8);
}

.company-scroll-hero.is-dark .signal-mesh {
  opacity: 0.28;
  filter: blur(3px) saturate(0.7);
}

.hero-motion-field {
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.blue-crescent {
  position: absolute;
  left: var(--crescent-x, -18vw);
  top: 50%;
  width: min(52vw, 760px);
  height: min(52vw, 760px);
  border-radius: 50%;
  background:
    radial-gradient(circle at 62% 50%, rgba(245, 249, 255, 0.14), transparent 16%),
    linear-gradient(135deg, rgba(51, 119, 255, 0.98), rgba(12, 70, 210, 0.92));
  box-shadow: inset -42px 0 90px rgba(245, 249, 255, 0.08), inset 52px 0 120px rgba(2, 20, 82, 0.28);
  opacity: var(--crescent-opacity, 0.16);
  transform: translate3d(-58%, -50%, 0) scale(var(--crescent-scale, 0.92));
  transition: left 760ms var(--ease-heavy), opacity 760ms var(--ease-heavy), transform 760ms var(--ease-heavy);
}

.blue-crescent::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(rgba(245, 249, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 249, 255, 0.07) 1px, transparent 1px);
  background-size: 14px 14px;
  mask-image: radial-gradient(circle at 72% 50%, transparent 0 38%, black 39% 100%);
}

.blue-crescent::after {
  content: "";
  position: absolute;
  inset: -10px -1px -10px auto;
  width: 38%;
  border-radius: 50%;
  background: #050812;
  box-shadow: -16px 0 46px rgba(5, 8, 18, 0.82);
}

.brand-orbit {
  position: absolute;
  right: var(--orbit-x, 24vw);
  top: calc(50% + var(--orbit-y, -2vh));
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
  opacity: var(--orbit-opacity, 0.16);
  transform: translate3d(50%, -50%, 0);
  transition: right 760ms var(--ease-heavy), top 760ms var(--ease-heavy), opacity 760ms var(--ease-heavy);
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(168, 196, 255, 0.3);
  border-radius: 50%;
  animation: orbitPulse 3600ms var(--ease-heavy) infinite;
}

.ring-b {
  inset: 22px;
  border-color: rgba(51, 119, 255, 0.36);
  animation-delay: -1400ms;
}

.orbit-core {
  position: relative;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(245, 249, 255, 0.24);
  border-radius: 14px;
  background: var(--blue);
  color: var(--ink);
  font-size: 31px;
  font-weight: 860;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
  animation: coreFloat 4200ms var(--ease-heavy) infinite;
}

.motion-thread {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.24), rgba(51, 119, 255, 0.46), transparent);
  transform-origin: center;
  opacity: var(--thread-opacity, 0.16);
}

.thread-a {
  left: 22%;
  right: 16%;
  top: 42%;
  transform: rotate(-9deg) translate3d(var(--thread-a-shift, 0px), 0, 0);
}

.thread-b {
  left: 18%;
  right: 20%;
  top: 58%;
  transform: rotate(11deg) translate3d(var(--thread-b-shift, 0px), 0, 0);
}

@keyframes orbitPulse {
  50% {
    opacity: 0.38;
    transform: scale(1.14);
  }
}

@keyframes coreFloat {
  50% {
    transform: translate3d(0, -8px, 0) scale(1.025);
  }
}

.signal-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(51, 119, 255, 0.36), transparent);
  transform-origin: left center;
}

.line-a {
  left: 10%;
  top: 34%;
  width: 36%;
  transform: rotate(10deg);
}

.line-b {
  right: 8%;
  top: 31%;
  width: 34%;
  transform: rotate(154deg);
}

.line-c {
  left: 25%;
  bottom: 25%;
  width: 48%;
  transform: rotate(-14deg);
}

.signal-node {
  position: absolute;
  width: 8px;
  height: 8px;
  border: 1px solid rgba(51, 119, 255, 0.5);
  border-radius: 50%;
  background: rgba(51, 119, 255, 0.7);
  box-shadow: 0 0 0 8px rgba(51, 119, 255, 0.07);
  animation: nodeBreath 3600ms var(--ease-heavy) infinite;
}

.node-a {
  left: 18%;
  top: 37%;
}

.node-b {
  left: 36%;
  top: 25%;
  animation-delay: -900ms;
}

.node-c {
  right: 25%;
  top: 33%;
  animation-delay: -1700ms;
}

.node-d {
  left: 43%;
  bottom: 23%;
  animation-delay: -2400ms;
}

.node-e {
  right: 15%;
  bottom: 34%;
  animation-delay: -3100ms;
}

@keyframes nodeBreath {
  50% {
    opacity: 0.42;
    transform: scale(1.42);
  }
}

.phrase-stage {
  z-index: 4;
  display: grid;
  place-items: center;
  padding: 0 48px;
  pointer-events: none;
}

.story-phrase {
  position: absolute;
  max-width: 1180px;
  margin: 0;
  color: var(--ink);
  font-size: 88px;
  font-weight: 860;
  line-height: 1.08;
  text-align: center;
  text-shadow: 0 22px 100px rgba(51, 119, 255, 0.28);
  opacity: 0;
  transform: translate3d(0, 28px, 0) scale(0.98);
  transition: color 520ms var(--ease-heavy), opacity 520ms var(--ease-heavy), transform 520ms var(--ease-heavy);
}

.story-phrase.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.company-scroll-hero.is-dim .story-phrase,
.company-scroll-hero.is-dark .story-phrase {
  color: var(--ink);
  text-shadow: 0 18px 80px rgba(51, 119, 255, 0.26);
}

.hero-caption {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(245, 249, 255, 0.48);
  font-size: 13px;
  font-weight: 700;
  transform: translateX(-50%);
  transition: color 520ms var(--ease-heavy), opacity 520ms var(--ease-heavy);
}

.company-scroll-hero.is-dark .hero-caption {
  color: rgba(245, 249, 255, 0.58);
}

.hero-caption i {
  display: block;
  width: 1px;
  height: 34px;
  background: currentColor;
  transform-origin: top;
  animation: scrollLine 1700ms var(--ease-heavy) infinite;
}

@keyframes scrollLine {
  50% {
    transform: scaleY(0.42);
    opacity: 0.45;
  }
}

.brand-mark {
  border: 0;
}

.brand-mark img {
  display: block;
  width: 156px;
  height: auto;
  filter: var(--brand-filter);
  transition: filter 220ms var(--ease), opacity 220ms var(--ease);
}

.company-scroll-hero {
  min-height: 335dvh;
  background: #f7fbff;
}

.sticky-company-hero,
.company-scroll-hero.is-dim .sticky-company-hero,
.company-scroll-hero.is-dark .sticky-company-hero {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(246, 251, 255, 0.96) 54%, rgba(239, 247, 255, 0.98)),
    #f7fbff;
}

.sticky-company-hero::before {
  inset: 0;
  z-index: 0;
  opacity: 1;
  background:
    linear-gradient(rgba(0, 68, 204, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 68, 204, 0.032) 1px, transparent 1px);
  background-size: 18px 18px;
  filter: none;
  transform: translate3d(0, calc(var(--scene-drift, 0px) * 0.45), 0);
}

.sticky-company-hero::after {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(247, 251, 255, 0.72) 0%, transparent 16%, transparent 80%, rgba(247, 251, 255, 0.82) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, transparent 24%, transparent 72%, rgba(237, 246, 255, 0.92) 100%);
}

.hero-wash {
  z-index: 2;
  background:
    radial-gradient(ellipse at 54% 48%, rgba(0, 68, 204, 0.12), transparent 32%),
    linear-gradient(120deg, rgba(150, 205, 255, 0.18), transparent 34%, rgba(255, 255, 255, 0.22) 72%);
  opacity: 0.88;
  transition: opacity 700ms var(--ease-heavy), background 700ms var(--ease-heavy);
}

.company-scroll-hero.is-dim .hero-wash,
.company-scroll-hero.is-dark .hero-wash {
  background:
    radial-gradient(ellipse at 54% 48%, rgba(0, 68, 204, 0.15), transparent 34%),
    linear-gradient(120deg, rgba(150, 205, 255, 0.22), transparent 36%, rgba(255, 255, 255, 0.26) 72%);
}

.company-scroll-hero.is-dark .sticky-company-hero {
  background:
    linear-gradient(180deg, rgba(6, 10, 22, 0.98), rgba(4, 7, 16, 1) 58%, rgba(1, 3, 8, 1)),
    #050812;
}

.company-scroll-hero.is-dark .sticky-company-hero::before {
  opacity: 0.46;
  background:
    linear-gradient(rgba(122, 158, 232, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 158, 232, 0.045) 1px, transparent 1px);
}

.company-scroll-hero.is-dark .sticky-company-hero::after {
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.78) 0%, transparent 18%, transparent 80%, rgba(5, 8, 18, 0.86) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.76) 0%, transparent 24%, transparent 68%, rgba(5, 8, 18, 0.94) 100%);
}

.company-scroll-hero.is-dark .hero-wash {
  background:
    radial-gradient(ellipse at 54% 48%, rgba(51, 119, 255, 0.22), transparent 36%),
    radial-gradient(ellipse at 46% 54%, rgba(255, 255, 255, 0.05), transparent 42%),
    rgba(3, 5, 12, 0.26);
}

.notifly-hero-scene {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
  transform: translate3d(0, var(--scene-drift, 0px), 0);
}

.scene-grid {
  position: absolute;
  inset: 10% 4% 6%;
  opacity: var(--grid-fade, 0.38);
  background:
    linear-gradient(90deg, transparent 0 49.8%, rgba(0, 68, 204, 0.12) 50%, transparent 50.2%),
    linear-gradient(180deg, transparent 0 49.8%, rgba(0, 68, 204, 0.1) 50%, transparent 50.2%);
  background-size: 112px 112px;
  mask-image: radial-gradient(ellipse at 52% 52%, black 0 34%, transparent 72%);
}

.scene-blue-arc {
  position: absolute;
  left: -41vw;
  top: 50%;
  width: min(78vw, 1040px);
  height: min(78vw, 1040px);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(135deg, #075cff 0%, #0044cc 54%, #022f9a 100%);
  background-size: 18px 18px, 18px 18px, auto;
  box-shadow:
    44px 0 98px rgba(0, 68, 204, 0.16),
    inset -54px 0 100px rgba(255, 255, 255, 0.12),
    inset 58px 0 120px rgba(0, 21, 92, 0.18);
  transform: translate3d(var(--arc-shift, -2vw), -50%, 0) scale(var(--arc-scale, 1));
  transition: transform 720ms var(--ease-heavy);
}

.scene-blue-arc::after {
  content: "";
  position: absolute;
  inset: -2px -2px -2px auto;
  width: 39%;
  border-radius: 50%;
  background: #f7fbff;
  box-shadow: -26px 0 60px rgba(247, 251, 255, 0.88);
}

.company-scroll-hero.is-dark .scene-blue-arc {
  box-shadow:
    38px 0 100px rgba(51, 119, 255, 0.2),
    inset -54px 0 100px rgba(255, 255, 255, 0.08),
    inset 58px 0 120px rgba(0, 21, 92, 0.24);
}

.company-scroll-hero.is-dark .scene-blue-arc::after {
  background: #050812;
  box-shadow: -26px 0 60px rgba(5, 8, 18, 0.9);
}

.logo-hub {
  position: absolute;
  left: 52%;
  top: 53%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 172px;
  height: 172px;
  transform: translate3d(-50%, -50%, 0) scale(var(--logo-scale, 0.92));
  transition: transform 720ms var(--ease-heavy);
}

.logo-ring,
.logo-aura,
.logo-mark {
  position: absolute;
  border-radius: 50%;
}

.logo-ring {
  inset: 0;
  border: 1px solid rgba(0, 68, 204, 0.2);
}

.logo-ring.ring-a {
  animation: logoRingA 5200ms var(--ease-heavy) infinite;
}

.logo-ring.ring-b {
  inset: 24px;
  border-style: dashed;
  border-color: rgba(0, 68, 204, 0.24);
  animation: logoRingB 7600ms linear infinite;
}

.logo-aura {
  inset: 34px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 18px 72px rgba(0, 68, 204, 0.18);
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(0, 68, 204, 0.12);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  box-shadow:
    0 24px 80px rgba(0, 68, 204, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  animation: logoFloat 5200ms var(--ease-heavy) infinite;
}

.logo-mark img {
  width: 54px;
  height: auto;
}

.text-hub {
  position: absolute;
  left: 52%;
  top: 53%;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 360px;
  min-height: 190px;
  padding: 34px 30px;
  color: #121826;
  text-align: center;
  transform: translate3d(-50%, -50%, 0) scale(var(--logo-scale, 0.92));
  transition: color 700ms var(--ease-heavy), transform 720ms var(--ease-heavy);
}

.text-ring {
  position: absolute;
  border: 1px solid rgba(0, 68, 204, 0.22);
  border-radius: 50%;
  pointer-events: none;
}

.text-ring.ring-a {
  inset: 0 64px;
  animation: logoRingA 5200ms var(--ease-heavy) infinite;
}

.text-ring.ring-b {
  inset: 24px 92px;
  border-style: dashed;
  border-color: rgba(0, 68, 204, 0.25);
  animation: logoRingB 7600ms linear infinite;
}

.text-hub::before {
  content: "";
  position: absolute;
  inset: 26px 44px;
  z-index: -1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 80px rgba(0, 68, 204, 0.16);
  transition: background 700ms var(--ease-heavy), box-shadow 700ms var(--ease-heavy);
}

.text-hub strong,
.text-hub small {
  position: relative;
  display: block;
}

.text-hub strong {
  max-width: 260px;
  font-size: 23px;
  font-weight: 860;
  line-height: 1.18;
}

.text-hub small {
  max-width: 260px;
  margin-top: 10px;
  color: rgba(18, 24, 38, 0.56);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.5;
  transition: color 700ms var(--ease-heavy);
}

.company-scroll-hero.is-dark .text-hub {
  color: var(--ink);
}

.company-scroll-hero.is-dark .text-ring {
  border-color: rgba(168, 196, 255, 0.28);
}

.company-scroll-hero.is-dark .text-hub::before {
  background: rgba(8, 15, 32, 0.66);
  box-shadow: 0 24px 90px rgba(51, 119, 255, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.company-scroll-hero.is-dark .text-hub small {
  color: rgba(220, 232, 255, 0.62);
}

@keyframes logoRingA {
  50% {
    opacity: 0.44;
    transform: scale(1.14);
  }
}

@keyframes logoRingB {
  to {
    transform: rotate(360deg);
  }
}

@keyframes logoFloat {
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

.notif-card {
  position: absolute;
  z-index: 5;
  width: min(380px, calc(100vw - 48px));
  padding: 18px;
  border: 1px solid rgba(0, 68, 204, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  color: #111827;
  box-shadow:
    0 22px 70px rgba(0, 68, 204, 0.14),
    0 4px 14px rgba(15, 36, 71, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate3d(var(--from-x, 0), var(--from-y, 30px), 0) scale(0.96);
  transition:
    opacity 760ms var(--ease-heavy),
    transform 860ms var(--ease-heavy),
    filter 760ms var(--ease-heavy);
}

.notif-card.is-on {
  opacity: 1;
  filter: none;
  transform: translate3d(0, var(--card-lift, 0px), 0) scale(1);
}

.notif-card strong {
  color: #111827;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
}

.notif-card p {
  margin: 9px 0 0;
  color: rgba(17, 24, 39, 0.68);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.62;
}

.card-head {
  display: grid;
  grid-template-columns: 34px 1fr auto;
  align-items: center;
  gap: 10px;
}

.card-head em {
  color: rgba(17, 24, 39, 0.42);
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
}

.mini-logo {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: #eef5ff;
}

.mini-logo img {
  width: 21px;
  height: auto;
}

.notif-card-a {
  left: 8%;
  top: 24%;
  --from-x: -90px;
  --from-y: 18px;
}

.notif-card-b {
  right: 9%;
  top: 19%;
  width: 286px;
  padding: 0 0 18px;
  overflow: hidden;
  --from-x: 94px;
  --from-y: -12px;
}

.notif-card-b strong {
  display: block;
  padding: 14px 18px;
  background: #ffe05f;
  color: #221a00;
}

.notif-card-b p {
  margin: 16px 18px 0;
}

.notif-card-b span {
  display: grid;
  place-items: center;
  min-height: 42px;
  margin: 16px 18px 0;
  border: 1px solid rgba(0, 68, 204, 0.12);
  border-radius: 8px;
  color: #0044cc;
  font-size: 13px;
  font-weight: 820;
}

.notif-card-c {
  right: 7%;
  bottom: 8%;
  width: min(430px, calc(100vw - 48px));
  --from-x: 86px;
  --from-y: 40px;
}

.notif-card-d {
  left: 10%;
  bottom: 9%;
  width: 360px;
  --from-x: -80px;
  --from-y: 54px;
}

.message-sender {
  margin-bottom: 10px;
  color: rgba(17, 24, 39, 0.44);
  font-size: 12px;
  font-weight: 820;
}

.promo-visual {
  position: relative;
  height: 126px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 111, 97, 0.92), rgba(126, 99, 255, 0.92)),
    #765cff;
}

.promo-visual i {
  position: absolute;
  width: 62px;
  height: 82px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 18px 38px rgba(34, 21, 87, 0.16);
  transform: rotate(-12deg);
}

.promo-visual i:first-child {
  left: 33%;
  top: 26px;
}

.promo-visual i:last-child {
  left: 50%;
  top: 35px;
  background: rgba(239, 247, 255, 0.9);
  transform: rotate(13deg);
}

.promo-visual::after {
  content: "%";
  position: absolute;
  left: 42%;
  top: 42px;
  color: #0044cc;
  font-size: 54px;
  font-weight: 880;
}

.notif-card-e {
  left: 58%;
  top: 69%;
  width: 246px;
  --from-x: 22px;
  --from-y: 84px;
}

.channel-icon {
  position: absolute;
  z-index: 4;
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(0, 68, 204, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 54px rgba(0, 68, 204, 0.13);
  opacity: 0;
  transform: translate3d(var(--from-x, 0), var(--from-y, 30px), 0) scale(0.9);
  transition:
    opacity 700ms var(--ease-heavy),
    transform 820ms var(--ease-heavy);
}

.channel-icon.is-on {
  opacity: 1;
  transform: translate3d(0, var(--card-lift, 0px), 0) scale(1);
}

.channel-icon::before,
.channel-icon::after {
  content: "";
  position: absolute;
  border-color: #0f172a;
}

.icon-send {
  left: 18%;
  top: 66%;
  --from-x: -42px;
  --from-y: 34px;
}

.icon-send::before {
  width: 29px;
  height: 25px;
  border: 0;
  background: #0f172a;
  clip-path: polygon(0 8%, 100% 50%, 0 92%, 18% 56%, 54% 50%, 18% 44%);
}

.icon-bell {
  left: 26%;
  top: 76%;
  --from-x: -24px;
  --from-y: 52px;
}

.icon-bell::before {
  width: 22px;
  height: 25px;
  border: 3px solid #0f172a;
  border-bottom: 0;
  border-radius: 13px 13px 5px 5px;
}

.icon-bell::after {
  bottom: 16px;
  width: 30px;
  height: 3px;
  border-radius: 999px;
  background: #0f172a;
}

.icon-mail {
  right: 17%;
  top: 64%;
  --from-x: 44px;
  --from-y: 28px;
}

.icon-mail::before {
  width: 28px;
  height: 20px;
  border: 3px solid #0f172a;
  border-radius: 5px;
}

.icon-mail::after {
  width: 19px;
  height: 19px;
  border-right: 3px solid #0f172a;
  border-bottom: 3px solid #0f172a;
  transform: translateY(-5px) rotate(45deg);
}

.icon-chat {
  left: 45%;
  top: 78%;
  --from-x: 0;
  --from-y: 68px;
}

.icon-chat::before {
  width: 30px;
  height: 30px;
  border: 0;
  background: url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.5 14.2C6.5 9.8 10.3 6.5 15.2 6.5C20.2 6.5 23.5 9.65 23.5 14.05C23.5 18.45 20.05 21.6 15.15 21.6H13.9L9.6 24.2C9.15 24.47 8.6 24.13 8.72 23.62L9.42 20.8C7.6 19.4 6.5 17.12 6.5 14.2Z' stroke='%230F172A' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M11.4 14.35H11.42M15 14.35H15.02M18.6 14.35H18.62' stroke='%230F172A' stroke-width='2.8' stroke-linecap='round'/%3E%3C/svg%3E") center / contain no-repeat;
}

.icon-chat::after {
  display: none;
}

.notifly-hero-scene .hero-notif {
  display: block;
  margin: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  filter: drop-shadow(0 28px 44px rgba(0, 35, 92, 0.14));
  transform: translate3d(var(--from-x, 0), var(--from-y, 32px), 0) scale(0.94) rotate(var(--from-rotate, 0deg));
}

.notifly-hero-scene .hero-notif.is-on {
  opacity: var(--asset-opacity, 0.98);
  filter: drop-shadow(0 30px 54px rgba(0, 35, 92, 0.18));
  transform: translate3d(0, var(--card-lift, 0px), 0) scale(1) rotate(var(--asset-rotate, 0deg));
}

.hero-notif img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}

.notif-brand-label {
  position: absolute;
  z-index: 2;
  left: 18.4%;
  top: 6.7%;
  color: rgba(82, 94, 114, 0.82);
  font-size: clamp(7px, 0.55vw, 9px);
  font-weight: 760;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.hero-notif-detail {
  left: clamp(-62px, -2.4vw, -28px);
  top: 20%;
  width: clamp(230px, 20vw, 320px);
  --from-x: -78px;
  --from-y: 20px;
  --from-rotate: -2deg;
  --asset-rotate: -1.2deg;
}

.hero-notif-product {
  right: clamp(-10px, 2vw, 34px);
  bottom: -1%;
  width: clamp(220px, 18vw, 280px);
  --from-x: 96px;
  --from-y: 54px;
  --from-rotate: 1.8deg;
  --asset-rotate: 0.8deg;
}

.hero-notif-season {
  right: clamp(4px, 3vw, 42px);
  top: 12%;
  z-index: 4;
  width: clamp(210px, 17vw, 260px);
  --from-x: 82px;
  --from-y: -22px;
  --from-rotate: -1.6deg;
  --asset-rotate: -0.7deg;
  --asset-opacity: 0.9;
}

.hero-notif-ios {
  left: 50%;
  bottom: 10%;
  z-index: 4;
  width: clamp(360px, 46vw, 700px);
  --from-x: -50%;
  --from-y: 88px;
  --asset-opacity: 0.94;
  transform: translate3d(-50%, var(--from-y, 56px), 0) scale(0.94);
}

.notifly-hero-scene .hero-notif-ios.is-on {
  transform: translate3d(-50%, var(--card-lift, 0px), 0) scale(1);
}

.hero-chip {
  z-index: 5;
  width: clamp(106px, 9vw, 152px);
  filter: drop-shadow(0 18px 34px rgba(0, 35, 92, 0.12));
}

.hero-chip-push {
  left: 13%;
  top: 65%;
  --from-x: -46px;
  --from-y: 34px;
  --from-rotate: -4deg;
  --asset-rotate: -2deg;
}

.hero-chip-email {
  right: 23%;
  top: 20%;
  --from-x: 40px;
  --from-y: -26px;
  --from-rotate: 3deg;
  --asset-rotate: 1.2deg;
}

.hero-chip-kakao {
  left: calc(50% - 76px);
  right: auto;
  top: 15%;
  --from-x: 0;
  --from-y: -54px;
  --from-rotate: 2deg;
  --asset-rotate: 0deg;
}

.hero-chip-popup {
  left: 25%;
  top: 24%;
  --from-x: -26px;
  --from-y: -42px;
  --from-rotate: 3deg;
  --asset-rotate: 1deg;
}

.phrase-stage {
  z-index: 6;
  place-items: center;
  padding: 0 48px;
}

.story-phrase,
.company-scroll-hero.is-dim .story-phrase,
.company-scroll-hero.is-dark .story-phrase {
  left: 50%;
  top: 50%;
  width: calc(100% - 96px);
  max-width: 1040px;
  color: #121826;
  font-size: 76px;
  line-height: 1.08;
  text-shadow: 0 18px 80px rgba(255, 255, 255, 0.92), 0 24px 100px rgba(0, 68, 204, 0.12);
  transform: translate3d(-50%, -50%, 0) scale(0.98);
}

.story-phrase.is-active {
  transform: translate3d(-50%, -50%, 0) scale(1);
}

.company-scroll-hero.is-dark .story-phrase {
  color: var(--ink);
  text-shadow: 0 18px 80px rgba(51, 119, 255, 0.22);
}

.hero-caption,
.company-scroll-hero.is-dark .hero-caption {
  color: rgba(18, 24, 38, 0.48);
}

.company-scroll-hero.is-dark .hero-caption {
  color: rgba(245, 249, 255, 0.54);
}

.company-scroll-hero.is-dim .hero-caption {
  opacity: 0;
}

.belief-section {
  position: relative;
  padding: 152px 64px 118px;
}

.belief-section::after {
  content: "";
  position: absolute;
  right: max(64px, calc((100vw - 1200px) / 2));
  bottom: 0;
  left: max(64px, calc((100vw - 1200px) / 2));
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(0, 68, 204, 0.28) 14%,
    rgba(17, 24, 39, 0.2) 50%,
    rgba(0, 68, 204, 0.28) 86%,
    transparent 100%
  );
}

.belief-copy {
  max-width: 930px;
  margin: 0 auto;
  text-align: center;
}

.belief-copy h1 {
  max-width: 900px;
  margin-right: auto;
  margin-left: auto;
  font-size: 56px;
  line-height: 1.14;
}

.belief-copy p {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.84;
}

.belief-panel {
  position: relative;
  min-height: 430px;
  max-width: 1160px;
  margin: 76px auto 0;
  overflow: hidden;
  border: 1px solid rgba(153, 185, 255, 0.13);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(9, 17, 31, 0.18), rgba(9, 17, 31, 0.74)),
    linear-gradient(rgba(153, 185, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 185, 255, 0.05) 1px, transparent 1px),
    rgba(6, 12, 23, 0.82);
  background-size: auto, 72px 72px, 72px 72px, auto;
}

.belief-panel::before,
.belief-panel::after,
.belief-orbit {
  content: "";
  position: absolute;
  pointer-events: none;
}

.belief-panel::before {
  inset: 0;
  background:
    radial-gradient(circle at 50% 44%, rgba(51, 119, 255, 0.22), transparent 34%),
    radial-gradient(ellipse at 50% 110%, rgba(168, 196, 255, 0.18), transparent 48%);
}

.belief-panel::after {
  left: 12%;
  right: 12%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.28), transparent);
  transform: rotate(-5deg);
}

.belief-orbit {
  left: 50%;
  top: 50%;
  width: min(54vw, 620px);
  height: min(54vw, 620px);
  border: 1px solid rgba(168, 196, 255, 0.18);
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
}

.belief-panel span {
  position: absolute;
  z-index: 1;
  color: rgba(220, 232, 255, 0.72);
  font-size: 15px;
  font-weight: 760;
}

.belief-panel span:nth-of-type(1) {
  left: 10%;
  bottom: 12%;
}

.belief-panel span:nth-of-type(2) {
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
}

.belief-panel span:nth-of-type(3) {
  right: 10%;
  bottom: 12%;
}

.obsession-section {
  max-width: 1240px;
  margin: 0 auto;
  padding: 142px 64px 142px;
}

.obsession-heading {
  max-width: 980px;
  margin: 0 auto 86px;
  text-align: center;
}

.obsession-heading h2 {
  max-width: 960px;
  margin: 0 auto;
  color: var(--ink);
  font-size: 64px;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.obsession-heading h2::after {
  content: "";
  display: block;
  width: 72px;
  height: 2px;
  margin: 42px auto 0;
  background: linear-gradient(90deg, transparent, var(--blue-2), transparent);
}

.obsession-heading p,
.story-copy p {
  max-width: 720px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.obsession-strengths {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.obsession-strength {
  position: relative;
  min-height: 360px;
  padding: 48px 38px 52px;
}

.obsession-strength + .obsession-strength {
  border-left: 1px solid rgba(153, 185, 255, 0.18);
}

.obsession-strength h3 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  font-weight: 880;
  line-height: 1.22;
  letter-spacing: -0.005em;
}

.obsession-strength p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 640;
  line-height: 1.72;
}

.obsession-summary {
  max-width: 820px;
  margin: 84px auto 0;
  color: var(--ink);
  font-size: 38px;
  font-weight: 860;
  line-height: 1.3;
  text-align: center;
  letter-spacing: -0.01em;
}

.obsession-row {
  display: grid;
  grid-template-columns: minmax(340px, 0.72fr) minmax(0, 1fr);
  gap: clamp(48px, 7vw, 104px);
  align-items: center;
  padding: 82px 0;
  border-top: 1px solid rgba(153, 185, 255, 0.16);
}

.obsession-row:last-child {
  border-bottom: 1px solid rgba(153, 185, 255, 0.16);
}

.obsession-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
}

.obsession-row.reverse .obsession-copy {
  order: 2;
}

.obsession-row.reverse .obsession-visual {
  order: 1;
}

.obsession-copy span {
  display: inline-flex;
  align-items: center;
  min-height: auto;
  padding: 0;
  border: 1px solid rgba(51, 119, 255, 0.24);
  border-width: 0 0 1px;
  border-radius: 0;
  background: none;
  color: var(--blue-2);
  font-size: 18px;
  font-weight: 820;
  line-height: 1.35;
}

.obsession-copy h3 {
  max-width: 510px;
  margin: 0;
  color: var(--ink);
  font-size: 36px;
  line-height: 1.24;
  letter-spacing: -0.005em;
}

.obsession-copy p {
  max-width: 520px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.72;
}

.obsession-copy ul {
  display: grid;
  gap: 22px;
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
}

.obsession-copy li {
  position: relative;
  padding-left: 34px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.76;
}

.obsession-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 16px;
  height: 10px;
  border-bottom: 2px solid var(--blue-2);
  border-left: 2px solid var(--blue-2);
  transform: rotate(-45deg);
}

.obsession-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(153, 185, 255, 0.18);
  border-radius: 18px;
  background: #f8fafc;
  box-shadow:
    0 38px 110px rgba(2, 10, 28, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.obsession-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 30%),
    radial-gradient(circle at 82% 8%, rgba(51, 119, 255, 0.14), transparent 34%);
  mix-blend-mode: multiply;
}

.obsession-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transform: scale(1.012);
}

.graybox-story-section {
  display: grid;
  gap: 24px;
  max-width: none;
  margin: 0;
  padding: 112px max(64px, calc((100vw - 1200px) / 2)) 82px;
}

.story-title {
  max-width: 1200px;
  margin: 0;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.3;
}

.story-film {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 1200px;
  min-height: 440px;
  overflow: hidden;
  border: 1px solid rgba(153, 185, 255, 0.13);
  border-radius: var(--radius);
  background: #050812;
}

.story-film::before {
  display: none;
}

@keyframes storyScan {
  from {
    transform: translate3d(0, -100%, 0);
  }
  to {
    transform: translate3d(0, 100%, 0);
  }
}

.play-ring {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(245, 249, 255, 0.34);
  border-radius: 50%;
  animation: pulseDot 2400ms var(--ease) infinite;
}

.play-ring::after {
  content: "";
  position: absolute;
  left: 42px;
  top: 34px;
  width: 0;
  height: 0;
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
  border-left: 25px solid var(--ink);
}

.story-film video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  object-fit: cover;
}

.story-copy h2 {
  max-width: 640px;
  font-size: 44px;
  line-height: 1.16;
}

.company-page .momentum-section,
.company-page .news-section,
.company-page .final-cta {
  max-width: 1160px;
  margin: 0 auto;
  padding: 112px 64px 132px;
}

.company-page .momentum-section .section-title,
.company-page .news-section .section-title {
  max-width: 760px;
  margin-bottom: 68px;
}

.company-page .momentum-section .section-title h2,
.company-page .news-section .section-title h2 {
  font-size: 46px;
  line-height: 1.16;
}

.company-page .momentum-grid {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.company-page .metric-panel,
.company-page .news-item {
  min-height: auto;
  padding: 34px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.company-page .metric-panel.wide {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.62fr);
  gap: 72px;
  grid-row: auto;
  align-items: start;
  min-height: auto;
}

.company-page .metric-panel strong,
.company-page .news-item strong {
  max-width: 620px;
  margin-top: 0;
  color: var(--ink);
  font-size: 26px;
  line-height: 1.28;
}

.company-page .metric-panel p,
.company-page .news-item p {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.76;
}

.company-page .metric-wave {
  height: 230px;
  margin-top: 0;
  border: 1px solid rgba(153, 185, 255, 0.13);
  background:
    radial-gradient(circle at 30% 48%, rgba(51, 119, 255, 0.28), transparent 20%),
    linear-gradient(rgba(153, 185, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(153, 185, 255, 0.06) 1px, transparent 1px),
    rgba(7, 16, 31, 0.68);
  background-size: auto, 36px 36px, 36px 36px, auto;
}

.company-page .news-rail {
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--line);
}

.company-page .news-item:hover {
  border-color: var(--line);
  transform: none;
}

.company-page .final-cta {
  padding-top: 72px;
}

.company-page .cta-shell {
  min-height: auto;
  padding: 56px 0;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.company-page .cta-shell h2 {
  font-size: 46px;
  line-height: 1.16;
}

.customer-logo-section {
  padding: 120px max(64px, calc((100vw - 1200px) / 2)) 104px;
  background: #ffffff;
  color: #222222;
}

.customer-logo-frame {
  max-width: 1200px;
  margin: 0 auto;
}

.customer-logo-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.customer-logo-caption {
  max-width: 1200px;
  margin: 48px auto 0;
  color: #222222;
  font-size: 24px;
  font-weight: 820;
  line-height: 1.35;
  text-align: center;
}

.programs-section {
  padding: 0 max(64px, calc((100vw - 1200px) / 2)) 44px;
  background: #ffffff;
}

.programs-frame,
.investors-frame {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid rgba(25, 44, 84, 0.08);
  border-radius: 22px;
  background: #f8fbff;
  box-shadow: 0 34px 90px rgba(26, 48, 92, 0.1);
}

.program-grid-frame {
  padding: 72px;
}

.programs-head {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 56px;
}

.programs-head h2 {
  margin: 0;
  color: #111827;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: 0;
}

.programs-head p {
  justify-self: end;
  max-width: 620px;
  margin: 0 0 8px;
  color: #667085;
  font-size: 21px;
  font-weight: 760;
  line-height: 1.45;
  word-break: keep-all;
}

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

.program-logo-card {
  display: grid;
  place-items: center;
  min-height: 188px;
  padding: 34px;
  border: 1px solid rgba(32, 67, 124, 0.1);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.program-logo-card.is-wide,
.program-logo-card.is-half {
  grid-column: span 2;
}

.program-logo-card img {
  display: block;
  width: auto;
  max-width: min(100%, 360px);
  max-height: 86px;
  object-fit: contain;
}

.program-logo-card:not(.is-wide) img {
  max-height: 78px;
}

.programs-frame img,
.investors-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.program-grid-frame .program-logo-card img {
  width: auto;
  max-width: min(100%, 360px);
  max-height: 86px;
  object-fit: contain;
}

.program-grid-frame .program-logo-card:not(.is-wide) img {
  max-height: 78px;
}

.investors-section {
  padding: 0 max(64px, calc((100vw - 1200px) / 2)) 132px;
  background: #ffffff;
}

.company-page .momentum-section {
  max-width: none;
  margin: 0;
  padding: 86px max(64px, calc((100vw - 1200px) / 2)) 128px;
  background: #050812;
  color: #ffffff;
}

.company-page .momentum-section .section-title {
  max-width: 760px;
  margin-bottom: 84px;
}

.company-page .section-kicker {
  display: block;
  margin-bottom: 42px;
  color: var(--blue-2);
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.company-page .momentum-section .section-title h2 {
  margin: 0;
  color: #ffffff;
  font-size: 42px;
  font-weight: 820;
  line-height: 1.24;
  word-break: keep-all;
}

.company-page .momentum-section .section-title p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 17px;
  line-height: 1.65;
}

.company-page .momentum-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 1200px;
  border: 0;
}

.company-page .metric-panel,
.company-page .metric-panel.wide {
  display: block;
  min-height: 166px;
  padding: 34px 32px;
  border: 1px solid rgba(153, 185, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(51, 119, 255, 0.08), transparent 64%),
    rgba(11, 21, 38, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.company-page .metric-panel span {
  display: block;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 16px;
  font-weight: 800;
}

.company-page .metric-panel strong {
  display: block;
  max-width: none;
  margin: 0;
  color: #ffffff;
  font-size: 56px;
  font-weight: 820;
  line-height: 1;
  letter-spacing: 0;
}

.company-page .metric-note {
  max-width: 1200px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
}

.company-page .news-section {
  max-width: none;
  margin: 0;
  padding: 96px max(64px, calc((100vw - 1200px) / 2)) 132px;
  background: #050812;
  color: var(--ink);
}

.company-page .news-section .section-title {
  max-width: 1200px;
  margin-bottom: 52px;
}

.company-page .news-section .section-title h2 {
  margin: 0;
  color: var(--ink);
  font-size: 42px;
  font-weight: 820;
  line-height: 1.2;
}

.company-page .news-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px 32px;
  max-width: 1200px;
  border: 0;
}

.company-page .news-item {
  display: block;
  min-height: 431px;
  overflow: hidden;
  padding: 0 0 30px;
  border: 1px solid rgba(153, 185, 255, 0.13);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.018)),
    rgba(11, 21, 38, 0.84);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: transform 420ms var(--ease-heavy);
}

.company-page .news-item:hover {
  transform: translate3d(0, -5px, 0);
}

.company-page .news-item img {
  display: block;
  width: 100%;
  aspect-ratio: 379 / 253;
  object-fit: cover;
  background: #dbe7ff;
  opacity: 0.9;
}

.company-page .news-item span {
  display: block;
  margin: 30px 28px 14px;
  color: rgba(168, 196, 255, 0.68);
  font-size: 14px;
  font-weight: 650;
}

.company-page .news-item strong {
  display: block;
  max-width: none;
  margin: 0 28px;
  color: var(--ink);
  font-size: 24px;
  font-weight: 820;
  line-height: 1.34;
  word-break: keep-all;
}

.reveal {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
  transition: opacity 820ms var(--ease-heavy), transform 820ms var(--ease-heavy);
}

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

.delay-1 {
  transition-delay: 110ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 330ms;
}

@media (max-width: 1120px) {
  .site-header {
    grid-template-columns: auto 1fr;
  }

  .nav-links {
    display: inline-flex;
  }

  .hero,
  .hero-culture,
  .scroll-stage,
  .leader-card,
  .leader-card.reverse {
    grid-template-columns: 1fr;
  }

  .stage-visual {
    position: relative;
    top: auto;
  }

  .culture-page .scroll-stage {
    grid-template-columns: 1fr;
    max-width: 920px;
  }

  .culture-page .stage-steps,
  .culture-page .stage-visual {
    grid-column: auto;
    grid-row: auto;
  }

  .culture-page .stage-visual {
    display: none;
  }

  .culture-page .stage-interview-link {
    display: inline-flex;
  }

  .stage-steps {
    gap: 46px;
    padding-top: 0;
  }

  .stage-step {
    min-height: auto;
  }

  .belief-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .obsession-row,
  .obsession-row.reverse,
  .graybox-story-section {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .obsession-row.reverse .obsession-copy,
  .obsession-row.reverse .obsession-visual {
    order: initial;
  }

  .story-phrase {
    max-width: 900px;
    font-size: 64px;
  }

  .culture-hero-intro h1 {
    font-size: clamp(52px, 8vw, 86px);
  }

  .culture-about-copy {
    left: 48px;
    right: auto;
    width: min(48vw, 520px);
  }

  .culture-about-copy h2 {
    font-size: clamp(38px, 5vw, 62px);
  }

  .culture-about-photo.photo-one {
    left: auto;
    right: 220px;
    width: clamp(170px, 21vw, 260px);
  }

  .culture-about-photo.photo-two {
    left: auto;
    right: 72px;
    width: clamp(230px, 31vw, 370px);
  }

  .culture-about-photo.photo-three {
    left: auto;
    right: 26px;
    width: clamp(280px, 38vw, 430px);
  }

  .belief-copy h1 {
    font-size: 56px;
  }

  .momentum-grid {
    grid-template-columns: 1fr;
  }

  .metric-panel.wide {
    grid-row: auto;
  }

  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 46px;
  }
}

@media (max-width: 700px) {
  .site-header {
    top: 0;
    left: 0;
    width: 100%;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 8px;
    min-height: 62px;
    padding: 10px 14px;
  }

  .brand {
    padding-left: 2px;
  }

  .brand-mark {
    width: 112px;
    height: auto;
    padding: 0;
  }

  .brand-mark img {
    width: 112px;
  }

  .nav-links {
    justify-self: stretch;
    gap: 18px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .nav-links::-webkit-scrollbar {
    display: none;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 9px 0;
    font-size: 13px;
  }

  .hero,
  .hero-culture,
  .scroll-stage,
  .momentum-section,
  .news-section,
  .join-section,
  .leaders-section,
  .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .culture-page .voices-section {
    padding-right: 0;
    padding-left: 0;
  }

  .hero,
  .hero-culture {
    gap: 42px;
    padding-top: 116px;
  }

  .culture-page .hero-culture {
    min-height: 240dvh;
    padding: 0;
  }

  .culture-hero-sticky::before {
    background-position: 58% center;
    filter: blur(0.8px) saturate(1.02);
    opacity: var(--culture-bg-opacity, 0.88);
    transform: scale(1.014);
  }

  .culture-hero-sticky {
    min-height: 100dvh;
    padding: 108px 24px 94px;
  }

  .culture-hero-intro {
    left: 24px;
    right: 24px;
    max-width: none;
  }

  .culture-hero-intro h1 {
    max-width: 360px;
    font-size: clamp(42px, 12vw, 56px);
  }

  .culture-about-copy {
    top: 64%;
    left: 24px;
    right: 24px;
    width: auto;
  }

  .culture-about-kicker {
    font-size: 13px;
  }

  .culture-about-copy h2 {
    max-width: 360px;
    margin-bottom: 20px;
    font-size: clamp(34px, 10vw, 46px);
  }

  .culture-page .hero-lead {
    max-width: 350px;
    font-size: 16px;
    color: rgba(235, 242, 255, 0.84);
  }

  .culture-about-photo {
    border-radius: 12px;
  }

  .culture-about-photo.photo-one {
    left: auto;
    right: auto;
    left: 22px;
    top: 12%;
    width: 138px;
  }

  .culture-about-photo.photo-two {
    left: auto;
    right: 22px;
    bottom: auto;
    top: 25%;
    width: 214px;
  }

  .culture-about-photo.photo-three {
    left: auto;
    right: 18px;
    top: 13%;
    width: 198px;
  }

  .company-scroll-hero {
    min-height: 280dvh;
  }

  .phrase-stage {
    padding: 0 16px;
  }

  .story-phrase {
    max-width: 360px;
    font-size: 42px;
    line-height: 1.16;
  }

  .culture-hero-mock {
    min-height: 420px;
    border-radius: 16px;
  }

  .mock-image-frame {
    inset: 48px 24px;
    border-radius: 12px;
  }

  .signal-mesh {
    opacity: 0.62;
    background-size: auto, 54px 54px, 54px 54px;
  }

  .signal-mesh::before {
    width: 680px;
    height: 680px;
  }

  .line-a {
    left: -8%;
    top: 36%;
    width: 74%;
  }

  .line-b {
    right: -18%;
    top: 32%;
    width: 70%;
  }

  .line-c {
    left: 8%;
    bottom: 25%;
    width: 84%;
  }

  .blue-crescent {
    width: 440px;
    height: 440px;
    left: calc(var(--crescent-x, -18vw) - 16vw);
    opacity: var(--crescent-opacity, 0.16);
  }

  .brand-orbit {
    right: 50%;
    top: 30%;
    width: 118px;
    height: 118px;
    opacity: var(--orbit-opacity, 0.16);
    transform: translate3d(50%, -50%, 0);
  }

  .orbit-core {
    width: 50px;
    height: 50px;
    border-radius: 11px;
    font-size: 24px;
  }

  .motion-thread {
    opacity: var(--thread-opacity, 0.16);
  }

  .belief-section,
  .obsession-section,
  .graybox-story-section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .belief-section {
    padding-top: 110px;
    padding-bottom: 96px;
  }

  .belief-section::after {
    right: 16px;
    left: 16px;
  }

  .belief-panel {
    min-height: 310px;
    margin-top: 48px;
  }

  .belief-panel span {
    font-size: 12px;
  }

  .belief-copy h1 {
    font-size: 38px;
    line-height: 1.14;
  }

  .belief-copy p {
    font-size: 17px;
  }

  .obsession-section,
  .graybox-story-section {
    padding-top: 80px;
    padding-bottom: 64px;
  }

  .obsession-heading {
    margin-bottom: 42px;
  }

  .obsession-heading h2 {
    font-size: 34px;
    line-height: 1.18;
  }

  .obsession-strengths {
    grid-template-columns: 1fr;
  }

  .obsession-strength {
    min-height: auto;
    padding: 34px 0 38px;
  }

  .obsession-strength + .obsession-strength {
    border-top: 1px solid rgba(153, 185, 255, 0.18);
    border-left: 0;
  }

  .obsession-strength h3 {
    margin-top: 34px;
    font-size: 28px;
  }

  .obsession-strength p {
    font-size: 16px;
  }

  .obsession-summary {
    margin-top: 54px;
    font-size: 28px;
  }

  .obsession-row {
    gap: 30px;
    padding: 52px 0;
  }

  .obsession-copy h3 {
    font-size: 26px;
  }

  .obsession-copy li {
    font-size: 16px;
    line-height: 1.72;
  }

  .company-page .metric-panel.wide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .company-page .momentum-section,
  .company-page .news-section,
  .company-page .final-cta,
  .culture-page .final-cta {
    padding-left: 16px;
    padding-right: 16px;
  }

  .company-page .metric-panel strong,
  .company-page .news-item strong {
    font-size: 23px;
  }

  .company-page .cta-shell h2,
  .culture-page .cta-shell h2 {
    font-size: 34px;
  }

  .story-film {
    min-height: 360px;
  }

  h1 {
    font-size: 43px;
    line-height: 1.08;
  }

  h2 {
    font-size: 34px;
    line-height: 1.14;
  }

  h3 {
    font-size: 23px;
  }

  .hero-lead,
  .stage-step p,
  .metric-panel p,
  .news-item p,
  .bio,
  .join-item p,
  .cta-shell p {
    font-size: 16px;
  }

  .hero-device,
  .team-console {
    min-height: 470px;
  }

  .device-shell {
    min-height: 454px;
  }

  .journey-node {
    width: 82px;
    height: 82px;
    font-size: 13px;
  }

  .signal-card {
    width: 242px;
  }

  .card-a,
  .card-c {
    left: 10px;
  }

  .card-b {
    right: 10px;
  }

  .stage-screen {
    min-height: 430px;
  }

  .stage-layer {
    inset: 10px;
    padding: 20px;
  }

  .stage-layer strong {
    font-size: 27px;
  }

  .quote-section {
    padding: 0 16px 96px;
  }

  .quote-panel {
    min-height: 360px;
    padding: 28px;
  }

  .quote-panel p {
    font-size: 34px;
  }

  .news-rail,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .leader-card,
  .leader-card.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 6px;
  }

  .portrait,
  .portrait.mingyu {
    width: 112px;
    height: 136px;
    min-height: 0;
  }

  blockquote {
    font-size: 16px;
    line-height: 1.72;
  }

  .voice-card {
    width: 310px;
    min-height: 0;
    padding: 226px 22px 22px;
  }

  .voice-photo {
    height: 218px;
  }

  .voice-card p {
    font-size: 19px;
  }
}

@media (max-width: 1100px) {
  .scene-blue-arc {
    left: -55vw;
    width: 96vw;
    height: 96vw;
  }

  .logo-hub {
    left: 53%;
    width: 148px;
    height: 148px;
  }

  .text-hub {
    left: 53%;
    width: 310px;
    min-height: 166px;
  }

  .logo-mark {
    width: 76px;
    height: 76px;
  }

  .logo-mark img {
    width: 48px;
  }

  .notif-card-a {
    left: 5%;
  }

  .notif-card-b {
    right: 5%;
    top: 20%;
  }

  .notif-card-c {
    right: 4%;
    width: 380px;
  }

  .notif-card-d {
    left: 5%;
    width: 320px;
  }

  .hero-notif-detail {
    left: -54px;
    top: 20%;
    width: clamp(220px, 25vw, 280px);
  }

  .hero-notif-product {
    right: -18px;
    bottom: -1%;
    width: clamp(210px, 24vw, 260px);
  }

  .hero-notif-season {
    right: -10px;
    top: 12%;
    width: clamp(200px, 22vw, 250px);
  }

  .hero-notif-ios {
    bottom: 11%;
    width: clamp(360px, 50vw, 600px);
  }

  .hero-chip-email {
    right: 18%;
  }

  .story-phrase,
  .company-scroll-hero.is-dim .story-phrase,
  .company-scroll-hero.is-dark .story-phrase {
    max-width: 820px;
    font-size: 60px;
  }
}

@media (max-width: 700px) {
  .company-scroll-hero {
    min-height: 310dvh;
  }

  .sticky-company-hero::before {
    background-size: 16px 16px;
  }

  .scene-blue-arc {
    left: -640px;
    width: 860px;
    height: 860px;
  }

  .scene-blue-arc::after {
    width: 43%;
  }

  .logo-hub {
    left: 50%;
    top: 49%;
    width: 118px;
    height: 118px;
  }

  .text-hub {
    left: 50%;
    top: 48%;
    width: 252px;
    min-height: 142px;
    padding: 24px 20px;
  }

  .text-hub::before {
    inset: 22px 28px;
  }

  .text-ring.ring-a {
    inset: 0 42px;
  }

  .text-ring.ring-b {
    inset: 20px 64px;
  }

  .text-hub strong {
    max-width: 202px;
    font-size: 18px;
  }

  .text-hub small {
    max-width: 204px;
    font-size: 11px;
  }

  .logo-ring.ring-b {
    inset: 18px;
  }

  .logo-aura {
    inset: 25px;
  }

  .logo-mark {
    width: 64px;
    height: 64px;
    border-radius: 18px;
  }

  .logo-mark img {
    width: 41px;
  }

  .phrase-stage {
    padding: 0 18px;
  }

  .story-phrase,
  .company-scroll-hero.is-dim .story-phrase,
  .company-scroll-hero.is-dark .story-phrase {
    top: 50%;
    max-width: 360px;
    width: calc(100% - 36px);
    font-size: 38px;
    line-height: 1.14;
  }

  .notif-card {
    padding: 15px;
  }

  .notif-card strong {
    font-size: 14px;
  }

  .notif-card p {
    font-size: 13px;
  }

  .notif-card-a {
    left: 18px;
    top: 29%;
    width: calc(100vw - 36px);
  }

  .notif-card-b {
    right: 18px;
    top: 76%;
    width: 230px;
  }

  .notif-card-c {
    display: none;
  }

  .notif-card-d {
    display: none;
  }

  .notif-card-e {
    left: auto;
    right: 18px;
    top: 14%;
    width: 220px;
  }

  .channel-icon {
    display: none;
  }

  .hero-notif-detail {
    left: -48px;
    top: 17%;
    width: 260px;
    --asset-opacity: 0.9;
  }

  .hero-notif-product {
    right: -92px;
    bottom: 1%;
    width: 250px;
    --asset-opacity: 0.88;
  }

  .hero-notif-season {
    right: -96px;
    top: 18%;
    width: 250px;
    --asset-opacity: 0.82;
  }

  .hero-notif-ios {
    left: 50%;
    bottom: 19%;
    width: 440px;
    --asset-opacity: 0.9;
  }

  .hero-chip {
    width: 118px;
  }

  .hero-chip-push {
    left: 18px;
    top: 65%;
  }

  .hero-chip-email {
    right: 20px;
    top: 25%;
  }

  .hero-chip-kakao {
    left: calc(50% - 62px);
    right: auto;
    top: 19%;
  }

  .hero-chip-popup {
    left: 18px;
    top: 35%;
  }

  .icon-send {
    left: 16%;
    top: 47%;
  }

  .icon-bell {
    left: 13%;
    top: 68%;
  }

  .icon-mail {
    right: 12%;
    top: 52%;
  }

  .icon-chat {
    left: 47%;
    top: 72%;
  }
}

@media (max-width: 900px) {
  .customer-logo-section,
  .programs-section,
  .investors-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .company-page .momentum-section,
  .company-page .news-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .company-page .momentum-grid,
  .company-page .news-rail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .customer-logo-section {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .customer-logo-frame {
    overflow-x: auto;
    margin-right: -24px;
    margin-left: -24px;
    padding: 0 24px;
  }

  .customer-logo-frame img {
    width: 900px;
    max-width: none;
  }

  .customer-logo-caption {
    margin-top: 34px;
    font-size: 19px;
  }

  .programs-section {
    padding-bottom: 28px;
  }

  .investors-section {
    padding-bottom: 84px;
  }

  .programs-frame,
  .investors-frame {
    border-radius: 14px;
  }

  .program-grid-frame {
    padding: 24px;
  }

  .programs-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .programs-head h2 {
    font-size: 36px;
  }

  .programs-head p {
    justify-self: start;
    max-width: 100%;
    font-size: 16px;
  }

  .program-logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .program-logo-card {
    min-height: 118px;
    padding: 20px;
    border-radius: 12px;
  }

  .program-logo-card.is-wide,
  .program-logo-card.is-half {
    grid-column: span 2;
  }

  .program-logo-card img,
  .program-logo-card:not(.is-wide) img {
    max-height: 58px;
  }

  .program-grid-frame .program-logo-card img,
  .program-grid-frame .program-logo-card:not(.is-wide) img {
    max-height: 58px;
  }

  .company-page .momentum-section {
    padding-top: 64px;
    padding-bottom: 92px;
  }

  .company-page .section-kicker {
    margin-bottom: 30px;
    font-size: 16px;
  }

  .company-page .momentum-section .section-title,
  .company-page .news-section .section-title {
    margin-bottom: 42px;
  }

  .company-page .momentum-section .section-title h2,
  .company-page .news-section .section-title h2 {
    font-size: 32px;
    line-height: 1.22;
  }

  .company-page .momentum-section .section-title p {
    font-size: 15px;
  }

  .company-page .momentum-grid {
    gap: 14px;
  }

  .company-page .metric-panel,
  .company-page .metric-panel.wide {
    min-height: 132px;
    padding: 26px 24px;
  }

  .company-page .metric-panel span {
    margin-bottom: 18px;
    font-size: 14px;
  }

  .company-page .metric-panel strong {
    font-size: 42px;
  }

  .company-page .news-section {
    padding-top: 72px;
    padding-bottom: 90px;
  }

  .company-page .news-rail {
    gap: 22px;
  }

  .company-page .news-item {
    min-height: auto;
    padding-bottom: 26px;
  }

  .company-page .news-item span {
    margin: 24px 22px 12px;
  }

.company-page .news-item strong {
    margin-right: 22px;
    margin-left: 22px;
    font-size: 21px;
  }
}

.careers-page {
  background:
    radial-gradient(circle at 78% 6%, rgba(51, 119, 255, 0.22), transparent 30%),
    linear-gradient(180deg, #050812 0%, #050812 54%, #03050c 100%);
}

.careers-main {
  position: relative;
  z-index: 1;
}

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

.careers-hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  min-height: calc(100dvh - 72px);
  overflow: hidden;
  padding: 146px max(64px, calc((100vw - 1200px) / 2)) 132px;
}

.careers-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: url("/about/assets/careers-hero-team-v2.jpg") center / cover no-repeat;
  filter: blur(1px) saturate(1.02);
  opacity: 0.94;
  transform: scale(1.01);
}

.careers-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(5, 8, 18, 0.68) 0%, rgba(5, 8, 18, 0.38) 48%, rgba(5, 8, 18, 0.14) 100%),
    linear-gradient(180deg, rgba(5, 8, 18, 0.42) 0%, rgba(5, 8, 18, 0.06) 42%, rgba(5, 8, 18, 0.82) 100%);
}

.careers-hero-copy span,
.opening-card span {
  color: var(--blue-2);
  font-size: 14px;
  font-weight: 820;
}

.careers-hero-copy h1 {
  max-width: 900px;
  margin: 22px 0 28px;
  font-size: clamp(52px, 6.2vw, 92px);
  line-height: 1.03;
  text-shadow: 0 24px 88px rgba(0, 0, 0, 0.42);
}

.careers-hero-copy p {
  max-width: 780px;
  color: rgba(235, 242, 255, 0.82);
  font-size: 19px;
  line-height: 1.82;
  text-shadow: 0 18px 60px rgba(0, 0, 0, 0.44);
}

.careers-hero-image {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  padding: 32px;
  border: 1px solid rgba(153, 185, 255, 0.16);
  border-radius: 22px;
  background:
    radial-gradient(circle at 70% 18%, rgba(51, 119, 255, 0.24), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    rgba(11, 21, 38, 0.76);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 32px 100px rgba(2, 10, 28, 0.4);
}

.careers-hero-image::before {
  display: none;
}

.careers-image-placeholder {
  position: absolute;
  inset: 34px;
  border: 1px dashed rgba(168, 196, 255, 0.24);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(51, 119, 255, 0.06)),
    rgba(5, 12, 24, 0.58);
}

.careers-image-placeholder::before,
.careers-image-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.careers-image-placeholder::before {
  left: 36px;
  right: 36px;
  bottom: 38px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(168, 196, 255, 0.38), transparent);
}

.careers-image-placeholder::after {
  left: 50%;
  top: 50%;
  width: min(42vw, 300px);
  height: min(42vw, 300px);
  border: 1px solid rgba(168, 196, 255, 0.12);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(51, 119, 255, 0.16), transparent 62%);
  transform: translate3d(-50%, -50%, 0);
}

.openings-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 84px 64px 150px;
}

.openings-head {
  margin-bottom: 34px;
}

.openings-head h2 {
  margin: 0;
  font-size: 46px;
}

.openings-controls {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) repeat(4, minmax(136px, 0.22fr));
  gap: 8px;
  margin-bottom: 42px;
}

.openings-controls label {
  position: relative;
  display: block;
}

.openings-controls input,
.openings-controls select {
  width: 100%;
  height: 44px;
  border: 1px solid rgba(153, 185, 255, 0.18);
  border-radius: 6px;
  background: rgba(7, 16, 31, 0.7);
  color: rgba(235, 242, 255, 0.92);
  font: inherit;
  font-size: 14px;
  font-weight: 650;
  outline: none;
  transition: border-color 220ms var(--ease), background 220ms var(--ease);
}

.openings-controls input {
  padding: 0 14px 0 42px;
}

.openings-controls select {
  padding: 0 34px 0 14px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(220, 232, 255, 0.72) 50%),
    linear-gradient(135deg, rgba(220, 232, 255, 0.72) 50%, transparent 50%),
    linear-gradient(180deg, rgba(7, 16, 31, 0.7), rgba(7, 16, 31, 0.7));
  background-position:
    calc(100% - 18px) 19px,
    calc(100% - 12px) 19px,
    0 0;
  background-size: 6px 6px, 6px 6px, 100% 100%;
  background-repeat: no-repeat;
}

.opening-search::before {
  content: "";
  position: absolute;
  left: 15px;
  top: 50%;
  z-index: 1;
  width: 13px;
  height: 13px;
  border: 2px solid rgba(220, 232, 255, 0.58);
  border-radius: 50%;
  transform: translateY(-57%);
}

.opening-search::after {
  content: "";
  position: absolute;
  left: 27px;
  top: 27px;
  z-index: 1;
  width: 8px;
  height: 2px;
  border-radius: 999px;
  background: rgba(220, 232, 255, 0.58);
  transform: rotate(45deg);
}

.openings-controls input::placeholder {
  color: rgba(220, 232, 255, 0.46);
}

.openings-controls input:focus,
.openings-controls select:focus {
  border-color: rgba(51, 119, 255, 0.72);
  background: rgba(11, 21, 38, 0.92);
}

.openings-list {
  display: grid;
  gap: 16px;
}

.opening-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(153, 185, 255, 0.16);
  border-radius: 18px;
  background: rgba(11, 21, 38, 0.72);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.opening-card h3 {
  margin: 12px 0 14px;
  font-size: 30px;
}

.opening-card p {
  max-width: 720px;
  color: rgba(220, 232, 255, 0.7);
  font-size: 17px;
  line-height: 1.72;
}

.opening-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.opening-card li {
  position: relative;
  color: rgba(220, 232, 255, 0.74);
  font-size: 14px;
  font-weight: 720;
}

.opening-card li + li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 12px;
  margin: 0 10px 0 2px;
  vertical-align: -1px;
  background: rgba(153, 185, 255, 0.24);
}

.opening-card .action {
  padding: 5px 18px;
  border-color: rgba(73, 138, 255, 0.95);
  background: #3377ff;
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(51, 119, 255, 0.34);
}

.opening-card .action span {
  color: #ffffff;
}

.opening-card .action:hover {
  border-color: rgba(114, 165, 255, 1);
  background: #4d8aff;
}

.openings-empty {
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(153, 185, 255, 0.14);
  border-radius: 8px;
  color: rgba(220, 232, 255, 0.68);
  background: rgba(11, 21, 38, 0.54);
}

.careers-faq-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 64px 160px;
}

.careers-section-kicker {
  margin-bottom: 28px;
  color: var(--blue-2);
  font-size: 15px;
  font-weight: 860;
}

.careers-faq-section h2 {
  margin: 0 0 58px;
  font-size: 46px;
}

.faq-list {
  border-top: 1px solid rgba(153, 185, 255, 0.18);
}

.faq-item {
  border-bottom: 1px solid rgba(153, 185, 255, 0.18);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 26px 42px 22px 0;
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  font-weight: 850;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 4px;
  top: 34px;
  width: 10px;
  height: 10px;
  border-top: 2px solid rgba(220, 232, 255, 0.58);
  border-left: 2px solid rgba(220, 232, 255, 0.58);
  transform: rotate(45deg);
  transition: transform 260ms var(--ease);
}

.faq-item:not([open]) summary::after {
  transform: rotate(225deg);
}

.faq-item p {
  max-width: 920px;
  margin: 0 0 18px;
  color: rgba(220, 232, 255, 0.74);
  font-size: 16px;
  line-height: 1.74;
}

.faq-item p:last-child {
  margin-bottom: 28px;
}

.faq-item a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: rgba(51, 119, 255, 0.72);
  text-underline-offset: 4px;
}

.stage-layer-link {
  color: inherit;
  text-decoration: none;
  transition: color 220ms var(--ease), transform 220ms var(--ease);
}

.stage-layer-link:hover {
  color: #ffffff;
  transform: translate3d(0, -2px, 0) scale(1);
}

.interview-page {
  --ink: #20242c;
  --ink-soft: #303642;
  --muted: #6b7280;
  background: #ffffff;
  color: #20242c;
}

.interview-page::before {
  display: none;
}

.interview-page .grain,
.interview-page .signal-canvas {
  display: none;
}

.interview-page .site-header {
  position: sticky;
  top: 0;
  --brand-filter: none;
  --nav-color: rgba(32, 36, 44, 0.62);
  --nav-strong: rgba(32, 36, 44, 0.96);
  --nav-active-line: rgba(32, 36, 44, 0.74);
  border-bottom: 1px solid rgba(15, 23, 42, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.interview-main {
  padding: 56px 28px 120px;
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), #ffffff 220px),
    #ffffff;
}

.interview-article {
  width: min(100%, 880px);
  margin: 0 auto;
}

.interview-page .final-cta {
  width: min(100%, 880px);
  margin: 88px auto 0;
  padding: 0;
}

.interview-page .cta-shell {
  min-height: auto;
  padding: 52px 0;
  border: 0;
  border-top: 1px solid rgba(15, 23, 42, 0.12);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 0;
  background: none;
  box-shadow: none;
}

.interview-page .cta-shell h2 {
  max-width: 720px;
  color: #20242c;
  font-size: clamp(30px, 4.4vw, 44px);
  font-weight: 850;
  line-height: 1.2;
}

.interview-page .cta-shell p {
  margin-top: 16px;
  color: #6b7280;
}

.interview-back {
  display: inline-flex;
  margin-bottom: 46px;
  color: #5a6474;
  font-size: 14px;
  font-weight: 760;
}

.interview-back:hover {
  color: var(--blue);
}

.interview-hero {
  padding-bottom: 64px;
  border-bottom: 1px solid #e7ebf2;
}

.interview-kicker {
  margin: 0 0 24px;
  color: var(--blue);
  font-size: 15px;
  font-weight: 860;
}

.interview-hero h1 {
  max-width: 820px;
  margin: 0;
  color: #1f242d;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  word-break: keep-all;
}

.interview-lead {
  max-width: 760px;
  margin: 28px 0 0;
  color: #4d5664;
  font-size: 21px;
  font-weight: 640;
  line-height: 1.76;
  word-break: keep-all;
}

.interview-profile {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 38px;
}

.interview-profile img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 1px solid #e2e8f0;
}

.interview-profile strong,
.interview-profile span,
.interview-profile small {
  display: block;
}

.interview-profile strong {
  color: #1f242d;
  font-size: 20px;
  font-weight: 860;
}

.interview-profile span {
  margin-top: 4px;
  color: #4d5664;
  font-size: 15px;
  font-weight: 760;
}

.interview-profile small {
  max-width: 620px;
  margin-top: 6px;
  color: #7a8391;
  font-size: 13px;
  font-weight: 620;
  line-height: 1.5;
}

.interview-feed {
  padding-top: 66px;
}

.interview-block {
  padding: 0 0 56px;
  margin-bottom: 58px;
  border-bottom: 1px solid #edf0f5;
}

.interview-block:last-child {
  margin-bottom: 0;
}

.interview-block h2 {
  margin: 0 0 18px;
  color: #242933;
  font-size: clamp(24px, 3vw, 31px);
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.01em;
  word-break: keep-all;
}

.interview-block p {
  margin: 0;
  color: #303642;
  font-size: 20px;
  font-weight: 540;
  line-height: 1.88;
  word-break: keep-all;
}

.interview-block p + p {
  margin-top: 26px;
}

@media (max-width: 900px) {
  .careers-hero,
  .openings-section,
  .careers-faq-section {
    padding-right: 24px;
    padding-left: 24px;
  }

  .careers-hero {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .opening-card {
    grid-template-columns: 1fr;
  }

  .openings-controls {
    grid-template-columns: 1fr 1fr;
  }

  .opening-search {
    grid-column: 1 / -1;
  }

  .interview-main {
    padding: 112px 24px 96px;
  }

  .interview-hero {
    padding-bottom: 48px;
  }

  .interview-lead {
    font-size: 18px;
  }

  .interview-block p {
    font-size: 18px;
  }
}

@media (max-width: 700px) {
  .careers-hero {
    min-height: calc(100dvh - 62px);
    padding-top: 108px;
    padding-bottom: 94px;
  }

  .careers-hero::before {
    background-position: 56% center;
    filter: blur(0.8px) saturate(1.02);
    opacity: 0.9;
    transform: scale(1.014);
  }

  .careers-hero-copy h1 {
    max-width: 360px;
    font-size: clamp(42px, 11vw, 56px);
  }

  .careers-hero-copy p {
    max-width: 360px;
    font-size: 16px;
    color: rgba(235, 242, 255, 0.84);
  }

  .openings-section {
    padding-top: 44px;
    padding-bottom: 96px;
  }

  .openings-controls {
    grid-template-columns: 1fr;
    margin-bottom: 28px;
  }

  .opening-card {
    padding: 26px 22px;
  }

  .opening-card h3 {
    font-size: 27px;
  }

  .opening-card ul {
    gap: 6px;
  }

  .opening-card li {
    font-size: 13px;
  }

  .careers-faq-section {
    padding-bottom: 110px;
  }

  .careers-faq-section h2 {
    margin-bottom: 36px;
    font-size: 34px;
  }

  .faq-item summary {
    padding: 22px 34px 18px 0;
    font-size: 21px;
  }

  .faq-item summary::after {
    top: 30px;
  }

  .interview-main {
    padding: 98px 20px 84px;
  }

  .interview-back {
    margin-bottom: 34px;
  }

  .interview-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .interview-profile {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .interview-profile img {
    width: 72px;
    height: 72px;
  }

  .interview-feed {
    padding-top: 48px;
  }

  .interview-block {
    padding-bottom: 42px;
    margin-bottom: 44px;
  }

  .interview-block h2 {
    font-size: 23px;
  }

  .interview-block p {
    font-size: 17px;
    line-height: 1.82;
  }
}

@media (max-width: 1120px) {
  .leader-card,
  .leader-card.reverse {
    grid-template-columns: 136px minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0 8px;
  }

  .leader-card.reverse .portrait {
    order: -1;
  }

  .leader-card > :not(.portrait) {
    padding: 0;
  }

  .portrait,
  .portrait.mingyu {
    width: 136px;
    height: 168px;
  }

  .portrait::before,
  .leader-card.reverse .portrait::before {
    display: none;
  }
}

@media (max-width: 700px) {
  .leader-card,
  .leader-card.reverse {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 24px 0 6px;
  }

  .portrait,
  .portrait.mingyu {
    width: 112px;
    height: 136px;
  }

  blockquote {
    font-size: 16px;
    line-height: 1.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .voice-track {
    animation-duration: 38000ms !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: linear !important;
  }

  .voice-marquee:hover .voice-track,
  .voice-marquee:focus-within .voice-track {
    animation-play-state: paused !important;
  }
}
