/* ==========================================================================
   Turatech Website — Site stylesheet
   Layered on top of turatech-tokens.css
   Editorial, engineering-grade, document-first.
   ========================================================================== */

/* ---------- Reset / utilities ----------------------------------------- */
img {
  max-width: 100%;
  display: block;
}

button {
  font: inherit;
  cursor: pointer;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* tighter base */
body {
  font-feature-settings: "ss01", "cv11";
}

h1,
h2,
h3,
h4,
h5 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

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

/* ---------- Container ------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter-desktop);
  padding-right: var(--gutter-desktop);
}

.container-wide {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--gutter-desktop);
}

@media (max-width: 720px) {

  .container,
  .container-wide {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }
}

/* ---------- Header / Navigation -------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: var(--sp-2xl);
  height: 64px;
}

.site-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  flex-shrink: 0;
}

.site-header__logo img {
  height: 22px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-lg);
  flex: 1;
}

.site-nav a {
  color: var(--fg-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 6px 0;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}

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

.site-nav a.is-active {
  color: var(--ink);
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -19px;
  height: 2px;
  background: var(--red-500);
}

.site-nav .has-dropdown {
  position: relative;
}

.site-nav .has-dropdown>a::after {
  content: " ▾";
  font-size: 10px;
  color: var(--stone-400);
}

.site-nav .dropdown {
  position: absolute;
  top: 100%;
  left: -16px;
  min-width: 280px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity var(--dur-fast), visibility var(--dur-fast), transform var(--dur-fast);
}

.site-nav .has-dropdown:hover .dropdown,
.site-nav .has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.site-nav .dropdown a {
  display: block;
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--fg-1);
}

.site-nav .dropdown a:hover {
  background: var(--stone-50);
}

.site-nav .dropdown a small {
  display: block;
  color: var(--fg-3);
  font-weight: 400;
  font-size: 12px;
  margin-top: 2px;
}

.site-header__cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.btn-icon-menu {
  display: none;
}

@media (max-width: 1024px) {
  .site-nav {
    display: none;
  }

  .site-header__inner {
    justify-content: space-between;
  }

  .btn-icon-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius-md);
  }
}

@media (max-width: 520px) {
  .site-header__cta>.btn {
    display: none;
  }
}

/* ---------- Buttons --------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--dur-fast) var(--ease-out);
}

.btn--primary {
  background: var(--red-500);
  color: var(--white);
  border-color: var(--red-500);
}

.btn--primary:hover {
  background: var(--red-600);
  border-color: var(--red-600);
  color: var(--white);
  text-decoration: none;
}

.btn--secondary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--ink);
}

.btn--secondary:hover {
  background: var(--ink);
  color: var(--white);
  text-decoration: none;
}

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

.btn--ghost:hover {
  background: var(--stone-50);
  color: var(--ink);
  text-decoration: none;
}

.btn--inverse {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
}

.btn--inverse:hover {
  background: var(--stone-100);
}

.btn--sm {
  padding: 10px 16px;
  font-size: 14px;
}

.btn--lg {
  padding: 18px 28px;
  font-size: 16px;
}

.linkcta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: gap var(--dur-fast);
}

.linkcta:hover {
  gap: 10px;
  color: var(--red-600);
  border-bottom-color: var(--red-600);
  text-decoration: none;
}

.linkcta::after {
  content: "→";
}

/* ---------- Page chrome ---------------------------------------------- */
.section {
  padding-top: var(--sp-5xl);
  padding-bottom: var(--sp-5xl);
}

.section--sm {
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-3xl);
}

.section--md {
  padding-top: var(--sp-4xl);
  padding-bottom: var(--sp-4xl);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--white);
}

.section--dark .t-marker {
  color: var(--red-300);
}

.section--dark p {
  color: var(--stone-300);
}

.section--subtle {
  background: var(--stone-50);
}

.section--panel {
  background: var(--stone-100);
}

@media (max-width: 720px) {
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section--md {
    padding-top: 56px;
    padding-bottom: 56px;
  }
}

/* ---------- Section header pattern ----------------------------------- */
.sec-head {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-3xl);
  align-items: end;
  margin-bottom: var(--sp-2xl);
  padding-bottom: var(--sp-lg);
  border-bottom: 1px solid var(--border);
}

.sec-head__eyebrow .t-marker {
  display: block;
  margin-bottom: 12px;
}

.sec-head__step {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone-500);
  letter-spacing: 0.05em;
}

.sec-head h2 {
  margin: 0 0 0 0;
}

.sec-head__lead {
  font-size: var(--fs-body-lg);
  color: var(--fg-2);
  margin: 0;
}

@media (max-width: 900px) {
  .sec-head {
    grid-template-columns: 1fr;
    gap: var(--sp-md);
    align-items: start;
  }
}

/* ---------- Hero ----------------------------------------------------- */
.hero {
  position: relative;
  padding-top: 96px;
  padding-bottom: 120px;
  border-bottom: 1px solid var(--border);
  background: var(--white);
  overflow: hidden;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-3xl);
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__eyebrow .dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red-500);
  border-radius: 50%;
}

.hero h1 {
  font-size: clamp(40px, 6vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  max-width: 18ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--red-500);
}

.hero__sub {
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--fg-2);
  max-width: 60ch;
  margin: 0 0 32px;
}

.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 56px;
}

.hero__sub-cta {
  color: var(--fg-3);
  font-size: 13px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  padding-top: var(--sp-xl);
  border-top: 1px solid var(--border);
}

.hero__proof .stat-num {
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 8px;
}

.hero__proof .stat-label {
  font-size: 13px;
  color: var(--fg-3);
  line-height: 1.4;
}

@media (max-width: 720px) {
  .hero {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .hero__proof {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-lg);
  }
}

/* ---------- Insight band --------------------------------------------- */
.insight {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--sp-4xl);
}

.insight blockquote {
  margin: 0;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.2;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  max-width: 30ch;
}

.insight blockquote span {
  color: var(--red-300);
}

.insight cite {
  display: block;
  margin-top: 32px;
  font-style: normal;
  font-size: 13px;
  color: var(--stone-400);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.insight__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--sp-3xl);
}

.insight__caption {
  color: var(--stone-300);
  font-size: var(--fs-body-lg);
  line-height: 1.6;
}

.insight__caption strong {
  color: var(--white);
}

@media (max-width: 900px) {
  .insight__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Alternatives table --------------------------------------- */
.alt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  background: var(--white);
}

.alt-table thead th {
  text-align: left;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
  font-weight: 600;
  padding: 16px 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: bottom;
}

.alt-table thead th.col-tura {
  color: var(--red-600);
  background: var(--red-50);
}

.alt-table tbody td {
  padding: 18px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  color: var(--fg-1);
  line-height: 1.5;
}

.alt-table tbody td.col-tura {
  background: var(--red-50);
  font-weight: 500;
}

.alt-table tbody tr:last-child td {
  border-bottom: 1px solid var(--ink);
}

.alt-table .row-label {
  font-weight: 600;
  color: var(--ink);
  width: 22%;
  background: var(--stone-50);
}

.alt-table .pill {
  display: inline-block;
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--fg-2);
  margin-right: 4px;
}

.alt-table .pill--good {
  background: rgba(22, 163, 74, 0.10);
  color: #166534;
}

.alt-table .pill--bad {
  background: rgba(220, 38, 38, 0.10);
  color: #991B1B;
}

.alt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

/* ---------- Pillar cards --------------------------------------------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1000px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  transition: border-color var(--dur-base), transform var(--dur-base);
}

.pillar:hover {
  border-color: var(--ink);
}

.pillar__num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--red-500);
  font-weight: 700;
}

.pillar h3 {
  font-size: 26px;
  margin: 0;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.pillar p {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.6;
  margin: 0;
}

.pillar__proof {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px dashed var(--border-strong);
  font-size: 13px;
  color: var(--ink);
}

.pillar__proof strong {
  color: var(--red-600);
}

.pillar__tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-500);
  margin-top: 12px;
}

/* ---------- Customer reference cards --------------------------------- */
.cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 1000px) {
  .cases {
    grid-template-columns: 1fr;
  }
}

.case-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.case-card__media {
  aspect-ratio: 16 / 10;
  background: var(--stone-100);
  position: relative;
  overflow: hidden;
}

.case-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card__media .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: rgba(28, 25, 23, 0.88);
  color: white;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.05em;
  backdrop-filter: blur(8px);
}

.case-card__media .badge--live {
  background: var(--ink);
}

.case-card__media .badge--green {
  background: var(--success);
}

.case-card__media .badge--pilot {
  background: var(--warning);
  color: var(--ink);
}

.case-card__body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.case-card__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.case-card__logo img {
  height: 28px;
  width: auto;
}

.case-card__name {
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-2);
}

.case-card__bignum {
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--red-500);
  letter-spacing: -0.02em;
}

.case-card__bignum+.case-card__caption {
  color: var(--fg-2);
  font-size: 13px;
  margin-top: -8px;
}

.case-card__quote {
  font-size: 14px;
  font-style: italic;
  color: var(--fg-1);
  border-left: 2px solid var(--red-500);
  padding-left: 14px;
  line-height: 1.5;
}

.case-card__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--border);
}

.case-card__stat .v {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
}

.case-card__stat .l {
  font-size: 11px;
  color: var(--fg-3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.case-card__cta {
  padding: 18px 24px;
  border-top: 1px solid var(--border);
  background: var(--stone-50);
}

/* ---------- FAQ accordion -------------------------------------------- */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--ink);
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__item details {
  padding: 0;
}

.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 8px 26px 0;
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink);
  position: relative;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary .num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--red-500);
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.05em;
  width: 32px;
}

.faq__item summary .icon {
  margin-left: auto;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  font-size: 14px;
  transition: transform var(--dur-fast), background var(--dur-fast);
}

.faq__item details[open] summary .icon {
  transform: rotate(45deg);
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}

.faq__answer {
  padding: 0 8px 28px 50px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.faq__answer .ack,
.faq__answer .reframe,
.faq__answer .ev {
  font-size: 14px;
  line-height: 1.6;
}

.faq__answer h4 {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-500);
  margin: 0 0 8px;
  font-weight: 700;
}

.faq__answer p {
  color: var(--fg-2);
  margin: 0;
}

@media (max-width: 800px) {
  .faq__answer {
    grid-template-columns: 1fr;
  }
}

/* ---------- CTA strip ------------------------------------------------ */
.cta-strip {
  background: var(--ink);
  color: var(--white);
  padding-block: var(--sp-4xl);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 110%, rgba(237, 28, 36, 0.20), transparent 38%),
    radial-gradient(circle at 92% 0%, rgba(237, 28, 36, 0.10), transparent 50%);
  pointer-events: none;
}

.cta-strip__inner {
  position: relative;
}

.cta-strip h2 {
  color: var(--white);
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.1;
  max-width: 22ch;
  margin: 0 0 24px;
  letter-spacing: -0.01em;
}

.cta-strip p {
  color: var(--stone-300);
  font-size: 18px;
  max-width: 60ch;
  margin-bottom: 32px;
}

.cta-strip__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 32px;
}

.cta-strip__box {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-strip__box.is-primary {
  background: var(--red-500);
  border-color: var(--red-500);
}

.cta-strip__box .tier {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--stone-400);
}

.cta-strip__box.is-primary .tier {
  color: rgba(255, 255, 255, 0.75);
}

.cta-strip__box h3 {
  color: var(--white);
  font-size: 22px;
  margin: 0;
  line-height: 1.25;
}

.cta-strip__box p {
  color: var(--stone-300);
  font-size: 14px;
  margin: 0 0 12px;
  flex: 1;
}

.cta-strip__box.is-primary p {
  color: rgba(255, 255, 255, 0.92);
}

.cta-strip__box .btn {
  align-self: flex-start;
  margin-top: auto;
}

.cta-band {
  padding-bottom: 120px;
}

.cta-band .container {
  padding: 12px 48px 48px 48px;
  background: white;
  border: 1px solid var(--stone-200);
  border-radius: var(--radius-lg);
}

@media (max-width: 1000px) {
  .cta-strip__grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding-left: var(--gutter-mobile);
    padding-right: var(--gutter-mobile);
  }
}

/* ---------- Footer --------------------------------------------------- */
.site-footer {
  background: var(--ink);
  color: var(--stone-300);
  padding-top: var(--sp-3xl);
  padding-bottom: var(--sp-md);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-2xl);
  padding-bottom: var(--sp-2xl);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.site-footer__brand img {
  height: 24px;
  margin-bottom: 18px;
}

.site-footer__brand p {
  color: var(--stone-400);
  font-size: 13px;
  line-height: 1.6;
  max-width: 38ch;
}

.site-footer__col h4 {
  color: var(--white);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 16px;
  font-weight: 700;
}

.site-footer__col ul li {
  margin-bottom: 10px;
}

.site-footer__col a {
  color: var(--stone-300);
  font-size: 14px;
  text-decoration: none;
}

.site-footer__col a:hover {
  color: var(--white);
  text-decoration: none;
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: var(--stone-500);
}

.site-footer__bottom a {
  color: var(--stone-400);
  text-decoration: none;
}

.site-footer__bottom a:hover {
  color: var(--white);
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-xl);
  }
}

@media (max-width: 600px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Logo strip ------------------------------------------------ */
.logo-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  align-items: center;
  padding-block: var(--sp-2xl);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.logo-strip>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-strip img {
  max-height: 44px;
  width: auto;
  opacity: 0.7;
  filter: grayscale(1);
  transition: all var(--dur-base);
}

.logo-strip img:hover {
  opacity: 1;
  filter: grayscale(0);
}

.logo-strip__label {
  grid-column: 1/-1;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  text-align: center;
  margin-bottom: 12px;
}

/* ---------- Generic "page hero" (lighter than homepage hero) --------- */
.page-hero {
  padding-top: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
  background: var(--stone-50);
}

.page-hero__breadcrumb {
  font-size: 13px;
  color: var(--fg-3);
  margin-bottom: 24px;
}

.page-hero__breadcrumb a {
  color: var(--fg-2);
  text-decoration: none;
}

.page-hero__breadcrumb a:hover {
  color: var(--ink);
}

.page-hero h1 {
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
  max-width: 22ch;
}

.page-hero p.lead {
  font-size: 20px;
  color: var(--fg-2);
  max-width: 62ch;
  margin: 0 0 28px;
}

/* ---------- Pricing-specific ----------------------------------------- */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.price-table th,
.price-table td {
  padding: 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  vertical-align: top;
}

.price-table thead th {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: var(--stone-50);
  border-bottom: 1px solid var(--ink);
}

.price-table .num {
  font-variant-numeric: tabular-nums;
  font-weight: 700;
  color: var(--ink);
}

.price-table .row-label {
  font-weight: 600;
}

/* ---------- Pilar deep section --------------------------------------- */
.pilar-row {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: var(--sp-3xl);
  padding-block: var(--sp-3xl);
  border-bottom: 1px solid var(--border);
  align-items: start;
}

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

.pilar-row__num {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--red-500);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.pilar-row h3 {
  font-size: 36px;
  margin: 12px 0 16px;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.pilar-row p {
  font-size: 17px;
  line-height: 1.6;
  color: var(--fg-2);
  margin: 0 0 16px;
}

.pilar-row__proof {
  background: var(--stone-50);
  border-left: 3px solid var(--red-500);
  padding: 20px 22px;
  font-size: 14px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.pilar-row__proof strong {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 6px;
  font-weight: 700;
}

@media (max-width: 900px) {
  .pilar-row {
    grid-template-columns: 1fr;
    gap: var(--sp-lg);
  }
}

/* ---------- Status banner -------------------------------------------- */
.banner-pilot {
  background: rgba(245, 158, 11, 0.10);
  border: 1px solid rgba(245, 158, 11, 0.40);
  color: #92400e;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}

.banner-pilot strong {
  color: var(--ink);
}

.banner-pilot::before {
  content: "PILOT";
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  padding: 4px 8px;
  background: var(--warning);
  color: var(--ink);
  border-radius: 4px;
  letter-spacing: 0.08em;
}

/* ---------- Form ----------------------------------------------------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form-grid .full {
  grid-column: 1/-1;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}

.field label .req {
  color: var(--red-500);
}

.field input,
.field select,
.field textarea {
  font: inherit;
  padding: 12px 14px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--dur-fast);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ink);
  box-shadow: 0 0 0 3px rgba(237, 28, 36, 0.12);
}

.field .hint {
  font-size: 12px;
  color: var(--fg-3);
}

.field textarea {
  min-height: 110px;
  resize: vertical;
}

/* ---------- Misc tools ------------------------------------------------ */
.kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red-500);
  margin-bottom: 8px;
}

.divider {
  height: 1px;
  background: var(--border);
  border: 0;
  margin: var(--sp-2xl) 0;
}

.notice {
  background: var(--stone-100);
  border-left: 3px solid var(--ink);
  padding: 16px 20px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 14px;
  color: var(--fg-2);
}

.kbd {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 2px 6px;
  background: var(--stone-100);
  border: 1px solid var(--border);
  border-radius: 4px;
}

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--stone-100);
  color: var(--fg-2);
}

.tag--live {
  background: var(--ink);
  color: var(--white);
}

.tag--pilot {
  background: var(--warning);
  color: var(--ink);
}

.tag--green {
  background: rgba(22, 163, 74, 0.15);
  color: #166534;
}

.tag--red {
  background: var(--red-50);
  color: var(--red-600);
}

/* ---------- Big number block ----------------------------------------- */
.bignum-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-xl);
  padding-block: var(--sp-xl);
}

.bignum {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.bignum .v {
  font-size: clamp(48px, 5.5vw, 84px);
  font-weight: 700;
  line-height: 0.95;
  color: var(--ink);
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.bignum .v em {
  font-style: normal;
  color: var(--red-500);
}

.bignum .l {
  font-size: 14px;
  color: var(--fg-2);
  line-height: 1.4;
  max-width: 22ch;
}

@media (max-width: 800px) {
  .bignum-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- Mobile menu drawer --------------------------------------- */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 64px 0 0 0;
  z-index: 60;
  background: var(--white);
  padding: 18px 24px 28px;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  height: 100vh;
  width: 80vw;
}

.mobile-menu.is-open {
  display: flex;
}

.has-mobile-menu-open {
  overflow: hidden;
}

.mobile-menu a {
  display: block;
  padding: 13px 0;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a.btn-primary {
  padding: 10px 20px;
  text-align: center;
}

.mobile-menu a.mobile-menu__sub {
  padding-left: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-2);
}

.mobile-menu .btn {
  margin-top: 16px;
  align-self: stretch;
  justify-content: center;
}

@media (min-width: 1025px) {
  .mobile-menu {
    display: none !important;
  }

  .has-mobile-menu-open {
    overflow: auto;
  }
}