@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:wght@300;400;500;600;700;800;900&display=swap');*,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --white: #ffffff;
      --bg: #f6f6f7;
      --bg2: #eeeeef;
      --surface: #ffffff;
      --surface2: #f9f9fa;
      --border: rgba(0, 0, 0, .08);
      --border2: rgba(0, 0, 0, .12);
      --border3: rgba(0, 0, 0, .18);
      --purple: #5E6AD2;
      --purple-dark: #4a57c0;
      --purple-light: #7b87e8;
      --purple-bg: rgba(94, 106, 210, .08);
      --purple-border: rgba(94, 106, 210, .2);
      --green: #16a34a;
      --green-bg: rgba(22, 163, 74, .08);
      --red: #dc2626;
      --red-bg: rgba(220, 38, 38, .07);
      --yellow: #2563eb;
      --yellow-bg: rgba(37, 99, 235, .08);
      --blue: #1D4ED8;
      --blue-dark: #1E3A8A;
      --blue-500: #3B82F6;
      --blue-600: #2563EB;
      --blue-700: #1D4ED8;
      --blue-800: #1E40AF;
      --blue-900: #1E3A8A;
      --blue-bg: rgba(37, 99, 235, .08);
      --bk-ink: #0F0F0F;
      --bk-cool:#101418;
      --orange: #1d4ed8;
      --text-1: #0d0d0e;
      --text-2: rgba(13, 13, 14, .58);
      --text-3: rgba(13, 13, 14, .38);
      --text-4: rgba(13, 13, 14, .22);
      --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
      --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .05);
      --shadow-lg: 0 12px 40px rgba(0, 0, 0, .10), 0 4px 12px rgba(0, 0, 0, .06);
      --shadow-xl: 0 24px 64px rgba(0, 0, 0, .12), 0 8px 24px rgba(0, 0, 0, .07);
      --font: 'Noto Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      --mono: 'SF Mono', 'Fira Code', 'Consolas', monospace;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: var(--font);
      background: var(--white);
      color: var(--text-1);
      overflow-x: clip;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.5;
    }

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

    button {
      cursor: pointer;
      font-family: var(--font);
    }

    ::-webkit-scrollbar {
      width: 5px;
    }

    ::-webkit-scrollbar-track {
      background: transparent;
    }

    ::-webkit-scrollbar-thumb {
      background: rgba(0, 0, 0, .15);
      border-radius: 10px;
    }

    /* ──────────────── NAV ──────────────── */
    .nav {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 300;
      height: 52px;
      background: rgba(255, 255, 255, .88);
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      border-bottom: 1px solid var(--border);
    }

    .nav-inner {
      max-width: 1240px;
      margin: 0 auto;
      padding: 0 20px;
      height: 100%;
      display: flex;
      align-items: center;
    }

    .nav-logo {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-right: 28px;
      flex-shrink: 0;
    }

    .nav-logo-icon {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: conic-gradient(from 225deg at 50% 50%, #3633ec 0%, #3863ee 30%, #19f0ff 55%, #067ddf 80%, #4a4cec 100%);
    }

    .nav-logo-text {
      font-size: 18px;
      font-weight: 700;
      color: #0d0d0e;
      letter-spacing: -.025em;
    }

    .nav-links {
      display: flex;
      align-items: center;
      flex: 1;
    }

    .nav-link {
      font-size: 13px;
      color: var(--text-2);
      padding: 5px 11px;
      border-radius: 5px;
      transition: color .12s, background .12s;
      white-space: nowrap;
      display: flex;
      align-items: center;
      gap: 3px;
    }

    .nav-link:hover {
      color: var(--text-1);
      background: rgba(0, 0, 0, .04);
    }

    .nav-link svg {
      opacity: .4;
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 1px;
      margin-left: auto;
    }

    .nav-btn-text {
      font-size: 13px;
      color: var(--text-2);
      padding: 5px 11px;
      border-radius: 5px;
      background: none;
      border: none;
      cursor: pointer;
      transition: color .12s, background .12s;
    }

    .nav-btn-text:hover {
      color: var(--text-1);
      background: rgba(0, 0, 0, .04);
    }

    .nav-divider {
      width: 1px;
      height: 16px;
      background: var(--border2);
      margin: 0 4px;
    }

    .nav-btn-signup {
      font-size: 13px;
      font-weight: 600;
      color: #fff;
      background: var(--blue);
      border: none;
      padding: 5px 14px;
      border-radius: 6px;
      cursor: pointer;
      transition: background .15s, transform .1s;
    }

    .nav-btn-signup:hover {
      background: var(--blue-dark);
      transform: translateY(-1px);
    }

    /* ──────────────── HERO ──────────────── */

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

    33% {
      transform: translate(80px, 60px) scale(1.12);
    }

    66% {
      transform: translate(-40px, 100px) scale(0.92);
    }
    }

    @keyframes blob-drift-2 {0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    33% {
      transform: translate(-100px, 80px) scale(1.08);
    }

    66% {
      transform: translate(60px, -60px) scale(1.14);
    }
    }

    @keyframes blob-drift-3 {0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    33% {
      transform: translate(60px, -80px) scale(0.88);
    }

    66% {
      transform: translate(-80px, 40px) scale(1.1);
    }
    }

    @keyframes blob-drift-4 {0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    33% {
      transform: translate(-60px, -50px) scale(1.06);
    }

    66% {
      transform: translate(90px, 70px) scale(0.94);
    }
    }

    @keyframes blob-drift-5 {0%,
    100% {
      transform: translate(0, 0) scale(1);
    }

    50% {
      transform: translate(70px, -90px) scale(1.1);
    }
    }

    .hero-blob {
      position: absolute;
      border-radius: 50%;
      filter: blur(90px);
      opacity: 0;
      pointer-events: none;
      z-index: 0;
      animation-timing-function: ease-in-out;
      animation-iteration-count: infinite;
    }

    /* ── Supernova style: 블루 중앙 블롭 ── */
    .hero-blob-1 {
      width: 920px;
      height: 580px;
      background: radial-gradient(ellipse at 50% 40%,
          rgba(37, 99, 235, .38) 0%,
          rgba(59, 130, 246, .22) 40%,
          rgba(96, 165, 250, .1) 65%,
          transparent 82%);
      top: -100px;
      left: 50%;
      transform: translateX(-50%);
      opacity: .9;
      filter: blur(72px);
      animation: blob-drift-5 22s ease-in-out infinite;
    }

    .hero-blob-2 {
      width: 520px;
      height: 420px;
      background: radial-gradient(ellipse at center,
          rgba(29, 78, 216, .32),
          rgba(37, 99, 235, .16) 55%,
          transparent 80%);
      top: 0;
      left: -60px;
      opacity: .65;
      animation: blob-drift-1 28s ease-in-out infinite;
    }

    .hero-blob-3 {
      width: 480px;
      height: 360px;
      background: radial-gradient(ellipse at center,
          rgba(59, 130, 246, .26),
          rgba(96, 165, 250, .14) 55%,
          transparent 80%);
      top: 8%;
      right: -60px;
      opacity: .55;
      animation: blob-drift-2 24s ease-in-out infinite;
    }

    .hero-blob-4 {
      width: 600px;
      height: 280px;
      background: radial-gradient(ellipse at center,
          rgba(37, 99, 235, .18),
          rgba(59, 130, 246, .08) 60%,
          transparent 85%);
      top: 42%;
      left: 25%;
      opacity: .5;
      animation: blob-drift-4 30s ease-in-out infinite;
    }

    .hero-blob-5 {
      width: 340px;
      height: 340px;
      background: radial-gradient(circle,
          rgba(96, 165, 250, .22),
          rgba(59, 130, 246, .1));
      bottom: 15%;
      right: 15%;
      opacity: .45;
      animation: blob-drift-3 20s ease-in-out infinite;
    }

    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding: 140px 24px 80px;
      overflow: visible;
      background: linear-gradient(180deg, #eaeff8 0%, #f0f5fb 45%, #f7f9fe 70%, #fff 100%);
    }

    /* ── Supernova style: 동심원 호 라인 ── */
    .hero-rings {
      position: absolute;
      top: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: min(1500px, 110vw);
      height: 860px;
      pointer-events: none;
      z-index: 0;
      overflow: visible;
    }

    /* subtle grid */
    .hero::before {
      content: '';
      position: absolute;
      inset: 0;
      z-index: 0;
      background-image:
        linear-gradient(rgba(79, 70, 229, .025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(79, 70, 229, .025) 1px, transparent 1px);
      background-size: 44px 44px;
      mask-image: radial-gradient(ellipse 90% 55% at 50% 18%, black 25%, transparent 100%);
    }

    /* purple glow */
    .hero-glow {
      position: absolute;
      top: -60px;
      left: 50%;
      transform: translateX(-50%);
      width: 800px;
      height: 600px;
      background: radial-gradient(ellipse at center, rgba(37, 99, 235, .12) 0%, rgba(59, 130, 246, .05) 40%, transparent 70%);
      pointer-events: none;
      z-index: 0;
    }

    .hero-beam {
      position: absolute;
      top: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 1px;
      height: 380px;
      background: linear-gradient(to bottom, transparent, rgba(94, 106, 210, .35) 35%, rgba(94, 106, 210, .12) 60%, transparent);
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      max-width: 780px;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border2);
      border-radius: 100px;
      padding: 5px 14px 5px 10px;
      font-size: 12.5px;
      color: var(--text-2);
      margin-bottom: 32px;
      cursor: pointer;
      transition: border-color .15s, box-shadow .15s;
      box-shadow: var(--shadow-sm);
      text-decoration: none;
    }

    .hero-badge:hover {
      border-color: var(--purple);
      box-shadow: 0 0 0 3px var(--purple-bg);
    }

    .hero-badge-dot {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      flex-shrink: 0;
      background: conic-gradient(from 225deg, #3633ec 0%, #3863ee 30%, #19f0ff 55%, #067ddf 80%, #4a4cec 100%);
    }

    .hero-badge-label {
      color: var(--blue);
      font-weight: 600;
    }

    .hero-h1 {
      font-size: clamp(34px, 5.5vw, 64px);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.07;
      color: var(--text-1);
      margin-bottom: 22px;
    }

    .hero-h1 em {
      font-style: normal;
      color: var(--text-3);
    }

    .hero-h1-sub {
      display: block;
      margin-bottom: 8px;
      font-size: clamp(22px, 2.6vw, 36px);
      font-weight: 760;
      font-style: normal;
      line-height: 1.25;
      letter-spacing: -.035em;
      color: rgba(15, 23, 42, .72);
    }

    .hero-h1-accent {
      display: inline-block;
      font-style: normal;
      color: var(--blue-700);
      background: linear-gradient(90deg, var(--blue-900), var(--blue-600), #19f0ff);
      -webkit-background-clip: text;
      background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-sub {
      font-size: clamp(15px, 1.8vw, 17.5px);
      color: var(--text-2);
      line-height: 1.65;
      max-width: 600px;
      margin-bottom: 32px;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--text-1);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 10px 22px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background .15s, transform .12s, box-shadow .15s;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(13, 13, 14, .2);
    }

    .hero-cta:hover {
      background: #1a1a1b;
      transform: translateY(-1px);
      box-shadow: 0 4px 16px rgba(13, 13, 14, .25);
    }

    .hero-cta-arrow {
      font-size: 16px;
      transition: transform .15s;
    }

    .hero-cta:hover .hero-cta-arrow {
      transform: translateX(3px);
    }

    .hero-hint {
      font-size: 12px;
      color: var(--text-3);
      margin-top: 12px;
    }

    /* 히어로 버튼 그룹 */
    .hero-cta-group {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: center;
    }

    /* 라인(아웃라인) 버튼 */
    .hero-cta-outline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: transparent;
      color: var(--text-1);
      font-size: 14px;
      font-weight: 600;
      font-family: var(--font);
      padding: 10px 22px;
      border-radius: 8px;
      border: 1.5px solid var(--border3);
      cursor: pointer;
      text-decoration: none;
      transition: border-color .15s, background .15s, color .15s, transform .12s;
    }

    .hero-cta-outline:hover {
      border-color: var(--text-1);
      background: rgba(13, 13, 14, .04);
      transform: translateY(-1px);
    }

    /* hero app window */
    .hero-mockup {
      position: relative;
      z-index: 1;
      width: 100%;
      max-width: 1000px;
      margin-top: 60px;
    }

    .hero-window {
      width: 100%;
      background: #fff;
      border: 1px solid var(--border2);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }

    .hero-window-bar {
      background: var(--bg);
      padding: 11px 14px;
      display: flex;
      align-items: center;
      gap: 6px;
      border-bottom: 1px solid var(--border);
    }

    .dot {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      flex-shrink: 0;
    }

    .dot-r {
      background: #FF5F57;
    }

    .dot-y {
      background: #FEBC2E;
    }

    .dot-g {
      background: #28C840;
    }

    .win-tabs {
      display: flex;
      align-items: center;
      gap: 1px;
      margin-left: 10px;
    }

    .win-tab {
      font-size: 11.5px;
      color: var(--text-3);
      padding: 3px 10px;
      border-radius: 4px;
      border: 1px solid transparent;
    }

    .win-tab.active {
      color: var(--text-1);
      background: #fff;
      border-color: var(--border2);
      box-shadow: var(--shadow-sm);
    }

    /* issue detail */
    .issue-detail {
      display: grid;
      grid-template-columns: 1fr 240px;
      min-height: 400px;
    }

    .issue-main {
      padding: 28px 30px;
      border-right: 1px solid var(--border);
    }

    .issue-breadcrumb {
      font-size: 11.5px;
      color: var(--text-3);
      display: flex;
      align-items: center;
      gap: 5px;
      margin-bottom: 16px;
    }

    .issue-id-badge {
      font-size: 11px;
      font-family: var(--mono);
      color: var(--text-3);
      background: var(--bg2);
      padding: 2px 7px;
      border-radius: 4px;
      border: 1px solid var(--border);
    }

    .issue-title {
      font-size: 19px;
      font-weight: 700;
      letter-spacing: -.025em;
      color: var(--text-1);
      margin-bottom: 10px;
    }

    .issue-meta {
      display: flex;
      align-items: center;
      gap: 7px;
      margin-bottom: 18px;
      flex-wrap: wrap;
    }

    .issue-tag {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 9px;
      border-radius: 20px;
      border: 1px solid;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .tag-inprogress {
      color: #2563eb;
      border-color: rgba(37, 99, 235, .2);
      background: rgba(37, 99, 235, .06);
    }

    .tag-high {
      color: #dc2626;
      border-color: rgba(220, 38, 38, .2);
      background: rgba(220, 38, 38, .06);
    }

    .tag-perf {
      color: #7c3aed;
      border-color: rgba(124, 58, 237, .18);
      background: rgba(124, 58, 237, .05);
    }

    .tag-ios {
      color: #059669;
      border-color: rgba(5, 150, 105, .18);
      background: rgba(5, 150, 105, .05);
    }

    .issue-desc {
      font-size: 12px;
      color: var(--text-2);
      line-height: 1.65;
      margin-bottom: 22px;
      padding: 12px 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: var(--mono);
    }

    .activity-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      padding: 9px 0;
      border-top: 1px solid var(--border);
    }

    .activity-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
    }

    .av-k {
      background: linear-gradient(135deg, #5E6AD2, #8B95F0);
    }

    .av-codex {
      background: linear-gradient(135deg, #059669, #34d399);
    }

    .activity-text {
      font-size: 12.5px;
      color: var(--text-2);
      line-height: 1.5;
    }

    .activity-text strong {
      color: var(--text-1);
      font-weight: 600;
    }

    .activity-time {
      font-size: 11px;
      color: var(--text-3);
      margin-left: auto;
      flex-shrink: 0;
    }

    .agent-badge {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 10.5px;
      font-weight: 600;
      color: var(--green);
      background: var(--green-bg);
      border: 1px solid rgba(22, 163, 74, .2);
      padding: 1px 6px;
      border-radius: 4px;
    }

    .agent-badge-dot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--green);
      animation: pulse-dot 2s infinite;
    }

    @keyframes pulse-dot {0%,100%{opacity:1;}50%{opacity:.35;}}

    /* issue sidebar */
    .issue-sidebar {
      padding: 22px 18px;
      background: var(--bg);
    }

    .sidebar-label {
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 9px;
    }

    .sidebar-section {
      margin-bottom: 20px;
    }

    .sidebar-row {
      display: flex;
      align-items: center;
      gap: 7px;
      font-size: 12.5px;
      color: var(--text-2);
      padding: 3px 0;
    }

    .sidebar-assign {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: linear-gradient(135deg, #5E6AD2, #8B95F0);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    /* ──────────────── SECTIONS ──────────────── */
    section {
      padding: 120px 24px;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
    }

    .section-label {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--purple);
      margin-bottom: 14px;
    }

    .section-label-num {
      color: var(--text-3);
      font-weight: 400;
    }

    .section-h2 {
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 800;
      letter-spacing: -.04em;
      line-height: 1.1;
      color: var(--text-1);
      margin-bottom: 14px;
    }

    .section-h2 em {
      font-style: normal;
      color: var(--text-3);
    }

    .section-sub {
      font-size: clamp(14px, 1.5vw, 16px);
      color: var(--text-2);
      line-height: 1.65;
      max-width: 520px;
      margin-bottom: 16px;
    }

    .section-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-2);
      border: 1px solid var(--border2);
      background: var(--white);
      padding: 7px 16px;
      border-radius: 6px;
      transition: color .15s, border-color .15s, box-shadow .15s;
      margin-top: 6px;
      box-shadow: var(--shadow-sm);
    }

    .section-cta:hover {
      color: var(--text-1);
      border-color: var(--purple);
      box-shadow: 0 0 0 3px var(--purple-bg);
    }

    .section-cta-version {
      font-size: 11px;
      font-weight: 700;
      color: var(--purple);
      background: var(--purple-bg);
      padding: 1px 6px;
      border-radius: 3px;
    }

    /* ──────────────── SPECIES ──────────────── */
    .species {
      padding: 80px 24px;
    }

    .species-header {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 52px;
    }

    .species-tagline {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 12px;
    }

    .species-h2 {
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      letter-spacing: -.035em;
      line-height: 1.15;
      color: var(--text-1);
      margin-bottom: 14px;
    }

    .species-sub {
      font-size: 15.5px;
      color: var(--text-2);
      line-height: 1.65;
    }

    .species-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border2);
      border-radius: 16px;
      overflow: hidden;
      max-width: 960px;
      margin: 0 auto;
      box-shadow: var(--shadow-md);
    }

    .species-card {
      background: var(--white);
      padding: 32px 26px;
      transition: background .15s;
    }

    .species-card:hover {
      background: var(--bg);
    }

    .species-card-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: var(--purple-bg);
      border: 1px solid var(--purple-border);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 18px;
      font-size: 17px;
    }

    .species-card-title {
      font-size: 15px;
      font-weight: 700;
      color: var(--text-1);
      margin-bottom: 8px;
      letter-spacing: -.02em;
    }

    .species-card-desc {
      font-size: 13.5px;
      color: var(--text-2);
      line-height: 1.6;
    }

    /* ──────────────── ANCHOR INSIDE TABS ──────────────── */
    .anchor-inside {
      position: relative;
      padding-top: 92px;
      padding-left: 0;
      padding-right: 0;
      background:
        radial-gradient(ellipse 70% 40% at 50% 0%, rgba(37, 99, 235, .08), transparent 70%),
        linear-gradient(180deg, #fff 0%, #f8f9fb 100%);
    }

    .inside-shell {
      max-width: 1440px;
      margin: 0 auto;
      border: 1px solid var(--border2);
      border-radius: 20px;
      background: rgba(255, 255, 255, .78);
      box-shadow: var(--shadow-xl);
      overflow: hidden;
      backdrop-filter: blur(16px);
    }

    .inside-tabs {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 12px;
      background: rgba(246, 246, 247, .82);
      border-bottom: 1px solid var(--border);
      overflow-x: auto;
    }

    .inside-tab {
      border: 1px solid transparent;
      background: transparent;
      color: var(--text-2);
      font-size: 12.5px;
      font-weight: 700;
      padding: 8px 14px;
      border-radius: 999px;
      white-space: nowrap;
      transition: background .16s, color .16s, border-color .16s, box-shadow .16s;
    }

    .inside-tab:hover {
      color: var(--text-1);
      background: rgba(0, 0, 0, .04);
    }

    .inside-tab.active {
      color: #fff;
      background: var(--bk-cool);
      border-color: rgba(29, 78, 216, .18);
      box-shadow: 0 8px 12px rgba(87, 97, 129, 0.18);
    }

    .inside-stage {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 480px;
      gap: 24px;
      padding: 36px 36px 32px 40px;
      border-bottom: 1px solid var(--border);
      background:
        linear-gradient(135deg, rgba(37, 99, 235, .055), transparent 45%),
        #fff;
      transition: background .3s ease;
    }

    .inside-summary,
    .inside-preview {
      transition: opacity .2s ease, transform .2s ease;
    }

    .inside-stage.is-switching .inside-summary,
    .inside-stage.is-switching .inside-preview {
      opacity: 0;
      transform: translateY(6px);
    }

    .summary-kicker {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .summary-kicker::before {
      content: '';
      width: 7px;
      height: 7px;
      border-radius: 999px;
      background: var(--blue);
      box-shadow: 0 0 0 5px var(--blue-bg);
    }

    .inside-summary h3 {
      font-size: clamp(22px, 3vw, 34px);
      line-height: 1.18;
      letter-spacing: -.045em;
      margin-bottom: 12px;
      color: var(--text-1);
    }

    .inside-summary p {
      max-width: 560px;
      font-size: 14px;
      line-height: 1.7;
      color: var(--text-2);
    }

    .summary-flow {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 9px;
      margin-top: 24px;
    }

    .summary-flow span {
      font-size: 12px;
      font-weight: 700;
      color: var(--text-2);
      background: var(--white);
      border: 1px solid var(--border2);
      border-radius: 999px;
      padding: 6px 11px;
      box-shadow: var(--shadow-sm);
    }

    .summary-flow i {
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, rgba(37, 99, 235, .2), rgba(37, 99, 235, .65));
    }

    .inside-preview {
      position: relative;
      min-height: 230px;
      /* 카드들이 잘리지 않도록 여유 확보 */
      overflow: visible;
    }

    .preview-card {
      position: absolute;
      width: 210px;
      padding: 16px 18px 14px;
      background: #fff;
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 16px;
      box-shadow:
        0 2px 4px rgba(0,0,0,.04),
        0 8px 24px rgba(0,0,0,.09),
        0 1px 2px rgba(255,255,255,.9) inset;
      animation: float-card 5.5s ease-in-out infinite;
      transition: box-shadow .2s;
    }

    .preview-card:hover {
      box-shadow:
        0 4px 8px rgba(0,0,0,.06),
        0 16px 36px rgba(0,0,0,.13),
        0 1px 2px rgba(255,255,255,.9) inset;
    }

    .preview-card span {
      display: block;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .03em;
      text-transform: uppercase;
      color: var(--text-3);
      margin-bottom: 6px;
    }

    .preview-card strong {
      display: block;
      font-size: 26px;
      line-height: 1;
      letter-spacing: -.04em;
      color: var(--text-1);
      margin-bottom: 10px;
    }

    .preview-card em {
      display: inline-flex;
      font-style: normal;
      font-size: 10.5px;
      font-weight: 700;
      color: var(--green);
      background: var(--green-bg);
      border: 1px solid rgba(22, 163, 74, .18);
      border-radius: 999px;
      padding: 3px 9px;
    }

    /* ── 카드 배치: 계단형 우상→좌중→우하 ── */
    .preview-card.p1 {
      top: 0;
      right: 20px;
      z-index: 3;
    }

    .preview-card.p2 {
      top: 48px;
      left: 0;
      animation-delay: .9s;
      z-index: 1;
    }

    .preview-card.p3 {
      top: 96px;
      right: 90px;
      animation-delay: 1.8s;
      z-index: 2;
    }

    @keyframes float-card {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-8px); }
    }

    .module-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1px;
      background: var(--border);
    }

    .module-card {
      height: auto;
      min-height: 180px;
      padding: 24px 22px;
      background: #fff;
      transition: opacity .18s, transform .18s, background .18s, box-shadow .18s;
    }

    .module-card {
      position: relative;
      overflow: visible;
    }

    /* 기본 hover: 효과 없는 카드 */
    .module-card:hover {
      background: #f9fafc;
    }

    .module-card .module-icon {
      transition: background .22s, color .22s, border-color .22s, box-shadow .22s;
    }

    .module-card h3 {
      transition: color .22s;
    }

    .module-card p {
      font-size: 12.8px;
      font-weight: 600;
      line-height: 1.64;
      color: #1e40af;
      margin-bottom: 10px;
    }

    /* ── Effect 1: 블루 틴트 (배경 연파랑 + 살짝 떠오름) ── */
    .effect-fade {
      transition: background .22s, box-shadow .22s, transform .22s;
    }
    .effect-fade:hover {
      background: #eef3ff;
      box-shadow: 0 0 0 1.5px rgba(37, 99, 235, .2), 0 6px 24px rgba(37, 99, 235, .1);
      transform: translateY(-3px);
    }

    /* ── Effect 2: 하단 라인 슬라이드인 ── */
    .effect-slide {
      overflow: hidden;
      transition: background .22s, box-shadow .22s;
    }
    .effect-slide::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0; right: 0;
      height: 3px;
      background: var(--blue);
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .32s cubic-bezier(.25, .46, .45, .94);
    }
    .effect-slide:hover {
      box-shadow: 0 4px 20px rgba(15, 23, 42, .1);
    }
    .effect-slide:hover::after {
      transform: scaleX(1);
    }

    /* ── Effect 3: 테두리 강조 + 아이콘 블루 ── */
    .effect-border {
      transition: background .22s, box-shadow .22s;
    }
    .effect-border:hover {
      background: #f4f8ff;
      box-shadow: 0 0 0 2px var(--blue), 0 6px 22px rgba(37, 99, 235, .12);
    }
    .effect-border:hover h3 {
      color: var(--blue);
    }
    .effect-border:hover .module-icon {
      background: var(--blue);
      border-color: transparent;
    }

    /* ── Effect 4: 다크 반전 ── */
    .effect-glow {
      transition: background .28s, box-shadow .28s, color .28s;
    }
    .effect-glow:hover {
      background: #0f172a;
      box-shadow: 0 0 0 1px rgba(59, 130, 246, .25), 0 8px 32px rgba(37, 99, 235, .3);
    }
    .effect-glow:hover h3 {
      color: #fff;
    }
    .effect-glow:hover p {
      color: rgba(255, 255, 255, .55);
    }
    .effect-glow:hover .module-icon {
      background: rgba(37, 99, 235, .25);
      color: #93c5fd;
      border-color: rgba(37, 99, 235, .3);
    }
    .effect-glow:hover .module-list li {
      color: rgba(255, 255, 255, .7);
    }
    .effect-glow:hover .module-list li b {
      color: #93c5fd;
    }
    .effect-glow:hover .module-list li::before {
      background: #60a5fa;
    }

    .module-card.is-hidden {
      display: none;
    }

    .module-icon {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: var(--blue-800);
      border: 1px solid rgba(29, 78, 216, .18); 
      margin-bottom: 16px;
      flex-shrink: 0;
    }

    .module-icon img {
      width: 20px;
      height: 20px;
      display: block;
    }

    .module-card h3 {
      font-size: 18px;
      font-weight: 700;
      letter-spacing: -.025em;
      color: var(--text-1);
      margin-bottom: 8px;
    }

    .module-card p {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.64;
      color: #1e40af;
    }

    /* ── 리스트 베이스 ── */
    .module-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin: 10px 0 0;
      padding: 0;
      max-height: none;
      overflow: visible;
      opacity: 1;
    }

    .module-list li {
      display: flex;
      align-items: flex-start;
      gap: 6px;
      font-size: 12px;
      font-weight: 500;
      line-height: 1.6;
      color: var(--text-2);
    }

    .module-list li b {
      color: var(--text-1);
    }

    .module-list li::before {
      content: '';
      width: 3px;
      height: 3px;
      border-radius: 50%;
      margin-top: 7px;
      flex-shrink: 0;
    }

    .module-list li b {
      font-weight: 600;
    }

    /* Effect 1: 페이드 — 밝은 배경, 어두운 텍스트 */
    .effect-fade .module-list {
      opacity: 1;
    }

    .effect-fade .module-list li {
      color: var(--text-1);
    }

    .effect-fade .module-list li::before {
      background: var(--blue);
    }

    .effect-fade .module-list li b {
      color: #424243;
    }

    /* Effect 2: 슬라이드 업 — 다크 패널 항상 노출 */
    .effect-slide .module-list {
      opacity: 1;
    }

    .effect-slide .module-list li {
      color: var(--text-2);
    }

    .effect-slide .module-list li::before {
      background: var(--blue);
    }

    .effect-slide .module-list li b {
      color: var(--text-1);
    }

    /* Effect 3: 테두리 강조 — 밝은 배경, 블루 포인트 */
    .effect-border .module-list {
      opacity: 1;
    }

    .effect-border .module-list li {
      color: var(--text-2);
    }

    .effect-border .module-list li::before {
      background: var(--blue);
    }

    .effect-border .module-list li b {
      color: var(--blue);
    }

    /* Effect 4: 글로우 — 어두운 배경, 블루 네온 */
    .effect-glow .module-list {
      opacity: 1;
    }

    .effect-glow .module-list li {
      color: rgba(255, 255, 255, .75);
    }

    .effect-glow .module-list li::before {
      background: #60a5fa;
    }

    .effect-glow .module-list li b {
      color: #93c5fd;
    }

    .module-card.anchor-core .module-icon { 
      background: var(--bk-ink);
      border-color: transparent;  
    }

/* ──────────────── LOGOS SECTION ──────────────── */
.logos-section {  
  background: transparent;
  padding: 0 24px 54px;
  text-align: center;   
  overflow: hidden;
}

.logos-label {
  color: var(--text-3);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.logos-track-wrapper {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  gap: 34px;
  width: max-content;
  animation: logos-marquee 38s linear infinite;
}

.logos-track:hover {
  animation-play-state: paused;
}

@keyframes logos-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  white-space: nowrap;
  opacity: .62;
  transition: opacity .2s ease, transform .2s ease;
}

.logo-item:hover {
  opacity: .98;
  transform: translateY(-1px);
}

.logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.35);
  flex: 0 0 auto;
}

.logo-name {
  font-size: 15px;
  font-weight: 800;
  color: var(--text-1);
  letter-spacing: -.02em;
}

.logo-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* ──────────────── FEAT SECTIONS ──────────────── */
    .feat-section {
      padding: 0 24px 120px;
    }

    .feat-inner {
      max-width: 1160px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center;
    }

    .feat-inner.reverse .feat-copy {
      order: 2;
    }

    .feat-inner.reverse .feat-visual {
      order: 1;
    }

    .feat-window {
      background: #fff;
      border: 1px solid var(--border2);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    .feat-window-bar {
      background: var(--bg);
      padding: 9px 12px;
      display: flex;
      align-items: center;
      gap: 5px;
      border-bottom: 1px solid var(--border);
    }

    /* ──────────────── INTAKE ──────────────── */
    .issue-list {}

    .issue-group-header {
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 9px 16px 5px;
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-3);
      letter-spacing: .03em;
    }

    .issue-count-badge {
      font-size: 10px;
      font-weight: 600;
      background: var(--bg);
      color: var(--text-3);
      padding: 1px 6px;
      border-radius: 10px;
      border: 1px solid var(--border);
    }

    .issue-row {
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 7px 16px;
      border-top: 1px solid rgba(0, 0, 0, .04);
      cursor: pointer;
      transition: background .1s;
    }

    .issue-row:hover {
      background: var(--bg);
    }

    .issue-status {
      width: 14px;
      height: 14px;
      border-radius: 50%;
      flex-shrink: 0;
      border: 2px solid;
    }

    .status-backlog {
      border-color: rgba(0, 0, 0, .18);
      background: transparent;
    }

    .status-todo {
      border-color: rgba(0, 0, 0, .25);
      background: transparent;
    }

    .status-inprog {
      border-color: #2563eb;
      background: rgba(37, 99, 235, .1);
    }

    .status-done {
      border-color: #16a34a;
      background: rgba(22, 163, 74, .1);
    }

    .issue-row-id {
      font-size: 11px;
      font-family: var(--mono);
      color: var(--text-3);
      flex-shrink: 0;
      width: 64px;
    }

    .issue-row-title {
      font-size: 12.5px;
      color: var(--text-2);
      flex: 1;
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .issue-row-tags {
      display: flex;
      gap: 4px;
      margin-left: auto;
      flex-shrink: 0;
    }

    .mini-tag {
      font-size: 10px;
      font-weight: 500;
      padding: 1px 6px;
      border-radius: 3px;
      border: 1px solid;
    }

    .mt-bug {
      color: #dc2626;
      border-color: rgba(220, 38, 38, .18);
      background: rgba(220, 38, 38, .05);
    }

    .mt-feat {
      color: #7c3aed;
      border-color: rgba(124, 58, 237, .15);
      background: rgba(124, 58, 237, .05);
    }

    .mt-perf {
      color: #2563eb;
      border-color: rgba(37, 99, 235, .15);
      background: rgba(37, 99, 235, .05);
    }

    .mt-design {
      color: #ea580c;
      border-color: rgba(234, 88, 12, .15);
      background: rgba(234, 88, 12, .05);
    }

    .mt-ai {
      color: #059669;
      border-color: rgba(5, 150, 105, .15);
      background: rgba(5, 150, 105, .05);
    }

    /* slack */
    .slack-panel {
      margin: 10px 12px 12px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 10px;
      overflow: hidden;
    }

    .slack-header {
      padding: 9px 14px;
      border-bottom: 1px solid var(--border);
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text-2);
    }

    .slack-hash {
      color: var(--text-3);
      font-size: 14px;
      font-weight: 800;
    }

    .slack-msg {
      padding: 7px 14px;
      display: flex;
      align-items: flex-start;
      gap: 9px;
    }

    .slack-av {
      width: 22px;
      height: 22px;
      border-radius: 4px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 9px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .av-d {
      background: linear-gradient(135deg, #f97316, #eab308);
    }

    .av-l {
      background: linear-gradient(135deg, #8b5cf6, #ec4899);
    }

    .av-a {
      background: linear-gradient(135deg, #0ea5e9, #6366f1);
    }

    .slack-msg-author {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-1);
      margin-bottom: 2px;
    }

    .slack-msg-text {
      font-size: 11.5px;
      color: var(--text-2);
      line-height: 1.5;
    }

    /* ──────────────── PLAN (GANTT) ──────────────── */
    .gantt-months {
      display: flex;
    }

    .gantt-month {
      font-size: 10px;
      color: var(--text-3);
      padding: 6px 0;
      flex: 1;
      text-align: center;
      font-family: var(--mono);
      letter-spacing: .04em;
    }

    .initiative-row {
      display: grid;
      grid-template-columns: 150px 1fr;
      border-bottom: 1px solid rgba(0, 0, 0, .05);
    }

    .initiative-name {
      padding: 9px 14px;
      font-size: 12px;
      color: var(--text-2);
      display: flex;
      align-items: center;
      gap: 5px;
      border-right: 1px solid rgba(0, 0, 0, .04);
      font-weight: 500;
    }

    .init-count {
      font-size: 11px;
      color: var(--text-3);
    }

    .initiative-bars {
      padding: 9px 10px;
      display: flex;
      align-items: center;
    }

    .ibar {
      height: 16px;
      border-radius: 4px;
      background: var(--purple);
      opacity: .45;
    }

    /* ──────────────── BUILD (AGENT) ──────────────── */
    .agent-thread {
      padding: 16px;
    }

    .agent-msg {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 14px;
    }

    .agent-msg-av {
      width: 26px;
      height: 26px;
      border-radius: 6px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 700;
      color: #fff;
    }

    .av-s {
      background: linear-gradient(135deg, #5E6AD2, #8b97f5);
    }

    .av-agent {
      background: linear-gradient(135deg, #059669, #34d399);
    }

    .agent-msg-name {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-1);
      margin-bottom: 3px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .agent-label {
      font-size: 10px;
      font-weight: 600;
      color: var(--green);
      background: var(--green-bg);
      border: 1px solid rgba(22, 163, 74, .2);
      padding: 1px 5px;
      border-radius: 3px;
    }

    .agent-msg-text {
      font-size: 12px;
      color: var(--text-2);
      line-height: 1.6;
    }

    .agent-code {
      margin-top: 6px;
      background: var(--bg);
      border: 1px solid var(--border2);
      border-radius: 6px;
      padding: 8px 12px;
      font-size: 11px;
      font-family: var(--mono);
      color: var(--text-2);
      line-height: 1.65;
    }

    .agent-code .cmd {
      color: var(--green);
    }

    .agent-code .path {
      color: var(--purple);
    }

    .agent-thinking {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 11.5px;
      color: var(--text-3);
      font-style: italic;
      margin-top: 4px;
    }

    .thinking-dots {
      display: flex;
      gap: 3px;
    }

    .thinking-dot {
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--text-3);
      animation: think 1.2s infinite;
    }

    .thinking-dot:nth-child(2) {
      animation-delay: .2s;
    }

    .thinking-dot:nth-child(3) {
      animation-delay: .4s;
    }

    @keyframes think{0%,100%{opacity:.3;}50%{opacity:1;}}.agents-row {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 6px;
      margin-top: 16px;
    }

    .agent-chip {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      font-weight: 500;
      color: var(--text-2);
      background: var(--white);
      border: 1px solid var(--border2);
      padding: 4px 10px;
      border-radius: 20px;
      box-shadow: var(--shadow-sm);
    }

    .agent-chip-av {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8px;
      font-weight: 700;
      color: #fff;
    }

    /* ──────────────── DIFFS ──────────────── */
    .diff-header {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 10px 16px;
      border-bottom: 1px solid var(--border);
      font-size: 12px;
      color: var(--text-2);
      font-family: var(--mono);
      background: var(--bg);
    }

    .diff-file {
      color: var(--text-1);
      font-weight: 600;
    }

    .diff-badge {
      font-size: 10.5px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 4px;
      margin-left: auto;
    }

    .diff-badge-agent {
      color: var(--green);
      background: var(--green-bg);
      border: 1px solid rgba(22, 163, 74, .2);
    }

    .diff-code {
      font-family: var(--mono);
      font-size: 11.5px;
      line-height: 1.7;
    }

    .diff-line {
      display: flex;
      align-items: flex-start;
      padding: 1px 16px;
    }

    .diff-line-num {
      color: var(--text-4);
      min-width: 28px;
      user-select: none;
      margin-right: 16px;
      font-size: 11px;
    }

    .diff-line-sign {
      min-width: 14px;
      margin-right: 6px;
      font-weight: 700;
    }

    .diff-line.removed {
      background: rgba(220, 38, 38, .05);
    }

    .diff-line.removed .diff-line-sign {
      color: #dc2626;
    }

    .diff-line.removed .diff-code-text {
      color: #b91c1c;
      opacity: .8;
    }

    .diff-line.added {
      background: rgba(22, 163, 74, .05);
    }

    .diff-line.added .diff-line-sign {
      color: #16a34a;
    }

    .diff-line.added .diff-code-text {
      color: #15803d;
      opacity: .9;
    }

    .diff-line.context .diff-line-sign {
      color: transparent;
    }

    .diff-line.context .diff-code-text {
      color: var(--text-2);
    }

    .diff-code-text {
      white-space: pre;
    }

    /* ──────────────── MONITOR ──────────────── */
    .monitor-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1px;
      background: var(--border);
      border-radius: 10px;
      overflow: hidden;
      margin-bottom: 10px;
      border: 1px solid var(--border);
    }

    .monitor-card {
      background: var(--white);
      padding: 16px 18px;
    }

    .monitor-card-label {
      font-size: 10.5px;
      font-weight: 700;
      color: var(--text-3);
      margin-bottom: 10px;
      font-family: var(--mono);
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .sparkline {
      display: flex;
      align-items: flex-end;
      gap: 3px;
      height: 40px;
    }

    .spark-bar {
      flex: 1;
      border-radius: 2px;
      background: rgba(94, 106, 210, .35);
      min-width: 4px;
    }

    .spark-bar.peak {
      background: rgba(94, 106, 210, .65);
    }

    .bar-group {
      display: flex;
      gap: 2px;
      align-items: flex-end;
    }

    .agent-bar {
      background: rgba(22, 163, 74, .4);
    }

    .human-bar {
      background: rgba(94, 106, 210, .4);
    }

    .pulse-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 10px;
      padding: 12px 14px;
      background: var(--bg);
      border: 1px solid var(--border);
      border-radius: 8px;
    }

    .pulse-icon {
      width: 28px;
      height: 28px;
      border-radius: 6px;
      background: var(--purple-bg);
      border: 1px solid var(--purple-border);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      flex-shrink: 0;
    }

    .pulse-text {
      font-size: 12.5px;
      color: var(--text-1);
    }

    .pulse-play {
      margin-left: auto;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: var(--purple);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 9px;
      color: #fff;
    }

    .project-update {
      padding: 12px 0;
      border-top: 1px solid rgba(0, 0, 0, .06);
    }

    .pu-header {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 4px;
    }

    .pu-title {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-1);
    }

    .pu-status {
      font-size: 10.5px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 4px;
    }

    .pu-at-risk {
      color: #d97706;
      background: rgba(217, 119, 6, .08);
      border: 1px solid rgba(217, 119, 6, .2);
    }

    .pu-on-track {
      color: #16a34a;
      background: rgba(22, 163, 74, .08);
      border: 1px solid rgba(22, 163, 74, .2);
    }

    .pu-meta {
      font-size: 11px;
      color: var(--text-3);
      margin-bottom: 5px;
    }

    .pu-desc {
      font-size: 12.5px;
      color: var(--text-2);
      line-height: 1.55;
    }

    /* ──────────────── CHANGELOG ──────────────── */
    .changelog-section {
      padding: 0 24px 100px;
      border-top: 1px solid var(--border);
    }

    .changelog-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding-top: 72px;
    }

    .changelog-header {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      margin-bottom: 36px;
    }

    .changelog-h2 {
      font-size: 26px;
      font-weight: 800;
      letter-spacing: -.03em;
      color: var(--text-1);
    }

    .changelog-see-all {
      font-size: 13px;
      color: var(--text-2);
      font-weight: 500;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: color .15s;
    }

    .changelog-see-all:hover {
      color: var(--text-1);
    }

    .changelog-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: var(--border);
      border: 1px solid var(--border2);
      border-radius: 14px;
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .cl-card {
      background: var(--white);
      padding: 22px 20px;
      transition: background .15s;
    }

    .cl-card:hover {
      background: var(--bg);
    }

    .cl-date {
      font-size: 11px;
      font-family: var(--mono);
      font-weight: 600;
      color: var(--text-3);
      margin-bottom: 10px;
      letter-spacing: .06em;
      text-transform: uppercase;
    }

    .cl-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-1);
      margin-bottom: 7px;
      letter-spacing: -.02em;
      line-height: 1.3;
    }

    .cl-desc {
      font-size: 12.5px;
      color: var(--text-2);
      line-height: 1.6;
    }

    /* ──────────────── TESTIMONIALS ──────────────── */
    .testimonials-section {
      padding: 0 24px 100px;
    }

    .test-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .test-stats {
      text-align: center;
      margin-bottom: 56px;
    }

    .test-stat-num {
      font-size: clamp(48px, 6vw, 72px);
      font-weight: 900;
      letter-spacing: -.06em;
      color: var(--text-1);
      line-height: 1;
      margin-bottom: 10px;
    }

    .test-stat-num span {
      color: var(--text-3);
    }

    .test-stat-label {
      font-size: 16px;
      color: var(--text-2);
    }

    .test-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }

    .test-card {
      background: var(--white);
      border: 1px solid var(--border2);
      border-radius: 16px;
      padding: 26px 24px;
      box-shadow: var(--shadow-md);
      transition: box-shadow .2s, transform .2s;
    }

    .test-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-2px);
    }

    .test-quote {
      font-size: 15.5px;
      font-weight: 500;
      letter-spacing: -.02em;
      color: var(--text-1);
      line-height: 1.55;
      margin-bottom: 18px;
    }

    .test-quote::before {
      content: '"';
    }

    .test-quote::after {
      content: '"';
    }

    .test-author {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .test-av {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0;
    }

    .av-gp {
      background: linear-gradient(135deg, #f97316, #eab308);
    }

    .av-nk {
      background: linear-gradient(135deg, #0ea5e9, #6366f1);
    }

    .av-kn {
      background: linear-gradient(135deg, #ec4899, #8b5cf6);
    }

    .test-author-name {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-1);
    }

    .test-author-role {
      font-size: 11.5px;
      color: var(--text-3);
    }

    .test-cta {
      text-align: center;
      margin-top: 14px;
    }

    .test-cta a {
      font-size: 13.5px;
      font-weight: 500;
      color: var(--text-2);
      display: inline-flex;
      align-items: center;
      gap: 5px;
      transition: color .15s;
    }

    .test-cta a:hover {
      color: var(--text-1);
    }

    /* ──────────────── FINAL CTA ──────────────── */
    .final-cta {
      padding: 100px 24px;
      text-align: center;
      background: var(--blue);
      position: relative;
      overflow: hidden;
    }

    .final-cta::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
      background-size: 40px 40px;
    }

    .final-cta-label {
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .09em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .6);
      margin-bottom: 16px;
      position: relative;
    }

    .final-cta-h2 {
      font-size: clamp(30px, 4.5vw, 54px);
      font-weight: 800;
      letter-spacing: -.04em;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 14px;
      position: relative;
    }

    .final-cta-h2 em {
      font-style: normal;
      color: rgba(255, 255, 255, .55);
    }

    .final-cta-sub {
      font-size: 16px;
      color: rgba(255, 255, 255, .65);
      margin-bottom: 36px;
      position: relative;
    }

    .final-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      flex-wrap: wrap;
      position: relative;
    }

    .btn-primary {
      font-size: 14px;
      font-weight: 700;
      background: #fff;
      color: var(--purple);
      padding: 10px 22px;
      border-radius: 8px;
      border: none;
      cursor: pointer;
      transition: background .15s, transform .12s, box-shadow .15s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      box-shadow: 0 4px 14px rgba(0, 0, 0, .15);
    }

    .btn-primary:hover {
      background: rgba(255, 255, 255, .92);
      transform: translateY(-1px);
      box-shadow: 0 8px 20px rgba(0, 0, 0, .2);
    }

    .btn-secondary {
      font-size: 14px;
      font-weight: 600;
      background: transparent;
      color: #fff;
      padding: 10px 22px;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, .3);
      cursor: pointer;
      transition: border-color .15s, background .15s;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .btn-secondary:hover {
      border-color: rgba(255, 255, 255, .6);
      background: rgba(255, 255, 255, .08);
    }

    .btn-ghost {
      font-size: 14px;
      font-weight: 500;
      color: rgba(255, 255, 255, .55);
      padding: 10px 18px;
      border-radius: 8px;
      background: none;
      border: none;
      cursor: pointer;
      transition: color .15s;
    }

    .btn-ghost:hover {
      color: rgba(255, 255, 255, .85);
    }

    /* ──────────────── FOOTER ──────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 0 24px;
      background: var(--bg);
    }

    .footer-inner {
      max-width: 1200px;
      margin: 0 auto;
    }

    .footer-top {
      display: grid;
      grid-template-columns: 200px repeat(5, 1fr);
      gap: 32px;
      margin-bottom: 44px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 7px;
      text-decoration: none;
      margin-bottom: 10px;
    }

    .footer-logo-icon {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: conic-gradient(from 225deg, #5E6AD2, #A78BFA, #E879F9, #5E6AD2);
    }

    .footer-logo-text {
      font-size: 14px;
      font-weight: 700;
      color: var(--text-1);
      letter-spacing: -.02em;
    }

    .footer-tagline {
      font-size: 12px;
      color: var(--text-3);
      line-height: 1.55;
      margin-top: 8px;
    }

    .footer-col-title {
      font-size: 11.5px;
      font-weight: 700;
      color: var(--text-1);
      margin-bottom: 14px;
      letter-spacing: -.01em;
    }

    .footer-links {
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-link {
      font-size: 12.5px;
      color: var(--text-3);
      transition: color .12s;
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .footer-link:hover {
      color: var(--text-1);
    }

    .footer-link-badge {
      font-size: 9px;
      font-weight: 700;
      color: var(--green);
      background: var(--green-bg);
      border: 1px solid rgba(22, 163, 74, .2);
      padding: 1px 4px;
      border-radius: 2px;
      letter-spacing: .04em;
      text-transform: uppercase;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-top: 22px;
      border-top: 1px solid var(--border);
    }

    .footer-copy {
      font-size: 11.5px;
      color: var(--text-3);
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .footer-social-link {
      font-size: 12px;
      color: var(--text-3);
      transition: color .12s;
    }

    .footer-social-link:hover {
      color: var(--text-1);
    }

    /* ──────────────── SCROLL REVEAL ──────────────── */
    [data-sr] {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .55s ease, transform .55s ease;
    }

    [data-sr].visible {
      opacity: 1;
      transform: none;
    }

    /* ──────────────── RESPONSIVE ──────────────── */
    @media (max-width: 900px) {.feat-inner {
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .feat-inner.reverse .feat-copy {
      order: 1;
    }

    .feat-inner.reverse .feat-visual {
      order: 2;
    }

    .species-cards {
      grid-template-columns: 1fr;
    }

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

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

    .footer-top {
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }

    .issue-detail {
      grid-template-columns: 1fr;
    }

    .issue-sidebar {
      display: none;
    }

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

    @media (max-width: 600px) {.nav-links .nav-link:nth-child(n+4) {
      display: none;
    }

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

    .footer-top {
      grid-template-columns: 1fr 1fr;
    }
    }

    @media (max-width: 900px) {.inside-stage {
      grid-template-columns: 1fr;
      padding: 28px 24px;
    }

    .inside-preview {
      min-height: 200px;
    }

    .preview-card {
      width: 190px;
    }

    .preview-card.p1 {
      top: 0;
      right: 16px;
    }

    .preview-card.p2 {
      top: 60px;
      left: 0;
    }

    .preview-card.p3 {
      top: 120px;
      right: 30px;
    }

    .module-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    }

    @media (max-width: 620px) {.anchor-inside {
      padding-left: 16px;
      padding-right: 16px;
    }

    .inside-shell {
      border-radius: 0;
    }

    .inside-tabs {
      padding: 10px;
    }

    .inside-stage {
      padding: 24px 18px;
    }

    .summary-flow i {
      display: none;
    }

    .inside-preview {
      display: none;
    }

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

    .module-card {
      height: auto;
    }
    }

    /* ──────────────── ANCHOR HERO IMAGE ROLLING ──────────────── */
    .anchor-hero-visual {
      max-width: 1240px;
      margin-top: 54px;
    }

    .anchor-slider-window {
      overflow: visible;
      background: rgba(255, 255, 255, .82);
      box-shadow: 0 34px 90px rgba(15, 23, 42, .12), 0 10px 30px rgba(29, 78, 216, .08);
      border-color: rgba(30, 64, 175, .12);
    }

    .anchor-screen-slider {
      position: relative;
      min-height: 560px;
      background:
        radial-gradient(circle at 50% 0%, rgba(37, 99, 235, .08), transparent 42%),
        linear-gradient(180deg, rgba(248, 251, 255, .98), rgba(255, 255, 255, .98));
      overflow: visible;
      border-radius: 0 0 14px 14px;
    }

    .anchor-screen-slider::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(rgba(37, 99, 235, .045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, .045) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, black 22%, transparent 86%);
      pointer-events: none;
      border-radius: 0 0 14px 14px;
    }

    /* ── 나란히 3-card carousel ── */
    .anchor-slide {
      position: absolute;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 32px 44px 60px;
      opacity: 0;
      transform: scale(.78) translateY(40px);
      filter: blur(8px);
      transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1), filter .6s ease;
      pointer-events: none;
      z-index: 1;
    }

    /* 센터 — 정사이즈, 최상단 */
    .anchor-slide.active {
      opacity: 1;
      transform: scale(1) translateY(0);
      filter: blur(0);
      pointer-events: auto;
      z-index: 3;
    }

    /* 왼쪽 카드 — 완전히 좌측으로 이동, 축소, 블러 */
    .anchor-slide.prev {
      opacity: 0.78;
      transform: translateX(-82%) scale(0.82) translateY(30px);
      filter: blur(3px);
      pointer-events: auto;
      cursor: pointer;
      z-index: 2;
    }

    /* 오른쪽 카드 — 완전히 우측으로 이동, 축소, 블러 */
    .anchor-slide.next {
      opacity: 0.78;
      transform: translateX(82%) scale(0.82) translateY(30px);
      filter: blur(3px);
      pointer-events: auto;
      cursor: pointer;
      z-index: 2;
    }

    .anchor-slide.prev:hover,
    .anchor-slide.next:hover {
      opacity: 0.92;
      filter: blur(1.5px);
    }

    .anchor-slide-glow {
      position: absolute;
      width: 520px;
      height: 260px;
      left: 50%;
      bottom: 30px;
      transform: translateX(-50%);
      background: radial-gradient(ellipse at center, rgba(37, 99, 235, .14), transparent 68%);
      pointer-events: none;
    }

    .anchor-screen-img {
      position: relative;
      z-index: 1;
      display: block;
      width: auto;
      max-width: 92%;
      max-height: 380px;
      object-fit: contain;
      border-radius: 16px;
      box-shadow: 0 24px 70px rgba(15, 23, 42, .16), 0 2px 8px rgba(15, 23, 42, .06);
      border: 1px solid rgba(15, 23, 42, .08);
      background: #fff;
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .anchor-login-img {
      max-width: 84%;
      max-height: 388px;
    }

    .anchor-main-img {
      max-width: 96%;
      max-height: 390px;
    }

    .anchor-slider-window:hover .anchor-screen-img {
      transform: translateY(-4px) scale(1.008);
      box-shadow: 0 30px 86px rgba(15, 23, 42, .18), 0 4px 14px rgba(15, 23, 42, .08);
    }

    .anchor-slide-caption {
      position: absolute;
      left: 50%;
      bottom: 24px;
      z-index: 3;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 10px;
      padding: 9px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, .78);
      border: 1px solid rgba(15, 23, 42, .08);
      box-shadow: var(--shadow-sm);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      white-space: nowrap;
    }

    .anchor-slide-caption strong {
      font-size: 12.5px;
      color: var(--text-1);
      letter-spacing: -.01em;
    }

    .anchor-slide-caption span {
      font-size: 12px;
      color: var(--text-3);
    }

    .anchor-slider-controls {
      position: absolute;
      left: 50%;
      bottom: -52px;
      z-index: 5;
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px;
      background: rgba(255, 255, 255, .86);
      border: 1px solid var(--border2);
      border-radius: 999px;
      box-shadow: var(--shadow-md);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
    }

    .anchor-slider-dot {
      width: 8px;
      height: 8px;
      padding: 0;
      border: 0;
      border-radius: 999px;
      background: rgba(13, 13, 14, .16);
      transition: width .18s ease, background .18s ease;
    }

    .anchor-slider-dot.active {
      width: 22px;
      background: var(--blue);
    }

    .anchor-slider-arrow {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border: 0;
      background: transparent;
      color: var(--text-2);
      font-size: 24px;
      line-height: 1;
      border-radius: 50%;
      transition: background .15s ease, color .15s ease;
    }

    .anchor-slider-arrow:hover {
      background: rgba(13, 13, 14, .05);
      color: var(--text-1);
    }

    @media (max-width: 900px) {.anchor-screen-slider {
      min-height: 420px;
    }

    .anchor-slide {
      padding: 32px 22px 68px;
    }

    .anchor-screen-img,
    .anchor-login-img,
    .anchor-main-img {
      max-width: 96%;
      max-height: 300px;
    }

    .anchor-slide-caption {
      max-width: calc(100% - 32px);
      white-space: normal;
      justify-content: center;
      text-align: center;
    }
    }

    /* ──────────────── FINAL OVERRIDE: FULL HERO IMAGE SLIDER ──────────────── */
    .anchor-hero-visual {
      max-width: 1440px;
      margin-top: 58px;
    }

    .anchor-slider-window {
      overflow: hidden;
      background: #fff;
      border: 1px solid rgba(15, 23, 42, .1);
      border-radius: 16px;
      box-shadow: 0 34px 90px rgba(15, 23, 42, .14), 0 10px 30px rgba(37, 99, 235, .08);
    }

    .anchor-slider-window .hero-window-bar {
      position: relative;
      z-index: 4;
      background: #f6f7f9;
    }

    .anchor-screen-slider {
      min-height: 0;
      height: clamp(420px, 52vw, 640px);
      background: #fff;
      border-radius: 0 0 16px 16px;
      overflow: hidden;
    }

    .anchor-screen-slider::before,
    .anchor-slide-glow,
    .anchor-slide-caption {
      display: none !important;
    }

    .anchor-slide {
      padding: 0;
      place-items: stretch;
    }

    .anchor-screen-img,
    .anchor-login-img,
    .anchor-main-img {
      width: 100%;
      height: 100%;
      max-width: none;
      max-height: none;
      object-fit: contain;
      border: none;
      border-radius: 0;
      box-shadow: none;
      background: #fff;
    }

    .anchor-slider-window:hover .anchor-screen-img {
      transform: none;
      box-shadow: none;
    }

    .anchor-slider-controls {
      bottom: -54px;
    }

    @media (max-width: 880px) {.anchor-screen-slider {
      height: clamp(300px, 58vw, 460px);
    }
    }

    /* ──────────────── FINAL FIX: IMAGE FILLS BROWSER FRAME + FADE ONLY ──────────────── */
    .anchor-hero-visual {
      width: min(1440px, calc(100vw - 48px)) !important;
      max-width: min(1440px, calc(100vw - 48px)) !important;
      margin-top: 58px !important;
    }

    .anchor-slider-window {
      overflow: hidden !important;
      background: #fff !important;
      border: 1px solid rgba(15, 23, 42, .1) !important;
      border-radius: 16px !important;
      box-shadow: 0 34px 90px rgba(15, 23, 42, .14), 0 10px 30px rgba(37, 99, 235, .08) !important;
    }

    .anchor-slider-window .hero-window-bar {
      height: 48px !important;
      padding: 0 16px !important;
      background: #f6f7f9 !important;
      border-bottom: 1px solid rgba(15, 23, 42, .08) !important;
      position: relative !important;
      z-index: 5 !important;
    }

    .anchor-screen-slider {
      position: relative !important;
      aspect-ratio: 1920 / 990 !important;
      height: auto !important;
      min-height: 0 !important;
      padding: 0 !important;
      background: #fff !important;
      overflow: hidden !important;
      border-radius: 0 0 16px 16px !important;
    }

    .anchor-screen-slider::before,
    .anchor-slide::before,
    .anchor-slide-glow,
    .anchor-slide-caption,
    .anchor-slider-controls {
      display: none !important;
    }

    .anchor-slide {
      position: absolute !important;
      inset: 0 !important;
      display: block !important;
      width: 100% !important;
      height: 100% !important;
      padding: 0 !important;
      opacity: 0 !important;
      transform: none !important;
      filter: none !important;
      transition: opacity .9s ease-in-out !important;
      pointer-events: none !important;
      z-index: 1 !important;
    }

    .anchor-slide.active {
      opacity: 1 !important;
      transform: none !important;
      filter: none !important;
      pointer-events: auto !important;
      z-index: 2 !important;
    }

    .anchor-screen-img,
    .anchor-login-img,
    .anchor-main-img {
      display: block !important;
      width: 100% !important;
      height: 100% !important;
      max-width: none !important;
      max-height: none !important;
      object-fit: cover !important;
      object-position: center top !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      transform: none !important;
    }

    @media (max-width: 900px) {.anchor-hero-visual {
      width: min(100%, calc(100vw - 32px)) !important;
      max-width: min(100%, calc(100vw - 32px)) !important;
    }
    }

    /* ── Anchor hero full image fade slider: 1920 × 990 ratio ── */
    .anchor-hero-visual {
      width: min(92vw, 1240px) !important;
      max-width: 1240px !important;
      margin-top: 56px !important;
      perspective: 1400px;
    }

    .anchor-slider-window {
      width: 100% !important;
      background: #fff !important;
      border: 1px solid rgba(15, 23, 42, .10) !important;
      border-radius: 16px !important;
      overflow: hidden !important;
      box-shadow: 0 32px 90px rgba(15, 23, 42, .14), 0 12px 32px rgba(37, 99, 235, .08) !important;
    }

    .anchor-browser-bar {
      height: 42px !important;
      padding: 0 14px !important;
      background: linear-gradient(180deg, #f8fafc, #f1f5f9) !important;
      border-bottom: 1px solid rgba(15, 23, 42, .10) !important;
      display: flex !important;
      align-items: center !important;
      gap: 7px !important;
    }

    .anchor-browser-bar .win-tabs {
      margin-left: auto !important;
      display: flex !important;
      gap: 4px !important;
    }

    .anchor-browser-bar .win-tab {
      appearance: none;
      border: 1px solid transparent;
      background: transparent;
      color: var(--text-3);
      font-size: 11.5px;
      font-weight: 500;
      padding: 4px 10px;
      border-radius: 6px;
      transition: all .2s ease;
    }

    .anchor-browser-bar .win-tab.active {
      color: var(--text-1);
      background: #fff;
      border-color: rgba(15, 23, 42, .12);
      box-shadow: 0 1px 3px rgba(15, 23, 42, .08);
    }

    .anchor-screen-slider {
      position: relative !important;
      width: 100% !important;
      aspect-ratio: 1920 / 990 !important;
      height: auto !important;
      min-height: 0 !important;
      overflow: hidden !important;
      background: #fff !important;
      border-radius: 0 !important;
    }

    .anchor-slide {
      position: absolute !important;
      inset: 0 !important;
      width: 100% !important;
      height: 100% !important;
      opacity: 0 !important;
      transform: none !important;
      transition: opacity 1.05s ease-in-out !important;
      z-index: 0;
      background: #fff !important;
      display: block !important;
      padding: 0 !important;
      margin: 0 !important;
    }

    .anchor-slide.active {
      opacity: 1 !important;
      z-index: 1;
    }

    .anchor-screen-img {
      display: block !important;
      width: 100% !important;
      height: 100% !important;
      max-width: none !important;
      max-height: none !important;
      object-fit: contain !important;
      object-position: center center !important;
      border: 0 !important;
      border-radius: 0 !important;
      box-shadow: none !important;
      transform: none !important;
      background: #fff !important;
    }

    .anchor-slide-glow,
    .anchor-slide-caption,
    .anchor-slider-controls,
    .anchor-slider-dots,
    .anchor-slider-btn {
      display: none !important;
    }

    @media (max-width: 900px) {.anchor-hero-visual {
      width: min(94vw, 100%) !important;
      margin-top: 38px !important;
    }

    .anchor-browser-bar {
      height: 38px !important;
    }

    .anchor-browser-bar .win-tab {
      font-size: 10.5px;
      padding: 3px 8px;
    }
    }

/* ──────────────── FIX: LOGOS + INSIDE GRID OVERRIDES ──────────────── */
.logos-section {
  display: block;
  background: transparent;
  padding: 0 24px 54px;
}

.inside-shell {
  position: relative;
  z-index: 1;
}

.inside-tabs {
  position: relative;
  z-index: 3;
}

.inside-tab {
  pointer-events: auto;
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

@media (max-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .module-grid {
    grid-template-columns: 1fr;
  }
}

/* ──────────────── FIX: ROLLING LOGOS + HERO BACKGROUND ──────────────── */
.logos-section {
  display: block;
  background: transparent;
  padding: 0 24px 54px;
  overflow: hidden;
}

.logos-track-wrapper {
  width: min(1120px, 100%);
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logos-track {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 34px;
  width: max-content;
  min-width: max-content;
  animation: logos-marquee 36s linear infinite;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.logos-track:hover {
  animation-play-state: paused;
}

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

.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  min-width: max-content;
  white-space: nowrap;
}

.logo-icon img {
  width: 18px;
  height: 18px;
  display: block;
  object-fit: contain;
}

/* 상단 hero visual 배경/슬라이드 레이어 복구 */
.anchor-screen-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0 0 14px 14px;
}

.anchor-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .55s ease, visibility .55s ease;
}

.anchor-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.win-tab {
  position: relative;
  z-index: 2;
}

/* ──────────────── FIX: HERO WINDOW TAB CLICK LAYER ──────────────── */
.hero-window,
.anchor-slider-window {
  position: relative;
}

.hero-window-bar {
  position: relative;
  z-index: 50;
  pointer-events: auto;
}

.win-tabs,
.win-tab {
  position: relative;
  z-index: 60;
  pointer-events: auto;
}

.anchor-screen-slider {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.anchor-slide {
  z-index: 0;
}

.anchor-slide.active {
  z-index: 1;
}

/* ──────────────── FIX: visibility + anchor slider render ──────────────── */
[data-sr] {
  opacity: 1;
  transform: none;
}

.anchor-hero-visual,
.inside-shell {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.anchor-screen-slider {
  position: relative !important;
  aspect-ratio: 1920 / 990 !important;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #fff !important;
}

.anchor-screen-slider::before {
  pointer-events: none !important;
}

.anchor-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  opacity: 0;
  visibility: hidden !important;
  pointer-events: none !important;
  z-index: 0 !important;
  transition: opacity .65s ease !important;
}

.anchor-slide.active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
  z-index: 2 !important;
}

.module-grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

@media (max-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 620px) {
  .module-grid {
    grid-template-columns: 1fr !important;
  }
}






/* ──────────────── FINAL CTA EMAIL FORM OVERRIDE ──────────────── */
.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.final-email-form {
  width: min(560px, 100%);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border-radius: 14px;
  background: rgba(9, 24, 43, .72);
  border: 1px solid rgba(96, 165, 250, .18);
  box-shadow: 0 18px 46px rgba(0, 0, 0, .18), inset 0 1px 0 rgba(255, 255, 255, .04);
}

.final-email-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 48px;
  border: 0;
  outline: 0;
  background: transparent;
  color: rgba(255, 255, 255, .9);
  font-size: 15px;
  font-weight: 500;
  padding: 0 16px;
  font-family: var(--font);
}

.final-email-input::placeholder {
  color: rgba(255, 255, 255, .42);
}

.final-email-submit {
  flex: 0 0 auto;
  min-width: 112px;
  height: 48px;
  padding: 0 24px;
  border: 0;
  border-radius: 10px;
  background: #fff;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
  font-family: var(--font);
  line-height: 48px;
  white-space: nowrap;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
  transition: transform .16s ease, box-shadow .16s ease, background .16s ease, color .16s ease;
}

.final-email-submit:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}

.final-email-note {
  margin: 0;
  color: rgba(255, 255, 255, .54);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}

@media (max-width: 620px) {
  .final-email-form {
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
  }

  .final-email-input,
  .final-email-submit {
    width: 100%;
  }
}


/* ──────────────── FINAL CTA COMPLETED STATE ──────────────── */
.final-email-submit {
  min-width: 122px;
  height: 48px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.final-email-form.is-complete .final-email-submit {
  background: #f5b318;
  color: #101827;
  box-shadow: 0 10px 26px rgba(245, 179, 24, .24);
}

.final-email-form.is-complete .final-email-submit:hover {
  background: #f5b318;
  color: #101827;
  transform: none;
}

.final-submit-check {
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.final-email-form.is-complete .final-email-input {
  color: rgba(255, 255, 255, .58);
}

.final-email-form.is-error {
  animation: finalFormShake .28s ease;
}

@keyframes finalFormShake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-4px); }
  70% { transform: translateX(4px); }
}

/* 폼 아래 안내 문구 — 자리를 미리 잡아두어 노출 시 레이아웃이 밀리지 않게 한다 */
.final-email-msg {
  width: min(100%, 620px);
  margin: 12px auto 0;
  min-height: 21px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: -.01em;
  text-align: center;
  opacity: 0;
  transform: translateY(-3px);
  transition: opacity .22s ease, transform .22s ease;
}

.final-email-msg.is-visible {
  opacity: 1;
  transform: none;
}

.final-email-msg.is-error {
  color: #fca5a5;
}

.final-email-msg.is-success {
  color: #93c5fd;
}


/* ──────────────── FINAL CTA COMPLETED STATE - WHITE BUTTON ──────────────── */
.final-email-submit {
  background: #fff;
  color: #0f172a;
}

.final-email-submit:hover {
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
}

.final-email-form.is-complete .final-email-submit {
  background: #fff;
  color: #0f172a;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .14);
}

.final-email-form.is-complete .final-email-submit:hover {
  background: rgba(255, 255, 255, .92);
  color: #0f172a;
  transform: none;
  box-shadow: 0 14px 32px rgba(0, 0, 0, .18);
}


/* ──────────────── FOOTER LEGAL + MODAL ──────────────── */
footer {
  background: #fff;
}

.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-bottom {
  min-height: 104px;
  padding: 38px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 0;
}

.footer-copy {
  color: rgba(13, 13, 14, .38);
  font-size: 13px;
  line-height: 1.5;
}

.footer-legal {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  color: rgba(13, 13, 14, .38);
  font-size: 13px;
  line-height: 1.5;
}

.footer-legal-link {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  color: rgba(13, 13, 14, .38);
  font: inherit;
  cursor: pointer;
  transition: color .16s ease;
}

.footer-legal-link:hover {
  color: rgba(13, 13, 14, .78);
}

.footer-legal-divider {
  color: rgba(13, 13, 14, .22);
}

.legal-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
}

.legal-modal.is-open {
  display: flex;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 20, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.legal-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: min(760px, calc(100vh - 56px));
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .28);
  overflow: hidden;
}

.legal-modal-header {
  flex: 0 0 auto;
  height: 72px;
  padding: 0 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
}

.legal-modal-header h2 {
  margin: 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--text-1);
}

.legal-modal-close {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(13, 13, 14, .06);
  color: rgba(13, 13, 14, .72);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease, color .16s ease;
}

.legal-modal-close:hover {
  background: rgba(13, 13, 14, .1);
  color: var(--text-1);
}

.legal-modal-body {
  overflow: auto;
  padding: 26px;
  color: rgba(13, 13, 14, .68);
  font-size: 14px;
  line-height: 1.75;
}

.legal-modal-body h3 {
  margin: 0 0 14px;
  font-size: 18px;
  line-height: 1.45;
  color: var(--text-1);
  letter-spacing: -.02em;
}

.legal-modal-body h4 {
  margin: 24px 0 8px;
  font-size: 15px;
  color: var(--text-1);
}

.legal-modal-body p {
  margin: 0 0 10px;
}

.legal-modal-body ul,
.legal-modal-body ol {
  margin: 8px 0 14px 20px;
  padding: 0;
}

.legal-modal-body li {
  margin: 4px 0;
}

.legal-modal-body .legal-date {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(0, 0, 0, .08);
  color: rgba(13, 13, 14, .42);
  font-size: 12.5px;
}

body.legal-modal-open {
  overflow: hidden;
}

@media (max-width: 720px) {
  .footer-bottom {
    min-height: auto;
    padding: 30px 0;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .footer-legal {
    flex-wrap: wrap;
    justify-content: center;
  }

  .legal-modal {
    padding: 16px;
  }

  .legal-modal-dialog {
    border-radius: 16px;
  }

  .legal-modal-header {
    height: 64px;
    padding: 0 20px;
  }

  .legal-modal-body {
    padding: 22px 20px;
  }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE RESPONSIVE — 20250527 추가
   ══════════════════════════════════════════════════════════════ */

/* ──────────────── NAV 모바일 ──────────────── */
@media (max-width: 480px) {
  .nav-inner {
    padding: 0 14px;
  }
  .nav-logo-text {
    font-size: 16px;
  }
  .nav-btn-signup {
    font-size: 12px;
    padding: 5px 11px;
  }
}

/* ──────────────── HERO 모바일 ──────────────── */
@media (max-width: 640px) {
  .hero {
    padding: 96px 16px 56px;
    min-height: auto;
  }

  /* 배경 요소 성능 최적화 */
  .hero-blob-2,
  .hero-blob-3,
  .hero-blob-4,
  .hero-blob-5 {
    display: none;
  }
  .hero-rings,
  .hero-beam {
    display: none;
  }

  .hero-badge {
    font-size: 11px;
    padding: 4px 11px 4px 8px;
    margin-bottom: 20px;
  }

  .hero-h1 {
    font-size: clamp(28px, 8.5vw, 38px);
    line-height: 1.13;
    margin-bottom: 16px;
  }

  .hero-sub {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  /* CTA 버튼 세로 배치 */
  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
    gap: 8px;
  }

  .hero-cta,
  .hero-cta-outline {
    width: 100%;
    justify-content: center;
    padding: 13px 22px;
    font-size: 15px;
  }
}

/* ──────────────── 히어로 슬라이더 모바일 ──────────────── */
@media (max-width: 640px) {
  .anchor-hero-visual {
    margin-top: 36px !important;
    width: calc(100vw - 32px) !important;
    max-width: calc(100vw - 32px) !important;
  }

  /* 브라우저 바 높이 축소 */
  .anchor-browser-bar {
    height: 36px !important;
    padding: 0 12px !important;
  }

  /* 탭 텍스트 → dot 인디케이터 형태로 변환 */
  .anchor-browser-bar .win-tabs {
    margin-left: auto !important;
    gap: 5px !important;
    align-items: center !important;
  }

  .anchor-browser-bar .win-tab {
    font-size: 0 !important;        /* 텍스트 숨기기 */
    width: 6px !important;
    height: 6px !important;
    min-width: 0 !important;
    padding: 0 !important;
    border-radius: 99px !important;
    background: rgba(13, 13, 14, .18) !important;
    border: none !important;
    box-shadow: none !important;
    transition: width .2s ease, background .2s ease !important;
  }

  .anchor-browser-bar .win-tab.active {
    width: 18px !important;
    background: var(--blue) !important;
  }

  /* 슬라이드 영역 — SVG 이미지 비율(1920:990) 유지 */
  .anchor-screen-slider {
    aspect-ratio: 1920 / 990 !important;
    height: auto !important;
  }
}

/* ──────────────── 히어로 슬라이더 태블릿 ──────────────── */
@media (min-width: 641px) and (max-width: 900px) {
  .anchor-hero-visual {
    margin-top: 44px !important;
  }

  /* 슬라이드 영역 — SVG 이미지 비율(1920:990) 유지 */
  .anchor-screen-slider {
    aspect-ratio: 1920 / 990 !important;
    height: auto !important;
  }

  /* 탭 텍스트 말줄임 */
  .anchor-browser-bar .win-tab {
    font-size: 10px !important;
    padding: 3px 7px !important;
    max-width: 72px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

/* ──────────────── SECTION 공통 모바일 ──────────────── */
@media (max-width: 640px) {
  section {
    padding: 60px 16px !important;
  }

  .section-h2 {
    font-size: clamp(22px, 6.5vw, 30px);
  }

  .section-sub {
    font-size: 14px;
  }
}

/* ──────────────── INSIDE(기능탭) 모바일 ──────────────── */
@media (max-width: 640px) {
  /* 탭 가로 스크롤 */
  .inside-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    scrollbar-width: none;
  }

  .inside-tabs::-webkit-scrollbar {
    display: none;
  }

  /* flow 화살표 숨김 (이미 620px에서 처리되어 있으나 통합) */
  .summary-flow {
    display: none;
  }
}

/* ──────────────── FINAL CTA 모바일 ──────────────── */
@media (max-width: 640px) {
  .final-cta {
    padding: 64px 16px !important;
  }

  .final-cta-h2 {
    font-size: clamp(26px, 7vw, 36px) !important;
  }

  .final-cta-sub br {
    display: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   MOBILE SLIDE TABLE TEXT OVERFLOW — 20250527 추가
   슬라이드 내 테이블 셀 말줄임 처리
   ══════════════════════════════════════════════════════════════ */

@media (max-width: 640px) {

  /* ── 슬라이드 내 grid 행의 모든 셀: 텍스트 넘침 방지 ── */
  .anchor-slide [style*="display:grid"] > span,
  .anchor-slide [style*="display:grid"] > div {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;       /* grid 셀 축소 허용 */
  }

  /* ── 적요·품목명 등 flex:1(가변) 컬럼 강화 ── */
  .anchor-slide [style*="display:grid"] > span:nth-child(2),
  .anchor-slide [style*="display:grid"] > span[style*="flex:1"] {
    max-width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  /* ── 슬라이드 내 flex 행 텍스트도 말줄임 ── */
  .anchor-slide [style*="display:flex"] > span {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    min-width: 0;
  }

  /* ── 테이블 헤더/바디 grid 컨테이너: 컬럼 넘침 방지 ── */
  .anchor-slide [style*="display:grid"][style*="grid-template-columns"] {
    overflow: hidden;
  }

  /* ── 슬라이드 내 전체 텍스트 요소 기본 말줄임 ── */
  .anchor-slide span,
  .anchor-slide div {
    min-width: 0;
  }

  /* ── 금액·숫자 컬럼: 줄바꿈 완전 차단 ── */
  .anchor-slide [style*="text-align:right"],
  .anchor-slide [style*="text-align: right"] {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  /* ── 전표번호·품목코드(monospace) 말줄임 ── */
  .anchor-slide [style*="font-family:monospace"],
  .anchor-slide [style*="monospace"] {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  /* ── 배지/태그(상태칩)는 줄바꿈 방지만 ── */
  .anchor-slide span[style*="border-radius"],
  .anchor-slide span[style*="padding:1px"] {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* ── 슬라이드 내 콘텐츠 영역 overflow 보호 ── */
  .anchor-slide > div {
    overflow: hidden;
  }

  .anchor-slide > div > div:not(.slide-lnb) {
    overflow: hidden;
    min-width: 0;
  }
}


/* ══════════════════════════════════════════════════════════════
   FIX: module-grid 빈 영역 흰색 처리 — 20250527
   카드 없는 나머지 공간의 회색(var(--border)) 배경을 흰색으로
   ══════════════════════════════════════════════════════════════ */

/* module-grid gap 배경색을 흰색으로 변경
   기존: var(--border) 회색 → 카드 없는 빈 영역도 회색으로 보임
   수정: #fff → 빈 영역이 흰색으로 표시됨
   카드 사이 구분선은 카드에 border 추가로 유지 */
.inside-shell .module-grid {
  background: #fff;
}

/* 구분선 복원: 카드 우측·하단에 1px 선 */
.inside-shell .module-card {
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* 각 행의 마지막 카드 우측 선 제거 (4열 기준) */
.inside-shell .module-grid .module-card:nth-child(4n) {
  border-right: none;
}

/* 마지막 행 하단 선 제거 */
.inside-shell .module-grid .module-card:last-child {
  border-bottom: none;
}

/* 상단 구분선: inside-stage와의 경계선은 inside-stage border-bottom으로 이미 처리됨 */

/* 반응형: 2열일 때 */
@media (max-width: 900px) {
  .inside-shell .module-grid .module-card:nth-child(4n) {
    border-right: 1px solid var(--border);
  }
  .inside-shell .module-grid .module-card:nth-child(2n) {
    border-right: none;
  }
}

/* 반응형: 1열일 때 */
@media (max-width: 620px) {
  .inside-shell .module-grid .module-card:nth-child(2n) {
    border-right: 1px solid var(--border);
  }
  .inside-shell .module-grid .module-card {
    border-right: none;
  }
}


/* ══════════════════════════════════════════════════════════════
   PREVIEW CARD — 카테고리별 em 배지 컬러 — 20250527
   ══════════════════════════════════════════════════════════════ */

/* 기본(전체 탭) — 그린 유지 */
.preview-card em { color: var(--green); background: var(--green-bg); border-color: rgba(22,163,74,.18); }

/* all — 인디고(파랑) */
.preview-card[data-color="all"] em {
  color: #4f46e5;
  background: #eef2ff;
  border-color: rgba(79,70,229,.18);
}

/* anchor — 프로덕션 오렌지 */
.preview-card[data-color="anchor"] em {
  color: #ea580c;
  background: #fff7ed;
  border-color: rgba(234,88,12,.18);
}

/* finance — 에메랄드 그린 */
.preview-card[data-color="finance"] em {
  color: #059669;
  background: #ecfdf5;
  border-color: rgba(5,150,105,.18);
}

/* hr — 바이올렛 */
.preview-card[data-color="hr"] em {
  color: #7c3aed;
  background: #f5f3ff;
  border-color: rgba(124,58,237,.18);
}

/* sales — 스카이 블루 */
.preview-card[data-color="sales"] em {
  color: #0284c7;
  background: #f0f9ff;
  border-color: rgba(2,132,199,.18);
}


/* ══════════════════════════════════════════════════════════
   HERO HEADING — 한 글자씩 아래에서 탁 박히는 슬램
   아래에서 살짝 치고 올라와 snap 정착 (Amaranth10 참고)
   JS 가 각 글자를 .h1-char 로 감싸고 animation-delay 를 순차 부여
   ══════════════════════════════════════════════════════════ */
@keyframes char-slam {
  0%   { opacity: 0; transform: translateY(18px) scale(1.12); }
  55%  { opacity: 1; transform: translateY(-3px) scale(0.97); }
  100% { opacity: 1; transform: translateY(0)    scale(1); }
}

.h1-char {
  display: inline-block;
  opacity: 0;
  transform-origin: bottom center;
  animation: char-slam 0.6s cubic-bezier(0.2, 0, 0.1, 1) forwards;
}

@media (prefers-reduced-motion: reduce) {
  .h1-char { animation: none; opacity: 1; transform: none; }
}


/* ══════════════════════════════════════════════════════════
   INTERACTIVE HERO VISUAL
   — 3D 틸트 · 커서 스포트라이트 · 탭 프로그레스바
   ══════════════════════════════════════════════════════════ */

/* 1. 윈도우 박스섀도우 트랜지션 (호버 시 더 깊게) */
.anchor-slider-window {
  will-change: transform !important;
  transition: box-shadow 0.5s ease !important;
}

.anchor-hero-visual:hover .anchor-slider-window {
  box-shadow:
    0 70px 160px rgba(15, 23, 42, .24),
    0 28px 64px rgba(37, 99, 235, .18) !important;
}

/* 2. 커서 스포트라이트 오버레이 */
.slider-spotlight {
  position: absolute;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  background: radial-gradient(
    540px circle at var(--sx, 50%) var(--sy, 50%),
    rgba(59, 130, 246, 0.08),
    transparent 60%
  );
}

/* 3. 탭 프로그레스바 (JS 로 삽입되는 span) */
.tab-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #3b82f6, #93c5fd);
  transform-origin: left center;
  transform: scaleX(0);
  pointer-events: none;
  border-radius: 1px;
}

/* ── 슬라이드 이미지 (SVG 교체 버전) ── */
.slide-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: fill;
}

/* ══════════════════════════════════════════════════════════
   3-CARD SIDE SLIDER — 최종 오버라이드 (모든 !important 재정의)
   ══════════════════════════════════════════════════════════ */
.anchor-hero-visual {
  overflow: visible !important;
}
.anchor-slider-window {
  overflow: visible !important;
}
.anchor-screen-slider {
  overflow: visible !important;
  aspect-ratio: 1920 / 990 !important;
  height: auto !important;
  min-height: 0 !important;
}

/* 기본: 숨김 */
.anchor-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  padding: 0 !important;
  opacity: 0;
  transform: scale(0.78) !important;
  filter: blur(8px) !important;
  transition: opacity .6s ease, transform .6s cubic-bezier(.4,0,.2,1), filter .6s ease !important;
  pointer-events: none !important;
  z-index: 1 !important;
}

/* 센터 — 정사이즈, 선명 */
.anchor-slide.active {
  opacity: 1 !important;
  transform: scale(1) translateY(0) !important;
  filter: none !important;
  pointer-events: auto !important;
  z-index: 3 !important;
}

/* 왼쪽 카드 */
.anchor-slide.prev {
  opacity: 0.78 !important;
  transform: translateX(-82%) scale(0.82) translateY(30px) !important;
  filter: blur(3px) !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

/* 오른쪽 카드 */
.anchor-slide.next {
  opacity: 0.78 !important;
  transform: translateX(82%) scale(0.82) translateY(30px) !important;
  filter: blur(3px) !important;
  pointer-events: auto !important;
  cursor: pointer !important;
  z-index: 2 !important;
}

.anchor-slide.prev:hover,
.anchor-slide.next:hover {
  opacity: 0.92 !important;
  filter: blur(1.5px) !important;
}

/* 이미지 꽉 채우기 */
.anchor-slide .slide-img,
.anchor-screen-img,
.anchor-login-img,
.anchor-main-img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  max-height: none !important;
  object-fit: contain !important;
  object-position: center center !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transform: none !important;
  background: #fff !important;
}

/* ══════════════════════════════════════════════════════════
   DECK PEEK CAROUSEL
   센터 카드 풀사이즈, 좌우 카드는 1/3만 센터 뒤에서 삐져나옴
   ══════════════════════════════════════════════════════════ */

/* 래퍼: 센터 카드 크기 기준, overflow visible로 좌우 노출 */
.hero-carousel {
  position: relative;
  width: min(1000px, calc(100vw - 80px));
  margin: 56px auto 0;
  overflow: visible;
}

/* 공통 */
.hc-card {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .1);
  background: #fff;
  transition: transform .6s cubic-bezier(.4,0,.2,1),
              opacity .6s ease,
              filter .6s ease,
              box-shadow .6s ease;
}

/* 센터 — position:relative 로 높이 결정, 스케일 변화 없음 */
.hc-active {
  position: relative;
  z-index: 3;
  transform: none;
  opacity: 1;
  filter: none;
  box-shadow: 0 32px 90px rgba(15,23,42,.16), 0 12px 32px rgba(37,99,235,.1);
}

/* 좌우 — 같은 크기로 absolute, 67% 뒤로 밀어 1/3만 노출 */
.hc-prev,
.hc-next {
  position: absolute;
  inset: 0;
  opacity: 0.72;
  filter: blur(2.5px);
  cursor: pointer;
}

/* 왼쪽: 오른쪽 1/3만 노출 (2/3는 센터 뒤에 숨김) */
.hc-prev {
  z-index: 2;
  transform: translateX(-67%) scale(0.85) translateY(12px);
  box-shadow: 0 16px 48px rgba(15,23,42,.1);
}

/* 오른쪽: 왼쪽 1/3만 노출 (2/3는 센터 뒤에 숨김) */
.hc-next {
  z-index: 2;
  transform: translateX(67%) scale(0.85) translateY(12px);
  box-shadow: 0 16px 48px rgba(15,23,42,.1);
}

.hc-prev:hover,
.hc-next:hover {
  opacity: 0.9;
  filter: blur(1px);
}

/* 좌우 카드 위 다크 오버레이 */
.hc-prev::after,
.hc-next::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.05);
  pointer-events: none;
  z-index: 10;
  transition: background .4s ease;
}

.hc-prev:hover::after,
.hc-next:hover::after {
  background: rgba(0, 0, 0, 0.15);
}

/* 브라우저 상단 바 */
.hc-bar {
  height: 40px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f6f7f9;
  border-bottom: 1px solid rgba(15,23,42,.08);
  flex-shrink: 0;
}

/* 화면 영역 */
.hc-screen {
  aspect-ratio: 1920 / 990;
  overflow: hidden;
  background: #fff;
  display: block;
}

.hc-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* 이미지 교체 크로스페이드용 고스트 레이어 */
.hc-screen {
  position: relative;
}

.hc-ghost {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 1;
  transition: opacity .7s ease;
  pointer-events: none;
  z-index: 2;
}



/* ══════════════════════════════════════════════════════════
   DARK ERP PLATFORM THEME + CANVAS PARTICLE BACKGROUND
   - hero-carousel 영역의 HTML/CSS 구조는 유지
   - 전체 랜딩 톤만 dark/glass 계열로 오버라이드
   ══════════════════════════════════════════════════════════ */
:root {
  --dark-bg: #030712;
  --dark-bg-2: #07111f;
  --dark-surface: rgba(9, 18, 32, .78);
  --dark-surface-2: rgba(13, 24, 42, .72);
  --dark-border: rgba(148, 163, 184, .18);
  --dark-border-strong: rgba(148, 163, 184, .28);
  --dark-text-1: #f8fafc;
  --dark-text-2: rgba(226, 232, 240, .72);
  --dark-text-3: rgba(148, 163, 184, .78);
  --platform-blue: #38bdf8;
  --platform-blue-2: #2563eb;
  --platform-cyan: #22d3ee;
}

body.dark-particle-theme {
  background:
    radial-gradient(circle at 50% -10%, rgba(37, 99, 235, .34), transparent 42%),
    radial-gradient(circle at 82% 18%, rgba(34, 211, 238, .18), transparent 36%),
    radial-gradient(circle at 12% 32%, rgba(30, 64, 175, .28), transparent 38%),
    linear-gradient(180deg, #030712 0%, #06101d 48%, #030712 100%);
  color: var(--dark-text-1);
}

body.dark-particle-theme::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(148, 163, 184, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 78% 72% at 50% 20%, black 0%, transparent 88%);
}

.erp-particle-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  pointer-events: none;
  opacity: .88;
}

.dark-particle-theme .nav,
.dark-particle-theme section,
.dark-particle-theme footer,
.dark-particle-theme .legal-modal {
  position: relative;
  z-index: 1;
}

.dark-particle-theme .nav {
  position: fixed;
  z-index: 300;
  background: rgba(3, 7, 18, .68);
  border-bottom: 1px solid rgba(148, 163, 184, .16);
  box-shadow: 0 18px 40px rgba(0, 0, 0, .18);
}

.dark-particle-theme .nav-logo-text {
  color: var(--dark-text-1);
}

.dark-particle-theme .nav-btn-signup {
  color: #e0f2fe;
  background: linear-gradient(135deg, rgba(37, 99, 235, .95), rgba(34, 211, 238, .82));
  box-shadow: 0 10px 28px rgba(37, 99, 235, .28);
}

.dark-particle-theme .nav-btn-signup:hover {
  background: linear-gradient(135deg, rgba(59, 130, 246, 1), rgba(34, 211, 238, .95));
}

.dark-particle-theme .hero {
  background:
    radial-gradient(ellipse 80% 46% at 50% 5%, rgba(37, 99, 235, .32), transparent 72%),
    radial-gradient(ellipse 46% 30% at 50% 62%, rgba(14, 165, 233, .12), transparent 70%),
    linear-gradient(180deg, rgba(3, 7, 18, .28) 0%, rgba(7, 17, 31, .64) 60%, rgba(3, 7, 18, .88) 100%);
  overflow: hidden;
}

.dark-particle-theme .hero::before {
  background-image:
    linear-gradient(rgba(125, 211, 252, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .055) 1px, transparent 1px);
  background-size: 44px 44px;
  opacity: .75;
}

.dark-particle-theme .hero-rings circle {
  stroke: rgba(125, 211, 252, .13);
}

.dark-particle-theme .hero-glow {
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, .20) 0%, rgba(37, 99, 235, .11) 42%, transparent 72%);
}

.dark-particle-theme .hero-beam {
  background: linear-gradient(to bottom, transparent, rgba(56, 189, 248, .42) 35%, rgba(37, 99, 235, .16) 66%, transparent);
}

.dark-particle-theme .hero-badge {
  background: rgba(15, 23, 42, .72);
  border-color: rgba(125, 211, 252, .24);
  box-shadow: 0 10px 32px rgba(2, 6, 23, .32), inset 0 1px 0 rgba(255, 255, 255, .06);
}

.dark-particle-theme .hero-badge:hover {
  border-color: rgba(56, 189, 248, .58);
  box-shadow: 0 0 0 3px rgba(56, 189, 248, .10), 0 14px 36px rgba(2, 6, 23, .36);
}

.dark-particle-theme .hero-badge-label,
.dark-particle-theme .summary-kicker,
.dark-particle-theme .species-tagline,
.dark-particle-theme .final-cta-label {
  color: var(--platform-cyan);
}

.dark-particle-theme .hero-h1,
.dark-particle-theme .species-h2,
.dark-particle-theme .inside-summary h3,
.dark-particle-theme .module-card h3,
.dark-particle-theme .final-cta-h2 {
  color: var(--dark-text-1);
}

.dark-particle-theme .hero-h1 em,
.dark-particle-theme .species-h2 em,
.dark-particle-theme .final-cta-h2 em {
  color: rgba(125, 211, 252, .62);
}

.dark-particle-theme .hero-sub,
.dark-particle-theme .species-sub,
.dark-particle-theme .inside-summary p,
.dark-particle-theme .module-card p,
.dark-particle-theme .final-cta-sub {
  color: var(--dark-text-2);
}

.dark-particle-theme .hero-cta {
  background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(37, 99, 235, .30), inset 0 1px 0 rgba(255,255,255,.18);
}

.dark-particle-theme .hero-cta:hover {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  box-shadow: 0 18px 44px rgba(56, 189, 248, .26), inset 0 1px 0 rgba(255,255,255,.22);
}

.dark-particle-theme .hero-cta-outline {
  color: #e0f2fe;
  border-color: rgba(125, 211, 252, .32);
  background: rgba(15, 23, 42, .30);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.dark-particle-theme .hero-cta-outline:hover {
  color: #ffffff;
  border-color: rgba(56, 189, 248, .66);
  background: rgba(14, 165, 233, .12);
}

.dark-particle-theme .anchor-inside {
  background:
    radial-gradient(ellipse 80% 45% at 50% 0%, rgba(14, 165, 233, .12), transparent 70%),
    linear-gradient(180deg, rgba(3, 7, 18, .92) 0%, rgba(5, 13, 26, .86) 100%);
}

.dark-particle-theme .logos-section {
  background: transparent;
}

.dark-particle-theme .logos-track-wrapper {
  background: rgba(15, 23, 42, .42);
  border-color: rgba(148, 163, 184, .13);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04), 0 20px 58px rgba(0,0,0,.22);
}

.dark-particle-theme .logo-name {
  color: rgba(226, 232, 240, .74);
}

.dark-particle-theme .inside-shell {
  border-color: var(--dark-border);
  background: rgba(8, 15, 29, .70);
  box-shadow: 0 32px 100px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.05);
}

.dark-particle-theme .inside-tabs {
  background: rgba(15, 23, 42, .76);
  border-bottom-color: rgba(148, 163, 184, .14);
}

.dark-particle-theme .inside-tab {
  color: rgba(203, 213, 225, .72);
}

.dark-particle-theme .inside-tab:hover {
  color: #f8fafc;
  background: rgba(56, 189, 248, .09);
}

.dark-particle-theme .inside-tab.active {
  color: #ffffff;
  background: linear-gradient(135deg, rgba(37, 99, 235, .98), rgba(8, 145, 178, .92));
  border-color: rgba(125, 211, 252, .32);
  box-shadow: 0 12px 26px rgba(14, 165, 233, .20);
}

.dark-particle-theme .inside-stage {
  background:
    linear-gradient(135deg, rgba(37, 99, 235, .11), transparent 44%),
    rgba(8, 15, 29, .62);
  border-bottom-color: rgba(148, 163, 184, .14);
}

.dark-particle-theme .summary-kicker::before {
  background: var(--platform-cyan);
  box-shadow: 0 0 0 5px rgba(34, 211, 238, .12), 0 0 18px rgba(34, 211, 238, .45);
}

.dark-particle-theme .summary-flow span,
.dark-particle-theme .preview-card,
.dark-particle-theme .module-card {
  background: rgba(15, 23, 42, .68);
  border-color: rgba(148, 163, 184, .16);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
}

.dark-particle-theme .summary-flow span {
  color: rgba(226, 232, 240, .76);
}

.dark-particle-theme .preview-card {
  box-shadow: 0 20px 44px rgba(0,0,0,.30), inset 0 1px 0 rgba(255,255,255,.06);
}

.dark-particle-theme .preview-card:hover {
  box-shadow: 0 28px 58px rgba(0,0,0,.38), 0 0 0 1px rgba(56,189,248,.18), inset 0 1px 0 rgba(255,255,255,.08);
}

.dark-particle-theme .preview-card span {
  color: rgba(148, 163, 184, .86);
}

.dark-particle-theme .preview-card strong {
  color: #f8fafc;
}

.dark-particle-theme .module-grid {
  background: rgba(148, 163, 184, .12);
}

.dark-particle-theme .module-card:hover,
.dark-particle-theme .effect-fade:hover {
  background: rgba(14, 165, 233, .095);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 0 0 1px rgba(56,189,248,.18), 0 16px 42px rgba(14,165,233,.10);
}

.dark-particle-theme .module-card p {
  color: rgba(125, 211, 252, .82);
}

.dark-particle-theme .module-list li {
  color: rgba(203, 213, 225, .72);
}

.dark-particle-theme .module-list li::before {
  color: var(--platform-cyan);
}

.dark-particle-theme .module-list b {
  color: #ffffff;
}

.dark-particle-theme .module-icon {
  background: rgba(56, 189, 248, .10);
  border-color: rgba(125, 211, 252, .18);
}

.dark-particle-theme .final-cta {
  background:
    radial-gradient(circle at 50% 0%, rgba(56, 189, 248, .22), transparent 58%),
    linear-gradient(135deg, rgba(7, 89, 133, .94), rgba(29, 78, 216, .78) 42%, rgba(3, 7, 18, .96) 100%);
  border-top: 1px solid rgba(148, 163, 184, .16);
  border-bottom: 1px solid rgba(148, 163, 184, .14);
}

.dark-particle-theme .final-email-form {
  background: rgba(15, 23, 42, .66);
  border-color: rgba(125, 211, 252, .22);
  box-shadow: 0 20px 58px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.06);
}

.dark-particle-theme .final-email-input {
  color: #f8fafc;
}

.dark-particle-theme .final-email-input::placeholder {
  color: rgba(203, 213, 225, .52);
}

.dark-particle-theme .final-email-submit {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
}

.dark-particle-theme .final-email-note {
  color: rgba(203, 213, 225, .62);
}

.dark-particle-theme footer {
  background: rgba(3, 7, 18, .96);
}

.dark-particle-theme .footer-copy,
.dark-particle-theme .footer-legal,
.dark-particle-theme .footer-legal-link {
  color: rgba(203, 213, 225, .54);
}

.dark-particle-theme .footer-legal-link:hover {
  color: #e0f2fe;
}

.dark-particle-theme .footer-legal-divider {
  color: rgba(148, 163, 184, .24);
}

.dark-particle-theme .legal-modal-dialog {
  background: #0b1220;
  border: 1px solid rgba(148, 163, 184, .18);
  box-shadow: 0 32px 90px rgba(0,0,0,.56);
}

.dark-particle-theme .legal-modal-header {
  border-bottom-color: rgba(148, 163, 184, .16);
}

.dark-particle-theme .legal-modal-header h2,
.dark-particle-theme .legal-modal-body h3,
.dark-particle-theme .legal-modal-body h4 {
  color: #f8fafc;
}

.dark-particle-theme .legal-modal-body {
  color: rgba(203, 213, 225, .76);
}

.dark-particle-theme .legal-modal-close {
  background: rgba(148, 163, 184, .12);
  color: rgba(226, 232, 240, .82);
}

@media (prefers-reduced-motion: reduce) {
  .erp-particle-bg { opacity: .35; }
}


/* ══════════════════════════════════════════════════════════
   HEX-DOT ERP REFINEMENT
   - 다크 랜딩 배경에만 헥사곤 도트 모듈블록 적용
   - 실제 서비스 화면은 light UI 그대로 보존
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-carousel {
  isolation: isolate;
  position: relative;
}

.dark-particle-theme .hero-carousel::before {
  content: '';
  position: absolute;
  inset: -110px -160px -90px -160px;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 30%, rgba(56, 189, 248, .20), transparent 22%),
    radial-gradient(circle at 72% 18%, rgba(37, 99, 235, .18), transparent 28%),
    radial-gradient(circle at 50% 72%, rgba(34, 211, 238, .12), transparent 34%);
  filter: blur(2px);
  opacity: .78;
}

.dark-particle-theme .hero-carousel::after {
  content: '';
  position: absolute;
  inset: -70px -120px -55px -120px;
  z-index: -1;
  pointer-events: none;
  opacity: .28;
  background-image:
    linear-gradient(30deg, rgba(56, 189, 248, .24) 1px, transparent 1px),
    linear-gradient(150deg, rgba(56, 189, 248, .18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, .16) 1px, transparent 1px);
  background-size: 58px 100px, 58px 100px, 58px 100px;
  mask-image: radial-gradient(ellipse 72% 60% at 54% 48%, black 0%, transparent 74%);
}

.dark-particle-theme .hc-card {
  background: #ffffff;
  border-color: rgba(219, 234, 254, .92);
  box-shadow:
    0 30px 90px rgba(2, 6, 23, .46),
    0 0 0 1px rgba(125, 211, 252, .15),
    0 0 44px rgba(14, 165, 233, .13);
}

.dark-particle-theme .hc-active {
  background: #ffffff;
  box-shadow:
    0 34px 96px rgba(2, 6, 23, .50),
    0 0 0 1px rgba(186, 230, 253, .58),
    0 0 52px rgba(56, 189, 248, .22),
    inset 0 1px 0 rgba(255,255,255,.98);
}

.dark-particle-theme .hc-prev,
.dark-particle-theme .hc-next {
  background: #ffffff;
  opacity: .64;
  filter: blur(2px) saturate(.96) brightness(.98);
}

.dark-particle-theme .hc-prev::after,
.dark-particle-theme .hc-next::after {
  background: linear-gradient(180deg, rgba(8, 15, 29, .10), rgba(8, 15, 29, .20));
}

.dark-particle-theme .hc-prev:hover,
.dark-particle-theme .hc-next:hover {
  opacity: .82;
  filter: blur(.8px) saturate(1) brightness(1);
}

.dark-particle-theme .hc-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
  border-bottom-color: rgba(15, 23, 42, .08);
}

.dark-particle-theme .anchor-browser-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
}

.dark-particle-theme .hc-screen {
  background: #ffffff;
}

.dark-particle-theme .hc-img {
  background: #ffffff;
  filter: none !important;
  mix-blend-mode: normal !important;
}

.dark-particle-theme .win-tab {
  color: rgba(15, 23, 42, .54);
  background: rgba(15, 23, 42, .035);
}

.dark-particle-theme .win-tab:hover,
.dark-particle-theme .win-tab.active {
  color: #0f172a;
  background: rgba(37, 99, 235, .10);
}

.dark-particle-theme .nav-logo-icon {
  border-radius: 6px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255,255,255,.82) 0 1px, transparent 1.8px),
    linear-gradient(135deg, #2563eb, #22d3ee 72%, #1d4ed8);
  box-shadow: 0 0 22px rgba(56, 189, 248, .36);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
}

@media (max-width: 900px) {
  .dark-particle-theme .hero-carousel::before,
  .dark-particle-theme .hero-carousel::after {
    inset: -70px -50px -60px -50px;
  }
}

/* ══════════════════════════════════════════════════════════
   HERO DARK BOOST + LOCAL HEX-DOT VOLUMETRIC BACKGROUND
   - hero section 내부 전용 canvas를 추가해 시안처럼 더 밝고 입체적인 발광 구현
   - 실제 서비스 화면(hero-carousel)은 light UI 유지
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero {
  isolation: isolate;
  background:
    radial-gradient(ellipse 72% 42% at 68% 30%, rgba(0, 132, 255, .34), transparent 58%),
    radial-gradient(ellipse 42% 32% at 18% 32%, rgba(37, 99, 235, .24), transparent 64%),
    radial-gradient(ellipse 58% 36% at 52% 88%, rgba(14, 165, 233, .14), transparent 72%),
    linear-gradient(180deg, #020711 0%, #04101e 42%, #020814 100%) !important;
  box-shadow: inset 0 -1px 0 rgba(125, 211, 252, .10);
}

.dark-particle-theme .hero::before {
  z-index: 0;
  opacity: .56;
  background-image:
    linear-gradient(rgba(56, 189, 248, .07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .06) 1px, transparent 1px) !important;
  background-size: 42px 42px !important;
  mask-image: radial-gradient(ellipse 88% 62% at 58% 34%, black 0%, transparent 82%);
}

.dark-particle-theme .hero::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(2, 6, 23, .88) 0%, rgba(2, 6, 23, .38) 34%, rgba(2, 6, 23, .05) 60%, rgba(2, 6, 23, .50) 100%),
    radial-gradient(circle at 78% 28%, rgba(0, 174, 255, .26), transparent 36%);
}

.hero-hex-particle-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: 1;
  mix-blend-mode: screen;
}

.dark-particle-theme .hero-rings,
.dark-particle-theme .hero-blob,
.dark-particle-theme .hero-glow,
.dark-particle-theme .hero-beam {
  z-index: 0 !important;
}

.dark-particle-theme .hero-content,
.dark-particle-theme .hero-carousel {
  position: relative;
  z-index: 4 !important;
}

.dark-particle-theme .hero-rings circle {
  stroke: rgba(56, 189, 248, .16) !important;
}

.dark-particle-theme .hero-glow {
  opacity: .92;
  background:
    radial-gradient(ellipse at center, rgba(56, 189, 248, .22) 0%, rgba(37, 99, 235, .12) 42%, transparent 74%) !important;
}

.dark-particle-theme .hero-blob-1 {
  background: radial-gradient(ellipse at 50% 40%, rgba(0, 132, 255, .40) 0%, rgba(37, 99, 235, .18) 45%, transparent 78%) !important;
  opacity: .88 !important;
}

.dark-particle-theme .hero-blob-2,
.dark-particle-theme .hero-blob-3,
.dark-particle-theme .hero-blob-4,
.dark-particle-theme .hero-blob-5 {
  opacity: .42 !important;
  filter: blur(98px) saturate(1.35) !important;
}

.dark-particle-theme .hero-badge {
  background: rgba(3, 12, 27, .72) !important;
  border-color: rgba(0, 174, 255, .46) !important;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, .12),
    0 0 28px rgba(0, 174, 255, .18),
    inset 0 1px 0 rgba(255, 255, 255, .08) !important;
}

.dark-particle-theme .hero-badge-label {
  color: #5ee9ff !important;
  letter-spacing: .09em;
}

.dark-particle-theme .hero-h1 {
  color: #ffffff !important;
  text-shadow: 0 12px 44px rgba(0, 0, 0, .42);
}

.dark-particle-theme .hero-h1 em {
  color: #20a7ff !important;
  text-shadow:
    0 0 24px rgba(0, 174, 255, .34),
    0 0 56px rgba(37, 99, 235, .22);
}

.dark-particle-theme .hero-sub {
  color: rgba(226, 240, 255, .78) !important;
  text-shadow: 0 10px 28px rgba(0, 0, 0, .34);
}

.dark-particle-theme .hero-cta {
  background: linear-gradient(135deg, #008cff 0%, #0057ff 48%, #00d4ff 100%) !important;
  box-shadow:
    0 18px 44px rgba(0, 132, 255, .34),
    0 0 26px rgba(0, 212, 255, .20),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

.dark-particle-theme .hero-cta-outline {
  background: rgba(3, 13, 29, .58) !important;
  color: #e5f7ff !important;
  border-color: rgba(0, 174, 255, .46) !important;
  box-shadow:
    0 0 0 1px rgba(0, 174, 255, .08),
    inset 0 1px 0 rgba(255,255,255,.08) !important;
}

.dark-particle-theme .hero-cta-outline:hover {
  background: rgba(0, 132, 255, .16) !important;
  border-color: rgba(94, 233, 255, .74) !important;
}

.dark-particle-theme .hero-carousel::before {
  opacity: 1 !important;
  background:
    radial-gradient(circle at 16% 26%, rgba(0, 174, 255, .34), transparent 24%),
    radial-gradient(circle at 76% 20%, rgba(0, 102, 255, .28), transparent 30%),
    radial-gradient(circle at 48% 78%, rgba(94, 233, 255, .18), transparent 36%) !important;
  filter: blur(1px) saturate(1.35) !important;
}

.dark-particle-theme .hero-carousel::after {
  opacity: .48 !important;
  background-image:
    linear-gradient(30deg, rgba(0, 174, 255, .32) 1px, transparent 1px),
    linear-gradient(150deg, rgba(0, 174, 255, .22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, .20) 1px, transparent 1px) !important;
  filter: drop-shadow(0 0 14px rgba(0, 174, 255, .22));
}

.dark-particle-theme .hc-card {
  background: #ffffff !important;
  border-color: rgba(219, 234, 254, .96) !important;
}

.dark-particle-theme .hc-active {
  box-shadow:
    0 42px 120px rgba(0, 0, 0, .58),
    0 0 0 1px rgba(186, 230, 253, .78),
    0 0 42px rgba(0, 174, 255, .32),
    0 0 96px rgba(37, 99, 235, .22),
    inset 0 1px 0 rgba(255,255,255,.98) !important;
}

.dark-particle-theme .hc-prev,
.dark-particle-theme .hc-next {
  box-shadow:
    0 28px 82px rgba(0,0,0,.44),
    0 0 34px rgba(0,174,255,.18) !important;
}

/* 전역 fixed canvas는 보조용으로 낮추고, hero 전용 canvas가 메인 발광을 담당 */
.dark-particle-theme .erp-particle-bg {
  opacity: .50 !important;
  filter: saturate(1.35) brightness(1.18);
}

@media (max-width: 900px) {
  .hero-hex-particle-bg {
    opacity: .72;
  }
}

/* ══════════════════════════════════════════════════════════
   CLEAN SPATIAL HERO BACKGROUND OVERRIDE
   - 떠다니는 육각/파티클 canvas 삭제 버전
   - hero-carousel의 light UI는 유지하고, 배경은 공간감 중심으로 정리
   ══════════════════════════════════════════════════════════ */

/* 사용하지 않는 파티클 canvas 완전 비활성화 */
.erp-particle-bg,
.hero-hex-particle-bg {
  display: none !important;
  opacity: 0;
  visibility: hidden !important;
}

body.dark-particle-theme {
  background:
    radial-gradient(ellipse 80% 46% at 50% -12%, rgba(30, 64, 175, .28), transparent 62%),
    radial-gradient(ellipse 72% 48% at 88% 18%, rgba(14, 165, 233, .10), transparent 60%),
    linear-gradient(180deg, #020711 0%, #07111f 44%, #020711 100%) !important;
}

body.dark-particle-theme::before {
  opacity: .20 !important;
  background-image:
    linear-gradient(rgba(148, 163, 184, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .03) 1px, transparent 1px) !important;
  background-size: 72px 72px !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.56) 0%, transparent 72%) !important;
}

.dark-particle-theme .hero {
  isolation: isolate;
  overflow: hidden !important;
  background:
    linear-gradient(90deg, rgba(2, 7, 17, .98) 0%, rgba(3, 11, 24, .94) 36%, rgba(4, 14, 28, .82) 58%, rgba(2, 7, 17, .98) 100%),
    radial-gradient(ellipse 62% 42% at 73% 42%, rgba(0, 132, 255, .28), transparent 64%),
    radial-gradient(ellipse 42% 34% at 54% 74%, rgba(56, 189, 248, .11), transparent 72%),
    linear-gradient(180deg, #020711 0%, #041120 48%, #020814 100%) !important;
  box-shadow:
    inset 0 -1px 0 rgba(125, 211, 252, .10),
    inset 0 1px 0 rgba(255,255,255,.035) !important;
}

/* 기존 링/블롭/빔은 깨끗한 공간감을 위해 숨김 */
.dark-particle-theme .hero-rings,
.dark-particle-theme .hero-blob,
.dark-particle-theme .hero-glow,
.dark-particle-theme .hero-beam {
  display: none !important;
}

/* 오른쪽 화면 뒤쪽의 원근감 있는 공간 레이어 */
.dark-particle-theme .hero::before {
  content: '' !important;
  position: absolute !important;
  z-index: 1 !important;
  pointer-events: none !important;
  left: 34% !important;
  right: -12% !important;
  top: 48% !important;
  bottom: -26% !important;
  opacity: .44 !important;
  background-image:
    linear-gradient(rgba(56, 189, 248, .20) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .16) 1px, transparent 1px),
    linear-gradient(115deg, transparent 0 49%, rgba(56, 189, 248, .09) 49.4% 50.4%, transparent 51% 100%);
  background-size: 68px 46px, 68px 46px, 132px 132px !important;
  transform: perspective(980px) rotateX(66deg) translateY(-10px) !important;
  transform-origin: center bottom !important;
  filter: drop-shadow(0 0 20px rgba(0, 174, 255, .12)) !important;
  mask-image: radial-gradient(ellipse 78% 70% at 58% 46%, black 0%, rgba(0,0,0,.78) 46%, transparent 83%) !important;
}

/* 화면 뒤 ambient glow + 좌우 vignette */
.dark-particle-theme .hero::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;
  pointer-events: none !important;
  background:
    radial-gradient(ellipse 46% 36% at 72% 46%, rgba(0, 132, 255, .24), transparent 62%),
    radial-gradient(ellipse 30% 22% at 65% 64%, rgba(34, 211, 238, .12), transparent 70%),
    linear-gradient(90deg, rgba(2, 6, 23, .82) 0%, transparent 32%, transparent 70%, rgba(2, 6, 23, .55) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, .06) 0%, rgba(2, 6, 23, .28) 100%) !important;
  opacity: 1 !important;
}

.dark-particle-theme .hero-content,
.dark-particle-theme .hero-carousel {
  position: relative !important;
  z-index: 5 !important;
}

/* hero 텍스트는 다크 배경에서 선명하게 */
.dark-particle-theme .hero-badge {
  background: rgba(8, 19, 36, .72) !important;
  border-color: rgba(56, 189, 248, .28) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 36px rgba(0,0,0,.24) !important;
}

.dark-particle-theme .hero-badge-label {
  color: rgba(125, 211, 252, .92) !important;
}

.dark-particle-theme .hero-h1 {
  color: #ffffff !important;
  text-shadow: 0 18px 54px rgba(0,0,0,.52) !important;
}

.dark-particle-theme .hero-h1-sub {
  color: rgba(226, 240, 255, .84) !important;
  font-style: normal !important;
  text-shadow: 0 10px 32px rgba(0,0,0,.32) !important;
}

.dark-particle-theme .hero-h1-accent {
  font-style: normal !important;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 34%, #3b82f6 72%, #19f0ff 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}

.dark-particle-theme .hero-h1 em {
  color: #2ba7ff !important;
  text-shadow:
    0 0 24px rgba(0, 132, 255, .28),
    0 0 54px rgba(14, 165, 233, .16) !important;
}

.dark-particle-theme .hero-sub {
  color: rgba(226, 240, 255, .76) !important;
}

.dark-particle-theme .hero-cta {
  background: linear-gradient(135deg, #0984ff 0%, #0057ff 62%, #00b7ff 100%) !important;
  box-shadow:
    0 18px 44px rgba(0, 102, 255, .30),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

.dark-particle-theme .hero-cta-outline {
  background: rgba(5, 16, 34, .58) !important;
  color: rgba(241, 249, 255, .92) !important;
  border-color: rgba(125, 211, 252, .30) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 36px rgba(0,0,0,.22) !important;
}

/* carousel 주변을 파티클 대신 무대/공간감으로 처리 */
.dark-particle-theme .hero-carousel {
  perspective: 1400px;
  transform-style: preserve-3d;
}

.dark-particle-theme .hero-carousel::before {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  inset: -110px -190px -120px -190px !important;
  opacity: .88 !important;
  background:
    radial-gradient(ellipse 42% 30% at 50% 45%, rgba(0, 132, 255, .25), transparent 68%),
    radial-gradient(ellipse 66% 34% at 52% 68%, rgba(14, 165, 233, .12), transparent 76%),
    linear-gradient(90deg, transparent 0%, rgba(56, 189, 248, .10) 50%, transparent 100%) !important;
  filter: blur(2px) saturate(1.1) !important;
}

.dark-particle-theme .hero-carousel::after {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  left: -26% !important;
  right: -26% !important;
  top: 54% !important;
  bottom: -31% !important;
  opacity: .34 !important;
  background-image:
    linear-gradient(rgba(56, 189, 248, .16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .14) 1px, transparent 1px);
  background-size: 74px 42px !important;
  transform: perspective(900px) rotateX(68deg) translateY(-8px) !important;
  transform-origin: center bottom !important;
  mask-image: radial-gradient(ellipse 78% 64% at 50% 40%, black 0%, transparent 78%) !important;
  filter: drop-shadow(0 0 18px rgba(56, 189, 248, .10)) !important;
}

/* 화면 자체는 light 버전 유지 + 다크 배경에 뜨는 느낌 강화 */
.dark-particle-theme .hc-card {
  background: #ffffff !important;
  border-color: rgba(219, 234, 254, .88) !important;
  outline: 1px solid rgba(255,255,255,.30);
}

.dark-particle-theme .hc-active {
  box-shadow:
    0 44px 120px rgba(0,0,0,.58),
    0 0 0 1px rgba(219, 234, 254, .74),
    0 0 56px rgba(0, 132, 255, .18),
    inset 0 1px 0 rgba(255,255,255,1) !important;
}

.dark-particle-theme .hc-prev,
.dark-particle-theme .hc-next {
  opacity: .55 !important;
  filter: blur(2.2px) saturate(.94) brightness(.92) !important;
  box-shadow:
    0 28px 74px rgba(0,0,0,.48),
    0 0 24px rgba(0,132,255,.10) !important;
}

.dark-particle-theme .hc-prev:hover,
.dark-particle-theme .hc-next:hover {
  opacity: .72 !important;
  filter: blur(1px) saturate(1) brightness(.98) !important;
}

.dark-particle-theme .hc-prev::after,
.dark-particle-theme .hc-next::after {
  background: linear-gradient(180deg, rgba(2, 6, 23, .18), rgba(2, 6, 23, .28)) !important;
}

.dark-particle-theme .hc-bar,
.dark-particle-theme .anchor-browser-bar {
  background: linear-gradient(180deg, #ffffff 0%, #f5f8fc 100%) !important;
  border-bottom-color: rgba(15, 23, 42, .08) !important;
}

.dark-particle-theme .hc-screen,
.dark-particle-theme .hc-img {
  background: #ffffff !important;
  filter: none !important;
  mix-blend-mode: normal !important;
}

@media (max-width: 900px) {
  .dark-particle-theme .hero::before {
    left: -10% !important;
    right: -10% !important;
    top: 54% !important;
    opacity: .22 !important;
  }

  .dark-particle-theme .hero-carousel::before {
    inset: -70px -70px -80px -70px !important;
  }

  .dark-particle-theme .hero-carousel::after {
    left: -10% !important;
    right: -10% !important;
    top: 58% !important;
    opacity: .22 !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-10
   - GNB 로고 앞 아이콘: 기존 원형 그라데이션 아이콘 복원
   - CTA 주변 끊겨 보이는 라인/그리드 제거
   - 파티클 없이 화면 중심 공간감은 소프트 글로우/비네트로 정리
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .nav-logo-icon {
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  clip-path: none !important;
  background: conic-gradient(from 225deg at 50% 50%, #3633ec 0%, #3863ee 30%, #19f0ff 55%, #067ddf 80%, #4a4cec 100%) !important;
  box-shadow: none !important;
}

/* hero 전체 배경: 선형/그리드 패턴 삭제, 부드러운 공간감만 유지 */
.dark-particle-theme .hero::before {
  content: '' !important;
  position: absolute !important;
  z-index: 1 !important;
  pointer-events: none !important;
  left: 38% !important;
  right: -12% !important;
  top: 10% !important;
  bottom: -18% !important;
  opacity: .88 !important;
  background:
    radial-gradient(ellipse 48% 34% at 58% 38%, rgba(0, 132, 255, .22), transparent 70%),
    radial-gradient(ellipse 62% 26% at 54% 72%, rgba(14, 165, 233, .13), transparent 78%),
    radial-gradient(ellipse 70% 18% at 54% 82%, rgba(15, 23, 42, .48), transparent 70%) !important;
  background-size: auto !important;
  transform: none !important;
  filter: blur(.4px) saturate(1.08) !important;
  mask-image: radial-gradient(ellipse 82% 72% at 54% 52%, black 0%, rgba(0,0,0,.78) 48%, transparent 84%) !important;
}

/* carousel 뒤쪽의 끊긴 라인/그리드 제거 */
.dark-particle-theme .hero-carousel::after {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  left: -18% !important;
  right: -18% !important;
  top: 52% !important;
  bottom: -25% !important;
  opacity: .42 !important;
  background:
    radial-gradient(ellipse 60% 26% at 50% 52%, rgba(0, 132, 255, .16), transparent 72%),
    radial-gradient(ellipse 72% 18% at 50% 78%, rgba(2, 6, 23, .62), transparent 76%) !important;
  background-size: auto !important;
  transform: none !important;
  filter: blur(10px) saturate(1.05) !important;
  mask-image: none !important;
}

/* CTA 버튼 아래로 배경 패턴이 비쳐 보이지 않도록 면을 정리 */
.dark-particle-theme .hero-cta-group {
  position: relative !important;
  z-index: 8 !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.dark-particle-theme .hero-cta-group::before {
  content: '' !important;
  position: absolute !important;
  inset: -10px -12px !important;
  z-index: -1 !important;
  border-radius: 22px !important;
  background: linear-gradient(90deg, rgba(2, 7, 17, .92), rgba(3, 12, 27, .72)) !important;
  box-shadow: 0 16px 46px rgba(0, 0, 0, .22) !important;
  opacity: .86 !important;
}

.dark-particle-theme .hero-cta-outline {
  background: rgba(7, 18, 36, .94) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.dark-particle-theme .hero-cta {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

@media (max-width: 900px) {
  .dark-particle-theme .hero::before {
    left: -8% !important;
    right: -8% !important;
    top: 42% !important;
    bottom: -10% !important;
    opacity: .46 !important;
  }

  .dark-particle-theme .hero-cta-group {
    flex-wrap: wrap !important;
  }
}


/* ═════════════════════════════════════════════════════════════
   FINAL PLAN SECTIONS — based on teaser-v4 planning
   Hero section above is intentionally untouched.
   ═════════════════════════════════════════════════════════════ */
.plan-section {
  position: relative;
  padding: 124px 0;
  overflow: hidden;
  background: #050f1e;
  color: #ecf4ff;
}
.plan-wrap {
  width: min(1180px, calc(100% - 64px));
  margin: 0 auto;
}
.plan-section-head {
  text-align: center;
  max-width: 840px;
  margin: 0 auto 64px;
}
.plan-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.plan-eyebrow::before,
.plan-eyebrow::after {
  content: '';
  display: block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.78));
}
.plan-eyebrow::after {
  background: linear-gradient(90deg, rgba(96,165,250,.78), transparent);
}
.plan-title {
  margin: 0;
  color: #fff;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.18;
  font-weight: 850;
  letter-spacing: -.045em;
  word-break: keep-all;
}
.plan-title em {
  color: #60a5fa;
  font-style: normal;
}
.plan-lead {
  margin: 22px auto 0;
  max-width: 760px;
  color: rgba(226,238,255,.72);
  font-size: 17px;
  line-height: 1.78;
  letter-spacing: -.015em;
  word-break: keep-all;
}

/* Difference */
.plan-pillars {
  background:
    radial-gradient(circle at 50% 0%, rgba(47,124,255,.18), transparent 36%),
    linear-gradient(180deg, #061426 0%, #07182c 45%, #050f1e 100%);
  border-top: 1px solid rgba(255,255,255,.08);
}
.plan-pillars::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 1px;
  height: 88px;
  background: linear-gradient(180deg, rgba(59,130,246,.64), transparent);
}
.plan-pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  position: relative;
}
.plan-pillar-grid::before {
  content: '';
  position: absolute;
  top: 72px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59,130,246,.36), transparent);
}
.plan-pillar {
  position: relative;
  min-height: 430px;
  padding: 34px 28px 30px;
  border: 1px solid rgba(110,147,195,.23);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(19,46,80,.74), rgba(7,20,38,.62)),
    linear-gradient(135deg, rgba(255,255,255,.055), transparent 42%);
  box-shadow: 0 24px 80px rgba(0,0,0,.28);
  backdrop-filter: blur(14px);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
  z-index: 1;
}
.plan-pillar:hover {
  transform: translateY(-6px);
  border-color: rgba(96,165,250,.56);
  box-shadow: 0 34px 100px rgba(0,0,0,.42), 0 0 0 1px rgba(37,99,235,.12) inset;
}
.plan-pillar-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 22px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: linear-gradient(135deg, #19f0ff 0%, #3b82f6 42%, #1d4ed8 100%);
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(37,99,235,.10), 0 18px 38px rgba(37,99,235,.25);
}
.plan-pillar-eyebrow {
  margin: 0 0 12px;
  text-align: center;
  color: #60a5fa;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.plan-pillar-title {
  min-height: 64px;
  margin: 0 0 16px;
  text-align: center;
  color: #fff;
  font-size: 23px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -.035em;
}
.plan-pillar-desc {
  margin: 0 0 24px;
  color: rgba(226,238,255,.68);
  font-size: 14.5px;
  line-height: 1.72;
  text-align: center;
  word-break: keep-all;
}
.plan-flow-mini {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 54px;
  padding: 13px 12px;
  border: 1px dashed rgba(59,130,246,.32);
  border-radius: 14px;
  background: rgba(0,0,0,.22);
}
.plan-flow-mini span {
  padding: 5px 10px;
  border: 1px solid rgba(59,130,246,.38);
  border-radius: 999px;
  color: #93c5fd;
  background: rgba(37,99,235,.11);
  font-size: 12px;
  font-weight: 750;
  white-space: nowrap;
}
.plan-flow-mini i {
  width: 18px;
  height: 1px;
  background: linear-gradient(90deg, rgba(37,99,235,.18), rgba(96,165,250,.72));
  position: relative;
}
.plan-flow-mini i::after {
  content: '';
  position: absolute;
  right: -1px;
  top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid rgba(96,165,250,.72);
  border-right: 1px solid rgba(96,165,250,.72);
  transform: rotate(45deg);
}

/* Feature plan */
.plan-features {
  background:
    radial-gradient(circle at 0% 12%, rgba(29,114,232,.14), transparent 34%),
    radial-gradient(circle at 100% 28%, rgba(29,114,232,.12), transparent 28%),
    linear-gradient(180deg, #050f1e 0%, #06172b 52%, #050f1e 100%);
  border-top: 1px solid rgba(255,255,255,.07);
}
.plan-module-cloud {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: -18px auto 44px;
  max-width: 1040px;
}
.plan-module-chip {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 15px;
  border-radius: 999px;
  border: 1px solid rgba(129,162,207,.22);
  background: rgba(255,255,255,.035);
  color: rgba(226,238,255,.74);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: -.015em;
}
.plan-module-chip.is-core {
  color: #93c5fd;
  border-color: rgba(59,130,246,.36);
  background: rgba(37,99,235,.12);
  box-shadow: 0 0 24px rgba(37,99,235,.10);
}
.plan-core-panel {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 28px;
  padding: 34px 38px;
  border-radius: 28px;
  border: 1px solid rgba(59,130,246,.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.16), transparent 34%),
    linear-gradient(135deg, rgba(16,41,73,.78), rgba(7,20,38,.66));
  box-shadow: 0 26px 88px rgba(0,0,0,.3);
}
.plan-core-kicker {
  margin: 0 0 9px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: .16em;
}
.plan-core-copy h3 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 26px;
  line-height: 1.34;
  font-weight: 850;
  letter-spacing: -.035em;
  word-break: keep-all;
}
.plan-core-copy p:last-child {
  margin: 0;
  color: rgba(226,238,255,.68);
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}
.plan-core-flow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 9px;
}
.plan-core-flow span {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(96,165,250,.42);
  background: rgba(37,99,235,.12);
  color: #93c5fd;
  font-size: 14px;
  font-weight: 800;
}
.plan-core-flow i {
  width: 16px;
  height: 1px;
  background: rgba(96,165,250,.55);
}
.plan-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.plan-feature-card {
  position: relative;
  min-height: 360px;
  padding: 30px 28px 28px;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(110,147,195,.22);
  background:
    linear-gradient(180deg, rgba(18,43,75,.6), rgba(6,18,35,.74)),
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 48%);
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  transition: transform .32s ease, border-color .32s ease, box-shadow .32s ease;
}
.plan-feature-card::before {
  content: '';
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(66,153,255,.7), transparent);
  opacity: 0;
  transition: opacity .32s ease;
}
.plan-feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(66,153,255,.46);
  box-shadow: 0 26px 88px rgba(0,0,0,.34);
}
.plan-feature-card:hover::before { opacity: 1; }
.plan-feature-card.is-core {
  border-color: rgba(59,130,246,.34);
  background:
    radial-gradient(circle at 100% 0%, rgba(37,99,235,.16), transparent 34%),
    linear-gradient(180deg, rgba(23,48,80,.66), rgba(7,20,38,.76));
}
.plan-feature-card.is-core::before {
  background: linear-gradient(90deg, transparent, rgba(96,165,250,.82), transparent);
  opacity: .6;
}
.plan-feature-head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.plan-feature-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(96,165,250,.35);
  background: linear-gradient(135deg, rgba(59,130,246,.96), rgba(29,78,216,.96));
  box-shadow: 0 16px 38px rgba(29,78,216,.32), inset 0 1px 0 rgba(255,255,255,.22);
}
.plan-feature-card.is-core .plan-feature-icon {
  border-color: rgba(25,240,255,.34);
  background: linear-gradient(135deg, rgba(25,240,255,.95), rgba(37,99,235,.96) 55%, rgba(30,58,138,.96));
  box-shadow: 0 18px 44px rgba(37,99,235,.42), inset 0 1px 0 rgba(255,255,255,.24);
}
.plan-feature-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.18));
}
.plan-feature-type {
  margin: 0 0 3px;
  color: rgba(148,185,235,.86);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.plan-feature-card.is-core .plan-feature-type { color: #60a5fa; }
.plan-feature-card h3 {
  margin: 0;
  color: #fff;
  font-size: 23px;
  font-weight: 850;
  letter-spacing: -.035em;
}
.plan-feature-desc {
  margin: 0 0 20px;
  color: rgba(226,238,255,.7);
  font-size: 15px;
  line-height: 1.72;
  word-break: keep-all;
}
.plan-feature-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.plan-feature-list li {
  position: relative;
  padding-left: 15px;
  color: rgba(226,238,255,.68);
  font-size: 14px;
  line-height: 1.62;
  word-break: keep-all;
}
.plan-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .72em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #60a5fa;
  box-shadow: 0 0 10px rgba(96,165,250,.55);
}
.plan-feature-list b {
  color: #fff;
  font-weight: 800;
}

/* Signup */
.plan-signup {
  background:
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.16), transparent 34%),
    linear-gradient(180deg, #050f1e 0%, #030b16 100%);
  padding: 132px 0;
  border-top: 1px solid rgba(255,255,255,.07);
}
.plan-signup-box {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 52px;
  border-radius: 32px;
  border: 1px solid rgba(59,130,246,.28);
  background:
    linear-gradient(180deg, rgba(18,43,75,.68), rgba(6,18,35,.74)),
    radial-gradient(circle at 50% 0%, rgba(37,99,235,.18), transparent 42%);
  box-shadow: 0 30px 100px rgba(0,0,0,.4);
}
.plan-email-form.final-email-form {
  margin-top: 34px;
  background: rgba(3,11,22,.82);
  border-color: rgba(128,160,207,.22);
  box-shadow: 0 18px 58px rgba(0,0,0,.28);
}
.plan-email-form .final-email-submit {
  background: linear-gradient(135deg, #3b82f6, #1d4ed8);
  color: #ffffff;
}
.plan-email-form .final-email-submit:hover {
  box-shadow: 0 14px 38px rgba(59,130,246,.28);
}

@media (max-width: 980px) {
  .plan-wrap { width: min(100% - 40px, 1180px); }
  .plan-pillar-grid,
  .plan-feature-grid,
  .plan-core-panel { grid-template-columns: 1fr; }
  .plan-pillar-grid::before { display: none; }
  .plan-core-flow { justify-content: flex-start; }
}
@media (max-width: 640px) {
  .plan-section { padding: 86px 0; }
  .plan-title { font-size: 30px; }
  .plan-lead { font-size: 15px; }
  .plan-pillar, .plan-feature-card { padding: 26px 22px; }
  .plan-signup-box { padding: 40px 22px; }
  .plan-core-flow span { width: 58px; height: 58px; border-radius: 15px; }
}


/* ── Hero copy final: teaser-v4 카피 원문 반영 / 기울임 제거 ── */
.dark-particle-theme .hero-h1 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  color: #ffffff !important;
  font-style: normal !important;
  line-height: 1.14 !important;
  margin-bottom: 24px !important;
}
.dark-particle-theme .hero-h1-sub,
.dark-particle-theme .hero-h1-main,
.dark-particle-theme .hero-h1-accent {
  display: block !important;
  font-style: normal !important;
  word-break: keep-all !important;
}
.dark-particle-theme .hero-h1-sub {
  font-size: clamp(22px, 2.7vw, 36px) !important;
  font-weight: 720 !important;
  color: rgba(225, 239, 255, .88) !important;
  letter-spacing: -.035em !important;
}
.dark-particle-theme .hero-h1-main {
  font-size: clamp(34px, 5.4vw, 64px) !important;
  font-weight: 820 !important;
  color: #ffffff !important;
  letter-spacing: -.045em !important;
}
.dark-particle-theme .hero-h1-accent {
  font-size: clamp(34px, 5.4vw, 64px) !important;
  font-weight: 840 !important;
  letter-spacing: -.045em !important;
  color: #38bdf8 !important;
  background: linear-gradient(90deg, #5fc8ff 0%, #2f8cff 42%, #1558d6 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
}
@media (max-width: 640px) {
  .dark-particle-theme .hero-h1 { gap: 6px !important; }
  .dark-particle-theme .hero-h1-sub { font-size: clamp(18px, 5.8vw, 24px) !important; }
  .dark-particle-theme .hero-h1-main,
  .dark-particle-theme .hero-h1-accent { font-size: clamp(29px, 8.2vw, 38px) !important; }
}

/* ══════════════════════════════════════════════════════════
   HERO CTA BACKGROUND CLEANUP
   - 버튼 뒤로 보이던 원근 그리드/경계 라인을 아래로 내려 정리
   - 은은한 배경감은 유지하되 CTA 주변은 매끈하게 처리
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero::before {
  top: 62% !important;
  bottom: -36% !important;
  left: 38% !important;
  right: -14% !important;
  opacity: .24 !important;
  background-image:
    linear-gradient(rgba(56, 189, 248, .10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, .08) 1px, transparent 1px) !important;
  background-size: 82px 48px, 82px 48px !important;
  mask-image: radial-gradient(ellipse 74% 56% at 58% 58%, rgba(0,0,0,.70) 0%, rgba(0,0,0,.42) 48%, transparent 82%) !important;
}

.dark-particle-theme .hero-cta-group {
  position: relative !important;
  isolation: isolate !important;
}

.dark-particle-theme .hero-cta-group::before {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  inset: -24px -42px !important;
  background: radial-gradient(ellipse at center, rgba(2, 7, 17, .88) 0%, rgba(2, 7, 17, .62) 44%, transparent 78%) !important;
  filter: blur(12px) !important;
}

.dark-particle-theme .hero-carousel::after {
  top: 60% !important;
  opacity: .24 !important;
}


/* ══════════════════════════════════════════════════════════
   HERO COPY VISIBILITY FIX
   - 최종 기획 문구 "완벽하게 아우르다"를 별도 강조 라인으로 고정
   - background-clip 호환 이슈 방지를 위해 실제 color 값을 직접 지정
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-content {
  max-width: 920px !important;
}
.dark-particle-theme .hero-copy-final {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  overflow: visible !important;
  white-space: normal !important;
}
.dark-particle-theme .hero-h1-final {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: relative !important;
  z-index: 3 !important;
  margin-top: 2px !important;
  font-style: normal !important;
  font-size: clamp(38px, 6.2vw, 76px) !important;
  line-height: 1.04 !important;
  font-weight: 860 !important;
  letter-spacing: -.055em !important;
  color: #43b8ff !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #43b8ff !important;
  text-shadow:
    0 0 22px rgba(67, 184, 255, .28),
    0 18px 54px rgba(0, 0, 0, .48) !important;
}
.dark-particle-theme .hero-h1-final::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: min(360px, 72vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(67,184,255,.62), transparent);
  opacity: .75;
}
@media (max-width: 640px) {
  .dark-particle-theme .hero-h1-final {
    font-size: clamp(34px, 9vw, 44px) !important;
    letter-spacing: -.045em !important;
  }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11
   - 모니터 뒤 그라데이션 글로우의 라인 경계 제거 (블러/마스크 강화)
   - 모니터 아래 바닥 그림자 추가로 공간감 부여
   ══════════════════════════════════════════════════════════ */

/* hero 하단 1px 라인 제거 */
.dark-particle-theme .hero {
  box-shadow: none !important;
}

/* 모니터 뒤 글로우: 경계 없이 자연스럽게 퍼지도록 재정의 */
.dark-particle-theme .hero-carousel::before {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  inset: -160px -240px -180px -240px !important;
  opacity: .9 !important;
  background:
    radial-gradient(ellipse 40% 32% at 50% 42%, rgba(0, 132, 255, .22) 0%, rgba(0, 132, 255, .10) 38%, rgba(0, 132, 255, .03) 64%, transparent 85%),
    radial-gradient(ellipse 58% 38% at 52% 60%, rgba(14, 165, 233, .10) 0%, rgba(14, 165, 233, .04) 50%, transparent 82%) !important;
  filter: blur(26px) saturate(1.08) !important;
  mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, black 0%, rgba(0,0,0,.6) 55%, transparent 92%) !important;
  -webkit-mask-image: radial-gradient(ellipse 70% 62% at 50% 50%, black 0%, rgba(0,0,0,.6) 55%, transparent 92%) !important;
  transform: none !important;
  background-size: auto !important;
}

/* 모니터 아래: 바닥에 떨어지는 부드러운 그림자 + 은은한 반사광 */
.dark-particle-theme .hero-carousel::after {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  left: 4% !important;
  right: 4% !important;
  top: auto !important;
  bottom: -64px !important;
  height: 110px !important;
  background:
    radial-gradient(ellipse 52% 48% at 50% 36%, rgba(0, 0, 0, .72) 0%, rgba(0, 0, 0, .36) 48%, transparent 78%),
    radial-gradient(ellipse 46% 40% at 50% 32%, rgba(0, 132, 255, .22) 0%, rgba(0, 132, 255, .08) 50%, transparent 78%) !important;
  filter: blur(14px) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  transform: none !important;
  background-size: auto !important;
  opacity: 1 !important;
}

/* hero 배경 글로우도 경계 없이 페이드아웃 */
.dark-particle-theme .hero::before {
  filter: blur(22px) saturate(1.06) !important;
  mask-image: radial-gradient(ellipse 86% 78% at 54% 52%, black 0%, rgba(0,0,0,.5) 58%, transparent 90%) !important;
  -webkit-mask-image: radial-gradient(ellipse 86% 78% at 54% 52%, black 0%, rgba(0,0,0,.5) 58%, transparent 90%) !important;
}

/* 좌우 비네트 경계 완화 */
.dark-particle-theme .hero::after {
  background:
    radial-gradient(ellipse 46% 36% at 72% 46%, rgba(0, 132, 255, .18) 0%, rgba(0, 132, 255, .07) 48%, transparent 80%),
    linear-gradient(90deg, rgba(2, 6, 23, .72) 0%, transparent 40%, transparent 62%, rgba(2, 6, 23, .48) 100%),
    linear-gradient(180deg, rgba(2, 6, 23, .04) 0%, rgba(2, 6, 23, .24) 100%) !important;
}

@media (max-width: 900px) {
  .dark-particle-theme .hero-carousel::before {
    inset: -90px -90px -110px -90px !important;
  }
  .dark-particle-theme .hero-carousel::after {
    bottom: -40px !important;
    height: 70px !important;
  }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (2)
   - 모니터 양옆(prev/next) 카드 어둡기를 살짝 완화
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hc-prev,
.dark-particle-theme .hc-next {
  opacity: .68 !important;
  filter: blur(2.2px) saturate(.97) brightness(.97) !important;
}

.dark-particle-theme .hc-prev::after,
.dark-particle-theme .hc-next::after {
  background: linear-gradient(180deg, rgba(2, 6, 23, .10), rgba(2, 6, 23, .18)) !important;
}

.dark-particle-theme .hc-prev:hover,
.dark-particle-theme .hc-next:hover {
  opacity: .82 !important;
  filter: blur(1px) saturate(1) brightness(1) !important;
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (3)
   - 히어로 서브/메인 라인: 통으로 위에서 살짝 떨어지는 등장
   - 글자 슬램은 강조 라인(완벽하게 아우르다)에만 유지
   ══════════════════════════════════════════════════════════ */
@keyframes h1-line-drop {
  0%   { opacity: 0; transform: translateY(-16px); }
  100% { opacity: 1; transform: translateY(0); }
}

.h1-line-drop {
  display: inline-block;
  opacity: 0;
  animation: h1-line-drop 1.1s cubic-bezier(.22, .8, .3, 1) forwards;
  will-change: transform, opacity;
}

/* span.hero-h1-sub / .hero-h1-main 은 블록 라인 유지 */
.hero-h1-sub.h1-line-drop,
.hero-h1-main.h1-line-drop {
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .h1-line-drop { animation: none; opacity: 1; transform: none; }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (4)
   - 히어로 배경: GNB 쪽은 진한 다크 → 모니터 쪽으로 갈수록 진블루
   - 모니터 3개(좌/중/우) 아래로 그림자가 보이도록 범위·강도 강화
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero {
  background:
    radial-gradient(ellipse 64% 40% at 50% 64%, rgba(20, 84, 196, .30), transparent 72%),
    linear-gradient(180deg,
      #020611 0%,
      #03102a 28%,
      #07204a 58%,
      #0b2c63 84%,
      #0d3270 100%) !important;
}

/* 모니터 3개 전체 폭을 덮는 바닥 그림자 (좌우 카드 영역까지 확장) */
.dark-particle-theme .hero-carousel::after {
  content: '' !important;
  position: absolute !important;
  z-index: -1 !important;
  pointer-events: none !important;
  left: -62% !important;
  right: -62% !important;
  top: auto !important;
  bottom: -70px !important;
  height: 130px !important;
  background:
    radial-gradient(ellipse 38% 46% at 50% 34%, rgba(1, 4, 12, .78) 0%, rgba(1, 4, 12, .40) 50%, transparent 78%),
    radial-gradient(ellipse 30% 36% at 18% 36%, rgba(1, 4, 12, .52) 0%, rgba(1, 4, 12, .24) 52%, transparent 80%),
    radial-gradient(ellipse 30% 36% at 82% 36%, rgba(1, 4, 12, .52) 0%, rgba(1, 4, 12, .24) 52%, transparent 80%) !important;
  filter: blur(13px) !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  transform: none !important;
  background-size: auto !important;
  opacity: 1 !important;
}

@media (max-width: 900px) {
  .dark-particle-theme .hero-carousel::after {
    left: -12% !important;
    right: -12% !important;
    bottom: -42px !important;
    height: 76px !important;
  }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (5)
   - "완벽하게 아우르다" 밑줄: 글자 슬램이 끝난 직후
     왼쪽 → 오른쪽으로 그어지는 효과
   - 라인 가로 길이를 문구 전체에 맞게 확장
   ══════════════════════════════════════════════════════════ */
@keyframes h1-underline-sweep {
  0%   { transform: translateX(-50%) scaleX(0); opacity: 0; }
  12%  { opacity: .85; }
  100% { transform: translateX(-50%) scaleX(1); opacity: .85; }
}

.dark-particle-theme .hero-h1-final::after {
  width: min(560px, 88vw) !important;
  height: 2px !important;
  transform-origin: left center !important;
  transform: translateX(-50%) scaleX(0);
  opacity: 0;
  background: linear-gradient(90deg, transparent, rgba(67,184,255,.72) 18%, rgba(67,184,255,.72) 82%, transparent) !important;
  box-shadow: 0 0 14px rgba(67, 184, 255, .35);
  /* 글자 슬램(0.95s 시작 + 마지막 글자 1.62s + 0.6s 지속) 종료 직후 시작 */
  animation: h1-underline-sweep .75s cubic-bezier(.3, 0, .2, 1) 2.25s forwards;
}

@media (prefers-reduced-motion: reduce) {
  .dark-particle-theme .hero-h1-final::after {
    animation: none !important;
    transform: translateX(-50%) scaleX(1) !important;
    opacity: .75 !important;
  }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (7)
   - 차별점 01/02/03 카드 정렬 정리
   - 문구 길이가 달라도 plan-flow-mini 박스가
     세 카드 모두 같은 높이(하단)에 정렬되도록 수정
   ══════════════════════════════════════════════════════════ */
.plan-pillar {
  display: flex;
  flex-direction: column;
  min-height: 470px;
}

/* 번호/아이브로/타이틀 영역 높이 통일 */
.plan-pillar-title {
  min-height: 66px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}

/* 설명이 남는 공간을 차지하고, flow-mini 는 항상 카드 맨 아래 고정 */
.plan-pillar-desc {
  flex: 1 1 auto;
  margin-bottom: 20px;
}

.plan-flow-mini {
  margin-top: auto;
  min-height: 134px;
  align-content: center;
}

@media (max-width: 960px) {
  .plan-pillar { min-height: 0; }
  .plan-flow-mini { min-height: 54px; }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (8)
   - plan-flow-mini: 화살표(i) 제거,
     PPT 프로세스형 갈매기(chevron) 블록이 겹쳐지며 방향 표현
   ══════════════════════════════════════════════════════════ */
.plan-flow-mini {
  gap: 6px 0;
}

.plan-flow-mini i {
  display: none;
}

.plan-flow-mini span {
  position: relative;
  border: none;
  border-radius: 0;
  margin-left: -9px;
  padding: 7px 18px 7px 24px;
  background: linear-gradient(180deg, rgba(37, 99, 235, .34), rgba(29, 78, 178, .26));
  color: #aecdfd;
  font-size: 12px;
  font-weight: 750;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%, 13px 50%);
}

/* 첫 블록: 왼쪽 노치 없이 둥근 시작 */
.plan-flow-mini span:first-child {
  margin-left: 0;
  padding-left: 18px;
  border-radius: 8px 0 0 8px;
  clip-path: polygon(0 0, calc(100% - 13px) 0, 100% 50%, calc(100% - 13px) 100%, 0 100%);
}

/* 뒤로 갈수록 살짝 밝아져 흐름 강조 */
.plan-flow-mini span:nth-of-type(even) {
  background: linear-gradient(180deg, rgba(56, 130, 246, .42), rgba(37, 99, 235, .30));
  color: #cfe3ff;
}

.plan-flow-mini span:last-child {
  background: linear-gradient(180deg, rgba(67, 184, 255, .50), rgba(37, 120, 235, .36));
  color: #eaf5ff;
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (9)
   - plan-flow-mini: 줄바꿈 없이 항상 가로 한 줄 유지
   ══════════════════════════════════════════════════════════ */
.plan-flow-mini {
  flex-wrap: nowrap;
  min-height: 0;
  padding: 14px 10px;
}

.plan-flow-mini span {
  flex: 0 1 auto;
  min-width: 0;
  font-size: 11.5px;
  padding: 6px 14px 6px 20px;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%, 11px 50%);
}

.plan-flow-mini span:first-child {
  padding-left: 14px;
  clip-path: polygon(0 0, calc(100% - 11px) 0, 100% 50%, calc(100% - 11px) 100%, 0 100%);
}

@media (max-width: 960px) {
  .plan-flow-mini { min-height: 0; }
}


/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (10)
   - 01/02/03 번호 배지: 라운드 스퀘어 → 정원형
   ══════════════════════════════════════════════════════════ */
.plan-pillar-num {
  border-radius: 50%;
}


/* ══════════════════════════════════════════════════════════
   REFERENCE MIX PATCH · 2026-06-11
   1) Black opening intro
   2) WACUS-inspired blue grid hover/cursor-follow effect
   3) PABLOAIR NEWS-inspired What's inside 22 function board
   ══════════════════════════════════════════════════════════ */

.anchor-open-intro {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #02040a;
  color: #fff;
  pointer-events: none;
}
.anchor-open-intro.is-hidden { display: none; }
.intro-curtain {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.3%;
  background:
    radial-gradient(circle at 50% 42%, rgba(29, 78, 216, .18), transparent 48%),
    linear-gradient(180deg, #02040a 0%, #030712 100%);
  transition: transform 1.2s cubic-bezier(.76,0,.24,1);
  will-change: transform;
}
.intro-curtain-left { left: 0; }
.intro-curtain-right { right: 0; }
.anchor-open-intro::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(rgba(59, 130, 246, .06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(59, 130, 246, .05) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: .34;
  mask-image: radial-gradient(circle at 50% 52%, black 0 38%, transparent 72%);
}
.intro-core {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  gap: 12px;
  transform: translateY(10px) scale(.98);
  opacity: 0;
  animation: introCoreIn .92s .18s cubic-bezier(.2,.8,.2,1) forwards;
  transition: opacity .82s ease .06s, transform .82s ease .06s, filter .82s ease .06s;
}
.intro-logo-mark {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: rgba(15, 23, 42, .74);
  border: 1px solid rgba(125, 211, 252, .28);
  box-shadow:
    0 0 0 1px rgba(59,130,246,.16),
    0 28px 80px rgba(0,0,0,.44),
    0 0 54px rgba(0, 132, 255, .30),
    inset 0 1px 0 rgba(255,255,255,.10);
}
.intro-logo-mark img { width: 42px; height: 42px; display: block; }
.intro-wordmark {
  font-size: clamp(32px, 5vw, 68px);
  font-weight: 850;
  letter-spacing: -.055em;
  line-height: 1;
  background: linear-gradient(90deg, #fff, #93c5fd 48%, #22d3ee 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.intro-loader-line {
  width: min(280px, 46vw);
  height: 2px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(148, 163, 184, .16);
}
.intro-loader-line span {
  display: block;
  height: 100%;
  width: 100%;
  transform-origin: left center;
  background: linear-gradient(90deg, #2563eb, #38bdf8, #fff);
  animation: introLine 1.18s .28s cubic-bezier(.4,0,.2,1) both;
}
.intro-core p {
  margin: 0;
  color: rgba(203, 213, 225, .62);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.anchor-open-intro.is-revealing .intro-curtain-left { transform: translateX(-101%); }
.anchor-open-intro.is-revealing .intro-curtain-right { transform: translateX(101%); }
.anchor-open-intro.is-revealing .intro-core {
  opacity: 0;
  transform: translateY(-6px) scale(.92);
  filter: blur(8px);
}
.anchor-open-intro.is-fading { opacity: 0; transition: opacity .42s ease; }
@keyframes introCoreIn { to { opacity: 1; transform: translateY(0) scale(1); } }
@keyframes introLine { from { transform: scaleX(0); } to { transform: scaleX(1); } }

.blue-grid-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .74;
}
.blue-grid-fx::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 22% 18%, rgba(37, 99, 235, .08), transparent 23%),
    radial-gradient(circle at 70% 24%, rgba(59, 130, 246, .11), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(96, 165, 250, .07), transparent 30%);
  opacity: .95;
}
.blue-grid-track {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: max-content;
  height: max-content;
  display: grid;
  grid-template-columns: repeat(var(--grid-cols, 32), var(--grid-cell-size, 64px));
  grid-auto-rows: var(--grid-cell-size, 64px);
  gap: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  opacity: .78;
}
.blue-grid-cell {
  position: relative;
  width: var(--grid-cell-size, 64px);
  height: var(--grid-cell-size, 64px);
  min-width: 0;
  min-height: 0;
  border-right: 1px solid rgba(96, 165, 250, .07);
  border-bottom: 1px solid rgba(96, 165, 250, .055);
  background: rgba(255, 255, 255, .006);
  transition: background .14s ease, box-shadow .14s ease, border-color .14s ease;
}
.blue-grid-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  opacity: .42;
}
.blue-grid-cell.is-far {
  background: rgba(59, 130, 246, .045);
}
.blue-grid-cell.is-near {
  background: rgba(59, 130, 246, .14);
  border-color: rgba(125, 211, 252, .16);
  box-shadow: inset 0 0 0 1px rgba(125, 211, 252, .08);
}
.blue-grid-cell.is-hot {
  background: linear-gradient(180deg, rgba(37, 99, 235, .78), rgba(30, 64, 175, .68));
  border-color: rgba(186, 230, 253, .42);
  box-shadow:
    inset 0 0 0 1px rgba(219, 234, 254, .36),
    0 0 18px rgba(37, 99, 235, .22);
}
.blue-grid-cursor {
  display: none;
}
.hero.is-grid-active .blue-grid-cursor { opacity: 0; }

.inside-news-board {
  position: relative;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 28px;
  margin: 0 0 34px;
  padding: 28px;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(96, 165, 250, .24);
  background:
    radial-gradient(circle at var(--news-x, 74%) var(--news-y, 26%), rgba(37, 99, 235, .26), transparent 30%),
    linear-gradient(135deg, rgba(8, 20, 41, .84), rgba(4, 13, 27, .74));
  box-shadow: 0 32px 96px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
}
.inside-news-board::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .34;
  background-image:
    linear-gradient(rgba(125, 211, 252, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, .06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 70% 62% at 72% 30%, black, transparent 74%);
}
.inside-news-head,
.inside-news-stage { position: relative; z-index: 1; }
.inside-news-kicker {
  margin: 0 0 14px;
  color: #60a5fa;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
}
.inside-news-head h3 {
  margin: 0;
  color: #f8fbff;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -.06em;
}
.inside-news-head p {
  margin: 18px 0 0;
  color: rgba(203, 213, 225, .70);
  font-size: 15px;
  line-height: 1.72;
  letter-spacing: -.02em;
}
.inside-news-stage {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  min-width: 0;
}
.inside-news-focus {
  min-height: 176px;
  padding: 24px 26px;
  border-radius: 24px;
  border: 1px solid rgba(125, 211, 252, .26);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, .20), transparent 42%),
    rgba(15, 23, 42, .58);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.07), 0 20px 54px rgba(0,0,0,.24);
  transition: transform .24s ease, border-color .24s ease, background .24s ease;
}
.inside-focus-label {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(37, 99, 235, .18);
  color: #93c5fd;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.inside-news-focus strong {
  display: block;
  margin-top: 14px;
  color: #fff;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -.04em;
}
.inside-news-focus p {
  margin: 12px 0 0;
  color: rgba(226, 232, 240, .72);
  font-size: 14px;
  line-height: 1.64;
  letter-spacing: -.015em;
}
.inside-news-focus.is-switching {
  transform: translateY(4px);
  border-color: rgba(56, 189, 248, .52);
  background:
    radial-gradient(circle at 100% 0%, rgba(56, 189, 248, .27), transparent 42%),
    rgba(15, 23, 42, .68);
}
.inside-news-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  max-height: 520px;
  overflow: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 165, 250, .42) rgba(15, 23, 42, .32);
}
.inside-news-list::-webkit-scrollbar { width: 7px; }
.inside-news-list::-webkit-scrollbar-track { background: rgba(15, 23, 42, .36); border-radius: 999px; }
.inside-news-list::-webkit-scrollbar-thumb { background: rgba(96, 165, 250, .42); border-radius: 999px; }
.inside-news-card {
  appearance: none;
  width: 100%;
  min-height: 78px;
  display: grid;
  grid-template-columns: 42px 40px minmax(0, 1fr) 26px;
  align-items: center;
  gap: 12px;
  padding: 14px;
  text-align: left;
  border: 1px solid rgba(148, 163, 184, .14);
  border-radius: 18px;
  background: rgba(15, 23, 42, .50);
  color: inherit;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}
.inside-news-card:hover,
.inside-news-card:focus-visible,
.inside-news-card.is-active {
  transform: translateY(-2px);
  border-color: rgba(96, 165, 250, .54);
  background: rgba(37, 99, 235, .16);
  box-shadow: 0 18px 42px rgba(0,0,0,.22), 0 0 0 1px rgba(56, 189, 248, .10);
  outline: none;
}
.inside-news-no {
  font-size: 13px;
  font-weight: 900;
  color: rgba(147, 197, 253, .84);
  font-family: var(--mono, monospace);
}
.inside-news-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(219, 234, 254, .88);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}
.inside-news-icon img { width: 21px; height: 21px; display: block; }
.inside-news-copy { min-width: 0; }
.inside-news-copy em {
  display: block;
  color: rgba(125, 211, 252, .72);
  font-style: normal;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.inside-news-copy strong {
  display: block;
  margin-top: 4px;
  color: rgba(248, 250, 252, .94);
  font-size: 15px;
  font-weight: 780;
  letter-spacing: -.025em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inside-news-arrow {
  color: rgba(125, 211, 252, .56);
  font-size: 18px;
  justify-self: end;
  transition: transform .18s ease, color .18s ease;
}
.inside-news-card:hover .inside-news-arrow,
.inside-news-card:focus-visible .inside-news-arrow,
.inside-news-card.is-active .inside-news-arrow {
  color: #e0f2fe;
  transform: translateX(3px);
}

@media (max-width: 1020px) {
  .inside-news-board { grid-template-columns: 1fr; }
  .inside-news-list { max-height: none; }
}
@media (max-width: 680px) {
  .blue-grid-fx {
    opacity: .48;
  }
  .blue-grid-track {
    opacity: .58;
  }
  .inside-news-board { padding: 22px 16px; border-radius: 24px; }
  .inside-news-list { grid-template-columns: 1fr; padding-right: 0; }
  .inside-news-card { grid-template-columns: 38px 38px minmax(0, 1fr) 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .anchor-open-intro { display: none !important; }
  .intro-core,
  .intro-loader-line span,
  .intro-curtain,
  .blue-grid-cell,
  .blue-grid-cursor,
  .inside-news-card,
  .inside-news-focus { animation: none !important; transition: none !important; }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (WACUS GRID DIRECTIONAL FINAL)
   - remove doubled grid-line look
   - full-hero single-line square grid
   - directional hover response like reference
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero::before {
  display: none !important;
}
.blue-grid-fx {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  pointer-events: none !important;
  overflow: hidden !important;
  display: block !important;
  padding: 0 !important;
  opacity: .9 !important;
}
.blue-grid-fx::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background:
    radial-gradient(circle at 16% 24%, rgba(59, 130, 246, .07), transparent 19%),
    radial-gradient(circle at 72% 22%, rgba(37, 99, 235, .10), transparent 24%),
    radial-gradient(circle at 82% 72%, rgba(96, 165, 250, .06), transparent 28%) !important;
  opacity: 1 !important;
}
.blue-grid-track {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-columns: repeat(var(--grid-cols, 40), var(--grid-cell-size, 43px)) !important;
  grid-template-rows: repeat(var(--grid-rows, 24), var(--grid-cell-size, 43px)) !important;
  gap: 0 !important;
  width: calc(var(--grid-cols, 40) * var(--grid-cell-size, 43px)) !important;
  height: calc(var(--grid-rows, 24) * var(--grid-cell-size, 43px)) !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  opacity: .72 !important;
  mask-image: linear-gradient(180deg, rgba(0,0,0,.78) 0%, black 16%, black 82%, rgba(0,0,0,.52) 100%) !important;
}
.blue-grid-cell {
  position: relative !important;
  min-width: 0 !important;
  min-height: 0 !important;
  width: auto !important;
  height: auto !important;
  background: rgba(255, 255, 255, .012) !important;
  border-right: 1px solid rgba(148, 163, 184, .10) !important;
  border-bottom: 1px solid rgba(148, 163, 184, .08) !important;
  box-shadow: none !important;
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease !important;
}
.blue-grid-cell::before {
  display: none !important;
}
.blue-grid-cell.is-near {
  background: rgba(37, 99, 235, .18) !important;
  border-color: rgba(125, 211, 252, .18) !important;
}
.blue-grid-cell.is-tail-1 {
  background: rgba(37, 99, 235, .11) !important;
  border-color: rgba(125, 211, 252, .14) !important;
}
.blue-grid-cell.is-tail-2 {
  background: rgba(37, 99, 235, .06) !important;
  border-color: rgba(125, 211, 252, .10) !important;
}
.blue-grid-cell.is-hot {
  background: rgba(22, 96, 235, .94) !important;
  border-color: rgba(219, 234, 254, .54) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.16),
    0 0 24px rgba(0, 144, 255, .28) !important;
}
.blue-grid-cursor {
  display: none !important;
}
@media (max-width: 680px) {
  .blue-grid-fx { opacity: .58 !important; }
  .blue-grid-track {
    grid-template-columns: repeat(var(--grid-cols, 22), var(--grid-cell-size, 18px)) !important;
    grid-template-rows: repeat(var(--grid-rows, 17), var(--grid-cell-size, 18px)) !important;
  }
  .blue-grid-cell.is-hot {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.12) !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-11 (11)
   - THE ANCHOR DIFFERENCE chevron flow: remove dashed wrapper box
   ══════════════════════════════════════════════════════════ */
.plan-flow-mini {
  border: none !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 10px 0 !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (12)
   - THE ANCHOR DIFFERENCE chevron flow: enlarge within previous dashed-box space
   ══════════════════════════════════════════════════════════ */
.plan-flow-mini {
  justify-content: center !important;
  padding: 12px 0 !important;
  gap: 0 !important;
}

.plan-flow-mini span {
  flex: 0 1 auto !important;
  white-space: nowrap !important;
  font-size: 12px !important;
  line-height: 1 !important;
  margin-left: -10px !important;
  padding: 8px 16px 8px 22px !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%, 12px 50%) !important;
}

.plan-flow-mini span:first-child {
  margin-left: 0 !important;
  padding-left: 16px !important;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%) !important;
}

@media (max-width: 960px) {
  .plan-flow-mini {
    padding: 10px 0 !important;
  }

  .plan-flow-mini span {
    font-size: 11.5px !important;
    padding: 7px 14px 7px 20px !important;
  }

  .plan-flow-mini span:first-child {
    padding-left: 14px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (13)
   - WHAT'S INSIDE: remove gradients from icon backgrounds and top accent lines
   ══════════════════════════════════════════════════════════ */
.plan-feature-card::before {
  background: rgba(66,153,255,.62) !important;
}
.plan-feature-card.is-core::before {
  background: rgba(96,165,250,.72) !important;
}
.plan-feature-icon {
  background: rgba(37,99,235,.92) !important;
  box-shadow: 0 16px 38px rgba(29,78,216,.24), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.plan-feature-card.is-core .plan-feature-icon {
  border-color: rgba(96,165,250,.36) !important;
  background: rgba(29,78,216,.92) !important;
  box-shadow: 0 18px 44px rgba(37,99,235,.28), inset 0 1px 0 rgba(255,255,255,.18) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (15)
   - HERO CTA: remove gradient and use monitor main blue
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-cta {
  background: #008cff !important;
  color: #ffffff !important;
  box-shadow:
    0 18px 44px rgba(0, 140, 255, .28),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}

.dark-particle-theme .hero-cta:hover {
  background: #1297ff !important;
  box-shadow:
    0 20px 48px rgba(0, 140, 255, .32),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (16)
   - HERO CTA refinement: radius, shadow, and balance with outline button
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-cta,
.dark-particle-theme .hero-cta-outline {
  padding: 12px 24px !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
}

.dark-particle-theme .hero-cta {
  box-shadow:
    0 12px 28px rgba(0, 140, 255, .22),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}

.dark-particle-theme .hero-cta:hover {
  box-shadow:
    0 16px 34px rgba(0, 140, 255, .26),
    inset 0 1px 0 rgba(255,255,255,.24) !important;
}

.dark-particle-theme .hero-cta-outline {
  color: rgba(241, 249, 255, .96) !important;
  border-color: rgba(0, 140, 255, .28) !important;
  background: rgba(7, 18, 36, .82) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.06),
    0 10px 26px rgba(0,0,0,.18) !important;
}

.dark-particle-theme .hero-cta-outline:hover {
  color: #ffffff !important;
  border-color: rgba(0, 140, 255, .52) !important;
  background: rgba(0, 140, 255, .10) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.08),
    0 14px 30px rgba(0,0,0,.22) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (17)
   - WHAT'S INSIDE: remove small English sub labels (Anchor Core / ERP Module)
   ══════════════════════════════════════════════════════════ */
.plan-feature-type {
  display: none !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (18)
   - WHAT'S INSIDE: one-line marquee for plan-module-cloud
   ══════════════════════════════════════════════════════════ */
.plan-module-cloud.plan-module-marquee {
  position: relative !important;
  display: block !important;
  max-width: 100% !important;
  margin: -10px auto 44px !important;
  padding: 10px 0 !important;
  overflow: hidden !important;
  mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 7%, black 93%, transparent 100%);
}
.plan-module-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 10px;
  animation: planModuleMarquee 34s linear infinite;
  will-change: transform;
}
.plan-module-marquee-set {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 10px;
  min-width: max-content;
}
.plan-module-cloud.plan-module-marquee:hover .plan-module-marquee-track {
  animation-play-state: paused;
}
.plan-module-chip {
  flex: 0 0 auto;
  height: 38px;
  padding: 0 16px;
  white-space: nowrap;
}
@keyframes planModuleMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-50% - 5px)); }
}
@media (max-width: 900px) {
  .plan-module-cloud.plan-module-marquee {
    margin: -6px auto 34px !important;
  }
  .plan-module-marquee-track {
    animation-duration: 30s;
  }
  .plan-module-chip {
    height: 36px;
    padding: 0 14px;
    font-size: 12.5px;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (19)
   - WHAT'S INSIDE marquee refinement: bigger chips, hover emphasis, click linking
   ══════════════════════════════════════════════════════════ */
.plan-module-cloud.plan-module-marquee {
  margin: -4px auto 48px !important;
}
.plan-module-marquee-track {
  gap: 12px !important;
}
.plan-module-marquee-set {
  gap: 12px !important;
}
.plan-module-chip {
  position: relative;
  flex: 0 0 auto;
  height: 42px !important;
  padding: 0 18px !important;
  white-space: nowrap;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: rgba(236,244,255,.84) !important;
  border-color: rgba(129,162,207,.26) !important;
  background: rgba(255,255,255,.045) !important;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease;
}
.plan-module-chip:hover,
.plan-module-chip:focus-visible,
.plan-module-chip.is-active {
  color: #ffffff !important;
  border-color: rgba(67, 184, 255, .46) !important;
  background: rgba(0, 140, 255, .16) !important;
  box-shadow: 0 12px 28px rgba(0, 102, 255, .16), inset 0 1px 0 rgba(255,255,255,.08) !important;
  transform: translateY(-1px);
  outline: none;
}
.plan-module-chip.is-core:hover,
.plan-module-chip.is-core:focus-visible,
.plan-module-chip.is-core.is-active {
  background: rgba(37,99,235,.22) !important;
  border-color: rgba(96,165,250,.54) !important;
  box-shadow: 0 12px 30px rgba(37,99,235,.18), inset 0 1px 0 rgba(255,255,255,.08) !important;
}
.plan-feature-card.is-linked-focus {
  border-color: rgba(67, 184, 255, .52) !important;
  box-shadow: 0 0 0 2px rgba(67,184,255,.14), 0 26px 88px rgba(0,0,0,.34) !important;
  transform: translateY(-4px);
}
@media (max-width: 900px) {
  .plan-module-chip {
    height: 38px !important;
    padding: 0 16px !important;
    font-size: 13px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (20)
   - remove plan-core-flow box
   - refine marquee chips to square-ish cards
   ══════════════════════════════════════════════════════════ */
.plan-core-panel {
  grid-template-columns: 1fr !important;
}
.plan-core-flow {
  display: none !important;
}
.plan-core-copy {
  max-width: 100% !important;
}
.plan-module-chip {
  height: 44px !important;
  padding: 0 18px !important;
  border-radius: 8px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
}
@media (max-width: 900px) {
  .plan-module-chip {
    height: 40px !important;
    padding: 0 16px !important;
    font-size: 14px !important;
    border-radius: 8px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (21)
   - PRE-REGISTER copy line-break and center alignment
   ══════════════════════════════════════════════════════════ */
.plan-signup-box .plan-title,
.plan-signup-box .plan-lead {
  text-align: center !important;
}
.plan-signup-box .plan-lead {
  max-width: 620px !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (22)
   - PRE-REGISTER: open layout without card box
   - one-line main copy + small one-line sub copy
   ══════════════════════════════════════════════════════════ */
.plan-signup {
  padding: 148px 0 156px !important;
}
.plan-signup-box {
  width: 100% !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
}
.plan-signup-box .plan-title {
  margin: 0 !important;
  color: #ffffff !important;
  font-size: clamp(34px, 4.2vw, 58px) !important;
  font-weight: 850 !important;
  line-height: 1.16 !important;
  letter-spacing: -.05em !important;
  white-space: nowrap !important;
}
.plan-signup-box .plan-lead {
  max-width: 920px !important;
  margin: 20px auto 0 !important;
  color: rgba(226,238,255,.72) !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 1.7 !important;
  white-space: nowrap !important;
}
.plan-signup-box .plan-email-form.final-email-form {
  width: min(100%, 620px) !important;
  margin: 38px auto 0 !important;
}
@media (max-width: 900px) {
  .plan-signup {
    padding: 104px 0 112px !important;
  }
  .plan-signup-box .plan-title,
  .plan-signup-box .plan-lead {
    white-space: normal !important;
  }
  .plan-signup-box .plan-title {
    font-size: clamp(30px, 8vw, 44px) !important;
  }
  .plan-signup-box .plan-lead {
    max-width: 640px !important;
    font-size: 15px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (27)
   - HERO accent copy: match opening Anchor white-blue gradient
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-h1-final {
  color: #ffffff !important;
  background: linear-gradient(90deg, #ffffff 0%, #93c5fd 48%, #22d3ee 100%) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  text-shadow: none !important;
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, .18));
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (28)
   - restore HERO accent visibility with per-character gradient
   - raise only filled blue grid states by about 5%
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .hero-h1-final {
  color: #dbeafe !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  text-shadow: none !important;
  filter: drop-shadow(0 8px 24px rgba(56, 189, 248, .18));
}

.dark-particle-theme .hero-h1-final .h1-char {
  color: #dbeafe !important;
  background-image: linear-gradient(90deg, #ffffff 0%, #93c5fd 48%, #22d3ee 100%) !important;
  background-size: 800% 100% !important;
  background-repeat: no-repeat !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(1) { background-position: 0% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(2) { background-position: 14% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(3) { background-position: 28% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(4) { background-position: 42% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(5) { background-position: 56% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(6) { background-position: 70% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(7) { background-position: 84% 50% !important; }
.dark-particle-theme .hero-h1-final .h1-char:nth-of-type(8) { background-position: 100% 50% !important; }

.blue-grid-cell.is-near {
  background: rgba(43, 108, 244, .20) !important;
}
.blue-grid-cell.is-tail-1 {
  background: rgba(39, 106, 244, .13) !important;
}
.blue-grid-cell.is-tail-2 {
  background: rgba(35, 102, 242, .08) !important;
}
.blue-grid-cell.is-hot {
  background: rgba(27, 105, 246, .96) !important;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.18),
    0 0 25px rgba(0, 144, 255, .31) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (31)
   - Footer legal modal: restore true viewport overlay behavior
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .legal-modal {
  position: fixed !important;
  inset: 0 !important;
  z-index: 3000 !important;
  width: 100vw !important;
  height: 100vh !important;
}

.dark-particle-theme .legal-modal:not(.is-open) {
  display: none !important;
}

.dark-particle-theme .legal-modal.is-open {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.dark-particle-theme .legal-modal-backdrop {
  position: absolute !important;
  inset: 0 !important;
}

.dark-particle-theme .legal-modal-dialog {
  position: relative !important;
  z-index: 1 !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (32)
   - HERO monitor hover refinement v2: more noticeable grab/parallax effect
   ══════════════════════════════════════════════════════════ */
.hero-carousel {
  --hc-img-tx: 0px;
  --hc-img-ty: 0px;
}

.hc-active {
  cursor: grab;
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease, filter .22s ease !important;
}

.hc-active:active {
  cursor: grabbing;
}

.hero-carousel.is-hovering .hc-active {
  transform: translate3d(var(--hc-tx), var(--hc-ty), 0) rotateX(var(--hc-rx)) rotateY(var(--hc-ry)) scale(1.012) !important;
}

.hc-active .hc-screen {
  transform-style: preserve-3d;
}

.hc-active .hc-img {
  transition: transform .22s ease, filter .22s ease !important;
  transform: translate3d(var(--hc-img-tx), var(--hc-img-ty), 0) scale(1.018) !important;
  will-change: transform;
}

.hero-carousel.is-hovering .hc-active .hc-img {
  filter: brightness(1.02) saturate(1.03) !important;
}

.hero-carousel.is-hovering .hc-active::before {
  opacity: 1 !important;
}

.hero-carousel.is-hovering .hc-prev {
  opacity: .62 !important;
}

.hero-carousel.is-hovering .hc-next {
  opacity: .62 !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (33)
   - HERO monitor refinement: remove reverse image parallax
   - add tap/press feedback on side monitor clicks
   ══════════════════════════════════════════════════════════ */
.hero-carousel {
  --hc-img-tx: 0px;
  --hc-img-ty: 0px;
}

.hc-active .hc-img {
  transition: transform .22s ease, filter .22s ease !important;
  transform: scale(1.012) !important;
  will-change: transform;
}

.hero-carousel.is-hovering .hc-active .hc-img {
  filter: brightness(1.018) saturate(1.02) !important;
}

.hc-prev,
.hc-next {
  transition: transform .22s ease, opacity .22s ease, filter .22s ease, box-shadow .22s ease !important;
}

.hc-prev.is-tapped,
.hc-next.is-tapped {
  opacity: .92 !important;
  filter: blur(.4px) saturate(1.08) brightness(1.08) !important;
  box-shadow:
    0 20px 58px rgba(0,0,0,.42),
    0 0 0 1px rgba(219, 234, 254, .72),
    0 0 36px rgba(56, 189, 248, .26) !important;
}

.hc-prev.is-tapped::after,
.hc-next.is-tapped::after {
  background: linear-gradient(180deg, rgba(219, 234, 254, .03), rgba(56, 189, 248, .18)) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (34)
   - HERO monitor refinement v3: move whole monitor, not inner image
   ══════════════════════════════════════════════════════════ */
.hc-active .hc-img {
  transform: none !important;
  transition: filter .22s ease !important;
}

.hero-carousel.is-hovering .hc-active .hc-img {
  filter: brightness(1.015) saturate(1.02) !important;
}

.hc-prev:hover {
  transform: translateX(-64.5%) scale(0.875) translateY(8px) !important;
  opacity: .82 !important;
  filter: blur(.8px) saturate(1.02) brightness(1.02) !important;
}

.hc-next:hover {
  transform: translateX(64.5%) scale(0.875) translateY(8px) !important;
  opacity: .82 !important;
  filter: blur(.8px) saturate(1.02) brightness(1.02) !important;
}

.hc-prev.is-tapped {
  transform: translateX(-63.5%) scale(0.884) translateY(6px) !important;
}

.hc-next.is-tapped {
  transform: translateX(63.5%) scale(0.884) translateY(6px) !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (35)
   - WHAT'S INSIDE cards: unify top accent line thickness
   ══════════════════════════════════════════════════════════ */
.plan-feature-card::before,
.plan-feature-card.is-core::before {
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 1px !important;
  opacity: .5 !important;
  background: rgba(96,165,250,.62) !important;
}

.plan-feature-card:hover::before,
.plan-feature-card.is-core:hover::before {
  opacity: .75 !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (36)
   - WHAT'S INSIDE card header: full-width subtle divider
   - header zone darkened by about 10%
   ══════════════════════════════════════════════════════════ */
.plan-feature-card::before,
.plan-feature-card.is-core::before {
  display: none !important;
}

.plan-feature-head {
  margin: -30px -28px 22px !important;
  padding: 30px 28px 22px !important;
  background: rgba(0, 0, 0, .10) !important;
  border-bottom: 1px solid rgba(126, 166, 218, .18) !important;
}

.plan-feature-card:hover .plan-feature-head {
  border-bottom-color: rgba(126, 166, 218, .25) !important;
}

@media (max-width: 900px) {
  .plan-feature-head {
    margin: -26px -22px 20px !important;
    padding: 26px 22px 20px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (37)
   - Opening symbol: match GNB circular conic-gradient mark
   ══════════════════════════════════════════════════════════ */
.intro-logo-mark {
  width: 58px !important;
  height: 58px !important;
  border-radius: 50% !important;
  border: 0 !important;
  background: conic-gradient(
    from 225deg at 50% 50%,
    #3633ec 0%,
    #3863ee 30%,
    #19f0ff 55%,
    #067ddf 80%,
    #4a4cec 100%
  ) !important;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, .36),
    0 0 30px rgba(25, 240, 255, .16) !important;
}

.intro-logo-mark img {
  display: none !important;
}

/* Render the actual gradient SVG in the opening sequence. */
.intro-logo-mark {
  background: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  filter: none !important;
}

.intro-logo-mark img {
  display: block !important;
  filter:
    drop-shadow(0 0 10px rgba(52, 120, 246, .42))
    drop-shadow(0 0 22px rgba(25, 216, 242, .22));
}

@media (max-width: 640px) {
  .intro-logo-mark {
    width: 50px !important;
    height: 50px !important;
  }
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-12 (38)
   - Legal modal header: subtle blue-tinted visual separation
   ══════════════════════════════════════════════════════════ */
.dark-particle-theme .legal-modal-header {
  background:
    linear-gradient(180deg, rgba(22, 54, 104, .46) 0%, rgba(12, 28, 52, .34) 100%) !important;
  border-bottom: 1px solid rgba(96, 165, 250, .22) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .04) !important;
}

.dark-particle-theme .legal-modal-header h2 {
  color: #f8fbff !important;
}

.dark-particle-theme .legal-modal-close {
  background: rgba(96, 165, 250, .12) !important;
  border: 1px solid rgba(125, 211, 252, .14) !important;
  color: rgba(239, 246, 255, .86) !important;
}

.dark-particle-theme .legal-modal-close:hover {
  background: rgba(96, 165, 250, .20) !important;
  color: #ffffff !important;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (40)
   - WHAT'S INSIDE card headers: contextual image background per feature
   ══════════════════════════════════════════════════════════ */
.plan-feature-head {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}
.plan-feature-head > * {
  position: relative;
  z-index: 2;
}
.plan-feature-head::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: .34;
  background-image:
    linear-gradient(90deg, rgba(8,12,24,.72) 0%, rgba(8,12,24,.56) 38%, rgba(8,12,24,.28) 72%, rgba(8,12,24,.16) 100%),
    var(--feature-bg);
  background-size: cover;
  background-position: center center;
  filter: saturate(.92) brightness(.96);
}
.plan-feature-head::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(9,16,32,.10), rgba(9,16,32,.18));
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/hero03_production_mbom.svg'); }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/hero03_production_mbom.svg'); }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/hero04_cost_ebitda_detail.svg'); }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/hero08_inventory.svg'); }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/hero05_management_financial_status.svg'); }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/hero09_hr_payroll.svg'); }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/hero10_approval.svg'); }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/hero11_attendance.svg'); }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/hero10_approval.svg'); }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/hero05_management_financial_status.svg'); }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/hero02_main.svg'); }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/hero02_main.svg'); }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/hero07_finance.svg'); }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/hero09_hr_payroll.svg'); }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/hero08_inventory.svg'); }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/hero06_accounting_sales_purchase.svg'); }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/hero02_main.svg'); }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (41)
   - WHAT'S INSIDE card headers: searched external-related images
   ══════════════════════════════════════════════════════════ */
.plan-feature-head::before {
  opacity: .38 !important;
  background-image:
    linear-gradient(90deg, rgba(7,12,24,.84) 0%, rgba(7,12,24,.66) 34%, rgba(7,12,24,.34) 72%, rgba(7,12,24,.18) 100%),
    var(--feature-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: saturate(.92) brightness(.92) !important;
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/feature_search/business-meeting.png'); }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/feature_search/workflow-docs.png'); }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/feature_search/finance-metrics.png'); }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/feature_search/cashflow-dashboard.png'); }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/feature_search/financial-analysis.png'); }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/feature_search/financial-analysis.png'); }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/feature_search/approval-intro.png'); }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/feature_search/attendance-system.png'); }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/feature_search/approval-flow.png'); }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/feature_search/dashboard-overview.png'); }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/feature_search/dashboard-overview.png'); }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/feature_search/cashflow-dashboard.png'); }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/feature_search/financial-analysis.png'); }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/feature_search/dashboard-overview.png'); }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/feature_search/cashflow-dashboard.png'); }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/feature_search/calendar-time.png'); }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/feature_search/planning-calendar.png'); }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/feature_search/business-meeting.png'); }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/feature_search/business-meeting.png'); }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/feature_search/finance-metrics.png'); }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/feature_search/financial-analysis.png'); }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/feature_search/review-process.png'); }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (42)
   - preview using the 2 user-provided real photos only
   ══════════════════════════════════════════════════════════ */
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/user_feature/meeting-budget.jpg') !important; }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (43)
   - WHAT'S INSIDE headers: use real-photo backgrounds similar to the approved 2-card preview
   ══════════════════════════════════════════════════════════ */
.plan-feature-head::before {
  opacity: .40 !important;
  background-image:
    linear-gradient(90deg, rgba(7,12,24,.86) 0%, rgba(7,12,24,.70) 34%, rgba(7,12,24,.38) 72%, rgba(7,12,24,.20) 100%),
    var(--feature-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: saturate(.96) brightness(.92) !important;
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/user_feature/warehouse-inspection.png') !important; }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/user_feature/warehouse-team.png') !important; }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/user_feature/warehouse-scan.png') !important; }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/user_feature/meeting-budget.jpg') !important; }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/user_feature/office-meeting-2.png') !important; }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/user_feature/office-meeting-3.png') !important; }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/user_feature/office-meeting-2.png') !important; }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/user_feature/meeting-budget.jpg') !important; }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/user_feature/office-meeting-3.png') !important; }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/user_feature/office-meeting-2.png') !important; }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/user_feature/office-meeting-2.png') !important; }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/user_feature/office-meeting-3.png') !important; }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/user_feature/warehouse-tablet.png') !important; }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/user_feature/meeting-budget.jpg') !important; }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/user_feature/office-meeting-2.png') !important; }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/user_feature/calculator-cost.jpg') !important; }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/user_feature/office-meeting-3.png') !important; }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (44)
   - unique real-photo header backgrounds per feature card
   - Asian/Korean leaning where possible
   ══════════════════════════════════════════════════════════ */
.plan-feature-head::before {
  opacity: .42 !important;
  background-image:
    linear-gradient(90deg, rgba(7,12,24,.88) 0%, rgba(7,12,24,.72) 34%, rgba(7,12,24,.42) 72%, rgba(7,12,24,.22) 100%),
    var(--feature-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: saturate(.95) brightness(.92) !important;
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/user_feature_unique/production.jpg') !important; }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/user_feature_unique/outsourcing.jpg') !important; }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/user_feature_unique/cost.jpg') !important; }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/user_feature_unique/purchase.jpg') !important; }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/user_feature_unique/budget.jpg') !important; }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/user_feature_unique/yearend.jpg') !important; }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/user_feature_unique/approval.jpg') !important; }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/user_feature_unique/attendance.jpg') !important; }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/user_feature_unique/contract.jpg') !important; }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/user_feature_unique/report.jpg') !important; }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/user_feature_unique/master.jpg') !important; }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/user_feature_unique/collect.jpg') !important; }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/user_feature_unique/accounting.jpg') !important; }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/user_feature_unique/ai.jpg') !important; }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/user_feature_unique/finance.jpg') !important; }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/user_feature_unique/payroll.jpg') !important; }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/user_feature_unique/inventory.jpg') !important; }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/user_feature_unique/sales.jpg') !important; }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/user_feature_unique/b2b.jpg') !important; }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/user_feature_unique/ledger.jpg') !important; }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/user_feature_unique/tax.jpg') !important; }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/user_feature_unique/certificate.jpg') !important; }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (45)
   - refined unique real-photo banner backgrounds per card
   - fewer western faces / less obvious duplication / wider crops
   ══════════════════════════════════════════════════════════ */
.plan-feature-head::before {
  opacity: .43 !important;
  background-image:
    linear-gradient(90deg, rgba(7,12,24,.89) 0%, rgba(7,12,24,.74) 34%, rgba(7,12,24,.44) 72%, rgba(7,12,24,.24) 100%),
    var(--feature-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: saturate(.94) brightness(.91) !important;
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/user_feature_unique2/production.jpg') !important; }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/user_feature_unique2/outsourcing.jpg') !important; }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/user_feature_unique2/cost.jpg') !important; }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/user_feature_unique2/purchase.jpg') !important; }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/user_feature_unique2/budget.jpg') !important; }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/user_feature_unique2/yearend.jpg') !important; }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/user_feature_unique2/approval.jpg') !important; }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/user_feature_unique2/attendance.jpg') !important; }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/user_feature_unique2/contract.jpg') !important; }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/user_feature_unique2/report.jpg') !important; }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/user_feature_unique2/master.jpg') !important; }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/user_feature_unique2/collect.jpg') !important; }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/user_feature_unique2/accounting.jpg') !important; }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/user_feature_unique2/ai.jpg') !important; }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/user_feature_unique2/finance.jpg') !important; }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/user_feature_unique2/payroll.jpg') !important; }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/user_feature_unique2/inventory.jpg') !important; }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/user_feature_unique2/sales.jpg') !important; }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/user_feature_unique2/b2b.jpg') !important; }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/user_feature_unique2/ledger.jpg') !important; }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/user_feature_unique2/tax.jpg') !important; }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/user_feature_unique2/certificate.jpg') !important; }

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (46)
   - card headers remapped to a hybrid set:
   - distinct sources, fewer western faces, use img folder where helpful
   ══════════════════════════════════════════════════════════ */
.plan-feature-head::before {
  opacity: .42 !important;
  background-image:
    linear-gradient(90deg, rgba(7,12,24,.90) 0%, rgba(7,12,24,.75) 34%, rgba(7,12,24,.44) 72%, rgba(7,12,24,.24) 100%),
    var(--feature-bg) !important;
  background-size: cover !important;
  background-position: center center !important;
  filter: saturate(.94) brightness(.90) !important;
}
.plan-feature-card.feature-bg-production { --feature-bg: url('./img/feature_optimized/card-1.webp') !important; }
.plan-feature-card.feature-bg-outsourcing { --feature-bg: url('./img/feature_optimized/card-2.webp') !important; }
.plan-feature-card.feature-bg-cost { --feature-bg: url('./img/feature_optimized/card-3.webp') !important; }
.plan-feature-card.feature-bg-purchase { --feature-bg: url('./img/feature_optimized/card-4.webp') !important; }
.plan-feature-card.feature-bg-budget { --feature-bg: url('./img/feature_optimized/card-5.webp') !important; }
.plan-feature-card.feature-bg-yearend { --feature-bg: url('./img/feature_optimized/card-6.webp') !important; }
.plan-feature-card.feature-bg-approval { --feature-bg: url('./img/feature_optimized/card-7.webp') !important; }
.plan-feature-card.feature-bg-attendance { --feature-bg: url('./img/feature_optimized/card-8.webp') !important; }
.plan-feature-card.feature-bg-contract { --feature-bg: url('./img/feature_optimized/card-9.webp') !important; }
.plan-feature-card.feature-bg-report { --feature-bg: url('./img/feature_optimized/card-10.webp') !important; }
.plan-feature-card.feature-bg-master { --feature-bg: url('./img/feature_optimized/card-11.webp') !important; }
.plan-feature-card.feature-bg-collect { --feature-bg: url('./img/feature_optimized/card-12.webp') !important; }
.plan-feature-card.feature-bg-accounting { --feature-bg: url('./img/feature_optimized/card-13.webp') !important; }
.plan-feature-card.feature-bg-ai { --feature-bg: url('./img/optimized/hero02_main.webp') !important; }
.plan-feature-card.feature-bg-finance { --feature-bg: url('./img/feature_optimized/card-14.webp') !important; }
.plan-feature-card.feature-bg-payroll { --feature-bg: url('./img/feature_optimized/card-15.webp') !important; }
.plan-feature-card.feature-bg-inventory { --feature-bg: url('./img/feature_optimized/card-16.webp') !important; }
.plan-feature-card.feature-bg-sales { --feature-bg: url('./img/feature_optimized/card-17.webp') !important; }
.plan-feature-card.feature-bg-b2b { --feature-bg: url('./img/feature_optimized/card-18.webp') !important; }
.plan-feature-card.feature-bg-ledger { --feature-bg: url('./img/feature_optimized/card-19.webp') !important; }
.plan-feature-card.feature-bg-tax { --feature-bg: url('./img/feature_optimized/card-20.webp') !important; }
.plan-feature-card.feature-bg-certificate { --feature-bg: url('./img/feature_optimized/card-21.webp') !important; }

/* PERFORMANCE: 화면 밖 카드의 레이아웃과 페인트는 진입할 때까지 미룹니다. */
.plan-feature-card {
  content-visibility: auto;
  contain-intrinsic-size: auto 420px;
}

/* ══════════════════════════════════════════════════════════
   REQUEST PATCH 2026-06-15 (64)
   - remove '말만해 AI' card/chips
   - add HERO-like grid hover effect to WHAT'S INSIDE section
   ══════════════════════════════════════════════════════════ */
.plan-features {
  position: relative !important;
  overflow: hidden !important;
}
.plan-features > .plan-wrap {
  position: relative !important;
  z-index: 2 !important;
}
.features-grid-fx {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: .64;
}
.features-grid-track {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(var(--fgrid-cols, 34), var(--fgrid-cell-size, 54px));
  grid-template-rows: repeat(var(--fgrid-rows, 22), var(--fgrid-cell-size, 54px));
  justify-content: center;
  align-content: center;
  width: calc(var(--fgrid-cols, 34) * var(--fgrid-cell-size, 54px));
  height: calc(var(--fgrid-rows, 22) * var(--fgrid-cell-size, 54px));
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.features-grid-cell {
  position: relative;
  width: var(--fgrid-cell-size, 54px);
  height: var(--fgrid-cell-size, 54px);
  border-right: 1px solid rgba(148, 163, 184, .04);
  border-bottom: 1px solid rgba(148, 163, 184, .04);
  background: transparent;
  transition: background-color .18s ease, box-shadow .18s ease;
}
.features-grid-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .015);
}
.features-grid-cell.is-near {
  background: rgba(59, 130, 246, .10);
}
.features-grid-cell.is-tail-1 {
  background: rgba(59, 130, 246, .16);
}
.features-grid-cell.is-tail-2 {
  background: rgba(59, 130, 246, .08);
}
.features-grid-cell.is-hot {
  background: rgba(59, 130, 246, .24);
  box-shadow: 0 0 18px rgba(59, 130, 246, .10), inset 0 0 0 1px rgba(96, 165, 250, .10);
}
.features-grid-cursor { display:none; }
@media (max-width: 900px) {
  .features-grid-fx { opacity: .5; }
  .features-grid-track {
    grid-template-columns: repeat(var(--fgrid-cols, 22), var(--fgrid-cell-size, 18px));
    grid-template-rows: repeat(var(--fgrid-rows, 17), var(--fgrid-cell-size, 18px));
  }
}

/* PERFORMANCE: 수천 개의 셀 대신 한 개의 합성 레이어로 동일한 격자 효과를 표현합니다. */
.blue-grid-track,
.features-grid-track {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  transform: none !important;
  overflow: hidden !important;
  background-image:
    linear-gradient(rgba(148, 163, 184, .08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .09) 1px, transparent 1px) !important;
  background-size: var(--grid-cell-size, 44px) var(--grid-cell-size, 44px) !important;
  contain: strict;
}

.features-grid-track {
  background-image:
    linear-gradient(rgba(148, 163, 184, .04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, .04) 1px, transparent 1px) !important;
  background-size: var(--grid-cell-size, 48px) var(--grid-cell-size, 48px) !important;
}

.blue-grid-track::after,
.features-grid-track::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: var(--grid-cell-size, 44px);
  height: var(--grid-cell-size, 44px);
  box-sizing: border-box;
  border-radius: 0;
  pointer-events: none;
  opacity: var(--grid-glow-opacity, 0);
  transform: translate3d(var(--grid-glow-x, -300px), var(--grid-glow-y, -300px), 0);
  background: rgba(22, 96, 235, .86);
  border: 1px solid rgba(219, 234, 254, .42);
  box-shadow:
    var(--grid-step-neg, -44px) 0 rgba(37, 99, 235, .18),
    var(--grid-step, 44px) 0 rgba(37, 99, 235, .18),
    0 var(--grid-step-neg, -44px) rgba(37, 99, 235, .18),
    0 var(--grid-step, 44px) rgba(37, 99, 235, .18),
    var(--grid-tail-neg, -88px) 0 rgba(37, 99, 235, .08),
    var(--grid-tail, 88px) 0 rgba(37, 99, 235, .08),
    0 var(--grid-tail-neg, -88px) rgba(37, 99, 235, .08),
    0 var(--grid-tail, 88px) rgba(37, 99, 235, .08),
    inset 0 0 0 1px rgba(255,255,255,.12),
    0 0 22px rgba(0, 144, 255, .24);
  transition: opacity .18s ease;
  will-change: transform, opacity;
}

.features-grid-track::after {
  width: var(--grid-cell-size, 48px);
  height: var(--grid-cell-size, 48px);
  background: rgba(59, 130, 246, .20);
  border-color: rgba(96, 165, 250, .10);
  box-shadow:
    var(--grid-step-neg, -48px) 0 rgba(59, 130, 246, .10),
    var(--grid-step, 48px) 0 rgba(59, 130, 246, .10),
    0 var(--grid-step-neg, -48px) rgba(59, 130, 246, .10),
    0 var(--grid-step, 48px) rgba(59, 130, 246, .10),
    var(--grid-tail-neg, -96px) 0 rgba(59, 130, 246, .05),
    var(--grid-tail, 96px) 0 rgba(59, 130, 246, .05),
    0 var(--grid-tail-neg, -96px) rgba(59, 130, 246, .05),
    0 var(--grid-tail, 96px) rgba(59, 130, 246, .05),
    inset 0 0 0 1px rgba(96, 165, 250, .08),
    0 0 16px rgba(59, 130, 246, .08);
}

@media (max-width: 680px), (prefers-reduced-motion: reduce) {
  .blue-grid-track::after,
  .features-grid-track::after {
    display: none;
  }
}

/* PERFORMANCE: 대형 blur 레이어는 위치를 고정해 지속적인 전체 화면 재합성을 막습니다. */
.hero-blob {
  animation: none !important;
  will-change: auto !important;
}

/* BALANCED DEPTH: 광원 두 개만 합성 레이어로 움직여 입체감을 복원합니다. */
@keyframes anchor-depth-center {
  0%, 100% { transform: translate3d(-50%, 0, 0) scale(1); }
  50% { transform: translate3d(calc(-50% + 34px), -24px, 0) scale(1.045); }
}

@keyframes anchor-depth-side {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50% { transform: translate3d(-28px, 34px, 0) scale(1.04); }
}

.hero-blob-1,
.hero-blob-3 {
  animation: none !important;
  will-change: auto !important;
}

.blue-grid-track {
  mask-image: linear-gradient(180deg, rgba(0,0,0,.72) 0%, #000 18%, #000 76%, rgba(0,0,0,.26) 100%) !important;
}

@media (max-width: 680px), (prefers-reduced-motion: reduce) {
  .hero-blob-1,
  .hero-blob-3 {
    animation: none !important;
    will-change: auto !important;
  }
}

/* Final opening-logo override: render the SVG itself, never its rectangular box. */
.anchor-open-intro .intro-logo-mark {
  width: 58px !important;
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  filter: none !important;
  overflow: visible !important;
}

.anchor-open-intro .intro-logo-mark img {
  display: block !important;
  width: 58px !important;
  height: 70px !important;
  object-fit: contain !important;
  background: transparent !important;
  filter:
    drop-shadow(0 0 10px rgba(52, 120, 246, .42))
    drop-shadow(0 0 22px rgba(25, 216, 242, .22)) !important;
}

@media (max-width: 640px) {
  .anchor-open-intro .intro-logo-mark,
  .anchor-open-intro .intro-logo-mark img {
    width: 50px !important;
    height: 60px !important;
  }
}

/* Final responsive-copy visibility rules with sufficient specificity. */
body.dark-particle-theme .hero-h1 .hero-h1-sub-mobile,
body.dark-particle-theme .hero-content > .hero-sub-mobile {
  display: none !important;
}

.plan-title-mobile {
  display: none !important;
}

@media (max-width: 640px) {
  body.dark-particle-theme .hero-h1 .hero-h1-sub:not(.hero-h1-sub-mobile),
  body.dark-particle-theme .hero-content > .hero-sub:not(.hero-sub-mobile) {
    display: none !important;
  }

  body.dark-particle-theme .hero-h1 .hero-h1-sub-mobile,
  body.dark-particle-theme .hero-content > .hero-sub-mobile {
    display: block !important;
  }

  .plan-title-desktop {
    display: none !important;
  }

  .plan-title-mobile {
    display: block !important;
    white-space: nowrap !important;
  }

  .plan-title-mobile br {
    display: block !important;
    content: "" !important;
  }

  .plan-title-anchor-break {
    display: none !important;
  }
}

/* 01–03 and WHAT'S INSIDE: desktop breaks only, natural word wrapping on mobile. */
@media (max-width: 640px) {
  .dark-particle-theme .hero-cta-group {
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 320px !important;
    gap: 8px !important;
  }

  .dark-particle-theme .hero-cta,
  .dark-particle-theme .hero-cta-outline {
    flex: 1 1 0 !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 12px 8px !important;
    justify-content: center !important;
    white-space: nowrap !important;
    font-size: 14px !important;
  }

  .plan-pillars .desktop-only-break,
  .plan-features .desktop-only-break {
    display: none !important;
  }

  #pillars > .plan-wrap,
  #features > .plan-wrap {
    width: 100% !important;
    max-width: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #pillars .plan-pillar-grid,
  #features .plan-feature-grid,
  #pillars .plan-pillar,
  #features .plan-feature-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .plan-pillar-title,
  .plan-pillar-desc,
  .plan-features .plan-title {
    white-space: normal !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
  }

  .plan-pillar-title {
    width: 240px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .plan-pillar:nth-child(1) .plan-pillar-title {
    width: 180px !important;
  }

  .plan-pillar:nth-child(3) .plan-pillar-title {
    width: 180px !important;
  }

  .plan-features .plan-title {
    width: 220px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Mobile copy widths: keep the requested Korean word-wrapping without forced BR tags. */
  .plan-pillar:nth-child(2) .plan-pillar-desc {
    width: 300px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    font-size: 13px !important;
  }

  .plan-features .plan-lead {
    width: 270px !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .plan-feature-list li {
    font-size: 12px !important;
  }
}

/* Mobile-only hero copy with intentional Korean line breaks. */
.hero-h1-sub-mobile,
.hero-sub-mobile {
  display: none !important;
}

@media (max-width: 640px) {
  .hero-h1 .hero-h1-sub:not(.hero-h1-sub-mobile),
  .hero-content > .hero-sub:not(.hero-sub-mobile) {
    display: none !important;
  }

  .hero-h1-sub-mobile {
    display: block !important;
    margin-bottom: 14px;
    font-size: clamp(18px, 5.5vw, 22px) !important;
    line-height: 1.35 !important;
    letter-spacing: -.035em !important;
  }

  .hero-sub-mobile {
    display: block !important;
    font-size: 13px !important;
    line-height: 1.65 !important;
    letter-spacing: -.025em;
    text-align: center;
    margin-bottom: 24px !important;
  }
}

/* Anchor symbol logo */
.nav-logo-icon,
.dark-particle-theme .nav-logo-icon {
  width: 21px !important;
  height: 25px !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}

.nav-logo-icon img {
  display: block;
  width: 21px;
  height: 25px;
  object-fit: contain;
}

.intro-logo-mark {
  width: 58px !important;
  height: 70px !important;
  border-radius: 0 !important;
  border: 0 !important;
  background: none !important;
  box-shadow: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.intro-logo-mark img {
  display: block !important;
  width: 58px !important;
  height: 70px !important;
  object-fit: contain;
}

@media (max-width: 640px) {
  .intro-logo-mark {
    width: 50px !important;
    height: 60px !important;
  }

  .intro-logo-mark img {
    width: 50px !important;
    height: 60px !important;
  }
}

/* Opening animation: gradient symbol; navigation symbol stays white. */
.intro-logo-mark {
  background: linear-gradient(145deg, #5b5ff5 0%, #3478f6 42%, #19d8f2 100%) !important;
  -webkit-mask: url("./img/anchor-symbol.svg") center / contain no-repeat;
  mask: url("./img/anchor-symbol.svg") center / contain no-repeat;
  filter:
    drop-shadow(0 0 10px rgba(52, 120, 246, .42))
    drop-shadow(0 0 22px rgba(25, 216, 242, .22));
}

.intro-logo-mark img {
  display: none !important;
}

/* Final opening-logo override: show the real gradient SVG without a box. */
.anchor-open-intro .intro-logo-mark {
  width: 58px !important;
  height: 70px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  -webkit-mask: none !important;
  mask: none !important;
  filter: none !important;
  overflow: visible !important;
}

.anchor-open-intro .intro-logo-mark img {
  display: block !important;
  width: 58px !important;
  height: 70px !important;
  object-fit: contain !important;
  background: transparent !important;
  filter:
    drop-shadow(0 0 10px rgba(52, 120, 246, .42))
    drop-shadow(0 0 22px rgba(25, 216, 242, .22)) !important;
}

@media (max-width: 640px) {
  .anchor-open-intro .intro-logo-mark,
  .anchor-open-intro .intro-logo-mark img {
    width: 50px !important;
    height: 60px !important;
  }
}
