/* ===========================================================
   MAIPROFILE — 이진희 사업 소개 랜딩
   하데스팀 / 정적 사이트 / GitHub Pages
   =========================================================== */

:root {
  --bg: #060912;
  --bg-2: #0a1124;
  --bg-3: #0f1830;
  --ink: #e7ecf6;
  --ink-2: #aab3c8;
  --muted: #6f7793;
  --line: rgba(255,255,255,.08);
  --line-2: rgba(255,255,255,.14);
  --primary: #4f8bff;
  --primary-2: #7c5cff;
  --accent: #00e5c8;
  --warn: #ffb547;
  --card: rgba(255,255,255,.035);
  --card-h: rgba(255,255,255,.06);
  --radius: 18px;
  --radius-lg: 28px;
  --shadow: 0 30px 60px -30px rgba(0,0,0,.6), 0 12px 30px -10px rgba(79,139,255,.18);
  --maxw: 1180px;
  --grad: linear-gradient(135deg, #4f8bff 0%, #7c5cff 50%, #00e5c8 100%);
  --grad-soft: linear-gradient(135deg, rgba(79,139,255,.18), rgba(124,92,255,.12) 60%, rgba(0,229,200,.12));
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { width: min(100% - 40px, var(--maxw)); margin-inline: auto; }

/* ============ NAV ============ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: rgba(6,9,18,.72);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: -0.01em;
}
.brand__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  filter: drop-shadow(0 6px 16px rgba(79,139,255,.4));
  display: block;
}
.brand__accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav__links { display: flex; align-items: center; gap: 28px; font-size: 14px; }
.nav__links a { color: var(--ink-2); transition: color .2s; }
.nav__links a:hover { color: var(--ink); }
/* Language switcher */
.lang-switch {
  display: inline-flex;
  gap: 2px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  overflow: hidden;
}
.lang-btn {
  background: transparent;
  border: none;
  color: var(--muted);
  padding: 5px 10px;
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  cursor: pointer;
  transition: all .15s;
}
.lang-btn:hover { color: var(--ink); background: var(--card-h); }
.lang-btn.is-active {
  background: var(--primary);
  color: white;
}

.nav__admin {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--muted) !important;
}
.nav__admin:hover {
  border-color: var(--accent);
  color: var(--accent) !important;
  background: var(--card-h);
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s, background .2s, border-color .2s;
  white-space: nowrap;
}
.btn--primary {
  background: var(--grad);
  color: white;
  box-shadow: 0 14px 30px -10px rgba(79,139,255,.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 40px -12px rgba(79,139,255,.7); }
.btn--ghost {
  border-color: var(--line-2);
  color: var(--ink);
  background: transparent;
}
.btn--ghost:hover { background: var(--card-h); border-color: var(--primary); }
.btn--big { padding: 18px 32px; font-size: 16px; }
.btn--small { padding: 9px 16px; font-size: 13px; }

/* ============ HERO ============ */
.hero { position: relative; padding: 80px 0 96px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; pointer-events: none; }
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: .55;
}
.orb--a { width: 520px; height: 520px; background: #4f8bff; top: -120px; left: -80px; }
.orb--b { width: 460px; height: 460px; background: #7c5cff; bottom: -120px; right: -60px; opacity: .45; }
.grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 75%);
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr .9fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin: 0 0 18px;
}
.eyebrow--center { text-align: center; }

.hero__title {
  font-size: clamp(36px, 5.6vw, 68px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 900;
  margin: 0 0 26px;
}
.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 560px;
  margin: 0 0 32px;
}
.hero__lead strong { color: var(--ink); font-weight: 600; }

.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero__metrics {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.hero__metrics li { display: flex; flex-direction: column; gap: 4px; }
.hero__metrics b {
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
}
.hero__metrics span { font-size: 12px; color: var(--muted); }

.hero__photo {
  position: relative;
  margin: 0;
  display: grid;
  place-items: center;
}
.hero__photo img {
  position: relative;
  z-index: 2;
  border-radius: 24px;
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #1a2547, #0a1124);
  max-width: 440px;
  width: 100%;
}
.hero__photo-ring {
  position: absolute;
  inset: -40px;
  border-radius: 36px;
  background: var(--grad);
  filter: blur(60px);
  opacity: .4;
  z-index: 1;
}

/* ============ BRAND MEANING (hero inline + section) ============ */
.brand-meaning {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 22px;
  padding: 10px 18px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
}
.brand-meaning b {
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.005em;
}
.brand-meaning__op {
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
}
.brand-meaning em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  margin-left: 4px;
}

.brand-section {
  padding: 64px 0 72px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 15% 0%, rgba(79,139,255,.08), transparent 60%),
    radial-gradient(circle at 85% 100%, rgba(0,229,200,.06), transparent 60%);
}
.brand-card {
  display: flex;
  align-items: center;
  gap: 36px;
  padding: 38px 44px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.brand-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--grad);
}
.brand-card__logo {
  width: 92px; height: 92px;
  flex-shrink: 0;
  filter: drop-shadow(0 16px 32px rgba(79,139,255,.35));
}
.brand-card__copy { flex: 1; min-width: 0; }
.brand-card__copy .eyebrow { margin-bottom: 10px; }
.brand-card h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 900;
  margin: 0 0 14px;
  letter-spacing: -.02em;
  line-height: 1.1;
}
.brand-card__phon {
  font-size: .55em;
  color: var(--muted);
  font-weight: 600;
  margin-left: 8px;
  letter-spacing: 0;
}
.brand-card p {
  margin: 0 0 10px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.7;
}
.brand-card p:last-child { margin-bottom: 0; }
.brand-card b { color: var(--ink); font-weight: 700; margin-right: 4px; }
.brand-card em {
  color: var(--accent);
  font-style: normal;
  font-weight: 500;
  font-size: 13px;
}
.brand-card__tag {
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 14.5px !important;
}
.brand-card__tag strong { font-weight: 900; font-size: 1.1em; }

/* ============ TRUSTED BY ============ */
.trusted {
  padding: 36px 0 48px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.015);
}
.trusted__label {
  text-align: center;
  font-size: 11px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.trusted__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 36px 56px;
}
.trusted__list li {
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-2);
  letter-spacing: -.01em;
  opacity: .8;
  transition: opacity .2s, color .2s;
}
.trusted__list li:hover { opacity: 1; color: var(--ink); }

/* ============ SECTIONS ============ */
.section { padding: 110px 0; position: relative; }
.section--alt {
  background: linear-gradient(180deg, transparent, rgba(79,139,255,.04) 30%, transparent);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--dark {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section--cta {
  background:
    radial-gradient(circle at 80% 20%, rgba(124,92,255,.15), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(0,229,200,.12), transparent 50%),
    var(--bg-2);
  border-top: 1px solid var(--line);
}
.section__inner { }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 64px; }
.section__head--light { color: var(--ink); }
.section__head h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
  line-height: 1.15;
}
.section__sub {
  color: var(--ink-2);
  font-size: 16px;
  margin: 0;
}
.section__sub em { font-style: normal; color: var(--accent); font-weight: 500; }

/* ============ ABOUT CARDS ============ */
.about__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.card {
  padding: 32px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform .25s, border-color .25s, background .25s;
}
.card:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--card-h); }
.card__icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  font-size: 24px;
  margin-bottom: 18px;
}
.card h3 { font-size: 18px; margin: 0 0 10px; font-weight: 700; }
.card p { margin: 0; font-size: 14px; color: var(--ink-2); line-height: 1.65; }

/* ============ CAPABILITY ============ */
.cap__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.cap {
  padding: 38px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}
.cap::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--grad);
  opacity: .6;
}
.cap header { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; }
.cap__no {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  font-weight: 800;
  font-size: 14px;
  color: var(--accent);
}
.cap header h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.cap > p { color: var(--ink-2); margin: 0 0 18px; font-size: 15px; }
.cap ul { margin: 0; padding: 0 0 0 18px; color: var(--ink-2); font-size: 14px; }
.cap ul li { margin-bottom: 6px; }

/* ============ PROJECTS ============ */
.filters {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center;
  margin-top: 30px;
}
.chip {
  background: transparent;
  border: 1px solid var(--line-2);
  color: var(--ink-2);
  padding: 9px 18px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}
.chip:hover { color: var(--ink); border-color: var(--primary); }
.chip.is-active {
  background: var(--grad);
  border-color: transparent;
  color: white;
  box-shadow: 0 8px 18px -6px rgba(79,139,255,.5);
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.proj {
  position: relative;
  padding: 22px 22px 24px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: transform .25s, border-color .25s, background .25s;
  display: flex; flex-direction: column; gap: 8px;
}
.proj:hover { transform: translateY(-3px); border-color: var(--primary); background: var(--card-h); }
.proj__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.proj__name {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -.005em;
  color: var(--ink);
}
.proj__cat {
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  color: var(--accent);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.proj__desc {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

/* ============ TIMELINE ============ */
.timeline {
  list-style: none;
  padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 7%;
  right: 7%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), transparent);
  opacity: .4;
}
.timeline li {
  position: relative;
  padding: 28px 22px;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}
.timeline li::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px var(--bg-2);
}
.year {
  display: block;
  font-size: 13px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .15em;
  margin-bottom: 12px;
}
.timeline h3 { margin: 0 0 8px; font-size: 16px; font-weight: 700; }
.timeline p { margin: 0; font-size: 13px; color: var(--ink-2); }

/* ============ STRATEGY ============ */
.strategy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.strat {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  position: relative;
}
.strat--mid { background: linear-gradient(180deg, rgba(79,139,255,.08), rgba(124,92,255,.04)); border-color: var(--line-2); }
.strat--future { background: linear-gradient(180deg, rgba(0,229,200,.07), rgba(124,92,255,.03)); border-color: var(--line-2); }
.strat header { margin-bottom: 22px; }
.strat__tag {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--grad-soft);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  margin-bottom: 12px;
  font-weight: 600;
}
.strat header h3 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -.01em; }
.strat ol { margin: 0; padding: 0; list-style: none; counter-reset: s; }
.strat ol li {
  counter-increment: s;
  position: relative;
  padding-left: 38px;
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.strat ol li:last-child { padding-bottom: 0; }
.strat ol li::before {
  content: '0' counter(s);
  position: absolute;
  left: 0; top: 0;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .05em;
}
.strat ol li b { color: var(--ink); font-weight: 600; }

/* ============ VISION ============ */
.vision {
  padding: 100px 0;
  text-align: center;
  background:
    radial-gradient(ellipse at center, rgba(79,139,255,.15), transparent 60%),
    var(--bg);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.vision blockquote {
  margin: 24px auto 0;
  font-size: clamp(28px, 4.4vw, 56px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
  max-width: 900px;
  position: relative;
}
.qmark {
  font-size: 1.4em;
  color: var(--primary);
  vertical-align: -0.15em;
  margin: 0 .12em;
  opacity: .6;
}
.qmark--end { color: var(--accent); }

/* ============ CTA ============ */
.cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 60px 0;
}
.cta h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.cta__panel {
  padding: 40px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.cta__panel .btn { width: 100%; justify-content: center; margin-bottom: 26px; }
.cta__list { list-style: none; padding: 0; margin: 0; }
.cta__list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.cta__list li:last-child { border-bottom: none; }
.cta__list span { color: var(--muted); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }
.cta__list b { color: var(--ink); font-weight: 600; }
.cta__list a { color: var(--primary); }
.cta__list a:hover { color: var(--accent); }

/* ============ FOOTER ============ */
.foot {
  padding: 30px 0;
  border-top: 1px solid var(--line);
  background: var(--bg-2);
}
.foot__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--ink-2);
}
.muted { color: var(--muted); }

/* ============ ENGAGE SECTION (conversion — distinct teal accent) ============ */
.section--engage {
  background:
    radial-gradient(circle at 80% 0%, rgba(0,229,200,.10), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(124,92,255,.08), transparent 60%),
    var(--bg-2);
  border-top: 1px solid var(--line-2);
  border-bottom: 1px solid var(--line-2);
  position: relative;
}
.section--engage::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
  opacity: .5;
}
.eyebrow--engage { color: var(--accent); }
.section--engage .section__head h2 .grad { background: linear-gradient(135deg, #00e5c8, #4f8bff); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section--compact { padding: 70px 0; }

/* ============ PROJECTS — 2-tier (live / internal) ============ */
.projects-tier {
  margin-bottom: 56px;
}
.projects-tier:last-of-type { margin-bottom: 0; }
.projects-tier__head {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  margin-bottom: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-left: 4px solid var(--primary);
  border-radius: 12px;
}
.projects-tier--live .projects-tier__head {
  border-left-color: var(--accent);
  background:
    linear-gradient(90deg, rgba(0,229,200,.08), transparent 60%),
    var(--card);
}
.projects-tier--internal .projects-tier__head {
  border-left-color: var(--muted);
  opacity: .92;
}
.projects-tier__icon { font-size: 26px; line-height: 1; padding-top: 4px; }
.projects-tier__head h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.005em;
}
.projects-tier__count {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  margin-left: 4px;
}
.projects-tier--internal .projects-tier__count { color: var(--muted); }
.projects-tier__sub {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.projects-empty {
  padding: 30px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
  background: var(--card);
  border: 1px dashed var(--line-2);
  border-radius: 12px;
}

/* Live card — emphasized */
.proj--live {
  background: linear-gradient(180deg, rgba(0,229,200,.08), rgba(79,139,255,.04) 80%);
  border-color: var(--line-2);
  position: relative;
}
.proj--live::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 16px 16px 0 0;
}
.proj--live:hover {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(0,229,200,.12), rgba(79,139,255,.06) 80%);
  box-shadow: 0 12px 28px -12px rgba(0,229,200,.25);
}
.proj__live {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  align-items: center;
}
.proj__live-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px;
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  color: var(--accent);
  font-size: 11.5px;
  font-weight: 600;
  text-decoration: none;
  flex: 1;
  min-width: 0;
  transition: background .2s, border-color .2s;
}
.proj__live-link:hover {
  background: rgba(0,229,200,.18);
  border-color: var(--accent);
}
.proj__live-link span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}
.proj__info-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 7px 11px;
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 8px;
  color: var(--ink-2);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
}
.proj__info-btn:hover {
  color: var(--ink);
  border-color: var(--primary);
  background: var(--card-h);
}

/* Internal card — subdued, more text */
.proj--internal {
  opacity: .92;
  background: var(--card);
}
.proj--internal:hover { opacity: 1; }
.proj--internal .proj__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.proj__internal-tag {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .02em;
}

.proj.is-hidden { display: none; }
.projects-more {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}
.projects-more .btn {
  padding: 14px 28px;
}
.projects-more .btn svg {
  transition: transform .25s;
}
.projects-more.is-expanded .btn svg {
  transform: rotate(180deg);
}

/* ============ BACK TO TOP ============ */
.top-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 40;
  box-shadow: 0 10px 30px -10px rgba(0,0,0,.6);
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px);
  transition: opacity .25s, transform .25s, background .2s, border-color .2s;
}
.top-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.top-btn:hover {
  background: var(--card-h);
  border-color: var(--primary);
}

/* ============ EXPANDED FOOTER ============ */
.foot__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
  padding: 50px 0 36px;
}
.foot__col h5 {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 14px;
  font-weight: 700;
}
.foot__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.foot__col ul li {
  font-size: 13px;
  color: var(--ink-2);
}
.foot__col ul li a {
  color: var(--ink-2);
  transition: color .15s;
}
.foot__col ul li a:hover { color: var(--accent); }
.foot__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-weight: 800;
  font-size: 17px;
}
.foot__col p { margin: 0; font-size: 13px; line-height: 1.6; }

/* ============ CONTACT CARD (replaces big duplicate CTA) ============ */
.contact-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 50px 60px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.contact-card h2 {
  margin: 8px 0 14px;
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.02em;
}
.contact-card p { margin: 0 0 22px; }
.contact-card__info {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.contact-card__info li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.contact-card__info li:last-child { border-bottom: none; }
.contact-card__info span {
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 600;
}
.contact-card__info b { color: var(--ink); font-weight: 600; text-align: right; }
.contact-card__info a { color: var(--primary); }
.contact-card__info a:hover { color: var(--accent); }

/* ============ FOUNDER SECTION ============ */
.muted-light { color: var(--muted); font-weight: 500; font-size: .75em; letter-spacing: 0; }

.founder {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 40px;
  align-items: start;
}
.founder__badge {
  padding: 36px 32px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}
.founder__role {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 999px;
  background: var(--grad);
  color: white;
  font-size: 11px;
  letter-spacing: .15em;
  font-weight: 700;
  margin-bottom: 14px;
}
.founder__badge h3 {
  font-size: 32px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: -.02em;
}
.founder__title {
  margin: 0 0 24px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 500;
}
.founder__credits {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.founder__credits li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 14px;
  padding: 8px 0;
  font-size: 13px;
  align-items: baseline;
}
.founder__credits span {
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.founder__credits b { color: var(--ink); font-weight: 500; }

.founder__why h3 {
  font-size: 22px;
  margin: 8px 0 24px;
  font-weight: 700;
  letter-spacing: -.01em;
}
.about__grid--2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.about__grid--2 .card { padding: 26px 22px; }
.about__grid--2 .card h4 {
  font-size: 16px;
  margin: 0 0 8px;
  font-weight: 700;
}
.about__grid--2 .card p {
  margin: 0;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}

/* ============ PROJECT CARD STATUS ============ */
.proj { cursor: pointer; }
.proj__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.proj__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.proj__dot--live {
  background: #00e5c8;
  box-shadow: 0 0 0 3px rgba(0,229,200,.18);
  animation: pulse 2.4s ease-in-out infinite;
}
.proj__dot--beta {
  background: #4f8bff;
  box-shadow: 0 0 0 3px rgba(79,139,255,.18);
}
.proj__dot--poc {
  background: #ffb547;
  box-shadow: 0 0 0 3px rgba(255,181,71,.15);
}
.proj__dot--planning {
  background: var(--muted);
  box-shadow: 0 0 0 3px rgba(111,119,147,.15);
}
@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(0,229,200,.18); }
  50%     { box-shadow: 0 0 0 6px rgba(0,229,200,.08); }
}
.proj__more {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: var(--accent);
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: .03em;
}
.proj__more svg { width: 12px; height: 12px; }

/* ============ MODAL ============ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  animation: modalIn .25s ease-out;
}
.modal[hidden] { display: none; }
@keyframes modalIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 5, 12, .82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.modal__panel {
  position: relative;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  width: min(680px, 100%);
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,.7), 0 0 0 1px var(--line-2);
  animation: panelIn .35s cubic-bezier(.16,1,.3,1);
  scrollbar-width: thin;
  scrollbar-color: var(--line-2) transparent;
}
.modal__panel::-webkit-scrollbar { width: 8px; }
.modal__panel::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 8px; }
@keyframes panelIn {
  from { transform: translateY(20px) scale(.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}
.modal__close {
  position: absolute;
  top: 18px; right: 18px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--ink-2);
  cursor: pointer;
  transition: all .2s;
  z-index: 2;
}
.modal__close:hover {
  background: var(--card-h);
  color: var(--ink);
  border-color: var(--primary);
}

.modal__head {
  padding: 38px 38px 28px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 80% -20%, rgba(79,139,255,.18), transparent 60%),
    radial-gradient(circle at 10% 100%, rgba(0,229,200,.08), transparent 60%);
}
.modal__cat {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--grad-soft);
  padding: 5px 12px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  margin-bottom: 14px;
  font-weight: 600;
}
.modal__head h2 {
  margin: 0 0 10px;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.2;
}
.modal__short {
  margin: 0;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.5;
}

.modal__body { padding: 28px 38px 38px; }
.modal__section { margin-bottom: 28px; }
.modal__section:last-child { margin-bottom: 0; }
.modal__section h4 {
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  margin: 0 0 12px;
}
.modal__section p {
  margin: 0;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.7;
}
.modal__section--row {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.tech-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tech-list li {
  padding: 7px 13px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.status-badge::before {
  content: '';
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
}
.status-badge.is-live { color: #00e5c8; background: rgba(0,229,200,.1); }
.status-badge.is-beta { color: #4f8bff; background: rgba(79,139,255,.12); }
.status-badge.is-poc { color: #ffb547; background: rgba(255,181,71,.12); }
.status-badge.is-planning { color: var(--muted); background: rgba(111,119,147,.12); }

.modal__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.modal__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 18px;
  background: var(--card);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  text-decoration: none;
  color: var(--ink);
  transition: all .2s;
}
.modal__link:hover {
  background: var(--card-h);
  border-color: var(--primary);
  transform: translateY(-1px);
}
.modal__link__label {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  flex: 1;
}
.modal__link__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--grad-soft);
  border-radius: 9px;
  border: 1px solid var(--line-2);
  flex-shrink: 0;
}
.modal__link__text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.modal__link__text b { font-size: 13px; font-weight: 600; }
.modal__link__text span {
  font-size: 11px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.modal__link__pill {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  flex-shrink: 0;
}
.modal__link__pill.is-live { background: rgba(0,229,200,.15); color: #00e5c8; }
.modal__link__pill.is-configured { background: rgba(255,181,71,.15); color: #ffb547; }

.modal__nolinks {
  padding: 18px;
  background: var(--card);
  border: 1px dashed var(--line-2);
  border-radius: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

body.modal-open { overflow: hidden; }

/* ============ PROCESS — VIBE CODING ============ */
.proof-strip {
  list-style: none;
  padding: 0; margin: 0 0 80px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 28px 0;
}
.proof-strip li {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 14px;
  border-right: 1px solid var(--line);
}
.proof-strip li:last-child { border-right: none; }
.proof-strip b {
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.02em;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.proof-strip b span {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
  background: none;
  -webkit-text-fill-color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}
.proof-strip .cite {
  font-size: 11px;
  color: var(--ink-2);
  line-height: 1.45;
}
.proof-strip sup { color: var(--accent); font-weight: 700; }

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 80px;
  position: relative;
}
.process::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), var(--accent), var(--primary), transparent);
  opacity: .35;
  z-index: 0;
}
.step {
  position: relative;
  z-index: 1;
  padding: 32px 26px;
  background: var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, border-color .25s;
}
.step:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}
.step header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}
.step__no {
  font-size: 38px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.04em;
  line-height: 1;
}
.step__tag {
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  padding: 5px 10px;
  border-radius: 999px;
}
.step h3 {
  font-size: 19px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -.01em;
  line-height: 1.3;
}
.step > p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.step > p em { color: var(--accent); font-style: normal; font-weight: 500; }
.step ul {
  margin: 6px 0 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}
.step ul li {
  font-size: 12px;
  color: var(--ink-2);
  padding: 5px 0 5px 16px;
  position: relative;
}
.step ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 11px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  opacity: .7;
}
.step ul li sup { color: var(--accent); font-weight: 700; }

/* Use cases */
.usecases { margin-bottom: 70px; }
.usecases__head {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 24px;
  text-align: center;
  letter-spacing: -.005em;
  color: var(--ink-2);
}
.usecases__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.usecase {
  display: block;
  padding: 28px 26px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: inherit;
  transition: transform .25s, border-color .25s, background .25s;
  position: relative;
  overflow: hidden;
}
.usecase:hover {
  transform: translateY(-3px);
  border-color: var(--primary);
  background: var(--card-h);
}
.usecase::after {
  content: '↗';
  position: absolute;
  top: 22px; right: 22px;
  font-size: 18px;
  color: var(--muted);
  transition: color .2s, transform .2s;
}
.usecase:hover::after { color: var(--accent); transform: translate(2px, -2px); }
.usecase__metric {
  display: inline-block;
  font-size: 30px;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -.025em;
  margin-bottom: 8px;
  line-height: 1;
}
.usecase h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 10px;
  letter-spacing: -.01em;
  padding-right: 22px;
}
.usecase p {
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.6;
}
.usecase__src {
  display: inline-block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
  width: 100%;
}

/* ============ ENGAGEMENT TIERS ============ */
.tiers { margin-bottom: 80px; }
.tiers__head {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: -.005em;
  color: var(--ink-2);
}
.tiers__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.tier {
  padding: 32px 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .25s, border-color .25s;
}
.tier:hover { transform: translateY(-3px); border-color: var(--primary); }
.tier--featured {
  background: linear-gradient(180deg, rgba(79,139,255,.12), rgba(124,92,255,.04));
  border-color: var(--primary);
  position: relative;
  box-shadow: 0 30px 60px -30px rgba(79,139,255,.4);
}
.tier--featured::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}
.tier header { display: flex; flex-direction: column; gap: 8px; }
.tier__pill {
  display: inline-block;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
  background: var(--grad-soft);
  border: 1px solid var(--line-2);
  padding: 5px 12px;
  border-radius: 999px;
  align-self: flex-start;
}
.tier__pill--featured {
  background: var(--grad);
  color: white;
  border-color: transparent;
}
.tier h4 {
  font-size: 22px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -.015em;
}
.tier__time {
  margin: 0;
  font-size: 13px;
  color: var(--accent);
  font-weight: 600;
}
.tier__desc {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-2);
  line-height: 1.6;
}
.tier ul {
  margin: 0;
  padding: 14px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
  flex: 1;
}
.tier ul li {
  font-size: 13px;
  color: var(--ink-2);
  padding: 5px 0 5px 22px;
  position: relative;
  line-height: 1.5;
}
.tier ul li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 5px;
  color: var(--accent);
  font-weight: 800;
}
.tier__price {
  margin: 0;
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  font-size: 13px;
  color: var(--ink);
  font-weight: 600;
  text-align: center;
}

/* ============ INTAKE FORM ============ */
.intake {
  margin: 0 0 80px;
  padding: 50px 50px 56px;
  background:
    radial-gradient(circle at 90% 0%, rgba(79,139,255,.18), transparent 50%),
    radial-gradient(circle at 0% 100%, rgba(0,229,200,.10), transparent 50%),
    var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.intake__head {
  text-align: center;
  margin-bottom: 38px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.intake__head h3 {
  font-size: clamp(24px, 2.6vw, 32px);
  margin: 0 0 14px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.intake__head .section__sub strong { color: var(--accent); }

.intake__form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 760px;
  margin: 0 auto;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field--row .field__inner { display: flex; flex-direction: column; gap: 8px; }
.field__inner > span,
.field > span,
.field__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: .03em;
}
.field em {
  color: var(--accent);
  font-style: normal;
  font-weight: 700;
  margin-left: 2px;
}
.field input[type="text"],
.field input[type="email"],
.field input[type="url"],
.field textarea {
  width: 100%;
  padding: 13px 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  color: var(--ink);
  font-family: inherit;
  font-size: 14px;
  line-height: 1.55;
  transition: border-color .2s, background .2s;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted);
  font-size: 13.5px;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: rgba(0,0,0,.4);
  box-shadow: 0 0 0 3px rgba(79,139,255,.18);
}
.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #ff6b8a;
}

fieldset.field {
  border: none;
  padding: 0;
  margin: 0;
}
.radio-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.radio {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(0,0,0,.25);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  cursor: pointer;
  transition: all .2s;
  font-size: 14px;
}
.radio:hover { border-color: var(--primary); background: rgba(0,0,0,.4); }
.radio input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--line-2);
  border-radius: 50%;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s;
}
.radio input:checked {
  border-color: var(--accent);
}
.radio input:checked::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px rgba(0,229,200,.6);
}
.radio:has(input:checked) {
  border-color: var(--accent);
  background: rgba(0,229,200,.08);
}
.radio span { display: flex; flex-direction: column; gap: 2px; line-height: 1.3; font-weight: 600; }
.radio small { font-size: 11px; color: var(--muted); font-weight: 500; }

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
  cursor: pointer;
}
.checkbox input {
  appearance: none;
  -webkit-appearance: none;
  width: 18px; height: 18px;
  border: 2px solid var(--line-2);
  border-radius: 5px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition: border-color .2s, background .2s;
}
.checkbox input:checked {
  background: var(--accent);
  border-color: var(--accent);
}
.checkbox input:checked::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--bg);
  font-weight: 900;
  font-size: 13px;
}

.intake__consent {
  padding-top: 6px;
}

.intake__actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  padding-top: 6px;
}
.intake__autosave {
  margin: 0 0 0 auto;
  font-size: 11px;
  color: var(--muted);
  letter-spacing: .03em;
}

/* Success state */
.intake__success {
  text-align: center;
  padding: 24px 0 8px;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.intake__success-icon {
  width: 80px; height: 80px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--grad-soft);
  border: 2px solid var(--accent);
  color: var(--accent);
  margin-bottom: 10px;
  box-shadow: 0 0 0 8px rgba(0,229,200,.08);
}
.intake__success h3 {
  font-size: 26px;
  margin: 0;
  font-weight: 800;
  letter-spacing: -.02em;
}
.intake__success p {
  margin: 0;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.6;
}
.intake__success p strong { color: var(--ink); }
.intake__success .muted { font-size: 12px; }
.intake__id-card {
  background: var(--card);
  border: 1px solid var(--accent);
  border-radius: 12px;
  padding: 20px 24px;
  text-align: center;
  width: 100%;
  max-width: 480px;
}
.intake__id-label {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
}
.intake__id-card code {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  background: rgba(0,0,0,.3);
  padding: 10px 16px;
  border-radius: 8px;
  word-break: break-all;
  user-select: all;
  cursor: text;
  letter-spacing: .02em;
}
.intake__id-hint {
  margin: 10px 0 0;
  font-size: 12px;
  line-height: 1.5;
}
.intake__id-hint a { color: var(--primary); }

/* ============ POST-SUBMIT PIPELINE ============ */
.pipeline { margin-bottom: 56px; }
.pipeline__head {
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 28px;
  text-align: center;
  letter-spacing: -.005em;
  color: var(--ink-2);
}
.pipeline__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.pipeline__list::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 6%; right: 6%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), var(--primary), var(--accent), transparent);
  opacity: .35;
}
.pipeline__list li {
  position: relative;
  padding: 24px 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  z-index: 1;
}
.pipeline__list li::before {
  content: '';
  position: absolute;
  top: -7px; left: 50%;
  transform: translateX(-50%);
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 0 4px var(--bg);
}
.pipeline__day {
  display: block;
  font-size: 11px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 700;
  margin: 12px 0 10px;
}
.pipeline__list h4 {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -.005em;
}
.pipeline__list p {
  margin: 0;
  font-size: 12.5px;
  color: var(--ink-2);
  line-height: 1.55;
}
.pipeline__list p em { color: var(--accent); font-style: normal; font-weight: 600; }

/* (legacy, kept harmless) */
.proc-summary {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: center;
  padding: 38px 44px;
  background:
    radial-gradient(circle at 90% 50%, rgba(124,92,255,.18), transparent 60%),
    var(--bg-3);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-lg);
  margin-bottom: 40px;
}
.proc-summary h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 800;
  margin: 8px 0 10px;
  letter-spacing: -.015em;
  line-height: 1.25;
}
.proc-summary p {
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.65;
  max-width: 640px;
}
.proc-summary p strong { color: var(--ink); font-weight: 600; }

/* Footnotes */
.footnotes {
  list-style: none;
  padding: 24px 0 0;
  margin: 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px 28px;
  font-size: 11px;
  color: var(--muted);
}
.footnotes li { line-height: 1.6; }
.footnotes sup { color: var(--accent); font-weight: 700; margin-right: 4px; }
.footnotes a { color: var(--ink-2); border-bottom: 1px dotted var(--line-2); }
.footnotes a:hover { color: var(--accent); border-bottom-color: var(--accent); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .about__grid { grid-template-columns: repeat(2, 1fr); }
  .projects { grid-template-columns: repeat(2, 1fr); }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .strategy { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; gap: 32px; }
  .founder__badge { position: static; }
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 32px; padding: 40px 0 30px; }
  .contact-card { grid-template-columns: 1fr; gap: 36px; padding: 40px 32px; }
  .proof-strip { grid-template-columns: repeat(3, 1fr); }
  .proof-strip li:nth-child(3n) { border-right: none; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .process::before { display: none; }
  .usecases__grid { grid-template-columns: repeat(2, 1fr); }
  .proc-summary { grid-template-columns: 1fr; padding: 32px; gap: 28px; }
  .footnotes { grid-template-columns: 1fr; }
  .tiers__grid { grid-template-columns: 1fr; }
  .tier--featured { transform: none; }
  .pipeline__list { grid-template-columns: repeat(2, 1fr); }
  .pipeline__list::before { display: none; }
  .intake { padding: 38px 32px; }
  .radio-group { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .brand-card { flex-direction: column; text-align: center; padding: 32px 26px; gap: 22px; }
  .brand-card__copy .eyebrow { margin-left: auto; margin-right: auto; display: inline-block; }
  .nav__links a:not(.btn):not(.nav__admin) { display: none; }
  .nav__admin span { display: none; } /* hide "관리" text, keep lock icon */
  .lang-btn { padding: 4px 7px; font-size: 10px; }
  .hero { padding: 40px 0 60px; }
  .hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .hero__photo { order: -1; }
  .hero__photo img { max-width: 260px; }
  .hero__photo-ring { inset: -20px; filter: blur(40px); }
  .hero__metrics { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .hero__title { font-size: clamp(30px, 5vw, 52px); }
  .hero__lead { font-size: 15px; }
  .section { padding: 70px 0; }
  .cap__grid { grid-template-columns: 1fr; }
  .cta { grid-template-columns: 1fr; gap: 40px; padding: 40px 0; }
  .section { padding: 80px 0; }
  .trusted__list { gap: 20px 32px; }
  .trusted__list li { font-size: 14px; }
}
@media (max-width: 560px) {
  .projects { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; }
  .about__grid { grid-template-columns: 1fr; }
  .about__grid--2 { grid-template-columns: 1fr; }
  .cap { padding: 28px 22px; }
  .filters { gap: 8px; }
  .chip { padding: 8px 14px; font-size: 12px; }
  .modal { padding: 12px; }
  .modal__head { padding: 28px 24px 22px; }
  .modal__head h2 { font-size: 22px; }
  .modal__body { padding: 22px 24px 28px; }
  .modal__section--row { grid-template-columns: 1fr; gap: 18px; }
  .founder__badge { padding: 28px 24px; }
  .founder__badge h3 { font-size: 26px; }
  /* Tablet portrait (768px) */
  .projects--live, .projects--internal { grid-template-columns: repeat(2, 1fr); }
  .tiers__grid { grid-template-columns: 1fr; }
  .strategy { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
  .founder { grid-template-columns: 1fr; gap: 28px; }
  .founder__badge { position: static; max-width: 400px; margin: 0 auto; }
  .contact-card { grid-template-columns: 1fr; gap: 32px; padding: 36px 28px; }
  .foot__inner { grid-template-columns: 1fr 1fr; gap: 28px; padding: 36px 0 28px; }
}

@media (max-width: 560px) {
  .foot__inner { grid-template-columns: 1fr; gap: 28px; padding: 32px 0 24px; }
  .contact-card { padding: 32px 22px; }
  .top-btn { bottom: 18px; right: 18px; width: 42px; height: 42px; }
  .proof-strip { grid-template-columns: repeat(2, 1fr); padding: 22px 0; gap: 12px; }
  .proof-strip li { border-right: none; border-bottom: 1px solid var(--line); padding: 0 8px 14px; }
  .proof-strip li:nth-last-child(-n+2) { border-bottom: none; padding-bottom: 0; }
  .proof-strip b { font-size: clamp(18px, 5vw, 24px); }
  .proof-strip .cite { font-size: 10px; }
  .process { grid-template-columns: 1fr; }
  .usecases__grid { grid-template-columns: 1fr; }
  .proc-summary { padding: 26px 22px; }
  .intake { padding: 24px 18px; border-radius: 14px; }
  .intake__head h3 { font-size: 22px; }
  .field--row { grid-template-columns: 1fr; }
  .pipeline__list { grid-template-columns: repeat(2, 1fr); }
  .pipeline__list::before { display: none; }
  .intake__actions { flex-direction: column; align-items: stretch; }
  .intake__actions .btn { width: 100%; justify-content: center; }
  .intake__autosave { margin: 0; text-align: center; }
  /* Mobile nav: tighter */
  .nav__inner { padding: 12px 0; }
  .nav__admin { padding: 4px 8px; }
  .btn--small { padding: 7px 12px; font-size: 12px; }
  .lang-switch { gap: 1px; }
  .lang-btn { padding: 3px 6px; font-size: 9px; }
  /* Mobile hero */
  .hero { padding: 30px 0 50px; }
  .hero__photo img { max-width: 220px; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .hero__metrics b { font-size: clamp(18px, 5vw, 24px); }
  .hero__metrics span { font-size: 11px; }
  /* Mobile projects: limit live cards to 6 */
  .projects--live .proj--live:nth-child(n+7) { display: none; }
  .projects--live.is-expanded .proj--live:nth-child(n+7) { display: flex; }
  /* Mobile sections */
  .section { padding: 60px 0; }
  .section--compact { padding: 50px 0; }
  .section__head h2 { font-size: clamp(22px, 5.5vw, 32px); }
  .section__head { margin-bottom: 40px; }
  /* Mobile brand card */
  .brand-card { padding: 24px 20px; gap: 18px; }
  .brand-card__logo { width: 64px; height: 64px; }
  .brand-card h2 { font-size: clamp(22px, 6vw, 30px); }
  /* Mobile founder */
  .founder__badge { padding: 24px 20px; }
  .founder__badge h3 { font-size: 24px; }
  .founder__credits li { grid-template-columns: 50px 1fr; gap: 10px; font-size: 12px; }
  .about__grid--2 .card { padding: 22px 18px; }
  /* Mobile step cards */
  .step { padding: 24px 20px; }
  .step__no { font-size: 30px; }
  .step h3 { font-size: 16px; }
  /* Mobile tier cards */
  .tier { padding: 26px 22px; }
  .tier h4 { font-size: 18px; }
  /* Mobile strategy */
  .strat { padding: 26px 22px; }
  .strat header h3 { font-size: 18px; }
  /* Mobile footer */
  .foot__brand { font-size: 15px; }
  .foot__col h5 { font-size: 10px; }
  /* Mobile projects tier headers */
  .projects-tier__head { padding: 14px 16px; }
  .projects-tier__icon { font-size: 22px; }
  .projects-tier__head h3 { font-size: 16px; }
  .projects-tier__sub { font-size: 12px; }
  /* Mobile project cards */
  .proj { padding: 18px 16px; }
  .proj__name { font-size: 14px; }
  .proj__desc { font-size: 12px; }
  .proj__live-link { font-size: 10.5px; padding: 6px 10px; }
  .proj__info-btn { padding: 6px 9px; font-size: 10px; }
  /* Mobile vision */
  .vision { padding: 60px 0; }
  .vision blockquote { font-size: clamp(22px, 5.5vw, 40px); }
}
