/* ============================================================
   FluiZ — shared site styles
   Pretendard type, tech-blue palette, wrtn-inspired motion
   ============================================================ */

@import url("https://cdn.jsdelivr.net/gh/wanteddev/wanted-sans@v1.0.3/packages/wanted-sans/fonts/webfonts/variable/split/WantedSansVariable.min.css");

:root {
  /* ---- ink + surface (cool neutral) ---- */
  --ink:        oklch(0.21 0.02 255);
  --ink-soft:   oklch(0.40 0.02 255);
  --ink-faint:  oklch(0.55 0.015 255);
  --line:       oklch(0.92 0.008 255);
  --line-soft:  oklch(0.95 0.006 255);
  --bg:         oklch(0.99 0.004 255);
  --surface:    oklch(1 0 0);
  --surface-2:  oklch(0.975 0.006 255);

  /* ---- accent (tech blue, overridable by Tweaks) ---- */
  --acc-h: 256;
  --accent:      oklch(0.55 0.20 var(--acc-h));
  --accent-deep: oklch(0.46 0.19 var(--acc-h));
  --accent-soft: oklch(0.92 0.06 var(--acc-h));
  --accent-tint: oklch(0.965 0.025 var(--acc-h));

  /* gradient bloom stops */
  --g1: oklch(0.62 0.20 250);
  --g2: oklch(0.70 0.16 215);
  --g3: oklch(0.66 0.18 285);
  --g4: oklch(0.80 0.10 200);

  /* warm logo accent */
  --peach: oklch(0.78 0.10 47);

  --maxw: 1180px;
  --pad: clamp(20px, 5vw, 64px);
  --radius: 22px;
  --radius-lg: 30px;

  --shadow-sm: 0 1px 2px oklch(0.5 0.05 255 / 0.06), 0 2px 8px oklch(0.5 0.05 255 / 0.05);
  --shadow:    0 4px 14px oklch(0.5 0.05 255 / 0.07), 0 18px 48px oklch(0.5 0.05 255 / 0.08);
  --shadow-lg: 0 8px 24px oklch(0.4 0.06 255 / 0.10), 0 40px 90px oklch(0.4 0.06 255 / 0.13);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: "Wanted Sans Variable", "Wanted Sans", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: -0.006em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

:lang(ko) { word-break: keep-all; }

h1, h2, h3, h4 { margin: 0; font-weight: 700; line-height: 1.16; letter-spacing: -0.024em; text-wrap: balance; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: inherit; cursor: pointer; }

.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--pad); }

section { position: relative; }

/* ---------------------------------------------------------- type scale */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 700; letter-spacing: 0.04em;
  color: var(--accent-deep); text-transform: uppercase;
}
.eyebrow::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft);
}
.display { font-size: clamp(38px, 6vw, 76px); font-weight: 720; letter-spacing: -0.032em; }
.h-sec   { font-size: clamp(28px, 3.9vw, 50px); font-weight: 700; letter-spacing: -0.026em; }
.h-card  { font-size: clamp(20px, 2.1vw, 26px); font-weight: 650; letter-spacing: -0.02em; }
.lead    { font-size: clamp(18px, 1.7vw, 22px); color: var(--ink-soft); font-weight: 450; line-height: 1.62; }
.muted   { color: var(--ink-faint); }
.mono    { font-family: ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace; letter-spacing: 0; }

.grad-text {
  background: linear-gradient(100deg, var(--g1), var(--g3) 55%, var(--g2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ---------------------------------------------------------- buttons */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 650; font-size: 16px; letter-spacing: -0.01em;
  padding: 14px 26px; border-radius: 100px; border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px oklch(0.2 0.02 255 / 0.25); }
.btn-accent { background: var(--accent); color: #fff; box-shadow: 0 8px 22px oklch(0.55 0.2 var(--acc-h) / 0.30); }
.btn-accent:hover { transform: translateY(-2px); background: var(--accent-deep); }
.btn-ghost { background: var(--surface); color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: oklch(0.85 0.01 255); }
.btn-lg { padding: 17px 32px; font-size: 17px; }

.arrow { transition: transform .3s var(--ease); }
.btn:hover .arrow, .lnk:hover .arrow { transform: translateX(4px); }
.lnk { display: inline-flex; align-items: center; gap: 7px; font-weight: 650; color: var(--accent-deep); }
.lnk svg { width: 17px; height: 17px; }

/* ---------------------------------------------------------- header */
.hdr {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.hdr.scrolled {
  background: oklch(0.99 0.004 255 / 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}
.hdr-inner { display: flex; align-items: center; gap: 28px; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand img { height: 26px; width: auto; }
.brand .logo-light { display: none; }
/* header turns light while sitting over a vivid hero (top, not scrolled) */
html.hero-vivid body.has-hero .hdr:not(.scrolled) .logo-dark { display: none; }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .logo-light { display: block; }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .nav a { color: oklch(1 0 0 / 0.82); }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .nav a:hover,
html.hero-vivid body.has-hero .hdr:not(.scrolled) .nav a.active { color: #fff; background: oklch(1 0 0 / 0.14); }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .lang { background: oklch(1 0 0 / 0.14); border-color: oklch(1 0 0 / 0.28); }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .lang button { color: oklch(1 0 0 / 0.72); }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .lang button.on { background: oklch(1 0 0 / 0.92); color: var(--accent-deep); box-shadow: none; }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .btn-accent { background: #fff; color: var(--accent-deep); box-shadow: none; }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .burger { background: oklch(1 0 0 / 0.14); border-color: oklch(1 0 0 / 0.28); }
html.hero-vivid body.has-hero .hdr:not(.scrolled) .burger span { background: #fff; }
.nav { display: flex; align-items: center; gap: 4px; margin-left: 8px; }
.nav a {
  font-size: 15.5px; font-weight: 600; color: var(--ink-soft);
  padding: 9px 15px; border-radius: 100px; transition: color .2s, background .2s;
}
.nav a:hover { color: var(--ink); background: var(--surface-2); }
.nav a.active { color: var(--ink); }
.hdr-right { margin-left: auto; display: flex; align-items: center; gap: 10px; }

/* language switch */
.lang {
  display: inline-flex; align-items: center; background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 100px; padding: 3px; gap: 2px;
}
.lang button {
  border: 0; background: transparent; color: var(--ink-faint);
  font-size: 13px; font-weight: 700; letter-spacing: 0.02em;
  padding: 6px 12px; border-radius: 100px; transition: color .2s, background .2s;
}
.lang button.on { background: var(--surface); color: var(--ink); box-shadow: var(--shadow-sm); }

.burger { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--surface); align-items: center; justify-content: center; flex-direction: column; gap: 4px; }
.burger span { width: 17px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .2s; }
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* mobile menu */
.mnav {
  position: fixed; inset: 72px 0 0 0; z-index: 99; background: var(--bg);
  transform: translateX(100%); transition: transform .35s var(--ease);
  padding: 24px var(--pad); display: flex; flex-direction: column; gap: 4px;
}
.mnav.open { transform: translateX(0); }
.mnav a { font-size: 22px; font-weight: 700; padding: 16px 4px; border-bottom: 1px solid var(--line-soft); }

/* ---------------------------------------------------------- footer */
.ftr { background: var(--ink); color: oklch(0.85 0.01 255); padding: 80px 0 40px; margin-top: 40px; }
.ftr a { color: oklch(0.78 0.012 255); transition: color .2s; }
.ftr a:hover { color: #fff; }
.ftr-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.ftr img { height: 24px; }
.ftr h5 { font-size: 13px; letter-spacing: 0.06em; text-transform: uppercase; color: oklch(0.62 0.02 255); margin: 0 0 16px; font-weight: 700; }
.ftr ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15px; }
.ftr-bot { margin-top: 56px; padding-top: 24px; border-top: 1px solid oklch(0.32 0.02 255);
  display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 13.5px; color: oklch(0.6 0.02 255); }

/* ---------------------------------------------------------- cards */
.card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
}
.card.hover:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: oklch(0.88 0.01 255); }

.chip {
  display: inline-flex; align-items: center; gap: 7px; font-size: 13.5px; font-weight: 650;
  padding: 7px 14px; border-radius: 100px; background: var(--accent-tint);
  color: var(--accent-deep); border: 1px solid var(--accent-soft);
}

/* placeholder media slot */
.ph {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background:
    repeating-linear-gradient(135deg, oklch(0.96 0.012 255) 0 14px, oklch(0.985 0.006 255) 14px 28px);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.ph::after {
  content: attr(data-label); position: absolute; bottom: 12px; left: 12px;
  font-family: ui-monospace, monospace; font-size: 11.5px; letter-spacing: 0.02em;
  color: var(--ink-faint); background: oklch(1 0 0 / 0.7); padding: 4px 9px; border-radius: 8px;
  backdrop-filter: blur(4px);
}

/* ---------------------------------------------------------- gradient bloom */
.bloom { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.bloom canvas { width: 100%; height: 100%; display: block; }

/* ---------------------------------------------------------- scroll reveal */
[data-rise] { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-rise].in { opacity: 1; transform: none; }
[data-rise].d1 { transition-delay: .08s; }
[data-rise].d2 { transition-delay: .16s; }
[data-rise].d3 { transition-delay: .24s; }
[data-rise].d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  [data-rise] { opacity: 1 !important; transform: none !important; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------------------------------------------------------- generic layout helpers */
.section-pad { padding: clamp(72px, 11vh, 140px) 0; }
.grid { display: grid; gap: 24px; }
.g2 { grid-template-columns: repeat(2, 1fr); }
.g3 { grid-template-columns: repeat(3, 1fr); }
.g4 { grid-template-columns: repeat(4, 1fr); }
.center { text-align: center; }
.center .eyebrow, .center .lead { margin-inline: auto; }
.center .lead { max-width: 640px; }
.stack-sm > * + * { margin-top: 14px; }
.kicker-gap { margin-bottom: 18px; }
.mt-s { margin-top: 18px; } .mt-m { margin-top: 30px; } .mt-l { margin-top: 52px; }

.dot { display:inline-block; width:9px; height:9px; border-radius:50%; background: var(--peach); }

/* ---------------------------------------------------------- responsive */
@media (max-width: 1024px) {
  .ftr-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 880px) {
  body { font-size: 17px; }
  .nav { display: none; }
  .burger { display: flex; }
  .hdr-right .lang { margin-right: 2px; }      /* keep lang toggle in the header, beside the burger */
  .mnav .lang { display: none !important; }     /* drop the now-redundant in-menu duplicate */
  .g2, .g3, .g4 { grid-template-columns: 1fr; }
  .ftr-top { grid-template-columns: 1fr 1fr; }
  .hide-sm { display: none !important; }
}
@media (max-width: 520px) {
  .ftr-top { grid-template-columns: 1fr; }
}

/* lang visibility handled by JS adding .lang-ko / .lang-en to <html> */
html.lang-ko [data-en-only] { display: none !important; }
html.lang-en [data-ko-only] { display: none !important; }

/* ============================================================ HERO */
.hero { position: relative; overflow: hidden; padding: 150px 0 clamp(80px, 12vh, 150px); }
.hero-inner { position: relative; z-index: 2; max-width: 900px; }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video-tint { position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, oklch(0.45 0.16 var(--acc-h) / 0.62) 0%, oklch(0.5 0.17 var(--acc-h) / 0.30) 45%, oklch(0.55 0.16 calc(var(--acc-h) + 20) / 0.20) 100%); }
html.hero-soft .hero-video-tint { background: linear-gradient(to top, var(--bg) 2%, oklch(1 0 0 / 0.55) 55%, oklch(1 0 0 / 0.35)); }
.hero-motion { position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden; }
.hero-motion canvas { width: 100%; height: 100%; display: block; }
html.hero-soft .hero-motion { opacity: 0.85; }
.hero .display { margin-top: 22px; }
.hero .lead { margin-top: 24px; max-width: 600px; }
.hero-cta { margin-top: 38px; display: flex; gap: 14px; flex-wrap: wrap; }

/* vivid (blue field, light text) */
html.hero-vivid .hero {
  background:
    radial-gradient(120% 120% at 50% -10%, var(--accent-soft), transparent 60%),
    linear-gradient(160deg, var(--accent-deep), var(--accent) 60%, oklch(0.5 0.18 calc(var(--acc-h) + 25)));
}
html.hero-vivid .hero .eyebrow { color: #fff; }
html.hero-vivid .hero .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px oklch(1 0 0 / 0.25); }
html.hero-vivid .hero .display { color: #fff; text-shadow: 0 2px 40px oklch(0.3 0.1 var(--acc-h) / 0.25); }
html.hero-vivid .hero .grad-text {
  background: linear-gradient(100deg, #fff, oklch(0.92 0.06 calc(var(--acc-h) + 30)));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
html.hero-vivid .hero .lead { color: oklch(0.97 0.02 var(--acc-h)); }
html.hero-vivid .hero .btn-primary { background: #fff; color: var(--accent-deep); }
html.hero-vivid .hero .btn-primary:hover { box-shadow: 0 14px 30px oklch(0.2 0.05 255 / 0.3); }
html.hero-vivid .hero .btn-ghost { background: oklch(1 0 0 / 0.12); color: #fff; border-color: oklch(1 0 0 / 0.3); backdrop-filter: blur(6px); }
html.hero-vivid .hero .btn-ghost:hover { background: oklch(1 0 0 / 0.2); }
html.hero-vivid .hero .bloom { mix-blend-mode: screen; opacity: 0.9; }
html.hero-vivid .hero-trust { color: oklch(0.95 0.02 var(--acc-h)); }
html.hero-vivid .hero-trust .dot { background: #fff; }

/* soft (light bg, dark text) */
html.hero-soft .hero { background: var(--bg); }
html.hero-soft .hero .display { color: var(--ink); }
html.hero-soft .hero .bloom { opacity: 0.55; filter: saturate(1.05); }
html.hero-soft .hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 160px; z-index: 1;
  background: linear-gradient(to top, var(--bg), transparent);
}

.hero-trust { margin-top: 40px; display: flex; align-items: center; gap: 22px; flex-wrap: wrap; font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.hero-trust .ht { display: inline-flex; align-items: center; gap: 8px; }

/* ============================================================ STAT cards */
.stat-num { font-size: clamp(46px, 6vw, 76px); font-weight: 850; letter-spacing: -0.04em; line-height: 1; color: var(--accent-deep); }
html.hero-vivid .stat-num { color: var(--accent-deep); }

/* ============================================================ STEP list */
.steps { counter-reset: step; display: grid; gap: 18px; }
.step { display: grid; grid-template-columns: 56px 1fr; gap: 20px; align-items: start; padding: 24px; }
.step-no {
  counter-increment: step; width: 48px; height: 48px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 19px;
  background: var(--accent-tint); color: var(--accent-deep); border: 1px solid var(--accent-soft);
}
.step-no::before { content: counter(step, decimal-leading-zero); }

/* ============================================================ PHONE mock */
.phone {
  width: 300px; max-width: 100%; aspect-ratio: 300 / 620; background: var(--ink);
  border-radius: 42px; padding: 11px; box-shadow: var(--shadow-lg); flex-shrink: 0;
}
.phone-scr { width: 100%; height: 100%; background: var(--surface-2); border-radius: 32px; overflow: hidden;
  display: flex; flex-direction: column; }
.phone-top { padding: 14px 18px 10px; display: flex; align-items: center; gap: 8px; border-bottom: 1px solid var(--line); background: var(--surface); }
.phone-top .pdot { width: 9px; height: 9px; border-radius: 50%; background: var(--peach); }
.phone-body { flex: 1; padding: 16px; display: flex; flex-direction: column; gap: 12px; overflow: hidden; }
.bub { max-width: 82%; padding: 11px 15px; border-radius: 16px; font-size: 14.5px; line-height: 1.45; }
.bub.me { align-self: flex-end; background: var(--accent); color: #fff; border-bottom-right-radius: 5px; }
.bub.ai { align-self: flex-start; background: var(--surface); border: 1px solid var(--line); border-bottom-left-radius: 5px; }
.bub.act { align-self: flex-start; background: var(--accent-tint); border: 1px solid var(--accent-soft); color: var(--accent-deep);
  font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 8px; }
.bub.act .tick { width: 16px; height: 16px; border-radius: 50%; background: var(--accent); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 10px; }

/* phone video stage (demo) */
.phone-video { position: relative; flex: 1; background: #0a0e1c; overflow: hidden; }
.dvid { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity .4s var(--ease); }
.dvid.on { opacity: 1; }
.phone-video::after { /* subtle top vignette under the status bar */
  content: ""; position: absolute; inset: 0 0 auto 0; height: 40px; pointer-events: none;
  background: linear-gradient(rgba(0,0,0,0.18), transparent);
}

/* demo tabs */
.demo-tabs { margin-top: 30px; }
.demo-tab {
  display: flex; align-items: center; gap: 8px; text-align: left; width: 100%;
  font-family: inherit; font-size: 15px; font-weight: 650; color: var(--ink-soft);
  padding: 14px 18px; border-radius: 14px; background: var(--surface);
  border: 1px solid var(--line); cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s, border-color .2s, background .2s, color .2s;
}
.demo-tab:hover { transform: translateY(-2px); box-shadow: var(--shadow-sm); border-color: oklch(0.85 0.01 255); }
.demo-tab.on { background: var(--accent-tint); border-color: var(--accent-soft); color: var(--accent-deep); box-shadow: none; }
.demo-tab .pl { margin-left: auto; width: 22px; height: 22px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: var(--surface-2); color: var(--ink-faint); flex-shrink: 0; transition: background .2s, color .2s; }
.demo-tab .pl svg { width: 11px; height: 11px; fill: currentColor; }
.demo-tab.on .pl { background: var(--accent); color: #fff; }

/* ============================================================ ICON tile */.itile { width: 52px; height: 52px; border-radius: 15px; display: flex; align-items: center; justify-content: center;
  background: var(--accent-tint); border: 1px solid var(--accent-soft); margin-bottom: 18px; }
.itile svg { width: 26px; height: 26px; stroke: var(--accent-deep); fill: none; stroke-width: 1.7; }

/* ============================================================ ENV cards (illustration) */
.env-card { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.env-imgwrap { position: relative; aspect-ratio: 3 / 4; background: var(--surface-2); }
.env-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.env-badge {
  position: absolute; left: 14px; bottom: 14px; width: 40px; height: 40px; border-radius: 12px; z-index: 3;
  background: oklch(1 0 0 / 0.92); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm); pointer-events: none;
}
.env-badge svg { width: 21px; height: 21px; stroke: var(--accent-deep); fill: none; stroke-width: 1.8; }
.env-body { padding: 18px 20px 22px; }
.env-body p { margin-top: 8px; font-size: 15.5px; }

/* illustration scene */
.envscene {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(120% 100% at 50% 0%, var(--accent-tint), var(--surface-2));
  overflow: hidden;
}
.envscene::before {
  content: ""; position: absolute; inset: 0; opacity: 0.45;
  background-image: radial-gradient(oklch(0.6 0.04 255 / 0.25) 1px, transparent 1.4px);
  background-size: 15px 15px;
}
.dev { position: relative; z-index: 1; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.dev .scr {
  position: absolute; inset: 6px; border-radius: 9px; overflow: hidden;
  background: linear-gradient(165deg, #fff, var(--surface-2));
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 9%;
}
.vmic { width: 26%; aspect-ratio: 1; border-radius: 50%; background: var(--accent); display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 12px oklch(0.55 0.2 var(--acc-h) / 0.45); flex-shrink: 0; }
.vmic svg { width: 52%; height: 52%; stroke: #fff; fill: none; stroke-width: 2; }
.vwave { display: flex; align-items: flex-end; gap: 2.5px; height: 16%; }
.vwave i { width: 2.6px; border-radius: 3px; background: var(--accent); display: block; transform-origin: bottom;
  animation: veq 1.1s ease-in-out infinite; }
.vwave i:nth-child(1) { height: 38%; animation-delay: 0s; }
.vwave i:nth-child(2) { height: 70%; animation-delay: .12s; }
.vwave i:nth-child(3) { height: 100%; animation-delay: .24s; }
.vwave i:nth-child(4) { height: 60%; animation-delay: .36s; }
.vwave i:nth-child(5) { height: 88%; animation-delay: .18s; }
.vwave i:nth-child(6) { height: 46%; animation-delay: .30s; }
.vwave i:nth-child(7) { height: 30%; animation-delay: .06s; }
@keyframes veq { 0%, 100% { transform: scaleY(0.45); } 50% { transform: scaleY(1); } }
.vbar { width: 52%; height: 4%; border-radius: 4px; background: oklch(0.9 0.02 255); }
.vbar.short { width: 34%; }
/* device silhouettes */
.dev-phone { width: 40%; aspect-ratio: 10 / 19; border-radius: 20px; padding: 5px; }
.dev-kiosk { width: 40%; aspect-ratio: 7 / 10; border-radius: 15px; padding: 5px; margin-top: -8%; }
.dev-kiosk::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 16%; height: 22%; background: linear-gradient(#fff, var(--surface-2)); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 5px 5px; }
.dev-car { width: 78%; aspect-ratio: 16 / 9; border-radius: 13px; padding: 5px; }
.dev-mon { width: 76%; aspect-ratio: 16 / 10; border-radius: 11px; padding: 5px; margin-top: -6%; }
.dev-mon::after { content: ""; position: absolute; top: 100%; left: 50%; transform: translateX(-50%);
  width: 22%; height: 16%; background: linear-gradient(#fff, var(--surface-2)); border: 1px solid var(--line); border-top: 0; border-radius: 0 0 6px 6px; }
.dev-car .scr { flex-direction: row; gap: 6%; padding: 0 8%; }
@media (prefers-reduced-motion: reduce) { .vwave i { animation: none; } }

/* photo fill (careers etc.) */
.cphoto { position: relative; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--surface-2); }
.cphoto img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cphoto-fill img { transform: scale(1.07); transform-origin: center; }

/* interactive gallery (careers — FluiZ에서의 하루) */
.cphoto-z { cursor: pointer; transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .3s; }
.cphoto-z img { transition: transform .6s var(--ease), filter .4s ease; }
.cphoto-z:hover { transform: translateY(-4px); border-color: var(--accent-soft);
  box-shadow: 0 14px 32px oklch(0.55 0.2 var(--acc-h) / 0.22), 0 0 0 1px var(--accent-soft); }
.cphoto-z:hover img { transform: scale(1.08); filter: brightness(1.1) saturate(1.06); }
.cphoto-z.active { border-color: var(--accent); box-shadow: 0 16px 40px oklch(0.55 0.2 var(--acc-h) / 0.34), 0 0 0 2px var(--accent); }
.cphoto-z.active img { filter: brightness(1.06); }

/* ============================================================ NEWS cards */
.news-card { display: flex; flex-direction: column; height: 100%; }
.news-card .ph { aspect-ratio: 16/10; margin-bottom: 18px; }
.news-date { font-size: 13px; font-weight: 600; color: var(--ink-faint); letter-spacing: 0.02em; }
.news-tag { font-size: 12px; font-weight: 700; color: var(--accent-deep); }

/* press-style news card (image + tag + date + title) */
.ncard { display: flex; flex-direction: column; height: 100%; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s; }
.ncard:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: oklch(0.88 0.01 255); }
.ncard image-slot, .ncard .ncard-img { display: block; width: 100%; height: auto; aspect-ratio: 16/10; object-fit: cover; background: var(--surface-2); }
a.ncard { color: inherit; text-decoration: none; }
.ncard-arrow { margin-top: auto; padding-top: 14px; display: inline-flex; align-items: center; gap: 6px; font-size: 12.5px; font-weight: 650; color: var(--accent-deep); }
.ncard-arrow svg { width: 14px; height: 14px; transition: transform .25s var(--ease); }
.ncard:hover .ncard-arrow svg { transform: translateX(3px); }
/* branded thumbnail (when no article photo) */
.nthumb { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px;
  width: 100%; aspect-ratio: 16/10; position: relative; overflow: hidden; color: #fff;
  background: linear-gradient(150deg, var(--accent-deep), var(--accent) 70%, oklch(0.5 0.18 calc(var(--acc-h) + 25))); }
.nthumb::before { content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: radial-gradient(oklch(1 0 0 / 0.18) 1px, transparent 1.4px); background-size: 14px 14px; }
.nthumb svg { width: 40px; height: 40px; stroke: #fff; fill: none; stroke-width: 1.6; position: relative; z-index: 1; opacity: 0.96; }
.nthumb .nsrc { position: relative; z-index: 1; font-size: 13px; font-weight: 700; letter-spacing: 0.02em; opacity: 0.96; }
.ncard-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.ncard-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.ntag { font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em; color: #fff;
  background: oklch(0.55 0.21 25); padding: 4px 9px; border-radius: 6px; flex-shrink: 0; }
.ntag.broadcast { background: oklch(0.5 0.18 285); }
.ntag.award { background: oklch(0.5 0.15 150); }
.ntag.exhibit { background: oklch(0.52 0.13 230); }
.ndate { font-size: 13px; font-weight: 600; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
.ncard-title { font-size: clamp(17px, 1.5vw, 19px); font-weight: 750; line-height: 1.34; letter-spacing: -0.02em;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ncard-desc { margin-top: 10px; font-size: 14.5px; line-height: 1.55; color: var(--ink-faint);
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.ncard-src { margin-top: auto; padding-top: 14px; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); }

/* ============================================================ PUBLICATIONS */
.pub-feature { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(28px, 4vw, 60px); align-items: center; margin-bottom: clamp(44px, 5vw, 68px); }
.pub-photo { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); aspect-ratio: 4 / 3; background: var(--surface-2); }
.pub-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pub-photo .nthumb { height: 100%; aspect-ratio: auto; }
.pub-tl { display: flex; flex-direction: column; }
.pub-tl-row { display: flex; gap: 20px; align-items: baseline; padding: 18px 0; border-top: 1px solid var(--line); }
.pub-tl-row:first-child { border-top: 0; padding-top: 0; }
.pub-tl-row .yr { font-family: ui-monospace, monospace; color: var(--accent-deep); font-weight: 700; flex-shrink: 0; font-size: 14px; line-height: 1.3; }
.pub-tl-row h4 { font-size: clamp(16px, 1.6vw, 19px); font-weight: 700; letter-spacing: -0.02em; }
.pub-tl-row p { margin-top: 3px; font-size: 14.5px; color: var(--ink-faint); }

.pub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(26px, 3vw, 44px); border-top: 1px solid var(--line); padding-top: clamp(36px, 4vw, 56px); }
.pub-col h3 { display: inline-flex; align-items: center; gap: 9px; font-size: 17px; font-weight: 750; letter-spacing: -0.02em; margin-bottom: 6px; }
.pub-col h3 .pc-ic { width: 30px; height: 30px; border-radius: 9px; display: inline-flex; align-items: center; justify-content: center; background: var(--accent-tint); border: 1px solid var(--accent-soft); flex-shrink: 0; }
.pub-col h3 .pc-ic svg { width: 16px; height: 16px; stroke: var(--accent-deep); fill: none; stroke-width: 1.9; }
.pub-list { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.pub-list li { font-size: 14px; line-height: 1.5; color: var(--ink-soft); padding-left: 17px; position: relative; }
.pub-list li::before { content: ""; position: absolute; left: 0; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); opacity: 0.7; }
.pub-list li .yr { display: block; margin-top: 2px; font-size: 12.5px; font-weight: 600; color: var(--ink-faint); font-variant-numeric: tabular-nums; }
@media (max-width: 880px) { .pub-feature { grid-template-columns: 1fr; } .pub-grid { grid-template-columns: 1fr; } }

/* ============================================================ ACCORDION */
.acc-item { border-bottom: 1px solid var(--line); }
.acc-q { width: 100%; text-align: left; background: none; border: 0; padding: 26px 0; display: flex; justify-content: space-between;
  align-items: center; gap: 20px; font-size: clamp(18px, 2vw, 22px); font-weight: 700; color: var(--ink); letter-spacing: -0.02em; }
.acc-q .pm { width: 26px; height: 26px; flex-shrink: 0; position: relative; }
.acc-q .pm::before, .acc-q .pm::after { content: ""; position: absolute; background: var(--accent); border-radius: 2px; transition: transform .3s var(--ease); }
.acc-q .pm::before { inset: 12px 4px auto 4px; height: 2px; }
.acc-q .pm::after { inset: 4px auto 4px 12px; width: 2px; }
.acc-item.open .pm::after { transform: scaleY(0); }
.acc-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc-a .acc-a-in { padding: 0 0 26px; color: var(--ink-soft); font-size: 16.5px; line-height: 1.65; max-width: 760px; }

/* ============================================================ CTA band */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg);
  --cpad: clamp(48px, 7vw, 88px);
  background: linear-gradient(150deg, var(--accent-deep), var(--accent) 60%, oklch(0.5 0.18 calc(var(--acc-h) + 25)));
  color: #fff; padding: var(--cpad); text-align: center; }
.cta-band .bloom { position: absolute; inset: 0; mix-blend-mode: screen; opacity: 0.8; z-index: 0; }
.cta-band > * { position: relative; z-index: 2; }
.cta-band .h-sec, .cta-band .lead { color: #fff; }
.cta-band .lead { opacity: 0.92; margin-inline: auto; max-width: 560px; }
/* CTA concept viz: one AI core → every screen */
.cta-video-frame {
  position: relative; z-index: 2;
  width: calc(100% + 2 * var(--cpad) - 36px);
  margin: calc(18px - var(--cpad)) calc(18px - var(--cpad)) clamp(28px, 4vw, 44px);
  aspect-ratio: 16 / 8.2; border-radius: clamp(12px, 1.4vw, 18px); overflow: hidden;
  border: 1px solid rgba(255,255,255,.28); box-shadow: 0 18px 50px rgba(0,0,0,.28);
  background: rgba(255,255,255,.06);
}
.cta-video-frame video { width: 100%; height: 100%; object-fit: cover; display: block; }
.cta-viz { position: relative; z-index: 2; display: flex; align-items: center; justify-content: center;
  gap: clamp(20px, 3.5vw, 46px); margin: 0 auto clamp(32px, 5vw, 52px); max-width: 620px; }
.cta-viz::before { content: ""; position: absolute; left: 4%; right: 4%; top: 50%; height: 2px; z-index: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.55) 0 5px, transparent 5px 13px); }
.cv-dev { position: relative; z-index: 1; border: 2px solid rgba(255,255,255,.72); border-radius: 11px;
  background: rgba(255,255,255,.14); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 20px rgba(0,0,0,.18); }
.cv-dev.phone   { width: 44px; height: 78px; }
.cv-dev.tablet  { width: 64px; height: 82px; }
.cv-dev.monitor { width: 88px; height: 60px; }
.cv-dev.kiosk   { width: 52px; height: 84px; }
.cv-dot { width: 9px; height: 9px; border-radius: 50%; background: #fff; box-shadow: 0 0 12px rgba(255,255,255,1);
  animation: cvpulse 2.4s ease-in-out infinite; }
.cv-dev.tablet .cv-dot { animation-delay: .3s; } .cv-dev.monitor .cv-dot { animation-delay: .6s; } .cv-dev.kiosk .cv-dot { animation-delay: .9s; }
.cv-core { position: relative; z-index: 2; width: clamp(70px, 10vw, 100px); height: clamp(70px, 10vw, 100px);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 50% 38%, #fff, #cfe0ff);
  box-shadow: 0 0 0 8px rgba(255,255,255,.14), 0 0 28px rgba(255,255,255,.45), 0 8px 30px rgba(0,0,0,.25);
  animation: cvcore 2.8s ease-in-out infinite; }
.cv-core svg { width: 46%; height: 46%; stroke: var(--accent-deep); fill: none; stroke-width: 2; }
@keyframes cvpulse { 0%, 100% { opacity: .4; } 50% { opacity: 1; } }
@keyframes cvcore { 0%, 100% { box-shadow: 0 0 0 8px rgba(255,255,255,.14), 0 0 22px rgba(255,255,255,.4), 0 8px 30px rgba(0,0,0,.25); } 50% { box-shadow: 0 0 0 12px rgba(255,255,255,.10), 0 0 40px rgba(255,255,255,.6), 0 8px 30px rgba(0,0,0,.25); } }
@media (prefers-reduced-motion: reduce) { .cv-dot, .cv-core { animation: none; } }

/* ============================================================ misc */
.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
@media (max-width: 880px) { .split { grid-template-columns: 1fr; } .step { padding: 18px; } }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }

.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.badge-soft { display:inline-flex; align-items:center; gap:8px; padding:8px 14px; border-radius:100px;
  background: var(--surface); border:1px solid var(--line); font-size:13.5px; font-weight:650; color: var(--ink-soft); }

/* ============================================================ AI CORE illustration */
.aicore {
  position: relative; aspect-ratio: 4 / 3.5; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(150deg, var(--accent-deep), var(--accent) 58%, oklch(0.5 0.18 calc(var(--acc-h) + 25)));
  border: 1px solid oklch(1 0 0 / 0.14); box-shadow: var(--shadow-lg);
}
.aicore canvas { position: absolute; inset: 0; width: 100%; height: 100%; display: block; }
.aicore-center {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%, -50%);
  z-index: 2; text-align: center; pointer-events: none;
}
.aicore-center b { display: block; color: #fff; font-size: clamp(15px, 1.5vw, 19px); font-weight: 750; letter-spacing: -0.01em; }
.aicore-center span { display: block; margin-top: 3px; font-size: 11px; font-weight: 600; color: oklch(0.95 0.03 230); letter-spacing: 0.02em; }
.aicore-cap {
  position: absolute; left: 0; right: 0; bottom: clamp(14px, 2.4vw, 22px); text-align: center;
  z-index: 2; font-size: 12.5px; font-weight: 600; color: oklch(0.96 0.02 235); padding: 0 24px; pointer-events: none;
}
.fdiagram {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: clamp(22px, 2.6vw, 34px); display: flex; flex-direction: column; align-items: stretch;
  gap: 12px; box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.fdiagram::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background: radial-gradient(80% 60% at 80% 0%, var(--accent-tint), transparent 60%);
}
.fd-node {
  position: relative; z-index: 1; border: 1px solid var(--line); border-radius: 16px;
  padding: 16px 18px; background: var(--surface-2); display: flex; align-items: center; gap: 14px;
}
.fd-ic {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; background: var(--surface); border: 1px solid var(--line);
}
.fd-ic svg { width: 22px; height: 22px; stroke: var(--accent-deep); fill: none; stroke-width: 1.8; }
.fd-tx { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.fd-tx b { font-size: 15.5px; font-weight: 700; letter-spacing: -0.01em; }
.fd-tx span { font-size: 13px; color: var(--ink-faint); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.fd-arrow { position: relative; z-index: 1; height: 18px; display: flex; align-items: center; justify-content: center; }
.fd-arrow::before { content: ""; width: 2px; height: 100%; background: linear-gradient(var(--accent), transparent); }
.fd-arrow::after { content: ""; position: absolute; bottom: 0; width: 7px; height: 7px;
  border-right: 2px solid var(--accent); border-bottom: 2px solid var(--accent); transform: rotate(45deg); }
/* core */
.fd-core {
  position: relative; z-index: 1; border: 1.5px solid var(--accent-soft); border-radius: 18px;
  padding: 18px; background: var(--accent-tint); display: flex; flex-direction: column; gap: 12px;
}
.fd-core-h { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 750; color: var(--accent-deep); }
.fd-core-h::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px oklch(0.55 0.2 var(--acc-h) / 0.18); }
.fd-core-row { display: flex; gap: 8px; flex-wrap: wrap; }
.fd-pill { font-size: 13px; font-weight: 650; padding: 7px 13px; border-radius: 100px; background: var(--surface); border: 1px solid var(--accent-soft); color: var(--accent-deep); }
.fd-core-note { font-size: 13px; color: var(--ink-soft); }
/* apps */
.fd-apps { position: relative; z-index: 1; }
.fd-apps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; }
.fd-app { aspect-ratio: 1; border-radius: 12px; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; background: var(--surface-2); }
.fd-app i { width: 40%; height: 40%; border-radius: 6px; display: block; }
.fd-apps-label { margin-top: 12px; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 650; color: var(--ink-soft); }
.fd-apps-label::before { content: "✕ API"; font-family: ui-monospace, monospace; font-size: 11px; font-weight: 700; color: var(--accent-deep); background: var(--accent-tint); border: 1px solid var(--accent-soft); padding: 3px 8px; border-radius: 6px; }

/* ============================================================ PARTNERS marquee */
.marquee { position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent); }
.marquee + .marquee { margin-top: clamp(20px, 3vw, 40px); }
.mq-track { display: flex; width: max-content; will-change: transform; }
.mq-track.r1 { animation: mq-left  var(--mq-dur, 26s) linear infinite; }
.mq-track.r2 { animation: mq-right var(--mq-dur, 26s) linear infinite; }
.marquee:hover .mq-track { animation-play-state: paused; }
@keyframes mq-left  { from { transform: translateX(0); }    to { transform: translateX(-50%); } }
@keyframes mq-right { from { transform: translateX(-50%); } to { transform: translateX(0); } }
.mq-logo { flex: 0 0 auto; display: flex; align-items: center; justify-content: center;
  padding: 0 clamp(22px, 3vw, 54px); height: clamp(70px, 8vw, 104px); }
.mq-logo img { width: auto; height: clamp(28px, 3.4vw, 44px); max-width: 260px; object-fit: contain; }
.mq-logo.emblem img { height: clamp(42px, 5vw, 64px); }
@media (prefers-reduced-motion: reduce) { .mq-track { animation: none !important; } }

/* ============================================================ ROLE list */
.role {
  display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 28px;
  padding: 26px 8px; border-top: 1px solid var(--line); transition: padding .25s var(--ease), background .25s;
}
.role:last-child { border-bottom: 1px solid var(--line); }
.role:hover { background: var(--surface-2); padding-inline: 20px; }
.role-main { display: flex; flex-direction: column; gap: 6px; }
.role-main .h-card { margin: 0; }
.role-meta { display: flex; gap: 22px; font-size: 14.5px; font-weight: 600; color: var(--ink-faint); }
.role-arr { width: 22px; height: 22px; color: var(--accent-deep); }
.role-apply {
  display: inline-flex; align-items: center; gap: 8px; flex-shrink: 0;
  font-size: 14.5px; font-weight: 700; color: var(--accent-deep);
  padding: 10px 18px; border-radius: 100px; border: 1px solid var(--accent-soft);
  background: var(--accent-tint); transition: background .2s, color .2s, box-shadow .25s var(--ease);
}
.role-apply svg { width: 16px; height: 16px; }
.role:hover .role-apply { background: var(--accent); color: #fff; border-color: var(--accent); box-shadow: 0 8px 20px oklch(0.55 0.2 var(--acc-h) / 0.30); }

/* ============================================================ JOB accordion */
.jobs { margin-top: clamp(28px, 4vw, 44px); display: flex; flex-direction: column; gap: 14px; }
.job { border: 1px solid var(--line); border-radius: var(--radius); background: var(--surface); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.job.open { box-shadow: var(--shadow); border-color: oklch(0.88 0.01 255); }
.job-head { display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: clamp(14px, 2vw, 26px);
  padding: clamp(20px, 2.4vw, 28px) clamp(20px, 2.4vw, 30px); cursor: pointer; }
.job-info { display: flex; flex-direction: column; gap: 9px; min-width: 0; }
.job-title { font-size: clamp(18px, 1.9vw, 23px); font-weight: 760; letter-spacing: -0.022em; }
.job-meta { display: flex; gap: 16px; font-size: 14px; font-weight: 600; color: var(--ink-faint); }
.job-meta span { white-space: nowrap; }
.job-toggle { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); background: var(--surface-2);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.job-toggle svg { width: 18px; height: 18px; stroke: var(--accent-deep); fill: none; stroke-width: 2.6; transition: transform .35s var(--ease); }
.job.open .job-toggle { background: var(--accent-tint); }
.job.open .job-toggle svg { transform: rotate(180deg); }
.job-body { max-height: 0; overflow: hidden; transition: max-height .5s var(--ease); }
.job-body-in { padding: 4px clamp(20px, 2.4vw, 30px) clamp(26px, 3vw, 36px); }
.job-body-in .role-apply { margin-top: 26px; }
@media (max-width: 680px) {
  .job-head { grid-template-columns: 1fr auto; }
  .job-meta { gap: 14px; }
}

/* JD content */
.jd { border-top: 1px solid var(--line-soft); padding-top: 6px; }
.jd h4 { font-size: 14.5px; font-weight: 750; color: var(--accent-deep); margin: 24px 0 10px; letter-spacing: 0.01em; }
.jd p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.62; }
.jd ul { margin: 0; padding-left: 19px; display: flex; flex-direction: column; gap: 7px; }
.jd li { color: var(--ink-soft); font-size: 15.5px; line-height: 1.55; }
.jd li::marker { color: var(--accent); }
.jd .jd-quote { background: var(--accent-tint); border-left: 3px solid var(--accent); padding: 15px 17px;
  border-radius: 0 12px 12px 0; color: var(--ink); font-weight: 500; font-size: 15.5px; line-height: 1.6; }
.jd .jd-quote + p { margin-top: 12px; }
@media (max-width: 720px) {
  .role { grid-template-columns: 1fr auto; gap: 10px 16px; }
  .role-meta { grid-column: 1 / -1; gap: 16px; }
  .role-apply { grid-row: 1; grid-column: 2; }
}

/* ============================================================ FORM */
.fld { display: flex; flex-direction: column; gap: 8px; }
.fld > span { font-size: 13.5px; font-weight: 650; color: var(--ink-soft); letter-spacing: -0.01em; }
.fld input, .fld select, .fld textarea {
  font-family: inherit; font-size: 16px; color: var(--ink); background: var(--surface-2);
  border: 1px solid var(--line); border-radius: 13px; padding: 13px 15px; width: 100%;
  transition: border-color .2s, box-shadow .2s, background .2s; resize: vertical;
}
.fld input::placeholder, .fld textarea::placeholder { color: var(--ink-faint); }
.fld input:focus, .fld select:focus, .fld textarea:focus {
  outline: 0; border-color: var(--accent); background: var(--surface);
  box-shadow: 0 0 0 4px var(--accent-soft);
}
.fld select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23667' stroke-width='2.4'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 15px center; padding-right: 40px; }

/* contact map embed */
.mapembed { position: relative; border-radius: 16px; overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.mapembed iframe { display: block; width: 100%; height: 280px; border: 0; filter: saturate(1.02); }
.mapembed-open { position: absolute; right: 12px; bottom: 12px; z-index: 2;
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 650; color: var(--accent-deep);
  background: oklch(1 0 0 / 0.94); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid var(--line); border-radius: 100px; padding: 8px 14px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s; }
.mapembed-open svg { width: 14px; height: 14px; }
.mapembed-open:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
