:root {
  --white: #FFFFFF;
  --off: #F7F7F5;
  --ink: #0D0D0D;
  --ink-2: #3A3A3A;
  --ink-3: #7A7A7A;
  --ink-4: #B8B8B8;
  --rule: #E5E5E3;
  --rule-2: #F0F0EE;
  --accent: #1A1AFF;
  --accent-2: #EBEBFF;
  --fire: #FF4D00;
  --fire-2: #FFF0EB;
  --jakarta: 'Plus Jakarta Sans', sans-serif;
  --body: 'Inter', sans-serif;
  --max: 1200px;
  --ease: cubic-bezier(.16,1,.3,1);
  --r: 0;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--ink); font-family: var(--body); font-size: 16px; line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
::selection { background: var(--accent); color: var(--white); }
a { color: inherit; text-decoration: none; }
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 48px; }
.label { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--ink-3); }
.label-accent { color: var(--accent); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; transition: all .3s; }
nav.up { background: rgba(255,255,255,.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--rule); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav-logo { font-family: var(--jakarta); font-weight: 800; font-size: 14px; letter-spacing: .06em; text-transform: uppercase; display: flex; align-items: center; gap: 8px; }
.nav-logo .dot { width: 6px; height: 6px; background: var(--accent); border-radius: var(--r); }
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-links a { font-family: var(--jakarta); font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-3); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-links a.nav-fire { color: var(--fire); }
.nav-links a.nav-fire:hover, .nav-links a.nav-fire.active { color: var(--fire); }
.nav-cta { background: var(--ink); color: var(--white) !important; padding: 10px 22px; transition: background .2s !important; }
.nav-cta:hover { background: var(--accent) !important; color: var(--white) !important; }
.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 12px; background: transparent; border: 1px solid var(--rule);
  cursor: pointer; border-radius: var(--r); transition: border-color .2s, background .2s;
}
.nav-toggle-bar { display: block; width: 100%; height: 1.5px; background: var(--ink); transition: transform .25s, opacity .25s; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 90;
  background: rgba(255,255,255,.98); border-bottom: 1px solid var(--rule);
  box-shadow: 0 12px 40px rgba(0,0,0,.08); backdrop-filter: blur(12px);
}
.nav-drawer.open { display: block; }
.nav-drawer-inner { display: flex; flex-direction: column; gap: 0; padding: 8px 24px 20px; max-width: var(--wrap); margin: 0 auto; }
.nav-drawer-inner a {
  font-family: var(--jakarta); font-size: 12px; font-weight: 600; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink-2); padding: 14px 0; border-bottom: 1px solid var(--rule-2);
  transition: color .2s;
}
.nav-drawer-inner a:last-child { border-bottom: none; }
.nav-drawer-inner a:hover, .nav-drawer-inner a.active { color: var(--accent); }
.nav-drawer-inner a.nav-fire { color: var(--fire); }
.nav-drawer-inner a.nav-fire:hover, .nav-drawer-inner a.nav-fire.active { color: var(--fire); }
.nav-drawer-cta {
  margin-top: 8px; text-align: center; background: var(--ink) !important; color: var(--white) !important;
  padding: 14px 20px !important; border: none !important;
}
.nav-drawer-cta.nav-cta-fire { background: var(--fire) !important; }
body.nav-open { overflow: hidden; }

header { padding: 160px 0 0; border-bottom: 1px solid var(--rule); position: relative; overflow: hidden; }
.hero-grid-bg {
  position: absolute; inset: 0; z-index: 0;
  background-image: linear-gradient(var(--rule-2) 1px, transparent 1px), linear-gradient(90deg, var(--rule-2) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 75%, transparent 100%);
}
.hero-inner { position: relative; z-index: 1; }
.hero-pain { max-width: 700px; opacity: 0; animation: fadeUp .8s var(--ease) .1s forwards; }
.hero-pain-list { list-style: none; display: flex; flex-direction: column; gap: 0; margin-bottom: 48px; }
.hero-pain-list li {
  font-family: var(--jakarta); font-size: clamp(17px, 2vw, 20px); font-weight: 500;
  color: var(--ink-2); padding: 16px 0; border-bottom: 1px solid var(--rule);
  display: flex; align-items: center; gap: 14px;
}
.hero-pain-list li:first-child { border-top: 1px solid var(--rule); }
.hero-pain-list li .check { width: 20px; height: 20px; border: 1.5px solid var(--rule); border-radius: var(--r); flex: none; }
.hero-h {
  font-family: var(--jakarta); font-weight: 800;
  font-size: clamp(52px, 7.5vw, 104px);
  line-height: .92; letter-spacing: -.04em;
  margin-bottom: 0; max-width: 13ch;
}
.hero-h .line { display: block; overflow: hidden; }
.hero-h .line span { display: block; opacity: 0; transform: translateY(100%); animation: slideUp .9s var(--ease) forwards; }
.hero-h .line:nth-child(1) span { animation-delay: .3s; }
.hero-h .line:nth-child(2) span { animation-delay: .4s; }
.hero-h .line:nth-child(3) span { animation-delay: .5s; }
.hero-h .blue { color: var(--accent); }
@keyframes slideUp { to { opacity:1; transform:none; } }
@keyframes fadeUp { from{opacity:0;transform:translateY(18px)} to{opacity:1;transform:none} }
.hero-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 72px; border-top: 1px solid var(--rule); }
.hero-col { padding: 40px 0; }
.hero-col:first-child { border-right: 1px solid var(--rule); padding-right: 56px; }
.hero-col:last-child { padding-left: 56px; display: flex; flex-direction: column; justify-content: space-between; gap: 32px; }
.hero-sub { font-size: 18px; line-height: 1.7; color: var(--ink-2); opacity: 0; animation: fadeUp .9s var(--ease) .7s forwards; }
.hero-sub strong { color: var(--ink); font-weight: 600; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; opacity: 0; animation: fadeUp .9s var(--ease) .8s forwards; }
.btn { font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 14px 24px; cursor: pointer; display: inline-flex; align-items: center; gap: 10px; transition: all .25s var(--ease); border-radius: var(--r); }
.btn svg { transition: transform .25s; }
.btn:hover svg { transform: translateX(4px); }
.btn-solid { background: var(--ink); color: var(--white); border: 1px solid var(--ink); }
.btn-solid:hover { background: var(--accent); border-color: var(--accent); }
.btn-outline { background: transparent; color: var(--ink); border: 1px solid var(--rule); }
.btn-outline:hover { border-color: var(--ink); }
.hero-proof { opacity: 0; animation: fadeUp .9s var(--ease) .75s forwards; }
.hero-proof-head { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 16px; }
.proof-pills { display: flex; flex-direction: column; gap: 10px; }
.proof-pill { display: flex; align-items: center; gap: 14px; padding: 14px 18px; border: 1px solid var(--rule); background: var(--white); border-radius: var(--r); }
.proof-pill .pnum { font-family: var(--jakarta); font-size: 22px; font-weight: 800; letter-spacing: -.02em; min-width: 48px; }
.proof-pill .pnum em { font-style: normal; color: var(--accent); font-size: 13px; }
.proof-pill .pd { font-size: 13px; color: var(--ink-2); line-height: 1.4; }

section { padding: 120px 0; position: relative; }
.sec-top { display: grid; grid-template-columns: 180px 1fr; gap: 60px; align-items: start; margin-bottom: 64px; }
.sec-num { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4); padding-top: 8px; }
.sec-title { font-family: var(--jakarta); font-weight: 800; font-size: clamp(30px, 4vw, 50px); line-height: 1.02; letter-spacing: -.03em; margin-bottom: 14px; }
.sec-sub { font-size: 17px; color: var(--ink-2); line-height: 1.65; max-width: 52ch; }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.d1 { transition-delay: .1s; } .d2 { transition-delay: .2s; } .d3 { transition-delay: .3s; }

#about { border-top: 1px solid var(--rule); }
.about-layout { display: grid; grid-template-columns: 1fr 340px; gap: 80px; align-items: start; }
.about-text p { font-size: 17px; line-height: 1.75; color: var(--ink-2); margin-bottom: 22px; }
.about-text p strong { color: var(--ink); font-weight: 600; }
.about-pull {
  border-left: 3px solid var(--accent); padding: 18px 0 18px 24px;
  font-family: var(--jakarta); font-size: 20px; font-weight: 700; letter-spacing: -.02em;
  color: var(--ink); line-height: 1.4; margin: 32px 0;
}
.about-sidebar { position: sticky; top: 96px; }
.about-profile {
  border: 1px solid var(--rule); overflow: hidden; border-radius: var(--r); margin-bottom: 20px;
  background: var(--white);
}
.about-photo { width: 100%; aspect-ratio: 1; object-fit: cover; object-position: center 15%; display: block; }
.about-profile-meta { padding: 20px 24px 22px; }
.about-profile-name {
  font-family: var(--jakarta); font-weight: 800; font-size: 20px; letter-spacing: -.02em; line-height: 1.15;
}
.about-profile-role { font-size: 13px; color: var(--ink-3); margin-top: 6px; line-height: 1.45; }
.about-profile-link {
  display: inline-flex; align-items: center; gap: 8px; margin-top: 14px;
  font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.about-profile-link svg { transition: transform .25s; }
.about-profile-link:hover svg { transform: translateX(4px); }
.cred-card { border: 1px solid var(--rule); overflow: hidden; border-radius: var(--r); margin-top: 48px; }
.cred-card-head { background: var(--off); padding: 16px 24px; border-bottom: 1px solid var(--rule); font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); }
.cred-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.cred-item {
  padding: 28px 24px; border-right: 1px solid var(--rule-2);
  display: flex; flex-direction: column; gap: 14px; align-items: flex-start;
}
.cred-item:last-child { border-right: none; }
.cred-n { font-family: var(--jakarta); font-size: 36px; font-weight: 800; letter-spacing: -.03em; line-height: 1; min-width: 0; }
.cred-n sub { font-size: 16px; color: var(--accent); vertical-align: baseline; font-weight: 800; }
.cred-d { font-size: 13px; color: var(--ink-3); line-height: 1.5; }

#proof { background: var(--off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.proof-primary { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); margin-bottom: 2px; }
.proof-secondary { display: grid; grid-template-columns: 1fr; gap: 2px; background: var(--rule); }
.proof-card { background: var(--white); padding: 36px 36px 32px; transition: background .25s; color: inherit; display: block; }
a.proof-card:hover { background: #F0F0FF; }
.proof-card:not(a):hover { background: #F0F0FF; }
.proof-card.primary { padding: 44px 44px 40px; }
.proof-card .pc-kicker { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.proof-card .pc-name { font-family: var(--jakarta); font-weight: 800; font-size: 22px; letter-spacing: -.02em; margin-bottom: 8px; }
.proof-card.primary .pc-name { font-size: 26px; }
.proof-card .pc-desc { font-size: 14px; color: var(--ink-3); line-height: 1.55; }
.proof-card .pc-tag { display: inline-block; margin-top: 16px; font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 4px 10px; border: 1px solid var(--rule); color: var(--ink-3); border-radius: var(--r); }
.proof-card .pc-tag.live { color: var(--accent); border-color: var(--accent); background: var(--accent-2); }

#work { border-top: 1px solid var(--rule); }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); }
.work-grid.ladder { grid-template-columns: repeat(4, 1fr); }
.work-card { background: var(--white); padding: 52px 48px; position: relative; overflow: hidden; transition: background .3s; }
a.work-card { color: inherit; text-decoration: none; cursor: pointer; }
.work-card.compact { padding: 36px 32px; display: flex; flex-direction: column; }
.work-card.compact .wc-kicker { margin-bottom: 16px; }
.work-card.compact .wc-name { font-size: 20px; margin-bottom: 6px; }
.work-card.compact .wc-dur { margin-bottom: 16px; }
.work-card.compact .wc-desc { font-size: 14px; flex: 1; margin-bottom: 0; max-width: none; }
.work-card.compact .wc-foot { margin-top: auto; padding-top: 20px; }
.work-card.featured { border-top: 3px solid var(--accent); }
.work-card.featured::after { display: none; }
.work-card.muted { background: var(--off); }
.work-card::after { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.work-card:hover::after { transform: scaleX(1); }
.work-card.featured:hover::after { transform: none; }
.work-card:hover { background: var(--off); }
.work-card.muted:hover { background: var(--off); }
.wc-kicker { margin-bottom: 22px; }
.wc-name { font-family: var(--jakarta); font-weight: 800; font-size: 26px; letter-spacing: -.025em; line-height: 1.1; margin-bottom: 8px; }
.wc-dur { font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 28px; }
.wc-desc { font-size: 15px; color: var(--ink-2); line-height: 1.65; margin-bottom: 28px; max-width: 40ch; }
.wc-list { list-style: none; margin-bottom: 40px; }
.wc-list li { font-size: 14px; color: var(--ink-2); padding: 11px 0; border-bottom: 1px solid var(--rule-2); display: flex; gap: 13px; }
.wc-list li:last-child { border-bottom: none; }
.wc-list li::before { content: '—'; color: var(--accent); font-family: var(--jakarta); font-weight: 700; flex: none; }
.wc-foot { border-top: 1px solid var(--rule); padding-top: 28px; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.wc-price .pl { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-3); margin-bottom: 6px; }
.wc-price .pv { font-family: var(--jakarta); font-weight: 800; font-size: 38px; letter-spacing: -.03em; line-height: 1; }
.wc-price .pv.pv-sm { font-size: 28px; }
.wc-apply { font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 12px 22px; border: 1px solid var(--ink); display: inline-flex; align-items: center; gap: 9px; transition: all .25s; color: var(--ink); border-radius: var(--r); }
.wc-apply:hover,
a.work-card:hover .wc-apply { background: var(--ink); color: var(--white); }
.wc-apply svg { transition: transform .25s; }
.wc-apply:hover svg,
a.work-card:hover .wc-apply svg { transform: translateX(4px); }
.work-note {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--ink-3); margin-top: 24px;
  font-family: var(--jakarta); font-weight: 500; letter-spacing: .02em;
}
.work-note-link {
  font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
  display: inline-flex; align-items: center; gap: 8px; flex: none;
}
.work-note-link svg { transition: transform .25s; }
.work-note-link:hover svg { transform: translateX(4px); }
.apply-side-link {
  margin-top: 24px; display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--accent);
}
.apply-side-link svg { transition: transform .25s; }
.apply-side-link:hover svg { transform: translateX(4px); }
.tier-body { flex: 1; }
.tier-opt .tm { font-size: 12px; color: var(--ink-3); margin-top: 3px; }

#process { background: var(--off); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); }
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--rule); }
.process-col { background: var(--white); }
.process-col-head { padding: 22px 36px; border-bottom: 1px solid var(--rule); font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); }
.process-col-head.blue { color: var(--accent); }
.proc-item { display: flex; gap: 20px; padding: 20px 36px; border-bottom: 1px solid var(--rule-2); transition: background .2s; }
.proc-item:last-child { border-bottom: none; }
.proc-item:hover { background: var(--off); }
.proc-n { font-family: var(--jakarta); font-size: 11px; font-weight: 700; color: var(--ink-4); min-width: 28px; padding-top: 2px; }
.proc-text { font-size: 15px; color: var(--ink-2); line-height: 1.55; }
.process-col.keep .proc-n { color: var(--accent); }

#apply { border-top: 1px solid var(--rule); }
.apply-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.apply-side .sec-title { margin-bottom: 20px; }
.apply-side p { font-size: 15px; color: var(--ink-2); line-height: 1.7; margin-bottom: 14px; max-width: 38ch; }
.apply-note { margin-top: 28px; padding: 18px 20px; background: var(--off); border-left: 3px solid var(--accent); font-size: 13px; color: var(--ink-2); line-height: 1.6; }
.apply-steps { margin-top: 36px; display: flex; flex-direction: column; gap: 0; }
.apply-step { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--rule-2); align-items: flex-start; }
.apply-step:last-child { border-bottom: none; }
.apply-step .sn { font-family: var(--jakarta); font-size: 11px; font-weight: 700; color: var(--accent); min-width: 24px; padding-top: 2px; }
.apply-step .st { font-size: 14px; color: var(--ink-2); line-height: 1.5; }
.apply-step .st strong { color: var(--ink); font-weight: 600; display: block; margin-bottom: 2px; }

form { display: flex; flex-direction: column; gap: 22px; }
.fsec { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--ink-4); padding-top: 8px; border-top: 1px solid var(--rule); }
.fsec:first-child { border-top: none; padding-top: 0; }
.tier-list { display: flex; flex-direction: column; gap: 8px; }
.tier-opt { border: 1px solid var(--rule); padding: 16px 20px; display: flex; align-items: center; gap: 16px; cursor: pointer; transition: all .2s; border-radius: var(--r); }
.tier-opt:hover { border-color: var(--ink-3); }
.tier-opt.sel { border-color: var(--accent); background: var(--accent-2); }
.tier-opt .radio { width: 16px; height: 16px; border-radius: var(--r); border: 1.5px solid var(--ink-4); flex: none; position: relative; transition: all .2s; }
.tier-opt.sel .radio { border-color: var(--accent); }
.tier-opt.sel .radio::after { content: ''; position: absolute; inset: 3px; border-radius: var(--r); background: var(--accent); }
.tier-opt .tn { font-family: var(--jakarta); font-size: 13px; font-weight: 700; color: var(--ink); flex: 1; }
.tier-opt .tm { font-size: 12px; color: var(--ink-3); margin-top: 2px; }
.tier-opt .tp { font-family: var(--jakarta); font-size: 18px; font-weight: 800; color: var(--ink); }
.row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.field input, .field select, .field textarea { border: 1px solid var(--rule); padding: 12px 14px; font-family: var(--body); font-size: 15px; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; width: 100%; border-radius: var(--r); }
.field textarea { resize: vertical; min-height: 80px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(26,26,255,.07); }
.field input::placeholder, .field textarea::placeholder { color: var(--ink-4); }
.field select { appearance: none; cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.4'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; }
.ack { display: flex; gap: 13px; align-items: flex-start; font-size: 13px; color: var(--ink-2); cursor: pointer; line-height: 1.55; }
.ack .box { width: 16px; height: 16px; border: 1.5px solid var(--ink-4); flex: none; margin-top: 1px; position: relative; transition: all .2s; border-radius: var(--r); }
.ack.on .box { background: var(--accent); border-color: var(--accent); }
.ack.on .box::after { content: ''; position: absolute; left:3px; top:0px; width:5px; height:9px; border:solid white; border-width:0 2px 2px 0; transform:rotate(45deg); }
.form-msg { font-family: var(--jakarta); font-size: 12px; font-weight: 600; letter-spacing: .04em; padding: 16px 18px; border-left: 3px solid var(--accent); background: var(--accent-2); color: var(--accent); display: none; border-radius: var(--r); }
.form-msg.ok { display: block; }
.form-error-banner { font-family: var(--jakarta); font-size: 12px; font-weight: 600; padding: 16px 18px; border-left: 3px solid #c44; background: #fff0f0; color: #a33; margin-bottom: 8px; border-radius: var(--r); }
.submit-btn { background: var(--ink); color: var(--white); border: none; font-family: var(--jakarta); font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 17px 28px; cursor: pointer; transition: all .25s var(--ease); display: flex; align-items: center; justify-content: center; gap: 10px; border-radius: var(--r); }
.submit-btn svg { transition: transform .25s; }
.submit-btn:hover { background: var(--accent); }
.submit-btn:hover svg { transform: translateX(4px); }
.submit-btn:disabled { opacity: .4; cursor: not-allowed; }

footer { border-top: 1px solid var(--rule); padding: 60px 0 40px; }
.foot-grid { display: grid; grid-template-columns: 1.4fr repeat(4, 1fr); gap: 40px; margin-bottom: 48px; }
.foot-grid-no-team { grid-template-columns: 1.4fr repeat(3, 1fr); }
.foot-logo { font-family: var(--jakarta); font-weight: 800; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.foot-logo .dot { width: 6px; height: 6px; background: var(--accent); border-radius: var(--r); }
.foot-tagline { font-size: 13px; color: var(--ink-3); line-height: 1.6; max-width: 24ch; }
.foot-col h5 { font-family: var(--jakarta); font-size: 10px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-4); margin-bottom: 18px; }
.foot-col a { display: block; font-size: 13px; color: var(--ink-3); padding: 5px 0; transition: color .2s; }
.foot-col a.foot-fire { color: var(--fire); }
.foot-col a:hover { color: var(--accent); }
.foot-col a.foot-fire:hover { color: #FF6B33; }
.label-fire { color: var(--fire); }

.ignition-promo {
  margin-top: 48px; padding: 36px 40px; border: 1px solid var(--rule);
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  background: linear-gradient(135deg, var(--fire-2) 0%, var(--white) 60%);
}
.ignition-promo-title {
  font-family: var(--jakarta); font-size: clamp(22px, 3vw, 28px); font-weight: 800;
  letter-spacing: -.03em; line-height: 1.1; margin: 12px 0 10px;
}
.ignition-promo-desc { font-size: 14px; color: var(--ink-2); line-height: 1.65; max-width: 52ch; }
.ignition-promo-cta {
  font-family: var(--jakarta); font-size: 11px; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; color: var(--fire); display: inline-flex; align-items: center; gap: 8px;
  white-space: nowrap; transition: gap .25s;
}
.ignition-promo-cta:hover { gap: 12px; }
.ignition-promo-cta svg { transition: transform .25s; }
.ignition-promo-cta:hover svg { transform: translateX(4px); }

.foot-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--rule); padding-top: 24px; font-family: var(--jakarta); font-size: 10px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-4); flex-wrap: wrap; gap: 12px; }

@media (max-width: 1100px) {
  .work-grid.ladder { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 960px) {
  .nav-links { display: none; } .nav-toggle { display: flex; }
  .hero-bottom, .about-layout, .work-grid, .work-grid.ladder, .process-grid, .apply-layout, .proof-primary, .proof-secondary { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr 1fr; }
  .cred-item { border-right: 1px solid var(--rule-2); border-bottom: 1px solid var(--rule-2); }
  .cred-item:nth-child(2n) { border-right: none; }
  .cred-item:nth-last-child(-n+2) { border-bottom: none; }
  .hero-col:first-child { border-right: none; border-bottom: 1px solid var(--rule); padding-right: 0; }
  .hero-col:last-child { padding-left: 0; }
  .about-sidebar { position: static; }
  .sec-top { grid-template-columns: 1fr; gap: 14px; }
  section { padding: 80px 0; } header { padding: 120px 0 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  .ignition-promo { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 540px) {
  .wrap { padding: 0 24px; }
  .row2 { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .cred-item { border-right: none; border-bottom: 1px solid var(--rule-2); }
  .cred-item:last-child { border-bottom: none; }
}
