@charset "UTF-8";
:root {
  /* Anthropic-inspired palette */
  --bg: #F5F4EE; /* warm cream — signature */
  --bg-alt: #EFEDE4; /* slightly darker cream for sections */
  --paper: #FAF9F4; /* lightest cream for cards */
  --ink: #1A1A19; /* warm near-black */
  --ink-dim: #57564F; /* secondary text */
  --ink-faint: #908F87; /* muted text */
  --line: #DDDBD0; /* divider */
  --line-dim: #E6E4D8; /* subtle line */
  --accent: #CC785C; /* coral/rust — Anthropic signature */
  --accent-dim: #B86A4F; /* darker coral */
  --accent-soft: #E8C4B5; /* soft coral wash */
  /* Dark inverse */
  --dark: #1A1A19;
  --dark-dim: #2A2A28;
  --dark-text: #F5F4EE;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;
  --max: 1280px;
  --pad: clamp(1.25rem, 4vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ===== TYPOGRAPHY ===== */
.display {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.025em;
  font-variation-settings: "opsz" 144;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(245, 244, 238, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s;
}

.nav.scrolled {
  border-bottom-color: var(--line);
}

/* Botble admin bar (40px fixed) — push nav + mobile menu below it when logged in */
body.show-admin-bar .nav { top: 40px !important; }
body.show-admin-bar .nav-mobile-panel,
body.show-admin-bar .nav-overlay { top: 40px !important; }

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 400;
  letter-spacing: -0.025em;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-variation-settings: "opsz" 48;
  line-height: 1;
  transition: opacity 0.2s;
}

.nav-logo:hover {
  opacity: 0.7;
}

.nav-logo .word {
  position: relative;
  display: inline-block;
}

.nav-logo .nine {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  position: relative;
}

.nav-logo .suffix {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
  padding-left: 0.55rem;
  border-left: 1px solid var(--line);
  margin-left: 0.15rem;
  position: relative;
  top: -0.05em;
}

@media (max-width: 480px) {
  .nav-logo {
    font-size: 1.25rem;
  }
  .nav-logo .suffix {
    display: none;
  }
}
.nav-menu {
  display: flex;
  gap: 2.25rem;
}

.nav-menu a {
  font-size: 0.92rem;
  color: var(--ink-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-menu a:hover {
  color: var(--ink);
}

.nav-cta {
  font-size: 0.88rem;
  padding: 0.55rem 1.1rem;
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--ink);
  color: var(--bg);
  font-weight: 500;
  transition: all 0.25s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent);
}

.nav-cta .arrow {
  transition: transform 0.25s;
}

.nav-cta:hover .arrow {
  transform: translateX(2px);
}

.nav-cta-full {
  display: inline;
}

.nav-cta-short {
  display: none;
}

@media (max-width: 480px) {
  .nav-cta {
    padding: 0.55rem 0.9rem;
    font-size: 0.82rem;
  }
  .nav-cta-full {
    display: none;
  }
  .nav-cta-short {
    display: inline;
  }
}
/* Mobile menu toggle button */
.nav-mobile-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--bg);
  color: var(--ink);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  position: relative;
  z-index: 201;
}

.nav-mobile-toggle:hover {
  background: var(--bg-alt);
}

.nav-mobile-toggle i {
  width: 20px;
  height: 20px;
}

/* Mobile menu panel - completely solid background */
.nav-mobile-panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 320px;
  max-width: 85vw;
  background-color: #F5F4EE;
  background-image: none;
  border-left: 1px solid var(--line);
  z-index: 200;
  padding: 5rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
  visibility: hidden;
  opacity: 0;
}

.nav-mobile-panel.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}

.nav-mobile-panel a {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--ink);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-variation-settings: "opsz" 48;
  background-color: transparent;
  text-decoration: none;
}

.nav-mobile-panel a:last-child {
  border-bottom: none;
}

.nav-mobile-panel a:hover {
  color: var(--accent);
}

/* Backdrop overlay - solid color, no blur effect */
.nav-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(26, 26, 25, 0.5);
  z-index: 150;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 820px) {
  .nav-menu {
    display: none;
  }
  .nav-mobile-toggle {
    display: inline-flex;
  }
}
/* ===== HERO ===== */
.hero {
  min-height: 92vh;
  padding: 9rem var(--pad) 4rem;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-dim);
}

.hero-eyebrow .eyebrow-full {
  display: inline;
}

.hero-eyebrow .eyebrow-short {
  display: none;
}

.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  position: relative;
  flex-shrink: 0;
}

.hero-eyebrow .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid var(--accent);
  opacity: 0.5;
  animation: ping 2s ease-out infinite;
}

@keyframes ping {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.8);
    opacity: 0;
  }
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.25rem, 9vw, 7.5rem);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  max-width: 16ch;
  font-variation-settings: "opsz" 144;
  color: var(--ink);
}

.hero h1 .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.hero h1 a {
  color: var(--accent);
  text-decoration: none;
  font-style: italic;
  font-weight: 400;
  position: relative;
}

.hero h1 a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.05em;
  height: 1px;
  background: var(--accent);
  opacity: 0.4;
}

.hero-sub {
  max-width: 560px;
  font-size: 1.2rem;
  color: var(--ink-dim);
  margin-bottom: 3rem;
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 5rem;
}

/* Mobile hero overrides */
@media (max-width: 720px) {
  .hero {
    padding: 6rem var(--pad) 2.5rem;
    min-height: auto;
  }
  .hero-eyebrow {
    font-size: 0.7rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.08em;
  }
  .hero-eyebrow .eyebrow-full {
    display: none;
  }
  .hero-eyebrow .eyebrow-short {
    display: inline;
  }
  .hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.5rem);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    max-width: 100%;
  }
  .hero-sub {
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.55;
  }
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    margin-bottom: 3rem;
  }
  .hero-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 1rem 1.5rem;
  }
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 1.6rem;
  border-radius: 100px;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--ink);
  color: var(--bg);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost {
  border: 1px solid var(--ink);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--bg);
}

.btn .arrow {
  transition: transform 0.25s;
}

.btn:hover .arrow {
  transform: translateX(3px);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding: 1px;
  border-radius: 2px;
}

.hero-meta-item {
  background: var(--bg);
  padding: 1.5rem 1.25rem;
}

.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.6rem;
}

.hero-meta-item .val {
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.hero-meta-item .val .accent {
  color: var(--accent);
  font-style: italic;
}

@media (max-width: 720px) {
  .hero-meta {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ===== SECTIONS ===== */
section {
  padding: 7rem 0;
}

@media (max-width: 720px) {
  section {
    padding: 4.5rem 0;
  }
  .section-head {
    margin-bottom: 3rem;
  }
}
.section-eyebrow {
  margin-bottom: 1.5rem;
}

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 5rem;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
  max-width: 14ch;
}

.section-head h2 .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.section-head .lede {
  font-size: 1.1rem;
  color: var(--ink-dim);
  max-width: 460px;
  line-height: 1.55;
}

@media (max-width: 820px) {
  .section-head {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    align-items: start;
  }
}
/* ===== TRUST BAR (industry) ===== */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 0;
}

.trust-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 2.25rem 0;
}

.trust-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  max-width: 220px;
  line-height: 1.5;
}

.trust-icons {
  display: flex;
  gap: 2.75rem;
  flex-wrap: wrap;
  align-items: center;
}

.trust-icons div {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink-dim);
  font-variation-settings: "opsz" 24;
}

.trust-icons div i {
  color: var(--accent);
  width: 16px;
  height: 16px;
}

/* Stats Bar */
.stats-bar {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 3rem 0;
  gap: 1rem;
}

.stat-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.stat-num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.stat-num .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.stat-label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  background: var(--line);
  align-self: stretch;
}

@media (max-width: 720px) {
  .stats-bar {
    flex-wrap: wrap;
    gap: 1.75rem 1rem;
    padding: 2rem 0;
  }
  .stat-item {
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 0;
  }
  .stat-divider {
    display: none;
  }
  .stat-num {
    font-size: 2rem;
  }
}
/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
.service {
  background: var(--bg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}

.service:hover {
  background: var(--paper);
}

.service-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.service h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}

.service-desc {
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.75rem;
  flex-grow: 1;
}

.service-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line-dim);
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.service-price small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--ink-faint);
  margin-right: 0.4rem;
  font-weight: 500;
}

.service-tags {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  color: var(--ink-faint);
  font-weight: 500;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.88rem;
  color: var(--ink-dim);
  transition: all 0.2s;
}

.service-link:hover {
  color: var(--accent);
  gap: 0.6rem;
}

.service-link i {
  width: 14px;
  height: 14px;
}

/* ===== COMPARE TABLE ===== */
.compare {
  border: 1px solid var(--ink);
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg);
}

.compare-header {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.compare-header > div {
  padding: 1.5rem 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  border-right: 1px solid rgba(245, 244, 238, 0.15);
}

.compare-header > div:last-child {
  border-right: none;
}

.compare-header .you {
  background: var(--accent);
  color: var(--bg);
  position: relative;
}

.compare-row {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
}

.compare-row:last-child {
  border-bottom: none;
}

.compare-row > div {
  padding: 1.4rem 1.25rem;
  border-right: 1px solid var(--line);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  color: var(--ink-dim);
}

.compare-row > div:last-child {
  border-right: none;
}

.compare-row > div:first-child {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}

.compare-row .you {
  background: var(--accent-soft);
  color: var(--ink);
  font-weight: 500;
}

.compare-row .neg {
  color: #b94a48;
}

@media (max-width: 820px) {
  .compare-header, .compare-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .compare-header > div:first-child, .compare-row > div:first-child {
    display: none;
  }
}
@media (max-width: 600px) {
  .compare {
    border: none;
    background: transparent;
  }
  .compare-header {
    display: none;
  }
  .compare-row {
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 8px;
    margin-bottom: 1rem;
    background: var(--bg);
  }
  .compare-row > div:first-child {
    display: block;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--line);
    border-right: none;
  }
  .compare-row > div {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0.9rem 1.25rem;
    font-size: 0.9rem;
  }
  .compare-row > div:last-child {
    border-bottom: none;
  }
  .compare-row > div:not(:first-child)::before {
    content: attr(data-label) ": ";
    font-family: var(--font-mono);
    font-size: 0.65rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-right: 0.5rem;
    font-weight: 500;
  }
}
/* ===== WORK / PRODUCTS ===== */
.featured {
  display: block;
  background: var(--ink);
  color: var(--dark-text);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.featured-content {
  padding: 3rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 760px;
  margin: 0 auto;
}

.featured-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.7rem;
  background: var(--accent);
  color: var(--bg);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1.5rem;
  width: fit-content;
}

.featured h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 0.75rem;
  font-variation-settings: "opsz" 144;
}

.featured h3 .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.featured-cat {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

.featured-desc {
  color: rgba(245, 244, 238, 0.75);
  font-size: 1.05rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  max-width: 460px;
}

.featured-stats {
  display: flex;
  gap: 2.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(245, 244, 238, 0.15);
  border-bottom: 1px solid rgba(245, 244, 238, 0.15);
  flex-wrap: wrap;
}

.featured-stats div {
  color: rgba(245, 244, 238, 0.6);
  font-size: 0.85rem;
}

.featured-stats div strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--bg);
  margin-bottom: 0.2rem;
  letter-spacing: -0.02em;
  font-variation-settings: "opsz" 96;
}

.featured-cta {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.featured-cta .btn-primary {
  background: var(--accent);
  color: var(--bg);
}

.featured-cta .btn-primary:hover {
  background: var(--accent-dim);
}

.featured-cta .btn-ghost {
  border-color: rgba(245, 244, 238, 0.3);
  color: var(--bg);
}

.featured-cta .btn-ghost:hover {
  background: var(--bg);
  color: var(--ink);
  border-color: var(--bg);
}

.featured-visual {
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

.featured-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.featured-visual::before {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 120, 92, 0.25), transparent 60%);
  top: 20%;
  right: -15%;
  filter: blur(40px);
}

.featured-mockup {
  width: 78%;
  height: 70%;
  background: var(--bg);
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.featured-mockup-bar {
  height: 28px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  padding: 0 0.75rem;
  gap: 0.4rem;
}

.featured-mockup-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--line);
}

.featured-mockup-content {
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0.6rem;
}

.featured-mockup-content div {
  height: 70px;
  background: var(--paper);
  border-radius: 4px;
  border: 1px solid var(--line-dim);
}

.featured-mockup-content div:first-child {
  background: linear-gradient(135deg, var(--accent), var(--accent-dim));
  border: none;
}

@media (max-width: 900px) {
  .featured {
    grid-template-columns: 1fr;
  }
  .featured-content {
    padding: 2rem;
    order: 2;
  }
  .featured-visual {
    order: 1;
    min-height: auto;
    background: var(--bg);
  }
  .featured-image {
    height: auto;
    object-fit: contain;
  }
}
@media (max-width: 600px) {
  .featured-content {
    padding: 1.75rem 1.5rem 2rem;
  }
  .featured-tag {
    font-size: 0.62rem;
    padding: 0.25rem 0.6rem;
    margin-bottom: 1rem;
  }
  .featured-cat {
    font-size: 0.68rem;
    margin-bottom: 0.75rem;
  }
  .featured h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  .featured-desc {
    font-size: 0.92rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
  }
  .featured-stats {
    gap: 1.5rem;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
  }
  .featured-stats div {
    font-size: 0.78rem;
  }
  .featured-stats div strong {
    font-size: 1.35rem;
    margin-bottom: 0.1rem;
  }
  .featured-cta {
    gap: 0.5rem;
  }
  .featured-cta .btn {
    padding: 0.7rem 1.1rem;
    font-size: 0.85rem;
  }
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: stretch;
}

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}
.product {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  overflow: hidden;
}

.product:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.product-thumbnail {
  width: 100%;
  overflow: hidden;
  background: var(--bg-alt);
  position: relative;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-thumbnail img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product:hover .product-thumbnail img {
  transform: scale(1.03);
}

.product-num {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.12em;
  margin: 1.75rem 1.75rem 1rem;
}

.product-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 1.75rem 0.75rem;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}

.product-desc {
  color: var(--ink-dim);
  font-size: 0.92rem;
  margin: 0 1.75rem 1.5rem;
  line-height: 1.55;
  flex-grow: 1;
}

.product-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin: 0 1.75rem 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
  line-height: 1;
}

.product-stats span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  white-space: nowrap;
}

.product-stats span svg,
.product-stats span [data-lucide] {
  width: 12px !important;
  height: 12px !important;
  flex-shrink: 0;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 1.75rem;
  padding: 1.25rem 0 1.75rem;
  border-top: 1px solid var(--line);
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.product-price small {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--ink-faint);
  margin-right: 0.3rem;
  letter-spacing: 0.1em;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--ink-dim);
  transition: all 0.2s;
}

.product-link:hover {
  color: var(--accent);
  gap: 0.55rem;
}

.product-link i {
  width: 14px;
  height: 14px;
}

/* ===== PROCESS ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

@media (max-width: 900px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
}
.process-step {
  padding: 2.5rem 1.5rem 2.5rem 0;
  border-right: 1px solid var(--line);
  position: relative;
}

.process-step:last-child {
  border-right: none;
}

@media (max-width: 900px) {
  .process-step {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 2rem 0;
  }
  .process-step:first-child {
    padding-top: 0;
  }
  .process-step:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.process-num {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
}

.process-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.75rem;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
}

.process-desc {
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.55;
  margin-bottom: 1rem;
}

.process-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  padding: 0.2rem 0.55rem;
  background: var(--accent-soft);
  color: var(--accent-dim);
  border-radius: 4px;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ===== PRICING ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}
.tier {
  background: var(--bg);
  padding: 3rem 2.25rem;
  display: flex;
  flex-direction: column;
  position: relative;
}

.tier.popular {
  background: var(--ink);
  color: var(--dark-text);
}

.tier-badge {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.tier-name {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
  font-weight: 500;
}

.tier.popular .tier-name {
  color: var(--accent);
}

.tier-tagline {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  line-height: 1.25;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-variation-settings: "opsz" 48;
}

.tier.popular .tier-tagline {
  color: var(--bg);
}

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
}

.tier-best-for {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-dim);
  font-size: 0.95rem;
  line-height: 1.55;
}

.tier.popular .tier-best-for {
  border-bottom-color: rgba(245, 244, 238, 0.15);
  color: rgba(245, 244, 238, 0.75);
}

.best-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.tier.popular .tier-price {
  border-bottom-color: rgba(245, 244, 238, 0.15);
}

.tier-price .from {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}

.tier.popular .tier-price .from {
  color: rgba(245, 244, 238, 0.5);
}

.tier-price .amount {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 3rem;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.tier.popular .tier-price .amount {
  color: var(--bg);
}

.tier-price .amount .accent {
  color: var(--accent);
  font-style: italic;
  font-weight: 400;
}

.tier-features {
  list-style: none;
  margin-bottom: 2rem;
  flex-grow: 1;
}

.tier-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.5rem 0;
  font-size: 0.92rem;
  color: var(--ink-dim);
  line-height: 1.5;
}

.tier.popular .tier-features li {
  color: rgba(245, 244, 238, 0.85);
}

.tier-features li i {
  width: 14px;
  height: 14px;
  margin-top: 4px;
  color: var(--accent);
  flex-shrink: 0;
}

.tier .btn {
  width: 100%;
  justify-content: center;
}

.tier.popular .btn-ghost {
  border-color: var(--bg);
  color: var(--bg);
}

.tier.popular .btn-ghost:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.pricing-note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
}

/* ===== CAPABILITIES ===== */
.cap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cap-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}

.cap-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.cap-featured {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
  grid-column: span 3;
  position: relative;
  overflow: hidden;
}

.cap-featured::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(204, 120, 92, 0.2), transparent 60%);
  top: -100px;
  right: -100px;
  filter: blur(60px);
  pointer-events: none;
}

.cap-featured:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

/* Mobile responsive - moved AFTER base rules to take precedence */
@media (max-width: 900px) {
  .cap-grid {
    grid-template-columns: 1fr;
  }
  .cap-card {
    padding: 2rem;
  }
  .cap-featured {
    padding: 2rem;
    grid-column: span 1;
  }
  .cap-featured .cap-title {
    font-size: 1.85rem;
  }
}
.cap-badge {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  background: var(--accent);
  color: var(--bg);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  z-index: 2;
}

.cap-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  color: var(--accent);
  position: relative;
  z-index: 2;
}

.cap-featured .cap-icon {
  background: rgba(204, 120, 92, 0.15);
  border-color: rgba(204, 120, 92, 0.3);
}

.cap-icon i {
  width: 22px;
  height: 22px;
}

.cap-num {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 500;
  position: relative;
  z-index: 2;
}

.cap-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.85rem;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
  font-variation-settings: "opsz" 96;
  position: relative;
  z-index: 2;
}

.cap-featured .cap-title {
  color: var(--bg);
  font-size: 2.25rem;
}

.cap-desc {
  color: var(--ink-dim);
  font-size: 1rem;
  line-height: 1.55;
  margin-bottom: 2rem;
  flex-grow: 1;
  position: relative;
  z-index: 2;
}

.cap-featured .cap-desc {
  color: rgba(245, 244, 238, 0.75);
  max-width: 540px;
}

.cap-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  position: relative;
  z-index: 2;
}

.cap-featured .cap-stack {
  border-top-color: rgba(245, 244, 238, 0.15);
}

.cap-stack span {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  padding: 0.35rem 0.7rem;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 100px;
  color: var(--ink-dim);
  letter-spacing: 0.03em;
  font-weight: 500;
}

.cap-featured .cap-stack span {
  background: rgba(245, 244, 238, 0.05);
  border-color: rgba(245, 244, 238, 0.15);
  color: var(--bg);
}

/* DevOps logo grid */
.cap-logos {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(245, 244, 238, 0.15);
  position: relative;
  z-index: 2;
}

@media (max-width: 600px) {
  .cap-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }
  .cap-logo {
    min-height: 56px;
    padding: 0.85rem 0.5rem;
  }
  .cap-logo svg {
    max-height: 22px;
  }
}
.cap-logo {
  background: rgba(245, 244, 238, 0.06);
  border: 1px solid rgba(245, 244, 238, 0.12);
  border-radius: 8px;
  padding: 1.1rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  transition: all 0.25s;
  color: rgba(245, 244, 238, 0.85);
}

.cap-logo:hover {
  background: rgba(245, 244, 238, 0.1);
  border-color: rgba(204, 120, 92, 0.4);
  transform: translateY(-2px);
}

.cap-logo svg {
  max-width: 100%;
  max-height: 28px;
  width: auto;
  height: auto;
}

/* Text-with-icon logos (for items without official logos like CI/CD, Monitoring) */
.cap-logo-text {
  flex-direction: column;
  gap: 0.4rem;
  padding: 0.85rem 0.5rem;
}

.cap-logo-text svg {
  max-height: 18px;
  color: var(--accent);
}

.cap-logo-text span {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(245, 244, 238, 0.85);
  font-weight: 500;
}

/* ===== TESTIMONIALS (Anthropic style with slider) ===== */
.testimonials {
  background: var(--bg);
  color: var(--ink);
  padding: 6rem 0 4rem;
}

.testimonials-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.testimonials-intro {
  text-align: center;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  line-height: 1.4;
  letter-spacing: -0.015em;
  color: var(--ink);
  max-width: 720px;
  margin: 0 auto 3.5rem;
  font-variation-settings: "opsz" 48;
}

/* Slider container */
.testimonials-slider {
  position: relative;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  gap: 1.25rem;
}

.testimonials-slide {
  flex: 0 0 calc(50% - 0.625rem);
  min-width: 0;
}

@media (max-width: 820px) {
  .testimonials-slide {
    flex: 0 0 100%;
  }
}
.testimonial {
  background: var(--bg-alt);
  border-radius: 12px;
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  height: 100%;
}

@media (max-width: 600px) {
  .testimonial {
    padding: 1.75rem;
  }
}
.testimonial-logo {
  height: 28px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--ink);
}

.testimonial-logo .logo-mark {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.testimonial-logo .logo-icon {
  width: 22px;
  height: 22px;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-logo .logo-icon svg {
  width: 100%;
  height: 100%;
}

.testimonial-logo .accent {
  color: var(--accent);
}

.testimonial-divider {
  width: 100%;
  height: 1px;
  background: var(--line);
  margin-bottom: 1.5rem;
}

.testimonial-quote-mark {
  font-family: var(--font-body);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 0.6;
  color: var(--ink);
  margin: 0 0 0.5rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: -0.005em;
  margin: 0 0 2rem;
  flex-grow: 1;
  color: var(--ink);
  font-variation-settings: "opsz" 24;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-top: auto;
}

.testimonial-name {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.95rem;
  color: var(--ink-dim);
}

.testimonial-role {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-faint);
}

/* Slider controls */
.slider-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}

.slider-counter {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink-dim);
}

.slider-counter strong {
  font-weight: 600;
  color: var(--ink);
}

.slider-counter .total {
  color: var(--ink-faint);
}

.slider-arrows {
  display: flex;
  gap: 0.5rem;
}

.slider-btn {
  width: 44px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg);
  color: var(--ink-dim);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.slider-btn:hover:not(:disabled) {
  border-color: var(--ink);
  color: var(--ink);
}

.slider-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.slider-btn svg {
  width: 16px;
  height: 16px;
}

/* ===== FAQ ===== */
.faq-list {
  max-width: 860px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 2rem 0;
}

.faq-item:first-child {
  border-top: 1px solid var(--line);
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  background: transparent;
  border: none;
  padding: 0;
  transition: color 0.2s;
  font-variation-settings: "opsz" 48;
}

.faq-q:hover {
  color: var(--accent);
}

.faq-q i {
  width: 22px;
  height: 22px;
  color: var(--ink-faint);
  transition: transform 0.3s;
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-q[aria-expanded=true] i {
  transform: rotate(45deg);
  color: var(--accent);
}

.faq-a {
  margin-top: 1.25rem;
  color: var(--ink-dim);
  font-size: 1.02rem;
  line-height: 1.65;
  max-width: 700px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 8rem 0;
  background: var(--bg-alt);
}
.contact-section .container {
  padding-left: clamp(1.5rem, 5vw, 4rem);
  padding-right: clamp(1.5rem, 5vw, 4rem);
}

@media (max-width: 720px) {
  .contact-section {
    padding: 5rem 0;
  }
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
.contact-side h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-variation-settings: "opsz" 144;
}

.contact-side h2 .italic {
  font-style: italic;
  color: var(--accent);
  font-weight: 400;
}

.contact-side p {
  color: var(--ink-dim);
  font-size: 1.1rem;
  margin-bottom: 2.5rem;
  max-width: 420px;
  line-height: 1.55;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.contact-info-item i {
  color: var(--accent);
  width: 18px;
  height: 18px;
}

.contact-info-item .label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-right: 0.5rem;
  font-weight: 500;
  min-width: 90px;
}

.contact-info-item a:hover {
  color: var(--accent);
}

.form-wrap {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 2.75rem;
}

@media (max-width: 600px) {
  .form-wrap {
    padding: 1.75rem;
  }
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-row.single {
  grid-template-columns: 1fr;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-field label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 500;
}

.form-field label .req {
  color: var(--accent);
}

.form-field input, .form-field select, .form-field textarea {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 0.85rem 1rem;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 0.98rem;
  transition: all 0.2s;
}

.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--ink);
  background: var(--bg);
}

.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}

.form-submit {
  width: 100%;
  margin-top: 0.75rem;
  justify-content: center;
}

.form-foot {
  margin-top: 1.25rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--ink-faint);
  letter-spacing: 0.04em;
  text-align: center;
}

.form-err {
  color: var(--accent-dim, #c0392b);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  margin-top: 0.35rem;
  display: block;
}

.form-success {
  padding: 1rem 1.25rem;
  background: rgba(204, 120, 92, 0.1);
  border-left: 3px solid var(--accent);
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-radius: 4px;
}

.form-error {
  padding: 1rem 1.25rem;
  background: rgba(220, 53, 69, 0.08);
  border-left: 3px solid #dc3545;
  color: var(--ink);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  border-radius: 4px;
}

.form-field-check {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.5rem;
}

.form-field-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink);
  font-weight: 400;
  cursor: pointer;
}

.form-field-check input[type=checkbox] {
  margin-top: 0.2rem;
  width: auto;
  flex-shrink: 0;
}

/* ===== FOOTER ===== */
footer {
  background: var(--ink);
  color: var(--dark-text);
  padding: 5rem var(--pad) 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(245, 244, 238, 0.1);
}

@media (max-width: 820px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (max-width: 480px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2.5rem;
  }
  .footer-bot {
    font-size: 0.7rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.75rem;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
  color: var(--bg);
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  font-variation-settings: "opsz" 96;
  line-height: 1;
}

.footer-brand .word {
  position: relative;
}

.footer-brand .nine {
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

.footer-brand .suffix {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 238, 0.5);
  font-weight: 500;
  padding-left: 0.6rem;
  border-left: 1px solid rgba(245, 244, 238, 0.2);
  position: relative;
  top: -0.1em;
}

.footer-tag {
  color: rgba(245, 244, 238, 0.6);
  font-size: 0.95rem;
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245, 244, 238, 0.5);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-col a {
  color: rgba(245, 244, 238, 0.75);
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--accent);
}

.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2.5rem;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(245, 244, 238, 0.4);
  letter-spacing: 0.04em;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s, transform 0.7s;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

[data-lucide] {
  width: 16px;
  height: 16px;
  stroke-width: 1.5;
}

/* ===== COOKIE CONSENT (Botble plugin) — theme override ===== */
body .site-notice {
  background-color: var(--ink) !important;
  color: var(--bg) !important;
  border-radius: 14px !important;
  box-shadow: 0 12px 40px rgba(26, 26, 25, 0.18), 0 2px 6px rgba(26, 26, 25, 0.08) !important;
}
body .site-notice .site-notice-body { border-radius: 14px !important; }
body .site-notice .site-notice__message {
  font-family: var(--font-body) !important;
  font-size: 0.9rem !important;
  color: var(--bg) !important;
}
body .site-notice .site-notice__message a { color: var(--accent) !important; text-decoration: underline; }
body .site-notice .site-notice__actions button {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: 0.85rem !important;
  border-radius: 100px !important;
  padding: 0.6rem 1.2rem !important;
  white-space: nowrap !important;
  letter-spacing: 0.01em;
}
body .site-notice .site-notice__agree {
  background-color: var(--accent) !important;
  color: var(--bg) !important;
  border-color: var(--accent) !important;
}
body .site-notice .site-notice__agree:hover {
  background-color: var(--accent-dim) !important;
  border-color: var(--accent-dim) !important;
}
body .site-notice .site-notice__reject,
body .site-notice .site-notice__customize {
  background-color: transparent !important;
  color: var(--bg) !important;
  border: 1px solid rgba(245, 244, 238, 0.25) !important;
}
@media (max-width: 767px) {
  body .site-notice {
    left: 0.75rem !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    border-radius: 12px !important;
  }
  body .site-notice .site-notice-body { padding: 14px 18px !important; border-radius: 12px !important; }
  body .site-notice .site-notice__message { font-size: 0.85rem !important; gap: 0.75rem !important; }
  body .site-notice .site-notice__message::before { width: 24px !important; height: 24px !important; }
  body .site-notice .site-notice__actions {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0.5rem !important;
    width: 100% !important;
  }
  body .site-notice .site-notice__actions button {
    width: 100% !important;
    min-width: 0 !important;
    flex: 0 0 auto !important;
    padding: 0.7rem 1rem !important;
    white-space: normal !important;
    text-overflow: clip !important;
    overflow: visible !important;
  }
}