/* ========== ESG Landing — Bold Minimal ========== */

:root {
  --bg: #fafaf7;
  --fg: #0a0a0a;
  --fg-soft: #2a2a28;
  --fg-mute: #6b6b66;
  --line: #1f1f1d;
  --line-soft: #e5e3dc;
  --accent: #c8ff5a;       /* lime */
  --accent-ink: #0a0a0a;
  --surface: #f0efe8;
  --shadow: 0 24px 60px -20px rgba(10,10,10,.18);
}

/* mood: forest */
[data-mood="forest"] {
  --bg: #f3f1e8;
  --fg: #0f1a14;
  --fg-soft: #1b2a22;
  --fg-mute: #5a6b5f;
  --line: #1f2a23;
  --line-soft: #d8d4c5;
  --accent: #4a7a3f;
  --accent-ink: #f3f1e8;
  --surface: #e8e5d6;
}

/* mood: dark */
[data-mood="dark"] {
  --bg: #0a0a0a;
  --fg: #fafaf7;
  --fg-soft: #d6d6d0;
  --fg-mute: #8a8a82;
  --line: #2a2a28;
  --line-soft: #1a1a18;
  --accent: #c8ff5a;
  --accent-ink: #0a0a0a;
  --surface: #141413;
  --shadow: 0 24px 60px -20px rgba(0,0,0,.6);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Pretendard', 'Pretendard Variable', -apple-system, BlinkMacSystemFont, 'Apple SD Gothic Neo', 'Noto Sans KR', sans-serif;
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.01em;
  transition: background .5s cubic-bezier(.2,.6,.2,1), color .5s cubic-bezier(.2,.6,.2,1);
  overflow-x: hidden;
  word-break: keep-all;
  overflow-wrap: break-word;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; background: none; border: none; color: inherit; }
ul, ol { list-style: none; }

/* ===== Layout ===== */
.wrap { width: min(1280px, 92vw); margin-inline: auto; }

/* ===== NAV ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  display: flex; align-items: center; gap: 28px;
  padding: 18px clamp(20px, 4vw, 48px);
  backdrop-filter: blur(20px);
  background: color-mix(in oklab, var(--bg) 75%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s;
}
.nav-brand { margin-right: auto; }
.nav.is-scrolled { border-color: var(--line-soft); }
.nav-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 16px; letter-spacing: -0.02em;
}
.nav-brand-mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--fg);
  position: relative; overflow: hidden;
}
.nav-brand-mark::after {
  content: ""; position: absolute; inset: 6px;
  background: var(--accent); border-radius: 50%;
}
.nav-links { display: flex; gap: 28px; font-size: 14px; color: var(--fg-soft); }
.nav-links a { transition: opacity .2s; }
.nav-links a:hover { opacity: .55; }
.nav-cta {
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.nav-cta:hover { background: var(--fg); color: var(--bg); }
.nav-cta::after { content: "→"; transition: transform .25s; }
.nav-cta:hover::after { transform: translateX(3px); }

@media (max-width: 720px) {
  .nav-links { display: none; }
}

/* ===== HERO ===== */
.hero {
  padding: 160px clamp(20px, 4vw, 48px) 80px;
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 60px;
}

.hero-meta {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--fg-mute);
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-weight: 500;
}
.hero-meta-row { display: flex; align-items: center; gap: 10px; }
.hero-meta-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); }

.hero-title {
  font-size: clamp(48px, 9.5vw, 168px);
  line-height: 0.92;
  letter-spacing: -0.045em;
  font-weight: 800;
  color: var(--fg);
}
.hero-title .em {
  display: inline-block;
  font-style: normal;
  font-weight: 800;
  color: var(--fg);
  position: relative;
}
.hero-title .em::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; bottom: 8%; height: 22%;
  background: var(--accent);
  z-index: -1;
  transform: skewX(-8deg);
}

.hero-foot {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  gap: clamp(24px, 4vw, 64px);
  align-items: end;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  max-width: 1450px; width: 100%;
}
@media (max-width: 860px) {
  .hero-foot { grid-template-columns: 1fr; gap: 28px; }
}
.hero-lede {
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.5;
  color: var(--fg-soft);
  max-width: min(610px, 52ch);
  text-wrap: pretty;
  word-break: keep-all;
  overflow-wrap: break-word;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.hero-stat-num {
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-stat-num sup { font-size: 0.5em; vertical-align: top; margin-left: 2px; color: var(--fg-mute); font-weight: 500; }
.hero-stat-label { font-size: 12px; color: var(--fg-mute); margin-top: 6px; letter-spacing: 0.02em; text-transform: uppercase; }

.hero-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 24px; border-radius: 999px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.01em;
  border: 1px solid transparent;
  transition: transform .25s cubic-bezier(.2,.6,.2,1), background .25s, color .25s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg); color: var(--bg);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-secondary {
  background: transparent; color: var(--fg);
  border-color: var(--line);
}
.btn-secondary:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.btn-accent {
  background: var(--accent); color: var(--accent-ink);
}
.btn-accent:hover { transform: translateY(-2px); }

.btn .arrow { transition: transform .3s; }
.btn:hover .arrow { transform: translate(3px, -3px); }

/* Hero ticker */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--fg);
  color: var(--bg);
  overflow: hidden;
  white-space: nowrap;
  padding: 18px 0;
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 700;
  letter-spacing: -0.02em;
}
.ticker-track {
  display: inline-flex; gap: 48px;
  animation: ticker 40s linear infinite;
  padding-left: 48px;
}
.ticker-item { display: inline-flex; align-items: center; gap: 48px; }
.ticker-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
@keyframes ticker {
  to { transform: translateX(-50%); }
}

/* ===== Section base ===== */
.section { padding: 120px clamp(20px, 4vw, 48px); }
.section-tight { padding: 72px clamp(20px, 4vw, 48px); }

.section-label {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 600;
  margin-bottom: 32px;
}
.section-label::before {
  content: ""; width: 24px; height: 1px; background: var(--fg-mute);
}
.section-num {
  font-variant-numeric: tabular-nums;
  color: var(--fg);
}

.section-title {
  font-size: clamp(34px, 5.5vw, 84px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 700;
  text-wrap: balance;
  margin-bottom: 28px;
}

/* ===== Problem section (sticky) ===== */
.problem {
  background: var(--bg);
  border-top: 1px solid var(--line-soft);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 120px);
}
.problem-sticky {
  position: sticky; top: 100px;
  align-self: start;
}
@media (max-width: 1100px) {
  .problem-grid { grid-template-columns: 1fr; }
  .problem-sticky { position: static; top: auto; margin-bottom: 24px; }
}
.problem-list { display: grid; gap: 0; }
.problem-item {
  padding: 36px 0;
  border-top: 1px solid var(--line-soft);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: start;
  transition: padding .3s;
}
.problem-item:last-child { border-bottom: 1px solid var(--line-soft); }
.problem-item:hover { padding-left: 12px; }
.problem-item-num {
  font-size: 13px; color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  padding-top: 6px;
}
.problem-item-body h3 {
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 8px;
}
.problem-item-body p {
  font-size: 15px; color: var(--fg-mute); max-width: 50ch;
}
.problem-item-tag {
  font-size: 11px; padding: 6px 10px;
  border: 1px solid var(--line-soft); border-radius: 999px;
  color: var(--fg-mute); white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ===== Big statement ===== */
.statement {
  background: var(--fg);
  color: var(--bg);
  padding: clamp(80px, 12vw, 180px) clamp(20px, 4vw, 48px);
}
.statement-eyebrow {
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--accent); font-weight: 600; margin-bottom: 40px;
  display: flex; align-items: center; gap: 12px;
}
.statement-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--accent); }
.statement-text {
  font-size: clamp(32px, 5.6vw, 92px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
  max-width: 22ch;
}
.statement-text .hl { color: var(--accent); font-style: normal; font-weight: 800; }
.statement-foot {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
}
@media (max-width: 720px) { .statement-foot { grid-template-columns: repeat(2, 1fr); } }
.statement-foot-item {
  display: flex; flex-direction: column; gap: 6px;
}
.statement-foot-num {
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 700; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.statement-foot-label { font-size: 12px; color: color-mix(in oklab, var(--bg) 60%, transparent); letter-spacing: 0.05em; text-transform: uppercase; }

/* statement pillars (replaces stats) */
.statement-pillars {
  margin-top: 80px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 20%, transparent);
}
@media (max-width: 900px) { .statement-pillars { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .statement-pillars { grid-template-columns: 1fr; } }
.statement-pillar {
  padding: 0 24px;
  border-left: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
}
.statement-pillar:first-child { padding-left: 0; border-left: none; }
.statement-pillar-num {
  display: block;
  font-size: 11px; color: var(--accent);
  letter-spacing: 0.1em; font-weight: 600;
  margin-bottom: 16px;
}
.statement-pillar h4 {
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600; letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.statement-pillar p {
  font-size: 13px; line-height: 1.55;
  color: color-mix(in oklab, var(--bg) 65%, transparent);
}

/* ===== Portfolio ===== */
.portfolio { border-top: 1px solid var(--line-soft); }
.portfolio-head {
  display: grid; grid-template-columns: 1.4fr 1fr;
  gap: 40px; align-items: end; margin-bottom: 56px;
}
@media (max-width: 800px) { .portfolio-head { grid-template-columns: 1fr; } }
.portfolio-note {
  font-size: 12px; line-height: 1.55;
  color: var(--fg-mute);
  padding-left: 20px;
  border-left: 2px solid var(--accent);
  max-width: 40ch;
}
.portfolio-note a {
  color: var(--fg);
  border-bottom: 1px solid var(--accent);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.portfolio-note-foot {
  margin-top: 28px;
  max-width: 60ch;
}
.portfolio-head-numeric {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 18px;
  user-select: none;
}
.portfolio-numeric-mark {
  font-family: 'Iowan Old Style', 'Charter', Georgia, serif;
  font-size: clamp(140px, 22vw, 300px);
  line-height: 0.82;
  letter-spacing: -0.04em;
  font-weight: 400;
  color: var(--fg);
  font-feature-settings: "lnum", "tnum";
  border-bottom: 4px solid var(--accent);
  padding-bottom: 6px;
}
.portfolio-numeric-label {
  display: flex; flex-direction: column;
  gap: 10px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 10px;
  line-height: 1.45;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-mute);
  padding-bottom: 14px;
  max-width: 110px;
}
.portfolio-numeric-line {
  width: 32px; height: 1px; background: var(--fg-mute);
  display: inline-block;
}
@media (max-width: 800px) {
  .portfolio-head-numeric { display: none; }
}
.portfolio-stage {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
}
@media (max-width: 900px) { .portfolio-stage { grid-template-columns: 1fr; } }

.portfolio-preview {
  position: sticky; top: 100px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  min-height: 520px;
  display: flex; flex-direction: column;
  transition: background .4s, color .4s, border-color .4s;
}
.portfolio-preview.tone-dark { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.portfolio-preview.tone-accent { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }
@media (max-width: 900px) { .portfolio-preview { position: relative; top: auto; min-height: 420px; } }

.pf-preview-chrome {
  padding: 14px 18px;
  display: flex; align-items: center; gap: 8px;
  border-bottom: 1px solid color-mix(in oklab, currentColor 12%, transparent);
}
.pf-preview-chrome span {
  width: 10px; height: 10px; border-radius: 50%;
  background: color-mix(in oklab, currentColor 25%, transparent);
}
.pf-preview-url {
  margin-left: 16px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 11px;
  opacity: .55;
}

.pf-preview-body {
  padding: 36px 32px;
  flex: 1;
  display: flex; flex-direction: column; gap: 24px;
}
.pf-preview-eyebrow {
  font-size: 11px; letter-spacing: 0.1em;
  font-weight: 600;
  opacity: .6;
}
.pf-preview-h {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.05;
  text-wrap: balance;
}
.pf-preview-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: auto;
}
.pf-preview-cell {
  padding: 16px 14px;
  border: 1px solid color-mix(in oklab, currentColor 18%, transparent);
  border-radius: 10px;
  display: flex; flex-direction: column; gap: 8px;
  font-size: 13px;
  font-weight: 500;
}
.pf-preview-cell-num {
  font-size: 10px; opacity: .55;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em;
}
.pf-preview-foot {
  display: flex; justify-content: flex-end;
  font-size: 12px;
  padding-top: 16px;
  border-top: 1px solid color-mix(in oklab, currentColor 12%, transparent);
  opacity: .8;
}
.pf-preview-cta { font-weight: 600; opacity: 1; }

.portfolio-list {
  display: grid;
  border-top: 1px solid var(--line);
}
.portfolio-cta {
  margin-top: 56px;
  display: flex;
  justify-content: flex-end;
}
@media (max-width: 600px) {
  .portfolio-cta { justify-content: stretch; }
  .portfolio-cta .btn { width: 100%; justify-content: center; }
}
.portfolio-list li {
  border-bottom: 1px solid var(--line-soft);
}
.portfolio-row {
  width: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 22px 4px;
  text-align: left;
  transition: padding .3s, color .25s;
  position: relative;
}
.portfolio-row::before {
  content: ""; position: absolute; left: 0; top: 0; bottom: 0;
  width: 0; background: var(--accent);
  transition: width .3s;
}
.portfolio-row:hover, .portfolio-row.is-active { padding-left: 18px; }
.portfolio-row.is-active::before { width: 4px; }
.portfolio-row-num {
  font-size: 11px; color: var(--fg-mute);
  font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
  font-weight: 600;
}
.portfolio-row-client {
  display: flex; flex-direction: column; gap: 4px;
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.1;
}
.portfolio-row-industry {
  font-size: 11px; color: var(--fg-mute);
  font-weight: 500; letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.portfolio-row-tag {
  font-size: 11px; padding: 5px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--fg-mute);
  letter-spacing: 0.03em;
  font-weight: 500;
}
.portfolio-row-year {
  font-size: 12px; color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  font-weight: 500;
}
.portfolio-row-arrow {
  font-size: 14px; opacity: .35;
  transition: opacity .25s, transform .25s;
}
.portfolio-row:hover .portfolio-row-arrow,
.portfolio-row.is-active .portfolio-row-arrow {
  opacity: 1; transform: translate(2px, -2px);
}
.portfolio-row-desc {
  display: none;
  padding: 0 4px 18px;
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.55;
  max-width: 50ch;
}
@media (max-width: 900px) {
  .portfolio-row-desc { display: block; }
  .portfolio-row { grid-template-columns: auto 1fr auto; gap: 12px; }
  .portfolio-row-tag { display: none; }
}

/* ===== Packages — horizontal scroll ===== */
.packages { padding: 120px 0 0; overflow: hidden; }
.packages-head {
  padding: 0 clamp(20px, 4vw, 48px);
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
  margin-bottom: 56px;
}
.packages-head-arrows { display: flex; gap: 8px; }
.pkg-arrow {
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  transition: background .2s, color .2s, transform .2s;
  font-size: 18px;
}
.pkg-arrow:hover:not(:disabled) { background: var(--fg); color: var(--bg); }
.pkg-arrow:disabled { opacity: .3; cursor: not-allowed; }

.packages-track {
  display: flex; gap: 16px;
  padding: 0 clamp(20px, 4vw, 48px) 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  scroll-padding-left: clamp(20px, 4vw, 48px);
}
.packages-track::-webkit-scrollbar { display: none; }

@media (min-width: 1200px) {
  .packages-track {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    overflow: visible;
    scroll-snap-type: none;
  }
  .packages-track .pkg-card { flex: initial; min-width: 0; }
  .packages-head-arrows { display: none; }
}

.pkg-card {
  flex: 0 0 clamp(300px, 32vw, 440px);
  scroll-snap-align: start;
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  padding: 32px;
  display: flex; flex-direction: column;
  gap: 24px;
  min-height: 540px;
  position: relative;
  transition: transform .4s cubic-bezier(.2,.6,.2,1), background .3s, border-color .3s;
}
@media (max-width: 720px) {
  .pkg-card { min-height: 0; padding: 28px; gap: 20px; }
}
.pkg-card:hover { transform: translateY(-6px); }
.pkg-card.is-featured {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}
.pkg-card.is-featured .pkg-num,
.pkg-card.is-featured .pkg-features li { color: color-mix(in oklab, var(--bg) 70%, transparent); }
.pkg-card.is-featured .pkg-features li::before { background: var(--accent); }
.pkg-card.is-featured .pkg-target { border-color: color-mix(in oklab, var(--bg) 25%, transparent); color: color-mix(in oklab, var(--bg) 80%, transparent); }
.pkg-card.is-featured .pkg-cta { background: var(--accent); color: var(--accent-ink); border-color: var(--accent); }

.pkg-head {
  display: flex; justify-content: space-between; align-items: flex-start;
}
.pkg-num {
  font-size: 12px; color: var(--fg-mute); letter-spacing: 0.05em;
  font-variant-numeric: tabular-nums; font-weight: 600;
}
.pkg-badge {
  font-size: 10px; padding: 4px 8px;
  background: var(--accent); color: var(--accent-ink);
  border-radius: 4px;
  letter-spacing: 0.08em; text-transform: uppercase; font-weight: 700;
}
.pkg-title {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 700; letter-spacing: -0.025em; line-height: 1.1;
}
.pkg-price {
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 700; letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.pkg-price small { font-size: 0.4em; color: var(--fg-mute); font-weight: 500; margin-left: 4px; letter-spacing: 0; }
.pkg-card.is-featured .pkg-price small { color: color-mix(in oklab, var(--bg) 60%, transparent); }
.pkg-features {
  flex: 1;
  display: flex; flex-direction: column; gap: 12px;
  font-size: 14px;
}
.pkg-features li {
  position: relative; padding-left: 22px;
  color: var(--fg-soft);
  line-height: 1.5;
}
.pkg-features li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 10px; height: 1px; background: var(--fg);
}
.pkg-target {
  font-size: 12px; padding: 10px 14px;
  border: 1px dashed var(--line-soft); border-radius: 8px;
  color: var(--fg-mute);
}
.pkg-target b { color: var(--fg); font-weight: 600; }
.pkg-card.is-featured .pkg-target b { color: var(--bg); }
.pkg-cta {
  width: 100%; padding: 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-weight: 600; font-size: 14px;
  display: flex; justify-content: space-between; align-items: center;
  text-decoration: none; color: inherit;
  transition: background .2s, color .2s;
}
.pkg-cta:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }

/* ===== Compare ===== */
.compare {
  border-top: 1px solid var(--line-soft);
}
.compare-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  margin-top: 40px;
  background: var(--bg);
}
@media (max-width: 720px) { .compare-grid { grid-template-columns: 1fr; } }
.compare-col {
  padding: clamp(28px, 4vw, 56px);
}
.compare-col + .compare-col { border-left: 1px solid var(--line); }
@media (max-width: 720px) {
  .compare-col + .compare-col { border-left: none; border-top: 1px solid var(--line); }
}
.compare-col.is-us { background: var(--accent); color: var(--accent-ink); }
.compare-col-label {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 600; opacity: .65;
  margin-bottom: 8px;
}
.compare-col-title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.compare-list { display: grid; gap: 14px; }
.compare-list li {
  display: grid; grid-template-columns: 24px 1fr; gap: 12px;
  align-items: start;
  font-size: 15px; line-height: 1.45;
}
.compare-list li::before {
  content: ""; width: 20px; height: 20px; border-radius: 50%;
  background: var(--fg); opacity: .15; margin-top: 2px;
}
.compare-col.is-us .compare-list li::before { background: var(--accent-ink); opacity: 1;
  background-image: radial-gradient(circle at 50% 50%, var(--accent) 30%, transparent 31%);
}

/* ===== Process timeline ===== */
.process { background: var(--surface); border-top: 1px solid var(--line-soft); }
.process-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  margin-top: 56px;
  border-top: 1px solid var(--line);
}
@media (max-width: 1100px) { .process-list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .process-list { grid-template-columns: repeat(2, 1fr); } }
.process-item {
  padding: 28px 20px 36px;
  border-right: 1px solid var(--line-soft);
  position: relative;
  min-height: 200px;
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 20px;
}
.process-item:last-child { border-right: none; }
.process-num {
  font-size: 11px; color: var(--fg-mute);
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.05em; font-weight: 600;
}
.process-item h4 {
  font-size: clamp(16px, 1.6vw, 19px);
  font-weight: 700; letter-spacing: -0.02em;
  line-height: 1.25;
}
.process-item-mark {
  width: 8px; height: 8px; border-radius: 50%; background: var(--fg);
  position: absolute; top: -4.5px; left: 28px;
  transition: transform .3s, background .3s;
}
.process-item:hover .process-item-mark { transform: scale(2); background: var(--accent); }

/* ===== Capabilities (checklist) ===== */
.cap-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--line-soft);
  border-left: 1px solid var(--line-soft);
}
@media (max-width: 900px) { .cap-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .cap-grid { grid-template-columns: repeat(2, 1fr); } }
.cap-item {
  padding: 24px 20px;
  border-right: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  display: flex; flex-direction: column; gap: 16px;
  min-height: 130px;
  transition: background .25s;
  position: relative;
  font-size: 15px;
  font-weight: 500;
}
.cap-item:hover { background: var(--surface); }
.cap-item-num {
  font-size: 11px; color: var(--fg-mute);
  font-variant-numeric: tabular-nums; letter-spacing: 0.05em;
  font-weight: 600;
}

/* ===== Visuals (placeholders) ===== */
.visuals { border-top: 1px solid var(--line-soft); }
.visuals-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 40px;
}
@media (max-width: 800px) { .visuals-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 200px 200px 200px; } }
.viz {
  background: var(--surface);
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  padding: 20px;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column; justify-content: space-between;
}
.viz-tall { grid-row: span 2; }
@media (max-width: 800px) { .viz-tall { grid-row: span 1; grid-column: span 2; } }
.viz-label {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--fg-mute); font-weight: 600; font-family: 'JetBrains Mono', ui-monospace, monospace;
}
.viz-title { font-size: 18px; font-weight: 600; letter-spacing: -0.02em; line-height: 1.25; }
.viz-canvas { flex: 1; position: relative; margin: 14px 0; }

/* dashed pattern */
.viz-pattern {
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    var(--line-soft) 0,
    var(--line-soft) 1px,
    transparent 1px,
    transparent 10px
  );
  opacity: .8;
  border-radius: 8px;
}

/* PDF stack */
.viz-pdfs { display: flex; gap: 8px; align-items: flex-end; height: 100%; padding: 16px 0; }
.viz-pdf {
  flex: 1; background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 4px;
  position: relative;
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 8px;
  height: 80%;
  transition: transform .3s, height .3s;
}
.viz-pdf:nth-child(2) { height: 90%; }
.viz-pdf:nth-child(3) { height: 100%; background: var(--fg); }
.viz-pdf:nth-child(3) .viz-pdf-line { background: color-mix(in oklab, var(--bg) 30%, transparent); }
.viz-pdf:nth-child(3) .viz-pdf-line.is-accent { background: var(--accent); }
.viz-pdf:hover { transform: translateY(-4px); }
.viz-pdf-line { height: 3px; background: var(--line-soft); border-radius: 2px; }
.viz-pdf-line.is-accent { background: var(--accent); width: 60%; }

/* cert badge */
.viz-cert { display: flex; align-items: center; justify-content: center; height: 100%; }
.viz-cert-mark {
  width: 110px; height: 110px;
  border: 2px solid var(--fg); border-radius: 50%;
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-align: center;
  position: relative;
  animation: spin 30s linear infinite;
}
.viz-cert-mark::before {
  content: ""; position: absolute; inset: 12px;
  border-radius: 50%; border: 1px dashed var(--fg);
}
.viz-cert-mark span { display: block; line-height: 1.1; }
@keyframes spin { to { transform: rotate(360deg); } }

/* chart bars */
.viz-chart { display: flex; gap: 8px; align-items: flex-end; height: 100%; padding: 8px 0; }
.viz-bar {
  flex: 1; background: var(--fg);
  border-radius: 4px 4px 0 0;
  transition: height .8s cubic-bezier(.2,.6,.2,1);
}
.viz-bar.is-accent { background: var(--accent); }

/* contact cluster */
.viz-contact {
  display: flex; gap: 8px; flex-wrap: wrap;
  height: 100%; align-items: center;
}
.viz-contact-chip {
  font-size: 12px; padding: 6px 12px;
  border: 1px solid var(--line); border-radius: 999px;
  background: var(--bg);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

/* ===== FAQ ===== */
.faq { border-top: 1px solid var(--line-soft); }
.faq-list { margin-top: 48px; border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  padding: 28px 0;
  display: grid; grid-template-columns: auto 1fr auto; gap: 24px;
  align-items: center;
  text-align: left;
  font-size: clamp(17px, 1.8vw, 22px);
  font-weight: 600; letter-spacing: -0.02em;
  transition: padding .3s;
}
.faq-q:hover { padding-inline: 8px; }
.faq-q-num { font-size: 12px; color: var(--fg-mute); font-variant-numeric: tabular-nums; font-weight: 500; }
.faq-q-icon {
  width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  transition: background .25s, transform .4s;
  flex-shrink: 0;
}
.faq-q-icon::before, .faq-q-icon::after {
  content: ""; position: absolute;
  background: var(--fg);
  transition: transform .3s, opacity .3s;
}
.faq-q-icon::before { width: 12px; height: 1.5px; }
.faq-q-icon::after { width: 1.5px; height: 12px; }
.faq-item.is-open .faq-q-icon { background: var(--accent); border-color: var(--accent); transform: rotate(45deg); }
.faq-item.is-open .faq-q-icon::before, .faq-item.is-open .faq-q-icon::after { background: var(--accent-ink); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height .4s cubic-bezier(.2,.6,.2,1);
}
.faq-a-inner {
  padding: 0 56px 28px;
  font-size: 15px; line-height: 1.6;
  color: var(--fg-mute);
  max-width: 70ch;
}
.faq-item.is-open .faq-a { max-height: 200px; }

/* ===== Insights — Blog ===== */
.insights { border-top: 1px solid var(--line-soft); }
.insights-head {
  display: flex; align-items: end; justify-content: space-between;
  gap: 40px; margin-bottom: 56px; flex-wrap: wrap;
}
.insights-all {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--fg);
  padding: 14px 20px; border: 1px solid var(--line);
  border-radius: 999px;
  transition: background .25s, color .25s, border-color .25s;
}
.insights-all:hover { background: var(--fg); color: var(--bg); border-color: var(--fg); }
.insights-all .arrow { transition: transform .25s; }
.insights-all:hover .arrow { transform: translate(2px, -2px); }

/* Blog layout: main + sidebar */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 60px;
  align-items: start;
}
@media (max-width: 960px) {
  .blog-layout { grid-template-columns: 1fr; gap: 48px; }
}

/* Thumb pattern (placeholder thumbnails) */
.blog-thumb-pattern {
  position: absolute; inset: 0;
  background: var(--fg);
}
.blog-thumb-1 { background: linear-gradient(135deg, var(--fg) 0%, color-mix(in oklab, var(--fg) 70%, var(--accent)) 100%); }
.blog-thumb-2 { background: linear-gradient(135deg, color-mix(in oklab, var(--fg) 88%, var(--bg)) 0%, var(--fg) 100%); }
.blog-thumb-3 { background: linear-gradient(135deg, var(--accent) 0%, color-mix(in oklab, var(--accent) 50%, var(--fg)) 100%); }
.blog-thumb-4 { background: linear-gradient(135deg, color-mix(in oklab, var(--fg) 92%, var(--accent)) 0%, color-mix(in oklab, var(--fg) 70%, var(--bg)) 100%); }
.blog-thumb-5 { background: linear-gradient(135deg, var(--fg) 0%, color-mix(in oklab, var(--fg) 60%, var(--bg)) 100%); }

/* Featured */
.blog-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 48px;
  background: var(--bg);
  transition: border-color .25s;
}
.blog-featured:hover { border-color: var(--fg); }
.blog-featured-thumb {
  position: relative;
  aspect-ratio: 16 / 8;
  display: block;
  overflow: hidden;
}
.blog-featured-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--accent); color: var(--accent-ink, #000);
  font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 2px;
  z-index: 2;
}
.blog-featured-body { padding: 32px 36px 36px; }
.blog-featured-title {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.25; letter-spacing: -0.02em;
  font-weight: 600;
  margin: 14px 0 14px;
  text-wrap: balance;
}
.blog-featured-title a { color: var(--fg); }
.blog-featured-title a:hover { color: var(--accent); }
.blog-featured-summary {
  color: var(--fg-soft);
  font-size: 15px; line-height: 1.7;
  margin: 0 0 18px;
  max-width: 60ch;
}

/* Meta line */
.blog-meta {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--fg-mute);
}
.blog-meta-dot { opacity: .5; }
.blog-cat {
  color: var(--accent-ink, var(--fg));
  background: color-mix(in oklab, var(--accent) 35%, transparent);
  padding: 3px 10px;
  border-radius: 2px;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.blog-cat:hover { background: var(--accent); }
.blog-date, .blog-read { color: var(--fg-mute); }

.blog-readmore {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--fg);
  border-bottom: 1px solid var(--fg);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.blog-readmore:hover { color: var(--accent); border-color: var(--accent); }

.blog-readmore-sm {
  font-size: 12px; font-weight: 600;
  color: var(--fg-mute);
  margin-top: 8px;
  display: inline-block;
}
.blog-readmore-sm:hover { color: var(--fg); }

/* List */
.blog-list {
  list-style: none; padding: 0; margin: 0 0 48px;
  display: flex; flex-direction: column;
  gap: 36px;
}
.blog-item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 28px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line-soft);
}
.blog-item:last-child { border-bottom: none; padding-bottom: 0; }
@media (max-width: 640px) {
  .blog-item { grid-template-columns: 1fr; gap: 16px; }
}
.blog-item-thumb {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  display: block;
  border: 1px solid var(--line-soft);
}
.blog-item-body { display: flex; flex-direction: column; gap: 10px; }
.blog-item-title {
  font-size: 19px; line-height: 1.35; letter-spacing: -0.01em;
  font-weight: 600;
  margin: 4px 0 0;
  text-wrap: balance;
}
.blog-item-title a { color: var(--fg); }
.blog-item-title a:hover { color: var(--accent); }
.blog-item-summary {
  color: var(--fg-soft);
  font-size: 14px; line-height: 1.65;
  margin: 0;
  max-width: 60ch;
}

/* Pagination */
.blog-pagination {
  display: flex; align-items: center; gap: 6px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
}
.blog-pagination a, .blog-pagination span {
  min-width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 600;
  color: var(--fg-mute);
  border-radius: 2px;
}
.blog-pagination a { border: 1px solid var(--line-soft); }
.blog-pagination a.is-active {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}
.blog-pagination a:hover:not(.is-active) { border-color: var(--fg); color: var(--fg); }
.blog-page-next { padding: 0 14px; margin-left: auto; }

/* Sidebar */
.blog-side {
  display: flex; flex-direction: column;
  gap: 32px;
  position: sticky; top: 100px;
}
@media (max-width: 960px) { .blog-side { position: static; } }
.blog-widget {
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  padding: 24px 22px;
  background: var(--bg);
}
.blog-widget-h {
  font-size: 13px; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--fg);
  color: var(--fg);
  display: block;
}
.blog-search-wrap {
  display: flex; align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.blog-search-wrap input {
  flex: 1; border: 0; outline: 0;
  padding: 10px 12px;
  font-size: 13px;
  background: var(--bg); color: var(--fg);
  font-family: inherit;
}
.blog-search-wrap button {
  border: 0; background: var(--fg); color: var(--bg);
  width: 40px; cursor: pointer;
  font-size: 14px;
}

.blog-cats { list-style: none; padding: 0; margin: 0; }
.blog-cats li { border-bottom: 1px dashed var(--line-soft); }
.blog-cats li:last-child { border-bottom: none; }
.blog-cats a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0;
  font-size: 13px;
  color: var(--fg);
  transition: color .2s, padding .2s;
}
.blog-cats a:hover { color: var(--accent); padding-left: 6px; }
.blog-cats b {
  font-weight: 500; font-size: 11px;
  color: var(--fg-mute);
  background: color-mix(in oklab, var(--fg) 6%, transparent);
  padding: 2px 8px;
  border-radius: 999px;
}

.blog-popular { list-style: none; padding: 0; margin: 0; counter-reset: pop; }
.blog-popular li {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--line-soft);
}
.blog-popular li:last-child { border-bottom: none; }
.blog-popular-num {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 18px; font-weight: 700;
  color: var(--accent);
  line-height: 1.2;
}
.blog-popular a {
  display: flex; flex-direction: column; gap: 4px;
  color: var(--fg);
}
.blog-popular-title {
  font-size: 13px; line-height: 1.4;
  font-weight: 500;
  text-wrap: balance;
}
.blog-popular a:hover .blog-popular-title { color: var(--accent); }
.blog-popular-date { font-size: 11px; color: var(--fg-mute); }

.blog-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.blog-tag {
  font-size: 12px;
  padding: 5px 10px;
  border: 1px solid var(--line);
  border-radius: 2px;
  color: var(--fg-mute);
  transition: background .2s, color .2s, border-color .2s;
}
.blog-tag:hover {
  background: var(--fg); color: var(--bg); border-color: var(--fg);
}

.blog-widget-newsletter p {
  font-size: 13px; line-height: 1.6;
  color: var(--fg-soft);
  margin: 0 0 14px;
}
.blog-newsletter {
  display: flex; gap: 6px;
}
.blog-newsletter input {
  flex: 1; min-width: 0;
  border: 1px solid var(--line); border-radius: 2px;
  padding: 9px 12px; font-size: 13px;
  outline: 0;
  background: var(--bg); color: var(--fg);
  font-family: inherit;
}
.blog-newsletter button {
  border: 0; cursor: pointer;
  background: var(--fg); color: var(--bg);
  padding: 0 16px; font-weight: 600; font-size: 13px;
  border-radius: 2px;
}

/* ===== CTA Final ===== */
.cta-final {
  background: var(--fg); color: var(--bg);
  padding: clamp(80px, 12vw, 160px) clamp(20px, 4vw, 48px);
  position: relative; overflow: hidden;
}
.cta-final-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 40px; align-items: end;
}
@media (max-width: 800px) { .cta-final-grid { grid-template-columns: 1fr; align-items: start; } }
.cta-final-title {
  font-size: clamp(40px, 7vw, 120px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 700;
  text-wrap: balance;
}
.cta-final-title .em {
  font-style: normal; font-weight: 800; color: var(--accent);
}
.cta-final-actions { display: flex; flex-direction: column; gap: 12px; min-width: 220px; }
.cta-final .btn-accent { padding: 20px 28px; font-size: 15px; }
.cta-final .btn-secondary {
  border-color: color-mix(in oklab, var(--bg) 30%, transparent);
  color: var(--bg);
}
.cta-final .btn-secondary:hover { background: var(--bg); color: var(--fg); border-color: var(--bg); }

.cta-final-foot {
  margin-top: 80px;
  padding-top: 40px;
  border-top: 1px solid color-mix(in oklab, var(--bg) 18%, transparent);
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  font-size: 13px;
  color: color-mix(in oklab, var(--bg) 65%, transparent);
}
@media (max-width: 700px) { .cta-final-foot { grid-template-columns: 1fr; } }
.cta-final-foot b { color: var(--bg); font-weight: 600; display: block; margin-bottom: 4px; font-size: 14px; }

/* ===== Footer ===== */
.footer {
  padding: 80px clamp(20px, 4vw, 48px) 32px;
  border-top: 1px solid var(--line-soft);
  background: var(--bg);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.4fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  padding-bottom: 64px;
  border-bottom: 1px solid var(--line-soft);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-col-brand { grid-column: span 2; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-col-brand { grid-column: span 1; }
}
.footer-col {
  display: flex; flex-direction: column; gap: 18px;
}
.footer-col-label {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 600; color: var(--fg-mute);
}
.footer-brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 18px; letter-spacing: -0.02em;
  color: var(--fg);
}
.footer-brand-mark {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--fg);
  position: relative; overflow: hidden;
}
.footer-brand-mark::after {
  content: ""; position: absolute; inset: 6px;
  background: var(--accent); border-radius: 50%;
}
.footer-tag {
  font-size: 13px; line-height: 1.65;
  color: var(--fg-mute);
  max-width: 32ch;
}
.footer-links, .footer-contact {
  display: flex; flex-direction: column; gap: 10px;
  font-size: 13px;
}
.footer-links a {
  color: var(--fg-soft);
  transition: color .2s, padding-left .2s;
  display: inline-block;
}
.footer-links a:hover { color: var(--fg); padding-left: 4px; }
.footer-contact li {
  display: grid; grid-template-columns: 48px 1fr; gap: 12px;
  color: var(--fg-soft);
  align-items: baseline;
}
.footer-contact li span {
  font-size: 11px; color: var(--fg-mute);
  letter-spacing: 0.05em; text-transform: uppercase;
  font-weight: 600;
}
.footer-bottom {
  margin-top: 32px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12px; color: var(--fg-mute);
  flex-wrap: wrap; gap: 16px;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.is-visible { opacity: 1; transform: none; }

.reveal-line {
  display: inline-block;
  overflow: hidden;
  vertical-align: bottom;
}
.reveal-line > span {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 1s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-line.is-visible > span { transform: none; }

/* ========== Admin entry — small dot in footer ========== */
.site-admin-dot {
  display: inline-block;
  margin-left: 8px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--fg-mute, #999);
  opacity: 0.35;
  transition: opacity .2s, transform .2s;
  vertical-align: middle;
}
.site-admin-dot:hover {
  opacity: 1;
  transform: scale(1.4);
}

/* ===== Mobile fine-tuning (<480px / iPhone SE) ===== */
@media (max-width: 480px) {
  /* Hero — reduce top padding now that nav-links is hidden */
  .hero { padding: 96px 18px 56px; gap: 36px; min-height: auto; }
  .hero-stats { grid-template-columns: 1fr; gap: 14px; }

  /* Allow long Korean CTAs to wrap instead of clipping */
  .btn { white-space: normal; padding: 14px 18px; font-size: 13px; }
  .nav-cta { padding: 7px 12px; font-size: 12px; }

  /* Section headers — let large display titles wrap softly */
  .section-h-title { word-break: keep-all; }
}
