/* ============================================================
   suite.css — Asli One suite shell
   Zoho-style information architecture (mega-menu, product
   catalogue, fat footer) in the Asli navy/copper identity.
   Loads AFTER asli.css and reuses its tokens.
   ============================================================ */

/* ------------------------------------------------------------
   0. CHROME TOKENS
   The suite header, sub-bar and footer are the same on every
   page, including ones with their own palette (Asli Campus is a
   light "prospectus" theme). Re-declaring the tokens on the
   chrome roots makes this file self-sufficient: a no-op where
   asli.css already supplies them, and correct on pages that
   don't. Keep these in step with asli.css :root.
   ------------------------------------------------------------ */
.suitebar, .subbar, .fatfoot {
  --bg0: #f6f2e9;
  --bg1: #efe9db;
  --bg2: #e6dece;
  --line: #d8d0bc;
  --text-hi: #1b1b42;
  --text-mid: #4c4a72;
  --text-dim: #6f6c92;
  --copper: #a86a34;
  --copper-hot: #8a5326;
  --on-copper: #fdfbf6;
  --navy: #202060;
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Schibsted Grotesk", "Segoe UI", sans-serif;
  --font-mono: "Spline Sans Mono", "Consolas", monospace;
  --space-md: 24px;
  --space-lg: 48px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  font-family: var(--font-body);
  line-height: 1.7;
}
/* Pages with their own layout may not define .wrap. */
.suitebar .wrap, .subbar .wrap, .fatfoot .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 48px);
}
.fatfoot ul { list-style: none; margin: 0; padding: 0; }
.suitebar *, .subbar *, .fatfoot * { box-sizing: border-box; }

/* ------------------------------------------------------------
   1. SUITE BAR — sticky header with mega-menu
   Replaces .topbar. Kept in the DOM of every page so the site
   reads as one company rather than nine separate microsites.
   ------------------------------------------------------------ */
.suitebar {
  position: sticky;
  top: 0;
  z-index: 200;
  /* Opaque on purpose. A translucent bar + backdrop-filter forces
     the browser to re-blur the backdrop every frame, and the
     backdrop here contains .cursor-glow — a 900px mix-blend-mode
     element that follows the pointer. The two together made the
     bar visibly stutter on mouse move. Not worth the glass look. */
  background: var(--bg0);
  border-bottom: 1px solid var(--line);
}
.suitebar-inner {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 28px);
  padding-top: 12px;
  padding-bottom: 12px;
}
.suitebar .logo { flex: none; }
.suitebar .logo img { height: 40px; }

.mainnav {
  display: flex;
  align-items: center;
  gap: clamp(2px, 1vw, 10px);
  margin-left: auto;
}
.mainnav > * { flex: none; }

/* nav items — mono caps, matching the existing .topnav language */
.navlink,
.navtrigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  background: none;
  border: 0;
  padding: 10px 12px;
  border-radius: 4px;
  cursor: pointer;
  transition: color 0.22s var(--ease), background 0.22s var(--ease);
}
.navlink:hover,
.navtrigger:hover,
.navtrigger[aria-expanded="true"] { color: var(--copper); background: var(--bg1); }

.navtrigger .caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.25s var(--ease);
}
.navtrigger[aria-expanded="true"] .caret { transform: translateY(1px) rotate(-135deg); }

.nav-signin {
  color: var(--text-hi);
  border: 1px solid var(--line);
}
.nav-signin:hover { border-color: var(--copper); color: var(--copper); background: none; }
.nav-try {
  color: var(--on-copper);
  background: var(--copper);
}
.nav-try:hover { background: var(--copper-hot); color: var(--on-copper); }

/* ---------- mega panel ---------- */
/* The panel spans the whole bar, so it must resolve against
   .suitebar (sticky, therefore a containing block) — a relative
   .megawrap would shrink it to the width of its trigger button. */
.megawrap { position: static; }
.megapanel {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 190;
  background: var(--bg1);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.65);
  /* Animating max-height would jump on content of differing
     heights, so clip-path + opacity carries the reveal. */
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.22s var(--ease), transform 0.28s var(--ease), visibility 0.22s;
}
.megapanel.open {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.megapanel-inner {
  padding-top: clamp(28px, 4vw, 44px);
  padding-bottom: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 44px);
}
.megacol h4 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

/* a product row inside the mega panel */
.mitem {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 9px 10px;
  margin: 0 -10px;
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.2s var(--ease);
}
.mitem:hover { background: var(--bg2); }
.mitem .micon {
  width: 34px; height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg0);
  color: var(--copper);
}
.mitem .micon svg { width: 17px; height: 17px; display: block; }
.mitem .mtxt { display: block; min-width: 0; }
/* .mitem is an icon+text grid. An item with no icon would drop its
   text into the 34px icon column and wrap one word per line, so a
   lone .mtxt must span both columns. */
.mitem > .mtxt:only-child { grid-column: 1 / -1; }
.mitem b {
  display: block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.94rem;
  color: var(--text-hi);
  line-height: 1.35;
}
.mitem .mdesc {
  display: block;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--text-dim);
}
.pill {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  vertical-align: 2px;
  margin-left: 7px;
  padding: 2px 6px;
  border-radius: 3px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  font-weight: 400;
}
.pill-live { color: #7fd6a8; border-color: color-mix(in oklab, #7fd6a8 40%, transparent); }
.pill-new { color: var(--copper); border-color: color-mix(in oklab, var(--copper) 45%, transparent); }

/* footer strip inside the mega panel */
.megafoot {
  border-top: 1px solid var(--line);
  padding: 16px 0 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 28px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.megafoot a { color: var(--text-mid); text-decoration: none; }
.megafoot a:hover { color: var(--copper); }
.megafoot .mf-lead { color: var(--text-dim); letter-spacing: 0.16em; }

/* screen dimmer behind an open panel */
.navscrim {
  position: fixed;
  inset: 0;
  z-index: 180;
  background: rgba(6, 6, 18, 0.55);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), visibility 0.25s;
}
.navscrim.open { opacity: 1; visibility: visible; }

/* ---------- mobile drawer ---------- */
.navburger {
  display: none;
  margin-left: auto;
  width: 42px; height: 42px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: none;
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.navburger i {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--text-hi);
  position: relative;
  transition: background 0.2s var(--ease);
}
.navburger i::before,
.navburger i::after {
  content: "";
  position: absolute;
  left: 0;
  width: 17px; height: 1.5px;
  background: var(--text-hi);
  transition: transform 0.28s var(--ease);
}
.navburger i::before { top: -5.5px; }
.navburger i::after { top: 5.5px; }
.navburger[aria-expanded="true"] i { background: transparent; }
.navburger[aria-expanded="true"] i::before { transform: translateY(5.5px) rotate(45deg); }
.navburger[aria-expanded="true"] i::after { transform: translateY(-5.5px) rotate(-45deg); }

/* ------------------------------------------------------------
   1b. PRODUCT SUB-BAR
   Sits under the suite bar on product pages: names the product
   and carries that page's own anchors, so the global nav does
   not have to swallow per-page navigation.
   ------------------------------------------------------------ */
.subbar {
  position: sticky;
  top: 64px;
  z-index: 150;
  background: var(--bg1);
  border-bottom: 1px solid var(--line);
}
.subbar-inner {
  display: flex;
  align-items: center;
  gap: clamp(14px, 3vw, 32px);
  padding-top: 11px;
  padding-bottom: 11px;
}
.subbar .subname {
  flex: none;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.32rem;
  line-height: 1;
  color: var(--text-hi);
  text-decoration: none;
}
.subbar .subname i {
  font-style: normal;
  color: var(--copper);
  margin-right: 8px;
}
.subnav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  margin-left: auto;
  /* Long anchor sets scroll rather than wrap the bar to two rows. */
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.subnav::-webkit-scrollbar { display: none; }
.subnav a {
  flex: none;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--text-mid);
  padding: 8px 2px;
  transition: color 0.22s var(--ease);
}
.subnav a:hover { color: var(--copper); }
.subnav .sub-cta {
  color: var(--on-copper);
  background: var(--copper);
  padding: 9px 16px;
  border-radius: 4px;
  transition: background 0.22s var(--ease);
}
.subnav .sub-cta:hover { background: var(--copper-hot); color: var(--on-copper); }

@media (max-width: 860px) {
  .subbar { top: 63px; }
  .subbar-inner { gap: 14px; }
  .subbar .subname { font-size: 1.1rem; }
  .subnav { gap: 16px; }
}

/* ------------------------------------------------------------
   2. SUITE HERO
   ------------------------------------------------------------ */
.hero-suite {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background-image:
    radial-gradient(ellipse 70% 55% at 72% 8%, color-mix(in oklab, var(--navy) 55%, transparent), transparent 70%),
    radial-gradient(color-mix(in oklab, var(--line) 50%, transparent) 1px, transparent 1px);
  background-size: auto, 30px 30px;
}
.hero-suite .hero-inner {
  padding-top: clamp(70px, 11vh, 130px);
  padding-bottom: clamp(56px, 8vh, 96px);
}
.hero-suite h1 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-hi);
  font-size: clamp(2.9rem, 8vw, 6.6rem);
  line-height: 0.94;
  max-width: 15ch;
}
.hero-suite h1 em { font-style: normal; color: var(--copper); }
.hero-suite .tag {
  margin-top: var(--space-md);
  max-width: 60ch;
  font-size: clamp(1.02rem, 1.5vw, 1.24rem);
  line-height: 1.7;
  color: var(--text-mid);
}
.hero-suite .tag strong { color: var(--text-hi); font-weight: 500; }

/* the "10 products / one account" counter strip */
.herostats {
  margin-top: clamp(34px, 5vw, 56px);
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 4vw, 56px);
  border-top: 1px solid var(--line);
  padding-top: clamp(22px, 3vw, 32px);
}
.herostats div { min-width: 110px; }
.herostats b {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--copper);
}
.herostats span {
  display: block;
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ------------------------------------------------------------
   3. PRODUCT CATALOGUE — the Zoho grid
   ------------------------------------------------------------ */
.cattabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: clamp(28px, 4vw, 44px);
}
.cattab {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-mid);
  background: none;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.22s var(--ease), border-color 0.22s var(--ease), background 0.22s var(--ease);
}
.cattab:hover { color: var(--copper); border-color: var(--copper); }
.cattab[aria-selected="true"] {
  color: var(--on-copper);
  background: var(--copper);
  border-color: var(--copper);
}

.catgroup { margin-bottom: clamp(38px, 5vw, 64px); }
.catgroup:last-child { margin-bottom: 0; }
.catgroup[hidden] { display: none; }
.catgroup > h3 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--copper);
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.catgroup > h3::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.ptiles {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(288px, 1fr));
  gap: 14px;
}
.ptile {
  position: relative;
  display: block;
  padding: 22px 22px 20px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--bg1);
  text-decoration: none;
  overflow: hidden;
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease), transform 0.28s var(--ease);
}
.ptile:hover {
  border-color: color-mix(in oklab, var(--copper) 55%, var(--line));
  background: var(--bg2);
  transform: translateY(-3px);
}
/* copper wash that grows from the top-left on hover */
.ptile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 70% at 0% 0%, color-mix(in oklab, var(--copper) 13%, transparent), transparent 70%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  pointer-events: none;
}
.ptile:hover::before { opacity: 1; }

.ptile-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.ptile .picon {
  flex: none;
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg0);
  color: var(--copper);
  transition: border-color 0.28s var(--ease);
}
.ptile:hover .picon { border-color: color-mix(in oklab, var(--copper) 60%, var(--line)); }
.ptile .picon svg { width: 20px; height: 20px; display: block; }
.ptile h4 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--text-hi);
}
.ptile .psub {
  display: block;
  margin-top: 3px;
  font-family: var(--font-body);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--text-dim);
  font-weight: 400;
}
.ptile p {
  font-size: 0.9rem;
  line-height: 1.62;
  color: var(--text-mid);
  min-height: 4.9em;
}
.ptile .pgo {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--copper);
}
.ptile .pgo::after {
  content: "→";
  transition: transform 0.28s var(--ease);
}
.ptile:hover .pgo::after { transform: translateX(4px); }
.ptile .pill { position: absolute; top: 20px; right: 20px; margin: 0; }

/* ------------------------------------------------------------
   4. SUITE BAND — the "one company behind all of it" pitch
   ------------------------------------------------------------ */
.suiteband { background: var(--bg1); border-bottom: 1px solid var(--line); }
.suiteband .section-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: start;
}
.suiteband h2 {
  font-family: var(--font-display);
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-hi);
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  line-height: 1.02;
}
.suiteband h2 em { font-style: normal; color: var(--copper); }
.suiteband .band-lead { margin-top: var(--space-md); max-width: 46ch; }
.bandlist { display: grid; gap: 2px; }
.bandrow {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.bandrow:first-child { border-top: 1px solid var(--line); }
.bandrow .bnum {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  color: var(--copper);
  padding-top: 2px;
}
.bandrow b {
  display: block;
  color: var(--text-hi);
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.bandrow span { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.bandnote {
  margin-top: 22px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  line-height: 1.8;
  color: var(--text-dim);
  border-left: 2px solid var(--copper);
  padding-left: 14px;
}

/* ------------------------------------------------------------
   5. SOLUTIONS — by business type
   ------------------------------------------------------------ */
.solgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.solcell {
  background: var(--bg0);
  padding: 26px 24px;
  text-decoration: none;
  display: block;
  transition: background 0.26s var(--ease);
}
.solcell:hover { background: var(--bg1); }
.solcell .sidx {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--copper);
}
.solcell h3 {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.42rem;
  line-height: 1.05;
  color: var(--text-hi);
  margin: 10px 0 8px;
}
.solcell p { font-size: 0.88rem; line-height: 1.6; color: var(--text-mid); }
.solcell .stack {
  display: block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
}
.solcell:hover .stack { color: var(--copper); }

/* ------------------------------------------------------------
   5b. PRICING TABLE — one row per product
   ------------------------------------------------------------ */
.pricelist { border-top: 1px solid var(--line); }
.pricerow {
  display: grid;
  grid-template-columns: 40px minmax(0, 1.05fr) minmax(0, 1.15fr) minmax(0, 0.8fr);
  gap: clamp(14px, 2.4vw, 30px);
  align-items: center;
  padding: clamp(20px, 3vw, 28px) clamp(4px, 1vw, 14px);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: background 0.28s var(--ease);
}
.pricerow:hover { background: var(--bg1); }
.pricerow .picon {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bg1);
  color: var(--copper);
}
.pricerow .picon svg { width: 19px; height: 19px; display: block; }
.pricerow .pname {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.42rem;
  line-height: 1.05;
  color: var(--text-hi);
}
.pricerow .pname small {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.78rem;
  text-transform: none;
  letter-spacing: 0;
  color: var(--text-dim);
}
.pricerow .pterms { font-size: 0.9rem; line-height: 1.6; color: var(--text-mid); }
.pricerow .pamount {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.05;
  color: var(--copper);
}
.pricerow .pamount small {
  display: block;
  margin-top: 5px;
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.pricerow .pamount.quoted { font-size: 1.05rem; color: var(--text-hi); }

.pricenote {
  margin-top: clamp(28px, 4vw, 44px);
  border-left: 2px solid var(--copper);
  padding-left: 16px;
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--text-mid);
  max-width: 74ch;
}

/* Zride's published rate card */
.ratecard {
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  margin-top: clamp(20px, 3vw, 28px);
}
.ratecard .rc-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--space-md);
  padding: 15px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--bg1);
}
.ratecard .rc-row:last-child { border-bottom: 0; }
.ratecard .rc-head {
  background: var(--bg2);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--copper);
}
.ratecard .rc-row b { color: var(--text-hi); font-weight: 500; font-size: 0.95rem; }
.ratecard .rc-row .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--copper);
  white-space: nowrap;
}

@media (max-width: 780px) {
  .pricerow {
    grid-template-columns: 38px minmax(0, 1fr);
    row-gap: 12px;
  }
  .pricerow .pterms,
  .pricerow .pamount { grid-column: 2; text-align: left; }
  .pricerow .pamount small { letter-spacing: 0.1em; }
}

/* ------------------------------------------------------------
   6. FAT FOOTER — full product sitemap, Zoho-style
   ------------------------------------------------------------ */
.fatfoot {
  background: var(--bg1);
  border-top: 1px solid var(--line);
}
.fatfoot-inner {
  padding-top: clamp(48px, 6vw, 76px);
  padding-bottom: clamp(32px, 4vw, 44px);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 44px);
}
.fatfoot h5 {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 16px;
}
.fatfoot ul { list-style: none; display: grid; gap: 9px; }
.fatfoot ul a {
  font-size: 0.86rem;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
.fatfoot ul a:hover { color: var(--copper); }
.footbrand img { height: 44px; width: auto; display: block; margin-bottom: 18px; }
.footbrand p {
  font-size: 0.86rem;
  line-height: 1.68;
  color: var(--text-mid);
  max-width: 34ch;
}
.footbrand .fcontact {
  margin-top: 18px;
  display: grid;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
}
.footbrand .fcontact a { color: var(--text-hi); text-decoration: none; }
.footbrand .fcontact a:hover { color: var(--copper); }

.footlaw {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  padding-bottom: 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px var(--space-md);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
}
.footlaw a { color: var(--text-dim); text-decoration: none; margin-left: 18px; }
.footlaw a:first-child { margin-left: 0; }
.footlaw a:hover { color: var(--copper); }

/* ------------------------------------------------------------
   7. RESPONSIVE
   ------------------------------------------------------------ */
@media (max-width: 1080px) {
  .fatfoot-inner { grid-template-columns: minmax(0, 1fr) repeat(2, minmax(0, 1fr)); }
  .footbrand { grid-column: 1 / -1; }
}

@media (max-width: 940px) {
  .megapanel-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .suiteband .section-inner { grid-template-columns: minmax(0, 1fr); }
}

/* Below this width the mega-menu is unusable as a hover/click
   panel, so the whole nav collapses into a drawer. */
@media (max-width: 860px) {
  /* Never reintroduce backdrop-filter (or filter/transform) on
     .suitebar: it makes the bar a containing block for
     position:fixed descendants, which traps this drawer at the
     height of the bar. */
  .navburger { display: grid; }
  .mainnav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(400px, 88vw);
    z-index: 210;
    background: var(--bg1);
    border-left: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 84px 22px 40px;
    overflow-y: auto;
    transform: translateX(100%);
    transition: transform 0.34s var(--ease);
  }
  .mainnav.open { transform: none; }
  .navlink, .navtrigger {
    width: 100%;
    justify-content: space-between;
    font-size: 0.86rem;
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }
  .navlink:hover, .navtrigger:hover, .navtrigger[aria-expanded="true"] { background: none; }
  .megawrap { position: static; }
  .megapanel {
    position: static;
    box-shadow: none;
    background: none;
    border: 0;
    transform: none;
    display: none;
    opacity: 1;
    visibility: visible;
  }
  .megapanel.open { display: block; }
  .megapanel-inner {
    grid-template-columns: minmax(0, 1fr);
    padding: 14px 0 18px;
    gap: 24px;
  }
  .megafoot { flex-direction: column; align-items: flex-start; gap: 12px; }
  .nav-signin, .nav-try {
    justify-content: center;
    margin-top: 18px;
    border-radius: 4px;
    border-bottom: 0;
  }
  .nav-try { margin-top: 10px; }
  .navburger { z-index: 220; position: relative; }
}

@media (max-width: 620px) {
  .ptiles { grid-template-columns: minmax(0, 1fr); }
  .ptile p { min-height: 0; }
  .herostats { gap: 18px 30px; }
  .fatfoot-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .megapanel, .mainnav, .ptile, .navburger i::before, .navburger i::after { transition: none; }
}

/* ============================================================
   8. LIGHT THEME CORRECTIONS
   The palette flips at the token layer, but two things don't:
   type set for a condensed poster face, and colours hardcoded
   for a dark backdrop. suite.css loads last on every page, so
   these overrides land after asli.css and product.css.
   ============================================================ */

/* ---- display type: Fraunces is a serif, not a condensed face ----
   Uppercase + 800 weight + tight tracking were tuned for Big
   Shoulders. In a serif they read as shouting, so headings go
   mixed-case, cap at the 700 weight we actually load, and shed
   the negative tracking. Sizes come down because a serif sets
   much wider than a condensed sans at the same point size. */
.hero h1, .hero-suite h1, .phero h1,
.sec-head h2, .suiteband h2, .contact-big,
.ptile h4, .solcell h3, .scell h3, .ctaband h3,
.prow .pname, .pricerow .pname, .subbar .subname,
.lead-name, .pfaq summary, .ticker span {
  text-transform: none;
  letter-spacing: -0.011em;
  font-weight: 700;
}
.herostats b, .facts b, .pricerow .pamount,
.ratecard .rc-row .amt, .price-line .pl b {
  text-transform: none;
  letter-spacing: -0.015em;
  font-weight: 700;
}

.hero-suite h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.6rem);
  line-height: 1.04;
  max-width: 19ch;
}
.phero h1 { font-size: clamp(2.2rem, 4.8vw, 3.9rem); line-height: 1.06; }
.sec-head h2 { font-size: clamp(1.9rem, 3.8vw, 3rem); line-height: 1.08; }
.suiteband h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.1; }
.contact-big { font-size: clamp(2rem, 4.4vw, 3.4rem); line-height: 1.08; }
.ptile h4 { font-size: 1.32rem; line-height: 1.15; }
.solcell h3, .ctaband h3 { font-size: 1.3rem; line-height: 1.18; }
.pricerow .pname { font-size: 1.26rem; line-height: 1.15; }
.subbar .subname { font-size: 1.16rem; }
/* Italic is Fraunces at its best — use it for the accent clause. */
.hero-suite h1 em, .suiteband h2 em, .contact-big em, .phero h1 em {
  font-style: italic;
  color: var(--copper);
}

/* ---- the marquee sits on copper, so it needs the light-on-dark pair ---- */
.ticker { border-bottom-color: var(--copper-hot); }
.ticker span { font-size: 1.02rem; letter-spacing: 0.01em; }

/* ---- colours that were literal, not tokens ---- */
/* Was a near-black drop shadow; on ivory that reads as dirt. */
.megapanel { box-shadow: 0 24px 48px -24px rgba(27, 27, 66, 0.28); }
/* Was #7fd6a8 — a pastel green invisible on paper. */
.pill-live { color: #2f7d55; border-color: color-mix(in oklab, #2f7d55 40%, transparent); }
.pill-new { color: var(--copper); border-color: color-mix(in oklab, var(--copper) 45%, transparent); }
/* Was rgba(6,6,18,.55) — too heavy behind a light page. */
.navscrim { background: rgba(27, 27, 66, 0.34); }

/* The hero wash was a navy blob lifted from the dark theme. */
.hero-suite {
  background-image:
    radial-gradient(ellipse 72% 58% at 76% 6%, color-mix(in oklab, var(--copper) 16%, transparent), transparent 72%),
    radial-gradient(color-mix(in oklab, var(--line) 82%, transparent) 1px, transparent 1px);
}
.hero-watermark { -webkit-text-stroke-color: color-mix(in oklab, var(--line) 78%, transparent); }

/* A screen-blend glow only brightens; on paper it washes to nothing
   but still forces a composite every frame. Retire it. */
.cursor-glow { display: none !important; }

/* Cards need a hairline instead of contrast-by-darkness now. */
.ptile { background: var(--bg1); }
.ptile:hover { background: #fffdf7; box-shadow: 0 10px 26px -18px rgba(27, 27, 66, 0.35); }
.suitebar { box-shadow: 0 1px 0 var(--line); }

/* ============================================================
   9. PRICING — plan cards + the quote band
   Seven of ten products have no list price, so the page leads
   with what can actually be bought and collects the quote-based
   ERPs into one honest band instead of five dead table rows.
   ============================================================ */
.plangrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(272px, 1fr));
  gap: 16px;
  align-items: stretch;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 26px 24px 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fffdf7;
  position: relative;
  transition: border-color 0.26s var(--ease), transform 0.26s var(--ease), box-shadow 0.26s var(--ease);
}
.plan:hover {
  border-color: color-mix(in oklab, var(--copper) 50%, var(--line));
  transform: translateY(-3px);
  box-shadow: 0 14px 30px -20px rgba(27, 27, 66, 0.35);
}
.plan .pprod {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--copper);
}
.plan h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.15;
  color: var(--text-hi);
  margin: 8px 0 2px;
}
.plan .amt {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.1;
  color: var(--text-hi);
  margin-top: 14px;
  letter-spacing: -0.02em;
}
.plan .amt span {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.86rem;
  letter-spacing: 0;
  color: var(--text-dim);
  margin-left: 4px;
}
.plan .billed {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-top: 6px;
  min-height: 1.1em;
}
.plan ul {
  list-style: none;
  margin: 18px 0 22px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 9px;
}
.plan li {
  position: relative;
  padding-left: 21px;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.plan li::before {
  content: "";
  position: absolute;
  left: 1px; top: 0.52em;
  width: 10px; height: 5px;
  border-left: 1.6px solid var(--copper);
  border-bottom: 1.6px solid var(--copper);
  transform: rotate(-45deg);
}
.plan .btn { margin-top: auto; text-align: center; }

/* the one plan we actually want people on */
.plan-featured { border-color: var(--copper); background: #fffaf0; }
.plan-featured .tagpop {
  position: absolute;
  top: -10px; left: 24px;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  background: var(--copper);
  color: var(--on-copper);
  padding: 4px 10px;
  border-radius: 3px;
}

/* ---- quote band: the five sized-to-you products ---- */
.quoteband {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg1);
  padding: clamp(26px, 4vw, 40px);
}
.quoteband > h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.12;
  color: var(--text-hi);
}
.quoteband > h3 em { font-style: italic; color: var(--copper); }
.quoteband > p {
  margin-top: 12px;
  max-width: 66ch;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}
.qlist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1px;
  margin: clamp(24px, 3vw, 32px) 0;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.qcell {
  background: var(--bg0);
  padding: 18px 18px 16px;
  text-decoration: none;
  display: block;
  transition: background 0.24s var(--ease);
}
.qcell:hover { background: #fffdf7; }
.qcell .qhead { display: flex; align-items: center; gap: 10px; }
.qcell .picon {
  flex: none;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--bg1);
  color: var(--copper);
}
.qcell .picon svg { width: 16px; height: 16px; display: block; }
.qcell b {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.06rem;
  color: var(--text-hi);
  line-height: 1.2;
}
.qcell span {
  display: block;
  margin-top: 9px;
  font-size: 0.83rem;
  line-height: 1.55;
  color: var(--text-mid);
}
.quoteband .qcta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}
.quoteband .qcta em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}

@media (max-width: 620px) {
  .plangrid { grid-template-columns: minmax(0, 1fr); }
}

/* The hero's bottom padding plus the first section's top padding
   stacked into ~200px of dead space under the stat strip. */
#plans .section-inner { padding-top: clamp(40px, 5vw, 68px); }
.phero + .section .section-inner { padding-top: clamp(40px, 5vw, 68px); }

/* ============================================================
   10. START PAGE + SELF-SERVE AFFORDANCES + PROOF BAND
   ============================================================ */
.ptile-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  margin-top: 14px;
}
.ptile-foot .pgo { margin-top: 0; }
.pstart {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-copper);
  background: var(--copper);
  padding: 5px 10px;
  border-radius: 3px;
}
.ptile:hover .pstart { background: var(--copper-hot); }

.startwhat {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
  margin-top: 10px;
  min-height: 3.2em;
}
.startsub {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--text-hi);
  margin: clamp(34px, 5vw, 52px) 0 16px;
}

/* ---- proof band: what is actually running in production ---- */
.proof { background: var(--bg1); border-bottom: 1px solid var(--line); }
.proof-inner {
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(40px, 5vw, 64px);
}
.proof h2 {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 22px;
}
.proofgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
}
.proofcell { background: var(--bg0); padding: 22px 20px; }
.proofcell b {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  line-height: 1.25;
  color: var(--text-hi);
}
.proofcell span {
  display: block;
  margin-top: 8px;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.proofcell em {
  display: block;
  margin-top: 10px;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--copper);
}
