/* ══════════════════════════════════════════════════════════════
   RavanAI Enterprises · site.css
   Design system: "WARM ENTERPRISE" (Option C, locked)
   Source of truth: CC_00_PROJECT_BRIEF.md §3
   No em dashes anywhere in this codebase. Commas, periods, colons.
   ══════════════════════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --orange: #E0612F;
  --orange-hot: #E84B1A;
  --orange-pale: #FDEEE7;
  --coral: #FF7A50;

  /* Ink + greys */
  --ink: #0D0D0D;
  --grey-9: #363636;
  --grey-6: #6E6E6E;
  --grey-4: #9C9C9C;

  /* Surfaces */
  --white: #FFFFFF;
  --off: #FAFAF8;
  --cream: #F5EFE6;
  --panel: #F5F4F1;
  --hair: #E9E7E2;
  --hair-cream: #E8E0D2;

  /* Semantic */
  --green: #1F8A5D;
  --green-live: #5AD79B;

  /* Type */
  --display: 'Inter Tight', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'JetBrains Mono', ui-monospace, monospace;
  --native-stack: 'Fraunces', 'Noto Sans Devanagari', 'Noto Sans Tamil',
    'Noto Sans Thai', 'Noto Naskh Arabic', 'Noto Sans Bengali',
    'Noto Sans Sinhala', serif;

  /* Layout */
  --max: 1160px;
  --pad: 48px;
  --radius: 16px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--display);
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
:focus-visible { outline: 2px solid var(--orange-hot); outline-offset: 3px; border-radius: 4px; }

.mono { font-family: var(--mono); }
.native { font-family: var(--native-stack); }
.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;
}

/* ═══════════ LAYOUT ═══════════ */

.wrap { max-width: var(--max); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }
.sec { padding: 62px 0 68px; }
.sec-tight { padding: 46px 0 50px; }

.sec-white { background: var(--white); }
.sec-off { background: var(--off); border-top: 1px solid var(--hair); }
.sec-cream { background: var(--cream); border-top: 1px solid var(--hair-cream); border-bottom: 1px solid var(--hair-cream); }
.sec-ink { background: var(--ink); color: #fff; }
.sec-ink .kicker { color: var(--orange-hot); }

/* ═══════════ TYPOGRAPHY ═══════════ */

.kicker {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--orange); text-transform: uppercase; font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow {
  font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.16em;
  color: var(--grey-6); margin-bottom: 22px;
}
.eyebrow b { color: var(--orange); font-weight: 700; }

h1, .h1 { font-size: 54px; font-weight: 900; letter-spacing: -0.04em; line-height: 1.02; margin-bottom: 18px; }
h2, .h2 { font-size: 38px; font-weight: 800; letter-spacing: -0.03em; line-height: 1.08; margin-bottom: 16px; }
h3, .h3 { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.2; margin-bottom: 10px; }

/* Fraunces italic is for emphasis words in headlines ONLY */
.h1 em, .h2 em, h1 em, h2 em {
  font-family: var(--serif); font-style: italic; font-weight: 500;
  color: var(--orange-hot); letter-spacing: -0.02em;
}
.h1 .feel, .feel { color: var(--orange-hot); }
.h1 .strike, .strike {
  color: var(--grey-4); text-decoration: line-through;
  text-decoration-color: rgba(232,75,26,0.55); text-decoration-thickness: 4px;
  font-weight: 700;
}
.sec-ink h2, .sec-ink .h2 { color: #fff; }

.lede { font-size: 16.5px; color: var(--grey-6); line-height: 1.65; margin-bottom: 26px; max-width: 480px; }
.lede b { color: var(--ink); font-weight: 600; }
.sec-ink .lede { color: rgba(255,255,255,0.65); }
.sec-ink .lede b { color: #fff; }
.prose p { font-size: 15px; color: var(--grey-6); line-height: 1.7; margin-bottom: 14px; max-width: 62ch; }
.sec-head { max-width: 760px; margin-bottom: 34px; }

/* ═══════════ BUTTONS ═══════════ */

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 24px; border-radius: 9px;
  font-size: 14px; font-weight: 700; line-height: 1;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--orange-hot); color: #fff; }
.btn-primary:hover { box-shadow: 0 8px 22px -8px rgba(232,75,26,0.6); }
.btn-ink { background: var(--ink); color: #fff; }
.btn-ghost { border: 1px solid var(--hair); background: var(--white); color: var(--ink); padding: 13px 24px; }
.sec-ink .btn-ghost { border-color: rgba(255,255,255,0.22); background: transparent; color: #fff; }
.btn .play {
  width: 18px; height: 18px; border-radius: 50%; background: var(--orange-hot);
  color: #fff; font-size: 7px; display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.btn-ghost .play { background: var(--orange-hot); }
.ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 22px; }
.link-arrow { font-size: 13.5px; font-weight: 800; border-bottom: 2px solid var(--orange-hot); padding-bottom: 2px; }

.checks { display: flex; gap: 18px; font-size: 12px; color: var(--grey-6); flex-wrap: wrap; }
.checks span::before { content: '\2713\00a0'; color: var(--green); font-weight: 700; }

/* ═══════════ NAV ═══════════ */

.nav {
  position: sticky; top: 0; z-index: 60; background: var(--white);
  border-bottom: 1px solid var(--hair);
}
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 14px var(--pad);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.brand { display: flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15.5px; letter-spacing: -0.02em; }
.brand svg { width: 13px; height: 16px; flex-shrink: 0; }
.brand em { font-style: normal; color: var(--grey-4); font-weight: 400; }
.nav-links { display: flex; gap: 4px; align-items: center; }
.nav-item { position: relative; }
.nav-trigger {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 13.5px; color: var(--grey-9); padding: 9px 12px; border-radius: 7px;
}
.nav-trigger:hover, .nav-item.open .nav-trigger { background: var(--off); color: var(--ink); }
.nav-trigger .caret { font-size: 8px; color: var(--grey-4); }
.nav-panel {
  position: absolute; top: calc(100% + 6px); left: 0; min-width: 264px;
  background: var(--white); border: 1px solid var(--hair); border-radius: 14px;
  box-shadow: 0 24px 60px -22px rgba(0,0,0,0.22); padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(-5px);
  transition: opacity .14s ease, transform .14s ease, visibility .14s;
}
.nav-item.open .nav-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-panel a { display: block; padding: 9px 12px; border-radius: 8px; font-size: 13.5px; }
.nav-panel a:hover { background: var(--off); }
.nav-panel a .np-sub { display: block; font-size: 11.5px; color: var(--grey-6); margin-top: 1px; }
.nav-panel a.soon { color: var(--grey-4); }
.nav-panel .np-label {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--grey-4); padding: 10px 12px 5px;
}
.nav-cta { background: var(--ink); color: #fff; padding: 11px 18px; border-radius: 8px; font-size: 13px; font-weight: 700; white-space: nowrap; }
.nav-toggle { display: none; padding: 8px; font-size: 18px; }

/* ═══════════ PHOTO FRAME ═══════════ */

.ph {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #E8DFD2, #C9BBA6);
}
.ph img { width: 100%; height: 100%; object-fit: cover; }
.ph .ad {
  position: absolute; left: 10px; bottom: 10px;
  background: rgba(0,0,0,0.66); color: #fff; font-family: var(--mono);
  font-size: 8.5px; letter-spacing: 0.06em; padding: 5px 9px; border-radius: 4px; max-width: 85%;
}

/* ═══════════ HEAR-IT PLAYER ═══════════ */

.hearit {
  position: relative; background: var(--white); border: 1px solid var(--hair);
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 34px 80px -34px rgba(0,0,0,0.22);
}
.hearit .ph { height: 240px; }
.hearit-body { padding: 18px 20px 20px; }
.hearit-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 12px; }
.hearit-label { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--grey-6); text-transform: uppercase; }
.hearit-live { font-family: var(--mono); font-size: 10px; color: var(--green); white-space: nowrap; }
.transcript { background: var(--off); border-radius: 10px; padding: 13px 15px; font-size: 13px; line-height: 1.7; margin-bottom: 13px; }
.transcript > div + div { margin-top: 4px; }
.transcript .who { font-family: var(--mono); font-size: 8.5px; color: var(--orange-hot); letter-spacing: 0.1em; margin-right: 7px; }
.transcript .swpill {
  display: inline-block; font-family: var(--mono); font-size: 8.5px;
  background: var(--orange-pale); color: var(--orange-hot); font-weight: 700;
  padding: 2px 8px; border-radius: 100px; margin: 0 4px; vertical-align: middle;
}
.transcript .aside { color: var(--grey-6); }
.waveform { display: flex; gap: 2.5px; align-items: center; height: 26px; margin-bottom: 13px; }
.waveform i { width: 3px; border-radius: 2px; background: var(--orange-hot); display: block; }
.langpills { display: flex; gap: 7px; flex-wrap: wrap; }
.lp { font-size: 11.5px; padding: 6px 12px; border-radius: 100px; border: 1px solid var(--hair); color: var(--grey-9); background: var(--white); }
.lp.on { background: var(--ink); color: #fff; border-color: var(--ink); font-weight: 700; }
.play-btn { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 700; color: var(--ink); }
.play-btn .dot {
  width: 22px; height: 22px; border-radius: 50%; background: var(--orange-hot);
  color: #fff; font-size: 8px; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}

/* ═══════════ STAT BAND ═══════════ */

.statband { display: flex; gap: 44px; flex-wrap: wrap; }
.statband.center { justify-content: center; }
.stat .v { font-family: var(--mono); font-size: 32px; font-weight: 700; line-height: 1; }
.stat .v span { color: var(--orange-hot); }
.stat .k { font-family: var(--mono); font-size: 9px; letter-spacing: 0.14em; color: var(--grey-6); text-transform: uppercase; margin-top: 6px; }
.sec-ink .stat .v { color: #fff; }
.sec-ink .stat .k { color: rgba(255,255,255,0.45); }

.tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.tile { border: 1px solid var(--hair); border-radius: 14px; padding: 20px; background: var(--white); }
.tile .v { font-family: var(--mono); font-size: 26px; font-weight: 700; line-height: 1; }
.tile .v span { color: var(--orange-hot); }
.tile .k { font-size: 12px; color: var(--grey-6); margin-top: 8px; line-height: 1.5; }

/* ═══════════ CARDS ═══════════ */

.grid { display: grid; gap: 12px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  border: 1px solid var(--hair); border-radius: var(--radius); padding: 26px;
  background: var(--white); transition: border-color .15s ease, transform .15s ease;
}
a.card:hover { border-color: var(--orange-hot); transform: translateY(-2px); }
.card .num { font-family: var(--mono); font-size: 11px; color: var(--orange); font-weight: 700; margin-bottom: 14px; }
.card .h { font-size: 17px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 6px; }
.card .p { font-size: 13.5px; color: var(--grey-6); line-height: 1.6; margin-bottom: 12px; }
.card .m { font-family: var(--mono); font-size: 10px; color: var(--green); font-weight: 700; letter-spacing: 0.04em; }
.card .go { font-family: var(--mono); font-size: 10px; letter-spacing: 0.08em; color: var(--orange); font-weight: 700; }
.card.quiet { background: var(--off); }
.card.quiet .h { color: var(--grey-9); }
.card.accent { border-color: var(--orange-hot); box-shadow: 0 0 0 3px rgba(232,75,26,0.07); }
.card-photo { padding: 0; overflow: hidden; }
.card-photo .ph { height: 130px; }
.card-photo .body { padding: 18px 20px 20px; }

.tag {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
  color: var(--orange-hot); font-weight: 700; margin-bottom: 12px; text-transform: uppercase;
}

/* Two doors */
.doors { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.door { background: var(--white); border: 1px solid var(--hair-cream); border-radius: var(--radius); padding: 30px; }
.door .h { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 10px; }
.door .p { font-size: 14px; color: var(--grey-6); line-height: 1.65; margin-bottom: 18px; }

/* Logo strip (text-only names, Fraunces grey, max 6) */
.logostrip { border-top: 1px solid var(--hair); background: var(--off); }
.logostrip-inner {
  max-width: var(--max); margin: 0 auto; padding: 20px var(--pad);
  display: flex; gap: 34px; align-items: center; justify-content: center; flex-wrap: wrap;
}
.logostrip .lbl { font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--grey-4); }
.logostrip .lg { font-family: var(--serif); font-size: 16.5px; color: var(--grey-4); }

/* ═══════════ COMPARISON TABLE ═══════════ */

.ctable { border: 1px solid var(--hair); border-radius: 14px; overflow: hidden; background: var(--white); }
.sec-ink .ctable { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.12); }
.ct-row { display: grid; grid-template-columns: 1.3fr 1fr 1fr; padding: 14px 22px; border-bottom: 1px solid var(--hair); font-size: 13px; align-items: center; gap: 12px; }
.sec-ink .ct-row { border-bottom-color: rgba(255,255,255,0.08); }
.ct-row:last-child { border-bottom: none; }
.ct-row.head {
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey-4); background: var(--off);
}
.sec-ink .ct-row.head { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.03); }
.ct-row.head .agni { color: var(--orange-hot); }
.ct-q { color: var(--grey-9); }
.sec-ink .ct-q { color: rgba(255,255,255,0.85); }
.ct-yes { font-family: var(--mono); font-size: 12px; color: var(--green); font-weight: 700; }
.sec-ink .ct-yes { color: var(--green-live); }
.ct-no { font-family: var(--mono); font-size: 12px; color: var(--grey-4); }
.sec-ink .ct-no { color: rgba(255,255,255,0.35); }
.table-scroll { overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ═══════════ DIALECT MAP (signature device) ═══════════ */

.dmap { display: grid; grid-template-columns: 210px 1fr; gap: 20px; align-items: start; }
.dmap-regions { display: flex; flex-direction: column; gap: 6px; }
.dmap-region {
  text-align: left; width: 100%; padding: 13px 16px; border-radius: 11px;
  border: 1px solid var(--hair-cream); background: var(--white);
  font-size: 14px; font-weight: 700; color: var(--grey-9);
  display: flex; justify-content: space-between; align-items: center; gap: 8px;
  transition: border-color .14s, background .14s, color .14s;
}
.dmap-region .n { font-family: var(--mono); font-size: 9.5px; color: var(--grey-4); font-weight: 400; }
.dmap-region:hover { border-color: var(--orange-hot); }
.dmap-region[aria-selected="true"] { background: var(--ink); color: #fff; border-color: var(--ink); }
.dmap-region[aria-selected="true"] .n { color: rgba(255,255,255,0.5); }
.dmap-panel { background: var(--white); border: 1px solid var(--hair-cream); border-radius: var(--radius); padding: 26px 28px; min-height: 268px; }
.dmap-panel h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 4px; }
.dmap-panel .meta { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; color: var(--grey-4); text-transform: uppercase; margin-bottom: 20px; }
.dmap-langs { display: flex; flex-direction: column; gap: 12px; }
.dmap-lang { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; padding-bottom: 12px; border-bottom: 1px solid var(--hair); }
.dmap-lang:last-child { border-bottom: none; padding-bottom: 0; }
.dmap-lang .nm { font-size: 14.5px; font-weight: 700; min-width: 128px; }
.dmap-lang .nm .nat { font-family: var(--native-stack); color: var(--grey-4); margin-left: 6px; font-weight: 400; }
.dmap-tags { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }

.dchip { font-size: 12px; padding: 6px 12px; border-radius: 100px; background: var(--white); border: 1px solid var(--hair-cream); color: var(--grey-9); }
.dchip.hot { border-color: var(--orange-hot); color: var(--orange-hot); font-weight: 700; background: #FFF6F1; }
.dchip .nat { font-family: var(--native-stack); margin-left: 4px; opacity: 0.8; }

/* ═══════════ THREE-EXIT BLOCK ═══════════ */

.exits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.exit { background: var(--white); border: 1px solid var(--hair-cream); border-radius: var(--radius); padding: 26px; display: flex; flex-direction: column; }
.exit.mid { border-color: var(--orange-hot); box-shadow: 0 0 0 3px rgba(232,75,26,0.07); }
.exit .h { font-size: 19px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 8px; }
.exit .p { font-size: 13px; color: var(--grey-6); line-height: 1.6; margin-bottom: 16px; flex: 1; }

/* ═══════════ FAQ ═══════════ */

.faq { border-top: 1px solid var(--hair); }
.faq-item { border-bottom: 1px solid var(--hair); }
.faq-q {
  width: 100%; text-align: left; padding: 20px 0; font-size: 16px; font-weight: 700;
  letter-spacing: -0.015em; display: flex; justify-content: space-between; align-items: center; gap: 20px;
}
.faq-q .ind { color: var(--orange-hot); font-size: 18px; flex-shrink: 0; transition: transform .18s ease; }
.faq-item.open .faq-q .ind { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .26s ease; }
.faq-item.open .faq-a { max-height: 600px; }
.faq-a p { font-size: 14px; color: var(--grey-6); line-height: 1.7; padding-bottom: 22px; max-width: 68ch; }

/* Honesty block */
.honesty { background: var(--panel); border-left: 3px solid var(--grey-4); border-radius: 0 12px 12px 0; padding: 24px 26px; }
.honesty .h { font-size: 17px; font-weight: 800; margin-bottom: 10px; }
.honesty p { font-size: 13.5px; color: var(--grey-6); line-height: 1.7; }

/* Timeline / production path */
.path { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.path-step { border: 1px solid var(--hair); border-radius: 14px; padding: 24px; background: var(--white); position: relative; }
.path-step .wk { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; color: var(--orange-hot); font-weight: 700; text-transform: uppercase; margin-bottom: 12px; }
.path-step .h { font-size: 17px; font-weight: 800; margin-bottom: 8px; }
.path-step .p { font-size: 13px; color: var(--grey-6); line-height: 1.6; }

/* Quote (only for CLAIM-PENDING placeholders, never fabricated attribution) */
.quote { border-left: 3px solid var(--orange-hot); padding: 4px 0 4px 18px; font-family: var(--serif); font-size: 17px; line-height: 1.5; color: var(--grey-9); margin-bottom: 14px; }

/* Pending placeholder chip */
.pending {
  display: inline-flex; align-items: center; gap: 7px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--grey-6); background: var(--panel); border: 1px dashed var(--grey-4);
  padding: 7px 12px; border-radius: 7px;
}
.sec-ink .pending { color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.25); }

/* Asterisk disclaimer */
.disclaimer { font-size: 11.5px; color: var(--grey-4); line-height: 1.6; margin-top: 18px; max-width: 68ch; }
.sec-ink .disclaimer { color: rgba(255,255,255,0.4); }

/* ═══════════ FOOTER ═══════════ */

.footer { background: var(--cream); border-top: 1px solid var(--hair-cream); }
.footer-inner { max-width: var(--max); margin: 0 auto; padding: 54px var(--pad) 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
.footer .brand { margin-bottom: 12px; }
.footer .fnote { font-size: 12.5px; color: var(--grey-6); line-height: 1.65; max-width: 260px; margin-bottom: 16px; }
.footer h4 { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--grey-4); margin-bottom: 14px; font-weight: 700; }
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer a { font-size: 13px; color: var(--grey-9); }
.footer a:hover { color: var(--orange-hot); }
.footer .soon { color: var(--grey-4); }
.footer-bottom {
  max-width: var(--max); margin: 0 auto; padding: 18px var(--pad) 32px;
  border-top: 1px solid var(--hair-cream); display: flex; justify-content: space-between;
  gap: 18px; flex-wrap: wrap; font-size: 12px; color: var(--grey-6);
}
.footer-bottom .powered { font-family: var(--mono); font-size: 10.5px; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-bottom .powered b { color: var(--orange); }
.newsletter { display: flex; gap: 7px; margin-top: 4px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 10px 12px; border: 1px solid var(--hair-cream);
  border-radius: 8px; font-size: 13px; font-family: inherit; background: var(--white);
}
.newsletter button { background: var(--ink); color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 12.5px; font-weight: 700; }

/* ═══════════ TOAST ═══════════ */

.toast {
  position: fixed; left: 50%; bottom: 28px; transform: translate(-50%, 14px);
  background: var(--ink); color: #fff; padding: 13px 20px; border-radius: 10px;
  font-size: 13px; font-weight: 600; z-index: 200;
  box-shadow: 0 18px 44px -14px rgba(0,0,0,0.5);
  opacity: 0; visibility: hidden; transition: opacity .2s ease, transform .2s ease, visibility .2s;
  max-width: calc(100vw - 40px); text-align: center;
}
.toast.show { opacity: 1; visibility: visible; transform: translate(-50%, 0); }

/* ═══════════ HERO ═══════════ */

.hero { position: relative; overflow: hidden; }
.hero-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  padding: 56px var(--pad) 62px;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 50px; align-items: center;
}
.hero-glow {
  position: absolute; top: -180px; right: -120px; width: 760px; height: 620px;
  background: radial-gradient(ellipse at center, rgba(255,122,80,0.14) 0%, rgba(255,255,255,0) 65%);
  pointer-events: none;
}
.hero-narrow { max-width: 820px; margin: 0 auto; text-align: center; padding: 62px var(--pad) 58px; }
.hero-narrow .lede { margin-left: auto; margin-right: auto; }
.hero-narrow .ctas, .hero-narrow .checks { justify-content: center; }

/* Breadcrumb */
.crumb { font-family: var(--mono); font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--grey-4); padding: 16px 0 0; }
.crumb a:hover { color: var(--orange-hot); }
.crumb span { margin: 0 7px; }

/* ═══════════ RESPONSIVE ═══════════ */

@media (max-width: 1000px) {
  :root { --pad: 28px; }
  h1, .h1 { font-size: 42px; }
  h2, .h2 { font-size: 31px; }
  .hero-inner { grid-template-columns: 1fr; gap: 36px; padding-top: 40px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .tiles { grid-template-columns: repeat(2, 1fr); }
  .dmap { grid-template-columns: 1fr; }
  .dmap-regions { flex-direction: row; flex-wrap: wrap; }
  .dmap-region { width: auto; flex: 1 1 auto; }
  .footer-inner { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 760px) {
  body { font-size: 14.5px; }
  h1, .h1 { font-size: 34px; letter-spacing: -0.03em; }
  h2, .h2 { font-size: 26px; }
  h3, .h3 { font-size: 18px; }
  .sec { padding: 44px 0 48px; }
  .lede { font-size: 15.5px; }

  .nav-toggle { display: inline-flex; }
  .nav-links {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--hair);
    flex-direction: column; align-items: stretch; gap: 0; padding: 8px;
    box-shadow: 0 20px 40px -20px rgba(0,0,0,0.18); max-height: 76vh; overflow-y: auto;
  }
  .nav.open .nav-links { display: flex; }
  .nav-item { position: static; }
  .nav-trigger { width: 100%; justify-content: space-between; font-size: 15px; padding: 12px; }
  .nav-panel {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-radius: 0; min-width: 0;
    padding: 0 0 6px 12px; display: none;
  }
  .nav-item.open .nav-panel { display: block; }
  .nav .nav-cta { display: none; }
  .nav-links .nav-cta { display: block; text-align: center; margin: 8px 4px 4px; }

  .grid-2, .grid-3, .grid-4, .doors, .exits, .path, .tiles { grid-template-columns: 1fr; }
  .statband { gap: 26px; }
  .stat .v { font-size: 26px; }
  .ct-row { grid-template-columns: 1.2fr 0.9fr 0.9fr; padding: 12px 14px; font-size: 12px; gap: 8px; }
  /* The brand column carries the newsletter form, so it needs the full width.
     Left in a 1fr track it collapsed to ~72px against a 261px sibling. */
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-inner > div:first-child { grid-column: 1 / -1; }
  .hearit .ph { height: 190px; }
  .dmap-lang .nm { min-width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

/* ═══ industry template ═══ */
/* Added for the industry page template (first use: /industries/contact-centres/).
   Two utilities only. Everything else on that page reuses the locked system. */

/* Arrow bullet list inside capability cards. Needs an explicit reset because the
   global reset zeroes list padding, which would clip native markers. */
.blist { list-style: none; display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.blist li { font-size: 12.5px; color: var(--grey-9); line-height: 1.55; padding-left: 18px; position: relative; }
.blist li::before { content: '\2192'; position: absolute; left: 0; top: 0; color: var(--orange-hot); font-weight: 700; }
.sec-ink .blist li { color: rgba(255,255,255,0.8); }

/* Wrapping row of text-only chips: integration target names, compliance badges.
   Pairs with the existing .dchip / .dchip.hot styles. */
.chiprow { display: flex; gap: 8px; flex-wrap: wrap; }

/* ═══ pricing + book ═══ */

/* Price line on a tier card. Always followed by a .price-note carrying the
   pending-confirmation language. Never render an amount without one. */
.price { display: flex; align-items: baseline; gap: 8px; flex-wrap: wrap; margin-bottom: 4px; }
.price .amt {
  font-family: var(--mono); font-size: 30px; font-weight: 700;
  letter-spacing: -0.03em; line-height: 1.1;
}
.price .per { font-size: 12.5px; color: var(--grey-6); }
.price-note { font-size: 11.5px; color: var(--grey-4); line-height: 1.6; margin: 8px 0 16px; }
.price-note a { text-decoration: underline; }

/* Tier inclusions */
.tierlist { list-style: none; display: flex; flex-direction: column; gap: 9px; margin: 0 0 18px; }
.tierlist li { font-size: 13px; color: var(--grey-6); line-height: 1.55; padding-left: 19px; position: relative; }
.tierlist li::before { content: '\2713'; position: absolute; left: 0; top: 0; color: var(--green); font-weight: 700; }
.tierlist li b { color: var(--ink); font-weight: 600; }

/* Book page path cards need a little more room than a standard .card */
.bookcard { padding: 30px; }
.bookcard .p { margin-bottom: 14px; }

/* Prominent calculator CTA band */
.calcbar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--ink); color: #fff;
  border-radius: var(--radius-lg); padding: 30px 34px;
}
.calcbar .h { font-size: 22px; font-weight: 800; letter-spacing: -0.025em; margin-bottom: 7px; }
.calcbar .p { font-size: 13.5px; color: rgba(255,255,255,0.6); line-height: 1.6; max-width: 52ch; }

/* Quiet secondary line, for the India / ravan.ai pointer */
.quietline { font-size: 12.5px; color: var(--grey-6); margin-top: 18px; }
.quietline a { color: var(--orange-hot); text-decoration: underline; }

/* Four column comparison table (feature plus three tiers).
   Wrap in .table-scroll so narrow screens scroll the table, not the page. */
.ctable.cols-4 .ct-row { grid-template-columns: 1.6fr 1fr 1fr 1fr; }
@media (max-width: 900px) {
  .ctable.cols-4 { min-width: 640px; }
  .ctable.cols-4 .ct-row { padding: 12px 16px; font-size: 12px; gap: 10px; }
}
@media (max-width: 760px) {
  .calcbar { padding: 26px 22px; }
  .calcbar .h { font-size: 19px; }
  .bookcard { padding: 24px; }
}

/* ═══════════ SWITCH PAGES ═══════════ */
/* Added for /switch/elevenlabs/ and /switch/vapi/. Nothing above this
   line was changed. Three additions only: a before/after code pane, an
   A/B audio pair, and a wrapping guard for comparison table cells. */

/* Before / after code panes. Snippets are illustrative and generic. */
.codepair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: stretch; }
.codepane {
  display: flex; flex-direction: column; min-width: 0;
  border: 1px solid var(--hair); border-radius: 14px;
  background: var(--white); overflow: hidden;
}
.codepane.agni { border-color: var(--orange-hot); box-shadow: 0 0 0 3px rgba(232,75,26,0.07); }
.codepane .cp-head {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  padding: 12px 16px; border-bottom: 1px solid var(--hair); background: var(--off);
  font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--grey-4);
}
.codepane .cp-head b { color: var(--grey-9); font-weight: 700; }
.codepane.agni .cp-head b { color: var(--orange-hot); }
.codepane pre {
  flex: 1; overflow-x: auto; -webkit-overflow-scrolling: touch;
  padding: 16px 18px; font-family: var(--mono); font-size: 12px;
  line-height: 1.75; color: var(--grey-9); tab-size: 2;
}
.codepane pre .c { color: var(--grey-4); }
.codepane pre .k { color: var(--orange-hot); }
.codepane .cp-foot {
  padding: 12px 18px 16px; border-top: 1px solid var(--hair);
  font-size: 12.5px; color: var(--grey-6); line-height: 1.6;
}

/* A/B audio pair, same script, two stacks */
.abpair { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.abpair > .card { display: flex; flex-direction: column; min-width: 0; }
.abpair > .card .p { flex: 1; }
.abpair .waveform { margin: 2px 0 14px; }

/* Comparison cells wrap instead of pushing the page sideways */
.ct-row > div { min-width: 0; overflow-wrap: anywhere; }

@media (max-width: 760px) {
  .codepair, .abpair { grid-template-columns: 1fr; }
  .codepane pre { font-size: 11.5px; padding: 14px; }
}

/* ═══ /demo page-specific ═══ */
/* Option B "Demo Theater" cinematic dark. Used only by /demo/.
   Every rule here is scoped under .theater so no other page is affected.
   Base ink surface, white type, kicker colour and .pending come from
   .sec-ink, which each theater section also carries. */

.theater { position: relative; overflow: hidden; }
.theater + .theater { border-top: 1px solid rgba(255,255,255,0.08); }
.theater-glow {
  position: absolute; top: -240px; left: 50%; transform: translateX(-50%);
  width: 940px; height: 660px; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(232,75,26,0.22) 0%, rgba(13,13,13,0) 68%);
}
.theater-inner {
  position: relative; max-width: var(--max); margin: 0 auto;
  padding: 54px var(--pad) 64px; text-align: center;
}
.theater-inner .lede { margin-left: auto; margin-right: auto; max-width: 580px; }
.theater-inner .ctas { justify-content: center; }
.theater .h1 .dim { color: rgba(255,255,255,0.4); }
.theater .play-btn { color: #fff; }
.theater .play-btn:hover .dot { transform: scale(1.12); }
.theater .play-btn .dot { transition: transform .12s ease; }

/* Chaptered reel player */
.tplayer {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03);
  box-shadow: 0 40px 120px -34px rgba(232,75,26,0.34);
  text-align: left; cursor: pointer;
}
.tstage { position: relative; }
.tplayer .ph { height: 430px; }
.tplayer .shade {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(180deg, rgba(0,0,0,0.10) 26%, rgba(0,0,0,0.86) 100%);
}
.tplay {
  position: absolute; left: 50%; top: 46%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; background: var(--orange-hot);
  color: #fff; font-size: 24px; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 0 14px rgba(232,75,26,0.20), 0 0 0 30px rgba(232,75,26,0.08);
  transition: transform .14s ease;
}
.tplayer:hover .tplay { transform: translate(-50%,-50%) scale(1.06); }
.tlower {
  position: absolute; left: 0; right: 0; bottom: 0; padding: 22px 26px;
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 20px; flex-wrap: wrap;
}
.tcap { max-width: 620px; }
.tcap .t1 { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.16em; color: var(--coral); margin-bottom: 8px; }
.tcap .t2 { font-size: 18px; font-weight: 700; line-height: 1.45; }
.tcap .th { color: #FFD9A8; }
.tcap .en { color: #fff; }
.tcap .sw {
  display: inline-block; font-family: var(--mono); font-size: 10px; font-weight: 700;
  color: var(--coral); border: 1px solid var(--coral); border-radius: 100px;
  padding: 3px 9px; margin: 0 6px; vertical-align: middle; white-space: nowrap;
}
.chapters { display: flex; gap: 6px; flex-wrap: wrap; }
.chapter {
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.08em; white-space: nowrap;
  color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.14);
  padding: 6px 11px; border-radius: 100px;
}
.chapter.on { background: var(--orange-hot); color: #fff; font-weight: 700; }

/* Cards on the dark surface */
.dcard {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius); padding: 24px; text-align: left;
  display: flex; flex-direction: column;
  transition: border-color .15s ease, transform .15s ease;
}
.dcard:hover { border-color: rgba(232,75,26,0.55); transform: translateY(-2px); }
.dcard .tag { color: var(--coral); }
.dcard .h { font-size: 18px; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 6px; }
.dcard .p { font-size: 13px; color: rgba(255,255,255,0.58); line-height: 1.6; margin-bottom: 14px; flex: 1; }
.dcard .waveform { margin-bottom: 16px; }
.dcard .play-btn { margin-top: auto; }

/* City register rows inside a pair card */
.reg { border-top: 1px solid rgba(255,255,255,0.1); padding: 13px 0 3px; }
.reg .city { font-family: var(--mono); font-size: 9.5px; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.45); margin-bottom: 6px; }
.reg .line { font-family: var(--native-stack); font-size: 15.5px; line-height: 1.65; color: #FFD9A8; }
.reg .gloss { font-size: 12.5px; color: rgba(255,255,255,0.52); line-height: 1.55; margin-top: 5px; }

@media (max-width: 1000px) {
  .tplayer .ph { height: 320px; }
  .tcap .t2 { font-size: 16px; }
}

@media (max-width: 760px) {
  .theater-inner { padding: 38px var(--pad) 48px; }
  .tplayer { cursor: default; }
  .tplayer .ph { height: 210px; }
  .tplayer .shade { background: linear-gradient(180deg, rgba(0,0,0,0.05) 40%, rgba(0,0,0,0.5) 100%); }
  .tplay { width: 58px; height: 58px; font-size: 17px; top: 50%; box-shadow: 0 0 0 10px rgba(232,75,26,0.20), 0 0 0 22px rgba(232,75,26,0.07); }
  .tlower { position: static; display: block; padding: 16px 16px 18px; background: rgba(255,255,255,0.05); }
  .tcap { max-width: none; margin-bottom: 14px; }
  .tcap .t2 { font-size: 15px; }
}
