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

:root {
  --ink: #0B0B0C;
  --ink-2: #121214;
  --ink-3: #1A1A1D;
  --bone: #F2EFE9;
  --bone-2: #E8E4DB;
  --mute: #8B8880;
  --mute-dark: #55534E;
  --acid: #D8FF3E;
  --acid-dim: rgba(216,255,62,0.14);
  --line: rgba(242,239,233,0.1);
  --line-light: rgba(11,11,12,0.12);
  --display: 'Syne', sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
  --max: 1320px;
}

html { scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }

body {
  font-family: var(--body);
  background: var(--ink);
  color: var(--bone);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--acid); color: var(--ink); }

.wrap { max-width: var(--max); margin: 0 auto; padding: 0 clamp(20px, 4vw, 56px); }
section[id] { scroll-margin-top: 90px; }

/* ── GRAIN ─────────────────────────────── */
.grain {
  position: fixed; inset: 0;
  pointer-events: none;
  z-index: 2000;
  opacity: 0.045;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── NAV ───────────────────────────────── */
header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}
header.hidden { transform: translateY(-100%); }
.nav-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px clamp(20px, 4vw, 56px);
  max-width: var(--max); margin: 0 auto;
}
header::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(11,11,12,0);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s, backdrop-filter 0.4s;
  pointer-events: none;
}
header.solid::before {
  background: rgba(11,11,12,0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.logo {
  position: relative;
  font-family: var(--display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -0.02em;
  color: var(--bone);
  text-decoration: none;
  text-transform: uppercase;
}
.logo b { color: var(--acid); font-weight: 800; }
.nav-links {
  position: relative;
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--mute);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--bone); }
.nav-links a.active { color: var(--bone); }
.nav-links a.active::after {
  content: '';
  display: block;
  width: 100%; height: 2px;
  background: var(--acid);
  margin-top: 3px;
  border-radius: 2px;
}
.nav-quote {
  color: var(--ink) !important;
  background: var(--acid);
  padding: 11px 22px;
  border-radius: 100px;
  font-weight: 600 !important;
  transition: transform 0.25s, background 0.25s !important;
  display: inline-block;
}
.nav-quote:hover { transform: scale(1.05); background: #E9FF7A; }
.nav-quote.active::after { display: none !important; }
.burger {
  display: none;
  position: relative;
  background: none; border: 0; cursor: pointer;
  width: 40px; height: 40px;
}
.burger span {
  position: absolute; left: 8px; right: 8px; height: 2px;
  background: var(--bone);
  transition: transform 0.3s, opacity 0.3s;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 24px; }
body.menu-open .burger span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
body.menu-open .burger span:nth-child(2) { transform: translateY(-5px) rotate(-45deg); }

.mobile-menu {
  position: fixed; inset: 0; z-index: 90;
  background: var(--ink);
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(24px, 8vw, 64px);
  gap: 8px;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s;
}
body.menu-open .mobile-menu { opacity: 1; pointer-events: auto; }
body.menu-open { overflow: hidden; }
.mobile-menu a {
  font-family: var(--display);
  font-size: clamp(38px, 9vw, 56px);
  font-weight: 700;
  color: var(--bone);
  text-decoration: none;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--acid); }
.mobile-menu .mm-meta {
  margin-top: 40px;
  color: var(--mute);
  font-size: 14px;
}

/* ── HERO (home) ───────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}
#heroCanvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: block;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(11,11,12,0.25) 0%, rgba(11,11,12,0) 40%, rgba(11,11,12,0.55) 100%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding-bottom: clamp(48px, 7vh, 88px);
  width: 100%;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone);
  border: 1px solid var(--line);
  background: rgba(11,11,12,0.55);
  padding: 10px 18px;
  border-radius: 100px;
  margin-bottom: clamp(24px, 4vh, 40px);
}
.hero-tag .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--acid);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }
.hero-h1 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(48px, 9.1vw, 148px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--bone);
}
.hero-h1 .line { display: block; overflow: hidden; }
.hero-h1 .line > span { display: inline-block; transform: translateY(110%); }
.hero-h1 em {
  font-style: normal;
  color: var(--acid);
}
.hero-foot {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-top: clamp(28px, 5vh, 52px);
  flex-wrap: wrap;
}
.hero-sub {
  max-width: 460px;
  color: rgba(242,239,233,0.72);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
}
.hero-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--body);
  font-size: 14px; font-weight: 600;
  letter-spacing: 0.04em; text-transform: uppercase;
  text-decoration: none;
  padding: 18px 34px;
  border-radius: 100px;
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s;
  cursor: pointer;
  border: 0;
}
.btn:hover { transform: scale(1.04); }
.btn-acid { background: var(--acid); color: var(--ink); }
.btn-acid:hover { background: #E9FF7A; }
.btn-ghost {
  background: transparent; color: var(--bone);
  border: 1px solid rgba(242,239,233,0.3);
}
.btn-ghost:hover { border-color: var(--bone); }
.btn .arr { transition: transform 0.25s; }
.btn:hover .arr { transform: translateX(4px); }

/* ── PAGE HERO (subpages) ──────────────── */
.page-hero {
  padding: clamp(150px, 20vh, 200px) 0 clamp(56px, 8vw, 90px);
  border-bottom: 1px solid var(--line);
}
.page-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 6.5vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--bone);
}
.page-title em { font-style: normal; color: var(--acid); }
.page-sub {
  color: var(--mute);
  font-size: clamp(15px, 1.7vw, 18px);
  max-width: 580px;
  margin-top: 22px;
  line-height: 1.75;
}

/* ── MARQUEE ───────────────────────────── */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  padding: 20px 0;
  background: var(--ink);
  position: relative;
  z-index: 4;
}
.marquee-track {
  display: flex; gap: 56px;
  width: max-content;
  will-change: transform;
}
.marquee-item {
  display: flex; align-items: center; gap: 56px;
  font-family: var(--display);
  font-size: 15px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  white-space: nowrap;
}
.marquee-item .star { color: var(--acid); font-size: 18px; }

/* ── SECTION COMMONS ───────────────────── */
section { position: relative; }
.sec-pad { padding: clamp(90px, 13vw, 170px) 0; }
.sec-head { margin-bottom: clamp(48px, 7vw, 90px); }
.kicker {
  display: flex; align-items: center; gap: 12px;
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  width: 32px; height: 1px;
  background: var(--acid);
}
.sec-title {
  font-family: var(--display);
  font-weight: 700;
  font-size: clamp(36px, 5.5vw, 76px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.sec-title em { font-style: normal; color: var(--acid); }
.reveal { opacity: 0; transform: translateY(48px); }

/* ── SERVICES ──────────────────────────── */
.services-list { border-top: 1px solid var(--line); }
.service-row {
  display: grid;
  grid-template-columns: 90px 1fr 1.1fr 60px;
  gap: clamp(20px, 3vw, 48px);
  align-items: center;
  padding: clamp(34px, 4.5vw, 56px) 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.35s cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.service-row::before {
  content: '';
  position: absolute; left: 0; bottom: -1px;
  width: 0%; height: 1px;
  background: var(--acid);
  transition: width 0.5s cubic-bezier(0.4,0,0.2,1);
}
.service-row:hover::before { width: 100%; }
.service-row:hover { padding-left: 18px; }
.service-num {
  font-family: var(--display);
  font-size: 15px; font-weight: 600;
  color: var(--mute);
}
.service-name {
  font-family: var(--display);
  font-size: clamp(24px, 3.4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  line-height: 1.05;
  transition: color 0.3s;
}
.service-row:hover .service-name { color: var(--acid); }
.service-desc {
  color: var(--mute);
  font-size: 15px;
  line-height: 1.7;
  max-width: 480px;
}
.service-arrow {
  justify-self: end;
  width: 48px; height: 48px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute);
  transition: background 0.3s, color 0.3s, transform 0.3s, border-color 0.3s;
  font-size: 18px;
}
.service-row:hover .service-arrow {
  background: var(--acid); color: var(--ink);
  border-color: var(--acid);
  transform: rotate(-45deg);
}

/* ── WORK ──────────────────────────────── */
.work { background: var(--bone); color: var(--ink); }
.work .kicker { color: var(--mute-dark); }
.work .sec-title { color: var(--ink); }
.work-head-row {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 32px; flex-wrap: wrap;
}
.work-note { color: var(--mute-dark); max-width: 380px; font-size: 15px; line-height: 1.7; }
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(18px, 2.5vw, 32px);
}
.work-card {
  text-decoration: none;
  color: inherit;
  display: block;
}
.work-thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  aspect-ratio: 4 / 4.6;
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
}
.work-thumb canvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.work-thumb .wt-label {
  position: absolute; top: 18px; left: 18px;
  z-index: 3;
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--bone);
  background: rgba(11,11,12,0.5);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  border-radius: 100px;
  border: 1px solid rgba(242,239,233,0.15);
}
.work-thumb .wt-view {
  position: absolute; inset: 0; z-index: 4;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.35s;
  background: rgba(11,11,12,0.35);
}
.work-thumb .wt-view span {
  background: var(--acid); color: var(--ink);
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 100px;
  transform: scale(0.85);
  transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1);
}
.work-card:hover .wt-view { opacity: 1; }
.work-card:hover .wt-view span { transform: scale(1); }
.wt-cta {
  background: transparent;
  border: 1.5px dashed rgba(11,11,12,0.25);
  transition: border-color 0.3s, background 0.3s;
}
.work-cta-tile:hover .wt-cta { border-color: var(--ink); background: rgba(11,11,12,0.03); }
.wt-cta-inner {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 10px;
  padding: 24px;
}
.wt-cta-plus {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--acid);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 300;
  margin-bottom: 8px;
  transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.work-cta-tile:hover .wt-cta-plus { transform: rotate(90deg) scale(1.1); }
.wt-cta-title {
  font-family: var(--display);
  font-size: 24px; font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  color: var(--ink);
}
.wt-cta-sub { font-size: 13px; color: var(--mute-dark); }
.work-info { padding: 20px 6px 0; }
.work-info h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.work-info p { color: var(--mute-dark); font-size: 14px; margin-top: 4px; }

.industries {
  margin-top: clamp(56px, 7vw, 96px);
  border-top: 1px solid var(--line-light);
  padding-top: clamp(36px, 4.5vw, 56px);
}
.ind-head {
  display: flex; align-items: baseline; gap: clamp(24px, 4vw, 64px);
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ind-label {
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink);
  white-space: nowrap;
}
.ind-note { color: var(--mute-dark); font-size: 15px; line-height: 1.6; max-width: 520px; }
.ind-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.ind-chips span, .ind-chip-cta {
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--mute-dark);
  border: 1px solid var(--line-light);
  padding: 10px 18px;
  border-radius: 100px;
  transition: color 0.25s, border-color 0.25s, background 0.25s;
}
.ind-chips span:hover { color: var(--ink); border-color: var(--ink); }
.ind-chip-cta {
  text-decoration: none;
  background: var(--ink);
  color: var(--acid);
  border-color: var(--ink);
  font-weight: 600;
}
.ind-chip-cta:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }

/* ── PRICING ───────────────────────────── */
.pricing-lede {
  max-width: 720px;
  color: var(--mute);
  font-size: clamp(16px, 1.7vw, 19px);
  line-height: 1.75;
  margin-top: 24px;
}
.pricing-lede strong { color: var(--bone); font-weight: 600; }
.price-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(48px, 6vw, 72px);
  align-items: stretch;
}
.price-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(32px, 4vw, 52px);
  background: var(--ink-2);
  position: relative;
  overflow: hidden;
}
.price-card.featured {
  background: var(--acid);
  color: var(--ink);
  border-color: var(--acid);
}
.price-badge {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.price-card.featured .price-badge { background: var(--ink); color: var(--acid); }
.price-card:not(.featured) .price-badge { background: var(--acid-dim); color: var(--acid); }
.price-name {
  font-family: var(--display);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.price-amount {
  display: flex; align-items: baseline; gap: 8px;
  margin: 24px 0 8px;
}
.price-amount .num {
  font-family: var(--display);
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.price-amount .per { font-size: 15px; font-weight: 500; opacity: 0.7; }
.price-sub { font-size: 14px; opacity: 0.75; margin-bottom: 32px; }
.price-feats { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 40px; }
.price-feats li {
  display: flex; align-items: flex-start; gap: 12px;
  font-size: 15px; line-height: 1.5;
}
.price-card:not(.featured) .price-feats li { color: rgba(242,239,233,0.8); }
.price-feats .tick {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-top: 2px;
}
.price-card.featured .tick { background: var(--ink); color: var(--acid); }
.price-card:not(.featured) .tick { background: var(--acid-dim); color: var(--acid); }
.price-card .btn { width: 100%; justify-content: center; }
.price-card.featured .btn { background: var(--ink); color: var(--bone); }
.price-card.featured .btn:hover { background: #232326; }
.price-note {
  margin-top: 28px;
  text-align: center;
  color: var(--mute);
  font-size: 13.5px;
}

.compare {
  margin-top: clamp(56px, 7vw, 88px);
  border: 1px solid var(--line);
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.compare-col { padding: clamp(28px, 3.5vw, 44px); }
.compare-col.old { background: var(--ink-2); }
.compare-col.new { background: var(--ink-3); border-left: 1px solid var(--line); }
.compare-col h4 {
  font-family: var(--display);
  font-size: 15px; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 22px;
}
.compare-col.old h4 { color: var(--mute); }
.compare-col.new h4 { color: var(--acid); }
.compare-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.compare-col li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 14.5px; line-height: 1.55;
}
.compare-col.old li { color: var(--mute); }
.compare-col.new li { color: rgba(242,239,233,0.85); }
.compare-col .x { color: #FF6B5C; font-weight: 700; margin-top: 1px; }
.compare-col .c { color: var(--acid); font-weight: 700; margin-top: 1px; }

/* ── PRICE TEASER (home) ───────────────── */
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(18px, 2.5vw, 32px);
  margin-top: clamp(40px, 5vw, 64px);
}
.teaser-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(30px, 3.5vw, 46px);
  background: var(--ink-2);
  text-decoration: none;
  color: inherit;
  display: block;
  transition: transform 0.25s, border-color 0.25s;
}
.teaser-card:hover { transform: translateY(-4px); border-color: rgba(242,239,233,0.3); }
.teaser-card.acid { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.teaser-card.acid:hover { border-color: var(--acid); }
.teaser-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 16px;
}
.teaser-num {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 5vw, 68px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.teaser-num .per { font-size: 0.28em; font-weight: 600; opacity: 0.7; letter-spacing: 0; }
.teaser-card p { font-size: 14.5px; margin-top: 14px; opacity: 0.8; line-height: 1.65; max-width: 380px; }
.teaser-more { text-align: center; margin-top: clamp(32px, 4vw, 48px); }

/* ── STATS / WHY ───────────────────────── */
.why { background: var(--bone); color: var(--ink); }
.why .sec-title { color: var(--ink); }
.why .kicker { color: var(--mute-dark); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}
.why-cell {
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  padding: clamp(28px, 3.5vw, 48px) clamp(22px, 2.5vw, 36px);
  transition: background 0.3s;
}
.why-cell:hover { background: rgba(11,11,12,0.035); }
.why-stat {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(40px, 4.5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
}
.why-stat sup { font-size: 0.45em; color: var(--acid); -webkit-text-stroke: 0.5px var(--ink); }
.why-cell h3 {
  font-size: 15px; font-weight: 600;
  margin: 16px 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.why-cell p { color: var(--mute-dark); font-size: 14px; line-height: 1.65; }

/* ── ABOUT ─────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}
.about-sticky { position: sticky; top: 120px; }
.about-body p {
  font-size: clamp(17px, 1.9vw, 22px);
  line-height: 1.75;
  color: rgba(242,239,233,0.82);
  margin-bottom: 28px;
}
.about-body p strong { color: var(--bone); font-weight: 600; }
.about-body .em { color: var(--acid); }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 40px; }
.about-tags span {
  font-size: 12.5px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--mute);
  border: 1px solid var(--line);
  padding: 10px 18px;
  border-radius: 100px;
  transition: color 0.25s, border-color 0.25s;
}
.about-tags span:hover { color: var(--acid); border-color: var(--acid); }

/* ── CRAFT GRAPHIC ─────────────────────── */
.craft { margin-top: clamp(28px, 4vw, 44px); max-width: 480px; }
.craft-svg { width: 100%; height: auto; display: block; }
.craft-svg .cs-frame { fill: var(--ink-2); stroke: var(--line); }
.craft-svg .cs-bar { stroke: var(--line); }
.craft-svg .cs-dot { fill: rgba(242,239,233,0.22); }
.craft-svg .cs-url { fill: rgba(242,239,233,0.07); }
.craft-svg .cs-h1 { fill: rgba(242,239,233,0.28); }
.craft-svg .cs-h2 { fill: var(--acid); opacity: 0.9; }
.craft-svg .cs-t { fill: rgba(242,239,233,0.13); }
.craft-svg .cs-btn { fill: var(--acid); }
.craft-svg .cs-btn2 { fill: none; stroke: rgba(242,239,233,0.3); }
.craft-svg .cs-img { fill: rgba(216,255,62,0.06); stroke: rgba(216,255,62,0.3); }
.craft-svg .cs-imgart { stroke: rgba(242,239,233,0.3); fill: none; stroke-width: 1.5; }
.craft-svg .cs-foot { fill: rgba(242,239,233,0.1); }
.craft-svg .cs-cursor-dot { fill: var(--acid); }
.craft-svg .cs-cursor-ring { fill: none; stroke: rgba(216,255,62,0.45); }

/* ── PROCESS ───────────────────────────── */
.proc-list { border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 64px); }
.proc-row {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(20px, 3vw, 48px);
  padding: clamp(28px, 3.5vw, 44px) 0;
  border-bottom: 1px solid var(--line);
}
.proc-day {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--acid);
  padding-top: 6px;
}
.proc-row h3 {
  font-family: var(--display);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
}
.proc-row p { color: var(--mute); font-size: 15px; line-height: 1.7; max-width: 520px; }

/* ── FAQ ───────────────────────────────── */
.faq-list { border-top: 1px solid var(--line); margin-top: clamp(40px, 5vw, 64px); max-width: 900px; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding: clamp(22px, 2.8vw, 32px) 0;
  font-family: var(--display);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 600;
  color: var(--bone);
  transition: color 0.25s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--acid); }
.faq-item summary:focus-visible { outline: 2px solid var(--acid); outline-offset: 4px; }
.faq-plus {
  flex-shrink: 0;
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--body);
  font-size: 18px; font-weight: 400;
  color: var(--mute);
  transition: transform 0.3s, background 0.3s, color 0.3s, border-color 0.3s;
}
.faq-item[open] .faq-plus {
  transform: rotate(45deg);
  background: var(--acid); color: var(--ink); border-color: var(--acid);
}
.faq-body {
  color: var(--mute);
  font-size: 15.5px;
  line-height: 1.8;
  max-width: 720px;
  padding: 0 0 clamp(22px, 2.8vw, 32px);
}
.faq-body strong { color: var(--bone); font-weight: 600; }

/* ── CONTACT FORM ──────────────────────── */
.cform {
  max-width: 620px;
  margin: 44px auto 0;
  text-align: left;
  background: rgba(18,18,20,0.95);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: clamp(26px, 3.5vw, 44px);
}
.cform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cform-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.cform-group label {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.cform-group label .req { color: var(--acid); }
.cform-group input,
.cform-group textarea {
  background: rgba(11,11,12,0.6);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: var(--body);
  font-size: 15px;
  color: var(--bone);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  width: 100%;
}
.cform-group input::placeholder,
.cform-group textarea::placeholder { color: var(--mute-dark); }
.cform-group input:focus,
.cform-group textarea:focus { border-color: var(--acid); background: rgba(11,11,12,0.85); }
.cform-group textarea { resize: vertical; min-height: 110px; }
.cform-consent {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 13px; color: var(--mute);
  line-height: 1.55;
  margin: 4px 0 20px;
}
.cform-consent input {
  width: 17px; height: 17px;
  margin-top: 2px;
  accent-color: var(--acid);
  flex-shrink: 0;
  cursor: pointer;
}
.cform-consent a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; }
.cform-consent a:hover { color: var(--acid); }
.cform .btn { width: 100%; justify-content: center; }
.cform-status {
  display: none;
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 14px;
  line-height: 1.6;
}
.cform-status.ok { display: block; background: var(--acid-dim); color: var(--acid); border: 1px solid rgba(216,255,62,0.3); }
.cform-status.err { display: block; background: rgba(255,107,92,0.12); color: #FF8A7A; border: 1px solid rgba(255,107,92,0.3); }
.cform-status a { color: inherit; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* ── CONTACT PAGE LAYOUT ───────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: start;
}
.contact-grid .cform { margin: 0; max-width: none; }
.contact-info { display: flex; flex-direction: column; gap: 26px; }
.contact-info-item {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px 26px;
}
.contact-info-item h4 {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.contact-info-item p, .contact-info-item a {
  color: var(--bone);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.6;
}
.contact-info-item a:hover { color: var(--acid); }
.contact-info-item .sub { display: block; color: var(--mute); font-size: 13.5px; font-weight: 400; margin-top: 4px; }

/* ── CTA ───────────────────────────────── */
.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(110px, 16vw, 220px) 0;
}
#ctaCanvas { position: absolute; inset: 0; width: 100%; height: 100%; }
.cta::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(11,11,12,0) 0%, rgba(11,11,12,0.7) 100%);
  pointer-events: none;
}
.cta .wrap { position: relative; z-index: 3; }
.cta-title {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(44px, 8vw, 120px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}
.cta-title em { font-style: normal; color: var(--acid); }
.cta-sub {
  color: rgba(242,239,233,0.7);
  font-size: clamp(15px, 1.6vw, 18px);
  max-width: 520px;
  margin: 28px auto 44px;
  line-height: 1.7;
}
.cta-mail {
  display: inline-block;
  margin-top: 36px;
  color: var(--mute);
  font-size: 14px;
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  padding-bottom: 3px;
  transition: color 0.25s, border-color 0.25s;
}
.cta-mail:hover { color: var(--acid); border-color: var(--acid); }

/* ── CTA STRIP (subpages) ──────────────── */
.cta-strip {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: clamp(80px, 11vw, 140px) 0;
}
.cta-strip h2 {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(36px, 5.5vw, 80px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cta-strip h2 em { font-style: normal; color: var(--acid); }
.cta-strip p {
  color: var(--mute);
  max-width: 480px;
  margin: 20px auto 36px;
  font-size: 15.5px;
  line-height: 1.7;
}

/* ── MEDIA PAGE ────────────────────────── */
.reel-stage { display: flex; justify-content: center; }
.reel-link {
  position: relative;
  display: block;
  width: 100%;
  max-width: 400px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink-2);
  cursor: pointer;
}
.reel-link video {
  width: 100%;
  display: block;
  border-radius: 24px;
}
.reel-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  opacity: 0;
  transition: opacity 0.32s ease;
  background: linear-gradient(160deg, rgba(131,58,180,0.55) 0%, rgba(193,53,132,0.55) 45%, rgba(11,11,12,0.72) 100%);
  color: #fff;
  text-align: center;
}
.reel-link:hover .reel-overlay,
.reel-link:focus-visible .reel-overlay { opacity: 1; }
.reel-overlay svg {
  width: 56px; height: 56px;
  color: #fff;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.35));
  transition: transform 0.32s cubic-bezier(0.34,1.56,0.64,1);
  transform: scale(0.82);
}
.reel-link:hover .reel-overlay svg { transform: scale(1); }
.reel-overlay span {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.02em;
  text-shadow: 0 2px 10px rgba(0,0,0,0.35);
}
.reel-caption {
  text-align: center;
  color: var(--mute);
  font-size: 14px;
  margin-top: 22px;
}
.reel-fallback {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
  border: 1.5px dashed var(--line);
  border-radius: 24px;
  padding: 72px 32px;
  color: var(--mute);
  display: none;
}
.reel-fallback h3 {
  font-family: var(--display);
  font-size: 22px; font-weight: 700;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 10px;
}
.follow-row {
  display: flex; gap: 14px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

/* ── LEGAL PAGES ───────────────────────── */
.legal-body {
  max-width: 760px;
  color: var(--mute);
  font-size: 15px;
  line-height: 1.8;
  padding: clamp(48px, 6vw, 72px) 0 clamp(80px, 10vw, 120px);
}
.legal-body h4 {
  font-family: var(--display);
  font-size: 16px; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--bone);
  margin: 32px 0 12px;
}
.legal-body h4:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 14px; }
.legal-body ul { margin: 0 0 14px 18px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--acid); }
.legal-date { font-size: 13px; color: var(--mute-dark); margin-bottom: 24px; }

/* ── PRIVACY NOTICE BANNER ─────────────── */
.pnotice {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 400;
  max-width: 620px;
  margin: 0 auto;
  background: var(--ink-2);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
}
.pnotice.show { display: flex; }
.pnotice p { font-size: 13px; color: var(--mute); line-height: 1.6; flex: 1; }
.pnotice p a { color: var(--bone); text-decoration: underline; text-underline-offset: 2px; }
.pnotice p a:hover { color: var(--acid); }
.pnotice button {
  background: var(--acid);
  color: var(--ink);
  border: 0;
  border-radius: 100px;
  padding: 10px 22px;
  font-family: var(--body);
  font-size: 13px; font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.25s;
}
.pnotice button:hover { background: #E9FF7A; }

/* ── FOOTER ────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: clamp(48px, 6vw, 72px) 0 40px;
  background: var(--ink);
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: clamp(36px, 5vw, 80px);
  margin-bottom: clamp(48px, 6vw, 72px);
}
.foot-brand .logo { font-size: 24px; display: inline-block; }
.foot-brand p {
  color: var(--mute);
  font-size: 14.5px;
  line-height: 1.7;
  max-width: 360px;
  margin-top: 16px;
}
.foot-social { display: flex; gap: 10px; margin-top: 22px; }
.foot-social a {
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mute);
  text-decoration: none;
  font-size: 13px; font-weight: 700;
  letter-spacing: 0;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.foot-social a:hover { background: var(--acid); color: var(--ink); border-color: var(--acid); }
.foot-col h4 {
  font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 20px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.foot-col a {
  color: rgba(242,239,233,0.75);
  text-decoration: none;
  font-size: 14.5px;
  transition: color 0.25s;
}
.foot-col a:hover { color: var(--acid); }
.foot-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px; flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  color: var(--mute);
  font-size: 13px;
}
.foot-legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-legal-links a {
  color: var(--mute);
  font-size: 13px;
  text-decoration: none;
  transition: color 0.25s;
}
.foot-legal-links a:hover { color: var(--acid); }
.foot-age {
  font-size: 12px;
  color: var(--mute-dark);
  margin-top: 14px;
  line-height: 1.6;
}

/* ── RESPONSIVE ────────────────────────── */
@media (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .service-row { grid-template-columns: 60px 1fr 60px; }
  .service-desc { display: none; }
  .services-list.detailed .service-row { grid-template-columns: 60px 1fr 60px; }
}
@media (max-width: 860px) {
  .nav-links { display: none; }
  .burger { display: block; }
  .price-grid { grid-template-columns: 1fr; }
  .teaser-grid { grid-template-columns: 1fr; }
  .compare { grid-template-columns: 1fr; }
  .compare-col.new { border-left: 0; border-top: 1px solid var(--line); }
  .about-grid { grid-template-columns: 1fr; }
  .about-sticky { position: static; }
  .proc-row { grid-template-columns: 1fr; gap: 10px; }
  .contact-grid { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 640px) {
  .work-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .service-row { grid-template-columns: 44px 1fr 48px; }
  .service-arrow { width: 40px; height: 40px; }
  .cform-row { grid-template-columns: 1fr; }
  .pnotice { flex-direction: column; align-items: stretch; }
  .pnotice button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-h1 .line > span { transform: none; }
  .reveal { opacity: 1; transform: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
