/* =================================================================
   SALES INTEL ENGINE / SHARED DESIGN SYSTEM
   "Engineered for Relevance"
   Modernist, architectural, Swiss-precision aesthetic.
   Geist Sans body + Instrument Serif accents + Geist Mono details.
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Geist:wght@300;400;500;600;700&family=Geist+Mono:wght@400;500;600&family=Instrument+Serif:ital@0;1&display=swap');

/* ----- TOKENS ----------------------------------------------------- */

:root {
  /* Surface */
  --paper: #FFFFFF;
  --paper-2: #FAFAFB;
  --paper-3: #F2F4F7;
  --paper-tint: #EDF0F7;

  /* Ink */
  --ink: #0A0E1A;
  --ink-2: #1F2433;
  --ink-3: #4D5567;
  --ink-4: #7A8195;
  --ink-faint: #B4BBC9;

  /* Brand */
  --brand: #5064AA;
  --brand-deep: #3D4F8C;
  --brand-soft: #7A8FD6;
  --brand-pale: #C7D0EC;

  /* Lines */
  --rule: rgba(10, 14, 26, 0.07);
  --rule-2: rgba(10, 14, 26, 0.14);
  --rule-3: rgba(10, 14, 26, 0.22);
  --rule-brand: rgba(80, 100, 170, 0.28);

  /* Type */
  --display: 'Geist', -apple-system, system-ui, sans-serif;
  --sans: 'Geist', -apple-system, system-ui, sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
  --mono: 'Geist Mono', ui-monospace, 'SF Mono', monospace;

  /* Spatial */
  --max: 1280px;
  --max-narrow: 980px;
  --max-tight: 760px;
  --gutter: clamp(20px, 4vw, 48px);
  --section-y: clamp(80px, 11vw, 140px);
  --section-y-tight: clamp(56px, 8vw, 96px);
}

/* ----- RESET ------------------------------------------------------ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
*::selection { background: var(--ink); color: var(--paper); }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--paper);
  color: var(--ink-2);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  /* Subtle architectural grid texture */
  background-image:
    linear-gradient(to right, rgba(10, 14, 26, 0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10, 14, 26, 0.018) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: -1px -1px;
}

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }

/* ----- LAYOUT ----------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}
.container--narrow { max-width: var(--max-narrow); }
.container--tight { max-width: var(--max-tight); }

section {
  position: relative;
  padding: var(--section-y) 0;
}
section + section {
  border-top: 1px solid var(--rule);
}

/* ----- TYPOGRAPHY ------------------------------------------------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 14px;
  height: 1px;
  background: var(--brand);
}

.section-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}
.section-tag-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.display {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(40px, 6.6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  color: var(--ink);
}
.display .accent {
  color: var(--brand);
  font-weight: 500;
}
.display .accent-underline {
  color: var(--brand);
  position: relative;
  display: inline-block;
}
.display .accent-underline::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0.04em;
  height: 0.12em;
  background: var(--brand);
  opacity: 0.18;
  z-index: -1;
}
.display .nowrap { white-space: nowrap; }

h2.title,
.title-2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(34px, 5.2vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--ink);
}
h2.title .accent,
.title-2 .accent { color: var(--brand); }

h3.title-3,
.title-3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.16;
  letter-spacing: -0.018em;
  color: var(--ink);
}

.lede {
  font-family: var(--sans);
  font-weight: 400;
  font-size: clamp(17px, 1.4vw, 19px);
  line-height: 1.55;
  letter-spacing: -0.005em;
  color: var(--ink-3);
}

p { color: var(--ink-3); }
p strong { color: var(--ink); font-weight: 600; }

/* ----- BUTTONS ---------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all 0.18s ease;
  white-space: nowrap;
  text-align: center;
}

.btn--primary {
  background: var(--ink);
  color: var(--paper);
}
.btn--primary:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.btn--accent {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper);
}
.btn--accent:hover {
  background: var(--brand-deep);
  border-color: var(--brand-deep);
}

.btn--ghost {
  background: var(--paper);
  border-color: var(--rule-2);
  color: var(--ink);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: var(--paper);
}

.btn--lg {
  padding: 16px 26px;
  font-size: 12px;
}

.btn--block {
  width: 100%;
}

.btn-arrow {
  transition: transform 0.2s ease;
  display: inline-block;
}
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-play {
  display: inline-grid;
  place-items: center;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: currentColor;
  flex-shrink: 0;
}
.btn-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent var(--paper);
  margin-left: 1px;
}

/* ----- NAV -------------------------------------------------------- */

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 32px;
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-brand-img {
  height: 26px;
  width: auto;
  display: block;
}
.nav-brand-tag {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-4);
  border-left: 1px solid var(--rule-2);
  padding-left: 12px;
}
.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
  margin-left: auto;
  margin-right: 24px;
}
.nav-links a {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.15s;
  white-space: nowrap;
}
.nav-links a:hover { color: var(--brand); }
.nav-links a.is-active { color: var(--ink); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-login {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 10px 14px;
  transition: color 0.15s;
}
.nav-login:hover { color: var(--brand); }

.nav-cta {
  padding: 11px 18px;
  font-size: 10.5px;
}

@media (max-width: 920px) {
  .nav-links { display: none; }
  .nav-brand-tag { display: none; }
}
@media (max-width: 540px) {
  .nav-login { display: none; }
  .nav-brand-img { height: 22px; }
  .nav-cta { padding: 9px 14px; font-size: 10px; }
}

/* ----- HERO ------------------------------------------------------- */

.hero {
  padding: clamp(72px, 10vw, 132px) 0 clamp(80px, 10vw, 140px);
  position: relative;
  overflow: hidden;
}
.hero::before,
.hero::after {
  content: '';
  position: absolute;
  background: var(--rule);
  pointer-events: none;
}
.hero::before {
  /* horizontal grid line at hero bottom */
  bottom: 0; left: 0; right: 0;
  height: 1px;
}
.hero-grid-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.hero-grid-marks span {
  border-left: 1px solid transparent;
  height: 100%;
}
.hero-grid-marks span:first-child,
.hero-grid-marks span:last-child {
  border-color: var(--rule);
}
@media (max-width: 720px) {
  .hero-grid-marks { display: none; }
}

.hero-eyebrow {
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 0.7s 0.1s ease-out forwards;
}

.hero h1 {
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 0.8s 0.25s ease-out forwards;
  max-width: 14ch;
}

.hero-lede {
  max-width: 540px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.8s 0.4s ease-out forwards;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: fadeUp 0.8s 0.55s ease-out forwards;
}

.hero-trust {
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-3);
  opacity: 0;
  animation: fadeUp 0.8s 0.7s ease-out forwards;
}
.hero-trust strong {
  color: var(--ink);
  font-weight: 500;
}
.hero-trust .sep {
  color: var(--ink-faint);
}

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

/* ----- CARNEGIE MOMENT ------------------------------------------- */

.carnegie {
  background: var(--paper-2);
  padding: clamp(96px, 14vw, 180px) 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.carnegie::before {
  /* corner mark, top left */
  content: '';
  position: absolute;
  top: 28px; left: 28px;
  width: 18px; height: 18px;
  border-top: 1px solid var(--ink-faint);
  border-left: 1px solid var(--ink-faint);
}
.carnegie::after {
  /* corner mark, bottom right */
  content: '';
  position: absolute;
  bottom: 28px; right: 28px;
  width: 18px; height: 18px;
  border-bottom: 1px solid var(--ink-faint);
  border-right: 1px solid var(--ink-faint);
}

.carnegie-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 4.4vw, 56px);
  line-height: 1.18;
  letter-spacing: -0.012em;
  color: var(--ink);
  text-align: center;
  margin: 32px auto 0;
  max-width: 24ch;
  font-weight: 400;
}
.carnegie-quote .open-quote,
.carnegie-quote .close-quote {
  color: var(--ink-faint);
}
.carnegie-quote .addition {
  color: var(--brand);
  font-style: italic;
  display: inline;
}
.carnegie-quote .period {
  display: inline;
  transition: opacity 0.3s;
}

.carnegie-attr {
  margin-top: 36px;
  text-align: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  min-height: 50px;
}
.carnegie-attr-line {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: opacity 0.5s ease;
  position: absolute;
  width: 100%;
  justify-content: center;
}
.carnegie-attr-line::before,
.carnegie-attr-line::after {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--ink-faint);
}
.carnegie-attr-line.is-old { opacity: 1; }
.carnegie-attr-line.is-new { opacity: 0; }
.carnegie-attr.is-updated .carnegie-attr-line.is-old { opacity: 0; }
.carnegie-attr.is-updated .carnegie-attr-line.is-new { opacity: 1; }
.carnegie-attr-line span {
  white-space: nowrap;
}
@media (max-width: 540px) {
  .carnegie-attr-line span { white-space: normal; line-height: 1.4; }
  .carnegie-attr { min-height: 70px; }
}

.carnegie-explainer {
  max-width: 56ch;
  margin: clamp(48px, 7vw, 88px) auto 0;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.6;
  text-align: center;
  color: var(--ink-2);
}
.carnegie-explainer strong {
  display: block;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.2vw, 28px);
  letter-spacing: -0.018em;
  color: var(--ink);
  margin-bottom: 16px;
}

/* ----- POSITIONING (IS / IS NOT) --------------------------------- */

.positioning .section-head {
  margin-bottom: 64px;
  max-width: 920px;
}
.positioning .section-head h2 {
  margin-top: 12px;
}

.positioning-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 880px) {
  .positioning-grid { grid-template-columns: 1fr; }
}

.position-card {
  padding: 48px 44px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.position-card:hover {
  border-color: var(--ink);
  transform: translateY(-2px);
}

.position-card--is {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

.position-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.position-tag::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--ink-faint);
}
.position-card--is .position-tag {
  color: var(--brand-soft);
}
.position-card--is .position-tag::before {
  background: var(--brand-soft);
}

.position-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.position-card--is .position-h {
  color: var(--paper);
}

.position-card p {
  font-size: 15.5px;
  line-height: 1.65;
}
.position-card--is p {
  color: rgba(255, 255, 255, 0.72);
}
.position-card--is p strong {
  color: var(--paper);
}

.positioning-pull {
  margin: 88px auto 0;
  text-align: center;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.32;
  letter-spacing: -0.016em;
  color: var(--ink-2);
  max-width: 800px;
}
.positioning-pull strong {
  color: var(--brand);
  font-weight: 600;
}

/* ----- FOUR JOBS -------------------------------------------------- */

.jobs .section-head {
  margin-bottom: 80px;
  max-width: 880px;
}

.job-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
  padding: clamp(48px, 8vw, 96px) 0;
  border-top: 1px solid var(--rule);
}
.job-block:last-child { border-bottom: 1px solid var(--rule); }
.job-block.is-reverse .job-text { order: 2; }
@media (max-width: 880px) {
  .job-block { grid-template-columns: 1fr; gap: 36px; padding: 56px 0; }
  .job-block.is-reverse .job-text { order: 0; }
}

.job-num {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 16px;
  display: inline-block;
  background: var(--paper-tint);
  padding: 5px 11px;
}

.job-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 20px;
}
.job-h .accent { color: var(--brand); }

.job-text p {
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 14px;
}
.job-text p:last-child { margin-bottom: 0; }

.job-list {
  margin-top: 24px;
  list-style: none;
}
.job-list li {
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 14.5px;
  display: flex;
  align-items: baseline;
  gap: 12px;
  color: var(--ink-2);
}
.job-list li:last-child {
  border-bottom: 1px solid var(--rule);
}
.job-list li::before {
  content: '+';
  color: var(--brand);
  font-family: var(--mono);
  font-weight: 700;
  flex-shrink: 0;
}

/* Screenshot frame, light, architectural */
.shot-frame {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.shot-frame:hover {
  transform: translateY(-3px);
  box-shadow: 0 1px 2px rgba(10,14,26,0.04), 0 16px 40px rgba(10,14,26,0.08);
}
.shot-frame-bar {
  background: var(--paper-3);
  padding: 9px 14px;
  border-bottom: 1px solid var(--rule);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}
.shot-frame-dots {
  display: flex;
  gap: 5px;
  margin-right: 6px;
}
.shot-frame-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ink-faint);
}
.shot-frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ----- ADDITIVE STACK STRIP -------------------------------------- */

.stack-section {
  background: var(--paper-2);
}
.stack-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.022em;
  color: var(--ink);
  max-width: 22ch;
  margin-bottom: 24px;
}
.stack-headline .accent { color: var(--brand); }
.stack-sub {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-3);
  max-width: 580px;
  margin-bottom: 56px;
}

.stack-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding-top: 36px;
  border-top: 1px solid var(--rule-2);
}
.stack-row-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-right: 12px;
  white-space: nowrap;
}
.stack-tool {
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: -0.012em;
  color: var(--ink-3);
  padding: 9px 16px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  white-space: nowrap;
}

/* ----- LOGO CLOUD (TRUSTED BY) ----------------------------------- */

.logos {
  background: var(--paper);
}
.logos-head {
  text-align: center;
  margin-bottom: 64px;
}
.logos-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.logos-h {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.018em;
  color: var(--ink);
}
.logos-h .accent { color: var(--brand); }

.logo-cloud {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule);
  border-top: 1px solid var(--rule);
}
@media (max-width: 980px) {
  .logo-cloud { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 540px) {
  .logo-cloud { grid-template-columns: repeat(2, 1fr); }
}
.logo-cell {
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  height: 110px;
  display: grid;
  place-items: center;
  padding: 24px;
}
.logo-cell img {
  max-height: 38px;
  max-width: 130px;
  width: auto;
  height: auto;
  filter: grayscale(100%);
  opacity: 0.55;
  transition: filter 0.25s ease, opacity 0.25s ease;
}
.logo-cell:hover img {
  filter: none;
  opacity: 1;
}

/* Per-logo balance overrides (logos have wildly different aspect ratios and internal padding) */
.logo-cell[data-logo="travelers"] img { max-height: 26px; max-width: 170px; }
.logo-cell[data-logo="generaldynamics"] img { max-height: 44px; max-width: 150px; }
.logo-cell[data-logo="ricoh"] img { max-height: 30px; }
.logo-cell[data-logo="chubb"] img { max-height: 56px; }
.logo-cell[data-logo="3m"] img { max-height: 48px; }
.logo-cell[data-logo="site"] img { max-height: 44px; }
.logo-cell[data-logo="jacobs"] img { max-height: 36px; max-width: 130px; }

/* ----- SAM CREDIBILITY ------------------------------------------- */

.sam-section {
  background: var(--paper-3);
}
.sam-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
@media (max-width: 880px) {
  .sam-grid { grid-template-columns: 1fr; }
}

.sam-photo-frame {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  aspect-ratio: 4 / 5;
  position: relative;
  overflow: hidden;
}
.sam-photo-frame::before {
  content: 'PHOTO PLACEHOLDER';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ink-faint);
}
.sam-photo-frame::after {
  content: '';
  position: absolute;
  inset: 12px;
  border: 1px dashed var(--rule-2);
  pointer-events: none;
}
.sam-photo-frame.has-photo::before,
.sam-photo-frame.has-photo::after { display: none; }
.sam-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sam-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 28px 0 32px;
}
.sam-credential {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 12px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
}

.sam-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 32px;
  border-top: 1px solid var(--rule-2);
  border-left: 1px solid var(--rule-2);
}
@media (max-width: 540px) {
  .sam-stats { grid-template-columns: repeat(2, 1fr); }
}
.sam-stat {
  padding: 24px 20px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--paper);
}
.sam-stat-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--brand);
  margin-bottom: 8px;
}
.sam-stat-label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* ----- THREE PLANS PREVIEW --------------------------------------- */

.plans-section .section-head {
  margin-bottom: 64px;
  max-width: 880px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule-2);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 880px) {
  .plans-grid { grid-template-columns: 1fr; }
}

.plan-card {
  padding: 36px 32px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: background 0.2s ease;
}
.plan-card:hover { background: var(--paper-2); }
.plan-card.is-feature {
  background: var(--ink);
  color: var(--paper);
}
.plan-card.is-feature:hover { background: var(--ink-2); }

.plan-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  align-items: center;
  gap: 10px;
}
.plan-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--brand);
}
.plan-card.is-feature .plan-tag { color: var(--brand-soft); }

.plan-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--ink);
}
.plan-card.is-feature .plan-name { color: var(--paper); }

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.plan-price-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(36px, 4vw, 48px);
  line-height: 1;
  letter-spacing: -0.028em;
  color: var(--ink);
}
.plan-card.is-feature .plan-price-num { color: var(--paper); }
.plan-price-suffix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.plan-card.is-feature .plan-price-suffix { color: var(--brand-soft); }

.plan-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-top: -8px;
}
.plan-card.is-feature .plan-meta { color: var(--brand-soft); }

.plan-card p {
  font-size: 14px;
  line-height: 1.6;
  flex: 1;
}
.plan-card.is-feature p { color: rgba(255,255,255,0.72); }

.plan-link {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand);
  border-bottom: 1px solid var(--brand);
  padding-bottom: 3px;
  align-self: flex-start;
  transition: color 0.15s, border-color 0.15s;
}
.plan-link:hover { color: var(--brand-deep); border-color: var(--brand-deep); }
.plan-card.is-feature .plan-link {
  color: var(--paper);
  border-color: var(--paper);
}
.plan-card.is-feature .plan-link:hover {
  color: var(--brand-soft);
  border-color: var(--brand-soft);
}

.plans-cta-row {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

/* ----- FINAL CTA ------------------------------------------------- */

.final-cta {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(96px, 14vw, 180px) 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  border-top: none;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
}

.final-cta .eyebrow {
  color: var(--brand-soft);
  margin-bottom: 28px;
}
.final-cta .eyebrow::before {
  background: var(--brand-soft);
}

.final-cta h2 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(42px, 6.2vw, 88px);
  line-height: 0.96;
  letter-spacing: -0.035em;
  margin-bottom: 32px;
  color: var(--paper);
}
.final-cta h2 .accent { color: var(--brand-soft); }

.final-cta p {
  font-size: 17px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 44px;
}

.final-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.final-cta .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.final-cta .btn--primary:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--paper);
}
.final-cta .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--paper);
}
.final-cta .btn--ghost:hover {
  border-color: var(--paper);
  background: transparent;
}

/* ----- FOOTER ---------------------------------------------------- */

footer {
  background: var(--paper);
  border-top: 1px solid var(--rule);
  padding: 64px 0 32px;
  color: var(--ink-3);
  font-size: 13px;
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
.foot-brand img {
  height: 24px;
  width: auto;
  margin-bottom: 16px;
}
.foot-brand p {
  font-size: 12.5px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 280px;
}
.foot-col h5 {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  margin-bottom: 14px;
}
.foot-col ul { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.foot-col a {
  font-size: 13px;
  color: var(--ink-3);
  transition: color 0.15s;
}
.foot-col a:hover { color: var(--brand); }

.foot-bottom {
  border-top: 1px solid var(--rule);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-4);
}

/* ----- REVEAL UTILITY -------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* =================================================================
   ADDED FOR COMPREHENSIVE HOME PAGE
   ================================================================= */

/* ----- ANCHOR OFFSET FOR STICKY NAV ------------------------------ */

.anchor {
  position: relative;
  top: -80px;
  visibility: hidden;
  pointer-events: none;
}

/* ----- PRICING SECTION ------------------------------------------- */

.pricing-section {
  background: var(--paper);
}
.pricing-section .section-head {
  margin-bottom: 64px;
  max-width: 880px;
}

.pricing-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule-2);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 980px) {
  .pricing-tiers { grid-template-columns: 1fr; }
}

.tier {
  padding: 40px 36px 44px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  position: relative;
}
.tier.is-feature {
  background: var(--ink);
  color: var(--paper);
}

.tier-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.tier-tag::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--brand);
}
.tier.is-feature .tier-tag { color: var(--brand-soft); }

.tier-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 18px;
  line-height: 1.1;
}
.tier.is-feature .tier-name { color: var(--paper); }

.tier-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 4px;
}
.tier-price-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(38px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.tier.is-feature .tier-price-num { color: var(--paper); }

.tier-price-suffix {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}
.tier.is-feature .tier-price-suffix { color: var(--brand-soft); }

.tier-meta {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  margin-bottom: 24px;
}
.tier.is-feature .tier-meta { color: var(--brand-soft); }

.tier-renew {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
  margin-bottom: 24px;
  padding: 10px 12px;
  border: 1px dashed var(--rule-2);
}
.tier.is-feature .tier-renew {
  color: rgba(255,255,255,0.6);
  border-color: rgba(255,255,255,0.18);
}
.tier.is-feature .tier-renew strong {
  color: var(--paper);
}

.tier-best {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  margin-bottom: 28px;
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
.tier-best strong {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: block;
  margin-bottom: 6px;
}
.tier.is-feature .tier-best {
  color: rgba(255,255,255,0.72);
  border-color: rgba(255,255,255,0.14);
}
.tier.is-feature .tier-best strong { color: var(--brand-soft); }

.tier-features {
  list-style: none;
  margin-bottom: 32px;
  flex: 1;
}
.tier-features li {
  padding: 10px 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-2);
  display: flex;
  align-items: baseline;
  gap: 10px;
  border-top: 1px solid var(--rule);
}
.tier-features li:last-child {
  border-bottom: 1px solid var(--rule);
}
.tier-features li::before {
  content: '+';
  color: var(--brand);
  font-family: var(--mono);
  font-weight: 700;
  flex-shrink: 0;
}
.tier-features li.is-muted {
  color: var(--ink-4);
}
.tier-features li.is-muted::before {
  content: '–';
  color: var(--ink-faint);
}
.tier.is-feature .tier-features li {
  color: rgba(255,255,255,0.85);
  border-color: rgba(255,255,255,0.12);
}
.tier.is-feature .tier-features li::before { color: var(--brand-soft); }

.tier-cta {
  margin-top: auto;
}
.tier .btn--block { padding: 14px 18px; }

.tier.is-feature .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.tier.is-feature .btn--primary:hover {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: var(--ink);
}

/* Trust strip below pricing */
.pricing-trust {
  margin-top: 56px;
  padding: 28px 36px;
  background: var(--paper-2);
  border: 1px solid var(--rule);
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.pricing-trust strong {
  color: var(--ink);
  font-weight: 600;
}
.pricing-trust .sep { color: var(--ink-faint); }

/* ----- COMPARISON TABLE ------------------------------------------ */

.compare {
  margin-top: 80px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
  overflow: hidden;
}
.compare-head {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 18px 28px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--rule-2);
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.compare-table th,
.compare-table td {
  padding: 18px 24px;
  text-align: left;
  border-bottom: 1px solid var(--rule);
  font-size: 14.5px;
  line-height: 1.5;
  vertical-align: top;
}
.compare-table thead th {
  background: var(--paper);
  font-family: var(--display);
  font-weight: 500;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.012em;
  border-bottom: 1px solid var(--rule-2);
  padding-top: 24px;
  padding-bottom: 24px;
}
.compare-table thead th:first-child {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.compare-table thead th .tier-mini-tag {
  display: block;
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 4px;
}
.compare-table tbody th {
  background: var(--paper-2);
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-2);
  width: 28%;
  border-right: 1px solid var(--rule);
}
.compare-table td {
  color: var(--ink-2);
}
.compare-table td.is-yes {
  color: var(--brand);
  font-weight: 500;
}
.compare-table td.is-no {
  color: var(--ink-faint);
}
.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}
.compare-table .row-best th {
  background: var(--ink);
  color: var(--paper);
}
.compare-table .row-best td {
  background: var(--paper-2);
  font-size: 13.5px;
  color: var(--ink-3);
}

@media (max-width: 880px) {
  .compare-table { font-size: 13px; }
  .compare-table th,
  .compare-table td { padding: 14px 14px; }
  .compare-table thead th { font-size: 14px; }
  .compare-table tbody th { font-size: 10.5px; width: 32%; }
}

/* ----- CUSTOM GPT SECTION ---------------------------------------- */

.gpt-section {
  background: var(--paper-3);
}
.gpt-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .gpt-grid { grid-template-columns: 1fr; }
}

.gpt-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.gpt-headline .accent { color: var(--brand); }

.gpt-body p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 18px;
  color: var(--ink-2);
}

.gpt-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 28px 0;
  border: 1px solid var(--rule-2);
  background: var(--paper);
}
@media (max-width: 540px) {
  .gpt-options { grid-template-columns: 1fr; }
}
.gpt-option {
  padding: 24px 22px;
  border-right: 1px solid var(--rule);
}
.gpt-option:last-child { border-right: none; }
@media (max-width: 540px) {
  .gpt-option { border-right: none; border-bottom: 1px solid var(--rule); }
  .gpt-option:last-child { border-bottom: none; }
}
.gpt-option-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 8px;
}
.gpt-option h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 17px;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-bottom: 6px;
  line-height: 1.25;
}
.gpt-option p {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-3);
  margin: 0;
}

.gpt-specs {
  list-style: none;
  margin-top: 8px;
}
.gpt-specs li {
  padding: 14px 0;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
  color: var(--ink-2);
}
@media (max-width: 540px) {
  .gpt-specs li { grid-template-columns: 1fr; gap: 4px; }
}
.gpt-specs li:last-child { border-bottom: 1px solid var(--rule); }
.gpt-specs li strong {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 2px;
}

.gpt-price-call {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--ink);
  color: var(--paper);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.gpt-price-call-left {
  display: flex;
  align-items: baseline;
  gap: 14px;
}
.gpt-price-call-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: -0.025em;
  color: var(--paper);
}
.gpt-price-call-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--brand-soft);
  text-transform: uppercase;
}
.gpt-price-call-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
}

/* ----- ENTERPRISE + KEYNOTE DEEP DIVE ---------------------------- */

.ent-section {
  background: var(--ink);
  color: var(--paper);
  position: relative;
  border-top: none;
}
.ent-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--brand);
}
.ent-section .section-tag { color: var(--brand-soft); }
.ent-section .section-tag-num {
  background: var(--paper);
  color: var(--ink);
}
.ent-section .title { color: var(--paper); }
.ent-section .title .accent { color: var(--brand-soft); }

.ent-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
  margin-top: 48px;
}
@media (max-width: 980px) {
  .ent-grid { grid-template-columns: 1fr; }
}

.ent-video {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  aspect-ratio: 16 / 9;
  position: relative;
  display: grid;
  place-items: center;
  cursor: pointer;
  overflow: hidden;
}
.ent-video::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(80,100,170,0.18), rgba(255,255,255,0.04));
}
.ent-video-inner {
  position: relative;
  text-align: center;
  z-index: 1;
}
.ent-video-play {
  width: 76px; height: 76px;
  border-radius: 50%;
  background: var(--paper);
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  transition: transform 0.2s ease;
}
.ent-video:hover .ent-video-play { transform: scale(1.06); }
.ent-video-play::after {
  content: '';
  width: 0; height: 0;
  border-style: solid;
  border-width: 14px 0 14px 22px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 4px;
}
.ent-video-label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
}
.ent-video-link {
  margin-top: 18px;
  display: block;
  text-align: center;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: var(--brand-soft);
  text-transform: uppercase;
}
.ent-video-link a { border-bottom: 1px solid currentColor; padding-bottom: 2px; }
.ent-video-link a:hover { color: var(--paper); }

.ent-content h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.018em;
  color: var(--paper);
  margin-bottom: 18px;
}
.ent-content p {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.ent-content p strong { color: var(--paper); font-weight: 600; }

.ent-includes {
  list-style: none;
  margin: 24px 0;
}
.ent-includes li {
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 14px;
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
}
.ent-includes li:last-child {
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.ent-includes li::before {
  content: '+';
  color: var(--brand-soft);
  font-family: var(--mono);
  font-weight: 700;
  font-size: 16px;
}
.ent-includes li strong {
  color: var(--paper);
  font-weight: 600;
  display: inline;
}

.ent-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 24px;
  flex-wrap: wrap;
  margin: 28px 0;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
  border-bottom: 1px solid rgba(255,255,255,0.18);
}
.ent-price-block {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.ent-price-num {
  font-family: var(--display);
  font-weight: 600;
  font-size: 36px;
  letter-spacing: -0.025em;
  color: var(--paper);
  line-height: 1;
}
.ent-price-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--brand-soft);
  text-transform: uppercase;
}
.ent-price-divider {
  width: 1px;
  height: 32px;
  background: rgba(255,255,255,0.2);
}

.ent-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.ent-section .btn--primary {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.ent-section .btn--primary:hover {
  background: var(--brand-soft);
  border-color: var(--brand-soft);
  color: var(--ink);
}
.ent-section .btn--ghost {
  background: transparent;
  border-color: rgba(255,255,255,0.3);
  color: var(--paper);
}
.ent-section .btn--ghost:hover {
  border-color: var(--paper);
  background: transparent;
}

/* ----- TESTIMONIAL CARDS ----------------------------------------- */

.reviews-section {
  background: var(--paper);
}
.reviews-section .section-head {
  margin-bottom: 64px;
  max-width: 900px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border-left: 1px solid var(--rule-2);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 880px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

.review {
  padding: 40px 36px;
  border-right: 1px solid var(--rule-2);
  border-bottom: 1px solid var(--rule-2);
  background: var(--paper);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.review-mark {
  font-family: var(--serif);
  font-size: 64px;
  line-height: 0.6;
  color: var(--brand);
  font-style: italic;
  height: 24px;
}
.review-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  font-weight: 400;
  flex: 1;
}
.review-author {
  padding-top: 20px;
  border-top: 1px solid var(--rule);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.review-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.review-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-3);
}

.reviews-cta-row {
  margin-top: 48px;
  text-align: center;
}

/* ----- FAQ ------------------------------------------------------- */

.faq-section {
  background: var(--paper-2);
}
.faq-section .section-head {
  margin-bottom: 56px;
  max-width: 760px;
}

.faq-list {
  border-top: 1px solid var(--rule-2);
}

.faq-item {
  border-bottom: 1px solid var(--rule-2);
}
.faq-q {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 26px 0;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(17px, 1.6vw, 20px);
  letter-spacing: -0.012em;
  color: var(--ink);
  line-height: 1.35;
  transition: color 0.15s;
}
.faq-q:hover { color: var(--brand); }

.faq-q-toggle {
  flex-shrink: 0;
  width: 24px; height: 24px;
  display: grid;
  place-items: center;
  position: relative;
}
.faq-q-toggle::before,
.faq-q-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink-3);
  transition: transform 0.25s ease, background 0.15s;
}
.faq-q-toggle::before { width: 14px; height: 1px; }
.faq-q-toggle::after { width: 1px; height: 14px; }
.faq-item.is-open .faq-q-toggle::after { transform: rotate(90deg); }
.faq-item.is-open .faq-q-toggle::before,
.faq-item.is-open .faq-q-toggle::after { background: var(--brand); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item.is-open .faq-a {
  max-height: 800px;
}
.faq-a-inner {
  padding: 0 0 28px 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 720px;
}
.faq-a-inner p { margin-bottom: 12px; color: var(--ink-2); }
.faq-a-inner p:last-child { margin-bottom: 0; }
.faq-a-inner strong { color: var(--ink); font-weight: 600; }
.faq-a-inner ul { padding-left: 0; margin: 8px 0 12px; list-style: none; }
.faq-a-inner ul li {
  padding: 4px 0 4px 22px;
  position: relative;
}
.faq-a-inner ul li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--brand);
  font-family: var(--mono);
  font-weight: 700;
}

/* =================================================================
   HERO TWO-COLUMN (TEXT + IMAGE)
   ================================================================= */

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 540px;
  margin-left: auto;
  background:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%);
  border: 1px solid var(--rule-2);
  overflow: hidden;
  padding: 44px 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.9s 0.5s ease-out forwards;
  /* Faint blueprint grid */
  background-image:
    linear-gradient(180deg, var(--paper) 0%, var(--paper-2) 100%),
    linear-gradient(to right, rgba(10,14,26,0.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(10,14,26,0.035) 1px, transparent 1px);
  background-size: 100% 100%, 24px 24px, 24px 24px;
  background-position: 0 0, 0 0, 0 0;
  background-blend-mode: normal, multiply, multiply;
}
@media (max-width: 980px) {
  .hero-visual { margin: 0 auto; max-width: 480px; padding: 36px 28px; }
}

/* Decorative architectural marks at the four corners */
.hero-visual-marks {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-visual-marks::before,
.hero-visual-marks::after {
  content: '';
  position: absolute;
  width: 14px; height: 14px;
}
.hero-visual-marks::before {
  top: 14px; left: 14px;
  border-top: 1px solid var(--ink-faint);
  border-left: 1px solid var(--ink-faint);
}
.hero-visual-marks::after {
  bottom: 14px; right: 14px;
  border-bottom: 1px solid var(--ink-faint);
  border-right: 1px solid var(--ink-faint);
}
.hv-tag {
  position: absolute;
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  pointer-events: none;
}
.hv-tag-tl { top: 14px; left: 32px; }
.hv-tag-tr { top: 14px; right: 32px; color: var(--brand); }
.hv-tag-bl { bottom: 14px; left: 32px; color: var(--ink-faint); }
.hv-tag-br { bottom: 14px; right: 32px; color: var(--ink-faint); }
@media (max-width: 380px) {
  .hv-tag-bl, .hv-tag-tr { display: none; }
}

/* The clickable tier stack */
.hero-tier-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.hero-tier {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--paper);
  border: 1px solid var(--rule-3);
  padding: 14px 18px 16px;
  text-decoration: none;
  color: var(--ink);
  cursor: pointer;
  align-self: flex-end;
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.2s ease,
    box-shadow 0.25s ease,
    background 0.2s ease;
  opacity: 0;
  transform: translateY(14px);
  animation: heroTierIn 0.7s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-tier[data-tier="01"] { width: 78%; animation-delay: 0.85s; }
.hero-tier[data-tier="02"] { width: 89%; animation-delay: 1.0s; }
.hero-tier[data-tier="03"] { width: 100%; animation-delay: 1.15s; }

@media (max-width: 540px) {
  .hero-tier[data-tier="01"],
  .hero-tier[data-tier="02"],
  .hero-tier[data-tier="03"] { width: 100%; }
  .hv-tag { display: none; }
}

@keyframes heroTierIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-tier:hover {
  transform: translateY(-3px);
  border-color: var(--brand);
  box-shadow: 0 10px 24px rgba(80, 100, 170, 0.14);
  z-index: 2;
}
.hero-tier:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 3px;
}

/* Meta row: PLAN 01 + status dot */
.hero-tier-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.hero-tier-num {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--brand);
  text-transform: uppercase;
}
.hero-tier-status {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--brand);
  opacity: 0.5;
  animation: tierPulse 2.4s ease-in-out infinite;
}
@keyframes tierPulse {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.15); }
}

.hero-tier-flag {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--brand-soft);
  text-transform: uppercase;
  padding: 3px 7px;
  background: rgba(164, 181, 224, 0.15);
  border: 1px solid rgba(164, 181, 224, 0.3);
}

.hero-tier-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.15;
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}
.hero-tier-aside {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  text-transform: uppercase;
}

.hero-tier-foot {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
  padding-top: 8px;
  border-top: 1px solid var(--rule);
}
.hero-tier-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.hero-tier-unit {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--ink-3);
}

.hero-tier-arrow {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 0.2s ease, transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  line-height: 1;
}
.hero-tier:hover .hero-tier-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Feature tier (dark) */
.hero-tier--feature {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
  padding-left: 22px;
}
.hero-tier--feature .hero-tier-name { color: var(--paper); }
.hero-tier--feature .hero-tier-num { color: var(--brand-soft); }
.hero-tier--feature .hero-tier-aside { color: var(--brand-soft); }
.hero-tier--feature .hero-tier-price { color: var(--paper); }
.hero-tier--feature .hero-tier-unit { color: var(--brand-soft); }
.hero-tier--feature .hero-tier-foot { border-top-color: rgba(255,255,255,0.14); }
.hero-tier--feature .hero-tier-arrow { color: var(--brand-soft); }
.hero-tier--feature:hover {
  border-color: var(--brand);
  box-shadow:
    0 12px 32px rgba(10,14,26,0.32),
    0 0 0 1px rgba(80, 100, 170, 0.4);
}

/* Brand stripe on tier 03 */
.hero-tier-stripe {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: var(--brand);
}
.hero-tier--feature:hover .hero-tier-stripe {
  background: linear-gradient(180deg, var(--brand-soft), var(--brand));
}

/* Hero text needs a width re-cap when in 2-col */
.hero-grid .hero-eyebrow,
.hero-grid h1,
.hero-grid .hero-lede,
.hero-grid .hero-actions,
.hero-grid .hero-trust {
  max-width: none;
}
.hero-grid h1 { max-width: none; font-size: clamp(36px, 5.6vw, 76px); }
.hero-grid .hero-lede { max-width: 460px; }

/* =================================================================
   CONTACT PAGE: FORM + INFO
   ================================================================= */

.contact-section {
  padding: var(--section-y) 0;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
}

.contact-form {
  background: var(--paper);
  border: 1px solid var(--rule-2);
  padding: 36px clamp(24px, 4vw, 44px);
}
.contact-form-head {
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--rule);
}
.contact-form-head h3 {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(22px, 2.4vw, 28px);
  letter-spacing: -0.018em;
  color: var(--ink);
  line-height: 1.18;
}
.contact-form-head p {
  font-size: 14px;
  color: var(--ink-3);
  margin-top: 8px;
  line-height: 1.5;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 20px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 540px) {
  .field-row { grid-template-columns: 1fr; gap: 0; }
}

.field label {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.field label .req {
  color: var(--brand);
  margin-left: 2px;
}

.field input,
.field select,
.field textarea {
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  padding: 13px 14px;
  background: var(--paper);
  border: 1px solid var(--rule-2);
  border-radius: 0;
  width: 100%;
  transition: border-color 0.15s, background 0.15s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  line-height: 1.45;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--paper);
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--ink-faint);
}
.field textarea {
  min-height: 130px;
  resize: vertical;
}

.field-select {
  position: relative;
}
.field-select::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -3px;
  width: 8px; height: 8px;
  border-right: 1.5px solid var(--ink-3);
  border-bottom: 1.5px solid var(--ink-3);
  transform: rotate(45deg);
  pointer-events: none;
}
.field-select select {
  padding-right: 36px;
  cursor: pointer;
}

.field-help {
  font-size: 12.5px;
  color: var(--ink-4);
  line-height: 1.4;
}

.form-actions {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.form-required-note {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-4);
}
.form-required-note .req { color: var(--brand); }

.form-success {
  display: none;
  padding: 20px 24px;
  background: var(--paper-tint);
  border: 1px solid var(--rule-brand);
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.form-success.is-shown {
  display: block;
}
.form-success strong { color: var(--brand-deep); }

.form-error {
  display: none;
  padding: 20px 24px;
  background: rgba(220, 80, 80, 0.06);
  border: 1px solid rgba(220, 80, 80, 0.35);
  margin-top: 16px;
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
}
.form-error.is-shown {
  display: block;
}
.form-error strong { color: #B0383A; }

/* Contact info column */
.contact-info {
  padding: 36px clamp(24px, 4vw, 36px);
  background: var(--ink);
  color: var(--paper);
}
.contact-info h4 {
  font-family: var(--display);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.018em;
  color: var(--paper);
  margin-bottom: 8px;
}
.contact-info-tag {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brand-soft);
  margin-bottom: 12px;
}
.contact-info p {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  margin-bottom: 24px;
}

.contact-card {
  margin-top: 28px;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.18);
}
.contact-card-name {
  font-family: var(--display);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: -0.014em;
  color: var(--paper);
  margin-bottom: 6px;
}
.contact-card-role {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 18px;
  text-transform: uppercase;
}
.contact-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-link-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--paper);
  border-bottom: 1px solid rgba(255,255,255,0.18);
  padding-bottom: 12px;
  transition: color 0.15s, border-color 0.15s;
}
.contact-link-list a:hover {
  color: var(--brand-soft);
  border-color: var(--brand-soft);
}
.contact-link-list svg {
  width: 16px; height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.contact-meta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  text-transform: uppercase;
}

/* =================================================================
   REVIEWS PAGE: FULL WALL
   ================================================================= */

.reviews-wall {
  padding: var(--section-y-tight) 0 var(--section-y);
}
.reviews-wall .section-head {
  margin-bottom: 56px;
  max-width: 880px;
}

.reviews-wall-grid {
  columns: 3;
  column-gap: 0;
  border-left: 1px solid var(--rule-2);
  border-top: 1px solid var(--rule-2);
}
@media (max-width: 980px) {
  .reviews-wall-grid { columns: 2; }
}
@media (max-width: 640px) {
  .reviews-wall-grid { columns: 1; }
}

.reviews-wall-grid .review {
  break-inside: avoid;
  page-break-inside: avoid;
  display: block;
  border-right: 1px solid var(--rule-2);
  padding: 32px 28px;
}
.reviews-wall-grid .review-mark {
  margin-bottom: 18px;
}
.reviews-wall-grid .review-quote {
  font-size: 17px;
  line-height: 1.45;
  margin-bottom: 18px;
}
.reviews-wall-grid .review-author {
  padding-top: 16px;
}

.reviews-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
}
.reviews-tag {
  font-family: var(--mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  padding: 5px 10px;
  border: 1px solid var(--rule-2);
  background: var(--paper);
}
.reviews-tag.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}

/* Big quoted hero on Reviews page */
.reviews-hero {
  padding: clamp(72px, 9vw, 120px) 0 clamp(48px, 6vw, 80px);
  background: var(--paper);
}
.reviews-hero-inner {
  max-width: 980px;
}
.reviews-hero-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.25;
  letter-spacing: -0.012em;
  color: var(--ink);
  margin-top: 36px;
  margin-bottom: 28px;
  font-weight: 400;
}
.reviews-hero-quote .accent {
  color: var(--brand);
}
.reviews-hero-attr {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* =================================================================
   READABILITY BUMPS
   Increase font size on labels, captions, and body text inside cards.
   Headlines and large titles stay the same.
   ================================================================= */

/* Eyebrows and section tags */
.eyebrow { font-size: 13px; }
.section-tag { font-size: 13px; }
.section-tag-num { font-size: 12px; }

/* Nav */
.nav-links a { font-size: 12.5px; }
.nav-login { font-size: 12.5px; }
.nav-cta { font-size: 11.5px; }

/* Hero */
.hero-trust { font-size: 13px; }
.hero-eyebrow { font-size: 13px; }

/* Hero tier cards */
.hero-tier-num { font-size: 11.5px; }
.hero-tier-aside { font-size: 11.5px; }
.hero-tier-flag { font-size: 10.5px; }
.hero-tier-unit { font-size: 12.5px; }

/* Buttons */
.btn { font-size: 12.5px; }
.btn--lg { font-size: 13px; }

/* Position cards (IS/IS NOT) */
.position-tag { font-size: 12px; }
.position-card p { font-size: 16.5px; }

/* Job blocks */
.job-num { font-size: 12.5px; }
.job-text p { font-size: 16.5px; }
.job-list li { font-size: 15.5px; }

/* Stack section */
.stack-row-label { font-size: 12px; }
.stack-tool { font-size: 17px; }
.stack-sub { font-size: 17px; }

/* Logos */
.logos-tag { font-size: 12.5px; }

/* Reviews */
.review-quote { font-size: clamp(19px, 1.7vw, 22px); }
.review-name { font-size: 16px; }
.review-role { font-size: 12.5px; }
.reviews-wall-grid .review-quote { font-size: 17px; }
.reviews-wall-grid .review-name { font-size: 15.5px; }
.reviews-wall-grid .review-role { font-size: 12.5px; }
.reviews-hero-attr { font-size: 13px; }

/* Sam credibility */
.sam-credential { font-size: 12px; }
.sam-stat-label { font-size: 12px; }

/* Pricing tier cards */
.tier-tag { font-size: 12px; }
.tier-price-suffix { font-size: 13.5px; }
.tier-meta { font-size: 12.5px; }
.tier-renew { font-size: 12px; }
.tier-best { font-size: 15.5px; }
.tier-best strong { font-size: 12px; }
.tier-features li { font-size: 15.5px; }

/* Comparison table */
.compare-head { font-size: 12px; }
.compare-table thead th .tier-mini-tag { font-size: 11.5px; }
.compare-table thead th { font-size: 17px; }
.compare-table thead th:first-child { font-size: 12px; }
.compare-table tbody th { font-size: 13px; }
.compare-table th, .compare-table td { font-size: 15.5px; }
.compare-table .row-best td { font-size: 14.5px; }

/* Pricing trust strip */
.pricing-trust { font-size: 13px; }

/* Custom GPT */
.gpt-option-tag { font-size: 11.5px; }
.gpt-option h4 { font-size: 18px; }
.gpt-option p { font-size: 14.5px; }
.gpt-specs li { font-size: 15.5px; }
.gpt-specs li strong { font-size: 12px; }
.gpt-price-call-num { font-size: 36px; }
.gpt-price-call-sub { font-size: 12px; }
.gpt-price-call-note { font-size: 11.5px; }

/* Enterprise + Keynote */
.ent-content p { font-size: 16.5px; }
.ent-includes li { font-size: 15.5px; }
.ent-price-sub { font-size: 12px; }
.ent-video-label { font-size: 12px; }
.ent-video-link { font-size: 11.5px; }

/* FAQ */
.faq-a-inner { font-size: 16.5px; }
.faq-a-inner ul li { font-size: 15.5px; }

/* Form (contact) */
.field label { font-size: 12px; }
.field input, .field select, .field textarea { font-size: 16px; }
.field-help { font-size: 13.5px; }
.form-required-note { font-size: 12px; }
.contact-info-tag { font-size: 12px; }
.contact-info p { font-size: 15.5px; }
.contact-card-role { font-size: 12px; }
.contact-link-list a { font-size: 14px; }
.contact-meta { font-size: 11.5px; }

/* Footer */
.foot-col h5 { font-size: 12px; }
.foot-col a { font-size: 14.5px; }
.foot-bottom { font-size: 12px; }
.foot-brand p { font-size: 14px; }

/* =================================================================
   VIDEO PLACEHOLDER SECTION (between hero and Carnegie)
   ================================================================= */

.demo-feature {
  background: var(--paper);
  padding: clamp(56px, 7vw, 88px) 0 clamp(72px, 9vw, 110px);
  border-bottom: 1px solid var(--rule);
}
.demo-feature .container { max-width: 1100px; }
.demo-feature-head {
  text-align: center;
  margin-bottom: 36px;
}
.demo-feature-head .section-tag {
  justify-content: center;
}
.demo-feature-headline {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(24px, 3vw, 36px);
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--ink);
  margin-top: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}
.demo-feature-headline .accent { color: var(--brand); }

.demo-frame {
  position: relative;
  background: var(--ink);
  aspect-ratio: 16 / 9;
  width: 100%;
  border: 1px solid var(--rule-2);
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.3s ease;
}
.demo-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(10,14,26,0.14);
}
.demo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(80,100,170,0.22) 0%, rgba(10,14,26,0) 65%),
    linear-gradient(135deg, rgba(80,100,170,0.12), rgba(255,255,255,0.04));
  pointer-events: none;
}
.demo-frame-inner {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  z-index: 1;
}
.demo-frame-play {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--paper);
  position: relative;
  transition: transform 0.25s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.32);
}
.demo-frame:hover .demo-frame-play { transform: scale(1.08); }
.demo-frame-play::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 0; height: 0;
  border-style: solid;
  border-width: 16px 0 16px 26px;
  border-color: transparent transparent transparent var(--ink);
  margin-left: 5px;
}
.demo-frame-label {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--paper);
  opacity: 0.85;
}
.demo-frame-corner {
  position: absolute;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  z-index: 2;
}
.demo-frame-corner.is-tl { top: 18px; left: 22px; }
.demo-frame-corner.is-br { bottom: 18px; right: 22px; }

/* When swapped to a real video or iframe */
.demo-frame video,
.demo-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =================================================================
   LIGHTBOX (click product screenshots to zoom)
   ================================================================= */

.shot-frame img,
.demo-frame {
  cursor: zoom-in;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10, 14, 26, 0.94);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(20px, 4vw, 60px);
  opacity: 0;
  transition: opacity 0.25s ease;
}
.lightbox.is-open {
  display: flex;
  opacity: 1;
}
.lightbox-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
  cursor: default;
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 24px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.28);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 18px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}
.lightbox-close:hover {
  border-color: var(--paper);
  background: rgba(255,255,255,0.06);
}
.lightbox-close::after {
  content: '\00d7';
  font-size: 18px;
  line-height: 1;
}
.lightbox-caption {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  pointer-events: none;
}

/* =================================================================
   MOBILE NAV: HAMBURGER + DRAWER
   ================================================================= */

.nav-hamburger {
  display: none;
  background: transparent;
  border: 1px solid var(--rule-2);
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 0;
  position: relative;
  flex-shrink: 0;
}
.nav-hamburger span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.2s, top 0.25s ease;
}
.nav-hamburger span:nth-child(1) { top: 13px; }
.nav-hamburger span:nth-child(2) { top: 19px; }
.nav-hamburger span:nth-child(3) { top: 25px; }

@media (max-width: 980px) {
  .nav-links { display: none !important; }
  .nav-actions .nav-login { display: none; }
  .nav-actions .nav-cta { display: none; }
  .nav-hamburger { display: block; }
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--paper);
  display: flex;
  flex-direction: column;
  padding: 18px 24px 32px;
  transform: translateY(-100%);
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1), visibility 0s linear 0.32s;
  visibility: hidden;
  overflow-y: auto;
}
.mobile-drawer.is-open {
  transform: translateY(0);
  visibility: visible;
  transition: transform 0.32s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.mobile-drawer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--rule);
}
.mobile-drawer-top .nav-brand-img {
  height: 28px;
  width: auto;
}

.mobile-drawer-close {
  background: transparent;
  border: 1px solid var(--rule-2);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 9px 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.mobile-drawer-close span {
  font-size: 18px;
  line-height: 1;
}
.mobile-drawer-close:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.mobile-drawer-links {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.mobile-drawer-links li {
  border-bottom: 1px solid var(--rule);
}
.mobile-drawer-links li:last-child { border-bottom: none; }
.mobile-drawer-links a {
  display: block;
  padding: 22px 0;
  font-family: var(--display);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: -0.018em;
  color: var(--ink);
  text-decoration: none;
  transition: color 0.15s;
}
.mobile-drawer-links a:hover,
.mobile-drawer-links a:active {
  color: var(--brand);
}

.mobile-drawer-actions {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--rule-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.mobile-drawer-login {
  display: block;
  text-align: center;
  padding: 13px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-2);
  border: 1px solid var(--rule-2);
  text-decoration: none;
}
.mobile-drawer-login:hover {
  border-color: var(--ink);
  color: var(--ink);
}

body.no-scroll {
  overflow: hidden;
}

/* Hide drawer entirely on desktop */
@media (min-width: 981px) {
  .mobile-drawer { display: none; }
}
