/* ============================================
   UrbanTech — Editorial Studio Site
   Distinct · Confident · Typographic
   ============================================ */

:root {
  /* Surfaces */
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #181818;
  --bg-4: #1f1f1f;
  --paper: #fafafa;
  --paper-2: #f0f0f0;

  /* Ink */
  --ink: #fafafa;
  --ink-dim: #a3a3a3;
  --ink-mute: #6a6a6a;
  --ink-dark: #0a0a0a;

  /* Lines */
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(10, 10, 10, 0.10);

  /* Brand */
  --accent: #c1ff36;
  --accent-hover: #d0ff5c;
  --accent-soft: rgba(193, 255, 54, 0.12);
  --accent-glow: rgba(193, 255, 54, 0.35);
  --accent-warm: #ff6b3d;

  /* Type */
  --font-display: 'Geist', 'Inter Tight', 'Inter', system-ui, -apple-system, sans-serif;
  --font-body:    'Geist', 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono:    'Geist Mono', 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  /* Shape */
  --radius: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --easing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* ===== Reset & Base ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body {
  font-family: var(--font-body);
  font-feature-settings: "ss01", "ss02", "cv11";
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: -0.011em;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;

  /* Subtle grain + ambient glow */
  background-image:
    radial-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    radial-gradient(circle at 20% 0%, rgba(193, 255, 54, 0.04), transparent 50%),
    radial-gradient(circle at 80% 100%, rgba(193, 255, 54, 0.025), transparent 50%);
  background-size: 3px 3px, 100% 100%, 100% 100%;
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s var(--easing); }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

input, textarea, select {
  font-family: inherit;
  font-size: 15px;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  padding: 14px 0;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
  border-radius: 0;
}
input::placeholder, textarea::placeholder, select option:disabled {
  color: var(--ink-mute);
}
input:focus, textarea:focus, select:focus {
  border-bottom-color: var(--accent);
}
select option { background: var(--bg-2); color: var(--ink); }

.container { max-width: 1320px; margin: 0 auto; padding: 0 40px; }

/* ===== Typography ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h1 em, h2 em, h3 em, h4 em {
  font-style: italic;
  font-weight: 500;
}

.italic { font-style: italic; }

.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-mute);
}

.accent { color: var(--accent); }
.accent-warm { color: var(--accent-warm); }

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: padding 0.3s var(--easing), background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  padding: 14px 0;
  background: rgba(13, 13, 12, 0.75);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom-color: var(--line);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  justify-self: start;
}
.logo-mark {
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  position: relative;
  box-shadow: 0 0 0 4px rgba(200, 242, 75, 0.12);
}
.logo-text { color: var(--ink); }
.logo-text em { font-style: italic; color: var(--accent); }

.nav-links {
  display: flex;
  gap: 36px;
  justify-self: center;
}
.nav-links a {
  color: var(--ink-dim);
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width 0.3s var(--easing);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-right {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-dim);
  letter-spacing: 0.08em;
}
.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(200, 242, 75, 0.6);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 242, 75, 0.6); }
  70% { box-shadow: 0 0 0 8px rgba(200, 242, 75, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 242, 75, 0); }
}

.nav-cta {
  padding: 9px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink);
  transition: background 0.25s, border-color 0.25s, color 0.25s;
}
.nav-cta:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--ink-dark);
}

.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-burger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  border-radius: 100px;
  transition: all 0.3s var(--easing);
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  letter-spacing: 0.005em;
}
.btn-primary {
  background: var(--accent);
  color: var(--ink-dark);
}
.btn-primary:hover {
  background: var(--ink);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover {
  border-color: var(--ink-dim);
  background: rgba(245, 243, 238, 0.04);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-full { width: 100%; padding: 18px; }
.btn-dark {
  background: var(--ink-dark);
  color: var(--paper);
}
.btn-dark:hover { background: #000; }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 160px 0 80px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.hero-content {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
}
.hero-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 80px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.hero-title {
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 56px;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
}
.hero-title .underline-accent {
  position: relative;
  display: inline-block;
}
.hero-title .underline-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 6px;
  height: 8px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.85;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: end;
}
.hero-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
  max-width: 540px;
  line-height: 1.5;
}
.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
.hero-actions .arrow-link {
  font-size: 14px;
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 0;
}
.hero-actions .arrow-link:hover { color: var(--accent); }
.hero-actions .arrow-link span { transition: transform 0.25s; }
.hero-actions .arrow-link:hover span { transform: translateX(4px); }

/* ===== Promise (replaces marquee) ===== */
.promise {
  background: var(--paper);
  color: var(--ink-dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.promise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
.promise-headline {
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--ink-dark);
  font-weight: 500;
}
.promise-headline em {
  font-style: italic;
  position: relative;
}
.promise-headline em::before {
  content: '';
  position: absolute;
  left: -6px; right: -6px; bottom: 8px;
  height: 10px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.9;
}
.promise-headline small {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 28px;
  font-weight: 500;
}

.promise-points {
  display: grid;
  gap: 0;
}
.promise-point {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line-dark);
  align-items: start;
}
.promise-point:first-child { border-top: 1px solid var(--line-dark); }
.promise-point-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
  padding-top: 4px;
}
.promise-point h4 {
  font-family: 'Inter', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink-dark);
  letter-spacing: -0.015em;
}
.promise-point p {
  font-size: 14.5px;
  color: #4a4a47;
  line-height: 1.55;
}

/* ===== Sections ===== */
.section {
  padding: 140px 0;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.section-head {
  margin-bottom: 90px;
  max-width: 1240px;
}
.section-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.section-num {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--accent);
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  margin-bottom: 24px;
  display: inline-block;
}
.section-title {
  font-size: clamp(40px, 6vw, 90px);
  letter-spacing: -0.035em;
  font-weight: 500;
  line-height: 0.98;
  max-width: 900px;
}
.section-title em { font-style: italic; }
.section-sub {
  font-size: 17px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 420px;
  margin-top: 8px;
}

/* ===== Services — Bento grid ===== */
.services-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: minmax(220px, auto);
  gap: 8px;
}
.service-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--easing), border-color 0.4s, transform 0.5s;
  text-decoration: none;
}
.service-tile:hover {
  background: var(--bg-3);
  border-color: var(--line-strong);
}
.service-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(200, 242, 75, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.service-tile:hover::after { opacity: 1; }

.service-tile.span-3 { grid-column: span 3; }
.service-tile.span-2 { grid-column: span 2; }
.service-tile.span-4 { grid-column: span 4; }
.service-tile.tall { grid-row: span 2; }

.service-tile-head {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 24px;
}
.service-tile-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.service-tile-arrow {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: all 0.25s var(--easing);
}
.service-tile:hover .service-tile-arrow {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.service-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.02;
}
.service-tile h3 em { font-style: italic; }
.service-tile p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin-bottom: 18px;
  max-width: 480px;
}

.service-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.service-stack span {
  font-family: var(--font-mono);
  font-size: 10.5px;
  padding: 5px 10px;
  background: rgba(245, 243, 238, 0.04);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
}

.service-tile-accent {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}
.service-tile-accent:hover { background: #d6ff5b; border-color: #d6ff5b; }
.service-tile-accent .service-tile-num,
.service-tile-accent p { color: rgba(19, 19, 18, 0.7); }
.service-tile-accent .service-tile-arrow {
  border-color: rgba(19, 19, 18, 0.25);
  color: var(--ink-dark);
}
.service-tile-accent:hover .service-tile-arrow {
  background: var(--ink-dark);
  color: var(--accent);
  border-color: var(--ink-dark);
}
.service-tile-accent .service-stack span {
  background: rgba(19, 19, 18, 0.08);
  border-color: rgba(19, 19, 18, 0.15);
  color: rgba(19, 19, 18, 0.75);
}
.service-tile-accent::after { display: none; }

/* ===== Pricing ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-bottom: 100px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.pricing-card {
  position: relative;
  padding: 56px 44px;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  transition: background 0.4s;
}
.pricing-card:hover { background: var(--bg-2); }
.pricing-card-featured {
  background: var(--paper);
  color: var(--ink-dark);
}
.pricing-card-featured:hover { background: var(--paper); }

.pricing-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card-featured .pricing-tag { color: #555; }
.pricing-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  line-height: 1;
}
.pricing-name em { font-style: italic; }
.pricing-desc {
  font-size: 14.5px;
  color: var(--ink-dim);
  margin-bottom: 36px;
  line-height: 1.55;
  max-width: 320px;
}
.pricing-card-featured .pricing-desc { color: #4a4a47; }

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  padding: 28px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
  margin-bottom: 36px;
}
.pricing-card-featured .pricing-price {
  border-color: var(--line-dark);
}
.pricing-currency {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--ink-dim);
  font-weight: 400;
}
.pricing-card-featured .pricing-currency { color: #4a4a47; }
.pricing-amount {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
}
.pricing-unit {
  font-size: 16px;
  color: var(--ink-dim);
  font-weight: 400;
  margin-left: 4px;
}
.pricing-card-featured .pricing-unit { color: #4a4a47; }

.pricing-features {
  margin-bottom: 40px;
  flex-grow: 1;
}
.pricing-features li {
  padding: 10px 0;
  font-size: 14.5px;
  color: var(--ink-dim);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  border-bottom: 1px dashed var(--line);
}
.pricing-card-featured .pricing-features li {
  color: #4a4a47;
  border-bottom-color: var(--line-dark);
}
.pricing-features li:last-child { border: none; }
.pricing-features li::before {
  content: '+';
  font-family: var(--font-mono);
  color: var(--accent);
  font-weight: 600;
  margin-top: 1px;
}
.pricing-card-featured .pricing-features li::before { color: var(--accent-warm); }

/* Price list */
.price-list-wrap {
  padding-top: 40px;
  border-top: 1px solid var(--line);
}
.price-list-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 32px;
  flex-wrap: wrap;
  gap: 16px;
}
.price-list-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: -0.025em;
}
.price-list-title em { font-style: italic; }

.price-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
}
.price-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  font-size: 15.5px;
  gap: 24px;
  position: relative;
}
.price-row .dots {
  flex: 1;
  height: 1px;
  border-bottom: 1px dotted var(--line-strong);
  margin: 0 8px;
  align-self: end;
  margin-bottom: 6px;
}
.price-row > span { color: var(--ink-dim); }
.price-row strong {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  font-size: 17px;
}
.price-note {
  margin-top: 32px;
  font-size: 12px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  letter-spacing: 0.04em;
}

/* ===== Products ===== */
.products-list {
  border-top: 1px solid var(--line);
}
.product-row {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr 1fr auto;
  gap: 40px;
  padding: 38px 8px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  position: relative;
  transition: padding 0.4s var(--easing), background 0.4s;
  cursor: pointer;
}
.product-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(245, 243, 238, 0.02);
}
.product-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.product-name-cell {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.product-name-cell em { font-style: italic; }
.product-row:hover .product-name-cell { color: var(--accent); }

.product-tag-cell {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.product-domain {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}
.product-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: all 0.3s var(--easing);
  flex-shrink: 0;
}
.product-row:hover .product-arrow {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.product-pitch {
  display: grid;
  grid-template-columns: 60px 1fr 1.4fr 1fr auto;
  gap: 40px;
  padding: 56px 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, transparent, rgba(200, 242, 75, 0.04));
  align-items: center;
}
.product-pitch-content h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.product-pitch-content h3 em { font-style: italic; color: var(--accent); }
.product-pitch-content p {
  font-size: 14.5px;
  color: var(--ink-dim);
  max-width: 360px;
}

/* ===== Process ===== */
.process-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--line);
}
.process-cell {
  background: var(--bg);
  padding: 52px 36px;
  transition: background 0.4s;
  position: relative;
}
.process-cell:hover { background: var(--bg-2); }
.process-cell-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}
.process-num {
  font-family: var(--font-display);
  font-size: 64px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent);
}
.process-step {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.process-cell h3 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 400;
  margin-bottom: 12px;
  letter-spacing: -0.025em;
}
.process-cell h3 em { font-style: italic; }
.process-cell p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ===== Trust ===== */
.trust-statement {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 500;
  max-width: 1100px;
  margin-bottom: 60px;
}
.trust-statement em { font-style: italic; color: var(--accent); }

.trust-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 60px;
  padding-top: 56px;
  border-top: 1px solid var(--line);
}
.trust-stat .num {
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 12px;
}
.trust-stat .num em { font-style: italic; color: var(--accent); }
.trust-stat .label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

/* ===== CTA / Contact ===== */
.cta-section {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink-dark);
  border-bottom: none;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: start;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 32px;
  color: var(--ink-dark);
}
.cta-title em { font-style: italic; }
.cta-title .underline-accent {
  position: relative;
  display: inline-block;
}
.cta-title .underline-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 8px;
  height: 14px;
  background: var(--accent);
  z-index: -1;
  opacity: 0.9;
}
.cta-sub {
  font-size: 17px;
  color: #4a4a47;
  max-width: 420px;
  line-height: 1.55;
  margin-bottom: 48px;
}

.cta-contacts {
  display: grid;
  gap: 0;
}
.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line-dark);
  display: grid;
  grid-template-columns: 100px 1fr auto;
  align-items: center;
  gap: 24px;
  transition: padding 0.3s;
}
.contact-item:hover {
  padding-left: 8px;
}
.contact-item:first-child { border-top: 1px solid var(--line-dark); }
.contact-item .label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.contact-item .value {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
}
.contact-item .value em { font-style: italic; }
.contact-item .arr {
  color: var(--ink-mute);
  transition: transform 0.25s;
}
.contact-item:hover .arr { transform: translate(4px, -4px); color: var(--accent-warm); }

/* Form */
.cta-form-wrap {
  background: rgba(19, 19, 18, 0.04);
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-dark);
}
.cta-form .form-label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
  margin-top: 24px;
}
.cta-form .form-label:first-child { margin-top: 0; }
.cta-form input,
.cta-form select,
.cta-form textarea {
  color: var(--ink-dark);
  border-bottom-color: var(--line-dark);
  font-size: 16px;
  padding: 10px 0 14px;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder { color: #999; }
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-bottom-color: var(--ink-dark);
}
.cta-form select option { background: var(--paper); color: var(--ink-dark); }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.cta-form textarea { min-height: 100px; resize: vertical; }
.cta-form .btn-dark {
  margin-top: 32px;
}
.form-success {
  margin-top: 16px;
  font-size: 13px;
  color: #1c7a3f;
  display: none;
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}
.form-success.show { display: block; }

/* ===== Footer ===== */
.footer {
  background: var(--bg);
  padding: 100px 0 32px;
  border-top: 1px solid var(--line);
}
.footer-massive {
  font-family: var(--font-display);
  font-size: clamp(80px, 18vw, 260px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 500;
  margin-bottom: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-massive em { font-style: italic; color: var(--accent); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.footer-brand p {
  margin-top: 16px;
  color: var(--ink-dim);
  font-size: 14.5px;
  max-width: 280px;
  line-height: 1.55;
}
.footer-cols h4 {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 22px;
  font-weight: 500;
}
.footer-cols a {
  display: block;
  padding: 7px 0;
  font-size: 14.5px;
  color: var(--ink-dim);
  transition: color 0.2s;
}
.footer-cols a:hover { color: var(--accent); }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 2px;
}
.footer-social .social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: 11px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  transition: color 0.2s, background 0.2s, border-color 0.2s, transform 0.2s;
}
.footer-social .social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-social .social-icon:hover {
  color: var(--ink-dark);
  background: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
}

/* ===== Careers Page ===== */
.careers-hero {
  padding: 180px 0 100px;
  border-bottom: 1px solid var(--line);
}
.careers-hero h1 {
  font-size: clamp(48px, 9vw, 140px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  font-weight: 500;
  margin-bottom: 40px;
  max-width: 1100px;
}
.careers-hero h1 em { font-style: italic; }
.careers-hero h1 .underline-accent { position: relative; display: inline-block; }
.careers-hero h1 .underline-accent::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 8px; height: 10px;
  background: var(--accent);
  z-index: -1;
}
.careers-hero p {
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink-dim);
  max-width: 640px;
  line-height: 1.5;
}

.roles-list {
  border-top: 1px solid var(--line);
}
.role-row {
  display: grid;
  grid-template-columns: 80px 2fr 1fr 1fr 1fr auto;
  gap: 32px;
  padding: 32px 8px;
  border-bottom: 1px solid var(--line);
  align-items: center;
  transition: padding 0.4s var(--easing), background 0.4s;
  cursor: pointer;
}
.role-row:hover {
  padding-left: 24px;
  padding-right: 24px;
  background: rgba(245, 243, 238, 0.02);
}
.role-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.1em;
}
.role-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1;
}
.role-title em { font-style: italic; }
.role-row:hover .role-title { color: var(--accent); }
.role-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-dim);
  letter-spacing: 0.04em;
}
.role-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-dim);
  transition: all 0.3s var(--easing);
}
.role-row:hover .role-arrow {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  transform: rotate(-45deg);
}

.values-bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}
.value-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
}
.value-tile.span-3 { grid-column: span 3; }
.value-tile.span-2 { grid-column: span 2; }
.value-tile.span-4 { grid-column: span 4; }
.value-tile.span-6 { grid-column: span 6; }
.value-tile .num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: block;
}
.value-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 400;
  margin-bottom: 14px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.value-tile h3 em { font-style: italic; }
.value-tile p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.6;
}
.value-tile-accent {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}
.value-tile-accent .num { color: var(--ink-dark); opacity: 0.7; }
.value-tile-accent p { color: rgba(19, 19, 18, 0.75); }

.perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.perk {
  padding: 40px 32px 40px 0;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
}
.perk:nth-child(3n) { border-right: none; padding-right: 0; }
.perk:nth-child(3n+1) { padding-left: 0; }
.perk:nth-child(3n+2) { padding-left: 32px; padding-right: 32px; }
.perk:nth-child(3n) { padding-left: 32px; }
.perk-num {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 0.1em;
}
.perk h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.perk p {
  font-size: 14px;
  color: var(--ink-dim);
  line-height: 1.55;
}

/* ===== Reveal animations ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--easing), transform 0.9s var(--easing);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .services-bento { grid-template-columns: repeat(2, 1fr); }
  .service-tile.span-3,
  .service-tile.span-2,
  .service-tile.span-4 { grid-column: span 1; }
  .service-tile.tall { grid-row: auto; }

  .pricing-grid { grid-template-columns: 1fr; }
  .process-rail { grid-template-columns: 1fr 1fr; }
  .trust-meta { grid-template-columns: 1fr 1fr; gap: 32px; }
  .promise-grid, .cta-grid, .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-actions { justify-content: flex-start; }

  .product-row, .product-pitch { grid-template-columns: 40px 1fr auto; gap: 24px; }
  .product-tag-cell, .product-domain { display: none; }

  .role-row { grid-template-columns: 40px 1fr auto; }
  .role-row .role-meta { display: none; }
  .role-row .role-meta-loc { display: block; font-size: 11px; }

  .values-bento { grid-template-columns: 1fr; }
  .value-tile.span-2, .value-tile.span-3, .value-tile.span-4, .value-tile.span-6 { grid-column: span 1; }

  .perks { grid-template-columns: 1fr; }
  .perk { padding: 32px 0 !important; border-right: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-status { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { grid-template-columns: auto auto; }
  .nav-right { gap: 12px; }

  .container { padding: 0 24px; }
  .nav-inner { padding: 0 24px; }
  .section { padding: 80px 0; }
  .section-head { margin-bottom: 56px; }
  .hero { padding: 130px 0 60px; min-height: auto; }
  .hero-meta { margin-bottom: 48px; }

  .promise { padding: 70px 0; }
  .promise-grid { gap: 40px; }
  .price-list { grid-template-columns: 1fr; column-gap: 0; }
  .process-rail { grid-template-columns: 1fr; }
  .trust-meta { grid-template-columns: 1fr 1fr; gap: 24px; }
  .cta-form-wrap { padding: 32px 24px; }
  .form-row-2 { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .pricing-card { padding: 44px 32px; }
  .careers-hero { padding: 130px 0 70px; }
}

/* ============================================
   ADDITIONS — cursor glow, tools marquee,
   mobile nav, inline code, small polish
   ============================================ */

/* Inline <code> used in copy */
code {
  font-family: var(--font-mono);
  font-size: 0.88em;
  padding: 2px 7px;
  background: rgba(245, 243, 238, 0.06);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  letter-spacing: 0.02em;
}
.value-tile-accent code {
  background: rgba(19, 19, 18, 0.08);
  border-color: rgba(19, 19, 18, 0.15);
  color: var(--ink-dark);
}

/* Cursor glow — soft electric-lime spotlight */
.cursor-glow {
  position: fixed;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200, 242, 75, 0.10), transparent 60%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
  mix-blend-mode: screen;
  transition: opacity 0.4s;
  will-change: left, top;
}
@media (hover: none), (max-width: 768px) {
  .cursor-glow { display: none; }
}

/* Reveal stagger inside grids */
.value-tile.reveal,
.service-tile.reveal,
.pricing-card.reveal,
.process-cell.reveal,
.product-row.reveal,
.promise-point.reveal,
.trust-stat.reveal {
  transform: translateY(28px);
}

/* ===== Tools strip — marquee of AI tools ===== */
.tools-strip {
  padding: 56px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
  overflow: hidden;
  position: relative;
}
.tools-strip-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
  flex-wrap: wrap;
  gap: 16px;
}
.tools-marquee {
  display: flex;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.tools-track {
  display: flex;
  align-items: center;
  gap: 36px;
  padding-right: 36px;
  flex-shrink: 0;
  animation: tools-scroll 38s linear infinite;
  white-space: nowrap;
}
.tools-track span {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-style: italic;
  transition: color 0.3s;
}
.tools-track span:hover { color: var(--accent); }
.tools-track i {
  font-style: normal;
  color: var(--accent);
  font-size: 18px;
  opacity: 0.6;
}
@keyframes tools-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}
.tools-strip:hover .tools-track {
  animation-play-state: paused;
}

/* ===== Mobile nav drawer (replaces inline JS styling) ===== */
@media (max-width: 768px) {
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    right: 16px;
    left: 16px;
    background: rgba(13, 13, 12, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-radius: 12px;
    gap: 14px;
    z-index: 99;
  }
  .nav-links.open li a {
    display: block;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
    color: var(--ink);
  }
  .nav-links.open li:last-child a { border-bottom: none; }

  .nav-burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity: 0; }
  .nav-burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .nav-burger span { transition: transform 0.25s, opacity 0.2s; }

  /* Smaller hero spacing on mobile */
  .hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 36px;
  }
  .hero-actions { gap: 16px; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-actions .arrow-link { width: 100%; justify-content: center; }

  .price-list-header { flex-direction: column; align-items: flex-start; }

  .product-pitch { grid-template-columns: 40px 1fr; gap: 16px; padding: 40px 16px; }
  .product-pitch .btn { grid-column: span 2; justify-self: start; }

  .cta-form-wrap { background: rgba(19, 19, 18, 0.05); }
  .contact-item { grid-template-columns: 80px 1fr auto; }
  .contact-item .value { font-size: 18px; }

  .tools-track span { font-size: 28px; }
}

/* ============================================
   BEFORE / AFTER VISUAL
   ============================================ */
.ba-section {
  padding: 60px 0 120px;
  border-bottom: 1px solid var(--line);
}
.ba-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 32px;
  align-items: stretch;
}
.ba-panel {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  transition: border-color 0.3s, background 0.3s;
}
.ba-panel:hover { border-color: var(--line-strong); }
.ba-before { background: linear-gradient(180deg, var(--bg-2), rgba(255, 91, 31, 0.04)); }
.ba-after  { background: linear-gradient(180deg, var(--bg-2), rgba(200, 242, 75, 0.05)); }

.ba-caption .mono {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--ink-mute);
}
.ba-before .mono { color: var(--accent-warm); }
.ba-after .mono  { color: var(--accent); }
.ba-caption h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
.ba-caption h3 em { font-style: italic; }
.ba-caption p {
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.55;
  max-width: 340px;
}
.ba-svg {
  width: 100%;
  height: auto;
  max-height: 280px;
}

.ba-arrow {
  align-self: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  padding: 0 4px;
}
.ba-arrow svg { width: 56px; height: 56px; }
.ba-arrow .mono { color: var(--ink-mute); font-size: 10px; }

@media (max-width: 900px) {
  .ba-grid { grid-template-columns: 1fr; gap: 16px; }
  .ba-arrow { transform: rotate(90deg); padding: 8px 0; }
  .ba-section { padding: 40px 0 80px; }
}

/* ============================================
   VIBE CODER HOOK
   ============================================ */
.vibe-hook {
  padding: 120px 0;
  background: var(--paper);
  color: var(--ink-dark);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.vibe-hook::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(200, 242, 75, 0.18), transparent 50%);
  pointer-events: none;
}
.vibe-hook-inner {
  max-width: 1080px;
  position: relative;
}
.vibe-hook-eyebrow {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--ink-mute);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  font-family: var(--font-body);
  text-transform: none;
}
.vibe-hook-statement {
  font-family: var(--font-display);
  font-size: clamp(34px, 5.4vw, 80px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 500;
  color: var(--ink-dark);
  margin-bottom: 44px;
}
.vibe-hook-statement em {
  font-style: italic;
  position: relative;
  display: inline-block;
}
.vibe-hook-statement em::before {
  content: '';
  position: absolute;
  left: -4px; right: -4px; bottom: 6px;
  height: 12px;
  background: var(--accent);
  opacity: 0.85;
  z-index: -1;
}
.vibe-hook-statement .accent {
  color: var(--ink-dark);
  font-style: italic;
  background: var(--accent);
  padding: 0 10px;
}
.vibe-hook-cta {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.vibe-hook-cta .arrow-link {
  font-size: 14px;
  color: var(--ink-dark);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 0;
}
.vibe-hook-cta .arrow-link:hover { color: var(--accent-warm); }
.vibe-hook-cta .arrow-link span { transition: transform 0.25s; }
.vibe-hook-cta .arrow-link:hover span { transform: translateX(4px); }

@media (max-width: 768px) {
  .vibe-hook { padding: 72px 0; }
  .vibe-hook-cta .btn { width: 100%; justify-content: center; }
  .vibe-hook-cta .arrow-link { width: 100%; justify-content: center; }
}

/* ============================================
   HOOK CLOSER (after pain points)
   ============================================ */
.hook-closer {
  margin-top: 60px;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--ink-dim);
  max-width: 880px;
}
.hook-closer strong {
  font-weight: 500;
  color: var(--ink);
  font-style: italic;
}
.hook-closer em {
  font-style: italic;
  color: var(--accent);
}

/* ============================================
   PRICING TOGGLE (Vibe / Business)
   ============================================ */
.pricing-toggle {
  display: inline-flex;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 100px;
  margin-bottom: 48px;
  background: var(--bg-2);
}
.pricing-tab {
  padding: 11px 22px;
  border-radius: 100px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-dim);
  transition: all 0.3s var(--easing);
  letter-spacing: 0.005em;
  cursor: pointer;
  white-space: nowrap;
}
.pricing-tab:hover { color: var(--ink); }
.pricing-tab.active {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
}
.pricing-pane { display: none; }
.pricing-pane.active { display: block; animation: fadeUp 0.5s var(--easing); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
.pricing-pane-intro {
  max-width: 760px;
  margin-bottom: 56px;
  padding: 24px 28px;
  border-left: 2px solid var(--accent);
  font-size: 15.5px;
  color: var(--ink-dim);
  line-height: 1.6;
  background: rgba(200, 242, 75, 0.03);
}
.pricing-pane-intro strong {
  color: var(--ink);
  font-weight: 500;
}

/* ============================================
   PRICING CTA BOX
   ============================================ */
.pricing-cta-box {
  margin-top: 80px;
  padding: 48px 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bg-2), rgba(200, 242, 75, 0.05));
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.pricing-cta-box h3 {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 34px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 10px;
  line-height: 1.1;
}
.pricing-cta-box p {
  font-size: 15.5px;
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.55;
}
@media (max-width: 768px) {
  .pricing-cta-box {
    grid-template-columns: 1fr;
    padding: 32px 28px;
    gap: 24px;
  }
  .pricing-cta-box .btn { width: 100%; justify-content: center; }
}

/* ============================================
   PROCESS — 3-column variant
   ============================================ */
.process-rail-3 { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) { .process-rail-3 { grid-template-columns: 1fr; } }

/* ============================================
   FAQ — accordion
   ============================================ */
.faq-list {
  max-width: 920px;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 0;
  transition: background 0.3s;
}
.faq-item:hover { background: rgba(245, 243, 238, 0.015); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 28px 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  position: relative;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary h3 {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.2;
  flex: 1;
  margin: 0;
}
.faq-icon {
  font-family: var(--font-mono);
  font-size: 24px;
  font-weight: 500;
  color: var(--ink-mute);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  transition: all 0.3s var(--easing);
  flex-shrink: 0;
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
  transform: rotate(45deg);
}
.faq-item[open] summary h3 { color: var(--ink); }
.faq-item > p {
  padding: 0 8px 32px;
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.65;
  max-width: 780px;
  animation: faqOpen 0.4s var(--easing);
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   CAREERS — empty roles state
   ============================================ */
.roles-empty {
  padding: 56px 48px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--bg-2);
  max-width: 880px;
  position: relative;
}
.roles-empty-num {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--accent);
  font-size: 11px;
}
.roles-empty h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 400;
  letter-spacing: -0.025em;
  margin-bottom: 14px;
}
.roles-empty > p {
  font-size: 16px;
  color: var(--ink-dim);
  line-height: 1.55;
  margin-bottom: 36px;
  max-width: 600px;
}
.roles-future {
  border-top: 1px solid var(--line);
}
.roles-future li {
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink-dim);
  display: flex;
  align-items: center;
  gap: 18px;
}
.roles-future li:last-child { border-bottom: none; }
.roles-future li .mono {
  font-size: 9.5px;
  padding: 4px 8px;
  background: rgba(200, 242, 75, 0.1);
  color: var(--accent);
  border-radius: 4px;
  letter-spacing: 0.12em;
}
@media (max-width: 768px) {
  .roles-empty { padding: 36px 24px; }
  .roles-empty-num { position: static; margin-bottom: 16px; display: inline-block; }
  .roles-future li { font-size: 16px; flex-wrap: wrap; }
}

/* ============================================================
   ============================================================
   SKIN REFRESH v2 — confident type, full dark, mobile-first
   ============================================================
   ============================================================ */

/* ===== Confidence pass on display weights ===== */
.hero-title {
  font-weight: 500;
  letter-spacing: -0.045em;
  font-size: clamp(44px, 8.5vw, 128px);
  line-height: 0.96;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--ink);
}
.hero-sub {
  font-size: clamp(16px, 1.35vw, 19px);
  color: var(--ink-dim);
  font-weight: 400;
  line-height: 1.55;
  max-width: 560px;
}

.section-title {
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(36px, 5.8vw, 84px);
  line-height: 0.98;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--accent); }
.section-sub { font-size: 16.5px; color: var(--ink-dim); font-weight: 400; }

.cta-title,
.careers-hero h1 {
  font-weight: 500;
  letter-spacing: -0.045em;
}
.cta-title em, .careers-hero h1 em { font-style: italic; font-weight: 500; }

.footer-massive {
  font-weight: 500;
  letter-spacing: -0.055em;
  font-size: clamp(64px, 16vw, 220px);
}
.footer-massive em { font-style: italic; color: var(--accent); font-weight: 500; }

.trust-statement {
  font-weight: 500;
  letter-spacing: -0.035em;
  font-size: clamp(32px, 4.6vw, 64px);
  line-height: 1.08;
}
.trust-statement em { color: var(--accent); font-style: italic; }

/* Card titles */
.pricing-name,
.product-name-cell,
.process-cell h3,
.service-tile h3,
.value-tile h3,
.ba-caption h3,
.roles-empty h3,
.perk h4,
.faq-item summary h3 {
  font-weight: 500;
  letter-spacing: -0.03em;
}

.pricing-amount,
.trust-stat .num,
.process-num {
  font-weight: 500;
  letter-spacing: -0.04em;
}

/* ===== Dark conversion: vibe-hook (was paper) ===== */
.vibe-hook {
  background: var(--bg);
  color: var(--ink);
  padding: 140px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.vibe-hook::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 30%, var(--accent-glow), transparent 55%),
    radial-gradient(circle at 15% 80%, rgba(193, 255, 54, 0.12), transparent 55%);
  pointer-events: none;
  opacity: 0.6;
}
.vibe-hook-eyebrow {
  color: var(--accent);
  letter-spacing: 0;
  font-weight: 500;
}
.vibe-hook-statement {
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.04em;
  font-size: clamp(30px, 5.2vw, 76px);
  line-height: 1.05;
}
.vibe-hook-statement em {
  font-style: italic;
  color: var(--accent);
  font-weight: 500;
}
.vibe-hook-statement em::before { display: none; }
.vibe-hook-statement .accent {
  color: var(--ink-dark);
  background: var(--accent);
  padding: 2px 14px;
  border-radius: 4px;
  font-style: normal;
  display: inline-block;
  margin-top: 6px;
}
.vibe-hook-cta .arrow-link { color: var(--ink-dim); }
.vibe-hook-cta .arrow-link:hover { color: var(--accent); }

/* ===== Dark conversion: cta-section (was paper) ===== */
.cta-section {
  background: var(--bg);
  color: var(--ink);
  padding: 140px 0 120px;
  border-top: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 0%, var(--accent-glow), transparent 60%);
  opacity: 0.5;
  pointer-events: none;
}
.cta-section > * { position: relative; }
.cta-title { color: var(--ink); }
.cta-title .underline-accent::after { background: var(--accent); opacity: 1; height: 12px; bottom: 6px; }
.cta-sub { color: var(--ink-dim); }

/* Contact items inside dark CTA */
.cta-section .contact-item {
  border-bottom: 1px solid var(--line);
}
.cta-section .contact-item:first-child { border-top: 1px solid var(--line); }
.cta-section .contact-item .label { color: var(--ink-mute); }
.cta-section .contact-item .value { color: var(--ink); }
.cta-section .contact-item:hover .arr { color: var(--accent); }

/* Form on dark CTA */
.cta-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px;
}
.cta-form .form-label { color: var(--ink-mute); }
.cta-form input,
.cta-form select,
.cta-form textarea {
  color: var(--ink);
  border-bottom-color: var(--line-strong);
  background: transparent;
  font-size: 15.5px;
  padding: 12px 0;
}
.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--ink-mute);
}
.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-bottom-color: var(--accent);
}
.cta-form select option { background: var(--bg-2); color: var(--ink); }
.cta-form .btn-dark {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
}
.cta-form .btn-dark:hover { background: var(--accent-hover); }
.form-success { color: var(--accent); }

/* Pricing card featured — keep paper for visual hierarchy but punch it up */
.pricing-card-featured {
  position: relative;
}
.pricing-card-featured::before {
  content: '';
  position: absolute;
  inset: -1px;
  background: linear-gradient(135deg, var(--accent), transparent 60%);
  z-index: -1;
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity 0.4s;
}
.pricing-card-featured:hover::before { opacity: 0.6; }

/* ===== Confident card aesthetic ===== */
.service-tile,
.value-tile,
.pricing-card,
.process-cell {
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--easing), border-color 0.4s, background 0.4s, box-shadow 0.4s;
}
.service-tile:hover,
.value-tile:hover {
  transform: translateY(-3px);
  border-color: var(--line-strong);
}
.value-tile {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.value-tile h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 32px);
  margin-bottom: 12px;
  line-height: 1.1;
}
.value-tile h3 em { color: var(--accent); font-style: italic; }
.value-tile-accent h3 em { color: var(--ink-dark); }
.value-tile p { font-size: 14.5px; line-height: 1.6; }

/* Buttons — slightly more glow */
.btn-primary {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
  box-shadow: 0 4px 20px -8px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--ink-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px -8px var(--accent-glow);
}
.btn-dark {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
}
.btn-dark:hover { background: var(--accent-hover); }
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

/* Logo dot — punchier glow */
.logo-mark {
  box-shadow: 0 0 0 4px rgba(193, 255, 54, 0.15), 0 0 16px var(--accent-glow);
}
.status-dot {
  box-shadow: 0 0 0 0 var(--accent-glow);
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 var(--accent-glow); }
  70% { box-shadow: 0 0 0 8px rgba(193, 255, 54, 0); }
  100% { box-shadow: 0 0 0 0 rgba(193, 255, 54, 0); }
}

/* Nav scrolled — update to new bg */
.nav.scrolled {
  background: rgba(10, 10, 10, 0.78);
  border-bottom-color: var(--line);
}

/* Hero — tighter top spacing on mobile */
.hero { padding-top: 140px; }

/* Underline accent — bigger punch */
.hero-title .underline-accent::after,
.cta-title .underline-accent::after,
.careers-hero h1 .underline-accent::after {
  background: var(--accent);
  opacity: 0.95;
  height: 12px;
  bottom: 4px;
  border-radius: 2px;
}

/* Process numerals — bolder lime */
.process-num {
  color: var(--accent);
  font-size: 72px;
  font-weight: 500;
}

/* Trust stats — bigger, more confident */
.trust-stat .num {
  font-size: clamp(48px, 6vw, 76px);
  font-weight: 500;
  color: var(--ink);
}
.trust-stat .num em { color: var(--accent); font-style: italic; }

/* Service tile — heading */
.service-tile h3 {
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.05;
}
.service-tile h3 em { color: var(--accent); font-style: italic; }
.service-tile-accent h3 em { color: var(--ink-dark); }

/* Section nums override no longer needed — base rule handles it */

/* Pricing toggle hover glow */
.pricing-tab.active {
  box-shadow: 0 4px 16px -6px var(--accent-glow);
}

/* Tools strip — italic emphasis on Geist looks better */
.tools-track span { font-style: italic; }

/* Logo accent — italic in Geist */
.logo-text em { font-style: italic; color: var(--accent); font-weight: 500; }

/* ============================================================
   MOBILE-FIRST POLISH
   ============================================================ */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .section { padding: 100px 0; }
  .vibe-hook { padding: 100px 0; }
  .cta-section { padding: 100px 0; }
}

@media (max-width: 768px) {
  /* Tighter rhythm */
  .container, .nav-inner { padding: 0 20px; }
  .section { padding: 72px 0; }
  .section-head { margin-bottom: 44px; }
  .vibe-hook { padding: 72px 0; }
  .cta-section { padding: 80px 0; }

  /* Hero */
  .hero { padding: 110px 0 56px; min-height: auto; }
  .hero-title { font-size: clamp(40px, 11vw, 64px); line-height: 0.98; }
  .hero-sub { font-size: 15.5px; }
  .hero-meta { font-size: 10px; }

  /* Section heads */
  .section-title { font-size: clamp(32px, 9vw, 48px); }
  .cta-title { font-size: clamp(36px, 11vw, 56px); }
  .trust-statement { font-size: clamp(26px, 7vw, 38px); }

  /* Vibe hook */
  .vibe-hook-statement { font-size: clamp(26px, 8vw, 40px); }

  /* Cards — touch friendly */
  .service-tile, .value-tile { padding: 28px 24px; }
  .service-tile h3, .value-tile h3 { font-size: clamp(22px, 6vw, 28px); }
  .pricing-card { padding: 36px 28px; }
  .pricing-amount { font-size: 46px; }

  /* Pricing toggle */
  .pricing-toggle { width: 100%; }
  .pricing-tab { flex: 1; padding: 12px 10px; font-size: 13px; text-align: center; }

  /* Form */
  .cta-form-wrap { padding: 28px 22px; }
  .cta-form input, .cta-form select, .cta-form textarea { font-size: 16px; }
  .form-row-2 { gap: 20px; }

  /* Footer */
  .footer { padding: 64px 0 24px; }
  .footer-massive { font-size: clamp(56px, 22vw, 96px); margin-bottom: 48px; padding-bottom: 36px; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; margin-bottom: 36px; }

  /* Buttons — full-width touch targets */
  .btn { padding: 15px 24px; font-size: 14.5px; }
  .vibe-hook-cta { flex-direction: column; align-items: stretch; }
  .vibe-hook-cta .btn,
  .vibe-hook-cta .arrow-link { width: 100%; justify-content: center; }

  /* Process / trust */
  .process-num { font-size: 56px; }
  .trust-meta { grid-template-columns: 1fr 1fr; gap: 28px; padding-top: 36px; }
  .trust-stat .num { font-size: 44px; }

  /* Tools marquee shrink */
  .tools-strip { padding: 36px 0; }
  .tools-strip-head { margin-bottom: 24px; }
  .tools-track span { font-size: 24px; }
  .tools-track { gap: 22px; padding-right: 22px; }

  /* Hook closer */
  .hook-closer { font-size: 18px; margin-top: 36px; }

  /* Pricing intro */
  .pricing-pane-intro { padding: 18px 20px; margin-bottom: 36px; font-size: 14.5px; }

  /* Pricing CTA box */
  .pricing-cta-box { margin-top: 56px; padding: 28px 24px; }

  /* FAQ */
  .faq-item summary { padding: 22px 4px; gap: 16px; }
  .faq-item summary h3 { font-size: 17px; }
  .faq-item > p { padding: 0 4px 26px; font-size: 15px; }
  .faq-icon { width: 28px; height: 28px; font-size: 20px; }

  /* Disable magnetic on touch */
  .btn-primary, .btn-dark, .nav-cta { transform: none !important; }
}

@media (max-width: 420px) {
  .hero-title { font-size: 38px; }
  .section-title { font-size: 32px; }
  .cta-title { font-size: 34px; }
  .vibe-hook-statement { font-size: 26px; }
  .footer-massive { font-size: 56px; }
  .pricing-amount { font-size: 40px; }
  .footer-inner { grid-template-columns: 1fr; }
}

/* Accessibility — visible focus */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .cursor-glow { display: none; }
}

/* ============================================================
   SUPABASE-WIRED FORMS — honeypot + status states
   ============================================================ */
.honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  border: 0 !important;
  padding: 0 !important;
}

.form-status {
  display: none;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid transparent;
  line-height: 1.45;
}
.form-status.show { display: block; animation: statusIn 0.3s var(--easing); }

.form-status.loading {
  color: var(--ink-dim);
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
}
.form-status.success {
  color: var(--accent);
  background: var(--accent-soft);
  border-color: rgba(193, 255, 54, 0.35);
}
.form-status.error {
  color: var(--accent-warm);
  background: rgba(255, 107, 61, 0.08);
  border-color: rgba(255, 107, 61, 0.35);
}

@keyframes statusIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

button[type="submit"]:disabled {
  opacity: 0.6;
  cursor: wait;
  pointer-events: none;
}




/* ============================================================
   BLOG — index page
   ============================================================ */
.blog-index-hero {
  padding: 180px 0 80px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.blog-index-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, var(--accent-glow), transparent 50%);
  opacity: 0.4;
  pointer-events: none;
}
.blog-index-hero h1 {
  font-size: clamp(40px, 7vw, 96px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 28px;
  max-width: 1000px;
  position: relative;
}
.blog-index-hero h1 em { font-style: italic; color: var(--accent); font-weight: 500; }
.blog-index-sub {
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
  max-width: 640px;
  line-height: 1.55;
  position: relative;
}

.blog-list-section { padding-top: 100px; }
.blog-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.blog-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: background 0.35s var(--easing), border-color 0.35s, transform 0.35s;
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card:hover {
  background: var(--bg-3);
  border-color: var(--line-strong);
  transform: translateY(-2px);
}
.blog-card-feature {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--bg-2), rgba(193, 255, 54, 0.05));
}
.blog-card-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-mute);
  letter-spacing: 0.06em;
  margin-bottom: 22px;
}
.blog-card-meta .mono { color: var(--accent); font-weight: 600; letter-spacing: 0.12em; }
.blog-card h2 {
  font-size: clamp(28px, 3.4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.05;
  margin-bottom: 16px;
}
.blog-card h2 em { color: var(--accent); font-style: italic; }
.blog-card h3 {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 12px;
}
.blog-card h3 em { color: var(--accent); font-style: italic; }
.blog-card p {
  color: var(--ink-dim);
  font-size: 15.5px;
  line-height: 1.55;
}
.blog-card-tag {
  display: inline-block;
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================================
   BLOG — article page
   ============================================================ */
.blog-article-head {
  padding: 160px 0 56px;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.blog-article-head::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 0%, var(--accent-glow), transparent 60%);
  opacity: 0.35;
  pointer-events: none;
}
.blog-breadcrumb {
  position: relative;
  font-size: 11px;
  color: var(--ink-mute);
  margin-bottom: 28px;
  letter-spacing: 0.1em;
}
.blog-breadcrumb a { color: var(--accent); }
.blog-breadcrumb a:hover { text-decoration: underline; }

.blog-article-head h1 {
  position: relative;
  font-size: clamp(36px, 6.5vw, 86px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 1100px;
}
.blog-article-head h1 em { color: var(--accent); font-style: italic; }
.blog-meta {
  position: relative;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.05em;
}

.blog-content {
  max-width: 760px;
  margin: 0 auto;
  padding-top: 56px;
  padding-bottom: 80px;
}
.blog-lede {
  font-size: 20px;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
  font-weight: 400;
}
.blog-lede strong { color: var(--accent); font-weight: 500; }
.blog-lede em { font-style: italic; }

.blog-content h2 {
  font-size: clamp(24px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-top: 56px;
  margin-bottom: 18px;
}
.blog-content h2 em { color: var(--accent); font-style: italic; }
.blog-content h3 {
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-top: 36px;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 20px;
}
.blog-content p strong { color: var(--ink); font-weight: 500; }
.blog-content p em { font-style: italic; color: var(--ink); }
.blog-content a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(193, 255, 54, 0.4);
  text-underline-offset: 3px;
}
.blog-content a:hover { text-decoration-color: var(--accent); }

.blog-list-bullet, .blog-list-num {
  margin: 22px 0 28px;
  padding-left: 28px;
}
.blog-list-bullet li, .blog-list-num li {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-dim);
  margin-bottom: 12px;
  list-style: disc;
}
.blog-list-num li { list-style: decimal; }
.blog-list-bullet li strong, .blog-list-num li strong { color: var(--ink); font-weight: 500; }

.blog-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 22px;
  margin: 28px 0;
  font-style: italic;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.65;
}

.blog-divider {
  border: none;
  border-top: 1px solid var(--line);
  margin: 56px 0;
}

.blog-cta-card {
  background: linear-gradient(135deg, var(--bg-2), rgba(193, 255, 54, 0.08));
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin: 36px 0;
}
.blog-cta-card h3 {
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
  color: var(--ink);
}
.blog-cta-card h3 em { color: var(--accent); font-style: italic; }
.blog-cta-card p { color: var(--ink-dim); font-size: 15.5px; line-height: 1.6; margin-bottom: 20px; }

.blog-also-h {
  margin-top: 56px;
  margin-bottom: 24px;
  font-size: 20px !important;
  color: var(--ink-mute);
  font-weight: 500;
}
.blog-also {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.blog-also-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  text-decoration: none;
  transition: background 0.3s, border-color 0.3s;
  display: block;
}
.blog-also-card:hover { background: var(--bg-3); border-color: var(--line-strong); }
.blog-also-card .mono {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.12em;
  display: block;
  margin-bottom: 10px;
}
.blog-also-card h4 {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ink);
  letter-spacing: -0.01em;
}

@media (max-width: 768px) {
  .blog-index-hero { padding: 130px 0 56px; }
  .blog-list { grid-template-columns: 1fr; }
  .blog-card-feature { grid-column: span 1; }
  .blog-card { padding: 24px; }
  .blog-article-head { padding: 110px 0 36px; }
  .blog-content { padding: 36px 20px 60px; }
  .blog-content p, .blog-list-bullet li, .blog-list-num li { font-size: 16px; }
  .blog-lede { font-size: 17px; }
  .blog-also { grid-template-columns: 1fr; }
  .blog-cta-card { padding: 24px; }
}

/* ============================================================
   404 PAGE
   ============================================================ */
.error-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
}
.error-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, var(--accent-glow), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}
.error-code { color: var(--accent); font-size: 12px; margin-bottom: 32px; position: relative; }
.error-title {
  position: relative;
  font-size: clamp(48px, 9vw, 128px);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 0.98;
  margin-bottom: 28px;
}
.error-title em { color: var(--accent); font-style: italic; }
.error-sub {
  position: relative;
  font-size: clamp(16px, 1.4vw, 19px);
  color: var(--ink-dim);
  max-width: 560px;
  line-height: 1.55;
  margin-bottom: 44px;
}
.error-cta {
  position: relative;
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}
.error-cta .arrow-link {
  color: var(--ink-dim);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}
.error-cta .arrow-link:hover { color: var(--accent); }
.error-cta .arrow-link span { transition: transform 0.25s; }
.error-cta .arrow-link:hover span { transform: translateX(4px); }

/* ============================================================
   ADMIN — shared
   ============================================================ */
.admin-body {
  background: var(--bg);
  background-attachment: fixed;
}

.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 40px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.admin-badge {
  margin-left: 12px;
  padding: 3px 8px;
  background: var(--accent);
  color: var(--ink-dark);
  border-radius: 4px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 14px;
}
.admin-user-email {
  font-size: 11px;
  color: var(--ink-dim);
}

.btn-sm {
  padding: 8px 14px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  color: var(--ink);
}
.btn-outline-sm { border-color: var(--line-strong); color: var(--ink); }
.btn-outline-sm:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

/* ============================================================
   ADMIN — LOGIN
   ============================================================ */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  position: relative;
}
.admin-login::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 30%, var(--accent-glow), transparent 50%);
  opacity: 0.35;
  pointer-events: none;
}
.admin-login-card {
  position: relative;
  width: 100%;
  max-width: 440px;
  padding: 48px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.logo-stack {
  display: inline-flex;
  align-items: center;
  margin-bottom: 32px;
}
.admin-eyebrow {
  color: var(--accent);
  font-size: 10px;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
  font-weight: 600;
}
.admin-login-card h1 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 12px;
}
.admin-login-card h1 em { color: var(--accent); font-style: italic; }
.admin-login-card > p {
  color: var(--ink-dim);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 32px;
}
.admin-login-form input {
  background: transparent;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  font-size: 15px;
  margin-top: 6px;
}
.admin-login-form input:focus {
  border-color: var(--accent);
  background: rgba(193, 255, 54, 0.02);
}
.admin-login-form .btn { margin-top: 24px; }
.admin-foot {
  text-align: center;
  margin-top: 28px;
  font-size: 11px;
  color: var(--ink-mute);
}
.admin-foot a { color: var(--ink-dim); }
.admin-foot a:hover { color: var(--accent); }

/* ============================================================
   ADMIN — DASHBOARD
   ============================================================ */
.admin-main {
  padding: 36px 40px 80px;
  max-width: 1400px;
  margin: 0 auto;
}

.admin-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 36px;
}
.stat-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
}
.stat-label {
  color: var(--ink-mute);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
  display: block;
}
.stat-value {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.dot-accent {
  color: var(--accent);
  position: relative;
}
.dot-accent::after {
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  margin-left: 8px;
  margin-bottom: 3px;
  vertical-align: middle;
  box-shadow: 0 0 8px var(--accent-glow);
}

.admin-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
  padding: 4px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  width: fit-content;
}
.admin-tab {
  padding: 9px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  background: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  font-family: var(--font-body);
}
.admin-tab:hover { color: var(--ink); }
.admin-tab.active {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
}

.admin-toolbar {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.admin-search {
  flex: 1;
  min-width: 240px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}
.admin-search:focus { border-color: var(--accent); }
.admin-search::placeholder { color: var(--ink-mute); }

.admin-select {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
  cursor: pointer;
}
.admin-select:focus { border-color: var(--accent); }
.admin-select option { background: var(--bg-2); color: var(--ink); }
.admin-select-block { width: 100%; }

.admin-table-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
}
.admin-table thead {
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.admin-table th {
  text-align: left;
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.admin-table td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
  color: var(--ink);
  vertical-align: middle;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr.row-clickable {
  cursor: pointer;
  transition: background 0.2s;
}
.admin-table tr.row-clickable:hover {
  background: rgba(193, 255, 54, 0.03);
}
.td-date { font-family: var(--font-mono); font-size: 11.5px; color: var(--ink-dim); white-space: nowrap; }
.td-email a { color: var(--ink-dim); text-decoration: none; }
.td-email a:hover { color: var(--accent); }
.td-meta { color: var(--ink-dim); }

.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid;
}
.status-new        { color: var(--accent);      border-color: rgba(193,255,54,0.35); background: var(--accent-soft); }
.status-contacted  { color: #4ec9f5;           border-color: rgba(78,201,245,0.35); background: rgba(78,201,245,0.08); }
.status-qualified  { color: #b794f6;           border-color: rgba(183,148,246,0.35); background: rgba(183,148,246,0.08); }
.status-closed     { color: var(--ink-mute);   border-color: var(--line-strong); background: rgba(255,255,255,0.03); }
.status-archived   { color: var(--ink-mute);   border-color: var(--line); background: transparent; }
.status-reviewed   { color: #4ec9f5;           border-color: rgba(78,201,245,0.35); background: rgba(78,201,245,0.08); }
.status-shortlisted{ color: var(--accent);     border-color: rgba(193,255,54,0.35); background: var(--accent-soft); }

.btn-link {
  background: none;
  border: none;
  color: var(--accent);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-body);
  font-weight: 500;
}
.btn-link:hover { text-decoration: underline; }

.admin-loading, .admin-empty, .admin-error {
  text-align: center;
  padding: 60px 20px !important;
  color: var(--ink-mute) !important;
  font-size: 14px !important;
}
.admin-error { color: var(--accent-warm) !important; }

/* ===== DRAWER ===== */
.admin-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--easing);
  z-index: 80;
}
.admin-drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}
.admin-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: var(--bg-2);
  border-left: 1px solid var(--line);
  transform: translateX(100%);
  transition: transform 0.4s var(--easing);
  z-index: 90;
  overflow-y: auto;
}
.admin-drawer.open { transform: translateX(0); }
.admin-drawer-inner { padding: 36px; }
.admin-drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--bg-3);
  border: 1px solid var(--line);
  color: var(--ink);
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.admin-drawer-close:hover { background: var(--accent); color: var(--ink-dark); border-color: var(--accent); }
.admin-drawer-eyebrow { color: var(--accent); font-size: 10.5px; margin-bottom: 16px; letter-spacing: 0.14em; font-weight: 600; }
.admin-drawer h2 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
.admin-drawer-email {
  display: block;
  color: var(--accent);
  margin-bottom: 32px;
  font-size: 14px;
}
.admin-drawer-list {
  margin-bottom: 36px;
  border-top: 1px solid var(--line);
}
.admin-drawer-list dt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-mute);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 18px;
  margin-bottom: 6px;
}
.admin-drawer-list dd {
  color: var(--ink);
  font-size: 14px;
  line-height: 1.55;
}
.admin-pre {
  font-family: var(--font-body);
  white-space: pre-wrap;
  background: var(--bg-3);
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 13.5px;
  line-height: 1.55;
}
.admin-drawer-list a {
  color: var(--accent);
  word-break: break-all;
}
.admin-drawer-actions {
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* ===== ADMIN responsive ===== */
@media (max-width: 900px) {
  .admin-topbar { padding: 14px 20px; }
  .admin-main { padding: 24px 20px 60px; }
  .admin-stats { grid-template-columns: 1fr 1fr; }
  .admin-table th, .admin-table td { padding: 12px 10px; font-size: 12.5px; }
  .th-meta, .td-meta { display: none; }
  .admin-drawer { max-width: 100%; }
  .admin-user-email { display: none; }
  .stat-value { font-size: 32px; }
}

/* ============================================================
   ADMIN — top nav + page header
   ============================================================ */
.admin-nav {
  display: flex;
  gap: 24px;
}
.admin-nav a {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-dim);
  padding: 6px 2px;
  position: relative;
  text-decoration: none;
  transition: color 0.2s;
}
.admin-nav a:hover { color: var(--ink); }
.admin-nav a.active { color: var(--accent); }
.admin-nav a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -4px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.admin-pageheader {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 36px;
  gap: 24px;
  flex-wrap: wrap;
}
.admin-pagetitle {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--ink);
}
.admin-pagetitle em { color: var(--accent); font-style: italic; }

/* Post list cells */
.post-title-cell {
  color: var(--ink);
  font-weight: 500;
  font-size: 14.5px;
  text-decoration: none;
  letter-spacing: -0.01em;
}
.post-title-cell:hover { color: var(--accent); }
.post-slug-cell {
  color: var(--ink-mute);
  font-size: 10.5px;
  margin-top: 2px;
  letter-spacing: 0;
}

/* ============================================================
   ADMIN — Editor
   ============================================================ */
.editor-main {
  max-width: 1400px;
  margin: 0 auto;
  padding: 28px 32px 80px;
}
.editor-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.back-link {
  color: var(--ink-mute);
  font-size: 11px;
  text-decoration: none;
}
.back-link:hover { color: var(--accent); }
.editor-pagetitle {
  flex: 1;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.editor-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.editor-actions .form-status {
  margin: 0;
  padding: 8px 14px;
  font-size: 11.5px;
}

.editor-meta {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  margin-bottom: 18px;
}
.editor-meta-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 22px;
}
.editor-field-full { grid-column: 1 / -1; }
.editor-field .form-label {
  display: block;
  margin-bottom: 6px;
  color: var(--ink-mute);
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.editor-input {
  width: 100%;
  background: var(--bg);
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--ink);
  font-size: 14.5px;
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.2s;
}
.editor-input:focus {
  border-color: var(--accent);
  background: rgba(193, 255, 54, 0.02);
}
.editor-input.mono { font-family: var(--font-mono); font-size: 13px; }
.editor-input-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.02em;
  padding: 14px 16px;
}
textarea.editor-input { resize: vertical; min-height: 60px; font-family: var(--font-body); }
select.editor-input { cursor: pointer; }
select.editor-input option { background: var(--bg-2); color: var(--ink); }

/* Split markdown editor + preview */
.editor-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 600px;
}
.editor-pane {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.editor-pane-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 18px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
}
.editor-pane-head .mono {
  font-size: 10.5px;
  color: var(--ink-mute);
  letter-spacing: 0.14em;
  font-weight: 600;
}
.editor-toolbar {
  display: flex;
  gap: 4px;
}
.md-btn {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink-dim);
  width: 30px;
  height: 28px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 12px;
  font-family: var(--font-mono);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}
.md-btn:hover {
  background: var(--accent);
  color: var(--ink-dark);
  border-color: var(--accent);
}
.md-btn b, .md-btn i { font-size: 13px; }

.editor-textarea {
  flex: 1;
  width: 100%;
  background: transparent;
  border: none;
  outline: none;
  padding: 24px 28px;
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 14px;
  line-height: 1.7;
  resize: none;
  min-height: 540px;
}
.editor-textarea::placeholder { color: var(--ink-mute); }

.editor-preview {
  flex: 1;
  padding: 32px 28px;
  overflow-y: auto;
  max-width: none !important;
  margin: 0 !important;
}
.editor-preview h1 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  margin: 28px 0 14px;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--ink);
}
.editor-preview h2 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin: 32px 0 12px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.editor-preview h3 {
  font-size: 17px;
  font-weight: 500;
  margin: 24px 0 8px;
  color: var(--ink);
}
.editor-preview p,
.editor-preview li {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-dim);
  margin-bottom: 14px;
}
.editor-preview ul, .editor-preview ol {
  padding-left: 24px;
  margin: 0 0 18px;
}
.editor-preview li { list-style: disc; margin-bottom: 8px; }
.editor-preview ol li { list-style: decimal; }
.editor-preview a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(193, 255, 54, 0.4);
  text-underline-offset: 3px;
}
.editor-preview code {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 1px 6px;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--accent);
}
.editor-preview pre {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 14px 18px;
  border-radius: 8px;
  overflow-x: auto;
  font-family: var(--font-mono);
  font-size: 12.5px;
  margin-bottom: 18px;
}
.editor-preview pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--ink);
}
.editor-preview blockquote {
  border-left: 3px solid var(--accent);
  padding: 4px 0 4px 16px;
  margin: 18px 0;
  font-style: italic;
  color: var(--ink);
}
.editor-preview hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 32px 0;
}
.editor-preview strong { color: var(--ink); font-weight: 600; }

.editor-word-count { color: var(--ink-mute); font-size: 10.5px; letter-spacing: 0.08em; }

@media (max-width: 1024px) {
  .editor-split { grid-template-columns: 1fr; }
  .editor-meta-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .editor-meta-grid { grid-template-columns: 1fr; gap: 16px; }
  .editor-meta { padding: 20px; }
  .editor-main { padding: 20px 16px 60px; }
  .admin-nav { gap: 16px; }
  .admin-pageheader { flex-direction: column; align-items: flex-start; }
  .admin-pagetitle { font-size: 32px; }
}

/* ============================================================
   LEGAL PAGES — table styling (privacy.html, terms.html)
   ============================================================ */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 24px 0;
  font-size: 14.5px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.legal-table th {
  text-align: left;
  padding: 14px 16px;
  background: var(--bg-3);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.legal-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
}
.legal-table tr:last-child td { border-bottom: none; }
.legal-table code {
  font-size: 12px;
  color: var(--accent);
}
@media (max-width: 768px) {
  .legal-table { font-size: 13px; }
  .legal-table th, .legal-table td { padding: 10px 12px; }
}

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  max-width: 720px;
  margin: 0 auto;
  background: var(--bg-2);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: 18px 22px;
  display: none;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  z-index: 1000;
  box-shadow: 0 12px 40px -8px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(193, 255, 54, 0.05);
  animation: cookieSlide 0.5s var(--easing);
}
.cookie-banner.show { display: flex; }

@keyframes cookieSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

.cookie-banner-text {
  flex: 1;
  min-width: 220px;
  font-size: 13.5px;
  color: var(--ink-dim);
  line-height: 1.5;
}
.cookie-banner-text a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(193, 255, 54, 0.4);
  text-underline-offset: 2px;
}
.cookie-banner-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid transparent;
  font-family: var(--font-body);
  transition: all 0.2s;
}
.cookie-btn-accept {
  background: var(--accent);
  color: var(--ink-dark);
  font-weight: 600;
}
.cookie-btn-accept:hover { background: var(--accent-hover); }
.cookie-btn-reject {
  background: transparent;
  color: var(--ink-dim);
  border-color: var(--line-strong);
}
.cookie-btn-reject:hover { border-color: var(--ink-dim); color: var(--ink); }

@media (max-width: 600px) {
  .cookie-banner { padding: 14px 18px; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}

/* ============================================================
   ============================================================
   MOBILE POLISH v3 — comprehensive responsive pass
   Appended last so it overrides earlier breakpoints.
   ============================================================
   ============================================================ */

/* ===== TABLET (≤ 1024px) ===== */
@media (max-width: 1024px) {
  .container, .nav-inner { padding: 0 28px; }

  /* Process rail — always stack on tablet down */
  .process-rail, .process-rail-3 { grid-template-columns: 1fr !important; }
  .process-cell { padding: 40px 32px; }
  .process-num { font-size: 56px; }
  .process-cell-head { margin-bottom: 28px; }

  /* Services bento — 2 cols feels better than full 6 collapse */
  .services-bento { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .service-tile.span-2, .service-tile.span-3, .service-tile.span-4 { grid-column: span 1 !important; }
  .service-tile.tall { grid-row: auto; }
  .service-tile { padding: 28px 24px; }

  /* Values bento same treatment */
  .values-bento { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .value-tile.span-2, .value-tile.span-3, .value-tile.span-4, .value-tile.span-6 { grid-column: span 1 !important; }
  .value-tile { padding: 28px 24px; }

  /* Pricing — keep 3 cols on tablet only if wide enough; otherwise stack */
  .pricing-grid { grid-template-columns: 1fr; gap: 1px; }

  /* Trust meta — 2 cols on tablet */
  .trust-meta { grid-template-columns: repeat(2, 1fr); gap: 40px; }
}

/* ===== PHONE (≤ 768px) ===== */
@media (max-width: 768px) {
  /* Global rhythm — tighter */
  .container, .nav-inner { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 40px; }
  .section-head-row { gap: 24px; }

  /* Body baseline up by 0.5px so headlines don't dwarf */
  body { font-size: 15.5px; }

  /* Hero — tight + impactful */
  .hero { padding: 96px 0 56px; min-height: auto; }
  .hero-title {
    font-size: clamp(36px, 10.5vw, 56px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    margin-bottom: 32px;
  }
  .hero-sub { font-size: 15.5px; line-height: 1.55; }
  .hero-grid { gap: 28px; }
  .hero-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn { width: 100%; padding: 14px; justify-content: center; }
  .hero-actions .arrow-link { justify-content: center; padding: 8px 0; }

  /* Vibe hook — tighter */
  .vibe-hook { padding: 64px 0; }
  .vibe-hook-statement { font-size: clamp(26px, 7vw, 38px); line-height: 1.1; margin-bottom: 32px; }
  .vibe-hook-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .vibe-hook-cta .btn { width: 100%; justify-content: center; padding: 14px; }
  .vibe-hook-cta .arrow-link { justify-content: center; padding: 8px 0; }

  /* Section titles — controlled scale */
  .section-title { font-size: clamp(28px, 8vw, 44px); line-height: 1; }
  .section-sub { font-size: 15px; }

  /* Services + values — single column on phone */
  .services-bento, .values-bento { grid-template-columns: 1fr; gap: 10px; }
  .service-tile, .value-tile { padding: 24px 22px; }
  .service-tile h3, .value-tile h3 { font-size: clamp(22px, 6.4vw, 28px); }
  .service-tile p, .value-tile p { font-size: 14.5px; }

  /* Hook closer — smaller, more breathing */
  .hook-closer { font-size: 17px; line-height: 1.45; margin-top: 32px; }

  /* Pricing pane intro */
  .pricing-pane-intro { padding: 16px 18px; font-size: 14px; margin-bottom: 32px; }

  /* Pricing toggle full-width */
  .pricing-toggle { width: 100%; display: flex; margin-bottom: 32px; }
  .pricing-tab { flex: 1; padding: 11px 8px; font-size: 12.5px; text-align: center; white-space: nowrap; }

  /* Pricing cards */
  .pricing-card { padding: 32px 24px; }
  .pricing-name { font-size: 32px; }
  .pricing-amount { font-size: 42px; }
  .pricing-desc { font-size: 14px; }
  .pricing-features li { font-size: 14px; }

  /* À la carte and engagement tables — horizontal scroll if too wide */
  .price-list-wrap { padding-top: 28px; }
  .price-list { grid-template-columns: 1fr; column-gap: 0; }
  .price-row { padding: 16px 0; font-size: 14.5px; gap: 12px; }
  .price-row strong { font-size: 15px; }
  .price-list-header { flex-direction: column; align-items: flex-start; gap: 8px; margin-bottom: 18px; }
  .price-list-title { font-size: 24px; }

  /* Pricing CTA box */
  .pricing-cta-box { grid-template-columns: 1fr; padding: 24px 20px; gap: 18px; margin-top: 48px; }
  .pricing-cta-box .btn { width: 100%; justify-content: center; }
  .pricing-cta-box h3 { font-size: 22px; }
  .pricing-cta-box p { font-size: 14px; }

  /* Process cell */
  .process-cell { padding: 32px 24px; }
  .process-cell h3 { font-size: 22px; }
  .process-num { font-size: 48px; }
  .process-cell-head { margin-bottom: 24px; }

  /* Products list — already condensed but tighter */
  .product-row { grid-template-columns: 32px 1fr 36px; gap: 16px; padding: 24px 6px; }
  .product-row:hover { padding-left: 14px; padding-right: 14px; }
  .product-name-cell { font-size: 22px; }
  .product-arrow { width: 36px; height: 36px; }
  .product-pitch { grid-template-columns: 1fr; padding: 32px 16px; gap: 16px; text-align: left; }
  .product-pitch .btn { width: 100%; justify-content: center; }

  /* Trust statement + meta */
  .trust-statement { font-size: clamp(24px, 6.5vw, 34px); line-height: 1.1; margin-bottom: 36px; }
  .trust-meta { grid-template-columns: 1fr 1fr; gap: 24px; padding-top: 28px; }
  .trust-stat .num { font-size: 36px; }
  .trust-stat .label { font-size: 10px; }

  /* FAQ */
  .faq-list { border-top: 1px solid var(--line); }
  .faq-item summary { padding: 20px 4px; gap: 14px; min-height: 56px; }
  .faq-item summary h3 { font-size: 16px; line-height: 1.3; }
  .faq-icon { width: 26px; height: 26px; font-size: 18px; flex-shrink: 0; }
  .faq-item > p { padding: 0 4px 22px; font-size: 14.5px; line-height: 1.6; }

  /* CTA / contact */
  .cta-section { padding: 64px 0; }
  .cta-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-title { font-size: clamp(32px, 9vw, 48px); line-height: 1; }
  .cta-sub { font-size: 15.5px; margin-bottom: 32px; }
  .cta-form-wrap { padding: 24px 20px; }
  .cta-form input, .cta-form select, .cta-form textarea { font-size: 16px; padding: 10px 0; }
  .cta-form .form-label { font-size: 10px; margin-top: 18px; margin-bottom: 4px; }
  .form-row-2 { grid-template-columns: 1fr; gap: 0; }
  .contact-item { grid-template-columns: 72px 1fr auto; gap: 14px; padding: 18px 0; }
  .contact-item .label { font-size: 9.5px; }
  .contact-item .value { font-size: 16px; }

  /* Footer */
  .footer { padding: 56px 0 20px; }
  .footer-massive { font-size: clamp(52px, 20vw, 88px); margin-bottom: 36px; padding-bottom: 28px; line-height: 0.9; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 28px; }
  .footer-brand { grid-column: span 2; margin-bottom: 8px; }
  .footer-brand p { font-size: 13.5px; }
  .footer-cols h4 { margin-bottom: 14px; }
  .footer-cols a { font-size: 13.5px; padding: 5px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 10.5px; text-align: center; padding-top: 20px; }

  /* Section nums */
  .section-num { font-size: 12px; margin-bottom: 18px; }

  /* Reduce excessive lift on tap-hover (hover doesn't fire on touch but transforms can stick) */
  .service-tile:hover, .value-tile:hover, .pricing-card:hover { transform: none; }
}

/* ===== SMALL PHONE (≤ 480px) ===== */
@media (max-width: 480px) {
  .container, .nav-inner { padding: 0 16px; }
  .section { padding: 56px 0; }

  .hero { padding: 88px 0 48px; }
  .hero-title { font-size: clamp(32px, 11vw, 44px); }
  .hero-sub { font-size: 15px; }

  .section-title { font-size: clamp(26px, 8.5vw, 36px); }
  .section-sub { font-size: 14.5px; }
  .vibe-hook { padding: 56px 0; }
  .vibe-hook-statement { font-size: clamp(24px, 7.5vw, 32px); }

  /* Cards even tighter */
  .service-tile, .value-tile { padding: 22px 20px; }
  .service-tile h3, .value-tile h3 { font-size: clamp(20px, 6.4vw, 24px); }
  .pricing-card { padding: 28px 22px; }
  .pricing-amount { font-size: 38px; }
  .pricing-currency { font-size: 22px; }

  /* Process num smaller */
  .process-num { font-size: 42px; }
  .process-cell { padding: 28px 22px; }
  .process-cell h3 { font-size: 20px; }

  /* CTA */
  .cta-title { font-size: clamp(28px, 10vw, 40px); }
  .cta-form-wrap { padding: 20px 16px; }

  /* Trust */
  .trust-statement { font-size: 22px; }
  .trust-stat .num { font-size: 30px; }

  /* Footer collapse to single column */
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-massive { font-size: 52px; }
}

/* ===== TINY PHONE (≤ 360px) ===== */
@media (max-width: 360px) {
  .hero-title { font-size: 30px; line-height: 1; }
  .section-title { font-size: 26px; }
  .cta-title { font-size: 28px; }
  .vibe-hook-statement { font-size: 22px; }
  .footer-massive { font-size: 46px; }
  .pricing-amount { font-size: 34px; }
  .footer-inner { grid-template-columns: 1fr; gap: 20px; }
  .footer-brand { grid-column: span 1; }
}

/* ============================================================
   TABLES — universal horizontal scroll wrapper on mobile
   ============================================================ */
@media (max-width: 768px) {
  .legal-table {
    display: block;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
  }
  .legal-table tbody, .legal-table thead, .legal-table tr { display: table; width: 100%; }
}

/* ============================================================
   ADMIN dashboard — phone-friendly
   ============================================================ */
@media (max-width: 768px) {
  .admin-topbar {
    padding: 12px 16px;
    gap: 12px;
    flex-wrap: wrap;
  }
  .admin-topbar .logo { font-size: 18px; }
  .admin-badge { font-size: 8px; padding: 2px 6px; }
  .admin-nav { order: 3; width: 100%; justify-content: center; gap: 18px; padding-top: 6px; border-top: 1px solid var(--line); }
  .admin-user-email { display: none; }
  .admin-user { gap: 8px; }
  .btn-sm { padding: 6px 10px; font-size: 11.5px; }

  .admin-main { padding: 20px 14px 60px; }
  .admin-stats { grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 24px; }
  .stat-card { padding: 16px; }
  .stat-value { font-size: 26px; }
  .stat-label { font-size: 9.5px; margin-bottom: 6px; }

  .admin-tabs { width: 100%; display: flex; }
  .admin-tab { flex: 1; padding: 9px 6px; font-size: 12px; text-align: center; }

  .admin-toolbar { gap: 8px; }
  .admin-search { min-width: 0; width: 100%; padding: 9px 12px; font-size: 14px; }
  .admin-select { padding: 9px 12px; font-size: 13px; }

  /* Table — horizontal scroll for too many columns */
  .admin-table-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .admin-table { min-width: 600px; }
  .admin-table th, .admin-table td { padding: 10px 8px; font-size: 12px; }
  .td-date { font-size: 10.5px; }

  /* Drawer — full screen on phone */
  .admin-drawer { max-width: 100%; }
  .admin-drawer-inner { padding: 24px 20px; }
  .admin-drawer h2 { font-size: 22px; }

  /* Editor */
  .editor-main { padding: 16px 12px 60px; }
  .editor-header { gap: 12px; }
  .editor-pagetitle { font-size: 18px; flex: 1 0 100%; order: -1; }
  .editor-actions { width: 100%; }
  .editor-actions .btn, .editor-actions .btn-sm { flex: 1; }
  .editor-meta { padding: 18px 14px; }
  .editor-meta-grid { gap: 14px; }
  .editor-input { font-size: 14px; padding: 10px 12px; }
  .editor-input-title { font-size: 18px; padding: 12px 14px; }
  .editor-textarea { padding: 18px; font-size: 13px; min-height: 380px; }
  .editor-preview { padding: 20px; }
  .editor-pane-head { padding: 10px 14px; }
  .md-btn { width: 28px; height: 26px; font-size: 11px; }

  .admin-pageheader { gap: 14px; align-items: stretch; }
  .admin-pageheader .btn { width: 100%; justify-content: center; }
  .admin-pagetitle { font-size: 26px; }

  .roles-empty { padding: 28px 20px; }
  .roles-empty h3 { font-size: 24px; }
  .roles-empty-num { font-size: 9.5px; }
}

/* ============================================================
   BLOG — mobile polish for long-form
   ============================================================ */
@media (max-width: 768px) {
  .blog-index-hero { padding: 96px 0 48px; }
  .blog-index-hero h1 { font-size: clamp(34px, 9.5vw, 56px); margin-bottom: 20px; }
  .blog-index-sub { font-size: 15px; }
  .blog-list-section { padding-top: 56px; }
  .blog-list { gap: 12px; }
  .blog-card { padding: 22px 20px; }
  .blog-card h2 { font-size: clamp(22px, 6.4vw, 28px); }
  .blog-card h3 { font-size: clamp(18px, 5.4vw, 22px); }
  .blog-card p { font-size: 14.5px; }
  .blog-card-meta { font-size: 10.5px; margin-bottom: 16px; }

  .blog-article-head { padding: 96px 0 32px; }
  .blog-article-head h1 { font-size: clamp(28px, 8vw, 44px); margin-bottom: 18px; }
  .blog-breadcrumb { font-size: 10.5px; margin-bottom: 20px; }
  .blog-meta { font-size: 11.5px; }

  .blog-content { padding: 32px 18px 56px; }
  .blog-lede { font-size: 16.5px; padding-bottom: 24px; margin-bottom: 32px; }
  .blog-content h2 { font-size: 22px; margin-top: 40px; }
  .blog-content h3 { font-size: 17px; }
  .blog-content p, .blog-list-bullet li, .blog-list-num li { font-size: 15.5px; line-height: 1.65; }
  .blog-content blockquote { padding-left: 16px; font-size: 16px; }
  .blog-content pre { font-size: 12.5px; padding: 14px; }
  .blog-cta-card { padding: 20px 18px; margin: 28px 0; }
  .blog-cta-card h3 { font-size: 20px; }
  .blog-cta-card p { font-size: 14.5px; }
  .blog-also { grid-template-columns: 1fr; gap: 10px; }
  .blog-also-h { font-size: 16px !important; margin-top: 40px; }
}

/* ============================================================
   PRICING TAG / RIBBON — mobile spacing
   ============================================================ */
@media (max-width: 768px) {
  .pricing-card-featured { order: -1; } /* show "Most loved" first on mobile */
  .pricing-tag { font-size: 10px; margin-bottom: 22px; }
}

/* ============================================================
   ERROR / 404 PAGE
   ============================================================ */
@media (max-width: 768px) {
  .error-hero { padding: 96px 0 56px; min-height: auto; }
  .error-title { font-size: clamp(40px, 11vw, 64px); }
  .error-sub { font-size: 15.5px; margin-bottom: 32px; }
  .error-cta { flex-direction: column; align-items: stretch; gap: 12px; }
  .error-cta .btn { width: 100%; justify-content: center; }
  .error-cta .arrow-link { justify-content: center; }
}

/* ============================================================
   PAGES THAT WERE PAPER (legal pages use blog-article)
   Already covered by .blog-content mobile styles above ✓
   ============================================================ */

/* ============================================================
   ACCESSIBILITY — minimum touch target for text buttons
   (Arrow circles stay decorative — the whole card is the tap target)
   ============================================================ */
@media (max-width: 768px) {
  .btn, .btn-sm, .nav-cta, .cookie-btn, .pricing-tab, .admin-tab {
    min-height: 40px;
  }
  .btn-primary, .btn-dark, .btn-full { min-height: 48px; }
  .nav-burger { padding: 10px; }
  .product-row, .role-row { min-height: 64px; }
}

/* ============================================================
   PREVENT iOS auto-zoom on input focus
   (already 16px in editor + cta-form, but enforce globally)
   ============================================================ */
@media (max-width: 768px) {
  input, textarea, select { font-size: 16px !important; }
  .mono, .price-row, .blog-card-meta { font-size: revert; } /* keep designed sizes */
}

/* ============================================================
   UNDERLINE-ACCENT — mobile fix
   On desktop, the ::after bar creates a highlight-behind-text effect.
   On mobile with tight line-height, the bar landed in the descender
   space and looked like a clipped, weird underline.
   Mobile gets a clean native text-decoration underline instead.
   ============================================================ */
@media (max-width: 768px) {
  .underline-accent {
    text-decoration: underline;
    text-decoration-color: var(--accent);
    text-decoration-thickness: 4px;
    text-underline-offset: 4px;
    text-decoration-skip-ink: none;
    /* Disable the absolute-positioned bar — it conflicts on mobile */
    background-image: none;
  }
  .hero-title .underline-accent::after,
  .cta-title .underline-accent::after,
  .careers-hero h1 .underline-accent::after,
  .vibe-hook-statement em::before {
    display: none !important;
  }
}
