:root {
  --bg: #0a0e1a;
  --bg-2: #111827;
  --bg-3: #1a2235;
  --cream: #e8eaf0;
  --cream-dim: #94a3b8;
  --muted: #64748b;
  --line: #1e293b;
  --accent: #6366f1;
  --accent-2: #8b5cf6;
  --ok: #10b981;
  --err: #ef4444;
  --serif: "Inter", ui-sans-serif, system-ui, sans-serif;
  --sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --mono: "Inter", ui-sans-serif, system-ui, sans-serif;
  --wrap: min(1180px, calc(100% - 2.5rem));
  --header: 4.25rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --grad: linear-gradient(90deg, #6366f1, #22d3ee);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--cream);
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 50% 40% at 85% -10%, rgba(99, 102, 241, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 35% at 0% 100%, rgba(139, 92, 246, 0.18), transparent 50%),
    linear-gradient(rgba(30, 41, 59, 0.35) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 41, 59, 0.35) 1px, transparent 1px);
  background-size: auto, auto, 48px 48px, 48px 48px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; color: inherit; }
h1, h2, h3, p { margin: 0; }
ul, ol { margin: 0; padding: 0; }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0);
  border: 0;
}
.skip-link {
  position: absolute;
  left: 1rem; top: -4rem;
  background: var(--accent);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 100;
}
.skip-link:focus { top: 1rem; }

.grain { display: none; }

.wrap { width: var(--wrap); margin-inline: auto; position: relative; z-index: 1; }

.kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #a5b4fc;
  margin-bottom: 0.85rem;
}

h1, h2 {
  font-family: var(--sans);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h1 em, h2 em, .grad {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lede {
  max-width: 36rem;
  color: var(--cream-dim);
  font-size: 1.08rem;
  margin-top: 1.25rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(99, 102, 241, 0.28);
  transition: transform 0.35s var(--ease), filter 0.25s;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-1px); }
.btn-ghost {
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid var(--line);
  box-shadow: none;
  color: var(--cream);
}
.btn-ghost:hover { background: var(--bg-3); filter: none; }
.btn-sm { min-height: 2.4rem; padding: 0 1rem; font-size: 0.9rem; box-shadow: none; }

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1.5rem;
  font-weight: 500;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.15rem;
}
.text-link span { color: var(--accent); transition: transform 0.3s var(--ease); }
.text-link:hover span { transform: translateX(4px); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header);
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, background 0.3s;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.header-inner {
  height: var(--header);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  font-size: 1.02rem;
}
.brand img { border-radius: 8px; }
.nav-desktop {
  margin-left: auto;
  display: flex;
  gap: 1.6rem;
  font-size: 0.92rem;
  color: var(--cream-dim);
}
.nav-desktop a:hover, .nav-desktop a.is-active { color: var(--cream); }
.nav-desktop a.is-active { box-shadow: inset 0 -1px 0 var(--accent); }
.nav-toggle {
  display: none;
  margin-left: auto;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 0.65rem; right: 0.65rem;
  height: 1px;
  background: var(--cream);
  transition: transform 0.3s var(--ease);
}
.nav-toggle span:first-of-type { top: 1.05rem; }
.nav-toggle span:last-of-type { top: 1.45rem; }
.nav-toggle[aria-expanded="true"] span:first-of-type { transform: translateY(4px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-of-type { transform: translateY(-4px) rotate(-45deg); }
.nav-mobile {
  position: fixed;
  inset: var(--header) 0 0 0;
  background: var(--bg);
  z-index: 35;
  padding: 2rem 1.25rem;
}
.nav-mobile nav { display: flex; flex-direction: column; gap: 1.2rem; font-size: 1.55rem; font-weight: 700; }
.nav-mobile[hidden] { display: none; }

/* Hero */
.hero {
  padding: 4.5rem 0 5rem;
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: auto -10% -20% 40%;
  height: 28rem;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.32), transparent 62%);
  pointer-events: none;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.6rem;
}
.dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--accent);
}
.hero-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  margin-top: 2.5rem;
  max-width: 58rem;
}
.hero-bottom p {
  color: var(--cream-dim);
  font-size: 1.08rem;
  max-width: 36rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.7rem; }

.marquee {
  border-block: 1px solid var(--line);
  overflow: hidden;
  padding: 0.95rem 0;
}
.marquee-track {
  display: flex;
  gap: 2.4rem;
  width: max-content;
  animation: ticker 32s linear infinite;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}
.marquee-track span::after {
  content: "·";
  margin-left: 2.4rem;
  color: var(--accent);
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.section { padding: 5.5rem 0; position: relative; z-index: 1; }
.section-alt { background: var(--bg-2); }
.section-head { margin-bottom: 2.8rem; max-width: 40rem; }

.service-list { display: grid; }
.service-row {
  display: grid;
  grid-template-columns: 3.2rem 1fr 1.6fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.45rem 0;
  border-top: 1px solid var(--line);
  transition: padding 0.35s var(--ease);
}
.service-row:last-child { border-bottom: 1px solid var(--line); }
.service-row:hover { padding-left: 0.6rem; }
.idx {
  font-family: var(--mono);
  font-size: 0.75rem;
  color: var(--accent);
}
.service-name {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.service-copy { color: var(--muted); font-size: 0.95rem; }
.arrow { color: var(--accent); transition: transform 0.3s var(--ease); }
.service-row:hover .arrow { transform: translateX(6px); }

.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.work-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  overflow: hidden;
  padding: 0 0 1.4rem;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.work-card:hover {
  transform: translateY(-4px);
  border-color: rgba(99, 102, 241, 0.55);
}
.section-alt .work-card { background: var(--bg-2); }
.work-visual {
  height: 220px;
  margin-bottom: 1.15rem;
  position: relative;
  overflow: hidden;
}
.v-erp { background: linear-gradient(145deg, #1e1b4b, #0a0e1a 55%, #312e81); }
.v-shop { background: linear-gradient(160deg, #0f172a, #6366f1 140%); }
.v-brand { background: linear-gradient(180deg, #e0e7ff, #a5b4fc); }
.v-ai { background: radial-gradient(circle at 50% 40%, #22d3ee, #4f46e5 55%, #0a0e1a); }
.fake-ui { padding: 1.4rem; }
.fake-ui span {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: #6366f1;
  margin-right: 6px;
  opacity: 0.7;
}
.bars { display: flex; align-items: flex-end; gap: 10px; height: 130px; margin-top: 1.4rem; }
.bars i {
  display: block;
  width: 18%;
  background: rgba(242, 235, 224, 0.22);
  border-radius: 6px 6px 0 0;
}
.bars i:nth-child(1) { height: 40%; }
.bars i:nth-child(2) { height: 70%; }
.bars i:nth-child(3) { height: 52%; }
.bars i:nth-child(4) { height: 88%; }
.shop-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 2rem 1.2rem;
}
.shop-cards b {
  display: block;
  height: 150px;
  border-radius: 12px;
  background: rgba(242, 235, 224, 0.12);
  border: 1px solid rgba(242, 235, 224, 0.12);
}
.brand-type {
  font-family: var(--serif);
  font-size: 7rem;
  line-height: 220px;
  text-align: center;
  color: #1e1b4b;
  font-style: italic;
}
.ai-orb {
  width: 120px; height: 120px;
  border-radius: 50%;
  margin: 50px auto 0;
  background: radial-gradient(circle at 35% 30%, #e0e7ff, #6366f1 45%, #1e1b4b);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
}
.work-card h3 { font-size: 1.25rem; letter-spacing: -0.03em; padding: 0 1.25rem; }
.work-card p { color: var(--muted); padding: 0.45rem 1.25rem 0; font-size: 0.95rem; }
.work-tag {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-2);
  padding: 0 1.25rem;
  margin-bottom: 0.35rem;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  border-top: 1px solid var(--line);
  padding-top: 2.5rem;
}
.stat strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(3rem, 6vw, 4.6rem);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--accent-2);
}
.stat span { display: block; margin-top: 0.7rem; color: var(--muted); max-width: 16rem; }

.process-grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.process-grid li {
  padding: 1.4rem 0 0;
  border-top: 1px solid var(--line);
}
.process-grid span { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); }
.process-grid h3 { margin: 0.7rem 0 0.5rem; font-size: 1.2rem; letter-spacing: -0.03em; }
.process-grid p { color: var(--muted); font-size: 0.95rem; }

.about-band { padding: 5.5rem 0; background: var(--bg-2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: center;
}
.portrait-frame {
  min-height: 380px;
  border-radius: 1.5rem;
  background:
    radial-gradient(circle at 70% 20%, rgba(99, 102, 241, 0.4), transparent 40%),
    linear-gradient(160deg, #1e1b4b, #0a0e1a 60%);
  border: 1px solid var(--line);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
}
.portrait-frame.tall { min-height: 520px; }
.portrait-label {
  position: absolute;
  top: 1.4rem; left: 1.4rem;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
}
.portrait-label.accent { left: auto; right: 1.4rem; background: var(--accent); border-color: var(--accent); }
.portrait-name {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
}
.portrait-meta { color: var(--muted); margin-top: 0.3rem; }
.about-copy p + p { margin-top: 1rem; color: var(--cream-dim); }
.about-copy p:first-of-type { color: var(--cream-dim); }

.cta-band {
  padding: 5.5rem 0 6rem;
  background:
    radial-gradient(circle at 80% 0%, rgba(99, 102, 241, 0.32), transparent 42%),
    var(--bg);
}
.cta-inner { max-width: 40rem; }
.cta-inner p { color: var(--cream-dim); margin: 1rem 0 1.6rem; }

.page-hero { padding: 4rem 0 2rem; }
.page-hero .btn { margin-top: 1.5rem; }

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.pillar {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 1.5rem 1.4rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: var(--bg-2);
  transition: border-color 0.3s, transform 0.35s var(--ease);
}
.pillar:hover {
  border-color: rgba(99, 102, 241, 0.55);
  transform: translateY(-3px);
}
.pillar h3 { font-size: 1.55rem; letter-spacing: -0.03em; margin: 0.7rem 0 0.5rem; }
.pillar p { color: var(--muted); flex: 1; }
.pillar-price {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--serif);
  font-size: 1.45rem;
  color: var(--accent-2);
}
.pillar .text-link { margin-top: 0.85rem; }

.split-copy {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 2.5rem;
  align-items: start;
}
.split-copy h2 { margin-bottom: 1rem; }
.narrow { max-width: 40rem; }

.order-layout { display: grid; gap: 1.6rem; }
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pkg-card {
  position: relative;
  display: grid;
  gap: 0.35rem;
  padding: 1.45rem 1.2rem 1.3rem;
  border: 1px solid var(--line);
  border-radius: 1.2rem;
  background: rgba(17, 24, 39, 0.85);
  color: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.3s var(--ease), box-shadow 0.25s;
}
.pkg-card.is-popular {
  background: linear-gradient(180deg, rgba(99, 102, 241, 0.16), rgba(17, 24, 39, 0.92));
}
.pkg-badge {
  position: absolute;
  top: -0.7rem;
  left: 1.1rem;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 999px;
}
.pkg-card:hover, .pkg-card.is-selected {
  border-color: #6366f1;
  box-shadow: 0 0 0 1px #6366f1, 0 18px 40px rgba(99, 102, 241, 0.18);
  transform: translateY(-2px);
}
.pkg-name { font-weight: 700; letter-spacing: -0.02em; padding-right: 1.6rem; }
.pkg-price {
  font-size: 1.85rem;
  font-weight: 800;
  color: #c4b5fd;
  line-height: 1.1;
}
.pkg-meta { color: var(--muted); font-size: 0.88rem; }
.pkg-card ul {
  list-style: none;
  margin-top: 0.85rem;
  display: grid;
  gap: 0.35rem;
}
.pkg-card li {
  color: var(--cream-dim);
  font-size: 0.9rem;
  padding-left: 0.9rem;
  position: relative;
}
.pkg-card li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.55rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.pkg-live {
  min-height: 1.2rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: #a5b4fc;
  margin: -0.35rem 0 0.2rem;
}
.order-fields { display: grid; gap: 1rem; }
.order-fields h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.2rem; }
.form-hint {
  color: var(--muted);
  font-size: 0.85rem;
  margin-top: 0.4rem;
}
.form-hint a { color: var(--accent-2); text-decoration: underline; }

.havale-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  align-items: start;
}
.code-display { font-size: clamp(2.2rem, 5vw, 3.4rem); margin: 0.3rem 0 0.8rem; }
.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.18);
  color: var(--accent-2);
  font-size: 0.85rem;
  font-weight: 500;
}
.meta-list { margin: 1.4rem 0 0.6rem; display: grid; gap: 0.7rem; }
.meta-list div { display: grid; grid-template-columns: 6.5rem 1fr; gap: 0.6rem; }
.meta-list dt { color: var(--muted); font-size: 0.85rem; }
.bank-stack { display: grid; gap: 1rem; }
.bank-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  padding: 1.4rem;
}
.bank-card h3 { font-size: 1.3rem; margin-bottom: 0.8rem; }
.iban-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  align-items: center;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  background: var(--bg);
  border-radius: 0.8rem;
  padding: 0.75rem 0.85rem;
}
.muted, .bank-card .muted { color: var(--muted); margin-top: 0.55rem; font-size: 0.9rem; }
.amount-line { margin-top: 1rem; color: var(--cream-dim); }
.amount-line strong { color: var(--accent-2); font-size: 1.25rem; }
.inline-code-form { display: grid; gap: 1rem; }
.inline-code-form input { text-transform: uppercase; }

.track-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: start;
  margin-bottom: 2rem;
}
.track-head p { color: var(--cream-dim); margin-top: 0.4rem; }
.track-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.6rem;
}
.track-steps li {
  border-top: 2px solid var(--line);
  padding-top: 0.85rem;
}
.track-steps li.is-done { border-top-color: var(--ok); }
.track-steps li.is-now { border-top-color: var(--accent); }
.track-steps span { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.track-steps li.is-now span { color: var(--accent-2); }
.track-steps strong { display: block; margin-top: 0.35rem; font-size: 0.92rem; font-weight: 500; }
.track-meta { margin-top: 2rem; display: grid; gap: 0.5rem; color: var(--muted); }
.track-meta .btn { margin-top: 0.6rem; width: fit-content; }

.studio-strip {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1.1fr;
  gap: 0.7rem;
  padding: 0 1.25rem 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.studio-tile {
  min-height: 160px;
  border-radius: 1.1rem;
  display: grid;
  place-items: center;
  font-family: var(--serif);
  font-size: 3.5rem;
  font-style: italic;
}
.studio-tile.t1 { background: linear-gradient(180deg, #e0e7ff, #a5b4fc); color: #1e1b4b; }
.studio-tile.t2 { background: linear-gradient(160deg, #0f172a, #6366f1 140%); }
.studio-tile.t3 { background: radial-gradient(circle at 50% 40%, #22d3ee, #4f46e5 55%, #0a0e1a); }
.studio-tile.t4 { background: #12100e; border: 1px solid var(--line); color: var(--cream); font-size: 1.4rem; font-style: normal; }

.admin-table-wrap { overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; }
.admin-table th, .admin-table td {
  text-align: left;
  padding: 0.85rem 0.6rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}
.admin-table th { color: var(--muted); font-weight: 500; font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.status-form { display: flex; flex-wrap: wrap; gap: 0.45rem; }
.status-form select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 0.6rem;
  padding: 0.45rem 0.6rem;
}
.logout-row { display: flex; justify-content: flex-end; margin-bottom: 1rem; }
.narrow-card { max-width: 28rem; }
.form-success-inline {
  background: rgba(143, 173, 120, 0.12);
  border: 1px solid rgba(143, 173, 120, 0.35);
  color: #cfe0c2;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}

.service-detail {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
}
.service-detail .idx { font-size: 0.95rem; padding-top: 0.45rem; }
.service-detail h2 { margin-bottom: 1rem; }
.service-detail p { color: var(--cream-dim); max-width: 40rem; }
.chip-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.4rem;
}
.chip-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  font-size: 0.85rem;
  color: var(--cream-dim);
}

.about-long {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: start;
}
.prose p { color: var(--cream-dim); }
.prose p + p { margin-top: 1.1rem; }
.stack-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.stack-grid article {
  border-top: 1px solid var(--line);
  padding-top: 1.2rem;
}
.stack-grid p { color: var(--muted); margin-top: 0.6rem; }

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-aside .kicker { margin-top: 1.6rem; }
.contact-aside .kicker:first-child { margin-top: 0; }
.contact-aside a:hover { color: var(--accent-2); }
.form-card {
  background: rgba(17, 24, 39, 0.78);
  border: 1px solid var(--line);
  border-radius: 1.4rem;
  padding: 1.6rem;
  backdrop-filter: blur(12px);
}
.form-card form, .form-card label { display: grid; gap: 0.45rem; }
.form-card form { gap: 1rem; }
.form-card label { font-size: 0.88rem; color: var(--cream-dim); }
.form-card input, .form-card select, .form-card textarea {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 0.7rem;
  padding: 0.85rem 0.95rem;
  outline: none;
  width: 100%;
}
.form-card select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5 6 6.5 11 1.5' stroke='%23c9bdae' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  padding-right: 2.2rem;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  border-color: var(--accent);
}
.form-error {
  background: rgba(211, 107, 90, 0.12);
  border: 1px solid rgba(211, 107, 90, 0.35);
  color: #f0c2ba;
  padding: 0.8rem 1rem;
  border-radius: 0.8rem;
  margin-bottom: 1rem;
}
.form-success h2 { font-size: 2.2rem; margin-bottom: 0.7rem; }
.form-success p { color: var(--cream-dim); margin-bottom: 1.3rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3.5rem 0 1.6rem;
  position: relative;
  z-index: 1;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
}
.footer-mark {
  font-family: var(--serif);
  font-size: 2rem;
  font-style: italic;
}
.footer-lead { color: var(--muted); margin-top: 0.6rem; max-width: 22rem; }
.footer-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.footer-cols a, .footer-cols span {
  display: block;
  color: var(--cream-dim);
  margin-top: 0.45rem;
  font-size: 0.95rem;
}
.footer-cols a:hover { color: var(--cream); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.3rem;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.82rem;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: rise 0.9s var(--ease) forwards;
}
.reveal:nth-child(2) { animation-delay: 0.08s; }
.reveal:nth-child(3) { animation-delay: 0.16s; }
.reveal:nth-child(4) { animation-delay: 0.24s; }
@keyframes rise {
  to { opacity: 1; transform: none; }
}

@media (max-width: 1100px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: block; }
}
@media (max-width: 900px) {
  .nav-desktop, .header-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-bottom, .work-grid, .stats-row, .process-grid,
  .about-grid, .about-long, .stack-grid, .contact-layout, .footer-top, .footer-cols,
  .pillar-grid, .pkg-grid, .split-copy, .havale-layout, .track-steps, .studio-strip {
    grid-template-columns: 1fr;
  }
  .service-row {
    grid-template-columns: 2.4rem 1fr auto;
  }
  .service-copy { display: none; }
  .footer-bottom { flex-direction: column; }
  .hero { padding-top: 3rem; }
  .track-head { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .reveal { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
