/* Landing page — 단골, in Motiflow-inspired bold cyan agency style */

/* Pretendard via system fonts where available; falls back to native Korean stack */

:root {
  --bg: #0d0d10;
  --bg-2: #16171a;
  --bg-3: #1f2126;
  --ink: #f4f4f6;
  --ink-2: #c2c5cc;
  --ink-3: #7a808a;
  --ink-4: #3a3d44;
  --line: #23262e;
  --line-2: #2e323a;
  --accent: #00e7ff;
  --accent-2: #4cf2ff;
  --accent-soft: rgba(0, 231, 255, .14);
  --mint: #41e1a7;
  --warn: #ffd166;
  --pink: #ff7ab6;
  --bg-light: #f3f5f7;
  --ink-light: #0d0d10;
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Malgun Gothic', system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  letter-spacing: -.01em;
  font-feature-settings: 'ss01', 'tnum';
}
body { min-width: 1280px; }
button { font-family: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }
.num { font-variant-numeric: tabular-nums; }

/* ─── Header ─── */
.hd {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(13, 13, 16, .82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--line);
}
.hd-inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 40px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -.02em; }
.logo-mark {
  width: 30px; height: 30px;
  border-radius: 9px;
  background: var(--accent);
  color: #001318;
  display: grid; place-items: center;
  font-weight: 900; font-size: 15px;
}
.logo-name { font-size: 17px; font-weight: 800; letter-spacing: .04em; }
.logo-name sup { color: var(--accent); font-size: 11px; vertical-align: super; }
.hd-nav { display: flex; gap: 28px; margin-left: 12px; font-size: 14px; color: var(--ink-2); font-weight: 500; align-items: center; }
.hd-nav a:hover { color: var(--accent); }
.nav-with-tag {
  position: relative;
  display: inline-block;
  padding-left: 14px;
}
.nav-tag-free {
  position: absolute;
  top: -12px;
  left: 0;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -.01em;
  line-height: 1;
}
.hd-cta {
  margin-left: auto;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #001318;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: -.01em;
  transition: filter .12s ease;
}
.hd-cta:hover { filter: brightness(1.1); }

/* ─── Section base ─── */
.section { padding: 120px 40px; position: relative; }
.section-inner { max-width: 1400px; margin: 0 auto; }
.section-inner.center { text-align: center; }

.tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: .25em;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
}
.tag.light { background: rgba(255,255,255,.12); color: #fff; }

.display {
  font-size: 64px;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.08;
  margin: 0 0 24px;
}
.display.center { text-align: center; margin-left: auto; margin-right: auto; }
.accent-text { color: var(--accent); }

.lead {
  font-size: 17px;
  color: var(--ink-2);
  max-width: 640px;
  margin: 0 0 36px;
  line-height: 1.65;
}
.lead.center { margin-left: auto; margin-right: auto; text-align: center; }
.lead.light { color: rgba(255,255,255,.7); }

.ghost-btn {
  display: inline-block;
  font-weight: 700;
  color: var(--accent);
  border-bottom: 1.5px solid var(--accent);
  padding-bottom: 3px;
  font-size: 14px;
  letter-spacing: -.01em;
}

/* ─── HERO ─── */
.hero {
  padding: 80px 40px 100px;
  background:
    radial-gradient(800px 500px at 80% 30%, rgba(0,231,255,.10), transparent 70%),
    radial-gradient(500px 400px at 15% 80%, rgba(255,122,182,.08), transparent 65%),
    var(--bg);
  border-bottom: 1px solid var(--line);
}
.hero-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 560px;
}
.hero-left h1 {
  font-size: 132px;
  font-weight: 900;
  letter-spacing: -.05em;
  line-height: .94;
  margin: 0;
  color: var(--ink);
}
.hero-line { display: block; }
.hero-line:nth-child(2) { color: var(--ink-3); }
.hero-line:nth-child(4) {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  margin-top: 26px;
  color: var(--ink-3);
  font-size: 16px;
  letter-spacing: .05em;
}
.hero-right { position: relative; display: flex; flex-direction: column; gap: 14px; }
.hero-chips {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
  margin-bottom: 32px;
}
.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--bg-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 15px;
  border: 1px solid var(--line-2);
}
.hero-chip.line { background: transparent; color: var(--accent); border-color: var(--accent); }
.hero-chip:nth-child(2) { background: var(--accent); color: #001318; border-color: var(--accent); }
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot.mint { background: var(--mint); }
.dot.accent { background: #001318; }
.dot.warn { background: var(--warn); }
.hero-tag {
  align-self: flex-end;
  max-width: 360px;
  text-align: right;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.55;
}
.hero-tag b { color: var(--ink); }
.hero-scroll {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--ink-3);
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  animation: bob 2s ease-in-out infinite;
}
@keyframes bob { 0%, 100% { transform: translate(-50%, 0); } 50% { transform: translate(-50%, 6px); } }

/* ─── SERVICE ─── */
.service {
  background: var(--bg-light);
  color: var(--ink-light);
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
}
.service .tag { background: rgba(0,0,0,.06); color: #0d0d10; }
.service .lead { color: #4a4d54; }
.service .display { color: #0d0d10; }
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 56px;
}
.svc {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}
.svc:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(0,0,0,.08);
}
.svc-tag {
  font-size: 11px;
  letter-spacing: .2em;
  font-weight: 700;
  color: var(--ink-3);
}
.svc-preview {
  height: 180px;
  border-radius: 16px;
  background: #f0fbff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
}
.svc-2 .svc-preview {
  background:
    linear-gradient(135deg, #ffe8d6 0%, #fff3e0 50%, #ffd9b0 100%);
}
.svc-preview-photo {
  background:
    repeating-linear-gradient(45deg, rgba(0,0,0,.04) 0 8px, transparent 8px 16px),
    linear-gradient(135deg, #ffd6a8 0%, #ffb37a 100%) !important;
}
.svc-preview-photo::before {
  content: '☕ 📷';
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 64px;
  opacity: .35;
}
.svc-3 .svc-preview { background: #001318; }

.kpi-mock {
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
  width: 75%;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
}
.kpi-mock-num { font-size: 40px; font-weight: 800; letter-spacing: -.03em; line-height: 1; color: #0d0d10; }
.kpi-mock-num small { font-size: 14px; color: var(--ink-3); margin-left: 4px; font-weight: 600; }
.kpi-mock-label { font-size: 11px; color: var(--ink-3); margin-top: 4px; letter-spacing: .05em; font-weight: 700; text-transform: uppercase; }
.kpi-mock-bar { background: #e9ecf0; height: 6px; border-radius: 999px; margin-top: 12px; overflow: hidden; }
.kpi-mock-bar i { display: block; height: 100%; background: var(--accent); border-radius: 999px; }

.kw-mock { width: 80%; }
.kw-mock-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  color: #f0f6f8;
  font-size: 13px;
}
.kw-mock-row:first-child { border-top: 0; }
.kw-mock-row.hilite { color: var(--accent); }
.kw-mock-row .num { color: rgba(240,246,248,.5); font-weight: 700; }
.kw-mock-row b { font-weight: 600; }
.kw-up { color: var(--mint); font-weight: 700; font-size: 11px; }
.kw-dn { color: var(--pink); font-weight: 700; font-size: 11px; }

.svc h3 { font-size: 20px; font-weight: 800; letter-spacing: -.02em; margin: 6px 0 0; color: #0d0d10; }
.svc p { font-size: 14px; line-height: 1.6; color: #4a4d54; margin: 0; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.svc-tags span {
  background: rgba(0, 231, 255, .12);
  color: #00666e;
  font-size: 11.5px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
}

/* ─── 4-CATEGORY GRID (replaces svc-grid) ─── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}
.cat {
  background: #fff;
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.cat:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px rgba(0,0,0,.08);
}
.cat-feat {
  background: #0d0d10;
  color: var(--ink);
  border-color: var(--accent);
  box-shadow: 0 16px 40px rgba(0, 231, 255, .15);
}
.cat-feat:hover { box-shadow: 0 28px 56px rgba(0, 231, 255, .22); }
.cat-feat .cat-num { color: var(--accent); }
.cat-feat h3 { color: var(--ink); }
.cat-feat .cat-sub { color: var(--ink-2); }
.cat-feat .cat-list li { color: var(--ink-2); }
.cat-feat .cat-list li::before { background: rgba(0,231,255,.15); border-color: var(--accent); color: var(--accent); }
.cat-feat .cat-price { color: var(--accent); }
.cat-feat .cat-price small { color: var(--ink-3); }

.cat-h {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.cat-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--ink-3);
  letter-spacing: .1em;
}
.cat-price {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: -.02em;
  color: #0d0d10;
}
.cat-price small {
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-3);
  margin-left: 2px;
}

.cat-art {
  height: 150px;
  border-radius: 14px;
  background: #f0fbff;
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 14px;
}
.cat-art-1 { background: linear-gradient(135deg, #e6f9fc, #c7eff5); }
.cat-art-2 { background: linear-gradient(135deg, #fff3e0, #ffe1c4); }
.cat-art-3 { background: #16171a; }
.cat-art-4 { background: linear-gradient(135deg, #f3f5f7, #e3e6ec); }

/* 01 KPI mock */
.cat-kpi {
  background: #fff;
  border-radius: 10px;
  padding: 10px 12px;
  width: 100%;
  box-shadow: 0 6px 18px rgba(0,0,0,.06);
  font-size: 11.5px;
}
.cat-kpi-h { font-size: 10px; color: var(--ink-3); font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.cat-kpi-n { font-size: 28px; font-weight: 800; letter-spacing: -.02em; line-height: 1; color: #0d0d10; margin: 4px 0 6px; }
.cat-kpi-n small { font-size: 11px; color: var(--ink-3); margin-left: 3px; font-weight: 600; }
.cat-kpi-bar { background: #e9ecf0; height: 4px; border-radius: 999px; overflow: hidden; margin-bottom: 8px; }
.cat-kpi-bar i { display: block; height: 100%; background: var(--accent); }
.cat-kpi-row { display: flex; justify-content: space-between; padding: 3px 0; border-top: 1px solid #f0f1f4; }
.cat-kpi-row b { font-weight: 600; color: var(--ink-3); }
.cat-kpi-row span { font-weight: 800; color: #0d0d10; }

/* 02 chat mock */
.cat-chat {
  display: flex; flex-direction: column;
  gap: 6px;
  width: 100%;
  font-size: 11.5px;
}
.cat-chat-bub {
  padding: 7px 10px;
  border-radius: 10px;
  max-width: 80%;
  line-height: 1.4;
}
.cat-chat-bub.mentor {
  background: #fff;
  align-self: flex-start;
  border-bottom-left-radius: 3px;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.cat-chat-bub.short { max-width: 60%; }
.cat-chat-bub.me {
  background: #0d0d10;
  color: #fff;
  align-self: flex-end;
  border-bottom-right-radius: 3px;
}

/* 03 timeline */
.cat-flow {
  display: flex;
  align-items: center;
  width: 100%;
}
.cat-flow-step {
  display: flex; flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--ink);
  flex-shrink: 0;
}
.cat-flow-step b {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1.5px solid var(--line-2);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--ink);
}
.cat-flow-step.done b {
  background: var(--accent);
  border-color: var(--accent);
  color: #001318;
}
.cat-flow-step span {
  font-size: 10px;
  color: var(--ink-3);
  font-weight: 600;
}
.cat-flow-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(90deg, var(--accent), var(--line-2));
  margin: -14px 4px 0;
}

/* 04 note mock */
.cat-note {
  background: #fff;
  border-radius: 10px;
  padding: 12px 14px;
  width: 100%;
  border: 1px solid rgba(0,0,0,.06);
}
.cat-note-h { font-size: 10px; font-weight: 800; letter-spacing: .1em; color: var(--accent); margin-bottom: 8px; }
.cat-note-t { font-size: 13px; font-weight: 700; letter-spacing: -.01em; color: #0d0d10; line-height: 1.45; margin-bottom: 10px; }
.cat-note-meta { font-size: 10.5px; color: var(--ink-3); font-weight: 600; }

.cat-badge {
  position: absolute;
  top: -10px; right: 20px;
  background: var(--accent);
  color: #001318;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .12em;
  padding: 5px 12px;
  border-radius: 999px;
  text-transform: uppercase;
}

.cat h3 {
  font-size: 19px;
  font-weight: 800;
  letter-spacing: -.02em;
  margin: 6px 0 0;
  color: #0d0d10;
}
.cat-sub {
  margin: 0;
  font-size: 13px;
  color: #4a4d54;
  letter-spacing: -.01em;
}
.cat-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cat-list li {
  position: relative;
  padding-left: 22px;
  font-size: 13px;
  line-height: 1.5;
  color: #4a4d54;
}
.cat-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 5px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(0, 231, 255, .12);
  border: 1.5px solid var(--accent);
}
.cat-list li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 2px;
  font-size: 9px;
  color: var(--accent);
  font-weight: 900;
}

.cat-cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 12px;
  border-radius: 12px;
  background: #f3f5f7;
  color: #0d0d10;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: -.01em;
  transition: background .15s ease, transform .08s ease;
}
.cat-cta:hover { background: #e7ebef; }
.cat-cta.primary {
  background: var(--accent);
  color: #001318;
}
.cat-cta.primary:hover { filter: brightness(1.08); }
.cat-feat .cat-cta { background: rgba(255,255,255,.08); color: var(--ink); }
.cat-feat .cat-cta:hover { background: rgba(255,255,255,.12); }
.cat-feat .cat-cta.primary { background: var(--accent); color: #001318; }

/* ─── ELITE BLACK card variant ─── */
.cat-elite {
  background: #fff;
}
.cat-art-elite {
  background:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,.08), transparent 60%),
    linear-gradient(135deg, #1a1a1f 0%, #0a0a0c 100%);
  position: relative;
  overflow: hidden;
}
.cat-art-elite::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,.02) 0 1px, transparent 1px 12px);
}
.cat-elite-badge {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 1;
}
.cat-elite-crown {
  font-size: 30px;
  color: #d4a548;
  text-shadow: 0 2px 10px rgba(212,165,72,.5);
  margin-bottom: 6px;
  line-height: 1;
}
.cat-elite-name {
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .3em;
  color: #fff;
  margin-bottom: 4px;
}
.cat-elite-meta {
  font-size: 10.5px;
  letter-spacing: .12em;
  color: rgba(255,255,255,.5);
  font-weight: 600;
}

/* ─── PROMISE ─── */
.promise {
  background: var(--bg-light);
  color: var(--ink-light);
  border-top: 1px solid rgba(0,0,0,.06);
  text-align: center;
}
.promise .display { color: #0d0d10; }
.promise .lead { color: #4a4d54; }
.promise-pin {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #0d0d10;
  color: var(--accent);
  margin-bottom: 24px;
}
.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
}
.promise-card {
  background: #fff;
  border-radius: 22px;
  padding: 28px 24px;
  text-align: left;
  border: 1px solid rgba(0,0,0,.06);
  position: relative;
}
.promise-num {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: .1em;
  margin-bottom: 16px;
}
.promise-card h4 { font-size: 18px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 10px; color: #0d0d10; }
.promise-card p { font-size: 13.5px; line-height: 1.6; color: #4a4d54; margin: 0; }

/* ─── KNOW ─── */
.know {
  background: var(--bg);
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
  position: relative;
  z-index: 1;
  padding-top: 140px;
}
.know-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.know-shot { position: relative; }
.badge-circle {
  position: absolute;
  top: -32px; right: 32px;
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--accent);
  color: #001318;
  display: grid; place-items: center;
  box-shadow: 0 12px 32px rgba(0, 231, 255, .25);
  z-index: 2;
  border: 4px solid var(--bg);
}
.know-mock {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 28px;
  position: relative;
}
.know-mock-h {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 18px;
  border-bottom: 1px dashed var(--line-2);
  margin-bottom: 18px;
}
.know-mock-h b { font-size: 13px; font-weight: 700; color: var(--ink-2); }
.know-mock-h .num.huge {
  position: absolute;
  left: 28px;
  top: 64px;
  font-size: 38px;
  font-weight: 800;
  letter-spacing: -.03em;
  color: var(--accent);
}
.chip-up {
  background: var(--accent);
  color: #001318;
  font-size: 11.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
}
.know-mock-rows { margin-top: 60px; display: flex; flex-direction: column; gap: 12px; }
.know-mock-rows > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-size: 14px;
}
.know-mock-rows b { font-weight: 600; color: var(--ink-2); }
.know-mock-rows .num { font-weight: 800; font-size: 18px; color: var(--ink); }

/* ─── CLIENTS ─── */
.clients { background: var(--bg); padding-top: 80px; }
.check-circle {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: #001318;
  margin-bottom: 18px;
}
.logo-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
}
.logo-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px 12px;
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-2);
  text-align: center;
  letter-spacing: -.01em;
  transition: all .15s ease;
}
.logo-card:hover { border-color: var(--accent); color: var(--accent); }

/* ─── BENEFITS ─── */
.benefits { background: var(--bg); text-align: center; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 56px;
  text-align: left;
}
.benefit-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 32px;
}
.benefit-q {
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.5;
  letter-spacing: -.02em;
}
.benefit-line { height: 1px; background: var(--line-2); margin: 20px 0; }
.benefit-card p { color: var(--ink-2); font-size: 14px; line-height: 1.65; margin: 0; }

/* ─── PORTFOLIO ─── */
.portfolio { background: var(--bg-light); color: var(--ink-light); border-radius: 60px 60px 0 0; margin-top: -40px; position: relative; }
.portfolio .display { color: #0d0d10; }
.hand {
  background: var(--accent);
  color: #001318;
  padding: 0 12px;
  border-radius: 12px;
  display: inline-block;
  transform: rotate(-2deg);
}
.port-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.port-card {
  border-radius: 18px;
  padding: 20px;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.port-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,.7));
  pointer-events: none;
}
.port-1 { background: linear-gradient(135deg, #c98762, #6d3a1f); }
.port-2 { background: linear-gradient(135deg, #f5d27d, #c98745); }
.port-3 { background: linear-gradient(135deg, #4f5a4a, #1d2418); }
.port-4 { background: linear-gradient(135deg, #b9a89b, #5e504a); }
.port-tag { position: relative; font-size: 11px; letter-spacing: .15em; font-weight: 800; opacity: .8; }
.port-stat { position: relative; font-size: 22px; font-weight: 800; letter-spacing: -.02em; }
.port-stat b { color: var(--accent); }

/* ─── TEAM ─── */
.team { background: var(--bg-light); color: var(--ink-light); padding-bottom: 80px; }
.team .display, .team .tag { color: #0d0d10; }
.team .tag { background: rgba(0,0,0,.06); }
.team .lead { color: #4a4d54; }
.team-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.team-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-list li {
  position: relative;
  padding-left: 24px;
  color: #4a4d54;
  font-size: 15px;
}
.team-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

.venn { position: relative; height: 380px; }
.venn-c {
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -.02em;
  mix-blend-mode: multiply;
}
.venn .c1 { background: rgba(0, 231, 255, .55); top: 20px; left: 60px; color: #001318; }
.venn .c2 { background: rgba(255, 209, 102, .65); top: 20px; left: 220px; color: #5a4a10; }
.venn .c3 { background: rgba(255, 122, 182, .55); top: 130px; left: 140px; color: #5a1238; }
.venn-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #0d0d10;
  color: #fff;
  padding: 8px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -.01em;
}

/* ─── DAILY ─── */
.daily { background: var(--bg-light); color: var(--ink-light); }
.daily .display, .daily .tag { color: #0d0d10; }
.daily .tag { background: rgba(0,0,0,.06); }
.daily .lead { color: #4a4d54; }
.daily-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }

.phone {
  width: 360px;
  margin: 0 auto;
  background: #fff;
  border-radius: 32px;
  padding: 20px;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 32px 60px rgba(0,0,0,.12);
}
.phone-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  margin-bottom: 14px;
}
.phone-back { color: var(--ink-3); font-size: 18px; }
.phone-name { font-weight: 700; font-size: 14px; color: #0d0d10; letter-spacing: -.01em; }
.phone-meta { font-size: 11px; color: var(--ink-3); }
.phone-feed { display: flex; flex-direction: column; gap: 10px; }
.ph-day { text-align: center; font-size: 11px; color: var(--ink-3); letter-spacing: .15em; padding: 8px 0; }
.ph-bub {
  padding: 10px 14px;
  border-radius: 14px;
  max-width: 80%;
  font-size: 13.5px;
  line-height: 1.5;
  letter-spacing: -.01em;
}
.ph-bub.mentor { align-self: flex-start; background: #f3f5f7; color: #0d0d10; border-bottom-left-radius: 4px; }
.ph-bub.me { align-self: flex-end; background: var(--accent); color: #001318; font-weight: 600; border-bottom-right-radius: 4px; }
.ph-bub.card { background: #fff; border: 1px solid var(--line); padding: 0; max-width: 90%; overflow: hidden; }
.ph-card-h { padding: 10px 14px; background: #001318; color: var(--accent); font-size: 12px; font-weight: 700; letter-spacing: -.01em; }
.ph-card-b { padding: 12px 14px; font-size: 13px; color: #0d0d10; line-height: 1.55; }
.ph-card-actions { display: flex; gap: 6px; padding: 0 14px 14px; }
.ph-card-actions button {
  flex: 1; padding: 8px 0;
  border: 0;
  border-radius: 8px;
  background: #0d0d10; color: #fff;
  font-weight: 700; font-size: 12px;
}
.ph-card-actions button.ghost { background: #f3f5f7; color: #0d0d10; }

.ph-input {
  margin-top: 10px;
  display: flex; gap: 8px;
  border-top: 1px solid rgba(0,0,0,.06);
  padding-top: 12px;
}
.ph-input input {
  flex: 1; border: 0; outline: 0;
  font-size: 13px; padding: 8px;
  background: #f3f5f7; border-radius: 999px;
  color: var(--ink-3);
}
.ph-input button {
  width: 36px; height: 36px;
  border-radius: 50%; border: 0;
  background: var(--accent); color: #001318;
  font-weight: 700;
}

/* ─── CTA ─── */
.cta {
  background: var(--bg);
  border-radius: 60px 60px 0 0;
  margin-top: -40px;
  position: relative;
}
.cta-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 80px; align-items: center; }
.cta-display {
  font-size: 96px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: .95;
  margin: 12px 0 24px;
  color: #fff;
}
.cta-flow {
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cta-card {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 22px;
  padding: 36px;
  position: relative;
}
.cta-badge {
  position: absolute;
  top: -16px; right: 28px;
  background: var(--accent);
  color: #001318;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .2em;
  padding: 6px 14px;
  border-radius: 999px;
}
.cta-card h3 { font-size: 24px; font-weight: 800; letter-spacing: -.02em; margin: 0 0 20px; }
.cta-card ul { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 12px; }
.cta-card li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.cta-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent-soft);
  border: 1.5px solid var(--accent);
}
.cta-card li::after {
  content: '✓';
  position: absolute;
  left: 3px; top: 4px;
  font-size: 11px;
  color: var(--accent);
  font-weight: 900;
}
.cta-button {
  display: block;
  background: var(--accent);
  color: #001318;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -.01em;
  transition: filter .12s ease;
}
.cta-button:hover { filter: brightness(1.08); }
.cta-foot { text-align: center; font-size: 12px; color: var(--ink-3); margin-top: 14px; }

/* ─── Footer ─── */
.ft { background: var(--bg-2); padding: 60px 40px 40px; border-top: 1px solid var(--line); }
.ft-inner { max-width: 1400px; margin: 0 auto; }
.ft-brand { display: flex; gap: 10px; align-items: center; margin-bottom: 40px; }
.ft-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.ft-cols h5 { font-size: 13px; font-weight: 800; letter-spacing: .05em; margin: 0 0 14px; color: var(--ink); }
.ft-cols a { display: block; font-size: 13px; color: var(--ink-3); padding: 4px 0; }
.ft-cols a:hover { color: var(--accent); }
.ft-bottom { display: flex; justify-content: space-between; padding-top: 20px; font-size: 12px; color: var(--ink-4); }
