/* Self-hosted fonts. SIL Open Font License 1.1 — see assets/fonts/LICENSE. */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/Inter.3100e775e8.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Inter Tight';
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url('../fonts/InterTight.77fefe8ca1.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'JetBrains Mono';
  font-style: normal;
  font-weight: 400 500;
  font-display: swap;
  src: url('../fonts/JetBrainsMono.83c005d49d.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ==========================================================================
   WeVibeC0de — site stylesheet
   Translated 1:1 from the DevCanvas design system (WeCraftCode.dc.html).
   Token values, type scale, radii and motion are taken verbatim from the
   design; nothing here is invented.
   ========================================================================== */

*,
*::before,
*::after { box-sizing: border-box; }

:root {
  /* One container width for the whole site. The design shipped a wider footer
     (1160 content / 1320 footer), which read as the footer sticking out past
     everything above it. Owner's call, 2026-07-27: align on the wider value.
     --maxw-footer derives from --maxw so the two cannot drift apart again. */
  --maxw: 1320px;
  --maxw-footer: var(--maxw);
  --gut: clamp(18px, 4vw, 32px);
  --sans: 'Inter', system-ui, -apple-system, sans-serif;
  --display: 'Inter Tight', system-ui, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
}

[data-theme="dark"] {
  --bg: #0A0A0B;
  --surface: #141416;
  --border: #242428;
  --text: #FAFAFA;
  --muted: #8A8A92;
  --accent: #CDFF3E;
  --accent-ink: #0A0A0B;
  --amber: #FF9F45;
  --glass: rgba(10, 10, 11, .62);
  --danger: #FF6B6B;
}

[data-theme="light"] {
  --bg: #FBFBF9;
  --surface: #FFFFFF;
  --border: #E7E7E1;
  --text: #0A0A0B;
  --muted: #6A6A72;
  --accent: #CDFF3E;
  --accent-ink: #0A0A0B;
  --amber: #E8892B;
  --glass: rgba(251, 251, 249, .7);
  --danger: #D64545;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  scroll-padding-top: 80px;
}

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  transition: background .5s ease, color .5s ease;
  overflow-x: clip;
}

a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--text); }
input, textarea, button { font-family: inherit; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus { outline: none; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 6px; }
img, svg { max-width: 100%; }

/* --- motion ------------------------------------------------------------- */
@keyframes pulse   { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.82); } }
@keyframes slidebar{ 0% { transform: translateX(-100%); } 100% { transform: translateX(320%); } }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
@keyframes orbit   { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
}

/* Scroll reveal. Hidden ONLY once JS has confirmed it can reveal them again
   (html.js-anim), so a JS failure or a blocked script never leaves a blank
   section behind. */
html.js-anim [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .65s cubic-bezier(.2, .7, .2, 1),
              transform .65s cubic-bezier(.2, .7, .2, 1);
}
html.js-anim [data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html.js-anim [data-reveal] { opacity: 1; transform: none; }
}

/* --- primitives --------------------------------------------------------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gut); }

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 99;
  background: var(--accent); color: var(--accent-ink);
  padding: 12px 18px; border-radius: 0 0 10px 0; font-weight: 600;
}
.skip:focus { left: 0; color: var(--accent-ink); }

.eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .22em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 20px;
}
.eyebrow b { color: var(--accent); font-weight: 400; }
.eyebrow--dot { display: flex; align-items: center; gap: 10px; letter-spacing: .24em; margin-bottom: 26px; }

.dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 8px var(--accent); flex: 0 0 auto;
}
.dot--live { width: 9px; height: 9px; box-shadow: 0 0 10px var(--accent); animation: pulse 2s ease-in-out infinite; }
.dot--amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); width: 7px; height: 7px; }

h1, h2, h3 { font-family: var(--display); }

.h-hero {
  font-weight: 700; letter-spacing: -.045em; line-height: .98;
  font-size: clamp(42px, 8.4vw, 108px); margin: 0 0 28px;
}
.h-page {
  font-weight: 650; letter-spacing: -.035em; line-height: 1.02;
  font-size: clamp(36px, 6vw, 72px); margin: 0 0 24px;
}
.h-section {
  font-weight: 700; letter-spacing: -.035em; line-height: 1.05;
  font-size: clamp(28px, 4.4vw, 52px); margin: 0 0 40px;
}
.h-section--light {
  font-weight: 600; letter-spacing: -.03em; line-height: 1.08;
  font-size: clamp(26px, 4vw, 44px); margin: 0 0 48px;
}
.lede {
  color: var(--muted); font-size: clamp(16px, 2vw, 20px);
  line-height: 1.55; max-width: 560px; margin: 0;
}
.lede--hero { font-size: clamp(17px, 2.1vw, 21px); max-width: 620px; margin: 0 0 38px; }
.measure { max-width: 640px; }

section { position: relative; }
.band { border-top: 1px solid var(--border); background: var(--surface); }
.band--edged { border-bottom: 1px solid var(--border); }

.pad     { padding-block: clamp(70px, 10vh, 120px); }
.pad-sm  { padding-block: clamp(50px, 8vh, 90px); }
.pad-top { padding-top: clamp(56px, 9vh, 96px); }

/* --- buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--display); font-weight: 600; font-size: 16px;
  border-radius: 13px; padding: 15px 26px; cursor: pointer;
  border: 1px solid transparent; transition: box-shadow .25s, transform .15s, border-color .25s;
}
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { box-shadow: 0 0 34px rgba(205, 255, 62, .5); transform: translateY(-2px); color: var(--accent-ink); }
.btn--ghost { background: transparent; color: var(--text); border-color: var(--border); }
.btn--ghost:hover { border-color: var(--text); transform: translateY(-2px); color: var(--text); }
.btn--sm { font-size: 14.5px; padding: 13px 20px; border-radius: 12px; }
.btn--sm.btn--ghost:hover { border-color: var(--accent); transform: none; }

/* --- header ------------------------------------------------------------- */
.hdr {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  background: var(--glass); border-bottom: 1px solid var(--border);
}
.hdr__nav {
  max-width: var(--maxw); margin: 0 auto; padding: 13px var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
}
.brand {
  display: flex; align-items: center; gap: 10px; color: var(--text);
  font-family: var(--display); font-weight: 650; font-size: 17px; letter-spacing: -.02em;
}
.brand:hover { color: var(--text); }
.brand__dot {
  width: 9px; height: 9px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 12px var(--accent); animation: pulse 2.6s ease-in-out infinite;
}
.hdr__right { display: flex; align-items: center; gap: clamp(2px, 1.4vw, 10px); }
.hdr__links { display: flex; align-items: center; gap: clamp(2px, 1.4vw, 10px); }
.navlink {
  position: relative; color: var(--muted); font-size: 14px; font-weight: 500;
  padding: 8px 12px; border-radius: 9px; transition: color .2s;
}
.navlink:hover { color: var(--text); }
.navlink[aria-current] { color: var(--text); }
.navlink[aria-current]::after {
  content: ""; position: absolute; left: 12px; right: 12px; bottom: 1px;
  height: 2px; border-radius: 2px; background: var(--accent);
}
.iconbtn {
  width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto;
  background: var(--surface); border: 1px solid var(--border); border-radius: 10px;
  cursor: pointer; color: var(--text); transition: border-color .2s;
}
.iconbtn:hover { border-color: var(--accent); }
.themedot {
  width: 15px; height: 15px; border-radius: 50%;
  background: transparent; border: 2px solid var(--text);
  box-shadow: inset 3px -2px 0 var(--text);
}
[data-theme="light"] .themedot { background: var(--text); box-shadow: none; }

.burger { display: none; width: 44px; height: 44px; }
.burger span { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.burger i {
  display: block; width: 17px; height: 1.6px; background: currentColor;
  border-radius: 2px; transition: transform .25s, opacity .2s;
}
.drawer { display: none; border-top: 1px solid var(--border); padding: 10px var(--gut) 20px; }
.drawer a, .drawer button {
  display: block; width: 100%; background: none; border: none; cursor: pointer;
  color: var(--text); font-family: var(--display); font-weight: 600; font-size: 19px;
  text-align: left; padding: 14px 4px; border-bottom: 1px solid var(--border);
}
.drawer .btn { border-bottom: none; margin-top: 14px; justify-content: center; }

@media (max-width: 879px) {
  .hdr__links, .hdr .btn { display: none; }
  .burger { display: grid; place-items: center; }
  .nav-open .drawer { display: block; }
  .nav-open .burger i:first-child { transform: translateY(5.6px) rotate(45deg); }
  .nav-open .burger i:nth-child(2) { opacity: 0; }
  .nav-open .burger i:last-child { transform: translateY(-5.6px) rotate(-45deg); }
}

/* --- hero --------------------------------------------------------------- */
.hero {
  max-width: var(--maxw); margin: 0 auto;
  padding: clamp(60px, 10vh, 110px) var(--gut) 40px;
  min-height: 82vh; display: flex; flex-direction: column; justify-content: center;
}
.hero__glow {
  position: absolute; top: 14%; right: -6%;
  width: min(52vw, 560px); height: min(52vw, 560px);
  background: radial-gradient(circle, rgba(205, 255, 62, .14), transparent 62%);
  filter: blur(30px); pointer-events: none; z-index: 0;
}
.hero__inner { position: relative; z-index: 1; max-width: 960px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* status strip */
.status {
  position: relative; z-index: 1; margin-top: clamp(40px, 7vh, 72px);
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface);
  padding: 16px clamp(16px, 3vw, 26px); display: flex; align-items: center;
  gap: clamp(16px, 4vw, 42px); flex-wrap: wrap; overflow: hidden;
}
.status__bar {
  position: absolute; top: 0; left: 0; height: 2px; width: 22%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: slidebar 3.6s linear infinite; opacity: .8;
}
.status__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: 13px; color: var(--muted);
}
.status__item--live { color: var(--text); }
.status__item b { color: var(--accent); font-weight: 400; }
.status__item--right { margin-left: auto; color: var(--amber); }

/* --- marquee ------------------------------------------------------------ */
.marquee {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  overflow: hidden; padding: 26px 0;
}
.marquee__track {
  display: flex; align-items: center; gap: clamp(40px, 6vw, 84px);
  width: max-content; animation: marquee 34s linear infinite;
  padding-left: clamp(40px, 6vw, 84px);
}
.marquee__item {
  font-family: var(--display); font-weight: 700; letter-spacing: -.02em;
  font-size: clamp(18px, 2.4vw, 26px); color: var(--muted);
  white-space: nowrap; opacity: .7;
}

/* --- service list (numbered rows) -------------------------------------- */
.rows { border-top: 1px solid var(--border); }
.row {
  display: grid; grid-template-columns: clamp(52px, 7vw, 88px) 1fr auto;
  align-items: center; gap: clamp(16px, 3vw, 40px);
  padding: clamp(20px, 3vw, 30px) 6px; border-bottom: 1px solid var(--border);
  color: var(--text); transition: background .3s;
}
.row:hover { background: var(--surface); color: var(--text); }
.row__no { font-family: var(--mono); font-size: clamp(15px, 2vw, 18px); color: var(--accent); }
.row__body { display: flex; flex-direction: column; gap: 6px; }
.row__body h3 {
  font-weight: 700; letter-spacing: -.025em; line-height: 1.05;
  font-size: clamp(24px, 3.6vw, 42px); margin: 0;
}
.row__body p { margin: 0; color: var(--muted); font-size: clamp(14px, 1.7vw, 16px); line-height: 1.55; max-width: 520px; }
.row__arrow {
  width: clamp(42px, 5vw, 56px); height: clamp(42px, 5vw, 56px);
  border: 1px solid var(--border); border-radius: 50%; display: grid; place-items: center;
  color: var(--text); flex: 0 0 auto; transition: border-color .3s, color .3s;
}
.row:hover .row__arrow { border-color: var(--accent); color: var(--accent); }

/* --- stats -------------------------------------------------------------- */
.stats {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(48px, 7vh, 80px) var(--gut);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(24px, 4vw, 44px);
}
.stat__n {
  font-family: var(--display); font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(38px, 6vw, 64px); line-height: 1; color: var(--text);
}
.stat__l {
  font-family: var(--mono); font-size: 12px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: 12px;
}

/* --- 4-up bordered steps ----------------------------------------------- */
.quad {
  border-top: 1px solid var(--border);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.quad > div { padding: 32px 26px 0; border-right: 1px solid var(--border); }
.quad > div:first-child { padding-left: 0; }
.quad > div:last-child { border-right: none; padding-right: 0; }
.quad__no { font-family: var(--mono); font-size: 34px; color: var(--accent); margin-bottom: 16px; }
.quad h3 { font-weight: 600; font-size: 20px; margin: 0 0 10px; }
.quad p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

/* --- cards / grids ------------------------------------------------------ */
.grid { display: grid; gap: 16px; }
.grid--3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid--4 { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.grid--work { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 18px; }
.split {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 5vw, 64px); align-items: start;
}
.split--mid { align-items: center; gap: clamp(28px, 5vw, 60px); }

.card {
  border: 1px solid var(--border); border-radius: 16px; background: var(--surface);
  padding: 24px; display: flex; flex-direction: column; gap: 14px;
  transition: border-color .3s, transform .3s;
}
.card:hover { border-color: var(--accent); transform: translateY(-3px); }
.card__ico { color: var(--accent); }
.card__t { font-family: var(--display); font-weight: 600; font-size: 16px; }

.projcard {
  display: flex; flex-direction: column; background: var(--surface);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
  color: var(--text); transition: border-color .3s, transform .3s;
}
.projcard:hover { border-color: var(--accent); transform: translateY(-4px); color: var(--text); }
.projcard__shot { aspect-ratio: 4 / 3; width: 100%; border-bottom: 1px solid var(--border); position: relative; }
.grid--work .projcard { border-radius: 20px; }
.grid--work .projcard__shot { aspect-ratio: 16 / 10; }
.projcard__body { padding: 20px 22px; }
.grid--work .projcard__body { padding: 24px 26px; }
.projcard__cat {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 10px;
}
.projcard__name {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--display); font-weight: 700; font-size: 20px; letter-spacing: -.02em;
}
.grid--work .projcard__name { font-size: clamp(22px, 2.6vw, 28px); letter-spacing: -.025em; margin-bottom: 12px; }
.projcard__name span { color: var(--accent); font-family: var(--mono); }
.projcard__blurb { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.projcard__year {
  position: absolute; top: 14px; left: 14px; font-family: var(--mono); font-size: 11px;
  color: var(--muted); background: var(--glass); backdrop-filter: blur(8px);
  border: 1px solid var(--border); border-radius: 7px; padding: 5px 9px; pointer-events: none;
}

/* brand-consistent placeholder artwork instead of missing photography */
.shot { width: 100%; height: 100%; display: block; background: var(--bg); }

/* --- pricing ------------------------------------------------------------ */
.price {
  position: relative; border: 1px solid var(--border); border-radius: 20px;
  background: var(--bg); padding: clamp(26px, 3vw, 34px);
  display: flex; flex-direction: column; gap: 22px;
  transition: border-color .3s, transform .3s;
}
.price:hover { border-color: var(--accent); transform: translateY(-4px); }
.price--featured { border-color: var(--accent); }
.price__flag {
  position: absolute; top: 20px; right: 20px; font-family: var(--mono); font-size: 10px;
  letter-spacing: .14em; text-transform: uppercase; color: var(--accent-ink);
  background: var(--accent); border-radius: 999px; padding: 5px 10px;
}
.price__name {
  font-family: var(--mono); font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 16px;
}
.price__fig { display: flex; align-items: baseline; gap: 8px; }
.price__fig b {
  font-family: var(--display); font-weight: 700; letter-spacing: -.04em;
  font-size: clamp(38px, 5vw, 54px); line-height: 1;
}
.price__fig span { color: var(--muted); font-size: 13px; }
.price__tag { margin: 12px 0 0; color: var(--muted); font-size: 14.5px; line-height: 1.55; }
.price__list {
  border-top: 1px solid var(--border); padding-top: 20px; margin: 0;
  list-style: none; display: flex; flex-direction: column; gap: 12px;
}
.price__list li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.45; }
.price__list svg { color: var(--accent); flex: 0 0 auto; margin-top: 1px; }
.price .btn { margin-top: auto; border-radius: 12px; padding: 14px 20px; font-size: 15px; }

/* --- 2am band ----------------------------------------------------------- */
.alert { overflow: hidden; }
.alert__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 120%, rgba(255, 159, 69, .2), transparent 55%);
}
.alert__inner {
  position: relative; max-width: 960px; margin: 0 auto;
  padding: clamp(80px, 14vh, 140px) var(--gut); text-align: center;
}
.alert__eyebrow {
  font-family: var(--mono); font-size: 12px; letter-spacing: .24em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 26px; display: inline-flex; align-items: center; gap: 10px;
}
.alert__eyebrow .dot--amber { animation: pulse 1.8s ease-in-out infinite; box-shadow: 0 0 12px var(--amber); }
.alert h2 {
  font-weight: 650; letter-spacing: -.03em; line-height: 1.06;
  font-size: clamp(30px, 5.5vw, 64px); margin: 0 auto 24px; max-width: 820px;
}
.alert h2 em { font-style: normal; color: var(--amber); }
.alert p { color: var(--muted); font-size: clamp(16px, 2vw, 19px); line-height: 1.6; max-width: 560px; margin: 0 auto; }

/* --- quote -------------------------------------------------------------- */
.quote { margin: 0; max-width: 900px; }
.quote p {
  font-family: var(--display); font-weight: 600; letter-spacing: -.03em;
  line-height: 1.15; font-size: clamp(26px, 4.4vw, 52px); margin: 0 0 28px;
}
.quote footer { display: flex; align-items: center; gap: 14px; }
.quote__av {
  width: 44px; height: 44px; border-radius: 50%; background: var(--surface);
  border: 1px solid var(--border); display: grid; place-items: center;
  font-family: var(--display); font-weight: 700; color: var(--accent);
}
.quote__who b { display: block; font-weight: 600; font-size: 15px; }
.quote__who span { display: block; color: var(--muted); font-size: 14px; }

/* --- accordion ---------------------------------------------------------- */
.acc { border-top: 1px solid var(--border); }
.acc__item { border-bottom: 1px solid var(--border); }
.acc__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  gap: 18px; background: none; border: none; cursor: pointer;
  padding: clamp(20px, 3vw, 26px) 6px; text-align: left; color: var(--text);
  font-family: var(--display); font-weight: 600; letter-spacing: -.02em;
  font-size: clamp(17px, 2.4vw, 23px); line-height: 1.2;
}
.acc__sign {
  flex: 0 0 auto; width: 30px; height: 30px; border: 1px solid var(--border);
  border-radius: 9px; display: grid; place-items: center; color: var(--accent);
  transition: transform .3s, border-color .3s;
}
.acc__q:hover .acc__sign { border-color: var(--accent); }
.acc__q[aria-expanded="true"] .acc__sign { transform: rotate(45deg); }
.acc__a {
  padding: 0 6px clamp(22px, 3vw, 28px); color: var(--muted);
  font-size: clamp(14.5px, 1.8vw, 16.5px); line-height: 1.7; max-width: 760px;
}
.acc__a[hidden] { display: none; }

/* --- ticket form -------------------------------------------------------- */
.ticket {
  border: 1px solid var(--border); border-radius: 20px; background: var(--surface);
  overflow: hidden; display: flex; flex-direction: column;
}
.ticket__bar {
  display: flex; align-items: center; gap: 10px; padding: 15px 20px;
  border-bottom: 1px solid var(--border);
  font-family: var(--mono); font-size: 12px; color: var(--muted); letter-spacing: .06em;
}
.ticket__lights { display: flex; gap: 6px; }
.ticket__lights i { width: 9px; height: 9px; border-radius: 50%; display: block; }
.ticket__lights i:nth-child(1) { background: var(--amber); }
.ticket__lights i:nth-child(2) { background: var(--accent); }
.ticket__lights i:nth-child(3) { background: var(--border); }
.ticket__state { margin-left: auto; font-size: 11px; color: var(--accent); }
.ticket__body { padding: clamp(20px, 3vw, 26px); display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field > span {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field textarea {
  background: var(--bg); border: 1px solid var(--border); border-radius: 12px;
  padding: 13px 15px; color: var(--text); font-size: 15px; outline: none;
  transition: border-color .2s;
}
.field textarea { resize: vertical; min-height: 104px; line-height: 1.55; }
.field input:focus, .field textarea:focus { border-color: var(--accent); }
.field__err { color: var(--danger); font-size: 12.5px; }
.field__err[hidden] { display: none; }
.ticket__note { margin: 0; color: var(--muted); font-size: 12.5px; line-height: 1.5; text-align: center; }
.ticket__note b { color: var(--text); font-weight: 400; }
.ticket__done {
  padding: 44px 26px; text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: 16px;
}
.ticket__done[hidden] { display: none; }
.ticket__ring {
  width: 52px; height: 52px; border-radius: 50%; border: 1px solid var(--accent);
  display: grid; place-items: center;
}
.ticket__ring i { width: 18px; height: 18px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 18px var(--accent); }
.ticket__done h3 { font-weight: 600; font-size: 22px; margin: 0; letter-spacing: -.02em; }
.ticket__done p { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0; max-width: 320px; }

/* --- contact rails ------------------------------------------------------ */
.rail { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }
.rail__item {
  display: flex; align-items: center; gap: 13px; border: 1px solid var(--border);
  border-radius: 14px; padding: 16px 18px; color: var(--text); transition: border-color .25s;
}
a.rail__item:hover { border-color: var(--accent); color: var(--text); }
.rail__ico {
  width: 36px; height: 36px; border-radius: 9px; background: var(--surface);
  border: 1px solid var(--border); display: grid; place-items: center; flex: 0 0 auto;
}
.rail__k {
  display: block; font-size: 11px; color: var(--muted);
  font-family: var(--mono); letter-spacing: .1em;
}
.rail__v { display: block; font-size: 15.5px; color: var(--text); }
.steplist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.steplist li { display: flex; gap: 12px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.steplist b { font-family: var(--mono); color: var(--accent); flex: 0 0 auto; font-weight: 400; }
.mailpill {
  display: inline-flex; align-items: center; gap: 12px; font-family: var(--mono);
  font-size: 15px; color: var(--text); border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; transition: border-color .25s;
}
.mailpill:hover { border-color: var(--accent); color: var(--text); }

/* --- services detail ---------------------------------------------------- */
.svc {
  border: 1px solid var(--border); border-radius: 20px; background: var(--surface);
  padding: clamp(26px, 4vw, 46px);
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(24px, 4vw, 48px);
}
.svc__head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.svc__ico {
  width: 48px; height: 48px; border: 1px solid var(--border); border-radius: 13px;
  display: grid; place-items: center; color: var(--accent); flex: 0 0 auto;
}
.svc__no { font-family: var(--mono); font-size: 13px; color: var(--accent); }
.svc h2 { font-weight: 700; letter-spacing: -.025em; font-size: clamp(24px, 3vw, 36px); margin: 0 0 16px; }
.svc__desc { color: var(--muted); font-size: 15.5px; line-height: 1.65; margin: 0 0 22px; }
.minieyebrow {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.minieyebrow--accent { color: var(--accent); }
.svc__who { color: var(--text); font-size: 14.5px; line-height: 1.6; margin: 0; }
.ticklist { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.ticklist li { display: flex; align-items: flex-start; gap: 11px; font-size: 14.5px; line-height: 1.5; }
.ticklist i { width: 6px; height: 6px; border-radius: 50%; background: var(--accent); margin-top: 7px; flex: 0 0 auto; }
.svc__tie { border-top: 1px solid var(--border); padding-top: 18px; }
.svc__tie p { color: var(--muted); font-size: 14px; line-height: 1.6; margin: 0; }

.artbox {
  position: relative; border: 1px solid var(--border); border-radius: 22px;
  overflow: hidden; background: var(--surface); aspect-ratio: 1 / 1;
  display: grid; place-items: center;
}
.artbox__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(circle at 50% 45%, rgba(205, 255, 62, .12), transparent 60%);
}
.artbox__cap {
  position: absolute; bottom: 16px; left: 18px; font-family: var(--mono);
  font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
}
.orbit-a { transform-origin: 160px 160px; animation: orbit 26s linear infinite; }
.orbit-b { transform-origin: 160px 160px; animation: orbit 18s linear infinite reverse; }

/* --- comparison table --------------------------------------------------- */
.cmp { border: 1px solid var(--border); border-radius: 20px; overflow: hidden; background: var(--surface); }
.cmp__hd, .cmp__row { display: grid; grid-template-columns: 1.2fr 1fr 1fr; }
.cmp__hd {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); border-bottom: 1px solid var(--border);
}
.cmp__hd > div { padding: 16px 20px; }
.cmp__hd > div + div { border-left: 1px solid var(--border); }
.cmp__hd > div:last-child { color: var(--accent); }
.cmp__row { border-top: 1px solid var(--border); font-size: 14.5px; line-height: 1.5; }
.cmp__row > div { padding: 18px 20px; }
.cmp__row > div + div { border-left: 1px solid var(--border); }
.cmp__row > div:first-child { color: var(--text); font-weight: 500; }
.cmp__row > div:nth-child(2) { color: var(--muted); }
@media (max-width: 640px) {
  .cmp__hd, .cmp__row { grid-template-columns: 1fr; }
  .cmp__hd > div + div, .cmp__row > div + div { border-left: none; border-top: 1px solid var(--border); }
  .cmp__hd > div:first-child { display: none; }
}

.chips { display: flex; flex-wrap: wrap; gap: 11px; }
.chip {
  border: 1px solid var(--border); border-radius: 999px; padding: 10px 18px;
  font-family: var(--mono); font-size: 13px; color: var(--text);
  transition: border-color .25s, color .25s;
}
.chip:hover { border-color: var(--accent); color: var(--accent); }
.chip--plain { font-family: var(--sans); font-size: 13.5px; padding: 8px 15px; }

/* --- process steps ------------------------------------------------------ */
.pstep {
  display: grid; grid-template-columns: minmax(0, 140px) 1px minmax(240px, 1fr);
  gap: clamp(18px, 4vw, 48px); padding: clamp(28px, 4vw, 44px) 0;
  border-top: 1px solid var(--border);
}
.pstep__no { font-family: var(--mono); font-size: clamp(40px, 6vw, 68px); color: var(--accent); line-height: 1; }
.pstep__when {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-top: 12px;
}
.pstep__rule { background: var(--border); }
.pstep h2 { font-weight: 600; letter-spacing: -.02em; font-size: clamp(24px, 3vw, 36px); margin: 0 0 14px; }
.pstep p { color: var(--muted); font-size: 16px; line-height: 1.65; margin: 0 0 24px; max-width: 620px; }
@media (max-width: 700px) {
  .pstep { grid-template-columns: 1fr; }
  .pstep__rule { display: none; }
}

.tick30 {
  width: 30px; height: 30px; border-radius: 8px; border: 1px solid var(--accent);
  color: var(--accent); display: grid; place-items: center; flex: 0 0 auto;
}
.card--flat { transition: none; }
.card--flat:hover { border-color: var(--border); transform: none; }
.card--flat .card__t { font-size: 18px; letter-spacing: -.01em; }
.card--flat p { margin: 0; color: var(--muted); font-size: 14.5px; line-height: 1.6; }

.tiles {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--border);
  border: 1px solid var(--border); border-radius: 18px; overflow: hidden;
}
.tiles > div { background: var(--surface); padding: 28px; }
.tiles b {
  display: block; font-family: var(--display); font-weight: 700;
  font-size: clamp(30px, 4vw, 44px); letter-spacing: -.03em;
}
.tiles b.amber { color: var(--amber); }
.tiles span {
  display: block; font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted); margin-top: 8px;
}

/* --- work detail -------------------------------------------------------- */
.detail__hero { aspect-ratio: 16 / 9; border: 1px solid var(--border); border-radius: 22px; overflow: hidden; background: var(--surface); }
.detail__what {
  font-family: var(--display); font-weight: 500; font-size: clamp(19px, 2.3vw, 26px);
  line-height: 1.45; letter-spacing: -.02em; margin: 0; color: var(--text);
}
.factbox {
  border: 1px solid var(--border); border-radius: 18px; background: var(--surface);
  padding: 26px; display: flex; flex-direction: column; gap: 22px;
}
.factbox__v { font-size: 15.5px; color: var(--text); }
.factbox__res { border-top: 1px solid var(--border); padding-top: 20px; }
.factbox__res b {
  font-family: var(--display); font-weight: 700; font-size: clamp(20px, 2.4vw, 26px);
  letter-spacing: -.02em; line-height: 1.2; display: block;
}
.backlink { font-family: var(--mono); font-size: 13px; color: var(--muted); display: inline-flex; align-items: center; gap: 8px; }
.backlink:hover { color: var(--accent); }
.nextproj { display: block; border-top: 1px solid var(--border); background: var(--surface); color: var(--text); }
.nextproj:hover { color: var(--text); }
.nextproj__in {
  max-width: var(--maxw); margin: 0 auto; padding: clamp(44px, 7vh, 80px) var(--gut);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.nextproj__name {
  font-family: var(--display); font-weight: 700; font-size: clamp(28px, 4.4vw, 52px);
  letter-spacing: -.035em; color: var(--text);
}
.nextproj__arrow { color: var(--accent); font-family: var(--mono); font-size: 28px; }

/* --- prefooter CTA ------------------------------------------------------ */
.cta {
  position: relative; overflow: hidden; border-radius: 28px;
  background: var(--accent); color: var(--accent-ink);
  padding: clamp(40px, 7vw, 88px) clamp(28px, 5vw, 72px);
  min-height: clamp(340px, 44vw, 460px);
  display: flex; flex-direction: column; justify-content: center;
}
.cta__rings {
  position: absolute; top: 50%; right: clamp(-40px, -3vw, -10px);
  transform: translateY(-50%);
  width: clamp(220px, 30vw, 420px); height: clamp(220px, 30vw, 420px); pointer-events: none;
}
.cta__rings i { position: absolute; border-radius: 50%; }
.cta__rings i:nth-child(1) { inset: 0; border: 1px solid rgba(10, 10, 11, .16); }
.cta__rings i:nth-child(2) { inset: 14%; border: 1px solid rgba(10, 10, 11, .2); }
.cta__rings i:nth-child(3) { inset: 28%; border: 1px solid rgba(10, 10, 11, .24); }
.cta__core {
  position: absolute; inset: 42%; border-radius: 50%;
  background: rgba(10, 10, 11, .9); display: grid; place-items: center;
}
.cta__in { position: relative; z-index: 1; max-width: 640px; }
.cta h2 {
  font-weight: 700; letter-spacing: -.045em; line-height: .95;
  font-size: clamp(40px, 7.5vw, 88px); margin: 0 0 22px;
}
.cta p { font-size: clamp(16px, 2.2vw, 22px); line-height: 1.4; margin: 0 0 38px; max-width: 420px; opacity: .85; }
.cta__btns { display: flex; gap: 14px; flex-wrap: wrap; }
.cta .btn { border-radius: 999px; padding: 16px 30px; }
.btn--ink { background: var(--accent-ink); color: var(--accent); }
.btn--ink:hover { transform: translateY(-2px); color: var(--accent); box-shadow: none; }
.btn--onaccent { background: transparent; color: var(--accent-ink); border-color: rgba(10, 10, 11, .35); }
.btn--onaccent:hover { border-color: var(--accent-ink); transform: translateY(-2px); color: var(--accent-ink); }

/* --- footer ------------------------------------------------------------- */
.ftr {
  background: var(--bg); border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border) 22%, var(--border) 78%, transparent) 1;
}
/* Horizontal padding must be var(--gut), the same as .wrap. Matching max-width
   alone still left the footer text 8px outside the content above it, because
   this rule capped its gutter at 40px against .wrap's 32px. */
.ftr__in { max-width: var(--maxw-footer); margin: 0 auto; padding: clamp(40px, 6vh, 72px) var(--gut) clamp(24px, 3vh, 36px); }
.ftr__mark {
  padding-bottom: clamp(20px, 2.6vw, 32px); margin-bottom: clamp(34px, 5vw, 58px);
  border-bottom: 1px solid transparent;
  border-image: linear-gradient(90deg, var(--border), var(--border) 55%, transparent) 1;
}
.ftr__mark a {
  display: block; color: var(--text); font-family: var(--display); font-weight: 700;
  letter-spacing: -.055em; line-height: 1; font-size: min(15.4vw, 196px);
  white-space: nowrap; transition: color .3s;
}
.ftr__mark a:hover { color: var(--accent); }
.ftr__cols { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(28px, 4vw, 48px); }
.ftr__h {
  font-family: var(--mono); font-size: 12px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--text); margin-bottom: 20px;
}
.ftr__col { display: flex; flex-direction: column; gap: 14px; }
.ftr__col .ftr__h { margin-bottom: 6px; }
.ftr__col a { color: var(--muted); font-size: 14.5px; }
.ftr__col a:hover { color: var(--accent); }
.sub { border-bottom: 1px dashed var(--border); padding-bottom: 10px; display: flex; align-items: center; gap: 10px; max-width: 340px; }
.sub input { flex: 1; background: none; border: none; outline: none; color: var(--text); font-size: 14px; font-family: var(--mono); }
.sub button { background: none; border: none; cursor: pointer; color: var(--text); display: grid; place-items: center; padding: 0; }
.sub button:hover { color: var(--accent); }
.sub__msg {
  font-family: var(--mono); font-size: 10px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin-top: 14px;
}
.social { display: flex; gap: 14px; margin-top: 22px; }
.social a { color: var(--muted); display: grid; place-items: center; }
.social a:hover { color: var(--accent); }
.ftr__base {
  max-width: var(--maxw-footer); margin: 0 auto; padding: 18px var(--gut);
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--border) 20%, var(--border) 80%, transparent) 1;
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 12px; color: var(--muted);
}
.ftr__base span:first-child { letter-spacing: .1em; text-transform: uppercase; }
.ftr__ok { display: flex; align-items: center; gap: 9px; }
.ftr__ok .dot { width: 8px; height: 8px; animation: pulse 2.4s ease-in-out infinite; }

.headrow { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; flex-wrap: wrap; margin-bottom: 40px; }
.headrow .h-section { margin-bottom: 0; max-width: 620px; }
.nowrap { white-space: nowrap; }

/* --- honeypot: off-screen but not display:none, so bots still fill it ---- */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* --- footer intro column ------------------------------------------------ */
.ftr__note { color: var(--muted); font-size: 14.5px; line-height: 1.6; margin: 0 0 18px; max-width: 34ch; }

/* --- prose pages (privacy / terms) -------------------------------------- */
.prose { max-width: 820px; }
.prose__meta {
  font-family: var(--mono); font-size: 11px; letter-spacing: .14em;
  text-transform: uppercase; color: var(--muted); margin: 0 0 clamp(34px, 5vh, 54px);
}
.prose h2 {
  font-weight: 600; letter-spacing: -.02em; font-size: clamp(20px, 2.6vw, 26px);
  margin: clamp(34px, 5vh, 48px) 0 14px; padding-top: clamp(22px, 3vh, 30px);
  border-top: 1px solid var(--border);
}
.prose h2:first-of-type { border-top: none; padding-top: 0; margin-top: 0; }
.prose p { color: var(--muted); font-size: 16px; line-height: 1.72; margin: 0 0 14px; max-width: 68ch; }
.prose a { color: var(--accent); }
.prose a:hover { color: var(--text); text-decoration: underline; }
.prose code {
  font-family: var(--mono); font-size: .88em; background: var(--surface);
  border: 1px solid var(--border); border-radius: 5px; padding: 2px 6px; color: var(--text);
}
