/* ==========================================================================
   IntegrytasGroup — site stylesheet
   Brand: Dark Navy #1E2D3D · Deep Blue #2D3E52 · Steel Gray #8A98A2 ·
          White #FFFFFF · Burnt Orange #E8712A
   Typography: Inter, two weights only (400 / 600) per brand guidelines.
   The orange→gold gradient is reserved for the logo mark and is never
   reproduced in UI chrome; the solid Burnt Orange is the only accent.

   Written MOBILE FIRST. Everything up to the 700px breakpoint is the phone
   layout, authored for the phone — not a desktop grid folded down. Desktop
   composition is layered on at >=700px and >=1000px.
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. Tokens
   -------------------------------------------------------------------------- */
:root {
  --navy:        #1E2D3D;
  --navy-deep:   #16222E;
  --blue:        #2D3E52;
  --steel:       #8A98A2;
  --steel-soft:  #B6C0C7;
  --white:       #FFFFFF;
  --paper:       #F5F7F9;
  --paper-edge:  #E4E9ED;
  --orange:      #E8712A;
  --orange-ink:  #C25514;          /* accessible orange for text on white */

  --rule:        rgba(138, 152, 162, 0.28);
  --rule-dark:   rgba(255, 255, 255, 0.14);

  --radius:      12px;
  --radius-lg:   18px;

  --maxw:        1160px;
  --gutter:      20px;

  /* Mobile type scale — set here, overridden wholesale at the breakpoints. */
  --t-display:   30px;
  --t-h2:        23px;
  --t-h3:        17px;
  --t-body:      16px;
  --t-small:     14px;
  --t-micro:     12px;
  --lh-body:     1.62;

  --section-y:   52px;
  --tap:         48px;             /* minimum touch target */
}

@media (min-width: 700px) {
  :root {
    --gutter:    32px;
    --t-display: 42px;
    --t-h2:      30px;
    --t-h3:      18px;
    --t-body:    16px;
    --t-small:   14px;
    --section-y: 76px;
  }
}

@media (min-width: 1000px) {
  :root {
    --gutter:    40px;
    --t-display: 52px;
    --t-h2:      34px;
    --section-y: 104px;
  }
}

/* --------------------------------------------------------------------------
   2. Reset & base
   -------------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;   /* stop iOS inflating text in landscape */
  scroll-behavior: smooth;
  scroll-padding-top: 76px;         /* sticky header clearance for anchors */
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  font-size: var(--t-body);
  line-height: var(--lh-body);
  color: var(--blue);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;               /* belt-and-braces against sideways scroll */
  -webkit-tap-highlight-color: rgba(232, 113, 42, 0.18);
}

img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3, h4 {
  font-weight: 600;
  color: var(--blue);
  letter-spacing: -0.015em;
  line-height: 1.18;
  margin: 0 0 0.5em;
  text-wrap: balance;
}
h1 { font-size: var(--t-display); letter-spacing: -0.025em; }
h2 { font-size: var(--t-h2); }
h3 { font-size: var(--t-h3); letter-spacing: -0.005em; }

/* Long identifiers (atc_cask_external_ref, hostnames) must never widen a phone. */
code, .mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.88em;
  overflow-wrap: anywhere;
}

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

:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

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

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

/* --------------------------------------------------------------------------
   3. Layout primitives
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: max(var(--gutter), env(safe-area-inset-left));
}

section { padding-block: var(--section-y); }

.band-paper { background: var(--paper); }
.band-dark  { background: var(--navy); color: var(--steel-soft); }
.band-dark h1, .band-dark h2, .band-dark h3 { color: var(--white); }

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

.eyebrow {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange-ink);
  margin: 0 0 14px;
}
.band-dark .eyebrow { color: var(--orange); }

.section-head { max-width: 62ch; margin-bottom: 32px; }
.section-head p {
  font-size: var(--t-body);
  color: var(--steel);
}
.band-dark .section-head p { color: var(--steel-soft); }

.lede {
  font-size: calc(var(--t-body) + 2px);
  line-height: 1.55;
  color: var(--steel);
  max-width: 60ch;
}
.band-dark .lede { color: var(--steel-soft); }

/* --------------------------------------------------------------------------
   4. Buttons — sized for thumbs first
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: var(--tap);
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-weight: 600;
  font-size: var(--t-small);
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background-color .16s ease, color .16s ease, border-color .16s ease;
}
.btn-primary { background: var(--orange); color: var(--white); }
.btn-ghost   { background: transparent; color: var(--blue); border-color: var(--rule); }
.band-dark .btn-ghost { color: var(--white); border-color: var(--rule-dark); }
.btn-solid   { background: var(--white); color: var(--navy); }

/* Hover styling only where hovering is real — a touch device must not get stuck
   in a hover state after a tap. */
@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover { background: var(--orange-ink); }
  .btn-ghost:hover   { border-color: var(--steel); }
  .btn-solid:hover   { background: var(--paper); }
}

.btn-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.btn-row .btn { width: 100%; }

@media (min-width: 560px) {
  .btn-row { flex-direction: row; flex-wrap: wrap; }
  .btn-row .btn { width: auto; }
}

.textlink {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 44px;
  font-weight: 600;
  font-size: var(--t-small);
  color: var(--orange-ink);
}
.band-dark .textlink { color: var(--orange); }
.textlink::after {
  content: "\2192";
  transition: transform .16s ease;
}
@media (hover: hover) and (pointer: fine) {
  .textlink:hover::after { transform: translateX(3px); }
}

/* --------------------------------------------------------------------------
   5. Header
   Mobile  : compact bar + full-height slide-over drawer
   Desktop : inline horizontal nav, no drawer
   -------------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;                      /* above the drawer, so its close button stays reachable */
  background: var(--white);
  border-bottom: 1px solid var(--rule);
  padding-top: env(safe-area-inset-top);
  transition: background-color .2s ease, border-color .2s ease;
}

/* While the drawer is open the bar joins it rather than cutting a white strip
   across the top of it. */
body[data-nav-open="true"] .site-header {
  background: var(--navy);
  border-bottom-color: transparent;
}
body[data-nav-open="true"] .nav-toggle { color: var(--white); }
/* No backdrop-filter below the desktop breakpoint: a filtered ancestor becomes
   the containing block for its position:fixed descendants, which would trap the
   mobile drawer inside the header instead of the viewport. Above 900px the nav
   is static, so the blur is safe. */
@media (min-width: 900px) {
  .site-header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: saturate(150%) blur(12px);
  }
}

.header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 60px;
}

/* The supplied lockup carries the tagline, so at a phone-sized header height the
   tagline becomes unreadable mush. Phones get the standalone mark file (an
   approved asset, well above its 32px minimum); the full lockup appears as soon
   as there is width to render it legibly. Neither file is modified. */
/* The drawer is a descendant of the header, so inside the header's stacking
   context it would paint over its own siblings. Lift them above it. */
.brand, .nav-toggle { position: relative; z-index: 90; }

.brand { display: inline-flex; align-items: center; }
.brand img { width: auto; }
.brand .lockup { display: none; }
.brand .mark { height: 36px; }

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--tap);
  height: var(--tap);
  margin-right: -10px;
  padding: 0;
  background: none;
  border: 0;
  color: var(--blue);
  cursor: pointer;
}
.nav-toggle svg { width: 24px; height: 24px; }
.nav-toggle .icon-close { display: none; }
.nav-toggle[aria-expanded="true"] .icon-open  { display: none; }
.nav-toggle[aria-expanded="true"] .icon-close { display: block; }

/* --- mobile drawer --- */
.site-nav {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  flex-direction: column;
  background: var(--navy);
  color: var(--white);
  padding: calc(env(safe-area-inset-top) + 76px) var(--gutter)
           calc(env(safe-area-inset-bottom) + 32px);
  overflow-y: auto;
  overscroll-behavior: contain;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .26s cubic-bezier(.4, 0, .2, 1), visibility .26s;
}
.site-nav[data-open="true"] { transform: translateX(0); visibility: visible; }

.site-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 56px;
  padding: 8px 0;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--rule-dark);
}
.site-nav a .hint {
  font-size: var(--t-micro);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel);
}
.site-nav .nav-cta {
  margin-top: auto;
  padding-top: 28px;
  border: 0;
}
.site-nav .nav-cta .btn { width: 100%; }
.site-nav .nav-foot {
  border: 0;
  min-height: 0;
  padding-top: 20px;
  font-size: var(--t-small);
  font-weight: 400;
  color: var(--steel);
  display: block;
}

body[data-nav-open="true"] { overflow: hidden; }

/* --- desktop nav --- */
@media (min-width: 560px) {
  .brand .mark { display: none; }
  .brand .lockup { display: block; height: 40px; }
}

@media (min-width: 900px) {
  .header-bar { min-height: 76px; }
  .brand .lockup { height: 44px; }
  .nav-toggle { display: none; }

  .site-nav {
    position: static;
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 0;
    background: none;
    color: inherit;
    overflow: visible;
    transform: none;
    visibility: visible;
    transition: none;
  }
  .site-nav a {
    display: inline-flex;
    justify-content: flex-start;
    min-height: 0;
    padding: 0;
    font-size: var(--t-small);
    color: var(--blue);
    border: 0;
  }
  .site-nav a .hint { display: none; }
  .site-nav .nav-cta { margin: 0; padding: 0; }
  .site-nav .nav-cta .btn { width: auto; min-height: 42px; padding: 9px 20px; }
  .site-nav .nav-foot { display: none; }
}

@media (hover: hover) and (pointer: fine) and (min-width: 900px) {
  .site-nav a:hover { color: var(--orange-ink); }
  .site-nav .nav-cta .btn:hover { color: var(--white); }
}

/* --------------------------------------------------------------------------
   6. Mobile-only sticky action bar
   Phones get a permanent way to reach us without scrolling to the footer.
   It does not exist at all on desktop, where the header CTA is always visible.
   -------------------------------------------------------------------------- */
.action-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  display: flex;
  gap: 10px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(150%) blur(10px);
  border-top: 1px solid var(--rule);
  transform: translateY(110%);
  transition: transform .22s ease;
}
.action-bar[data-visible="true"] { transform: translateY(0); }
.action-bar .btn { flex: 1; }

/* Stop the bar covering the end of the page. */
body.has-action-bar { padding-bottom: 76px; }

@media (min-width: 900px) {
  .action-bar { display: none; }
  body.has-action-bar { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   7. Hero
   -------------------------------------------------------------------------- */
.hero {
  background: var(--navy);
  color: var(--steel-soft);
  padding-block: 56px 60px;
  position: relative;
  overflow: hidden;
}
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero .lede { color: var(--steel-soft); }
.hero .btn-row { margin-top: 28px; }

.hero-mark {
  position: absolute;
  right: -60px;
  bottom: -70px;
  width: 260px;
  opacity: 0.07;
  pointer-events: none;
}

@media (min-width: 700px) {
  .hero { padding-block: 92px 96px; }
  .hero-mark { width: 400px; right: -90px; bottom: -110px; }
}
@media (min-width: 1000px) {
  .hero { padding-block: 124px 132px; }
  .hero h1 { max-width: 17ch; }
  .hero-mark { width: 520px; right: -60px; bottom: -150px; opacity: 0.08; }
}

/* --------------------------------------------------------------------------
   8. Disciplines — accordion on phones, open grid on desktop
   Same markup, genuinely different interaction model.
   -------------------------------------------------------------------------- */
.disciplines { display: grid; gap: 0; }

.discipline {
  border-top: 1px solid var(--rule);
}
.discipline:last-child { border-bottom: 1px solid var(--rule); }

.discipline > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 64px;
  padding: 14px 0;
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: var(--t-h3);
  color: var(--blue);
}
.discipline > summary::-webkit-details-marker { display: none; }

.discipline .d-num {
  flex: 0 0 auto;
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--orange-ink);
}
.discipline .d-title { flex: 1; }
.discipline .d-chevron {
  flex: 0 0 auto;
  width: 20px; height: 20px;
  color: var(--steel);
  transition: transform .2s ease;
}
.discipline[open] .d-chevron { transform: rotate(180deg); }

.discipline .d-body { padding: 0 0 22px; }
.discipline .d-body p { color: var(--steel); }
.discipline .d-body ul {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}
.discipline .d-body li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: var(--t-small);
  color: var(--steel);
}
.discipline .d-body li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--orange);
}

@media (min-width: 820px) {
  .disciplines {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px;
    border-top: 1px solid var(--rule);
    padding-top: 6px;
  }
  .discipline { border: 0; }
  .discipline:last-child { border-bottom: 0; }
  .discipline > summary {
    display: block;
    min-height: 0;
    padding: 22px 0 10px;
    cursor: default;
    pointer-events: none;           /* no toggling on desktop — always open */
  }
  .discipline .d-num { display: block; margin-bottom: 10px; }
  .discipline .d-chevron { display: none; }
  .discipline .d-body { padding-bottom: 0; }
}

/* --------------------------------------------------------------------------
   9. Platform panel
   -------------------------------------------------------------------------- */
.platform-grid { display: grid; gap: 14px; margin-top: 30px; }

.platform-item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius);
}
.platform-item h3 { font-size: var(--t-h3); margin-bottom: 7px; }
.platform-item p { font-size: var(--t-small); color: var(--steel-soft); margin: 0; }

@media (min-width: 760px) {
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
  .platform-item { padding: 26px; }
}
@media (min-width: 1000px) {
  .platform-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   10. Product cards
   Phone  : one column, condensed — four headline points, not nine
   Desktop: two columns with the full point list
   -------------------------------------------------------------------------- */
.product-list { display: grid; gap: 16px; }

.product {
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  background: var(--white);
  border: 1px solid var(--paper-edge);
  border-radius: var(--radius-lg);
}
.band-paper .product { box-shadow: 0 1px 2px rgba(30, 45, 61, .04); }

.product-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.product-name {
  font-size: 24px;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}
.product-tag {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
}
.chip {
  flex: 0 0 auto;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
}
.chip-live    { background: rgba(232, 113, 42, .12); color: var(--orange-ink); }
.chip-preview { background: rgba(45, 62, 82, .08);   color: var(--blue); }
.chip-soon    { background: rgba(138, 152, 162, .16); color: var(--steel); }

.product > p { color: var(--steel); font-size: var(--t-small); }

.product ul {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.product li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  font-size: var(--t-small);
  color: var(--blue);
}
.product li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 7px; height: 2px;
  background: var(--orange);
}
/* Points beyond the fourth are desktop-only detail; a phone card that lists
   nine bullets is a wall, not a summary. */
.product li.detail { display: none; }

.product .product-foot { margin-top: 18px; }

.product-placeholder {
  border-style: dashed;
  border-color: var(--rule);
  background: transparent;
}
.product-placeholder .product-name { color: var(--steel); }
.product-placeholder > p { font-size: var(--t-small); }

@media (min-width: 760px) {
  .product { padding: 30px 28px; }
  .product li.detail { display: block; }
}
@media (min-width: 1000px) {
  .product-list { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
  .product-list .span-full { grid-column: 1 / -1; }
  .placeholder-row { grid-column: 1 / -1; display: grid; gap: 22px;
                     grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* --------------------------------------------------------------------------
   11. How we work
   -------------------------------------------------------------------------- */
.approach { display: grid; gap: 0; }
.approach-item { padding: 22px 0; border-top: 1px solid var(--rule); }
.approach-item:last-child { border-bottom: 1px solid var(--rule); }
.approach-item h3 { margin-bottom: 6px; }
.approach-item p { font-size: var(--t-small); color: var(--steel); margin: 0; }

@media (min-width: 760px) {
  .approach {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
  }
  .approach-item:nth-child(2) { border-top: 1px solid var(--rule); }
  .approach-item:last-child { border-bottom: 0; }
  .approach-item:nth-last-child(2) { border-bottom: 0; }
}
@media (min-width: 1060px) {
  .approach { grid-template-columns: repeat(4, minmax(0, 1fr)); column-gap: 36px; }
  .approach-item:last-child, .approach-item:nth-last-child(2) {
    border-bottom: 0;
  }
}

/* --------------------------------------------------------------------------
   12. Contact
   -------------------------------------------------------------------------- */
.contact-grid { display: grid; gap: 32px; }

.form-card {
  padding: 22px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--rule-dark);
  border-radius: var(--radius-lg);
}
.field { display: flex; flex-direction: column; margin-bottom: 16px; }
.field label {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--steel-soft);
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  min-height: var(--tap);
  padding: 12px 14px;
  font: inherit;
  font-size: 16px;                  /* 16px or iOS Safari zooms on focus */
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid var(--rule-dark);
  border-radius: 10px;
  outline: none;
  appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A98A2' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 18px;
  padding-right: 42px;
}
.field textarea { min-height: 108px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { border-color: var(--orange); }
.field input::placeholder, .field textarea::placeholder { color: var(--steel); }

.form-card .btn { width: 100%; }
.form-card .btn[disabled] { opacity: .65; cursor: progress; }
.form-note { font-size: var(--t-micro); color: var(--steel); margin-top: 14px; }

/* Honeypot: off-screen rather than display:none, because bots skip hidden
   fields. Real people never reach it — it is aria-hidden and tabindex="-1". */
.hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  margin: 14px 0 0;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: var(--t-small);
  border: 1px solid transparent;
}
.form-status[data-kind="ok"] {
  color: var(--white);
  background: rgba(232, 113, 42, .16);
  border-color: var(--orange);
}
.form-status[data-kind="error"] {
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border-color: var(--steel);
}

.contact-direct { margin-top: 22px; }
.contact-direct dt {
  font-size: var(--t-micro);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 4px;
}
.contact-direct dd {
  margin: 0 0 18px;
  font-size: var(--t-small);
  overflow-wrap: anywhere;
}
.contact-direct dd a { color: var(--white); font-weight: 600; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
  .form-card { padding: 32px; }
}

/* --------------------------------------------------------------------------
   13. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: var(--steel);
  border-top: 1px solid var(--rule-dark);
  padding-block: 36px;
  padding-bottom: calc(36px + env(safe-area-inset-bottom));
  font-size: var(--t-small);
}
.site-footer img { height: 46px; width: auto; margin-bottom: 22px; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 22px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}
.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  color: var(--steel-soft);
  font-weight: 600;
}
.footer-legal { font-size: var(--t-micro); color: var(--steel); margin: 0; }

@media (min-width: 800px) {
  .footer-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
  }
  .footer-links { margin-bottom: 0; }
  .footer-legal { margin-top: 28px; }
}

/* --------------------------------------------------------------------------
   14. Product page — capability groups, fact row
   The product hero reuses the landing page's .hero component; there is no
   separate product-hero treatment.
   -------------------------------------------------------------------------- */

/* Problem statement */
.problem { display: grid; gap: 16px; margin-top: 28px; }
.problem-item {
  padding: 20px;
  border-left: 3px solid var(--orange);
  background: var(--white);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.problem-item h3 { font-size: var(--t-h3); margin-bottom: 6px; }
.problem-item p { font-size: var(--t-small); color: var(--steel); margin: 0; }

@media (min-width: 760px) {
  .problem { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
}

/* Capability groups: accordion on phone, columns on desktop */
.capabilities { display: grid; gap: 0; margin-top: 26px; }

.capability { border-top: 1px solid var(--rule); }
.capability:last-child { border-bottom: 1px solid var(--rule); }
.capability > summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 0;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--t-h3);
}
.capability > summary::-webkit-details-marker { display: none; }
.capability .c-index {
  flex: 0 0 28px;
  font-size: var(--t-micro);
  font-weight: 600;
  color: var(--orange-ink);
}
.capability .c-title { flex: 1; }
.capability .c-chevron { flex: 0 0 auto; width: 20px; height: 20px; color: var(--steel); transition: transform .2s ease; }
.capability[open] .c-chevron { transform: rotate(180deg); }

.capability ul { margin: 0 0 22px; padding: 0; list-style: none; }
.capability li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
  font-size: var(--t-small);
  color: var(--steel);
}
.capability li::before {
  content: "";
  position: absolute;
  left: 2px; top: 8px;
  width: 7px; height: 2px;
  background: var(--orange);
}
.capability li strong { color: var(--blue); font-weight: 600; }

@media (min-width: 860px) {
  .capabilities {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 48px;
    border-top: 1px solid var(--rule);
  }
  .capability { border-top: 0; }
  .capability:last-child { border-bottom: 0; }
  .capability > summary {
    display: block;
    min-height: 0;
    padding: 26px 0 12px;
    cursor: default;
    pointer-events: none;
  }
  .capability .c-index { display: block; margin-bottom: 8px; }
  .capability .c-chevron { display: none; }
}

/* Fact row */
.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 28px;
}
.fact { background: var(--white); padding: 18px 16px; }
.band-paper .fact { background: var(--paper); }
.fact dt {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 6px;
}
.fact dd { margin: 0; font-size: var(--t-small); font-weight: 600; color: var(--blue); }

@media (min-width: 760px) { .facts { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* Any wide block scrolls inside itself rather than widening the page. */
.scroll-x {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}
