:root {
  --ink: #0a0f0e;
  --muted: #6b7280;
  --text-soft: #374151;
  --text-faint: #9ca3af;
  --on-dark: #f9fffe;
  --on-dark-soft: #d1faf2;
  --on-dark-muted: #9ecec5;
  --paper: #ffffff;
  --soft: #f3faf8;
  --line: #e5e9eb;
  --mint: #30e9bd;
  --mint-dim: #00D9A8;
  --mint-rgb: 48, 233, 189;
  --teal: var(--mint);
  --deep: #0f9f7a;
  --night: #050d0c;
  --sun: #ffd66b;
  --blue: #dff3ff;
  --peach: #ff9e7a;
  --mint-dark: var(--deep);
  --mint-hover: #6ff6d8;
  --navy: #050d0c;
  --ink-soft: var(--text-soft);
  --ink-faint: var(--text-faint);
  --bg: #ffffff;
  --bg-light: #f2f8f7;
  --font-body: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font: var(--font-body);
  --max: 1200px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow: 0 20px 60px rgba(10, 15, 14, 0.10);
  --shadow-soft: 0 8px 32px rgba(10, 15, 14, 0.07);
  font-family: var(--font-body);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  font-family: var(--font-body);
  max-width: 100%;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

img,
video {
  display: block;
  max-width: 100%;
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* ════════════════════════════════════════
   PLAYTAG HEADER
════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  
  z-index: 100;
  background: rgba(255,255,255,0.64);
  border-bottom: 1px solid rgba(255,255,255,0.34);
  box-shadow: 0 12px 32px rgba(0,0,0,0.07);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
  transition: transform 0.32s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, backdrop-filter 0.22s ease;
  will-change: transform;
}
.site-header.header-hidden { transform: translateY(calc(-100% - 12px)); }
.site-header.header-on-hero {
  background: transparent;
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.site-header.header-on-hero .pt-logo-img { filter: brightness(0) invert(1); }
.site-header.header-on-hero .pt-nav-link { color: rgba(255,255,255,0.88); }
.site-header.header-on-hero .pt-nav-item:hover .pt-nav-link { color: var(--mint); }
.site-header.header-on-hero .pt-lang-toggle { border-color: rgba(255,255,255,0.24); }
.site-header.header-on-hero .pt-lang-btn { color: rgba(255,255,255,0.72); }
.site-header.header-on-hero .pt-lang-btn.active { background: #ffffff; color: #07110f; }
.site-header.header-on-hero .pt-hamburger span { background: #ffffff; }

.pt-nav {
  max-width: 1520px;
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem);
  height: 68px;
  display: flex;
  align-items: center;
}

.pt-brand { display: flex; align-items: center; flex-shrink: 0; margin-right: 2.5rem; }
.pt-logo-img { height: 34px; width: auto; object-fit: contain; transition: filter 0.22s ease; }

.pt-nav-links { display: flex; align-items: center; flex: 1; }
.pt-nav-item { position: relative; }

.pt-nav-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0 1.1rem;
  height: 68px;
  font-size: 0.93rem;
  font-weight: 600;
  color: #1a1a1a;
  border-bottom: 2.5px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}

.pt-nav-link svg {
  width: 10px;
  height: 7px;
  stroke: currentColor;
  stroke-width: 1.8;
  fill: none;
}

.pt-nav-item:hover .pt-nav-link { color: var(--mint); }
.pt-nav-link.pt-active { border-bottom-color: #1a1a1a; }

.pt-has-dropdown:hover .pt-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }

.pt-dropdown {
  position: absolute;
  top: calc(100% + 1px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
  padding: 0.6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s;
  z-index: 200;
}

.pt-dropdown-col { padding: 0.25rem 0; }

.pt-dropdown-group { padding: 0.25rem 0 0.5rem; }
.pt-dropdown-group + .pt-dropdown-group {
  border-top: 1px solid #f0f0f0;
  padding-top: 0.5rem;
}

.pt-dropdown-heading {
  display: block;
  padding: 0.3rem 1.1rem 0.2rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: #9ca3af;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.pt-dropdown-link {
  display: block;
  padding: 0.5rem 1.1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: background 0.12s, color 0.12s;
  white-space: nowrap;
}

.pt-dropdown-link:hover {
  background: #f5fffe;
  color: var(--teal);
}

.pt-sub-item {
  padding-left: 1.75rem;
  font-size: 0.85rem;
  color: #6b7280;
}

.pt-sub-item:hover { color: var(--teal); }

/* ── Solution dropdown rich cards ── */
.pt-dropdown-solution {
  min-width: 340px;
  padding: 0.5rem 0;
}

.pt-sol-section { padding: 0.6rem 0.75rem; }

.pt-sol-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 0 0.75rem;
}

.pt-sol-card {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.13s;
  margin-bottom: 0.2rem;
}

.pt-sol-card:last-child { margin-bottom: 0; }
.pt-sol-card:hover { background: #f5fffe; }

.pt-sol-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pt-sol-icon svg { width: 22px; height: 22px; }

.pt-sol-icon-storyline { background: #f0fdf9; }
.pt-sol-icon-security { background: #e8faf5; color: var(--teal); }

.pt-sol-icon-mono { background: #ede9fe; }

.pt-sol-mono-letter {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, #7c3aed, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.pt-sol-text { display: flex; flex-direction: column; gap: 2px; }

.pt-sol-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
  line-height: 1.3;
}

.pt-sol-arrow { font-size: 1rem; color: #9ca3af; margin-left: 3px; }

.pt-sol-desc { font-size: 0.8rem; color: #6b7280; line-height: 1.4; }

/* Right actions */
.pt-nav-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Language toggle */
.pt-lang-toggle {
  display: flex;
  align-items: center;
  border: 1.5px solid #e0e0e0;
  border-radius: 999px;
  overflow: hidden;
  height: 34px;
}

.pt-lang-btn {
  padding: 0 0.85rem;
  height: 100%;
  border: none;
  background: transparent;
  font-size: 0.78rem;
  font-weight: 700;
  color: #9ca3af;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.15s, color 0.15s;
}

.pt-lang-btn.active {
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 999px;
}

/* Book a Demo button */
.pt-btn-demo {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 1.25rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}

.pt-btn-demo:hover { background: var(--mint-hover); transform: translateY(-1px); }

.pt-btn-started {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 1.15rem;
  border-radius: 999px;
  border: 1px solid rgba(5, 13, 12, 0.18);
  background: #ffffff;
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, border-color 0.15s, transform 0.12s;
}

.pt-btn-started:hover {
  border-color: rgba(5, 13, 12, 0.36);
  background: rgba(5, 13, 12, 0.03);
  transform: translateY(-1px);
}

.pt-hamburger { display:none; flex-direction:column; justify-content:center; gap:5px; width:44px; height:44px; background:none; border:none; cursor:pointer; margin-left:auto; padding:9px; }
.pt-hamburger span { display:block; height:2px; width:26px; background:#1f2225; border-radius:2px; transition:transform .25s, opacity .2s; }
.pt-hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.pt-hamburger.is-open span:nth-child(2){ opacity:0; }
.pt-hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

.pt-mm-inner { padding:0.75rem clamp(1.25rem,5vw,2rem) 1.5rem; }
.pt-mm-group { padding:.55rem 0; border-bottom:1px solid #f1f1f1; }
.pt-mm-h { font-family:var(--mono); font-size:.64rem; letter-spacing:.16em; text-transform:uppercase; color:#9aa0a3; margin:.2rem 0 .35rem; }
.pt-mm-link { display:block; padding:.5rem 0; color:#1f2225; text-decoration:none; font-size:1rem; }
.pt-mm-link:hover { color:var(--mint); }
.pt-mm-actions { display:flex; flex-direction:column; gap:.75rem; padding-top:1.1rem; }
.pt-mm-demo { display:inline-flex; align-items:center; justify-content:center; height:46px; border-radius:999px; text-decoration:none; font-weight:700; font-size:.85rem; letter-spacing:.04em; background:var(--mint); color:#02201a; }
.pt-mm-lang { display:flex; border:1.5px solid #e0e0e0; border-radius:999px; overflow:hidden; width:fit-content; }
.pt-mm-lang button { padding:.45rem 1.1rem; border:none; background:none; font-size:.8rem; cursor:pointer; color:#555; }
.pt-mm-lang button.active { background:var(--mint); color:#fff; }
.pt-mobile-menu.open { max-height:88vh; overflow-y:auto; border-top:1px solid #eee; border-bottom:1px solid #e8e8e8; }

.pt-mobile-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-left: auto;
  border: none;
  border-radius: 14px;
  background: transparent;
  color: #111827;
  cursor: pointer;
}

.pt-mobile-toggle svg,
.pt-mobile-close svg {
  width: 36px;
  height: 36px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.65;
  stroke-linecap: round;
}

.pt-mobile-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 13, 12, 0.42);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 140;
}

.pt-mobile-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.pt-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(360px, 88vw);
  /* padding: 1rem; */
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transform: translateX(100%);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
  box-shadow: none;
  z-index: 150;
}

.pt-mobile-menu.open,
.pt-mobile-menu.is-open {
  transform: translateX(0);
  box-shadow: -18px 0 48px rgba(10, 15, 14, 0.14);
}

.pt-mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid #eef2f4;
}

.pt-mobile-menu-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.pt-mobile-close {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 12px;
  background: transparent;
  color: #111827;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.pt-mobile-links {
  display: grid;
  gap: 0.75rem;
  overflow-y: auto;
}

.pt-mobile-group {
  padding: 0.95rem 1rem;
  border: 1px solid #edf2f3;
  border-radius: 18px;
  background: #fbfcfc;
}

.pt-mobile-label {
  display: block;
  margin-bottom: 0.55rem;
  color: #9ca3af;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-mobile-link {
  display: block;
  padding: 0.56rem 0;
  font-size: 0.98rem;
  font-weight: 600;
  color: #111827;
}

.pt-mobile-link + .pt-mobile-link {
  border-top: 1px solid #eef2f4;
}

.pt-mobile-sub {
  padding-left: 0.9rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4b5563;
}

.pt-mobile-actions {
  margin-top: auto;
  display: grid;
  gap: 0.75rem;
  padding-top: 0.35rem;
}

.pt-mobile-demo,
.pt-mobile-started {
  min-height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-weight: 800;
}

.pt-mobile-demo {
  background: var(--mint);
  color: var(--navy);
  box-shadow: 0 12px 28px rgba(var(--mint-rgb), 0.22);
}

.pt-mobile-started {
  border: 1px solid rgba(5, 13, 12, 0.16);
  background: #ffffff;
  color: var(--navy);
}

/* ════════════════════════════════════════
   PLAYTAG FOOTER
════════════════════════════════════════ */
.site-footer {
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0;
}

.ft-main {
  max-width: 1320px;
  margin: 0 auto;
  padding: clamp(2.5rem, 5vw, 3.5rem) clamp(1rem, 3vw, 2.5rem) 2rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: clamp(1.5rem, 3vw, 3rem);
  align-items: start;
}

/* Brand col */
.ft-brand-col { display: flex; flex-direction: column; gap: 0.75rem; }

.ft-brand-link { display: inline-block; }
.ft-logo { height: 30px; width: auto; object-fit: contain; mix-blend-mode: normal; }

.ft-contact { font-size: 0.85rem; color: #c6d0d4; margin: 0; line-height: 1.6; }
.ft-contact strong { font-weight: 700; color: #ffffff; }
.ft-address { font-size: 0.8rem; color: #98a5ab; margin: 0; line-height: 1.65; }

/* Cols */
.ft-col { display: flex; flex-direction: column; gap: 0.5rem; }

.ft-col-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 0.4rem;
  display: block;
}

.ft-col-group { display: flex; flex-direction: column; gap: 0.35rem; }

.ft-link {
  font-size: 0.88rem;
  color: #aab4ba;
  text-decoration: none;
  line-height: 1.6;
  transition: color 0.15s;
}

.ft-link:hover { color: var(--mint); }

.ft-parent { font-weight: 600; color: #ffffff; }
.ft-child { padding-left: 0.85rem; font-size: 0.83rem; color: #98a5ab; }

/* CTA col */
.ft-cta-col { display: flex; flex-direction: column; align-items: flex-start; gap: 1.25rem; }

.ft-demo-btn {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 1.5rem;
  border-radius: 999px;
  background: var(--mint);
  color: var(--navy);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s, transform 0.12s;
}

.ft-demo-btn:hover { background: var(--mint-hover); transform: translateY(-1px); }

/* Socials */
.ft-socials { display: flex; align-items: center; gap: 0.6rem; }

.ft-social-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: #1f2225;
  color: #e5e7eb;
  text-decoration: none;
  transition: background 0.15s, color 0.15s, transform 0.12s;
}

.ft-social-icon svg { width: 16px; height: 16px; }
.ft-social-icon:hover { background: var(--mint); color: #ffffff; transform: translateY(-2px); }

/* Bottom bar */
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  max-width: 1320px;
  margin: 0 auto;
  padding: 1.1rem clamp(1rem, 3vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ft-bottom-links { display: flex; align-items: center; gap: 0.6rem; }

.ft-bottom-links a {
  font-size: 0.82rem;
  font-weight: 600;
  color: #d5d9dd;
  text-decoration: none;
  transition: color 0.15s;
}

.ft-bottom-links a:hover { color: var(--mint); }
.ft-bottom-links span { color: rgba(255, 255, 255, 0.24); font-size: 0.75rem; }

.ft-copyright {
  font-size: 0.8rem;
  color: #9ca3af;
  margin: 0;
}

/* ── Responsive footer ── */
@media (max-width: 900px) {
  .ft-main { grid-template-columns: 1fr 1fr; }
  .ft-cta-col { flex-direction: row; align-items: center; flex-wrap: wrap; }
  .pt-nav-links,
  .pt-nav-actions { display: none; }
  .pt-hamburger { display: flex; }
}

@media (max-width: 560px) {
  .ft-main { grid-template-columns: 1fr; }
  .pt-mobile-menu { width: 100vw; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 19, 16, 0.22);
}

.button.secondary {
  background: transparent;
  color: var(--navy);
  border-color: rgba(5, 13, 12, 0.22);
}

.button.secondary:hover {
  background: rgba(5, 13, 12, 0.03);
  border-color: rgba(5, 13, 12, 0.4);
}

.button.mint {
  background: linear-gradient(135deg, var(--mint), var(--mint-hover));
  color: var(--navy);
}

.section {
  padding: clamp(56px, 7vw, 92px) 0;
  overflow: hidden;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 18px;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  background: rgba(var(--mint-rgb), 0.08);
  border: 1px solid rgba(var(--mint-rgb), 0.22);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 940px;
  margin-bottom: 22px;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6.8vw, 6.6rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  font-weight: 900;
}

h2 {
  max-width: 850px;
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.75vw, 3.75rem);
  line-height: 1.08;
  letter-spacing: -0.038em;
  font-weight: 700;
}

h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: clamp(1.22rem, 1.8vw, 1.72rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.lead {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  line-height: 1.72;
  font-weight: 400;
}

.hero {
  position: relative;
  min-height: calc(100svh - 76px);
  display: grid;
  align-items: end;
  padding: clamp(96px, 12vw, 150px) 0 clamp(58px, 7vw, 86px);
  color: #ffffff;
  background: var(--night);
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7, 22, 21, 0.86) 0%, rgba(7, 22, 21, 0.62) 48%, rgba(7, 22, 21, 0.18) 100%),
    linear-gradient(180deg, rgba(7, 22, 21, 0.2) 0%, rgba(7, 22, 21, 0.88) 100%);
  z-index: 1;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero .eyebrow,
.hero .lead {
  color: rgba(255, 255, 255, 0.78);
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.system-status {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 42px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(var(--mint-rgb), 0.34);
  border-radius: 999px;
  background: rgba(7, 22, 21, 0.42);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 12px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(12px);
}

.intro {
  background: #ffffff;
}

.intro-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.principle-grid,
.proof-grid,
.output-grid {
  display: grid;
  gap: 18px;
}

.principle-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
}

.principle-card,
.stage-card,
.proof-card,
.metric-card,
.output-card,
.note-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10, 15, 14, 0.05);
}

.principle-card {
  min-height: 240px;
  padding: 28px;
}

.principle-index,
.stage-index {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 10px;
  background: rgba(var(--mint-rgb), 0.10);
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

.principle-card p,
.stage-card p,
.proof-card p,
.metric-card p,
.output-card p,
.note-card p {
  color: var(--muted);
}

.pipeline {
  position: relative;
  isolation: isolate;
  color: #ffffff;
  background: #000000;
  overflow: hidden;
}

.pipeline::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: #000000;
}

.pipeline::after {
  display: none;
}

.pipeline .container {
  position: relative;
  z-index: 1;
}

.pipeline .eyebrow {
  color: var(--mint);
}

.pipeline h2 {
  max-width: 980px;
  color: #ffffff;
}

.pipeline .lead {
  max-width: 790px;
  color: rgba(255, 255, 255, 0.72);
}

.pipeline-board {
  position: relative;
  margin-top: clamp(32px, 4vw, 52px);
  padding: clamp(20px, 3vw, 40px) 0 clamp(40px, 5vw, 64px);
  overflow: visible;
}

/* Animated horizontal connector line */
.pipeline-connector {
  position: absolute;
  top: 90px;
  left: calc(10% + 20px);
  right: calc(10% + 20px);
  height: 2px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(var(--mint-rgb), 0.12) 5%,
    rgba(var(--mint-rgb), 0.78) 50%,
    rgba(var(--mint-rgb), 0.12) 95%,
    transparent 100%);
  z-index: 0;
}

.pipeline-connector::after {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 60px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(var(--mint-rgb), 0), var(--mint), rgba(var(--mint-rgb), 0));
  box-shadow: 0 0 16px rgba(var(--mint-rgb), 0.9), 0 0 32px rgba(var(--mint-rgb), 0.42);
  animation: connectorPulse 3.5s ease-in-out infinite;
}

@keyframes connectorPulse {
  0%   { left: -60px; opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 1; }
  100% { left: calc(100% + 60px); opacity: 0; }
}

.pipeline-rail {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(12px, 2vw, 22px);
  align-items: start;
}

.pipeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: clamp(18px, 2vw, 24px);
  border: 1px solid rgba(164, 196, 255, 0.14);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(9, 16, 24, 0.94), rgba(5, 10, 16, 0.94));
  backdrop-filter: blur(16px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1),
              border-color 280ms ease,
              box-shadow 280ms ease;
  animation: nodeFloat var(--float-dur, 5s) ease-in-out infinite;
  animation-delay: var(--float-delay, 0s);
}

.pipeline-node:nth-child(1) { --float-dur: 5.2s; --float-delay: 0s; }
.pipeline-node:nth-child(2) { --float-dur: 4.8s; --float-delay: -1.1s; }
.pipeline-node:nth-child(3) { --float-dur: 5.6s; --float-delay: -2.3s; }
.pipeline-node:nth-child(4) { --float-dur: 4.5s; --float-delay: -0.7s; }
.pipeline-node:nth-child(5) { --float-dur: 5.0s; --float-delay: -3.1s; }

@keyframes nodeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.pipeline-node:hover {
  transform: translateY(-12px) scale(1.03);
  border-color: rgba(var(--mint-rgb), 0.46);
  box-shadow:
    0 26px 60px rgba(0, 0, 0, 0.42),
    0 0 34px rgba(var(--mint-rgb), 0.14);
  animation-play-state: paused;
}

.pipeline-node::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(var(--mint-rgb), 0.24), transparent 38%, transparent 62%, rgba(84,122,255,0.12));
  opacity: 0;
  transition: opacity 280ms ease;
  pointer-events: none;
}

.pipeline-node:hover::before { opacity: 1; }

.pipeline-node > * { position: relative; z-index: 1; }

/* Remove old connector line from ::after */
.pipeline-node::after { display: none; }

.pipeline-node strong {
  display: block;
  margin-top: 16px;
  color: #f7fffd;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.pipeline-node span {
  color: rgba(205, 223, 219, 0.72);
  font-size: 0.82rem;
  font-weight: 400;
  line-height: 1.55;
  margin-top: 8px;
  display: block;
}

.pipeline-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(var(--mint-rgb), 0.08);
  color: var(--mint);
  border: 1px solid rgba(var(--mint-rgb), 0.22);
  box-shadow: 0 0 20px rgba(var(--mint-rgb), 0.1);
  transition: box-shadow 280ms ease, background 280ms ease;
}

.pipeline-node:hover .pipeline-icon {
  background: rgba(var(--mint-rgb), 0.16);
  box-shadow: 0 0 28px rgba(var(--mint-rgb), 0.22);
}

.pipeline-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
  margin: 0 auto;
}

.pipeline-copy {
  display: block;
  margin-top: 8px;
}

/* Step badge at bottom of node */
.time-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  margin-top: 20px;
  padding: 0 10px;
  border-radius: 6px;
  background: rgba(var(--mint-rgb), 0.08);
  color: rgba(184, 255, 239, 0.96);
  border: 1px solid rgba(var(--mint-rgb), 0.16);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signal-dot {
  position: absolute;
  z-index: 2;
  top: calc(90px - 3px);
  left: calc(10% + 20px);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 14px rgba(var(--mint-rgb), 0.95), 0 0 32px rgba(var(--mint-rgb), 0.45);
  animation: signalTravel 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

.signal-dot:nth-child(2) { animation-delay: -1.6s; }
.signal-dot:nth-child(3) { animation-delay: -3.2s; }

@keyframes signalTravel {
  from { transform: translateX(0); opacity: 0; }
  8%   { opacity: 1; }
  92%  { opacity: 1; }
  to   { transform: translateX(min(1100px, 80vw)); opacity: 0; }
}

@keyframes ambientSweep {
  from { transform: translateX(-2%) rotate(-3deg); opacity: 0.65; }
  to { transform: translateX(2%) rotate(2deg); opacity: 1; }
}

.time-chip {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 32px;
  margin-top: 24px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(var(--mint-rgb), 0.08);
  color: #b8ffef;
  border: 1px solid rgba(var(--mint-rgb), 0.16);
  font-size: 0.8rem;
  font-weight: 900;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.media-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.media-frame.dark {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.2);
}

.frame-bar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 850;
}

.dark .frame-bar {
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.74);
}

.frame-dots {
  display: flex;
  gap: 6px;
}

.frame-dots i {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #c5d3cf;
}

.media-frame img,
.media-frame video {
  width: 100%;
  height: auto;
}

.model-video-frame {
  width: min(1180px, calc(100vw - 40px));
  margin: clamp(28px, 4vw, 44px) auto clamp(40px, 5vw, 64px);
  border: 1px solid rgba(193, 255, 242, 0.2);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.055)),
    rgba(3, 15, 14, 0.74);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.34), 0 0 80px rgba(var(--mint-rgb), 0.12);
  overflow: hidden;
  backdrop-filter: blur(18px);
}

.model-video-frame .frame-bar {
  border-color: rgba(193, 255, 242, 0.16);
  color: var(--on-dark-soft);
  background: rgba(4, 18, 16, 0.58);
}

.model-video-frame .frame-dots i {
  background: rgba(134, 247, 228, 0.58);
}

.model-video-canvas {
  display: flex;
  justify-content: center;
  padding: clamp(10px, 1.4vw, 16px);
  background:
    radial-gradient(circle at 50% 0%, rgba(var(--mint-rgb), 0.15), transparent 48%),
    #020b0a;
}

.model-video-frame video {
  width: 100%;
  height: auto;
  max-height: min(70svh, 720px);
  object-fit: contain;
  border-radius: 20px;
  background: #020b0a;
}

.pipeline-diagram-header {
  max-width: 760px;
  margin: 0 auto clamp(24px, 3vw, 36px);
  text-align: center;
}

.pipeline-diagram-header h3 {
  margin-bottom: 10px;
  color: var(--on-dark);
  font-size: clamp(1.55rem, 3vw, 2.45rem);
  line-height: 1.14;
}

.pipeline-diagram-header p {
  margin: 0 auto;
  max-width: 610px;
  color: var(--on-dark-soft);
  font-size: 1rem;
  line-height: 1.65;
}

.dataset {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f6fbfa 0%, #ffffff 100%);
}

.dataset::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(10, 15, 14, 0.06) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(180deg, transparent 10%, rgba(0,0,0,0.5) 40%, transparent 90%);
  pointer-events: none;
}

.dataset-header {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.dataset-header h2 {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.dataset-header .lead {
  text-align: center;
  margin-inline: auto;
}

.dataset-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: clamp(36px, 5vw, 56px) auto 0;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(10, 15, 14, 0.18);
}

.dataset-showcase video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  filter: brightness(1.08) saturate(1.1);
}

.dataset-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(24px, 4vw, 44px);
  color: #ffffff;
  background: linear-gradient(
    to bottom,
    rgba(5, 16, 14, 0.0) 0%,
    rgba(5, 16, 14, 0.10) 45%,
    rgba(5, 16, 14, 0.65) 75%,
    rgba(5, 16, 14, 0.84) 100%
  );
}

.dataset-overlay-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.dataset-stat-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.dataset-stat {
  display: flex;
  align-items: baseline;
  gap: 8px;
  line-height: 1;
  margin-bottom: 10px;
}

.dataset-stat-number {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 900;
  letter-spacing: -0.06em;
  line-height: 0.88;
  background: linear-gradient(135deg, #ffffff 30%, var(--mint) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 28px rgba(var(--mint-rgb), 0.45));
}

.dataset-stat-label-inline {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(var(--mint-rgb), 0.9);
  padding-bottom: 0.5em;
}

.dataset-overlay p {
  max-width: 480px;
  margin: 0;
  color: rgba(255, 255, 255, 0.80);
  font-size: clamp(0.88rem, 1.3vw, 1rem);
  font-weight: 400;
  line-height: 1.6;
}

.dataset-badge {
  flex-shrink: 0;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.1rem;
  border: 1px solid rgba(var(--mint-rgb), 0.38);
  border-radius: 12px;
  background: rgba(5, 16, 14, 0.55);
  color: rgba(var(--mint-rgb), 0.95);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  backdrop-filter: blur(16px);
  max-width: 220px;
  text-align: center;
  line-height: 1.45;
  white-space: normal;
}

.dataset-points {
  position: relative;
  z-index: 1;
  max-width: 1040px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 18px auto 0;
}

.dataset-point {
  padding: 18px;
  border: 1px solid rgba(13, 112, 105, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 44px rgba(10, 23, 21, 0.06);
  backdrop-filter: blur(14px);
}

.dataset-point span {
  display: block;
  color: var(--deep);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.dataset-point p {
  margin: 8px 0 0;
  color: var(--muted);
  font-weight: 750;
}

.stage-list {
  display: grid;
  gap: 14px;
  margin-top: 30px;
}

.stage-card {
  padding: 22px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  box-shadow: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.stage-card:hover {
  transform: translateY(-2px);
  border-color: rgba(20, 169, 154, 0.34);
  background: #fbfffd;
}

.stage-card .stage-index {
  margin: 0;
}

.reconstruction {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at 78% 12%, rgba(var(--mint-rgb), 0.2), transparent 30%),
    radial-gradient(circle at 16% 84%, rgba(255, 214, 107, 0.12), transparent 26%),
    linear-gradient(180deg, #081513, #0d211e);
  color: #ffffff;
  overflow: hidden;
}

.reconstruction::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 54% 44%, rgba(0, 0, 0, 0.9), transparent 72%);
}

.reconstruction .eyebrow,
.reconstruction .lead,
.reconstruction .stage-card p,
.reconstruction .proof-card p {
  color: rgba(255, 255, 255, 0.72);
}

.reconstruction .stage-card,
.reconstruction .proof-card {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

.reconstruction .stage-index {
  background: rgba(var(--mint-rgb), 0.18);
  color: var(--mint);
}

.reconstruction .split-section {
  align-items: start;
}

.reconstruction .media-frame {
  margin-top: clamp(76px, 8vw, 116px);
}

.proof-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.proof-card {
  padding: 24px;
}

.story-bridge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 36px;
  margin-bottom: 24px;
  padding: 0 14px;
  border: 1px solid rgba(var(--mint-rgb), 0.2);
  border-radius: 999px;
  background: rgba(var(--mint-rgb), 0.1);
  color: #a8ffef;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.story-bridge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(var(--mint-rgb), 0.8);
}

.lam-section {
  margin-top: clamp(54px, 7vw, 86px);
}

.lam-header {
  max-width: 780px;
  margin-bottom: 30px;
}

.lam-header h3 {
  max-width: 680px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lam-header h3 em {
  color: #67f2d8;
  font-family: var(--font-display);
  font-weight: 400;
  font-style: italic;
}

.lam-header p {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.04rem;
}

.lam-tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 28px 88px rgba(0, 0, 0, 0.24);
}

.lam-tier {
  min-height: 520px;
  padding: clamp(24px, 3vw, 34px);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.035);
}

.lam-tier:last-child {
  border-right: 0;
}

.lam-tier.featured {
  background:
    radial-gradient(circle at 68% 18%, rgba(var(--mint-rgb), 0.18), transparent 30%),
    linear-gradient(180deg, rgba(2, 8, 11, 0.96), rgba(5, 12, 17, 0.98));
  box-shadow: inset 0 1px 0 rgba(var(--mint-rgb), 0.16);
}

.lam-tier-kicker {
  display: block;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.lam-tier.featured .lam-tier-kicker {
  color: #40adff;
}

.lam-tier h4 {
  margin: 0 0 26px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 0.98;
}

.lam-visual {
  min-height: 190px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  background: rgba(255, 255, 255, 0.055);
  overflow: hidden;
}

.lam-visual.frame-ai {
  background:
    linear-gradient(180deg, rgba(223, 233, 229, 0.28), rgba(255, 255, 255, 0.04)),
    repeating-linear-gradient(90deg, transparent 0 46px, rgba(var(--mint-rgb), 0.12) 47px 48px);
}

.lam-visual.scene-ai {
  background: rgba(255, 255, 255, 0.08);
}

.frame-road {
  position: relative;
  width: 84%;
  height: 84px;
  border-top: 34px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.18);
}

.frame-road::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 26px;
  height: 2px;
  background: repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.9) 0 16px, transparent 16px 26px);
}

.detect-box {
  position: absolute;
  top: 10px;
  width: 48px;
  height: 34px;
  border: 2px solid #67f2d8;
  background: rgba(var(--mint-rgb), 0.08);
  box-shadow: 0 0 18px rgba(var(--mint-rgb), 0.18);
}

.detect-box:nth-child(1) { left: 12%; }
.detect-box:nth-child(2) { left: 42%; height: 46px; top: 2px; border-color: #ff7ceb; }
.detect-box:nth-child(3) { right: 8%; width: 66px; }

.clip-strip {
  width: 82%;
  padding: 18px;
  border-radius: 8px;
  background: #060a10;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.clip-frames {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.clip-frames span {
  height: 58px;
  background: #c6a58d;
}

.clip-frames span:nth-child(2) { background: #92a97d; }
.clip-frames span:nth-child(3) { background: #3294d8; }
.clip-frames span:nth-child(4) { background: #bd8b82; }
.clip-frames span:nth-child(5) { background: #171c25; }

.clip-search {
  margin: 18px auto 0;
  max-width: 270px;
  padding: 10px 14px;
  border: 1px solid #40adff;
  background: rgba(255, 255, 255, 0.96);
  color: #071615;
  font-family: var(--font-body);
  font-size: 0.76rem;
}

.lam-matrix {
  width: 86%;
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  align-items: center;
}

.agent-stack {
  display: grid;
  gap: 8px;
}

.agent-chip {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 8px;
  align-items: center;
  color: rgba(255, 255, 255, 0.54);
  font-family: var(--font-body);
  font-size: 0.68rem;
}

.agent-chip i {
  width: 26px;
  height: 26px;
  border-radius: 3px;
  background: #4e3929;
}

.agent-chip:nth-child(2) i { background: #17394d; }
.agent-chip:nth-child(3) i { background: #28411e; }
.agent-chip:nth-child(4) i { background: #49304c; }

.embedding-grid {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 3px;
}

.embedding-grid span {
  aspect-ratio: 1;
  background: #1789dd;
}

.embedding-grid span:nth-child(3n) { background: #23b9de; }
.embedding-grid span:nth-child(4n) { background: #4254bd; }
.embedding-grid span:nth-child(5n) { background: #0e689e; }

.lam-spec {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lam-spec li {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lam-spec span {
  display: block;
  margin-bottom: 4px;
  color: rgba(var(--mint-rgb), 0.74);
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lam-spec strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1rem;
}

.processing {
  background: linear-gradient(180deg, #f1f7f6 0%, #f7fbfb 100%);
}

.runtime-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.metric-card {
  min-height: 270px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.metric-card:nth-child(1) { background: #ffffff; border-color: var(--line); }
.metric-card:nth-child(2) { background: #ffffff; border-color: var(--line); }
.metric-card:nth-child(3) { background: #ffffff; border-color: var(--line); }
.metric-card:nth-child(4) { background: #ffffff; border-color: var(--line); }

.metric-number {
  display: block;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  font-weight: 950;
  letter-spacing: 0;
}

.insights {
  position: relative;
  background: #ffffff;
  overflow: hidden;
}

.insights .container > .eyebrow,
.insights .container > h2,
.insights .container > .lead {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.insight-shell {
  position: relative;
  margin-top: 18px;
}

.insight-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 42px 0 28px;
}


.tab-button {
  position: relative;
  width: auto;
  min-height: 0;
  padding: 0.95rem 1.35rem;
  border: 1px solid rgba(11, 124, 102, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  color: rgba(10, 15, 14, 0.56);
  text-align: center;
  cursor: pointer;
  /* box-shadow: 0 10px 28px rgba(5, 13, 12, 0.06); */
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.tab-button::after {
  display: none;
}

.tab-button strong {
  display: block;
  color: currentColor;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.15vw, 1.1rem);
  line-height: 1.18;
  letter-spacing: 0;
}

@media (max-width: 900px) {
    .insight-tabs { gap: 6px; }
    .tab-button { padding: 10px; }
    /* .tab-button strong { font-size: 14px; } */
}

.tab-button span {
  display: block;
  color: rgba(10, 15, 14, 0.46);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.3;
}

.tab-button:hover,
.tab-button.active {
  transform: translateY(-1px);
  border-color: rgba(var(--mint-rgb), 0.4);
  background: #111716;
  color: #ffffff;
  /* box-shadow: 0 16px 36px rgba(5, 13, 12, 0.12); */
}

.tab-button:hover span,
.tab-button.active span {
  color: rgba(255, 255, 255, 0.72);
}

.insight-viewport {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  padding: 0 0 10px;
}

.insight-slider {
  display: flex;
  gap: 26px;
  align-items: stretch;
  width: max-content;
  padding: 0 calc((100vw - min(76vw, 1120px)) / 2);
  transform: translateX(0);
  transition: transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
  box-sizing: content-box;
}

.insight-panel {
  position: relative;
  display: flex;
  align-items: flex-end;
  flex: 0 0 min(76vw, 1120px);
  width: min(76vw, 1120px);
  min-height: 620px;
  border: 0;
  border-radius: 42px;
  background: #061210;
  box-shadow: none;
  overflow: hidden;
  opacity: 0.42;
  transform: scale(0.92);
  transition: opacity 420ms ease, transform 620ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 420ms ease;
}

.insight-panel.active {
  opacity: 1;
  transform: scale(1);
  box-shadow: none;
}

.insight-video {
  position: absolute;
  inset: 0;
  min-height: 100%;
  background: transparent;
  overflow: hidden;
  z-index: 0;
}

.insight-video::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(4, 13, 12, 0.00) 0%, rgba(4, 13, 12, 0.08) 44%, rgba(4, 13, 12, 0.62) 72%, rgba(3, 8, 8, 0.92) 100%),
    linear-gradient(90deg, rgba(2, 7, 7, 0.28) 0%, rgba(2, 7, 7, 0.05) 48%, rgba(2, 7, 7, 0.22) 100%);
  pointer-events: none;
  z-index: 1;
}

.insight-video video {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
}

.insight-copy {
  position: absolute;
  left: clamp(34px, 4.8vw, 72px);
  right: clamp(34px, 4.8vw, 72px);
  bottom: clamp(30px, 4vw, 58px);
  z-index: 2;
  width: min(720px, calc(100% - clamp(68px, 9.6vw, 144px)));
  margin: 0;
  padding: 0;
  display: grid;
  align-content: end;
  gap: 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.68);
}

.insight-copy h3 {
  margin: 0;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.insight-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.95rem, 1.15vw, 1.08rem);
  line-height: 1.64;
  font-weight: 500;
}

.signal-list {
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  overflow: hidden;
}

.signal-list li {
  display: block;
  min-height: 0;
  padding: 10px 12px;
  background: rgba(7, 19, 17, 0.68);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.7rem;
  font-weight: 750;
  line-height: 1.35;
}

.signal-list li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin: 0 8px 0 0;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 18px rgba(48, 232, 191, 0.75);
}

.outputs {
  background: #ffffff;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.module-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  align-items: stretch;
  border: 1.5px solid rgba(var(--mint-rgb), 0.35);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(10,15,14,0.05);
  overflow: hidden;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(var(--mint-rgb), 0.12), 0 4px 16px rgba(10,15,14,0.08);
  border-color: rgba(var(--mint-rgb), 0.65);
}

.module-card video,
.module-card img,
.demo-scene {
  width: 100%;
  height: auto;
  min-height: 200px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #1a1a1a;
  display: block;
  position: relative;
  z-index: 1;
}

.demo-scene {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-right: 1px solid rgba(223, 233, 229, 0.74);
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--mint-rgb), 0.28), transparent 28%),
    radial-gradient(circle at 84% 24%, rgba(255, 214, 107, 0.18), transparent 24%),
    linear-gradient(145deg, #061311 0%, #10201f 100%);
}

.demo-scene::before {
  content: "";
  position: absolute;
  inset: 30px;
  border-radius: 30px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 34px 34px;
  transform: perspective(620px) rotateX(58deg) translateY(34px);
  transform-origin: bottom center;
  opacity: 0.55;
}

.demo-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0));
  pointer-events: none;
}

.demo-title {
  position: absolute;
  left: 24px;
  top: 22px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.78rem;
  font-weight: 900;
  backdrop-filter: blur(12px);
}

.scene-zone {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 120px;
  height: 86px;
  border: 1px solid rgba(var(--mint-rgb), 0.28);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.zone-a { left: 12%; top: 30%; }
.zone-b { right: 14%; top: 28%; }
.zone-c { left: 39%; bottom: 17%; }

.avatar {
  position: absolute;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 28%, #ffffff 0 12%, transparent 13%),
    linear-gradient(145deg, #2ed6b5, #0d7069);
  box-shadow: 0 0 0 8px rgba(var(--mint-rgb), 0.12), 0 16px 30px rgba(0, 0, 0, 0.28);
}

.avatar::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 29px;
  width: 20px;
  height: 28px;
  border-radius: 12px 12px 16px 16px;
  background: linear-gradient(180deg, #ffffff, #d9fff6);
  opacity: 0.86;
}

.avatar-a { left: 18%; top: 48%; animation: preferA 7.5s ease-in-out infinite; }
.avatar-b { left: 52%; top: 36%; animation: socialB 6.2s ease-in-out infinite; }
.avatar-c { left: 72%; top: 58%; animation: activityC 5.8s ease-in-out infinite; }
.avatar-d { left: 35%; top: 54%; animation: socialD 6.2s ease-in-out infinite; }

.metric-bubble {
  position: absolute;
  z-index: 4;
  min-width: 116px;
  padding: 12px 14px;
  border: 1px solid rgba(var(--mint-rgb), 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
  font-size: 0.84rem;
  font-weight: 900;
}

.metric-bubble span {
  display: block;
  color: var(--deep);
  font-size: 1.1rem;
}

.bubble-a { right: 9%; bottom: 16%; animation: floatSoft 4.6s ease-in-out infinite; }
.bubble-b { left: 9%; bottom: 15%; animation: floatSoft 4.2s ease-in-out infinite; }

.connection {
  position: absolute;
  z-index: 2;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(var(--mint-rgb), 0.95), transparent);
  box-shadow: 0 0 18px rgba(var(--mint-rgb), 0.8);
  transform-origin: left center;
  opacity: 0.82;
}

.connection-one { left: 38%; top: 49%; width: 190px; transform: rotate(-12deg); animation: pulseLine 2.8s ease-in-out infinite; }
.connection-two { left: 32%; top: 60%; width: 250px; transform: rotate(15deg); animation: pulseLine 2.8s ease-in-out infinite 0.6s; }

.activity-track {
  position: absolute;
  z-index: 2;
  left: 12%;
  right: 12%;
  bottom: 23%;
  height: 78px;
  border: 1px solid rgba(var(--mint-rgb), 0.26);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 28px rgba(var(--mint-rgb), 0.1);
}

.activity-track::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: inherit;
  border: 2px dashed rgba(var(--mint-rgb), 0.42);
}

.activity-bars {
  position: absolute;
  z-index: 3;
  right: 10%;
  top: 24%;
  display: flex;
  align-items: end;
  gap: 8px;
  height: 94px;
}

.activity-bars i {
  width: 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--mint), #ffffff);
  box-shadow: 0 0 14px rgba(var(--mint-rgb), 0.6);
  animation: barRise 1.8s ease-in-out infinite;
}

.activity-bars i:nth-child(1) { height: 36px; animation-delay: 0s; }
.activity-bars i:nth-child(2) { height: 62px; animation-delay: 0.2s; }
.activity-bars i:nth-child(3) { height: 84px; animation-delay: 0.4s; }
.activity-bars i:nth-child(4) { height: 50px; animation-delay: 0.6s; }

@keyframes preferA {
  0%, 100% { transform: translate3d(0, 0, 0); }
  34% { transform: translate3d(132px, -42px, 0); }
  68% { transform: translate3d(244px, 32px, 0); }
}

@keyframes socialB {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(-70px, 48px, 0); }
}

@keyframes socialD {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(78px, -26px, 0); }
}

@keyframes activityC {
  0%, 100% { transform: translate3d(-280px, 42px, 0); }
  50% { transform: translate3d(30px, 42px, 0); }
}

@keyframes pulseLine {
  0%, 100% { opacity: 0.34; filter: blur(0); }
  50% { opacity: 1; filter: blur(0.5px); }
}

@keyframes floatSoft {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes barRise {
  0%, 100% { transform: scaleY(0.72); opacity: 0.72; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ── Insights section header ── */
.insights-header {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 760px;
  margin: 0 auto clamp(2rem, 4vw, 3rem);
}

.insights-header h2 {
  font-size: clamp(2rem, 3.75vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.insights-header .lead {
  text-align: center;
  margin-inline: auto;
}

/* ── Module cards ── */
.module-copy {
  position: relative;
  margin-top: -1px;
  padding: clamp(20px, 2.5vw, 28px);
  background: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.module-copy h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

.module-copy p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

.module-label {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 26px;
  margin-bottom: 12px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(var(--mint-rgb), 0.12);
  border: 1px solid rgba(var(--mint-rgb), 0.35);
  color: var(--teal);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.insights .module-label {
  grid-column: 1 / -1;
  justify-self: start;
  margin-bottom: 0;
  background: rgba(48, 232, 191, 0.14);
  border-color: rgba(48, 232, 191, 0.36);
  color: #89ffe8;
  backdrop-filter: blur(12px);
}

.output-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 38px;
}

.output-card {
  min-height: 340px;
  padding: 28px;
  overflow: hidden;
}

.output-card img {
  width: 100%;
  height: 170px;
  margin: 20px 0 0;
  object-fit: cover;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.handoff {
  background: var(--night);
  color: #ffffff;
}

.final-cta {
  background: var(--bg-light);
}

.handoff .eyebrow,
.handoff .lead,
.handoff .note-card p {
  color: rgba(255, 255, 255, 0.72);
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 38px;
}

.note-card {
  min-height: 220px;
  padding: 28px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
  box-shadow: none;
}

/* ── Hero logo lockup — anchored top-left ── */
.hero-logo-lockup {
  position: absolute;
  top: clamp(1.25rem, 2.5vw, 1.75rem);
  left: var(--pad);
  z-index: 3;
  display: flex;
  align-items: center;
}

.hero-signature-img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 1px 8px rgba(var(--mint-rgb), 0.25));
}

/* Integrated StoryLine intro sections */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(2,7,9,0.76) 0%, rgba(2,7,9,0.56) 30%, rgba(2,7,9,0.24) 52%, rgba(2,7,9,0.04) 76%),
    linear-gradient(180deg, rgba(3,7,8,0.22) 0%, rgba(3,7,8,0.02) 44%, rgba(3,7,8,0.26) 100%),
    url("Assets/storyline-hero-analytics-cards.png") center / cover no-repeat,
    #05080a;
  padding: 0;
  color: #ffffff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 48%, rgba(1, 8, 10, 0.56) 0%, rgba(1, 8, 10, 0.34) 34%, rgba(1, 8, 10, 0.00) 62%),
    radial-gradient(circle at 76% 28%, rgba(255,255,255,0.16), transparent 30%),
    radial-gradient(circle at 88% 80%, rgba(255,244,226,0.12), transparent 30%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 2;
  inset: auto -10% -18% 38%;
  height: 46%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,242,220,0.16), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 4;
  max-width: 1520px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(7rem, 11vw, 9rem) clamp(1.5rem, 5vw, 4.5rem) clamp(4rem, 7vw, 5.5rem);
  transform: translateY(2vh);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  pointer-events: auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: rgba(var(--mint-rgb), 0.12);
  border: 1px solid rgba(var(--mint-rgb), 0.2);
  color: #4ff0ca;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.42rem 0.74rem;
  border-radius: 7px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: none;
  opacity: 0;
  animation: heroFadeUp 0.9s cubic-bezier(0.16,1,0.3,1) 0.25s forwards;
}

.hero-badge svg {
  display: none;
}

@keyframes heroDotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(var(--mint-rgb), 0.4); }
  50% { opacity: 0.72; transform: scale(1.35); box-shadow: 0 0 0 6px rgba(var(--mint-rgb), 0); }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4.7vw, 4.7rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.045em;
  color: #ffffff;
  margin-bottom: 1.5rem;
  max-width: 1180px;
  text-align: left;
  opacity: 0;
  animation: heroHeadlineReveal 1.25s cubic-bezier(0.16,1,0.3,1) 0.45s forwards;
}

.hero h1 em {
  display: block;
  color: #ffffff;
  font-style: normal;
}

.hero-sub {
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  color: rgba(255,255,255,0.76);
  max-width: 720px;
  margin: 0 0 2.5rem;
  line-height: 1.55;
  text-shadow: none;
  text-align: left;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.72s forwards;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0;
  pointer-events: auto;
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 0.95s forwards;
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes heroHeadlineReveal {
  from { opacity: 0; transform: translateY(30px); filter: blur(10px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
  min-width: 0;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 0 1.75rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.hero-actions .btn-primary {
  background: var(--mint);
  border: 1px solid var(--mint);
  color: #02201a;
  box-shadow: 0 0 0 0 rgba(var(--mint-rgb), 0.4);
}

.hero-actions .btn-outline {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.86);
  box-shadow: none;
  font-weight: 600;
}

.hero-actions .btn-primary:hover,
.hero-actions .btn-outline:hover {
  transform: translateY(-2px);
}

.hero-actions .btn-primary:hover {
  background: #12e0a8;
  box-shadow: 0 8px 28px rgba(var(--mint-rgb), 0.35);
}

.hero-actions .btn-outline:hover {
  border-color: var(--mint);
  color: var(--mint);
}

.hero-visual {
  position: absolute;
  z-index: 3;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  transform: none;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  pointer-events: none;
}

.hero-visual::before {
  content: none;
}

.hero-visual::after {
  content: none;
}

.hero-observation-tags {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.hero-observation-tag {
  position: absolute;
  display: grid;
  place-items: center;
  align-items: center;
  min-width: 152px;
  min-height: 82px;
  padding: 1.42rem 1rem 0.88rem;
  border-radius: 9px;
  background: rgba(25, 27, 34, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 46px rgba(0,0,0,0.28);
  color: rgba(255,255,255,0.94);
  font-size: clamp(0.78rem, 1.15vw, 1rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: 0;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.hero-observation-tag::before {
  content: attr(data-label);
  position: absolute;
  left: 50%;
  top: 0;
  display: inline-grid;
  place-items: center;
  min-width: 112px;
  height: 32px;
  padding: 0 1rem;
  border-radius: 999px;
  background: #637ce3;
  color: #ffffff;
  transform: translate(-50%, -50%);
  box-shadow: 0 10px 22px rgba(43, 58, 126, 0.32);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-observation-tag::after {
  content: "";
  position: absolute;
  left: 26%;
  bottom: -10px;
  width: 20px;
  height: 20px;
  background: inherit;
  border-right: 1px solid rgba(255,255,255,0.13);
  border-bottom: 1px solid rgba(255,255,255,0.13);
  transform: rotate(45deg);
}

.hero-observation-tag.tag-blocks-a {
  left: 60%;
  top: 39%;
}

.hero-observation-tag.tag-group {
  right: 8%;
  top: 31%;
}

.hero-observation-tag.tag-blocks-b {
  right: 17%;
  bottom: 20%;
}

.hero-foot {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-top: clamp(1.8rem, 3vw, 2.6rem);
  opacity: 0;
  animation: heroFadeUp 1s cubic-bezier(0.16,1,0.3,1) 1.12s forwards;
  pointer-events: auto;
  width: fit-content;
  max-width: 100%;
  padding: 1rem 1.45rem 1rem 1.5rem;
  border-radius: 20px;
  background: rgba(244, 243, 240, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.04);
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px) saturate(1.04);
  -webkit-backdrop-filter: blur(14px) saturate(1.04);
}

.hero-trust {
  max-width: 240px;
  font-size: clamp(1.02rem, 1.35vw, 1.38rem);
  color: #202229;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
  margin: 0;
}

.hero-trust strong {
  color: #202229;
  font-weight: 900;
}

.hero-foot-divider {
  width: 1px;
  height: 56px;
  background: rgba(32, 34, 41, 0.13);
  flex-shrink: 0;
}

.award-badge {
  display: flex;
  align-items: center;
  gap: 0.62rem;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  flex-shrink: 0;
  color: #0d0f14;
}

.award-badge-icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
}

.award-badge-icon circle {
  stroke: currentColor !important;
  opacity: 0.55;
}

.award-badge-icon text {
  fill: currentColor !important;
  font-family: "SUIT", "Pretendard", sans-serif !important;
  font-weight: 900 !important;
}

.award-badge-text {
  line-height: 1.03;
  text-align: left;
}

.award-badge-text .award-year {
  margin-bottom: 0.1rem;
  font-size: 0.57rem;
  font-weight: 900;
  color: #0d0f14;
  letter-spacing: -0.04em;
}

.award-badge-text .award-title {
  font-family: "SUIT", "Pretendard", sans-serif;
  font-size: clamp(1.02rem, 1.45vw, 1.4rem);
  font-weight: 900;
  color: #0d0f14;
  line-height: 0.9;
  letter-spacing: -0.075em;
}

.award-badge-text .award-sub {
  margin-top: 0.18rem;
  font-size: 0.62rem;
  color: rgba(13, 15, 20, 0.66);
  font-weight: 800;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--mint);
  color: var(--navy);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.btn-primary:hover {
  background: var(--mint-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: rgba(255,255,255,0.88);
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 600;
  border: 1.5px solid rgba(255,255,255,0.24);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.why-section,
.testimonials-section {
  background: var(--bg-light);
  padding: clamp(3.25rem, 6vw, 5rem) 0;
}

.testimonials-section {
  background:
    radial-gradient(circle at 18% 8%, rgba(var(--mint-rgb), 0.07), transparent 32%),
    radial-gradient(circle at 82% 18%, rgba(66, 217, 189, 0.06), transparent 30%),
    linear-gradient(180deg, #f7fffc 0%, #f1fbf7 100%);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
}

.testimonials-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(var(--mint-rgb), 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.35;
  pointer-events: none;
}

.testimonials-section .container {
  position: relative;
  z-index: 1;
}

.why-section .container,
.stats-section .container,
.testimonials-section .container,
.demo-section .container {
  width: auto;
  max-width: var(--max);
  padding: 0 var(--pad);
}

.why-header,
.stats-header,
.testimonials-header,
.section-centered-header {
  text-align: center;
  margin-bottom: 1.75rem;
}

.why-title {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 2.55vw, 2.35rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 0.75rem;
  white-space: normal;
}

.why-title .green {
  color: var(--mint);
}

.section-title {
  max-width: none;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.75vw, 3.75rem);
  font-weight: 700;
  letter-spacing: -0.038em;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--ink-soft);
  font-weight: 500;
  line-height: 1.65;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 2rem 1.75rem 1.75rem;
  border: 1.5px solid rgba(var(--mint-rgb), 0.32);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: 0 18px 42px rgba(var(--mint-rgb), 0.12), 0 2px 10px rgba(10,15,14,0.035);
  transition: transform 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(var(--mint-rgb), 0.65);
  box-shadow: 0 24px 58px rgba(var(--mint-rgb), 0.18), 0 8px 22px rgba(10,15,14,0.055);
}

.why-card-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: 14px;
  background: rgba(var(--mint-rgb), 0.08);
  color: var(--teal);
}

.why-card-icon svg {
  width: 32px;
  height: 32px;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.25rem;
  flex: 1;
}

.why-card-cta {
  display: block;
  width: 100%;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.7rem 1rem;
  border-radius: 8px;
  transition: background 0.2s, opacity 0.2s;
  text-align: center;
}

.why-card-cta:hover {
  background: var(--teal);
}

.why-section-cta {
  display: flex;
  justify-content: center;
  margin-top: 1.75rem;
}

.why-section-cta .why-card-cta {
  width: min(100%, 320px);
}

.section-centered-header h2,
.section-centered-header .lead {
  margin-left: auto;
  margin-right: auto;
}

.stats-section {
  background: #05100e;
  padding: clamp(3.75rem, 7vw, 5.75rem) 0;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.stats-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(var(--mint-rgb), 0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.stats-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.stats-kicker,
.testimonials-kicker {
  display: inline-flex;
  align-items: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mint);
  background: rgba(var(--mint-rgb), 0.12);
  border: 1px solid rgba(var(--mint-rgb), 0.28);
  border-radius: 999px;
  padding: 0.35rem 1rem;
  margin-bottom: 1.1rem;
}

.stats-header {
  position: relative;
  z-index: 1;
  margin-bottom: 2.75rem;
}

.stats-header .section-title {
  color: #fff;
  letter-spacing: -0.038em;
  line-height: 1.1;
}

.stats-sub {
  color: rgba(255,255,255,0.75);
  font-size: 1.02rem;
  max-width: 560px;
  margin: 1.1rem auto 0;
  line-height: 1.85;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.stat-card {
  text-align: center;
  padding: 2.25rem 1.5rem 2rem;
  background: rgba(255,255,255,0.07);
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.11);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1.5px;
  background: linear-gradient(to right, transparent, var(--mint), transparent);
  opacity: 0.5;
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: rgba(48,232,191,0.22);
  background: rgba(255,255,255,0.07);
}

.stat-num {
  font-size: clamp(2.4rem, 4.5vw, 3.5rem);
  font-weight: 900;
  color: var(--mint);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.stat-label {
  font-size: 0.92rem;
  font-weight: 700;
  color: rgba(255,255,255,0.92);
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}

.stat-desc {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.68);
  margin-top: 0.75rem;
  line-height: 1.75;
}

.testimonials-carousel-wrap {
  position: relative;
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
  background: transparent;
}

.testimonials-track-outer {
  overflow: hidden;
  padding: 0 max(24px, calc(50vw - 640px));
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.testimonials-track {
  display: flex;
  gap: 1.25rem;
  will-change: transform;
  width: max-content;
  animation: testimonialsMarquee 42s linear infinite;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes testimonialsMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 0.625rem)); }
}

.testimonial-card {
  flex: 0 0 clamp(320px, 31vw, 430px);
  min-height: 300px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 22px;
  padding: clamp(1.45rem, 2vw, 2rem);
  border: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.6rem;
}

.tc-quote {
  margin: 0;
  font-size: clamp(1.03rem, 1.3vw, 1.28rem);
  color: #111716;
  line-height: 1.55;
  font-weight: 500;
  letter-spacing: -0.015em;
  flex: 1;
}

.tc-author {
  display: block;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(18, 38, 34, 0.08);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(13, 32, 29, 0.64);
  line-height: 1.4;
}

.carousel-btn {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #fff;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}

.carousel-btn:hover {
  border-color: var(--mint);
  color: var(--mint-dark);
  box-shadow: 0 4px 16px rgba(48,232,191,0.18);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.1rem;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, border-radius 0.25s;
}

.carousel-dot.active {
  background: var(--mint-dark);
  width: 24px;
  border-radius: 4px;
}

.case-cta {
  text-align: center;
  margin-top: 1.1rem;
}

.case-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--ink);
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s;
}

.case-link:hover {
  background: var(--teal);
  transform: translateY(-1px);
}

.demo-section {
  padding: clamp(3.25rem, 6vw, 5rem) 0;
  background: linear-gradient(180deg, #ffffff 0%, #f4f9f8 100%);
}

.demo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.75rem;
  align-items: start;
}

.demo-left h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.demo-left > p {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
  line-height: 1.65;
}

.demo-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  margin: 0;
}

.demo-checklist li {
  font-size: 0.94rem;
  color: var(--text-soft);
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  line-height: 1.72;
  padding: 0.15rem 0;
}

.demo-checklist li::before {
  content: "";
  flex-shrink: 0;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin-top: 0.15rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Ccircle cx='10' cy='10' r='9' fill='%2316c79a' fill-opacity='0.15' stroke='%2316c79a' stroke-width='1.2'/%3E%3Cpath d='M6 10.5l2.8 2.8 5.2-5.6' stroke='%230ea88a' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.demo-form {
  background: #ffffff;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(10, 15, 14, 0.07);
}

.form-field {
  margin-bottom: 1.25rem;
}

.form-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.4rem;
  letter-spacing: 0.01em;
}

.form-field label .req {
  color: #e53e3e;
  margin-left: 2px;
}

.form-field input {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  transition: border-color 0.2s;
}

.form-field input:focus {
  outline: none;
  border-color: var(--mint);
}

.form-submit {
  width: 100%;
  background: var(--mint);
  color: var(--navy);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  letter-spacing: -0.01em;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.form-submit:hover {
  background: var(--mint-hover);
}

.form-disclaimer {
  font-size: 0.72rem;
  color: var(--ink-faint);
  margin-top: 1rem;
  line-height: 1.55;
}

/* ── Testimonials headline brand color ── */
/* ── Insights privacy note ── */
.insights-privacy-note {
  margin-top: clamp(2rem, 3.5vw, 3rem);
  padding: 1.4rem 1.75rem;
  border-radius: 14px;
  background: var(--bg-light);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.insights-privacy-text {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  flex: 1;
  min-width: 260px;
}

.insights-privacy-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(var(--mint-rgb), 0.10);
  border: 1px solid rgba(var(--mint-rgb), 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
}

.insights-privacy-icon svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.insights-privacy-note p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.68;
  margin: 0;
}

.insights-privacy-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  padding: 0.62rem 1.25rem;
  border-radius: 8px;
  background: var(--navy);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.insights-privacy-cta:hover {
  background: #10211f;
  transform: translateY(-1px);
}

.insights-privacy-cta svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.testimonials-brand {
  color: var(--mint);
}

/* ── Perfect pipeline icon centering ── */
.pipeline-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: rgba(var(--mint-rgb), 0.14);
  color: var(--mint);
  border: 1px solid rgba(var(--mint-rgb), 0.28);
  box-shadow: 0 0 20px rgba(var(--mint-rgb), 0.12);
  transition: box-shadow 280ms ease, background 280ms ease;
  position: relative;
  overflow: hidden;
}

.pipeline-icon svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Hide native video controls on pipeline video ── */
.model-video-frame video::-webkit-media-controls { display: none !important; }
.model-video-frame video::-webkit-media-controls-enclosure { display: none !important; }
.model-video-frame video { pointer-events: none; }

/* ── Scroll reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.reveal-left {
  transform: translateX(-24px);
}

.reveal.reveal-right {
  transform: translateX(24px);
}

.reveal.reveal-scale {
  transform: scale(0.96) translateY(16px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }
.reveal-delay-5 { transition-delay: 0.40s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}

/* ── Stats section title always white ── */
.stats-header .section-title { color: #ffffff; }

/* ── Testimonials section title black ── */
.testimonials-header .section-title {
  color: var(--ink);
}
.section + .section,
.why-section + .section,
.section + .why-section,
.section + .stats-section,
.stats-section + .testimonials-section,
.testimonials-section + .demo-section {
  position: relative;
}

.section + .section::before,
.why-section + .section::before,
.section + .why-section::before,
.section + .stats-section::before,
.stats-section + .testimonials-section::before,
.testimonials-section + .demo-section::before {
  display: none;
}

/* ── Stage card hover in dark sections ── */
.reconstruction .stage-card:hover {
  border-color: rgba(var(--mint-rgb), 0.42);
  background: rgba(var(--mint-rgb), 0.08);
}

@media (max-width: 1060px) {
  .hero {
    background:
      linear-gradient(90deg, rgba(2,7,9,0.82) 0%, rgba(2,7,9,0.62) 40%, rgba(2,7,9,0.26) 74%, rgba(2,7,9,0.08) 100%),
      linear-gradient(180deg, rgba(3,7,8,0.28) 0%, rgba(3,7,8,0.04) 42%, rgba(3,7,8,0.34) 100%),
      url("Assets/storyline-hero-analytics-cards.png") center / cover no-repeat,
      #05080a;
  }

  .hero::after {
    inset: auto -18% -18% 18%;
    width: auto;
    height: 46%;
  }

  .hero-inner {
    max-width: 100%;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .hero-observation-tag.tag-blocks-a {
    left: 56%;
    top: 44%;
  }

  .hero-observation-tag.tag-group {
    right: 6%;
    top: 34%;
  }

  .hero-observation-tag.tag-blocks-b {
    right: 12%;
    bottom: 20%;
  }

  .intro-grid,
  .split-section,
  .insight-panel.active {
    grid-template-columns: 1fr;
  }

  .principle-grid,
  .runtime-grid,
  .output-grid,
  .note-grid,
  .dataset-points {
    grid-template-columns: repeat(2, 1fr);
  }

  .dataset-overlay {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .dataset-overlay-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .dataset-badge {
    width: 100%;
    max-width: none;
    align-self: stretch;
    white-space: normal;
  }

  .module-card {
    grid-template-columns: 1fr;
  }

  .insight-viewport {
    margin: 0;
    padding: 0 0 10px;
  }

  .insight-panel {
    flex-basis: 88vw;
    width: 88vw;
    min-height: 560px;
  }

  .tab-button::after {
    top: auto;
    left: 22px;
    right: 22px;
    bottom: -1px;
    width: auto;
    height: 3px;
    transform: scaleX(0.45);
  }

  .tab-button.active::after {
    transform: scaleX(1);
  }

  .insight-panel,
  .insight-video,
  .insight-video video {
    min-height: 560px;
  }

  .insight-copy {
    left: 30px;
    right: 30px;
    bottom: 34px;
    width: auto;
    margin: 0;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 14px;
    background: transparent;
  }

  .reconstruction .media-frame {
    margin-top: 0;
  }

  .pipeline-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pipeline-node:nth-child(n) {
    animation: none;
  }

  .pipeline-node:nth-child(n):hover {
    transform: translateY(-6px);
  }

  .pipeline-connector,
  .signal-dot {
    display: none;
  }

  .lam-tier-grid {
    grid-template-columns: 1fr;
  }

  .lam-tier {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .lam-tier:last-child {
    border-bottom: 0;
  }

  .lam-visual {
    min-height: 230px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .demo-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .testimonial-card {
    flex: 0 0 clamp(300px, 42vw, 390px);
  }
}

@media (max-width: 760px) {
  .container {
    width: 100vw;
    max-width: 100vw;
    padding: 0 14px;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    display: none;
  }

  .nav-actions .secondary {
    display: none;
  }

  .brand span {
    display: none;
  }

  .section {
    padding: 52px 0;
  }

  .hero {
    min-height: 100svh;
    align-items: center;
    padding: 0;
    background-position: 62% center;
  }

  .hero::after {
    inset: auto -35% -12% 10%;
    height: 38%;
    width: auto;
  }

  .hero-inner {
    position: relative;
    inset: auto;
    min-height: 0;
    transform: none;
    padding: 6.75rem 1rem 2.5rem;
    justify-content: flex-start;
    width: 100%;
  }

  .hero-badge {
    font-size: 0.68rem;
    margin-bottom: 1.15rem;
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(2rem, 8.4vw, 3rem);
    line-height: 1.12;
    margin-bottom: 1rem;
    max-width: 100%;
  }

  .hero-sub {
    font-size: 0.9rem;
    line-height: 1.58;
    margin-bottom: 1.45rem;
    max-width: 100%;
  }

  .hero-visual {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    min-height: 0;
    max-height: none;
    border-radius: 0;
  }

  .hero-visual::before {
    right: -18%;
    top: -16%;
    width: 52%;
    height: 52%;
  }

  .hero-visual::after {
    left: -18%;
    bottom: -16%;
    width: 44%;
    height: 44%;
  }

  .hero-observation-tag {
    min-width: 138px;
    min-height: 64px;
    padding: 1.12rem 0.72rem 0.62rem;
    font-size: 0.72rem;
    border-radius: 6px;
  }

  .hero-observation-tag::before {
    min-width: 86px;
    height: 26px;
    padding: 0 0.72rem;
    font-size: 0.62rem;
    letter-spacing: 0.16em;
  }

  .hero-observation-tag::after {
    width: 16px;
    height: 16px;
    bottom: -8px;
  }

  .hero-observation-tag.tag-blocks-a {
    display: none;
  }

  .hero-observation-tag.tag-group {
    display: none;
  }

  .hero-observation-tag.tag-blocks-b {
    right: 9%;
    bottom: 16%;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-outline {
    width: 100%;
    min-width: 0;
    min-height: 52px;
  }

  .hero-foot-divider {
    display: block;
    height: 48px;
  }

.hero-foot {
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.72rem;
  margin-top: 1.35rem;
  width: min(340px, 100%);
  padding: 0.82rem 0.86rem;
  border-radius: 18px;
}

.hero-trust {
  flex: 0 0 112px;
  max-width: 112px;
  font-size: 0.88rem;
}

.award-badge {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  padding: 0;
  gap: 0.46rem;
}

  .award-badge-icon {
    width: 38px;
    height: 38px;
  }

.award-badge-text .award-year {
  font-size: 0.48rem;
  line-height: 1;
}

.award-badge-text .award-title {
  font-size: 0.78rem;
  letter-spacing: -0.06em;
}

.award-badge-text .award-sub {
  font-size: 0.6rem;
}

  h1 {
    font-size: clamp(2.55rem, 13vw, 3.05rem);
    line-height: 1;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: min(270px, 100%);
  }

  .hero-actions .button {
    width: 100%;
  }

  .nav {
    gap: 14px;
  }

  .nav-actions .mint {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.92rem;
  }

  .site-header,
  .hero,
  .section,
  .site-footer {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
    text-align: center;
    white-space: normal;
    overflow-wrap: anywhere;
  }

  .principle-grid,
  .proof-grid,
  .runtime-grid,
  .module-grid,
  .output-grid,
  .note-grid,
  .dataset-points,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section.insights { overflow-x: visible; }
  .insight-tabs { display: flex; flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; scrollbar-width: none; justify-content: flex-start; cursor: grab; user-select: none; }
  .insight-tabs::-webkit-scrollbar { display: none; }
  .insight-tabs .tab-button { flex: 0 0 75%; scroll-snap-align: start; }
  .insight-tabs.is-dragging { cursor: grabbing; }

  .dataset-showcase {
    border-radius: 22px;
  }

  .dataset-showcase video {
    min-height: 320px;
  }

  .dataset-overlay {
    position: relative;
    background: rgba(4, 16, 14, 0.94);
  }

  .story-bridge {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .lam-header h3 {
    font-size: clamp(2.1rem, 12vw, 3.2rem);
  }

  .lam-tier {
    padding: 22px;
  }

  .lam-visual {
    min-height: 190px;
  }

  .lam-matrix {
    width: 100%;
    grid-template-columns: 76px 1fr;
    gap: 12px;
  }

  .clip-search {
    max-width: 100%;
    font-size: 0.68rem;
  }

  .stage-card {
    grid-template-columns: 1fr;
  }

  .module-card video,
  .module-card img,
  .demo-scene {
    min-height: 210px;
  }

  .pipeline-board {
    width: 100%;
    margin-top: 28px;
  }

  .pipeline-rail {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pipeline-node {
    min-height: 0;
  }

  /* .tab-button {
    min-height: 0;
    padding: 5px;
    border-right: 0;
    border-bottom: 1px solid rgba(10, 15, 14, 0.12);
  } */

  .tab-button::after {
    top: auto;
    bottom: -1px;
    left: 20px;
    right: 20px;
    width: auto;
    height: 3px;
    transform: scaleX(0.45);
  }

  .tab-button.active::after {
    transform: scaleX(1);
  }

  .tab-button span {
    max-width: none;
  }

  .insight-tabs {
    gap: 10px;
  }

  .tab-button {
    width: 100%;
  }

  .insight-viewport {
    border-radius: 10px; 
    padding-bottom: 0; 
    overflow: hidden;
  }

  .insight-slider {
    gap: 14px;
    padding: 0;

  }
  .insight-shell { border-radius: 10px; overflow: hidden;}
  .insight-panel {
    flex-basis: calc(100vw - 28px);
    width: calc(100vw - 28px);
    min-height: 560px;
    border-radius: 10px;
    overflow: hidden;
    opacity: 1;
    transform: none;
  }

  .insight-panel,
  .insight-video,
  .insight-video video {
    min-height: 56.25vw;
  }

  .insight-video::after {
    background:
      linear-gradient(180deg, rgba(4, 13, 12, 0.00) 0%, rgba(4, 13, 12, 0.14) 38%, rgba(4, 13, 12, 0.72) 70%, rgba(3, 8, 8, 0.94) 100%);
  }

  .insight-copy {
    left: 22px;
    right: 22px;
    bottom: 26px;
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    gap: 12px;
  }

  .insight-copy h3 {
    font-size: clamp(1.38rem, 8vw, 1.5rem);
  }

  .insight-copy p {
    display: block;
  }

  .signal-list {
    grid-template-columns: 1fr;
  }

  .signal-list li {
    min-height: 0;
  }

  .why-title {
    white-space: normal;
    font-size: clamp(1.4rem, 3.5vw, 2rem);
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    flex: 0 0 min(82vw, 330px);
    min-height: 280px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}

/* ── Stats section: nuclear visibility fix ── */
.stats-section { background: #05100e !important; }
.stats-section .stat-card,
.stats-section .stat-card.reveal,
.stats-section .stat-card.reveal.reveal-delay-1,
.stats-section .stat-card.reveal.reveal-delay-2,
.stats-section .stat-card.reveal.reveal-delay-3,
.stats-section .stat-card.reveal.reveal-delay-4,
.stats-section .stat-card.reveal.reveal-delay-5,
.stats-section .stats-header,
.stats-section .stats-header.reveal,
.stats-section .stat-num,
.stats-section .stat-label,
.stats-section .stat-desc,
.stats-section .stats-sub,
.stats-section .stats-kicker {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: none !important;
  visibility: visible !important;
}

.site-header { position:fixed !important; top:0 !important; left:0 !important; right:0 !important; z-index:1000 !important; background:rgba(255,255,255,.95) !important; border-bottom:1px solid rgba(0,0,0,.06) !important; box-shadow:0 2px 20px rgba(0,0,0,.04) !important; backdrop-filter:blur(12px) !important; -webkit-backdrop-filter:blur(12px) !important; }
.site-header.header-hidden { transform:translateY(calc(-100% - 12px)) !important; }
.site-header.header-on-hero { background:transparent !important; border-bottom-color:transparent !important; box-shadow:none !important; backdrop-filter:blur(4px) !important; -webkit-backdrop-filter:blur(4px) !important; }
.site-header.header-on-hero .pt-logo-img { filter:brightness(0) invert(1) !important; }
.site-header.header-on-hero .pt-nav-link { color:rgba(255,255,255,.88) !important; }
.site-header.header-on-hero .pt-nav-item:hover .pt-nav-link { color:var(--mint, #30E9BD) !important; }
.site-header.header-on-hero .pt-lang-toggle { border-color:rgba(255,255,255,.24) !important; }
.site-header.header-on-hero .pt-lang-btn { color:rgba(255,255,255,.72) !important; }
.site-header.header-on-hero .pt-lang-btn.active { background:#fff !important; color:#07110f !important; }
.site-header.header-on-hero .pt-hamburger span { background:#fff !important; }
.pt-nav { max-width:1520px !important; margin:0 auto !important; padding:0 clamp(1rem,3vw,2.5rem) !important; height:68px !important; display:flex !important; align-items:center !important; }
.pt-brand { display:flex !important; align-items:center !important; flex-shrink:0 !important; margin-right:2.5rem !important; }
.pt-logo-img { height:34px !important; width:auto !important; object-fit:contain !important; }
.pt-nav-links { display:flex !important; align-items:center !important; flex:1 !important; }
.pt-nav-link { display:inline-flex !important; align-items:center !important; gap:5px !important; padding:0 1.1rem !important; height:68px !important; font-size:.93rem !important; font-weight:600 !important; color:#1a1a1a !important; border-bottom:2.5px solid transparent !important; text-decoration:none !important; }
.pt-nav-link svg { width:10px !important; height:7px !important; stroke:currentColor !important; stroke-width:1.8 !important; fill:none !important; }
.pt-nav-item:hover .pt-nav-link { color:var(--mint, #30E9BD) !important; }
.pt-dropdown { position:absolute !important; top:calc(100% + 1px) !important; left:0 !important; min-width:200px !important; background:#fff !important; border:1px solid #e8e8e8 !important; border-radius:10px !important; box-shadow:0 8px 32px rgba(0,0,0,.10) !important; padding:.6rem 0 !important; opacity:0 !important; visibility:hidden !important; transform:translateY(6px) !important; z-index:200 !important; }
.pt-has-dropdown:hover .pt-dropdown { opacity:1 !important; visibility:visible !important; transform:translateY(0) !important; }
.pt-dropdown-link { display:block !important; padding:.5rem 1.1rem !important; font-size:.9rem !important; font-weight:500 !important; color:#374151 !important; text-decoration:none !important; }
.pt-dropdown-link:hover { background:#f5fffe !important; color:var(--mint-dim, #16c79a) !important; }
.pt-nav-actions { display:flex !important; align-items:center !important; gap:.65rem !important; margin-left:auto !important; flex-shrink:0 !important; }
.pt-lang-toggle { display:flex !important; align-items:center !important; border:1.5px solid #e0e0e0 !important; border-radius:999px !important; overflow:hidden !important; height:34px !important; }
.pt-lang-btn { padding:0 .85rem !important; height:100% !important; border:0 !important; background:transparent !important; font-size:.78rem !important; font-weight:700 !important; color:#9ca3af !important; cursor:pointer !important; letter-spacing:.04em !important; }
.pt-lang-btn.active { background:#1a1a1a !important; color:#fff !important; border-radius:999px !important; }
.pt-btn-demo { display:inline-flex !important; align-items:center !important; height:38px !important; padding:0 1.25rem !important; border-radius:999px !important; background:var(--mint, #30E9BD) !important; color:#fff !important; font-size:.82rem !important; font-weight:800 !important; letter-spacing:.05em !important; text-decoration:none !important; white-space:nowrap !important; }
.pt-hamburger { display:none !important; flex-direction:column !important; justify-content:center !important; gap:5px !important; width:44px !important; height:44px !important; background:none !important; border:0 !important; cursor:pointer !important; margin-left:auto !important; padding:9px !important; }
.pt-hamburger span { display:block !important; height:2px !important; width:26px !important; background:#1f2225 !important; border-radius:2px !important; }
.pt-hamburger.is-open span:nth-child(1){ transform:translateY(7px) rotate(45deg) !important; }
.pt-hamburger.is-open span:nth-child(2){ opacity:0 !important; }
.pt-hamburger.is-open span:nth-child(3){ transform:translateY(-7px) rotate(-45deg) !important; }
.pt-mobile-menu { display:none !important;  position: fixed; top: 67px; width: 100%; z-index: 99; }
.pt-footer { background:#000 !important; color:#f3f4f6 !important; position:relative !important; z-index:1 !important; font-family:var(--body, var(--font-body, "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif)) !important; }
.pt-footer-main { max-width:1500px !important; margin:0 auto !important; padding:clamp(2.5rem,5vw,3.5rem) clamp(1.5rem,5vw,3.5rem) !important; display:grid !important; grid-template-columns:1.35fr repeat(4,minmax(120px,1fr)) auto !important; gap:2rem 2.5rem !important; align-items:start !important; }
.pt-foot-brand .pt-foot-logo { display:inline-flex !important; align-items:center !important; }
.pt-foot-logo img { display:block !important; height:30px !important; width:auto !important; object-fit:contain !important; }
.pt-foot-h { font-weight:700 !important; font-size:.95rem !important; letter-spacing:.03em !important; margin:0 0 1.1rem !important; color:#fff !important; }
.pt-foot-link { display:block !important; color:#a7b0b6 !important; text-decoration:none !important; font-size:.9rem !important; margin-bottom:.75rem !important; }
.pt-foot-actions { display:flex !important; flex-direction:column !important; align-items:flex-end !important; gap:1.25rem !important; }
.pt-foot-social { display:flex !important; justify-content:flex-end !important; gap:.6rem !important; }
.pt-foot-social a { width:34px !important; height:34px !important; border-radius:50% !important; background:#1f2225 !important; color:#fff !important; display:flex !important; align-items:center !important; justify-content:center !important; font-size:.7rem !important; font-weight:700 !important; line-height:1 !important; text-decoration:none !important; box-shadow:none !important; }
.pt-foot-social img { display:block !important; width:17px !important; height:17px !important; object-fit:contain !important; filter:brightness(0) invert(1) !important; }
.pt-foot-social .pt-social-youtube img, .pt-foot-social .pt-social-kakao img { width:18px !important; height:18px !important; }
.pt-foot-social .pt-social-blog { width:34px !important; border-radius:50% !important; overflow:hidden !important; }
.pt-foot-social .pt-social-blog img { width:17px !important; height:17px !important; max-width:none !important; object-fit:contain !important; filter:brightness(0) invert(1) !important; }
.pt-footer-bottom { background:#000 !important; color:#9aa0a3 !important; border-top:1px solid rgba(255,255,255,.12) !important; }
.pt-footer-bottom-inner { max-width:1500px !important; margin:0 auto !important; padding:.9rem clamp(1.5rem,5vw,3.5rem) !important; display:flex !important; justify-content:space-between !important; align-items:center !important; flex-wrap:wrap !important; gap:.5rem !important; font-size:.82rem !important; }
.pt-footer-bottom a { color:#cfd3d5 !important; text-decoration:none !important; }
.pt-foot-legal-sep { margin:0 .6rem !important; color:#555 !important; }
@media (max-width:900px){ .pt-nav-links,.pt-nav-actions{display:none !important;} .pt-hamburger{display:flex !important;} .pt-mobile-menu{display:block !important; max-height:0 !important; overflow:hidden !important; transition:max-height .35s ease !important; background:#fff !important;} 
.pt-mobile-menu.open{max-height:88vh !important; overflow-y:auto !important; border-top:1px solid #eee !important; border-bottom:1px solid #e8e8e8 !important; box-shadow:0 14px 28px rgba(0,0,0,.10) !important;} .pt-mm-inner{padding:.75rem clamp(1.25rem,5vw,2rem) 1.5rem !important;} .pt-mm-group{padding:.55rem 0 !important; border-bottom:1px solid #f1f1f1 !important;} .pt-mm-h{font-family:var(--mono, monospace) !important; font-size:.64rem !important; letter-spacing:.16em !important; text-transform:uppercase !important; color:#9aa0a3 !important; margin:.2rem 0 .35rem !important;} .pt-mm-link{display:block !important; padding:.5rem 0 !important; color:#1f2225 !important; text-decoration:none !important; font-size:1rem !important;} .pt-mm-actions{display:flex !important; flex-direction:column !important; gap:.75rem !important; padding-top:1.1rem !important;} .pt-mm-demo{display:inline-flex !important; align-items:center !important; justify-content:center !important; height:46px !important; border-radius:999px !important; text-decoration:none !important; font-weight:700 !important; font-size:.85rem !important; letter-spacing:.04em !important; background:var(--mint, #30E9BD) !important; color:#fff !important;} .pt-mm-lang{display:flex !important; border:1.5px solid #e0e0e0 !important; border-radius:999px !important; overflow:hidden !important; width:fit-content !important;} .pt-mm-lang button{padding:.45rem 1.1rem !important; border:0 !important; background:none !important; font-size:.8rem !important; cursor:pointer !important; color:#555 !important;} .pt-mm-lang button.active{background:var(--mint, #30E9BD) !important; color:#fff !important;} .pt-footer-main{grid-template-columns:1fr 1fr !important;} .pt-foot-actions{align-items:flex-start !important; grid-column:1 / -1 !important;} }
@media (max-width:560px){ .pt-footer-main{grid-template-columns:1fr !important;} .pt-footer-bottom-inner{flex-direction:column !important; align-items:flex-start !important;} }


.px-section { position: relative; overflow: hidden; }
.px-wrap { width: min(1500px, calc(100% - 40px)); margin: 0 auto; }
.px-cta {
  background: #f8fafc !important;
  padding: clamp(3.25rem, 5.8vw, 5.5rem) 0 clamp(3.4rem, 6vw, 5.8rem) !important;
  border-bottom: 0 !important;
  border-radius: 0 !important;
}
.px-cta-banner {
  width: 100%;
  max-width: none;
  margin: 0 auto;
  padding: clamp(2.25rem, 5vw, 4.4rem) clamp(1.35rem, 4.6vw, 4rem);
  border-radius: 8px;
  text-align: center;
  background:
    radial-gradient(circle at 18% 18%, rgba(var(--mint-rgb), .2), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(var(--mint-rgb), .13), transparent 34%),
    linear-gradient(135deg, #ecfdf8 0%, #f8fafc 54%, #f1f5f9 100%);
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .08);
}
.px-cta-banner .px-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  margin: 0 0 .95rem !important;
  color: var(--mint) !important;
  font-family: "SUIT", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .24em !important;
}
.px-cta-banner .px-dot {
  width: .45rem;
  height: .45rem;
  border-radius: 50%;
  background: var(--mint) !important;
  box-shadow: 0 0 18px rgba(var(--mint-rgb), .42);
}
.px-cta-banner .px-h2 {
  max-width: 780px !important;
  margin: 0 auto .95rem !important;
  color: #0f172a !important;
  font-family: "SUIT", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: clamp(2rem, 4vw, 4.05rem) !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: -.045em !important;
}
.px-cta-banner .px-body {
  max-width: 600px !important;
  margin: 0 auto clamp(1.35rem, 2.6vw, 2rem) !important;
  color: #475569 !important;
  font-size: clamp(.95rem, 1.2vw, 1.08rem) !important;
  line-height: 1.55 !important;
}
.px-cta-actions {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.px-cta-primary,
.px-cta-secondary {
  min-height: 48px;
  border-radius: 999px !important;
  padding: .78rem 1.15rem !important;
  font-size: .88rem !important;
}
.px-cta-banner .px-cta-primary,
.px-cta-banner .px-cta-secondary {
  border-radius: 999px !important;
}
.px-cta-primary {
  background: var(--mint) !important;
  color: #fff !important;
  border-color: var(--mint) !important;
  box-shadow: 0 16px 36px rgba(var(--mint-rgb), .2) !important;
}
.px-cta-primary:hover {
  background: var(--mint-hover) !important;
  transform: translateY(-1px);
}
.px-cta-secondary {
  color: #d8fff5 !important;
  background: rgba(255,255,255,.045) !important;
  border: 1px solid rgba(var(--mint-rgb), .28) !important;
}
.px-cta-secondary:hover {
  background: rgba(var(--mint-rgb), .09) !important;
  color: #fff !important;
}
#cta {
  --page-max: 1180px;
  --page-gutter: 20px;
  --mint: #00D9A8;
  --mint-rgb: 0, 217, 168;
  --mint-hover: #00C99B;
}
#cta.px-cta {
  padding-top: clamp(4rem, 6vw, 5.75rem) !important;
  padding-bottom: clamp(4.25rem, 6.5vw, 6rem) !important;
}
#cta > .px-wrap {
  width: min(var(--page-max), calc(100% - (var(--page-gutter) * 2))) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}
#cta .px-cta-banner {
  max-width: 100% !important;
  border-radius: 22px !important;
  overflow: hidden !important;
}
#cta .px-cta-banner .px-eyebrow {
  min-height: 28px !important;
  padding: .28rem .68rem !important;
  border-radius: 8px !important;
  background: rgba(var(--mint-rgb), .07) !important;
  border: 1px solid rgba(var(--mint-rgb), .14) !important;
  letter-spacing: .08em !important;
}
#cta .px-cta-banner .px-h2 {
  max-width: 960px !important;
  font-size: clamp(2rem, 3.34vw, 3rem) !important;
  font-weight: 560 !important;
  line-height: 1.12 !important;
  letter-spacing: -0.032em !important;
}
#cta .px-cta-primary,
#cta .hero-cta-primary.px-cta-primary {
  min-height: 48px !important;
  height: 48px !important;
  padding: 0 1.5rem !important;
  border-radius: 8px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: .5rem !important;
  font-size: .92rem !important;
  font-weight: 800 !important;
  letter-spacing: .025em !important;
  line-height: 1 !important;
}
.pt-footer { background:#000; color:#f3f4f6; position:relative; z-index:1; font-family: var(--font-body, "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif); }
.pt-footer-main { max-width:1500px; margin:0 auto; padding: clamp(2.5rem,5vw,3.5rem) clamp(1.5rem,5vw,3.5rem) clamp(1.8rem,3.6vw,2.6rem); display:grid; grid-template-columns:1.35fr repeat(4, minmax(120px, 1fr)); gap:2rem 2.5rem; align-items:start; }
.pt-foot-brand .pt-foot-logo { display:inline-flex; align-items:center; }
.pt-foot-logo img { display:block; height:30px; width:auto; object-fit:contain; }
.pt-foot-h { font-weight:800; font-size:.95rem; letter-spacing:.03em; margin:0 0 1.1rem; color:#fff; }
.pt-foot-link { display:block; color:#a7b0b6; text-decoration:none; font-size:.9rem; margin-bottom:.75rem; transition:color .2s; }
.pt-foot-link:hover { color:var(--mint); }
.pt-foot-demo { background:#1f2225; color:var(--mint); font-weight:700; font-size:.82rem; letter-spacing:.08em; text-decoration:none; padding:.8rem 1.5rem; border-radius:999px; white-space:nowrap; }
.pt-foot-demo:hover { background:#000; }
.pt-footer-social-row { max-width:1500px; margin:0 auto; padding:0 clamp(1.5rem,5vw,3.5rem) clamp(2.2rem,4.2vw,3rem); display:flex; justify-content:center; }
.pt-foot-social { display:flex; flex-wrap:wrap; justify-content:center; gap:clamp(.65rem,1.4vw,.95rem); }
.pt-foot-social a { width:58px; height:58px; border-radius:14px; background:#f8fafc; color:#1f2937; display:flex; align-items:center; justify-content:center; text-decoration:none; box-shadow:0 14px 34px rgba(0,0,0,.22); transition:background .2s, color .2s, transform .2s; }
.pt-foot-social a:hover { background:var(--mint); color:#000; transform:translateY(-2px); }
.pt-foot-social svg { width:28px; height:28px; display:block; fill:currentColor; stroke:currentColor; }
.pt-foot-social .pt-social-mail svg { fill:none; stroke-width:2.2; stroke-linecap:round; stroke-linejoin:round; }
.pt-footer-bottom { background:#000; color:#9aa0a3; border-top:1px solid rgba(255,255,255,0.12); }
.pt-footer-bottom-inner { max-width:1500px; margin:0 auto; padding:.9rem clamp(1.5rem,5vw,3.5rem); display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:.5rem; font-size:.82rem; }
.pt-footer-bottom a { color:#cfd3d5; text-decoration:none; }
.pt-footer-bottom a:hover { color:#fff; }
.pt-foot-legal-sep { margin:0 .6rem; color:#555; }
@media (max-width:900px){
  .pt-footer-main { grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .px-wrap { width: min(100% - 32px, 1500px); }
  .px-cta { padding: 1.5rem 0 1.75rem !important; }
  .px-cta-banner { padding: 2rem 1rem; }
  .px-cta-actions { flex-direction: column; align-items: stretch; }
  .px-cta-primary,
  .px-cta-secondary { width: 100%; justify-content: center; }
  .pt-footer-main { grid-template-columns:1fr; }
  .pt-foot-social a { width:52px; height:52px; border-radius:12px; }
  .pt-foot-social svg { width:25px; height:25px; }
  .pt-footer-bottom-inner { flex-direction:column; align-items:flex-start; }
}

/* ── Pretendard weight tuning ── */
body { font-weight: 400; }
b, strong { font-weight: 600; }
h1, h2, h3, h4, h5, h6 { font-weight: 700; }
.hero-title,
.section-title,
.section-centered-header h2,
.insights-header h2,
.why-header h2,
.module-copy h3,
.demo-tab-title,
.pt-foot-h { font-weight: 700 !important; }
.pt-btn-demo,
.pt-mm-demo,
.pt-lang-btn,
.pt-nav-link,
.button,
.btn-primary,
.btn-outline,
[class*="btn"],
[class*="cta"] { font-weight: 600 !important; }
.pt-btn-demo,
.pt-mm-demo,
.button,
.btn-primary,
.btn-outline,
[class*="btn"],
.why-card-cta,
.case-cta,
.insights-privacy-cta { border-radius: 8px !important; }
.pt-lang-toggle,
.pt-mm-lang { border-radius: 8px !important; }
.pt-lang-btn.active,
.pt-mm-lang button.active { border-radius: 6px !important; }
.stat-num,
.stats-kicker,
.stats-sub,
.metric-value,
[class*="metric"],
[class*="stat"],
[class*="num"] { font-weight: 700 !important; }
.eyebrow,
.pt-mm-h,
[class*="eyebrow"],
[class*="badge"],
[class*="pill"],
[class*="label"],
[class*="kicker"] { font-weight: 600 !important; }

/* Match section labels and text style with the home page */
section h1,
section h2,
.hero-title,
.section-title,
.section-centered-header h2,
.insights-header h2,
.why-header h2,
.pipeline h2,
.dataset-header h2,
.stats-header .section-title,
.testimonials-header .section-title,
.module-copy h3,
.demo-tab-title,
.pt-foot-h {
  font-family: "SUIT", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.eyebrow,
.stats-kicker,
.testimonials-kicker,
.module-label,
.lam-tier-kicker {
  display: inline-flex !important;
  align-items: center !important;
  gap: 0 !important;
  width: fit-content !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--mint) !important;
  font-family: "SUIT", "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: .82rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
}

.eyebrow::before,
.eyebrow::after,
.stats-kicker::before,
.stats-kicker::after,
.testimonials-kicker::before,
.testimonials-kicker::after,
.module-label::before,
.module-label::after,
.lam-tier-kicker::before,
.lam-tier-kicker::after {
  display: none !important;
}

.section-title,
.section-centered-header h2,
.insights-header h2,
.why-header h2,
.pipeline h2,
.dataset-header h2,
.stats-header .section-title,
.testimonials-header .section-title,
.section .container > h2 {
  font-size: clamp(2rem, 3.34vw, 3rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.032em !important;
}

@media (max-width: 640px) {
  .section-title,
  .section-centered-header h2,
  .insights-header h2,
  .why-header h2,
  .pipeline h2,
  .dataset-header h2,
  .stats-header .section-title,
  .testimonials-header .section-title,
  .section .container > h2 {
    font-size: clamp(1.65rem, 7vw, 2.1rem) !important;
    line-height: 1.14 !important;
    letter-spacing: -0.025em !important;
  }
}

/* Header: match home page */
.site-header {
  background: #f7f7f5 !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  transition: transform 0.32s ease !important;
}
.site-header.header-on-hero {
  background: transparent !important;
  background-color: transparent !important;
  border-bottom: 0 !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.site-header .pt-logo-img,
.site-header.header-on-hero .pt-logo-img { filter: none !important; }
.site-header.header-on-hero .pt-nav-link { color: rgba(26,26,26,.86) !important; }
.site-header.header-on-hero .pt-nav-item:hover .pt-nav-link { color: var(--mint-dim) !important; }
.site-header.header-on-hero .pt-lang-toggle { border-color: rgba(26,26,26,.18) !important; }
.site-header.header-on-hero .pt-lang-btn { color: rgba(26,26,26,.64) !important; }
.site-header.header-on-hero .pt-lang-btn.active { background: #111827 !important; color: #fff !important; }
.site-header.header-on-hero .pt-hamburger span { background: #101714 !important; }
.site-header .pt-btn-demo {
  border-radius: 999px !important;
  background: var(--mint) !important;
  border-color: var(--mint) !important;
  color: #fff !important;
}
.site-header .pt-btn-demo:hover {
  background: var(--mint-hover) !important;
  border-color: var(--mint-hover) !important;
  color: #fff !important;
}
/* Hero: product-page split layout on desktop, stacked on mobile */
.hero {
  background:
    radial-gradient(ellipse at 50% 22%, rgba(var(--mint-rgb), .12), transparent 38%),
    linear-gradient(180deg,
      #ffffff 0%,
      #f8fbfa 52%,
      #eef7f5 100%),
    #f8fbfa !important;
  color: #101714 !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  min-height: 100svh !important;
  padding: clamp(6.5rem, 10vw, 8.4rem) clamp(1.25rem, 4vw, 3rem) clamp(2.5rem, 5vw, 4rem) !important;
}
.hero::before {
  background:
    radial-gradient(ellipse at 16% 20%, rgba(255,255,255,.92), transparent 34%),
    radial-gradient(ellipse at 84% 18%, rgba(var(--mint-rgb), .08), transparent 34%) !important;
}
.hero::after {
  inset: auto 8% -10% 8% !important;
  height: 28% !important;
  background: radial-gradient(ellipse, rgba(15,23,42,.08), transparent 68%) !important;
}
.hero-inner {
  width: min(860px, calc(100% - 40px)) !important;
  max-width: 860px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  transform: none !important;
}
.hero h1,
.hero h1 em,
.hero-sub {
  text-align: center !important;
}
.hero h1 {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 860px !important;
}
.hero-sub {
  margin-left: auto !important;
  margin-right: auto !important;
  max-width: 720px !important;
}
.hero-actions {
  justify-content: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.hero-foot {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-bottom: clamp(1.65rem, 2.2vw, 2.2rem) !important;
}
.hero-visual {
  position: relative !important;
  z-index: 3 !important;
  inset: auto !important;
  width: min(1120px, 100%) !important;
  height: auto !important;
  aspect-ratio: 16 / 7 !important;
  margin: clamp(2rem, 4vw, 3.25rem) auto 0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  opacity: 1 !important;
  background: #e8f1ef !important;
  border: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: none !important;
}
.hero-visual img {
  width: 102% !important;
  height: 102% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 50% !important;
  filter: saturate(.98) contrast(.98) brightness(1.02) !important;
  transform: translate(-1%, -1%) !important;
}
.hero-data-card {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 184px;
  padding: 0.82rem 0.95rem;
  border-radius: 10px;
  color: #eafffb;
  background: rgba(16, 23, 20, 0.54);
  border: 1px solid rgba(var(--mint-rgb), 0.58);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.18), inset 0 1px 0 rgba(255,255,255,.18);
  backdrop-filter: blur(12px) saturate(1.12);
  -webkit-backdrop-filter: blur(12px) saturate(1.12);
  pointer-events: none;
}
.hero-data-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--mint);
}
.hero-data-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.hero-data-copy {
  display: grid;
  grid-template-columns: auto auto;
  column-gap: 0.32rem;
  align-items: baseline;
  text-align: left;
  line-height: 1.05;
}
.hero-data-copy span,
.hero-data-copy small {
  grid-column: 1 / -1;
}
.hero-data-copy span {
  margin-bottom: 0.16rem;
  color: rgba(255,255,255,.86);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: -0.015em;
}
.hero-data-copy strong {
  color: var(--mint);
  font-family: "SUIT", "Pretendard", sans-serif;
  font-size: 1.9rem;
  font-weight: 900;
  letter-spacing: -0.055em;
}
.hero-data-copy em {
  color: rgba(255,255,255,.82);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 700;
}
.hero-data-copy small {
  margin-top: 0.12rem;
  color: rgba(255,255,255,.78);
  font-size: 0.72rem;
  font-weight: 700;
}
.hero-data-card--activity {
  left: 8%;
  top: 14%;
}
.hero-data-card--social {
  right: 10%;
  top: 11%;
}
.hero-data-card--play {
  right: 8%;
  bottom: 16%;
}
.hero-badge {
  background: rgba(var(--mint-rgb), .12) !important;
  border-color: rgba(var(--mint-rgb), .22) !important;
  color: var(--mint) !important;
}
.hero h1,
.hero h1 em {
  color: #101714 !important;
}
.hero-sub {
  color: rgba(16,23,20,.7) !important;
}
.hero-actions .btn-outline {
  background: rgba(255,255,255,.5) !important;
  border-color: rgba(15,23,42,.18) !important;
  color: rgba(16,23,20,.82) !important;
}
.hero-actions .btn-outline:hover {
  border-color: var(--mint) !important;
  color: var(--mint) !important;
}
.hero-trust,
.hero-trust strong {
  color: #202229 !important;
}
.award-badge,
.award-badge-text .award-year,
.award-badge-text .award-title {
  color: #0d0f14 !important;
}
.award-badge-text .award-sub {
  color: rgba(13,15,20,.66) !important;
}
.hero-foot-divider {
  background: rgba(32,34,41,.13) !important;
}
@media (min-width: 1061px) {
  .hero {
    display: grid !important;
    grid-template-columns: minmax(430px, 470px) minmax(660px, 820px) !important;
    column-gap: clamp(1.75rem, 2.2vw, 2.5rem) !important;
    align-items: center !important;
    justify-content: center !important;
    min-height: 100svh !important;
    padding: clamp(5.9rem, 8vw, 7.2rem) clamp(2rem, 5vw, 4rem) clamp(3.25rem, 5vw, 4.5rem) !important;
    background:
      radial-gradient(ellipse at 83% 45%, rgba(255, 214, 107, .25), transparent 42%),
      radial-gradient(ellipse at 92% 18%, rgba(255, 158, 122, .22), transparent 34%),
      radial-gradient(ellipse at 72% 34%, rgba(var(--mint-rgb), .10), transparent 36%),
      radial-gradient(ellipse at 12% 18%, rgba(255,255,255,.92), transparent 34%),
      linear-gradient(135deg, #ffffff 0%, #f8fbfa 55%, #eef7f5 100%),
      #f8fbfa !important;
  }
  .hero::before {
    background:
      radial-gradient(ellipse at 72% 46%, rgba(255,255,255,.42), transparent 42%),
      radial-gradient(ellipse at 18% 48%, rgba(var(--mint-rgb), .08), transparent 38%) !important;
  }
  .hero-inner {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 !important;
    align-items: flex-start !important;
    text-align: left !important;
    transform: translateY(-22px) !important;
  }
  .hero h1,
  .hero h1 em,
  .hero-sub {
    text-align: left !important;
  }
  .hero h1 {
    max-width: 500px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: clamp(3.2rem, 4.55vw, 4.65rem) !important;
    line-height: 1.05 !important;
    letter-spacing: -0.055em !important;
  }
  .hero-sub {
    max-width: 520px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    font-size: clamp(1rem, 1.15vw, 1.16rem) !important;
  }
  .hero-actions {
    justify-content: flex-start !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
  .hero-foot {
    width: min(382px, 100%) !important;
    flex-wrap: nowrap !important;
    gap: 0.78rem !important;
    padding: 0.58rem 0.48rem 0.58rem 0.96rem !important;
    border-radius: 15px !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    margin-bottom: clamp(1.45rem, 2vw, 1.85rem) !important;
  }
  .hero-trust {
    flex: 0 0 130px !important;
    max-width: 130px !important;
    font-size: 0.86rem !important;
    line-height: 1.08 !important;
  }
  .hero-foot-divider {
    height: 42px !important;
  }
  .award-badge {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    gap: 0.42rem !important;
  }
  .award-badge-icon {
    width: 32px !important;
    height: 32px !important;
  }
  .award-badge-text .award-year {
    font-size: 0.42rem !important;
    line-height: 1 !important;
  }
  .award-badge-text .award-title {
    font-size: 0.74rem !important;
    line-height: 1 !important;
    letter-spacing: -0.055em !important;
    white-space: nowrap !important;
  }
  .award-badge-text .award-sub {
    font-size: 0.48rem !important;
  }
  .hero-visual {
    width: 100% !important;
    max-width: 860px !important;
    aspect-ratio: 1.55 / 1 !important;
    margin: 0 !important;
    border-radius: 24px !important;
    box-shadow: none !important;
  }
  .hero-visual img {
    object-position: center center !important;
  }
  .hero-data-card {
    min-width: 166px;
    padding: 0.72rem 0.82rem;
    gap: 0.62rem;
  }
  .hero-data-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
  }
  .hero-data-copy span {
    font-size: 0.7rem;
  }
  .hero-data-copy strong {
    font-size: 1.62rem;
  }
  .hero-data-copy em,
  .hero-data-copy small {
    font-size: 0.64rem;
  }
  .hero-data-card--activity {
    left: 7%;
    top: 9%;
  }
  .hero-data-card--social {
    right: 7%;
    top: 8%;
  }
  .hero-data-card--play {
    right: 7%;
    bottom: 11%;
  }
}
@media (max-width: 1060px) {
  .hero {
    background:
      radial-gradient(ellipse at 50% 18%, rgba(var(--mint-rgb), .12), transparent 42%),
      linear-gradient(180deg,
        #ffffff 0%,
        #f8fbfa 56%,
        #eef7f5 100%),
      #f8fbfa !important;
  }
  .hero-inner {
    width: min(720px, calc(100% - 32px)) !important;
  }
  .hero-visual {
    width: min(720px, 100%) !important;
    aspect-ratio: 4 / 3 !important;
    border-radius: 18px !important;
    margin-top: 1.8rem !important;
  }
  .hero-visual img {
    object-position: center center !important;
  }
  .hero-data-card {
    min-width: 154px;
    padding: 0.66rem 0.74rem;
    gap: 0.52rem;
    border-radius: 8px;
  }
  .hero-data-icon {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .hero-data-copy span {
    font-size: 0.66rem;
  }
  .hero-data-copy strong {
    font-size: 1.45rem;
  }
  .hero-data-copy em,
  .hero-data-copy small {
    font-size: 0.6rem;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: auto !important;
    padding: 6rem 1rem 2.5rem !important;
    align-items: center !important;
  }
  .hero-inner {
    width: 100% !important;
    min-height: 0 !important;
    padding: 0 !important;
    justify-content: center !important;
  }
  .hero-visual {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    aspect-ratio: 1.12 / 1 !important;
    margin-top: 1.65rem !important;
    border-radius: 16px !important;
  }
  .hero-visual img {
    width: 102% !important;
    height: 102% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    transform: translate(-1%, -1%) !important;
  }
  .hero-data-card {
    min-width: 118px;
    padding: 0.46rem 0.52rem;
    gap: 0.34rem;
  }
  .hero-data-card--activity {
    left: 5%;
    top: 7%;
  }
  .hero-data-card--social {
    right: 4%;
    top: 4%;
  }
  .hero-data-card--play {
    display: none;
  }
  .hero-data-icon {
    width: 22px;
    height: 22px;
    flex-basis: 22px;
  }
  .hero-data-copy span {
    font-size: 0.5rem;
  }
  .hero-data-copy strong {
    font-size: 1rem;
  }
  .hero-data-copy em,
  .hero-data-copy small {
    font-size: 0.48rem;
  }
}

/* Final StoryLine page refinements */
.hero {
  background: #ffffff !important;
}
.hero::before,
.hero::after {
  display: none !important;
}
.hero-foot {
  border: 0 !important;
  box-shadow: none !important;
}
.hero-actions .btn-primary {
  height: 48px !important;
  min-height: 48px !important;
  padding: 0 1.5rem !important;
  border-radius: 8px !important;
  background: var(--mint) !important;
  border-color: var(--mint) !important;
  color: #ffffff !important;
  box-shadow: none !important;
  font-size: .88rem !important;
  font-weight: 800 !important;
  letter-spacing: .05em !important;
}
.hero-actions .btn-primary:hover {
  background: var(--mint-hover) !important;
  border-color: var(--mint-hover) !important;
  color: #ffffff !important;
}
.section.dataset,
.section.dataset::before,
.section.dataset::after {
  background: #ffffff !important;
}
.section.dataset::before,
.section.dataset::after {
  opacity: 0 !important;
}
.section.dataset .dataset-header,
.section.dataset .dataset-showcase {
  opacity: 1 !important;
  transform: none !important;
}
.section.dataset .dataset-header h2 {
  color: #101714 !important;
}
.section.dataset .dataset-header .lead {
  color: rgba(16,23,20,.68) !important;
}
@media (min-width: 1061px) {
  .hero {
    grid-template-columns: minmax(420px, 510px) minmax(720px, 900px) !important;
    column-gap: clamp(2rem, 3vw, 4rem) !important;
    justify-content: center !important;
    background: #ffffff !important;
    padding-left: clamp(4rem, 7vw, 7.5rem) !important;
    padding-right: clamp(2rem, 4vw, 4rem) !important;
  }
  .hero-inner {
    max-width: 510px !important;
    transform: translateY(-8px) !important;
  }
  .hero h1 {
    max-width: 510px !important;
    font-size: clamp(3.35rem, 4.15vw, 4.55rem) !important;
    line-height: 1.02 !important;
  }
  .hero h1 em {
    display: block !important;
  }
  .hero-visual {
    justify-self: end !important;
    width: min(860px, 50vw) !important;
    max-width: none !important;
    aspect-ratio: 1.58 / 1 !important;
    margin-right: 0 !important;
    transform: none !important;
  }
  .hero-visual img {
    object-position: 55% center !important;
    transform: translate(-1%, -1%) scale(1.01) !important;
  }
}
@media (max-width: 1060px) {
  .hero {
    background: #ffffff !important;
  }
  .hero-foot {
    border: 0 !important;
    box-shadow: none !important;
  }
}

body.pt-storyline-ko .hero-trust {
    max-width: 300px !important;
    line-height: 1.18 !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }
  body.pt-storyline-ko .hero-trust .pt-trust-line {
    display: block !important;
    white-space: nowrap !important;
  }
  .pt-mobile-break {
    display: none;
  }
  body.pt-storyline-ko .hero h1 {
    font-size: clamp(3.05rem, 3.85vw, 4.15rem) !important;
    line-height: 1.13 !important;
  }
  body.pt-storyline-ko .hero h1 em {
    white-space: nowrap !important;
  }
  @media (max-width: 760px) {
    body.pt-storyline-ko .hero h1 {
      font-size: clamp(2.35rem, 10.4vw, 2.62rem) !important;
      line-height: 1.08 !important;
      max-width: min(100%, 355px) !important;
      overflow: visible !important;
    }
    body.pt-storyline-ko .hero h1 em {
      white-space: nowrap !important;
      word-break: keep-all !important;
      overflow-wrap: normal !important;
      line-break: strict !important;
    }
  }
  @media (max-width: 374px) {
    body.pt-storyline-ko .hero h1 {
      font-size: clamp(2.22rem, 10vw, 2.42rem) !important;
      max-width: 330px !important;
    }
  }
  html[lang="ko"] .why-title,
  html[lang="ko"] .dataset-header h2,
  html[lang="ko"] .section-centered-header h2,
  html[lang="ko"] .insights-header h2,
  html[lang="ko"] .stats-header .section-title,
  html[lang="ko"] .testimonials-header .section-title,
  html[lang="ko"] .px-cta-banner .px-h2 {
    line-height: 1.18 !important;
  }
  html[lang="ko"] #cta .px-cta-banner .px-h2 {
    line-height: 1.24 !important;
  }
  html[lang="ko"] #cta .pt-cta-nowrap {
    white-space: nowrap !important;
  }
  html[lang="ko"] .hero-sub,
  html[lang="ko"] .why-header .section-subtitle,
  html[lang="ko"] .why-card p,
  html[lang="ko"] .dataset-header .lead,
  html[lang="ko"] .dataset-stat-block p,
  html[lang="ko"] .pipeline .section-centered-header .lead,
  html[lang="ko"] .insights-header h2,
  html[lang="ko"] .stats-header .section-title,
  html[lang="ko"] .stats-sub,
  html[lang="ko"] .stats-section .stat-label,
  html[lang="ko"] .stats-section .stat-desc,
  html[lang="ko"] .insights-privacy-text p,
  html[lang="ko"] #cta .px-cta-banner .px-h2 {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict !important;
    hyphens: none !important;
  }
  html[lang="ko"] .dataset-badge {
    justify-content: center !important;
    text-align: center !important;
  }
  @media (max-width: 760px) {
    .pt-desktop-break {
      display: none !important;
    }
    .pt-mobile-break {
      display: block !important;
    }
    html[lang="ko"] .insights-header h2 {
      font-size: clamp(2rem, 8.15vw, 2.58rem) !important;
    }
    html[lang="ko"] .why-card:nth-child(2) p {
      font-size: 0.88rem !important;
    }
    html[lang="ko"] #cta .px-cta-banner .px-h2 {
      font-size: clamp(1.86rem, 7.55vw, 2.02rem) !important;
    }
  }
  @media (max-width: 374px) {
    html[lang="ko"] .insights-header h2 {
      font-size: 1.9rem !important;
    }
    html[lang="ko"] #cta .px-cta-banner .px-h2 {
      font-size: 1.76rem !important;
    }
  }
  .pipeline-rail {
    align-items: stretch !important;
  }
  .pipeline-node {
    height: 100% !important;
  }
  .pipeline-node > div {
    flex: 1 1 auto !important;
  }
  .pipeline-node .time-chip {
    margin-top: 20px !important;
  }
  body.pt-storyline-ko .stat-desc .pt-nowrap-line {
    display: block !important;
    white-space: nowrap !important;
  }
  body.pt-storyline-ko .tc-quote {
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    line-break: strict !important;
    hyphens: none !important;
    text-wrap: pretty;
  }
  @media (max-width: 760px) {
    body.pt-storyline-ko .testimonial-card {
      flex-basis: calc(100vw - 40px) !important;
      padding: 1.35rem !important;
    }
    body.pt-storyline-ko .tc-quote {
      font-size: clamp(0.98rem, 4vw, 1.08rem) !important;
      line-height: 1.62 !important;
    }
  }

/* Page rhythm: match section gutters with the PLAYTAG homepage */
:root {
  --max: 1180px;
  --section-gutter: 20px;
}

.section > .container,
section > .container,
.why-section .container,
.stats-section .container,
.testimonials-section .container,
.demo-section .container,
.pipeline .container {
  width: min(var(--max), calc(100% - (var(--section-gutter) * 2))) !important;
  max-width: none !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

@media (max-width: 760px) {
  :root {
    --section-gutter: 16px;
  }
}


.hero .hero-inner,
.hero .hero-content {
  position: relative !important;
  z-index: 20 !important;
  pointer-events: auto !important;
  visibility: visible !important;
}
.hero .hero-foot,
.hero h1,
.hero h1 em,
.hero .hero-sub,
.hero .hero-actions,
.hero .hero-actions .btn-primary,
.hero .hero-actions .btn-outline,
.hero .hero-visual,
.hero .hero-visual img,
.hero .hero-data-card {
  visibility: visible !important;
  filter: none !important;
  animation-fill-mode: both !important;
}
.hero .hero-foot {
  animation: ptHeroQuickFade .42s cubic-bezier(.16,1,.3,1) .02s both !important;
}
.hero h1,
.hero h1 em {
  display: block !important;
  color: #101714 !important;
  -webkit-text-fill-color: #101714 !important;
  text-shadow: none !important;
  animation: ptHeroQuickHeadline .56s cubic-bezier(.16,1,.3,1) .10s both !important;
}
.hero .hero-visual {
  animation: ptHeroQuickImage .56s cubic-bezier(.16,1,.3,1) .10s both !important;
}
.hero .hero-visual img {
  animation: none !important;
}
.hero .hero-data-card {
  animation: ptHeroQuickCard .52s cubic-bezier(.16,1,.3,1) .12s both !important;
}
.hero:not(.hero-media-ready) .hero-visual,
.hero:not(.hero-media-ready) .hero-data-card {
  opacity: 0 !important;
  animation: none !important;
}
.hero.hero-media-ready .hero-visual {
  animation: ptHeroQuickImage .46s cubic-bezier(.16,1,.3,1) 0s both !important;
}
.hero.hero-media-ready .hero-data-card {
  animation: ptHeroQuickCard .46s cubic-bezier(.16,1,.3,1) .02s both !important;
}
.hero .hero-sub {
  display: block !important;
  color: rgba(16,23,20,.72) !important;
  -webkit-text-fill-color: rgba(16,23,20,.72) !important;
  animation: ptHeroQuickFade .46s cubic-bezier(.16,1,.3,1) .18s both !important;
}
.hero .hero-actions {
  display: flex !important;
  animation: ptHeroQuickFade .46s cubic-bezier(.16,1,.3,1) .26s both !important;
}
@keyframes ptHeroQuickFade {
  from { opacity: .01; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ptHeroQuickHeadline {
  from { opacity: .01; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes ptHeroQuickImage {
  from { opacity: .01; }
  to { opacity: 1; }
}
@keyframes ptHeroQuickCard {
  from { opacity: .01; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-foot,
  .hero h1,
  .hero h1 em,
  .hero .hero-sub,
  .hero .hero-actions,
  .hero .hero-visual,
  .hero .hero-visual img,
  .hero .hero-data-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

.site-header {
  background: rgba(255,255,255,.74) !important;
  border-bottom: 1px solid rgba(15,23,42,.08) !important;
  box-shadow: 0 10px 30px rgba(15,23,42,.07) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
  transition: transform .32s ease, background .22s ease, border-color .22s ease, box-shadow .22s ease, backdrop-filter .22s ease !important;
}
.site-header.header-hidden {
  transform: none !important;
}
.site-header.header-on-hero {
  background: transparent !important;
  border-bottom-color: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}
.site-header .pt-logo-img,
.site-header.header-on-hero .pt-logo-img {
  filter: none !important;
}
.site-header .pt-nav-link,
.site-header.header-on-hero .pt-nav-link {
  color: rgba(10,15,14,.88) !important;
}
.site-header .pt-nav-item:hover .pt-nav-link,
.site-header.header-on-hero .pt-nav-item:hover .pt-nav-link {
  color: var(--mint-dim, #16c79a) !important;
}
.site-header .pt-lang-toggle,
.site-header.header-on-hero .pt-lang-toggle {
  border-color: rgba(15,23,42,.18) !important;
  background: rgba(255,255,255,.54) !important;
}
.site-header .pt-lang-btn,
.site-header.header-on-hero .pt-lang-btn {
  color: rgba(15,23,42,.62) !important;
}
.site-header .pt-lang-btn.active,
.site-header.header-on-hero .pt-lang-btn.active {
  background: #111827 !important;
  color: #fff !important;
}
.site-header .pt-hamburger span,
.site-header.header-on-hero .pt-hamburger span {
  background: #101714 !important;
}
.pt-mobile-menu.open {
  background: rgba(255,255,255,.96) !important;
  backdrop-filter: blur(16px) saturate(140%) !important;
  -webkit-backdrop-filter: blur(16px) saturate(140%) !important;
}

.site-header .pt-nav-actions {
  display: flex !important;
  align-items: center !important;
  gap: 0.65rem !important;
  margin-left: auto !important;
  flex-shrink: 0 !important;
}
.site-header .pt-lang-toggle,
.site-header.header-on-hero .pt-lang-toggle {
  display: flex !important;
  align-items: center !important;
  height: 34px !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: rgba(255,255,255,.72) !important;
  box-shadow: none !important;
}
.site-header .pt-lang-btn,
.site-header.header-on-hero .pt-lang-btn {
  height: 100% !important;
  padding: 0 0.85rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #9ca3af !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  cursor: pointer !important;
  box-shadow: none !important;
}
.site-header .pt-lang-btn.active,
.site-header.header-on-hero .pt-lang-btn.active {
  background: #1a1a1a !important;
  color: #fff !important;
  border-radius: 6px !important;
}
.site-header .pt-btn-demo,
.site-header.header-on-hero .pt-btn-demo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 38px !important;
  min-height: 38px !important;
  padding: 0 1.25rem !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #00D9A8 !important;
  color: #fff !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  letter-spacing: 0.05em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
  box-shadow: none !important;
}
.site-header .pt-btn-demo:hover,
.site-header.header-on-hero .pt-btn-demo:hover {
  background: #00C99B !important;
  color: #fff !important;
  transform: translateY(-1px) !important;
}
.pt-mm-demo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 46px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #00D9A8 !important;
  color: #fff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.04em !important;
  text-decoration: none !important;
}
.pt-mm-lang {
  display: flex !important;
  width: fit-content !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  background: #fff !important;
}
.pt-mm-lang button {
  padding: 0.45rem 1.1rem !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #555 !important;
  font-size: 0.8rem !important;
  cursor: pointer !important;
}
.pt-mm-lang button.active {
  background: #00D9A8 !important;
  color: #fff !important;
  border-radius: 6px !important;
}
@media (max-width: 900px) {
  .site-header .pt-nav-actions { display: none !important; }
}
