/*! tailwindcss v4.3.0 | MIT License | https://tailwindcss.com */
@layer properties;
.invisible {
  visibility: hidden;
}
.visible {
  visibility: visible;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.static {
  position: static;
}
.container {
  width: 100%;
}
.block {
  display: block;
}
.grid {
  display: grid;
}
.table {
  display: table;
}
.transform {
  transform: var(--tw-rotate-x,) var(--tw-rotate-y,) var(--tw-rotate-z,) var(--tw-skew-x,) var(--tw-skew-y,);
}
.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}
.underline {
  text-decoration-line: underline;
}
.filter {
  filter: var(--tw-blur,) var(--tw-brightness,) var(--tw-contrast,) var(--tw-grayscale,) var(--tw-hue-rotate,) var(--tw-invert,) var(--tw-saturate,) var(--tw-sepia,) var(--tw-drop-shadow,);
}
.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}
:root {
  --bg: #0e0e0e;
  --bg-raised: #161616;
  --bg-card: #1c1c1c;
  --ink: #f0ece6;
  --ink-muted: #8a8580;
  --ink-dim: #5a5652;
  --accent: #c44b25;
  --accent-light: #e8683f;
  --accent-glow: rgba(196, 75, 37, 0.15);
  --border: #2a2724;
  --border-light: #3a3632;
  --serif: 'Instrument Serif', Georgia, serif;
  --sans: 'DM Sans', -apple-system, sans-serif;
}
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::-moz-selection {
  background: var(--accent);
  color: #fff;
}
::selection {
  background: var(--accent);
  color: #fff;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section {
  padding: 7rem 0;
}
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--accent);
}
.section-intro {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.75;
  max-width: 720px;
}
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(14, 14, 14, 0.8);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--ink);
}
.nav-logo-text {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
}
.nav-logo-text span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink-muted);
  text-decoration: none;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 6px;
  font-weight: 600 !important;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--accent-light) !important;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  margin: 5px 0;
  transition: 0.3s;
}
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(196, 75, 37, 0.05) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 1;
}
.hero-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.15s forwards;
}
.hero-label::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--accent);
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.8rem, 6.5vw, 5rem);
  line-height: 1.06;
  font-weight: 400;
  max-width: 820px;
  margin-bottom: 1.75rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.3s forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--accent);
}
.hero-sub {
  font-size: 1.15rem;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.45s forwards;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s ease 0.6s forwards;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
  font-family: var(--sans);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(196, 75, 37, 0.3);
}
.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border-light);
}
.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.btn-arrow {
  transition: transform 0.2s;
}
.btn:hover .btn-arrow {
  transform: translateX(3px);
}
.btn-cta-large {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}
.evolution {
  border-top: 1px solid var(--border);
}
.evo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}
.evo-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  position: relative;
  transition: all 0.3s;
}
.evo-card:hover {
  border-color: var(--border-light);
}
.evo-card.active {
  border-color: var(--accent);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(196, 75, 37, 0.04) 100%);
  box-shadow: 0 0 60px var(--accent-glow);
}
.evo-step {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-bottom: 1rem;
}
.evo-card.active .evo-step {
  color: var(--accent);
}
.evo-figure {
  margin: 3rem auto 0;
  max-width: 900px;
  text-align: center;
}
.evo-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--border);
}
.evo-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.evo-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.problem {
  border-top: 1px solid var(--border);
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-top: 3rem;
}
.problem-stats {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.stat {
  padding: 1.75rem;
  border-left: 3px solid var(--accent);
  background: var(--bg-raised);
  border-radius: 0 10px 10px 0;
}
.stat-number {
  font-family: var(--serif);
  font-size: 2.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-text {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.5;
}
.problem-text p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.problem-text strong {
  color: var(--ink);
}
.agent-reality {
  border-top: 1px solid var(--border);
}
.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.insight-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  transition: all 0.3s;
}
.insight-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.insight-tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.insight-card h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.insight-card p {
  font-size: 0.9rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.services {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.service-card {
  padding: 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--border-light);
  transform: translateY(-2px);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.3s;
}
.service-card:hover::before {
  opacity: 1;
}
.service-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}
.service-card h3 {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.service-card p {
  font-size: 0.88rem;
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.service-deliverable {
  font-size: 0.78rem;
  color: var(--ink-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-deliverable strong {
  color: var(--ink-muted);
}
.agentic {
  border-top: 1px solid var(--border);
}
.agentic-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.agentic-copy p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.agentic-list {
  display: grid;
  gap: 0.75rem;
}
.agentic-list div {
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
  background: var(--bg-raised);
  color: var(--ink-muted);
  font-size: 0.9rem;
}
.buyers {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.buyer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  margin-top: 3rem;
}
.buyer-card {
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
}
.buyer-card h3 {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 0.75rem;
}
.buyer-card p {
  font-size: 0.85rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.articles {
  border-top: 1px solid var(--border);
}
.articles-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.article-card {
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  transition: all 0.3s;
  text-decoration: none;
  color: var(--ink);
  display: flex;
  flex-direction: column;
}
.article-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}
.article-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.article-card h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
  flex-grow: 1;
}
.article-card p {
  font-size: 0.82rem;
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.article-meta {
  font-size: 0.72rem;
  color: var(--ink-dim);
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.about {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
  margin-top: 3rem;
}
.about-identity h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
}
.about-role {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 0.3rem;
}
.about-company {
  font-size: 0.85rem;
  color: var(--ink-muted);
  margin-bottom: 2rem;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.credential {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--ink-muted);
}
.credential-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.about-text p {
  font-size: 1rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.about-text strong {
  color: var(--ink);
}
.about-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.faq {
  border-top: 1px solid var(--border);
}
.faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.faq-item {
  padding: 1.75rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
}
.faq-item h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.35;
  margin-bottom: 0.75rem;
}
.faq-item p {
  font-size: 0.86rem;
  color: var(--ink-muted);
  line-height: 1.7;
}
.cta-section {
  border-top: 1px solid var(--border);
  text-align: center;
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 60%);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  z-index: 1;
}
.cta-section .section-title {
  max-width: 600px;
  margin: 0 auto 1.5rem;
}
.cta-sub {
  font-size: 1.05rem;
  color: var(--ink-muted);
  max-width: 480px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}
footer {
  border-top: 1px solid var(--border);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-text {
  font-size: 0.78rem;
  color: #d3c0ac;
}
.footer-version {
  font-size: 0.7rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  color: var(--ink-dim);
  background: var(--bg-card);
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.footer-links {
  display: flex;
  gap: 2rem;
}
.footer-links a {
  font-size: 0.78rem;
  color: #d3c0ac;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--accent);
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.intent-spec-section {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.intent-spec-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: start;
  margin-top: 3rem;
}
.intent-spec-copy p {
  font-size: 1.05rem;
  color: var(--ink-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.intent-spec-copy strong {
  color: var(--ink);
}
.intent-spec-card {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(196, 75, 37, 0.04), 0 24px 60px -30px rgba(0, 0, 0, 0.6);
}
.intent-spec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.7rem 1.1rem;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.72rem;
}
.intent-spec-filename {
  color: var(--ink-muted);
  letter-spacing: 0.02em;
}
.intent-spec-badge {
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.intent-spec-body {
  font-family: ui-monospace, 'SF Mono', Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.65;
  color: var(--ink-muted);
  padding: 1.4rem 1.6rem;
  overflow-x: auto;
  white-space: pre;
  margin: 0;
}
.intent-spec-body .is-key {
  color: var(--accent);
  font-weight: 600;
}
.intent-spec-body .is-val {
  color: var(--ink);
}
.failure-modes {
  border-top: 1px solid var(--border);
}
.insight-grid.insight-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.insight-grid.failure-grid {
  grid-template-columns: repeat(3, 1fr);
}
.failure-fix {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--ink-dim);
}
.failure-fix strong {
  color: var(--accent);
}
.methodology {
  border-top: 1px solid var(--border);
  background: var(--bg-raised);
}
.services-grid.methodology-grid {
  grid-template-columns: repeat(2, 1fr);
}
.boundaries {
  border-top: 1px solid var(--border);
}
.boundary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}
.boundary-col {
  padding: 2rem 2.25rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
}
.boundary-for {
  border-top: 3px solid var(--accent);
}
.boundary-against {
  border-top: 3px solid var(--ink-dim);
}
.boundary-header {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}
.boundary-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1;
}
.boundary-for .boundary-icon {
  background: var(--accent-glow);
  color: var(--accent);
}
.boundary-against .boundary-icon {
  background: rgba(138, 133, 128, 0.12);
  color: var(--ink-muted);
}
.boundary-header h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 400;
}
.boundary-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}
.boundary-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-muted);
  line-height: 1.65;
}
.boundary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
}
.boundary-for .boundary-list li::before {
  background: var(--accent);
}
.boundary-against .boundary-list li::before {
  background: var(--ink-dim);
}
.services-verticals {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.services-verticals-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-dim);
  margin-right: 0.4rem;
}
.vertical-badge {
  font-size: 0.78rem;
  color: var(--ink-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .evo-grid {
    grid-template-columns: 1fr;
  }
  .problem-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .insight-grid {
    grid-template-columns: 1fr;
  }
  .insight-grid.insight-grid-4 {
    grid-template-columns: 1fr;
  }
  .insight-grid.failure-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .services-grid.methodology-grid {
    grid-template-columns: 1fr;
  }
  .agentic-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .buyer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .intent-spec-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .boundary-grid {
    grid-template-columns: 1fr;
  }
  .articles-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .faq-list {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    gap: 1.5rem;
    text-align: center;
  }
}
@media (max-width: 700px) {
  nav {
    padding: 1rem 1.25rem;
  }
  .nav-links {
    display: none;
  }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(14, 14, 14, 0.95);
    backdrop-filter: blur(24px);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1rem;
  }
  .nav-toggle {
    display: block;
  }
  .container {
    padding: 0 1.25rem;
  }
  .section {
    padding: 4.5rem 0;
  }
  .hero {
    padding: 6.5rem 0 3.5rem;
  }
  .articles-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .buyer-grid {
    grid-template-columns: 1fr;
  }
  .intent-spec-body {
    font-size: 0.7rem;
    padding: 1rem 1.1rem;
  }
  .boundary-col {
    padding: 1.5rem 1.5rem;
  }
}
@property --tw-rotate-x {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-y {
  syntax: "*";
  inherits: false;
}
@property --tw-rotate-z {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-x {
  syntax: "*";
  inherits: false;
}
@property --tw-skew-y {
  syntax: "*";
  inherits: false;
}
@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}
@property --tw-blur {
  syntax: "*";
  inherits: false;
}
@property --tw-brightness {
  syntax: "*";
  inherits: false;
}
@property --tw-contrast {
  syntax: "*";
  inherits: false;
}
@property --tw-grayscale {
  syntax: "*";
  inherits: false;
}
@property --tw-hue-rotate {
  syntax: "*";
  inherits: false;
}
@property --tw-invert {
  syntax: "*";
  inherits: false;
}
@property --tw-opacity {
  syntax: "*";
  inherits: false;
}
@property --tw-saturate {
  syntax: "*";
  inherits: false;
}
@property --tw-sepia {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false;
}
@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}
@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false;
}
@layer properties {
  @supports ((-webkit-hyphens: none) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color:rgb(from red r g b)))) {
    *, ::before, ::after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}
