/* ——— TNT — Track/Trace Cash Operations Platform ———————————————————————————
   Inherits the CoorWorks design language (Inter Tight + Plex Mono + Instrument
   Serif, paper background, ink type, schematic grids). Key shifts for TNT:
   - Primary accent → TNT blue (#2F6FB8), with operational green (#1F8A4C) as a
     secondary/success signal.
   - Heavier product-screenshot framing (this is a SaaS, not a service).
   - Slightly tighter density — the deck has 90+ capabilities and they need air. */

:root {
  --ink: #0B1E3F;          /* deep navy from logo */
  --ink-2: #12294E;
  --ink-3: #1E3560;
  --paper: #F7F5EF;        /* warm off-white */
  --paper-2: #EFEBE0;
  --paper-3: #E4DFD1;
  --line: rgba(11, 30, 63, 0.12);
  --line-strong: rgba(11, 30, 63, 0.28);
  --mute: rgba(11, 30, 63, 0.62);
  --mute-2: rgba(11, 30, 63, 0.45);

  --accent: #2F6FB8;        /* TNT blue (tweakable) */
  --accent-light: #6FA3D8;  /* TNT light blue — for highlights/quotes */
  --accent-2: #1F8A4C;      /* operational green */
  --accent-warn: #C8472B;   /* warm signal — used sparingly */
  --accent-ink: #FFFFFF;

  --radius: 2px;
  --maxw: 1360px;
  --pad: clamp(20px, 4vw, 72px);

  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
  --sans: 'Inter Tight', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --serif: 'Instrument Serif', 'Times New Roman', serif;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "cv11";
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; padding: 0; }

/* ——— Type ———————————————————————————————————————————————————————— */
.mono { font-family: var(--mono); font-weight: 500; letter-spacing: -0.01em; }
.serif { font-family: var(--sans); font-style: normal; }
.eyebrow {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--mute);
}
.eyebrow .num { color: var(--ink); margin-right: 8px; font-weight: 600; }
.section--ink .eyebrow { color: rgba(247,245,239,0.55); }
.section--ink .eyebrow .num { color: var(--paper); }

h1, h2, h3, h4 { font-family: var(--sans); font-weight: 500; letter-spacing: -0.025em; margin: 0; }

/* ——— Layout ——————————————————————————————————————————————————— */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }
.section { padding: clamp(80px, 10vw, 140px) 0; position: relative; }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper2 { background: var(--paper-2); }

.grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, var(--line) 1px, transparent 1px),
    linear-gradient(to bottom, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%);
  opacity: 0.7;
}
.section--ink .grid-bg {
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.05) 1px, transparent 1px);
}

/* Reveal */
.reveal { opacity: 0; transform: translateY(12px); transition: opacity .8s, transform .8s; }
.reveal.in { opacity: 1; transform: none; }

/* ——— Nav ———————————————————————————————————————————————————————— */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(247, 245, 239, 0.85);
  backdrop-filter: saturate(1.2) blur(14px);
  -webkit-backdrop-filter: saturate(1.2) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, background .2s;
}
.nav.scrolled { border-bottom-color: var(--line); }
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad) 14px;
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 20px;
  row-gap: 8px;
}
.nav__logo {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: flex; flex-direction: row; align-items: center; gap: 12px;
  line-height: 1;
}
.nav__logo img { height: 48px; width: auto; display: block; }
.nav__cta-wrap {
  grid-column: 2;
  grid-row: 2;
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  align-items: center;
  align-self: center;
  flex-wrap: wrap;
}
.nav__links {
  grid-column: 3;
  grid-row: 2;
  display: flex; gap: 4px; align-items: center;
  justify-content: flex-end;
}
.nav__link {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 8px 14px;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
}
.nav__link:hover { background: var(--paper-3); }
.nav__link .dot {
  display: inline-block; width: 4px; height: 4px; border-radius: 50%;
  background: var(--accent); margin-right: 8px; opacity: 0;
  transform: translateY(-1px);
  transition: opacity .2s;
}
.nav__link.active .dot { opacity: 1; }
.nav__cta {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 999px;
  transition: background .2s;
}
.nav__cta:hover { background: var(--accent); color: var(--accent-ink); }
.nav__launch {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  padding: 9px 16px;
  background: #1F4E8C;
  color: #fff;
  border-radius: 6px;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav__launch:hover { background: var(--accent); color: var(--accent-ink); }
@media (max-width: 820px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: 1fr auto; }
  .nav__cta-wrap { grid-column: 2; grid-row: 1; }
}

/* ——— Hero ———————————————————————————————————————————————————————— */
.hero {
  min-height: 100svh;
  padding: 140px 0 60px;
  position: relative;
  display: flex; align-items: flex-start;
  overflow: hidden;
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--pad);
  width: 100%;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) {
  .hero__inner { grid-template-columns: 1fr; gap: 48px; }
}
.hero__copy { display: flex; flex-direction: column; gap: 28px; }
.hero__kicker {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap;
}
.hero__kicker .sep { color: var(--mute-2); font-weight: 400; }
.hero__title {
  font-size: clamp(40px, 6.4vw, 100px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 400;
  color: var(--ink);
  text-wrap: nowrap;
}
.hero__title .accent { color: var(--accent); font-weight: 500; }
.hero__title .serif { font-weight: 400; color: var(--accent-warn); }
.hero__sub {
  font-size: clamp(17px, 1.45vw, 22px);
  line-height: 1.5;
  font-weight: 400;
  color: var(--mute);
  max-width: 52ch;
}
.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; margin-top: 4px; }
.hero__bullets {
  display: flex; flex-direction: column; gap: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero__bullet {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 16px;
  align-items: baseline;
  font-size: 14px;
}
.hero__bullet .label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.hero__bullet .val { color: var(--ink); font-weight: 500; white-space: pre-line; }

/* Hero product visual — two simple placeholder containers (Web + App overlay) */
.hero__visual {
  position: relative;
  aspect-ratio: 5 / 4;
  width: 100%;
  min-height: 460px;
}
.hero__ph {
  position: absolute;
  display: flex; align-items: center; justify-content: center;
  color: var(--paper);
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  filter: drop-shadow(0 24px 40px rgba(11,30,63,0.28));
}
.hero__ph img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; }
.hero__ph--web {
  top: -8%;
  right: 8%;
  width: 97.5%;
  height: 87.5%;
  z-index: 1;
}
.hero__ph--app {
  left: -5%;
  bottom: 0;
  width: 30.6%;
  height: 74.7%;
  z-index: 2;
}
@media (max-width: 720px) {
  .hero__visual { min-height: 360px; }
}

/* ——— Buttons ——————————————————————————————————————————————————— */
.btn {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  padding: 14px 22px;
  border-radius: 999px;
  display: inline-flex; align-items: center; gap: 10px;
  transition: transform .15s ease, background .2s, color .2s;
  border: 1px solid transparent;
}
.btn:active { transform: translateY(1px); }
.btn--primary { background: var(--ink); color: var(--paper); }
.btn--primary:hover { background: var(--accent); color: var(--accent-ink); }
.btn--accent { background: var(--accent); color: var(--accent-ink); }
.btn--accent:hover { background: var(--ink); color: var(--paper); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line-strong); }
.btn--ghost:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn--on-ink { background: var(--paper); color: var(--ink); }
.btn--on-ink:hover { background: var(--accent); color: var(--accent-ink); }
.btn svg { width: 14px; height: 14px; }

/* ——— Section heads (full-width stacked) ——————————————————————————— */
.section-head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 72px;
}
.section-head .eyebrow { margin-bottom: 4px; }
.section-head__title {
  font-size: clamp(36px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: -0.03em;
  font-weight: 400;
  width: 100%;
  max-width: none;
}
.section-head__title .accent { color: var(--accent); }
.section-head__title .green { color: var(--accent-2); font-weight: 500; }
.section-head__title .orange { color: var(--accent-warn); font-weight: 500; }
.section-head__title .blue { color: var(--accent); font-weight: 500; }
.section-head__lede {
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.5;
  color: var(--mute);
  width: 100%;
  max-width: none;
  font-weight: 400;
}
.section--ink .section-head__lede { color: rgba(247,245,239,0.7); }

/* ——— Pillars (Capability Foundations) — slide 2 ——————————————————————
   Replaces CoorWorks "Techniques". Each pillar is a labeled column with
   its own roster of capabilities — a structural matrix. */
.pillar-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
@media (max-width: 1280px) { .pillar-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 1000px) { .pillar-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .pillar-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .pillar-grid { grid-template-columns: 1fr; } }
.pillar {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 0 26px;
  display: flex; flex-direction: column; gap: 16px;
  position: relative;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  box-shadow: 0 1px 0 rgba(11,30,63,0.02);
  overflow: hidden;
}
.pillar:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -18px rgba(11,30,63,0.22);
}
.pillar__head {
  display: flex; align-items: center; gap: 12px;
  border-bottom: 1px solid var(--line);
  padding: 18px 22px;
  background: #fff;
  transition: background .2s;
}
.pillar:hover .pillar__head {
  background: linear-gradient(180deg, #2C7AA6 0%, #156082 100%);
  border-bottom-color: transparent;
}
.pillar__name {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  transition: color .2s;
}
.pillar:hover .pillar__name {
  color: #fff;
}
.pillar__items {
  list-style: none; padding: 0 22px; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pillar__items li {
  font-size: 13px;
  color: var(--ink);
  line-height: 1.4;
  padding-left: 24px;
  position: relative;
  font-weight: 400;
}
.pillar__items li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px;
  height: 16px;
  background-image: url('uploads/bullet-idle-blue.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* ——— Benefit Targets — slide 3 ————————————————————————————————————
   Two columns of five, filled column-major (left col first, then right).
   Pills are dimensional with a blue gradient + check chip on the left. */
/* ——— Benefits pill-bars (slide 3) ———————————————————————————————
   Two columns of five, filled column-major (left col first, then right).
   Solid medium-blue bar with a green check chip on the left. */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 14px 20px;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: none;
  }
}
.benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 22px 12px 12px;
  border-radius: 10px;
  background-color: var(--accent);
  background-image: none;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 18px -14px rgba(11,30,63,0.55);
  min-height: 60px;
}
.benefit__check {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background-color: #57A93E;
  display: flex;
  align-items: center;
  justify-content: center;
}
.benefit__check::after {
  content: '';
  width: 22px;
  height: 22px;
  background-image: url('uploads/check-mark-white.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.benefit__text {
  font-size: clamp(16px, 1.25vw, 19px);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.3;
  color: #fff;
}
.benefits-foot {
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(247,245,239,0.18);
  display: flex; gap: 16px; align-items: center; justify-content: center;
  flex-wrap: wrap;
}
.benefits-foot .val {
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--paper);
}
.benefits-foot .val .accent { color: var(--accent); }

/* ——— Deployment cases — slides 5–8 ———————————————————————————————— */
.cases {
  display: grid; grid-template-columns: 1fr; gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.case {
  background: var(--paper);
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 36px);
  position: relative;
}
.case__head {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.4vw, 22px);
  flex-wrap: wrap;
}
.case__model {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}
.case__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}
.case__arrow img {
  width: 100%;
  height: 100%;
  transform: rotate(90deg);
  display: block;
}
.case__target {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  color: var(--ink);
  line-height: 1.05;
}
.case__body {
  display: grid;
  grid-template-columns: 240px 1fr 1fr;
  gap: clamp(20px, 3vw, 48px);
  padding-top: clamp(8px, 1vw, 14px);
  border-top: 1px solid var(--line);
}
@media (max-width: 980px) {
  .case__body { grid-template-columns: 1fr; gap: 24px; }
}
.case__col { padding-top: 0; }
.case__id {
  display: flex; flex-direction: column; gap: 16px;
}
.case__num {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--mute-2);
}
.case__title {
  font-size: clamp(22px, 2.4vw, 32px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.case__title .accent { color: var(--accent); }
.case__scope {
  margin-top: 8px;
  display: flex; flex-direction: column; gap: 6px;
}
.case__scope .row {
  display: flex; gap: 10px; align-items: baseline;
  font-size: 12px;
}
.case__scope .row .k {
  font-family: var(--mono); font-size: 10px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute-2); width: 64px;
}
.case__scope .row .v { color: var(--ink); font-weight: 500; flex: 1 1 auto; min-width: 0; white-space: nowrap; }

.case__col h4 {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
  font-weight: 600;
}
.case__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.case__col li {
  font-size: 14px; line-height: 1.4;
  color: var(--ink);
  padding-left: 18px;
  position: relative;
}
.case__col li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 8px; height: 8px;
  border: 1.5px solid var(--accent);
  border-radius: 0;
  transform: rotate(45deg);
}
.case__pull {
  margin-top: 0;
  font-family: var(--sans);
  font-style: normal;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--accent-light);
  border-left: 2px solid var(--accent);
  padding-left: 14px;
}

/* ——— Customer integration loop — slide 4 ————————————————————————— */
.loop {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.loop__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  position: relative;
  z-index: 1;
}
@media (max-width: 980px) { .loop__list { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 580px) { .loop__list { grid-template-columns: repeat(2, 1fr); } }
.loop__item {
  position: relative;
  background-color: #156082;
  background-image: none;
  color: #fff;
  border-radius: 8px;
  padding: 18px 16px;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: clamp(14px, 1.05vw, 17px);
  font-weight: 600;
  letter-spacing: -0.015em;
  line-height: 1.25;
  cursor: default;
  opacity: 1;
  overflow: hidden;
  transition: background-color .25s ease;
}
.loop__item-label,
.loop__item-q {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  inset: 0;
  padding: 12px 14px;
  text-align: center;
  transition: opacity .25s ease, transform .25s ease;
}
.loop__item-label {
  flex-direction: column;
  gap: 2px;
  opacity: 1;
  transform: translateY(0);
}
.loop__item-l1,
.loop__item-l2 {
  display: block;
  white-space: nowrap;
}
.loop__item-q {
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 500;
  font-style: normal;
  line-height: 1.35;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
}
.loop__item:hover {
  background-color: var(--accent-2);
}
.loop__item:hover .loop__item-label {
  opacity: 0;
  transform: translateY(-6px);
}
.loop__item:hover .loop__item-q {
  opacity: 1;
  transform: translateY(0);
}
.loop__caption {
  margin: 4px 0 0;
  padding: 18px 22px;
  background: var(--paper-3);
  border-left: 3px solid var(--accent);
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.55;
  max-width: 92ch;
}

/* ——— ATM / Lock Automation ————————————————————————————————————— */
.atm { display: flex; flex-direction: column; gap: 28px; }
.atm__brandrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.atm__brand { height: clamp(40px, 5vw, 56px); width: auto; }
.atm__visit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.atm__visit svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.atm__body {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-top: 8px;
}
@media (max-width: 980px) { .atm__body { grid-template-columns: 1fr; } }

.atm__visual {
  position: relative;
  background: var(--paper);
  border: 1px solid rgba(11,30,63,0.08);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 22px 50px -28px rgba(11,30,63,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
}
.atm__visual img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
}
.atm__visual-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.07) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.07) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.atm__visual-label {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--paper);
  font-size: clamp(20px, 1.6vw, 24px);
  font-weight: 500;
  letter-spacing: -0.015em;
  opacity: 0.85;
}
.atm__visual-corner {
  position: absolute;
  top: 18px; left: 22px;
  display: flex; flex-direction: column; gap: 4px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(247,245,239,0.85);
}
.atm__visual-corner span:last-child { color: rgba(247,245,239,0.55); font-size: 9.5px; }
.atm__visual-blip {
  position: absolute;
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18), 0 0 0 12px rgba(255,255,255,0.06);
}

.atm__list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 16px;
  align-self: center;
}
.atm__list li {
  display: flex; align-items: center; gap: 14px;
}
.atm__check {
  display: inline-flex;
  width: 26px; height: 26px;
  flex-shrink: 0;
}
.atm__check img,
.atm__check svg { width: 100%; height: 100%; display: block; }
.atm__text {
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}

/* ——— Integrations — slide 10 ——————————————————————————————————————— */
.integrations {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1px;
  background: rgba(247,245,239,0.1);
  border: 1px solid rgba(247,245,239,0.1);
}
@media (max-width: 1100px) { .integrations { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 720px)  { .integrations { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .integrations { grid-template-columns: 1fr; } }
.integration {
  background: var(--ink);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.integration__head {
  display: flex; align-items: baseline; justify-content: space-between;
  border-bottom: 1px solid rgba(247,245,239,0.15);
  padding-bottom: 14px;
}
.integration__name {
  font-size: 17px; font-weight: 500;
  color: var(--paper);
  letter-spacing: -0.015em;
}
.integration__num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(247,245,239,0.4);
}
.integration ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.integration li {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(247,245,239,0.7);
  line-height: 1.4;
  padding-left: 14px;
  position: relative;
}
.integration li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.15em;
  width: 14px;
  height: 14px;
  background-image: url('uploads/bullet-idle-light.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.integration li {
  padding-left: 22px;
}
.integration li::after {
  content: none;
}
.integration__rec-standalone {
  margin-top: 4px;
  padding-top: 12px;
  border-top: 1px solid rgba(247,245,239,0.12);
}
.integration__rec-standalone a {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-2);
  text-decoration: none;
  border-bottom: 1px solid var(--accent-2);
  padding-bottom: 1px;
  transition: color .2s, border-color .2s;
}
.integration__rec-standalone a:hover {
  color: #2EB670;
  border-bottom-color: #2EB670;
}

/* ——— Process / Direct platform mgmt — slide 11 ———————————————————— */
.process {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 980px) { .process { grid-template-columns: 1fr; } }
.process__copy h3 {
  font-size: clamp(28px, 3.6vw, 48px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}
.process__copy h3 .accent { color: var(--accent); }
.process__copy p {
  font-size: 17px; line-height: 1.55; color: var(--mute); max-width: 50ch;
}
.process__steps {
  list-style: none; padding: 0; margin: 24px 0 0 0;
  display: flex; flex-direction: column; gap: 14px;
}
.process__step {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 14px;
  align-items: start;
  font-size: 15px;
  line-height: 1.4;
}
.process__check {
  display: inline-flex;
  width: 28px; height: 28px;
  margin-top: 1px;
  flex-shrink: 0;
}
.process__check img,
.process__check svg { width: 100%; height: 100%; display: block; }
.process__step .t { color: var(--ink); font-weight: 500; }
.process__step .s { display: block; color: var(--mute); font-size: 13px; margin-top: 3px; font-weight: 400; }

.process__viz {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 28px;
  position: relative;
  aspect-ratio: 5 / 4;
}

/* ——— Stats strip ————————————————————————————————————————————————— */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(247,245,239,0.12);
}
@media (max-width: 980px) { .stats-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .stats-strip { grid-template-columns: 1fr; } }
.stat {
  background: var(--ink);
  padding: 36px 28px;
  display: flex; flex-direction: column; gap: 8px;
}
.stat__num {
  font-size: clamp(36px, 4.2vw, 56px);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--paper);
}
.stat__num .unit {
  font-family: var(--mono);
  font-size: 0.32em;
  color: rgba(247,245,239,0.55);
  margin-left: 4px;
  letter-spacing: 0.04em;
}
.stat__lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,239,0.5);
}
.stat__desc {
  font-size: 13px;
  line-height: 1.4;
  color: rgba(247,245,239,0.78);
  margin-top: 8px;
}

/* ——— Contact ——————————————————————————————————————————————————————— */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
}
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 40px; } }
.contact__title {
  font-size: clamp(38px, 5vw, 72px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.02;
  text-wrap: balance;
}
.contact__title .serif { color: var(--accent); font-weight: 400; }
.contact__title .accent { color: var(--accent); }
.contact__lede { font-size: 17px; line-height: 1.5; color: var(--mute); margin: 22px 0; max-width: 44ch; }
.contact__rows { border-top: 1px solid var(--line); margin-top: 24px; }
.contact__row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}
.contact__row .k {
  font-family: var(--mono); font-size: 11px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.contact__row .v { font-size: 15px; line-height: 1.5; color: var(--ink); }
.contact__row .v a { border-bottom: 1px solid var(--accent); }
.contact__row .v a:hover { color: var(--accent); }

.contact__form {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 36px clamp(24px, 4vw, 44px);
  display: flex; flex-direction: column; gap: 20px;
}
.contact__field { display: flex; flex-direction: column; gap: 8px; }
.contact__field label {
  font-family: var(--mono); font-size: 10.5px;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mute);
}
.contact__field input, .contact__field textarea {
  font: inherit;
  border: 0;
  border-bottom: 1px solid var(--line-strong);
  background: transparent;
  padding: 8px 0;
  color: var(--ink);
  outline: none;
}
.contact__field input:focus, .contact__field textarea:focus {
  border-bottom-color: var(--accent);
}
.contact__field textarea { resize: vertical; min-height: 64px; }

/* form states */
.btn:disabled { opacity: 0.5; cursor: not-allowed; }
.contact__error {
  font-size: 13px;
  color: #B33A3A;
  background: #FBE7E7;
  border: 1px solid #F1B5B5;
  padding: 10px 14px;
  border-radius: 4px;
  line-height: 1.45;
}
.contact__error a { color: inherit; text-decoration: underline; }
.contact__success {
  align-items: flex-start;
  gap: 18px;
}
.contact__success-mark {
  width: 56px; height: 56px;
  display: inline-flex;
}
.contact__success-mark img { width: 100%; height: 100%; display: block; }
.contact__success h3 {
  margin: 0;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.contact__success p {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--mute);
  max-width: 46ch;
}

/* ——— Footer ——————————————————————————————————————————————————————— */
.tnt-footer {
  background: var(--ink);
  color: var(--paper);
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}
.tnt-footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(247,245,239,0.12);
  position: relative;
  z-index: 2;
}
@media (max-width: 820px) { .tnt-footer__grid { grid-template-columns: 1fr 1fr; } }
.tnt-footer__col h4 {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247,245,239,0.5);
  font-weight: 500;
  margin-bottom: 18px;
}
.tnt-footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
  font-size: 14px;
}
.tnt-footer__col a { color: var(--paper); opacity: 0.85; text-decoration: none; transition: color .2s, opacity .2s; }
.tnt-footer__col a:hover { color: var(--accent-light); opacity: 1; }
.tnt-footer__wordmark {
  display: block;
  font-family: var(--sans);
  font-size: clamp(60px, 12vw, 180px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.85;
  margin-top: 60px;
  color: var(--paper);
  opacity: 0.95;
  user-select: none;
  text-decoration: none;
  transition: opacity .25s;
  position: relative;
  z-index: 2;
}
.tnt-footer__wordmark:hover { opacity: 1; }
.tnt-footer__wordmark .accent { color: var(--accent-light); }
.tnt-footer__legal {
  margin-top: 32px;
  display: flex; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.06em;
  color: rgba(247,245,239,0.45);
  text-transform: uppercase;
  position: relative;
  z-index: 2;
}
