
:root {
  --bg: #070c17;
  --bg-soft: #0c1424;
  --line: rgba(255,255,255,.1);
  --line-dark: rgba(16,27,54,.1);
  --surface: rgba(255,255,255,.04);
  --paper: #f6f8fd;
  --text: #f5f7ff;
  --text-soft: #9bacbf;
  --text-dark: #13223c;
  --text-dark-soft: #66758e;
  --blue: #56c4ff;
  --blue-strong: #3e8bff;
  --purple: #7d63ff;
  --pink: #d783ff;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(7, 15, 35, .16);
  --container: 1240px;
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: hidden; overflow-x: clip; }
body {
  margin: 0; min-width: 320px; color: var(--text);
  background: radial-gradient(circle at 10% 0%, rgba(67,122,255,.18), transparent 28%), radial-gradient(circle at 90% 10%, rgba(158,101,255,.16), transparent 28%), var(--bg);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", Inter, system-ui, sans-serif;
  word-break: keep-all; overflow-wrap: break-word; overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }
.section { position: relative; padding: 112px 0; }
.section--light { background: var(--paper); color: var(--text-dark); }
.section--dark { background: linear-gradient(180deg, #09101d 0%, #070c17 100%); color: var(--text); }
.page-noise { position: fixed; inset: 0; pointer-events: none; z-index: 0; opacity: .05; background-image: radial-gradient(circle, rgba(255,255,255,.7) 1px, transparent 1px); background-size: 18px 18px; }
.scroll-progress { position: fixed; left: 0; top: 0; width: 100%; height: 3px; z-index: 3000; }
.scroll-progress span { display:block; height:100%; transform: scaleX(0); transform-origin:left; background: linear-gradient(90deg, var(--blue), var(--purple), var(--pink)); }
#particles { position: fixed; inset: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; opacity: .75; }
.cursor-glow { position:fixed; left:0; top:0; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle, rgba(110,180,255,.13), transparent 62%); pointer-events:none; z-index:1; opacity:0; transition:opacity .6s ease; }
.cursor-glow.is-on { opacity:1; }
.site-header { position: sticky; top: 0; z-index: 2000; transition: .25s ease; }
.site-header.is-scrolled { background: rgba(6, 10, 19, .78); backdrop-filter: blur(18px); border-bottom: 1px solid var(--line); }
.nav-wrap { min-height: 82px; display: flex; align-items: center; gap: 24px; justify-content: space-between; }
.brand { display: flex; align-items: center; min-width: 0; }
.brand__logo { width: 152px; height: auto; }
.gnb { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.gnb a { position: relative; font-size: 14px; font-weight: 700; color: #c0ccdb; transition: color .2s ease; }
.gnb a::after { content:''; position:absolute; left:0; right:0; bottom:-8px; height:2px; border-radius:999px; background:linear-gradient(90deg,var(--blue),var(--purple)); transform:scaleX(0); transition:transform .2s ease; }
.gnb a:hover, .gnb a.is-current { color: #fff; }
.gnb a:hover::after, .gnb a.is-current::after { transform: scaleX(1); }
.menu-toggle { display:none; width:46px; height:46px; padding:0; border:1px solid var(--line); border-radius:14px; background:rgba(255,255,255,.05); cursor:pointer; }
.menu-toggle span { display:block; width:20px; height:2px; margin:4px auto; border-radius:99px; background:#fff; transition:.25s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg);} 
.menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0;} 
.menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg);} 
.mobile-panel { display:none; position:fixed; left:0; right:0; top:82px; z-index:1990; padding:14px 20px 24px; background:rgba(7, 12, 23, .96); border-bottom:1px solid var(--line); backdrop-filter: blur(18px); }
.mobile-panel a { display:block; padding:14px; border-radius:14px; color:#dce6f4; font-weight:700; }
.mobile-panel__cta { margin-top:6px; background: linear-gradient(90deg, rgba(65,130,255,.2), rgba(131,99,255,.2)); }
.btn { display:inline-flex; align-items:center; justify-content:center; min-height:54px; padding:0 22px; border-radius:16px; border:1px solid transparent; cursor:pointer; font-weight:800; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: linear-gradient(90deg, var(--blue-strong), var(--purple)); color:#fff; box-shadow: 0 14px 35px rgba(74, 93, 255, .28); }
.btn--ghost { background: rgba(255,255,255,.05); border-color: rgba(255,255,255,.14); color:#eef4ff; }
.btn--block { width:100%; }
.header-cta { min-height:46px; padding:0 18px; }
.hero { padding: 86px 0 72px; min-height: calc(100vh - 82px); display:flex; align-items:center; isolation:isolate; overflow:hidden; }
.hero__backdrop { position:absolute; inset:0; z-index:-1; background: radial-gradient(circle at 60% 40%, rgba(101,119,255,.14), transparent 32%); overflow:hidden; }
.hero__backdrop::before { content:''; position:absolute; width:520px; height:520px; left:-140px; top:-120px; border-radius:50%; background:radial-gradient(circle, rgba(62,139,255,.22), transparent 65%); animation:orbFloat 11s ease-in-out infinite; }
.hero__backdrop::after { content:''; position:absolute; width:460px; height:460px; right:-120px; bottom:-80px; border-radius:50%; background:radial-gradient(circle, rgba(158,101,255,.2), transparent 65%); animation:orbFloat 13s ease-in-out -4s infinite; }
@keyframes orbFloat { 0%,100% { transform:translate(0,0) scale(1); } 50% { transform:translate(30px,-24px) scale(1.08); } }
.hero__layout { display:grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr); gap: 52px; align-items:center; }
.eyebrow, .section-kicker { margin:0 0 18px; font-size:12px; letter-spacing:.2em; text-transform:uppercase; font-weight:900; color:#66d6ff; }
.hero h1, .section-head h2, .automation-copy h2, .faq-copy h2 { margin:0; letter-spacing:-.05em; line-height:1.08; }
.hero h1 { font-size: clamp(2.4rem, 5vw, 4.3rem); }
.hero-line { display:block; }
.hero-line--accent { color:transparent; background:linear-gradient(92deg,#fff 0%,#7fd8ff 35%,#a784ff 75%,#f2abff 100%); background-size:220% 100%; -webkit-background-clip:text; background-clip:text; animation:titleShimmer 6s linear infinite; }
@keyframes titleShimmer { to { background-position:220% 0; } }
.hero__lead { margin:24px 0 0; max-width:660px; font-size:17px; line-height:1.9; color:#b8c6d7; }
.hero__lead strong { color:#fff; }
.hero__actions { display:flex; flex-wrap:wrap; gap:12px; margin-top:34px; }
.hero__badges { display:flex; flex-wrap:wrap; gap:10px; padding:0; margin:28px 0 0; list-style:none; }
.hero__badges li { padding:10px 12px; border-radius:999px; border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.04); color:#d7e4f2; font-size:12px; font-weight:700; }
.hero__visual { position:relative; perspective:900px; }
.hero__visual::before { content:''; position:absolute; inset:-9%; z-index:-1; border-radius:50%; background:conic-gradient(from 0deg, transparent, rgba(86,196,255,.15), transparent 30%, rgba(125,99,255,.15), transparent 60%, rgba(215,131,255,.12), transparent); animation:ringSpin 22s linear infinite; }
@keyframes ringSpin { to { transform:rotate(360deg); } }
.hero__glass { overflow:hidden; border-radius:34px; border:1px solid rgba(255,255,255,.12); box-shadow:0 40px 100px rgba(0,0,0,.32); background:#0b1422; transition:transform .35s ease; will-change:transform; }
.hero__glass img { width:100%; aspect-ratio:16/10; object-fit:cover; }
.hero__chips { position:absolute; display:grid; gap:10px; }
.hero__chips span { display:inline-flex; justify-content:center; padding:10px 14px; border-radius:999px; border:1px solid rgba(255,255,255,.14); background:rgba(7,13,24,.75); color:#eff5ff; font-size:12px; font-weight:700; backdrop-filter:blur(10px); animation:chipBob 5s ease-in-out infinite; }
.hero__chips span:nth-child(2) { animation-delay:1.3s; }
@keyframes chipBob { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-6px); } }
.scroll-hint { position:absolute; left:50%; bottom:26px; transform:translateX(-50%); display:block; width:26px; height:42px; border:2px solid rgba(255,255,255,.25); border-radius:14px; }
.scroll-hint span { position:absolute; left:50%; top:8px; width:4px; height:8px; margin-left:-2px; border-radius:99px; background:#8fc9ff; animation:wheelDot 1.8s ease-in-out infinite; }
@keyframes wheelDot { 0% { transform:translateY(0); opacity:1; } 70% { transform:translateY(14px); opacity:0; } 100% { transform:translateY(0); opacity:0; } }
.hero__chips--left { left:-18px; bottom:32px; }
.hero__chips--right { right:-18px; top:34px; }
.ticker { overflow:hidden; padding: 15px 0; border-top:1px solid rgba(255,255,255,.08); border-bottom:1px solid rgba(255,255,255,.08); background: rgba(255,255,255,.03); }
.ticker__viewport { overflow:hidden; }
.ticker__inner { display:flex; width:max-content; animation: marquee 34s linear infinite; }
.ticker__group { display:flex; align-items:center; flex-shrink:0; }
.ticker__group span, .ticker__group i { flex-shrink:0; }
.ticker__group span { color:#d7e0ee; font-size:13px; font-weight:700; padding:0 12px; }
.ticker__group i { color:#8e79ff; font-style:normal; padding-right:12px; }
.section-head { display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:end; margin-bottom:44px; }
.section-head h2, .automation-copy h2, .faq-copy h2 { font-size: clamp(2.1rem, 4.4vw, 3.7rem); }
.section-head h2 span, .automation-copy h2 span, .faq-copy h2 span { color:#4f70ff; }
.section-kicker--light, .section-summary--light { color:#9fb2ca; }
.section-summary { margin:0; max-width:540px; line-height:1.85; font-size:15px; color:var(--text-dark-soft); }
.section-head--center { grid-template-columns:1fr; text-align:center; justify-items:center; gap:16px; }
.head-chips { display:flex; flex-wrap:wrap; justify-content:center; gap:8px; }
.head-chips span { padding:9px 14px; border-radius:999px; border:1px solid #d8e2f2; background:#fff; color:#4560d7; font-size:13px; font-weight:800; }
.head-note { margin:0; max-width:560px; color:var(--text-dark-soft); font-size:14px; line-height:1.8; }
.service-grid { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:18px; }
.service-card { padding:26px; border-radius:24px; background:#fff; border:1px solid var(--line-dark); box-shadow: var(--shadow); }
.service-card--wide { grid-column:1/-1; display:grid; grid-template-columns: 1fr minmax(320px, 460px); gap:28px; align-items:center; }
.service-head { display:flex; align-items:flex-start; gap:14px; margin-bottom:12px; }
.service-icon { display:grid; place-items:center; width:46px; height:46px; border-radius:14px; background:#eef4ff; color:#4765ec; flex:0 0 auto; }
.service-icon img { width:23px; height:23px; object-fit:contain; }
.service-card__label { display:inline-block; margin-bottom:8px; color:#4f70ff; font-size:12px; font-weight:900; letter-spacing:.12em; }
.service-card h3 { margin:0; font-size:24px; letter-spacing:-.03em; }
.service-card p { margin:0; color:var(--text-dark-soft); line-height:1.8; font-size:15px; }
.service-card ul { display:flex; flex-wrap:wrap; gap:8px; padding:0; margin:18px 0 0; list-style:none; }
.service-card ul li { padding:8px 10px; border-radius:999px; background:#eff4ff; color:#4560d7; font-size:12px; font-weight:700; }
.service-card__image { overflow:hidden; border-radius:20px; }
.service-card__image img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.filter-row { display:flex; align-items:center; justify-content:space-between; gap:20px; margin-bottom:24px; }
.filter-group, .automation-tabs, .faq-cats { display:flex; flex-wrap:wrap; gap:8px; }
.filter-btn, .automation-tab, .faq-cat { border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05); color:inherit; padding:10px 14px; border-radius:999px; font-weight:700; cursor:pointer; }
.section--light .filter-btn, .section--light .automation-tab, .section--light .faq-cat { border-color:#d8e2f2; background:#fff; color:#50627f; }
.filter-btn.is-active, .automation-tab.is-active, .faq-cat.is-active { color:#fff; background:linear-gradient(90deg, var(--blue-strong), var(--purple)); border-color:transparent; }
#portfolioCount { color:#b7c6d7; font-size:13px; font-weight:700; }
.portfolio-grid { display:grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap:18px; }
.portfolio-card { background:#0e1728; border:1px solid rgba(255,255,255,.08); border-radius:24px; overflow:hidden; }
.portfolio-card.is-hidden { display:none; }
.portfolio-thumb { display:block; width:100%; padding:0; border:0; background:none; cursor:zoom-in; }
.portfolio-thumb img { width:100%; aspect-ratio:4/3; object-fit:cover; }
.portfolio-meta { padding:22px; }
.portfolio-meta span { display:inline-block; color:#78d5ff; font-size:12px; font-weight:900; letter-spacing:.12em; }
.portfolio-meta h3 { margin:10px 0 8px; font-size:22px; letter-spacing:-.04em; }
.portfolio-meta p { margin:0; color:#9badc1; line-height:1.7; font-size:14px; }
.automation-layout { display:grid; grid-template-columns:.9fr 1.1fr; gap:38px; align-items:start; }
.automation-desc { margin-top:24px; padding-left:16px; border-left:3px solid rgba(79,112,255,.18); }
.automation-desc span { display:inline-block; color:#4560d7; font-size:12px; font-weight:900; letter-spacing:.12em; }
.automation-desc h3 { margin:10px 0 8px; font-size:22px; letter-spacing:-.03em; }
.automation-desc p { margin:0; color:var(--text-dark-soft); line-height:1.8; }
.automation-panel { padding:28px; border-radius:28px; border:1px solid rgba(255,255,255,.08); background:rgba(12,20,36,.92); box-shadow:0 28px 90px rgba(0,0,0,.22); }
.automation-mock { margin-bottom:22px; min-height:300px; }
.mock { overflow:hidden; border-radius:20px; border:1px solid rgba(255,255,255,.09); }
.mock-commerce { background:#f4f7fc; }
.mock-browser { display:flex; align-items:center; gap:6px; padding:10px 12px; background:#e4eaf4; }
.mock-browser i { width:9px; height:9px; border-radius:50%; background:#c2cddd; }
.mock-browser i:nth-child(1) { background:#ff6d85; } .mock-browser i:nth-child(2) { background:#ffc761; } .mock-browser i:nth-child(3) { background:#6ce8c7; }
.mock-browser span { margin-left:8px; color:#5c6f8d; font-size:11px; font-weight:700; }
.mock-commerce__body { display:grid; grid-template-columns:132px minmax(0,1fr); gap:16px; padding:16px; }
.mock-commerce__img img { width:100%; aspect-ratio:1; object-fit:cover; border-radius:12px; }
.mock-commerce__info { display:grid; align-content:start; }
.mock-commerce__info > b { color:#16233c; font-size:15px; margin-bottom:6px; }
.mock-row { display:flex; justify-content:space-between; gap:10px; padding:7px 0; border-bottom:1px dashed #dfe6f1; font-size:12px; }
.mock-row span { color:#7d8ea8; flex:0 0 auto; }
.mock-row em { color:#233450; font-style:normal; font-weight:700; text-align:right; }
.mock-commerce__badge { margin-top:10px; padding:8px 10px; border-radius:10px; background:#e2f7ee; color:#0d7a4d; font-size:12px; font-weight:800; }
.mock-upload { background:#0a1220; padding:18px; }
.mock-upload__head { display:flex; justify-content:space-between; align-items:center; margin-bottom:14px; }
.mock-upload__head b { font-size:15px; color:#eaf2ff; }
.mock-upload__head span { font-size:11px; font-weight:800; color:#6bf1d0; padding:5px 9px; border-radius:999px; border:1px solid rgba(107,241,208,.3); }
.mock-upload ul { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.mock-upload li { display:grid; grid-template-columns:110px minmax(0,1fr) 70px; align-items:center; gap:12px; padding:10px 12px; border-radius:12px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); font-size:12px; }
.mock-upload li span { color:#d6e4f5; font-weight:700; }
.mock-upload li em { font-style:normal; text-align:right; color:#8fa2b8; font-weight:700; }
.mock-upload li em.ok { color:#6bf1d0; } .mock-upload li em.run { color:#78d5ff; }
.mock-bar { height:6px; border-radius:99px; background:rgba(255,255,255,.08); overflow:hidden; }
.mock-bar i { display:block; height:100%; width:var(--w,0%); border-radius:99px; background:linear-gradient(90deg, var(--blue), var(--purple)); }
.mock-upload__foot { margin:14px 0 0; font-size:11px; color:#7b8ea6; }
.mock-shortform { background:#0a1220; padding:18px; display:grid; grid-template-columns:150px minmax(0,1fr); gap:16px; align-items:center; }
.mock-phone { border-radius:22px; border:1px solid rgba(255,255,255,.14); background:#060b14; padding:8px; }
.mock-phone__screen { position:relative; aspect-ratio:9/16; border-radius:16px; background:linear-gradient(160deg,#24365e,#121c31); overflow:hidden; display:flex; flex-direction:column; justify-content:flex-end; padding:12px; }
.mock-phone__scene { position:absolute; top:10px; left:10px; font-size:10px; font-weight:900; letter-spacing:.14em; color:#78d5ff; padding:4px 8px; border-radius:999px; background:rgba(7,13,24,.6); }
.mock-phone__caption { margin:0 0 10px; font-size:11px; font-weight:700; color:#fff; background:rgba(5,9,20,.72); padding:6px 8px; border-radius:8px; text-align:center; }
.mock-phone__timeline { display:flex; gap:4px; }
.mock-phone__timeline i { flex:1; height:4px; border-radius:99px; background:rgba(255,255,255,.18); }
.mock-phone__timeline i.on { background:linear-gradient(90deg, var(--blue), var(--pink)); }
.mock-shots { list-style:none; margin:0; padding:0; display:grid; gap:10px; }
.mock-shots li { padding:12px 14px; border-radius:14px; background:rgba(255,255,255,.04); border:1px solid rgba(255,255,255,.07); color:#d6e4f5; font-size:12px; }
.mock-shots li b { color:#78d5ff; margin-right:8px; }
.mock-kakao { background:#b3c6d8; }
.mock-kakao__head { display:flex; justify-content:space-between; align-items:center; padding:12px 16px; background:rgba(255,255,255,.5); }
.mock-kakao__head b { color:#1d2c3c; font-size:14px; }
.mock-kakao__head span { font-size:11px; font-weight:800; color:#3c1e1e; background:#fee500; padding:5px 9px; border-radius:999px; }
.mock-kakao__chat { padding:16px; display:grid; gap:8px; }
.bubble { max-width:78%; padding:10px 12px; border-radius:14px; font-size:12px; line-height:1.55; }
.bubble--bot { justify-self:start; background:#fff; color:#1d2c3c; border-top-left-radius:4px; }
.bubble--user { justify-self:end; background:#fee500; color:#3c1e1e; border-top-right-radius:4px; }
.mock-kakao__quick { display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
.mock-kakao__quick span { padding:7px 11px; border-radius:999px; background:rgba(255,255,255,.85); border:1px solid rgba(29,44,60,.12); color:#1d2c3c; font-size:11px; font-weight:700; }
.mock-bot { background:#12161f; padding:16px; display:grid; gap:12px; }
.mock-bot__msg { display:flex; gap:10px; align-items:flex-start; }
.mock-bot__msg i { flex:0 0 auto; width:32px; height:32px; border-radius:50%; display:grid; place-items:center; font-style:normal; font-size:10px; font-weight:900; background:#26303f; color:#9fb2ca; }
.mock-bot__msg--bot i { background:linear-gradient(135deg, var(--blue-strong), var(--purple)); color:#fff; }
.mock-bot__msg b { display:block; font-size:12px; color:#e6eef9; margin-bottom:3px; }
.mock-bot__msg b span { margin-left:6px; font-size:9px; padding:2px 5px; border-radius:5px; background:#5865f2; color:#fff; letter-spacing:.06em; }
.mock-bot__msg p { margin:0; font-size:12px; color:#aab8c8; font-family:ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.mock-bot__embed { padding:8px 10px; border-radius:8px; border-left:3px solid var(--blue); background:rgba(255,255,255,.05); color:#d6e4f5; font-family:inherit; }
.automation-topline { display:flex; justify-content:space-between; align-items:center; color:#9eb0c5; font-size:13px; margin-bottom:20px; }
.automation-topline strong { color:#6bf1d0; }
.workflow { display:grid; grid-template-columns: 1fr 24px 1fr 24px 1fr 24px 1fr; align-items:center; gap:10px; margin-bottom:22px; }
.workflow i { height:2px; background:linear-gradient(90deg, rgba(86,196,255,.6), rgba(125,99,255,.6)); border-radius:99px; }
.workflow-step { min-height:124px; padding:16px 14px; border-radius:18px; border:1px solid rgba(255,255,255,.08); background:rgba(255,255,255,.03); display:flex; flex-direction:column; justify-content:center; gap:8px; }
.workflow-step.is-current { background:linear-gradient(180deg, rgba(86,196,255,.18), rgba(125,99,255,.16)); border-color:rgba(114,130,255,.28); }
.workflow-step small { color:#8fa2b8; font-size:12px; font-weight:900; }
.workflow-step b { font-size:18px; }
.workflow-step span { color:#aab8c8; font-size:14px; }
.terminal { overflow:hidden; border-radius:18px; border:1px solid rgba(255,255,255,.08); background:#050915; }
.terminal__bar { display:flex; align-items:center; gap:6px; min-height:38px; padding:0 14px; border-bottom:1px solid rgba(255,255,255,.06); }
.terminal__bar span { width:10px; height:10px; border-radius:50%; }
.terminal__bar span:nth-child(1){ background:#ff6d85; } .terminal__bar span:nth-child(2){ background:#ffc761; } .terminal__bar span:nth-child(3){ background:#6ce8c7; }
.terminal__bar b { margin-left:8px; color:#8aa0b9; font-size:13px; }
.terminal__body { height:154px; overflow-y:auto; padding:16px; font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace; }
.terminal__body p { margin:0 0 8px; color:#9db0c4; font-size:13px; line-height:1.6; } .terminal__body em{ color:#617794; font-style:normal; } .terminal__body strong { color:#6ef0cd; }
.faq-layout--wide { grid-template-columns: .78fr 1.22fr; align-items:center; }
.faq-panel { display:grid; gap:18px; }
.faq-search input { width:100%; padding:13px 16px; border-radius:14px; border:1px solid rgba(255,255,255,.14); background:rgba(255,255,255,.05); color:#eef4ff; font-size:14px; font-weight:600; outline:none; transition:border-color .2s ease, background .2s ease; }
.faq-search input::placeholder { color:#7c8ea3; }
.faq-search input:focus { border-color:rgba(127,216,255,.5); background:rgba(255,255,255,.08); }
.faq-item__cat { display:inline-block; margin-right:8px; padding:3px 8px; border-radius:999px; background:rgba(127,216,255,.14); color:#8fd8ff; font-size:11px; font-weight:800; font-style:normal; vertical-align:2px; }
.faq-empty { padding:26px 8px; color:#9fb0c3; font-size:14px; text-align:center; }
.faq-list { border-top:1px solid rgba(255,255,255,.08); }
.faq-item { border-bottom:1px solid rgba(255,255,255,.08); }
.faq-item button { width:100%; padding:24px 0; border:0; background:transparent; cursor:pointer; display:flex; justify-content:space-between; align-items:center; gap:24px; text-align:left; color:inherit; font-size:18px; font-weight:800; }
.faq-item button i { flex:0 0 auto; width:34px; height:34px; display:grid; place-items:center; border-radius:50%; border:1px solid rgba(255,255,255,.14); font-style:normal; color:#c7d3e1; }
.faq-item__answer { display:grid; grid-template-rows:0fr; transition:grid-template-rows .25s ease; }
.faq-item__answer p { overflow:hidden; margin:0; padding:0; color:#9fb2ca; line-height:1.85; }
.faq-item.is-open .faq-item__answer { grid-template-rows:1fr; }
.faq-item.is-open .faq-item__answer p { padding-bottom:24px; }
.tools-grid { display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:22px; align-items:stretch; }
.tool-card { border:1px solid var(--line-dark); border-radius:var(--radius); background:#fff; padding:30px; display:grid; gap:14px; align-content:start; box-shadow:var(--shadow); }
.tool-card__title { font-size:20px; font-weight:900; letter-spacing:-.02em; }
.tool-card__desc { margin:0; color:var(--text-dark-soft); font-size:14px; line-height:1.7; }
.tool-label { font-size:12px; font-weight:800; color:#8a9aab; letter-spacing:.08em; }
.tool-hint { margin:0; font-size:12px; color:#93a2b5; }
.tool-chips { display:flex; flex-wrap:wrap; gap:8px; }
.tool-chips button { padding:9px 14px; border-radius:999px; border:1px solid var(--line-dark); background:#fff; color:#54687c; font-size:13px; font-weight:700; cursor:pointer; transition:.18s ease; }
.tool-chips button:hover { border-color:var(--blue-strong); color:var(--blue-strong); transform:translateY(-1px); }
.tool-chips button.is-on { background:linear-gradient(90deg,var(--blue-strong),var(--purple)); border-color:transparent; color:#fff; }
.tool-inputs { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.tool-inputs label { display:grid; gap:6px; font-size:12px; font-weight:800; color:#8a9aab; }
.tool-inputs input { width:100%; padding:11px 12px; border-radius:12px; border:1px solid var(--line-dark); font-size:15px; font-weight:700; color:var(--text-dark); outline:none; transition:border-color .2s ease; box-sizing:border-box; }
.tool-inputs input:focus { border-color:var(--blue-strong); }
.tool-file { display:inline-flex; justify-content:center; padding:13px 16px; border-radius:14px; border:1.5px dashed #b8c8dd; background:#f4f8ff; color:#3f5f88; font-size:14px; font-weight:800; cursor:pointer; transition:.18s ease; }
.tool-file:hover { border-color:var(--blue-strong); color:var(--blue-strong); }
.tool-result { margin-top:6px; padding:20px; border-radius:18px; background:#0d1526; color:#fff; display:grid; gap:8px; }
.tool-result > span { font-size:12px; font-weight:800; color:#8fa6c0; letter-spacing:.08em; }
.tool-result > strong { font-size:27px; letter-spacing:-.02em; }
.tool-result p { margin:0; font-size:13px; color:#a9bcd0; line-height:1.7; }
.tool-result--file > span { font-size:13px; font-weight:600; color:#a9bcd0; letter-spacing:0; line-height:1.7; }
.tools-banner { display:flex; align-items:center; justify-content:space-between; gap:24px; padding:34px 38px; border-radius:var(--radius); background:#fff; border:1px solid var(--line-dark); box-shadow:var(--shadow); flex-wrap:wrap; }
.tools-banner h3 { margin:0; font-size:22px; letter-spacing:-.02em; }
.tools-banner p { margin:8px 0 0; color:var(--text-dark-soft); font-size:14px; line-height:1.7; }
.tools-hero { padding:64px 0 56px; }
.btn--line { border-color:var(--line-dark); color:var(--text-dark); background:#fff; }
.lotto-balls { display:flex; flex-wrap:wrap; gap:8px; align-items:center; min-height:44px; }
.lotto-ball { display:inline-grid; place-items:center; width:40px; height:40px; border-radius:50%; color:#fff; font-size:14px; font-weight:900; font-style:normal; box-shadow:inset -3px -4px 7px rgba(0,0,0,.28), 0 3px 8px rgba(15,30,60,.18); }
.lotto-ball--y { background:#f6b90d; } .lotto-ball--b { background:#4aa3e8; } .lotto-ball--r { background:#f06a6a; } .lotto-ball--g { background:#8b95a1; } .lotto-ball--v { background:#6fbf4a; }
.lotto-ball.is-hit { outline:3px solid var(--blue-strong); outline-offset:2px; }
.lotto-vs { font-size:12px; font-weight:900; color:#8a9aab; margin:0 2px; }
.tool-textarea { width:100%; padding:13px 14px; border-radius:14px; border:1px solid var(--line-dark); font-size:14px; line-height:1.7; resize:vertical; box-sizing:border-box; outline:none; font-family:inherit; }
.tool-textarea:focus { border-color:var(--blue-strong); }
.cc-stats { display:flex; flex-wrap:wrap; gap:8px; }
.cc-stats span { padding:7px 11px; border-radius:10px; background:#eef3fb; font-size:12px; font-weight:800; color:#3f5f88; }
.kakao-float.is-hidden { transform:translateX(130%); opacity:0; pointer-events:none; }
.section--cta { padding-top:96px; padding-bottom:100px; }
.cta-wrap { display:grid; grid-template-columns:.88fr 1.12fr; gap:42px; padding:42px; border-radius:34px; border:1px solid #d7e3f4; background:#fff; box-shadow: var(--shadow); }
.cta-title { margin:0; font-size: clamp(1.9rem, 4vw, 3rem); line-height:1.18; letter-spacing:-.05em; color:var(--text-dark); }
.cta-desc { margin:18px 0 0; font-size:15px; line-height:1.85; color:var(--text-dark-soft); }
.copy-note { display:flex; align-items:flex-start; gap:14px; margin-top:26px; padding:18px; border-radius:20px; background:#eff4ff; }
.copy-note__mark { width:40px; height:40px; flex:0 0 auto; }
.copy-note strong { display:block; color:#2746c9; margin-bottom:6px; }
.copy-note span { color:#4d6185; line-height:1.7; font-size:14px; }
.brief-form { padding:24px; border-radius:26px; border:1px solid #d8e2f2; background:#f8fbff; display:grid; gap:16px; }
.brief-form__row { display:grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap:14px; }
.brief-form label { display:grid; gap:8px; }
.brief-form span, .brief-form legend { color:#30415f; font-size:13px; font-weight:700; }
.brief-form select, .brief-form textarea { width:100%; border:1px solid #d8e2f2; background:#fff; color:#12213a; border-radius:14px; padding:14px 16px; outline:none; }
.brief-form fieldset { padding:0; margin:0; border:0; }
.brief-form legend { margin-bottom:10px; }
.chip-checks { display:flex; flex-wrap:wrap; gap:8px; }
.chip-checks label { position:relative; }
.chip-checks input { position:absolute; opacity:0; pointer-events:none; }
.chip-checks span { display:inline-flex; align-items:center; min-height:42px; padding:0 14px; border-radius:999px; background:#fff; border:1px solid #d8e2f2; color:#51627e; }
.chip-checks input:checked + span { background:linear-gradient(90deg, rgba(62,139,255,.12), rgba(125,99,255,.12)); border-color: rgba(117,112,255,.32); color:#3149ba; }
.brief-preview { padding:16px; border-radius:16px; border:1px dashed #d8e2f2; background:#fff; }
.brief-preview strong { display:block; margin-bottom:8px; color:#2746c9; }
.brief-preview p { margin:0; color:#50627f; line-height:1.7; white-space:pre-line; }
.brief-form small { color:#6a7c98; line-height:1.7; }
.site-footer { padding:30px 0 96px; background:#050915; border-top:1px solid rgba(255,255,255,.06); }
.footer-wrap { display:grid; grid-template-columns:auto 1fr auto; gap:24px; align-items:center; }
.footer-brand { display:flex; align-items:center; gap:12px; }
.footer-brand__mark { width:36px; height:36px; }
.footer-brand strong { display:block; }
.footer-brand span, .site-footer p { color:#8ea1b7; font-size:13px; }
.site-footer p { margin:0; }
.footer-top { display:inline-flex; min-height:42px; align-items:center; justify-content:center; padding:0 14px; border-radius:12px; border:1px solid rgba(255,255,255,.1); color:#d9e2ef; }
.lightbox { position:fixed; inset:0; display:grid; place-items:center; padding:32px; background:rgba(0,0,0,.84); opacity:0; visibility:hidden; transition:.2s ease; z-index:4000; }
.lightbox.is-open { opacity:1; visibility:visible; }
.lightbox img { max-width:min(1200px, 92vw); max-height:88vh; border-radius:20px; }
.lightbox__close { position:fixed; right:20px; top:20px; width:44px; height:44px; border:1px solid rgba(255,255,255,.16); border-radius:50%; background:rgba(255,255,255,.08); color:#fff; font-size:28px; cursor:pointer; }
.toast { position:fixed; left:50%; bottom:28px; transform:translate(-50%, 10px); opacity:0; visibility:hidden; padding:14px 18px; border-radius:14px; background:rgba(8,14,24,.95); border:1px solid rgba(255,255,255,.12); z-index:4500; color:#fff; transition:.2s ease; }
.toast.is-show { opacity:1; visibility:visible; transform:translate(-50%, 0); }
.service-note { margin:18px 0 0; padding:16px 20px; border-radius:16px; background:#eef4ff; border:1px dashed #cfddf5; color:#4560d7; font-size:14px; font-weight:700; text-align:center; }
.btn--kakao { background:#fee500; color:#3c1e1e; box-shadow:0 14px 35px rgba(254,229,0,.2); }
.brief-form__actions { display:grid; grid-template-columns:1fr 1fr; gap:10px; }
.footer-info { text-align:center; }
.footer-info p { margin:0 0 4px; color:#8ea1b7; font-size:12.5px; line-height:1.7; }
.footer-info p:last-child { margin-bottom:0; color:#5f7189; }
.kakao-float { position:fixed; right:22px; bottom:calc(22px + env(safe-area-inset-bottom)); z-index:3000; display:inline-flex; align-items:center; gap:9px; padding:14px 20px; border-radius:999px; background:#fee500; color:#3c1e1e; font-weight:900; font-size:15px; box-shadow:0 16px 44px rgba(0,0,0,.35); transition:transform .2s ease; animation:floatIn .5s .8s backwards; }
.kakao-float:hover { transform:translateY(-3px); }
.kakao-float svg { width:22px; height:22px; }
.kakao-float::after { content:''; position:absolute; inset:0; border-radius:inherit; border:2px solid rgba(254,229,0,.55); animation:kakaoPulse 2.6s ease-out infinite; pointer-events:none; }
@keyframes floatIn { from { opacity:0; transform:translateY(14px); } to { opacity:1; transform:translateY(0); } }
@keyframes kakaoPulse { 0% { transform:scale(1); opacity:.8; } 70%,100% { transform:scale(1.28); opacity:0; } }
body.modal-open, body.menu-open { overflow:hidden; }
.reveal { opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity:1; transform:translateY(0); }
.reveal--delay1 { transition-delay:.1s; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (max-width: 1120px) {
  .hero__layout, .automation-layout, .faq-layout--wide, .cta-wrap, .tools-grid { grid-template-columns:1fr; }
  .section-head { grid-template-columns:1fr; gap:18px; }
  .service-card--wide { grid-template-columns:1fr; }
  .portfolio-grid { grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .gnb, .header-cta { display:none; }
  .menu-toggle, .mobile-panel.is-open { display:block; }
  .nav-wrap { min-height:74px; }
  .mobile-panel { top:74px; }
  .hero { padding-top:52px; min-height:auto; }
  .scroll-hint { display:none; }
  .hero__visual::before { inset:-4%; }
  .service-grid, .portfolio-grid { grid-template-columns:1fr; }
  .brief-form__row { grid-template-columns:1fr; }
  .footer-wrap { grid-template-columns:1fr; }
  .footer-info { text-align:left; }
  .footer-top { justify-self:start; }
}
@media (max-width: 640px) {
  .container { width:min(calc(100% - 26px), var(--container)); }
  .section { padding:78px 0; }
  .brand__logo { width:132px; }
  .hero h1 { font-size: clamp(2rem, 8.6vw, 3.15rem); }
  .hero__lead { font-size:15px; }
  .hero__actions { display:grid; grid-template-columns:1fr; }
  .hero__chips { position:static; margin-top:14px; display:flex; flex-wrap:wrap; }
  .hero__glass { border-radius:24px; }
  .service-card { padding:22px; }
  .filter-row { flex-direction:column; align-items:flex-start; }
  .workflow { grid-template-columns:1fr; }
  .workflow i { width:2px; height:18px; justify-self:center; }
  .workflow-step { min-height:92px; }
  .ticker__group span { padding:0 10px; }
  .cta-wrap { padding:24px 18px; }
  .cta-title { font-size: clamp(1.55rem, 7vw, 2.25rem); }
  .brief-form__actions { grid-template-columns:1fr; }
  .mock-commerce__body { grid-template-columns:1fr; }
  .mock-commerce__img img { aspect-ratio:16/9; }
  .mock-shortform { grid-template-columns:1fr; }
  .mock-phone { max-width:170px; margin:0 auto; }
  .automation-panel { padding:18px; }
  .automation-mock { min-height:440px; }
  .mock-upload li { grid-template-columns:84px minmax(0,1fr) auto; gap:8px; }
  .mock-upload li em { white-space:nowrap; font-size:11px; }
  .kakao-float { right:14px; bottom:calc(14px + env(safe-area-inset-bottom)); padding:13px 16px; font-size:14px; }
  .toast { bottom:calc(80px + env(safe-area-inset-bottom)); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior:auto; }
  *, *::before, *::after { animation-duration:.001ms !important; animation-iteration-count:1 !important; transition-duration:.001ms !important; }
  .reveal { opacity:1; transform:none; }
}

.capability-more{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:18px}.capability-more article{display:flex;gap:14px;align-items:flex-start;padding:22px;border:1px solid var(--line-dark);border-radius:20px;background:#fff;box-shadow:0 14px 40px rgba(15,35,70,.05)}.capability-more img{width:36px;height:36px;padding:7px;border-radius:11px;background:#eef4ff;flex:0 0 auto}.capability-more b{display:block;margin-bottom:7px;font-size:16px}.capability-more p{margin:0;color:var(--text-dark-soft);font-size:13px;line-height:1.7}
.ticker__inner{will-change:transform}
.portfolio-heading{max-width:720px}.automation-tabs{margin-top:25px}.faq-layout--wide{display:grid}
@media(max-width:900px){.capability-more{grid-template-columns:repeat(2,minmax(0,1fr))}}@media(max-width:640px){.capability-more{grid-template-columns:1fr}}
.faq-cat__n{font-style:normal;margin-left:7px;padding:2px 8px;border-radius:999px;background:rgba(255,255,255,.14);font-size:11px;font-weight:800}
.section--light .faq-cat__n{background:rgba(19,34,60,.08)}
.faq-cat.is-active .faq-cat__n{background:rgba(9,14,28,.28)}
.kakao-tip{position:fixed;right:22px;bottom:calc(90px + env(safe-area-inset-bottom));z-index:2999;padding:11px 15px;border-radius:14px;background:#fff;color:#1d2c3c;font-size:13px;font-weight:800;box-shadow:0 12px 34px rgba(0,0,0,.28);opacity:0;visibility:hidden;transform:translateY(6px);transition:.25s ease}
.kakao-tip.is-show{opacity:1;visibility:visible;transform:translateY(0)}
.kakao-tip::after{content:'';position:absolute;right:26px;bottom:-6px;border:7px solid transparent;border-top-color:#fff;border-bottom:0}
@media (max-width:640px){.kakao-tip{right:14px;bottom:calc(82px + env(safe-area-inset-bottom))}}
@keyframes mockIn{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}
@keyframes barGrow{from{width:0}to{width:var(--w,0%)}}
@keyframes tlOn{from{background:rgba(255,255,255,.18)}to{background:linear-gradient(90deg,var(--blue),var(--pink))}}
.automation-mock.is-running .mock-commerce .mock-row:nth-of-type(1) em{animation:mockIn .45s .4s both}
.automation-mock.is-running .mock-commerce .mock-row:nth-of-type(2) em{animation:mockIn .45s .9s both}
.automation-mock.is-running .mock-commerce .mock-row:nth-of-type(3) em{animation:mockIn .45s 1.4s both}
.automation-mock.is-running .mock-commerce__badge{animation:mockIn .5s 2.1s both}
.automation-mock.is-running .mock-upload li:nth-child(1) .mock-bar i{animation:barGrow .9s .4s both}
.automation-mock.is-running .mock-upload li:nth-child(2) .mock-bar i{animation:barGrow .9s .9s both}
.automation-mock.is-running .mock-upload li:nth-child(3) .mock-bar i{animation:barGrow .9s 1.4s both}
.automation-mock.is-running .mock-upload li:nth-child(4) .mock-bar i{animation:barGrow .9s 1.9s both}
.automation-mock.is-running .mock-upload li:nth-child(1) em{animation:mockIn .4s 1.2s both}
.automation-mock.is-running .mock-upload li:nth-child(2) em{animation:mockIn .4s 1.7s both}
.automation-mock.is-running .mock-upload li:nth-child(3) em{animation:mockIn .4s 2.2s both}
.automation-mock.is-running .mock-upload li:nth-child(4) em{animation:mockIn .4s 2.7s both}
.automation-mock.is-running .mock-phone__timeline i{animation:tlOn .4s both}
.automation-mock.is-running .mock-phone__timeline i:nth-child(1){animation-delay:.5s}
.automation-mock.is-running .mock-phone__timeline i:nth-child(2){animation-delay:1.1s}
.automation-mock.is-running .mock-phone__timeline i:nth-child(3){animation-delay:1.7s}
.automation-mock.is-running .mock-phone__timeline i:nth-child(4){animation-delay:2.3s}
.automation-mock.is-running .mock-shots li:nth-child(1){animation:mockIn .45s .3s both}
.automation-mock.is-running .mock-shots li:nth-child(2){animation:mockIn .45s .9s both}
.automation-mock.is-running .mock-shots li:nth-child(3){animation:mockIn .45s 1.5s both}
.automation-mock.is-running .bubble:nth-of-type(1){animation:mockIn .45s .3s both}
.automation-mock.is-running .bubble:nth-of-type(2){animation:mockIn .45s .9s both}
.automation-mock.is-running .bubble:nth-of-type(3){animation:mockIn .45s 1.5s both}
.automation-mock.is-running .mock-kakao__quick{animation:mockIn .45s 2.1s both}
.automation-mock.is-running .mock-bot__msg:nth-of-type(1){animation:mockIn .45s .3s both}
.automation-mock.is-running .mock-bot__msg:nth-of-type(2){animation:mockIn .45s .9s both}
.automation-mock.is-running .mock-bot__msg:nth-of-type(3){animation:mockIn .45s 1.5s both}
.automation-mock.is-running .mock-bot__msg:nth-of-type(4){animation:mockIn .45s 2.1s both}
