:root {
  --ink: #11110f;
  --paper: #f4f1e8;
  --paper-deep: #e9e4d7;
  --white: #fffef9;
  --acid: #d8ff35;
  --acid-soft: #ebff9b;
  --coral: #ff765f;
  --navy: #101d35;
  --muted: #6c6a63;
  --line: rgba(17, 17, 15, 0.16);
  --radius: 22px;
  --shadow: 0 28px 90px rgba(17, 17, 15, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", system-ui, sans-serif;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}
body::selection { background: var(--acid); color: var(--ink); }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
button { cursor: pointer; }
.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.narrow-shell { width: min(980px, calc(100% - 48px)); }
.skip-link { position: fixed; left: 12px; top: -80px; z-index: 1000; padding: 12px 16px; background: var(--acid); border: 2px solid var(--ink); }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
}
.site-header.scrolled { background: rgba(244, 241, 232, .9); border-color: var(--line); backdrop-filter: blur(14px); }
.header-inner { height: 76px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 900; letter-spacing: -.05em; }
.brand-mark { font-size: 20px; }
.brand-divider { width: 1px; height: 20px; background: currentColor; opacity: .4; }
.brand-edition { display: grid; place-items: center; width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--acid); font-size: 13px; letter-spacing: -.02em; }
.desktop-nav { display: flex; align-items: center; gap: 34px; font-size: 14px; font-weight: 700; }
.desktop-nav a { position: relative; }
.desktop-nav a::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 2px; background: var(--ink); transform: scaleX(0); transform-origin: right; transition: transform .2s; }
.desktop-nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 18px; min-height: 56px; padding: 0 24px; border: 1.5px solid var(--ink); border-radius: 4px; font-size: 15px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translate(-3px, -3px); box-shadow: 6px 6px 0 var(--ink); }
.button:disabled { cursor: wait; opacity: .65; transform: none; box-shadow: none; }
.button-small { min-height: 43px; padding: 0 18px; font-size: 13px; }
.button-dark { background: var(--ink); color: var(--white); }
.button-primary { background: var(--acid); color: var(--ink); }
.button-block { width: 100%; }
.text-link { display: inline-flex; gap: 9px; align-items: center; padding: 10px 2px; border-bottom: 1px solid var(--ink); font-size: 14px; font-weight: 750; }

.hero { position: relative; min-height: 900px; overflow: hidden; padding: 155px 0 0; background: var(--paper); }
.hero-grid { position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px); background-size: 56px 56px; mask-image: linear-gradient(to bottom, #000, transparent 80%); }
.hero-orb { position: absolute; border-radius: 50%; filter: blur(2px); pointer-events: none; }
.hero-orb-one { width: 430px; height: 430px; right: -180px; top: 100px; background: rgba(216,255,53,.42); }
.hero-orb-two { width: 250px; height: 250px; left: -110px; top: 470px; background: rgba(255,118,95,.22); }
.hero-layout { position: relative; display: grid; grid-template-columns: .98fr 1.02fr; gap: 66px; align-items: center; }
.status-pill { display: inline-flex; align-items: center; gap: 9px; padding: 9px 13px; background: rgba(255,255,255,.55); border: 1px solid var(--line); border-radius: 99px; font-size: 12px; font-weight: 700; }
.status-dot { position: relative; width: 8px; height: 8px; border-radius: 50%; background: #4b9e3d; }
.status-dot::after { content: ""; position: absolute; inset: -4px; border: 1px solid #4b9e3d; border-radius: 50%; animation: pulse 1.8s infinite; }
@keyframes pulse { 0%,100% { opacity: .2; transform: scale(.7); } 50% { opacity: .7; transform: scale(1); } }
.eyebrow, .section-kicker, .mini-label { font-family: ui-monospace, SFMono-Regular, Menlo, monospace; font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow { margin: 34px 0 18px; }
.hero h1 { margin: 0; font-size: clamp(50px, 5.15vw, 75px); line-height: .99; letter-spacing: -.075em; font-weight: 900; }
.hero h1 em { position: relative; z-index: 1; font-style: normal; }
.hero h1 em::after { content: ""; position: absolute; z-index: -1; left: -2px; right: -8px; bottom: 3px; height: .23em; background: var(--acid); transform: rotate(-1deg); }
.hero-lede { margin: 28px 0 0; color: #494842; font-size: 18px; line-height: 1.72; letter-spacing: -.025em; }
.hero-actions { display: flex; align-items: center; gap: 26px; margin-top: 34px; }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 50px; border-top: 1px solid var(--line); }
.hero-proof div { padding: 21px 15px 0 0; border-right: 1px solid var(--line); }
.hero-proof div:last-child { padding-left: 15px; border-right: 0; }
.hero-proof div:nth-child(2) { padding-left: 15px; }
.hero-proof strong, .hero-proof span { display: block; }
.hero-proof strong { font-size: 22px; letter-spacing: -.05em; }
.hero-proof span { margin-top: 5px; color: var(--muted); font-size: 11px; }

.hero-visual { position: relative; min-width: 0; }
.work-card { position: relative; z-index: 2; transform: rotate(1.5deg); background: #fdfcf6; border: 1.5px solid var(--ink); border-radius: 10px; box-shadow: 16px 18px 0 var(--ink); overflow: hidden; }
.work-card-top { height: 44px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 0 13px; border-bottom: 1px solid var(--line); color: var(--muted); font-family: ui-monospace, monospace; font-size: 9px; }
.window-dots { display: flex; gap: 5px; }
.window-dots i, .browser-bar i { width: 7px; height: 7px; border: 1px solid var(--ink); border-radius: 50%; }
.live-tag { justify-self: end; padding: 4px 6px; background: var(--acid); color: var(--ink); font-weight: 900; }
.work-canvas { position: relative; display: grid; grid-template-columns: 48px 1fr; min-height: 430px; background: #e8e4d9; }
.canvas-sidebar { padding-top: 25px; background: var(--ink); display: flex; flex-direction: column; align-items: center; gap: 17px; }
.canvas-sidebar span { width: 17px; height: 17px; border: 1px solid rgba(255,255,255,.55); border-radius: 3px; }
.canvas-sidebar span:nth-child(2) { background: var(--acid); border-color: var(--acid); }
.canvas-main { margin: 31px 30px; padding: 55px 45px; background: var(--white); border: 1px solid rgba(17,17,15,.12); }
.canvas-label { font-family: ui-monospace, monospace; font-size: 8px; letter-spacing: .15em; }
.canvas-title { margin: 20px 0; display: flex; flex-direction: column; gap: 8px; }
.canvas-title i { display: block; height: 17px; background: var(--ink); }
.canvas-title i:nth-child(1) { width: 90%; }
.canvas-title i:nth-child(2) { width: 72%; }
.canvas-title i:nth-child(3) { width: 83%; background: var(--acid); }
.canvas-copy { display: flex; flex-direction: column; gap: 6px; }
.canvas-copy i { display: block; width: 82%; height: 5px; background: #c9c6bd; }
.canvas-copy i:last-child { width: 65%; }
.canvas-button { width: fit-content; margin-top: 25px; padding: 11px 15px; background: var(--ink); color: var(--white); font-size: 8px; font-weight: 800; }
.canvas-metrics { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-top: 45px; }
.canvas-metrics i { height: 41px; background: #e9e6dc; border-top: 3px solid var(--ink); }
.comment-bubble { position: absolute; z-index: 3; display: flex; gap: 9px; align-items: center; padding: 9px 12px; background: var(--coral); border: 1.5px solid var(--ink); box-shadow: 4px 4px 0 var(--ink); transform: rotate(-3deg); }
.comment-bubble span { display: grid; place-items: center; flex: 0 0 25px; height: 25px; border-radius: 50%; background: var(--ink); color: var(--white); font-size: 8px; }
.comment-bubble p { margin: 0; font-size: 10px; font-weight: 800; line-height: 1.35; }
.comment-one { top: 67px; right: 2px; }
.comment-two { bottom: 42px; left: 32px; background: var(--acid); transform: rotate(2deg); }
.delivery-stamp { position: absolute; z-index: 4; right: -25px; bottom: -52px; display: flex; flex-direction: column; justify-content: center; align-items: center; width: 125px; height: 125px; border-radius: 50%; background: var(--acid); border: 2px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); transform: rotate(-11deg); }
.delivery-stamp span, .delivery-stamp small { font-family: ui-monospace, monospace; font-size: 8px; font-weight: 900; letter-spacing: .08em; }
.delivery-stamp strong { margin: 2px 0; font-size: 34px; letter-spacing: -.08em; }
.campaign-clock { position: relative; display: flex; align-items: center; gap: 15px; margin-top: 86px; padding: 17px 0; border-top: 1px solid var(--line); font-family: ui-monospace, monospace; font-size: 11px; }
.campaign-clock strong { font-size: 16px; }
.clock-note { margin-left: auto; color: var(--muted); }
.campaign-clock.ended { color: var(--coral); }

.truth-strip { overflow: hidden; padding: 17px 0; background: var(--ink); color: var(--white); }
.marquee-track { width: max-content; min-width: 100%; display: flex; justify-content: space-around; align-items: center; gap: 30px; padding: 0 24px; font-size: 13px; font-weight: 750; }
.marquee-track i { color: var(--acid); font-style: normal; }

.section { padding: 125px 0; }
.section-kicker { margin: 0 0 24px; }
.section-kicker.light { color: var(--acid); }
.section h2 { margin: 0; font-size: clamp(40px, 5vw, 67px); line-height: 1.08; letter-spacing: -.065em; }
.marker { position: relative; z-index: 0; }
.marker::after { content: ""; position: absolute; z-index: -1; left: 0; right: 0; bottom: 2px; height: .3em; background: var(--acid); }
.section-intro { max-width: 680px; margin: 32px 0 0; color: var(--muted); font-size: 18px; line-height: 1.75; }
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 68px; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.problem-grid article { min-height: 345px; padding: 28px 32px 35px 0; border-right: 1px solid var(--line); }
.problem-grid article + article { padding-left: 32px; }
.problem-grid article:last-child { border-right: 0; }
.problem-number { font-family: ui-monospace, monospace; color: var(--muted); font-size: 11px; }
.problem-grid h3 { margin: 73px 0 22px; font-size: 26px; line-height: 1.3; letter-spacing: -.045em; }
.problem-grid p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.75; }

.result-section { background: var(--ink); color: var(--white); }
.split-heading { display: grid; grid-template-columns: 1.15fr .55fr; gap: 80px; align-items: end; }
.split-heading > p { margin: 0 0 7px; color: #a8a69f; line-height: 1.8; }
.deliverable-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 70px; }
.deliverable-card { position: relative; min-height: 410px; padding: 40px; overflow: hidden; background: #1d1d1a; border: 1px solid rgba(255,255,255,.16); border-radius: var(--radius); }
.deliverable-card.card-wide { display: grid; grid-template-columns: 1.03fr .97fr; gap: 50px; grid-column: span 2; min-height: 390px; }
.deliverable-card.card-accent { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.card-index { position: absolute; top: 22px; right: 25px; color: rgba(255,255,255,.4); font-family: ui-monospace, monospace; font-size: 11px; }
.card-accent .card-index { color: rgba(17,17,15,.5); }
.deliverable-card .mini-label { display: block; margin: 30px 0 20px; color: #a8a69f; }
.card-accent .mini-label { color: rgba(17,17,15,.6); }
.deliverable-card h3 { margin: 0; font-size: 33px; line-height: 1.18; letter-spacing: -.055em; }
.deliverable-card p { max-width: 500px; margin: 22px 0 0; color: #aaa8a1; font-size: 14px; line-height: 1.75; }
.card-accent p { color: rgba(17,17,15,.65); }
.copy-visual { align-self: center; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px; padding: 25px; background: var(--white); border: 1.5px solid var(--ink); box-shadow: 9px 9px 0 var(--ink); color: var(--ink); }
.copy-visual span { grid-column: span 1; font-family: ui-monospace, monospace; font-size: 9px; }
.copy-visual span:nth-of-type(2) { grid-column: 3; grid-row: 1; }
.copy-visual i, .copy-visual strong { grid-column: 1; display: block; height: 6px; background: #d8d5cb; }
.copy-visual i:nth-of-type(1) { grid-row: 2; }
.copy-visual i:nth-of-type(2) { grid-row: 3; width: 80%; }
.copy-visual i:nth-of-type(3) { grid-row: 4; width: 60%; }
.copy-visual b { grid-column: 2; grid-row: 2/5; align-self: center; color: var(--coral); }
.copy-visual strong { grid-column: 3; background: var(--ink); height: 10px; }
.copy-visual strong:nth-of-type(1) { grid-row: 2; }
.copy-visual strong:nth-of-type(2) { grid-row: 3; width: 70%; background: var(--acid); }
.device-visual { position: absolute; left: 38px; right: 38px; bottom: 37px; height: 133px; border-bottom: 1px solid rgba(255,255,255,.15); }
.device-visual i { position: absolute; bottom: 0; border: 1.5px solid rgba(255,255,255,.55); border-bottom: 0; border-radius: 7px 7px 0 0; }
.device-visual i:nth-child(1) { left: 5%; width: 45%; height: 115px; }
.device-visual i:nth-child(2) { left: 46%; width: 24%; height: 90px; background: rgba(216,255,53,.12); }
.device-visual i:nth-child(3) { right: 5%; width: 14%; height: 67px; background: var(--acid); }
.lead-visual { position: absolute; left: 38px; right: 38px; bottom: 45px; display: flex; align-items: center; justify-content: space-between; padding: 22px; background: var(--white); border-radius: 8px; color: var(--ink); }
.lead-visual span { font-size: 13px; font-weight: 800; }
.lead-visual strong { font-size: 35px; letter-spacing: -.07em; }
.check-list { align-self: center; margin: 55px 0 0; padding: 0; list-style: none; }
.check-list li { display: flex; align-items: center; gap: 13px; padding: 15px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #cbc9c1; font-size: 14px; }
.check-list span { color: var(--acid); }

.section-heading { max-width: 780px; }
.section-heading.centered { margin: 0 auto; text-align: center; }
.section-heading.centered > p:last-child { color: var(--muted); }
.example-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 65px; }
.example-card { padding: 16px 16px 26px; border: 1.5px solid var(--ink); transition: transform .25s, box-shadow .25s; }
.example-card:hover { transform: translateY(-8px); box-shadow: 10px 12px 0 var(--ink); }
.example-navy { background: #bdc7d6; }
.example-coral { background: #ff927f; }
.example-cream { background: #e9deca; }
.example-top { display: flex; justify-content: space-between; padding: 2px 2px 14px; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 800; }
.example-top i { font-style: normal; font-size: 16px; }
.browser-mock { min-height: 260px; background: var(--white); border: 1px solid var(--ink); overflow: hidden; }
.browser-bar { display: flex; gap: 4px; padding: 8px; border-bottom: 1px solid rgba(17,17,15,.2); }
.browser-bar i { width: 5px; height: 5px; }
.mock-professional, .mock-education, .mock-local { min-height: 234px; padding: 38px 28px; }
.browser-mock small { display: block; font-family: ui-monospace, monospace; font-size: 7px; letter-spacing: .12em; }
.browser-mock strong { display: block; margin: 28px 0; font-size: 25px; line-height: 1.13; letter-spacing: -.06em; }
.browser-mock span { display: inline-block; padding: 9px 11px; font-size: 8px; font-weight: 800; }
.mock-professional { background: #13233d; color: white; }
.mock-professional span { background: #d6ff46; color: #111; }
.mock-education { background: #fff2e8; }
.mock-education em { color: #ed5c45; font-style: normal; }
.mock-education span { background: #ed5c45; color: white; }
.mock-local { position: relative; background: linear-gradient(135deg,#443d30,#a69981); color: white; }
.mock-local::after { content: ""; position: absolute; width: 80px; height: 130px; right: 16px; bottom: 0; border-radius: 50px 50px 0 0; background: rgba(255,255,255,.14); }
.mock-local span { background: #f0e4ce; color: #211f1a; }
.example-card h3 { margin: 24px 4px 8px; font-size: 20px; letter-spacing: -.04em; }
.example-card p { margin: 0 4px; color: rgba(17,17,15,.65); font-size: 12px; line-height: 1.6; }
.example-note { margin: 19px 0 0; color: var(--muted); font-size: 11px; text-align: right; }

.process-section { background: #e8e2d4; }
.timeline { position: relative; max-width: 930px; margin: 75px auto 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 72px; width: 1px; background: var(--ink); }
.timeline li { position: relative; display: grid; grid-template-columns: 145px 1fr; min-height: 178px; }
.time-badge { z-index: 1; display: grid; place-items: center; align-self: start; width: 72px; height: 72px; background: var(--paper); border: 1.5px solid var(--ink); border-radius: 50%; font-family: ui-monospace, monospace; font-weight: 900; box-shadow: 5px 5px 0 var(--ink); }
.timeline-card { padding: 4px 0 44px; border-bottom: 1px solid rgba(17,17,15,.2); }
.timeline-card span { font-family: ui-monospace, monospace; color: var(--muted); font-size: 9px; letter-spacing: .12em; }
.timeline-card h3 { margin: 10px 0 12px; font-size: 27px; letter-spacing: -.05em; }
.timeline-card p { margin: 0; color: var(--muted); line-height: 1.75; }
.timeline-final { padding: 29px; background: var(--acid); border: 1.5px solid var(--ink); box-shadow: 8px 8px 0 var(--ink); }

.price-section { background: var(--coral); border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.price-layout { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.price-copy .section-kicker { color: var(--ink); }
.price-copy > p:not(.section-kicker) { max-width: 430px; margin: 28px 0; line-height: 1.75; }
.capacity { margin-top: 55px; padding: 21px 0; border-top: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); }
.capacity > span { font-size: 12px; font-weight: 800; }
.capacity-bars { display: flex; gap: 7px; margin: 15px 0 9px; }
.capacity-bars i { width: 80px; height: 12px; background: rgba(17,17,15,.18); border: 1px solid var(--ink); }
.capacity-bars i.active { background: var(--acid); }
.capacity strong { font-family: ui-monospace, monospace; font-size: 12px; }
.price-card { padding: 36px; background: var(--white); border: 2px solid var(--ink); box-shadow: 14px 14px 0 var(--ink); }
.price-card-head { display: flex; justify-content: space-between; align-items: center; font-family: ui-monospace, monospace; font-size: 10px; font-weight: 900; letter-spacing: .1em; }
.price-badge { padding: 7px 9px; background: var(--acid); border: 1px solid var(--ink); }
.price-main { display: flex; justify-content: space-between; align-items: end; margin: 35px 0; padding-bottom: 33px; border-bottom: 1.5px solid var(--ink); }
.price-main small, .price-main strong, .price-main span { display: block; }
.price-main small { margin-bottom: 7px; color: var(--muted); }
.price-main strong { font-size: clamp(42px,5vw,65px); letter-spacing: -.075em; line-height: 1; }
.price-main strong em { font-size: 19px; font-style: normal; }
.price-main span { margin-top: 8px; color: var(--muted); font-size: 10px; }
.price-main p { margin: 0; font-size: 11px; font-weight: 800; }
.price-card ul { display: grid; grid-template-columns: repeat(2,1fr); gap: 0 25px; margin: 0 0 34px; padding: 0; list-style: none; }
.price-card li { display: flex; gap: 9px; padding: 12px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
.price-card li span { font-weight: 900; }
.microcopy { margin: 13px 0 0; color: var(--muted); font-size: 10px; text-align: center; }

.fit-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.fit-card { position: relative; min-height: 490px; padding: 55px; border: 1.5px solid var(--ink); }
.fit-yes { background: var(--acid); }
.fit-no { background: #d8d4ca; }
.fit-icon { position: absolute; right: 35px; top: 28px; font-size: 50px; font-weight: 300; }
.fit-card h2 { font-size: 42px; }
.fit-card ul { margin: 52px 0 0; padding: 0; list-style: none; }
.fit-card li { position: relative; padding: 17px 0 17px 24px; border-bottom: 1px solid rgba(17,17,15,.2); line-height: 1.55; }
.fit-card li::before { content: "→"; position: absolute; left: 0; }

.faq-section { border-top: 1px solid var(--line); }
.faq-layout { display: grid; grid-template-columns: .65fr 1.35fr; gap: 110px; }
.faq-contact { margin-top: 32px; color: var(--muted); font-size: 13px; line-height: 1.6; }
.faq-contact a { border-bottom: 1px solid currentColor; }
.accordion { border-top: 1.5px solid var(--ink); }
.accordion details { border-bottom: 1.5px solid var(--ink); }
.accordion summary { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 25px 0; cursor: pointer; font-size: 18px; font-weight: 800; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary span { font-size: 25px; font-weight: 400; transition: transform .2s; }
.accordion details[open] summary span { transform: rotate(45deg); }
.accordion details p { margin: -4px 0 28px; padding-right: 45px; color: var(--muted); font-size: 14px; line-height: 1.8; }

.apply-section { background: var(--navy); color: var(--white); }
.apply-layout { display: grid; grid-template-columns: .87fr 1.13fr; gap: 90px; align-items: start; }
.apply-copy { position: sticky; top: 110px; }
.apply-copy h2 { font-size: clamp(40px,4.5vw,59px); }
.apply-copy > p:not(.section-kicker) { margin: 27px 0 0; color: #b8c0ce; line-height: 1.75; }
.contact-promise { margin-top: 52px; border-top: 1px solid rgba(255,255,255,.22); }
.contact-promise > div { display: grid; grid-template-columns: 44px 1fr; gap: 13px; align-items: center; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.contact-promise span { font-family: ui-monospace, monospace; color: var(--acid); font-size: 10px; }
.contact-promise p { margin: 0; color: #aeb7c6; font-size: 12px; }
.contact-promise strong { display: block; margin-bottom: 3px; color: var(--white); font-size: 14px; }
.apply-form { padding: 38px; background: var(--white); color: var(--ink); border: 1.5px solid var(--ink); box-shadow: 12px 12px 0 var(--acid); }
.form-identity { display: grid; grid-template-columns: 108px 1fr; gap: 16px; align-items: start; margin: -2px 0 25px; padding: 14px 0; border-top: 1px solid #d8d5cb; border-bottom: 1px solid #d8d5cb; }
.form-identity > span { padding-top: 3px; color: #76736c; font: 700 9px/1.4 ui-monospace, monospace; letter-spacing: .08em; }
.form-identity strong { display: block; margin-bottom: 3px; font-size: 13px; }
.form-identity p { margin: 0; color: #77746d; font-size: 11px; line-height: 1.55; }
.form-heading { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; padding-bottom: 22px; border-bottom: 1.5px solid var(--ink); }
.form-heading > span { font-size: 22px; font-weight: 900; letter-spacing: -.04em; }
.form-heading strong { padding: 7px 9px; background: var(--acid); border: 1px solid var(--ink); font-family: ui-monospace, monospace; font-size: 10px; }
.field-row { display: grid; grid-template-columns: repeat(2,1fr); gap: 14px; }
.apply-form > label, .field-row label { display: block; margin-bottom: 17px; font-size: 12px; font-weight: 800; }
.apply-form label em { color: #d84532; font-style: normal; }
.apply-form input:not([type="checkbox"]):not([type="radio"]), .apply-form textarea { width: 100%; margin-top: 8px; padding: 14px; background: #f3f1ea; border: 1px solid transparent; border-radius: 0; outline: none; color: var(--ink); resize: vertical; transition: border-color .2s, background .2s; }
.apply-form input:focus, .apply-form textarea:focus { background: var(--white); border-color: var(--ink) !important; }
.apply-form input::placeholder, .apply-form textarea::placeholder { color: #99968c; }
.field-help { margin: -10px 0 15px; color: var(--muted); font-size: 10px; }
.apply-form fieldset { margin: 4px 0 19px; padding: 0; border: 0; }
.apply-form legend { margin-bottom: 10px; font-size: 12px; font-weight: 800; }
.radio { display: inline-flex; align-items: center; gap: 7px; margin-right: 18px; font-size: 12px; }
.radio input, .consent input { accent-color: var(--ink); }
.consent { display: flex !important; gap: 9px; align-items: start; margin: 0 0 18px !important; line-height: 1.5; }
.consent input { margin-top: 2px; }
.consent a { border-bottom: 1px solid currentColor; }
.honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.form-message { display: none; margin: 0 0 16px; padding: 13px; font-size: 12px; line-height: 1.55; }
.form-message.error { display: block; background: #ffe0db; border: 1px solid #e36f5b; }
.form-message.success { display: block; background: #edffc1; border: 1px solid #7c9a36; }

.site-footer { padding: 56px 0 28px; background: var(--ink); color: var(--white); }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.18); }
.brand-footer .brand-edition { background: var(--acid); color: var(--ink); }
.footer-top p { color: #aaa9a3; font-size: 13px; }
.footer-top > a { font-size: 12px; border-bottom: 1px solid currentColor; }
.footer-bottom { display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 20px; padding-top: 30px; color: #85847e; font-size: 10px; line-height: 1.7; }
.footer-bottom div { display: flex; gap: 18px; }
.footer-bottom > p:last-child { text-align: right; }
.mobile-cta { display: none; }

/* Legal page */
.legal-page { padding: 150px 0 100px; min-height: 80vh; }
.legal-page h1 { font-size: clamp(40px,6vw,70px); letter-spacing: -.07em; }
.legal-content { max-width: 780px; margin-top: 60px; padding-top: 35px; border-top: 1.5px solid var(--ink); }
.legal-content h2 { margin: 38px 0 14px; font-size: 21px; letter-spacing: -.035em; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.8; font-size: 14px; }
.legal-content table { width: 100%; border-collapse: collapse; font-size: 13px; }
.legal-content th, .legal-content td { padding: 13px; border: 1px solid var(--line); text-align: left; vertical-align: top; }

/* Search guide */
.guide-hero { padding: 155px 0 85px; background: var(--acid); border-bottom: 1.5px solid var(--ink); }
.guide-hero h1 { max-width: 930px; margin: 0; font-size: clamp(48px,7vw,88px); line-height: 1.02; letter-spacing: -.075em; }
.guide-hero p:last-child { max-width: 720px; margin: 28px 0 0; font-size: 18px; line-height: 1.7; }
.guide-layout { display: grid; grid-template-columns: minmax(0,1fr) 300px; gap: 80px; padding: 95px 0 120px; }
.guide-article { min-width: 0; }
.guide-article h2 { margin: 75px 0 22px; font-size: 38px; letter-spacing: -.055em; line-height: 1.2; }
.guide-article h2:first-child { margin-top: 0; }
.guide-article h3 { margin: 35px 0 12px; font-size: 23px; letter-spacing: -.04em; }
.guide-article p, .guide-article li { color: #4e4c45; font-size: 16px; line-height: 1.85; }
.guide-article a { border-bottom: 1px solid currentColor; }
.guide-article ul, .guide-article ol { padding-left: 22px; }
.guide-table { width: 100%; margin: 28px 0; border-collapse: collapse; background: var(--white); }
.guide-table th, .guide-table td { padding: 17px; border: 1px solid var(--line); text-align: left; vertical-align: top; font-size: 14px; line-height: 1.6; }
.guide-table th { background: var(--ink); color: var(--white); }
.guide-callout { margin: 40px 0; padding: 28px; background: var(--acid-soft); border: 1.5px solid var(--ink); box-shadow: 7px 7px 0 var(--ink); }
.guide-callout strong { display: block; margin-bottom: 8px; font-size: 21px; }
.guide-sidebar { position: sticky; top: 105px; align-self: start; padding: 25px; background: var(--white); border: 1.5px solid var(--ink); }
.guide-sidebar span { font-family: ui-monospace,monospace; font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.guide-sidebar strong { display: block; margin: 16px 0 8px; font-size: 27px; letter-spacing: -.05em; }
.guide-sidebar p { color: var(--muted); font-size: 12px; line-height: 1.65; }
.guide-sidebar .button { margin-top: 14px; }
.guide-updated { margin-top: 30px; color: var(--muted); font-size: 11px; }
.brief-template { margin: 24px 0 34px; padding: 26px; border: 1px solid var(--ink); background: #f3f1ea; }
.brief-template h3 { margin-top: 0; }
.brief-template dl { margin: 0; }
.brief-template dt { margin-top: 18px; font-size: 12px; font-weight: 900; }
.brief-template dd { margin: 6px 0 0; padding-bottom: 12px; border-bottom: 1px dashed #c6c2b8; color: #68655e; font-size: 13px; line-height: 1.7; }
.brief-note { padding: 18px 20px; border-left: 4px solid var(--acid); background: var(--navy); color: var(--white); }
.brief-note p { color: #c4cbd7 !important; }

/* Admin */
.admin-body { min-height: 100vh; padding: 40px 0 80px; background: #ece9e0; }
.admin-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 40px; }
.admin-header h1 { margin: 8px 0 0; font-size: 38px; letter-spacing: -.06em; }
.admin-login { display: flex; gap: 8px; }
.admin-login input { min-width: 270px; padding: 12px; background: var(--white); border: 1px solid var(--ink); }
.admin-login button { padding: 0 16px; background: var(--ink); color: var(--white); border: 0; font-weight: 800; }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit,minmax(130px,1fr)); gap: 10px; margin-bottom: 24px; }
.stat-card { padding: 18px; background: var(--white); border: 1px solid var(--line); }
.stat-card span { color: var(--muted); font-size: 11px; }
.stat-card strong { display: block; margin-top: 7px; font-size: 30px; }
.lead-list { display: grid; gap: 12px; }
.lead-card { display: grid; grid-template-columns: 1.2fr .8fr 1fr auto; gap: 25px; align-items: start; padding: 24px; background: var(--white); border: 1px solid var(--line); }
.lead-card h2 { margin: 0 0 7px; font-size: 19px; }
.lead-card p { margin: 4px 0; color: var(--muted); font-size: 12px; line-height: 1.55; }
.lead-card a { border-bottom: 1px solid currentColor; }
.lead-card select, .lead-card textarea { width: 100%; padding: 9px; border: 1px solid var(--line); background: #f4f1e8; font-size: 12px; }
.lead-card textarea { min-height: 70px; margin-top: 7px; resize: vertical; }
.lead-card button { margin-top: 7px; padding: 8px 11px; background: var(--ink); color: white; border: 0; font-size: 11px; font-weight: 800; }
.status-chip { display: inline-block; padding: 6px 8px; background: var(--acid); font-family: ui-monospace, monospace; font-size: 9px; }
.empty-state { padding: 70px; background: var(--white); border: 1px dashed var(--muted); text-align: center; color: var(--muted); }

@media (max-width: 980px) {
  .desktop-nav { display: none; }
  .hero { min-height: auto; padding-top: 130px; }
  .hero-layout { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { width: min(680px,100%); margin: 15px auto 0; }
  .campaign-clock { margin-top: 100px; }
  .problem-grid { grid-template-columns: 1fr; }
  .problem-grid article, .problem-grid article + article { min-height: 0; padding: 26px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .problem-grid article:last-child { border-bottom: 0; }
  .problem-grid h3 { margin: 35px 0 14px; }
  .split-heading, .price-layout, .faq-layout, .apply-layout { grid-template-columns: 1fr; gap: 55px; }
  .example-grid { grid-template-columns: 1fr 1fr; }
  .example-card:last-child { grid-column: span 2; }
  .fit-card { padding: 40px; }
  .apply-copy { position: static; }
  .admin-header { align-items: flex-start; flex-direction: column; gap: 20px; }
  .admin-stats { grid-template-columns: repeat(3,1fr); }
  .lead-card { grid-template-columns: 1fr 1fr; }
  .guide-layout { grid-template-columns: 1fr; }
  .guide-sidebar { position: static; }
}

@media (max-width: 680px) {
  .shell, .narrow-shell { width: min(100% - 32px, 1180px); }
  .site-header .button-small { display: none; }
  .header-inner { height: 65px; }
  .hero { padding-top: 108px; }
  .hero h1 { font-size: clamp(43px, 13.3vw, 62px); }
  .hero-lede { font-size: 16px; }
  .desktop-only { display: none; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 10px; }
  .hero-actions .button { width: 100%; }
  .text-link { align-self: center; }
  .hero-proof { gap: 0; }
  .hero-proof strong { font-size: 18px; }
  .hero-proof span { font-size: 9px; line-height: 1.4; }
  .work-canvas { min-height: 330px; grid-template-columns: 34px 1fr; }
  .canvas-main { margin: 20px 14px; padding: 40px 25px; }
  .canvas-sidebar span { width: 13px; height: 13px; }
  .comment-one { right: -4px; top: 50px; }
  .comment-two { left: 18px; bottom: 27px; }
  .delivery-stamp { right: -5px; bottom: -66px; width: 105px; height: 105px; }
  .delivery-stamp strong { font-size: 29px; }
  .campaign-clock { flex-wrap: wrap; gap: 7px 13px; margin-top: 100px; }
  .campaign-clock strong { width: 100%; font-size: 22px; }
  .clock-note { margin-left: 0; }
  .marquee-track { justify-content: flex-start; overflow: hidden; }
  .marquee-track span:nth-of-type(n+5), .marquee-track i:nth-of-type(n+5) { display: none; }
  .section { padding: 88px 0; }
  .section h2 { font-size: clamp(37px, 11vw, 53px); }
  .section-intro { font-size: 16px; }
  .split-heading { gap: 25px; }
  .deliverable-grid { grid-template-columns: 1fr; }
  .deliverable-card, .deliverable-card.card-wide { display: block; grid-column: auto; min-height: 430px; padding: 30px; }
  .deliverable-card h3 { font-size: 27px; }
  .copy-visual { margin-top: 35px; }
  .check-list { margin-top: 35px; }
  .example-grid { grid-template-columns: 1fr; }
  .example-card:last-child { grid-column: auto; }
  .example-note { text-align: left; line-height: 1.6; }
  .timeline::before { left: 30px; }
  .timeline li { grid-template-columns: 77px 1fr; }
  .time-badge { width: 60px; height: 60px; font-size: 12px; }
  .timeline-card { padding-bottom: 34px; }
  .timeline-final { padding: 22px; }
  .price-layout { gap: 50px; }
  .price-card { padding: 25px 20px; box-shadow: 8px 8px 0 var(--ink); }
  .price-card-head { align-items: flex-start; gap: 12px; }
  .price-main { align-items: flex-start; flex-direction: column; gap: 20px; }
  .price-main strong { font-size: 47px; }
  .price-card ul { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
  .fit-card { min-height: 0; padding: 35px 27px; }
  .fit-card h2 { font-size: 35px; }
  .fit-card ul { margin-top: 35px; }
  .faq-layout { gap: 45px; }
  .accordion summary { font-size: 16px; }
  .apply-form { padding: 25px 20px; box-shadow: 7px 7px 0 var(--acid); }
  .field-row { grid-template-columns: 1fr; gap: 0; }
  .footer-top { align-items: flex-start; flex-direction: column; gap: 25px; }
  .footer-bottom { grid-template-columns: 1fr; }
  .footer-bottom > p:last-child { text-align: left; }
  .mobile-cta { position: fixed; display: block; z-index: 90; left: 12px; right: 12px; bottom: 12px; padding: 15px; background: var(--acid); border: 1.5px solid var(--ink); box-shadow: 5px 5px 0 var(--ink); text-align: center; font-size: 13px; font-weight: 900; }
  .legal-content table { display: block; overflow-x: auto; }
  .admin-login { width: 100%; }
  .admin-login input { min-width: 0; flex: 1; }
  .admin-stats { grid-template-columns: repeat(2,1fr); }
  .lead-card { grid-template-columns: 1fr; }
  .guide-hero { padding-top: 115px; }
  .guide-layout { padding-top: 65px; }
  .guide-article h2 { font-size: 32px; }
  .guide-table { display: block; overflow-x: auto; }
}


@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
