/* ==========================================================================
   Plannit — modernized theme (demo)
   Brand palette lifted from the live HubSpot site:
     #F05A22 primary · #22252A ink · #0B4C75 deep blue · #FBAE17 amber
   Maps 1:1 onto a HubSpot coded theme (see README.md).
   ========================================================================== */

/* ---- 1. Tokens ---------------------------------------------------------- */
:root {
  --brand:        #F05A22;
  --brand-600:    #D84813;
  --brand-700:    #B93A0C;
  --brand-050:    #FFF2EC;
  --brand-100:    #FFDFD1;

  --ink:          #14171C;
  --ink-800:      #22252A;
  --ink-700:      #333436;
  --slate:        #5A6472;
  --slate-400:    #8B94A3;

  --blue:         #0B4C75;
  --blue-050:     #ECF4FA;
  --amber:        #FBAE17;
  --green:        #128A5E;
  --green-050:    #E9F7F1;

  --bg:           #FFFFFF;
  --bg-alt:       #F6F7F9;
  --line:         #E4E7ED;
  --line-strong:  #D2D7E0;

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(20,23,28,.06), 0 1px 3px rgba(20,23,28,.05);
  --shadow:    0 4px 12px rgba(20,23,28,.07), 0 12px 32px rgba(20,23,28,.07);
  --shadow-lg: 0 12px 28px rgba(20,23,28,.10), 0 40px 80px rgba(20,23,28,.14);
  --shadow-brand: 0 10px 30px rgba(240,90,34,.32);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, monospace;

  --container: 1180px;
  --gutter: 24px;
  --header-h: 72px;
}

/* ---- 2. Reset ----------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-800);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { display: block; max-width: 100%; }
img, video { height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { font-family: var(--font-display); margin: 0; letter-spacing: -0.022em; line-height: 1.1; font-weight: 700; }
p { margin: 0; }

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

.skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--ink); color: #fff; padding: 12px 18px;
  border-radius: var(--radius-sm); font-weight: 600; transition: top .15s ease;
}
.skip:focus { top: 12px; }

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

/* ---- 3. Layout ---------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.container-narrow { max-width: 820px; }
.section { padding-block: clamp(64px, 8vw, 112px); }
.section-sm { padding-block: clamp(48px, 5vw, 72px); }
.section-alt { background: var(--bg-alt); }
.section-ink { background: var(--ink); color: #fff; }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.split { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px, 6vw, 80px); align-items: center; }
.split-wide-right { grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr); }
.stack > * + * { margin-top: 20px; }

/* ---- 4. Type ------------------------------------------------------------ */
.h-display { font-size: clamp(2.4rem, 5.4vw, 4rem); line-height: 1.04; letter-spacing: -0.032em; }
.h1 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -0.028em; }
.h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.12; letter-spacing: -0.024em; }
.h3 { font-size: clamp(1.2rem, 1.8vw, 1.45rem); line-height: 1.25; }
.h4 { font-size: 1.05rem; line-height: 1.35; }

.lead { font-size: clamp(1.08rem, 1.6vw, 1.28rem); line-height: 1.6; color: var(--slate); }
.section-ink .lead, .hero .lead { color: rgba(255,255,255,.76); }
.muted { color: var(--slate); }
.small { font-size: .92rem; }
.xs { font-size: .82rem; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-display);
  font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--brand);
}
.eyebrow::before { content: ""; width: 22px; height: 2px; background: currentColor; border-radius: 2px; }
.section-ink .eyebrow, .hero .eyebrow { color: var(--amber); }

.hl { color: var(--brand); }
.hl-underline {
  background-image: linear-gradient(transparent 62%, rgba(240,90,34,.28) 62%);
  background-repeat: no-repeat;
}

.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 56px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head .h2 + .lead { margin-top: 16px; }
.section-head .eyebrow + .h2 { margin-top: 14px; }

/* ---- 5. Buttons --------------------------------------------------------- */
/* Real HTML/CSS buttons — replaces the legacy image-based HubSpot CTAs.      */
.btn {
  --btn-bg: var(--brand); --btn-fg: #fff; --btn-bd: transparent;
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 13px 22px; border: 1.5px solid var(--btn-bd); border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  font-family: var(--font-display); font-weight: 650; font-size: .98rem; letter-spacing: -.01em;
  cursor: pointer; white-space: nowrap;
  /* Never animate geometry on :hover — see the note at the foot of this file. */
  transition: box-shadow .16s ease, background-color .16s ease, border-color .16s ease, filter .16s ease;
}
.btn:hover { box-shadow: 0 6px 18px rgba(20,23,28,.17); filter: brightness(1.05); }
.btn:active { filter: brightness(.94); box-shadow: 0 2px 6px rgba(20,23,28,.14); }
.btn svg { width: 17px; height: 17px; flex: none; }
.btn-primary { box-shadow: var(--shadow-brand); }
.btn-primary:hover { --btn-bg: var(--brand-600); box-shadow: 0 10px 28px rgba(240,90,34,.45); }
.btn-dark { --btn-bg: var(--ink); }
.btn-dark:hover { --btn-bg: #000; }
.btn-outline { --btn-bg: transparent; --btn-fg: var(--ink-800); --btn-bd: var(--line-strong); }
.btn-outline:hover { --btn-bd: var(--ink); }
.btn-light { --btn-bg: #fff; --btn-fg: var(--ink); }
.btn-onink { --btn-bg: rgba(255,255,255,.08); --btn-fg: #fff; --btn-bd: rgba(255,255,255,.24); }
.btn-onink:hover { --btn-bg: rgba(255,255,255,.16); }
.btn-ghost { --btn-bg: transparent; --btn-fg: inherit; padding-inline: 12px; box-shadow: none; }
.btn-ghost:hover { --btn-bg: rgba(20,23,28,.06); box-shadow: none; filter: none; }
.btn-lg { padding: 16px 30px; font-size: 1.04rem; }
.btn-block { width: 100%; }

.btn-group { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.btn-note { font-size: .88rem; color: var(--slate-400); }
.hero .btn-note, .section-ink .btn-note { color: rgba(255,255,255,.6); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 650; color: var(--brand);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform .16s ease; }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---- 6. Header + nav ---------------------------------------------------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 2px 14px rgba(20,23,28,.05); }
.header-inner { display: flex; align-items: center; gap: 18px; height: var(--header-h); }
.brand { flex: none; display: flex; align-items: center; }
.brand img { width: 116px; height: auto; }

.primary-nav { flex: 1; }
.nav-list { display: flex; align-items: center; gap: 2px; }
.nav-link {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 14px; border: 0; background: none; border-radius: 999px;
  font-family: var(--font-display); font-weight: 600; font-size: .96rem; color: var(--ink-800);
  cursor: pointer; transition: background-color .15s ease, color .15s ease;
}
.nav-link:hover { background: rgba(20,23,28,.05); }
.nav-link[aria-expanded="true"] { background: var(--brand-050); color: var(--brand-700); }
.nav-link .chev { width: 14px; height: 14px; transition: transform .18s ease; }
.nav-link[aria-expanded="true"] .chev { transform: rotate(180deg); }
.nav-link.is-current { color: var(--brand); }

.header-actions { display: flex; align-items: center; gap: 8px; flex: none; }
.lang {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 12px; border-radius: 999px; border: 1px solid var(--line);
  font-size: .84rem; font-weight: 650; letter-spacing: .04em; color: var(--slate);
}
.lang:hover { border-color: var(--line-strong); color: var(--ink); }

/* Mega menu */
.mega {
  position: absolute; left: 50%; transform: translate(-50%, 8px);
  top: calc(var(--header-h) - 6px); width: min(1080px, calc(100vw - 32px));
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 28px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
}
.mega[data-open="true"] { opacity: 1; visibility: visible; pointer-events: auto; transform: translate(-50%, 0); }
.mega-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 8px 32px; }
.mega-col-title {
  font-family: var(--font-display); font-size: .74rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400);
  padding: 0 10px 10px; border-bottom: 1px solid var(--line); margin-bottom: 8px;
}
.mega a.mega-item {
  display: flex; gap: 11px; align-items: flex-start;
  padding: 9px 10px; border-radius: 10px; transition: background-color .14s ease;
}
.mega a.mega-item:hover { background: var(--bg-alt); }
.mega-item .ico {
  flex: none; width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center; background: var(--brand-050); color: var(--brand);
}
.mega-item .ico svg { width: 16px; height: 16px; }
.mega-item b { display: block; font-family: var(--font-display); font-size: .93rem; font-weight: 620; line-height: 1.3; }
.mega-item span { display: block; font-size: .8rem; color: var(--slate); line-height: 1.4; }

.mega-industries { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 4px; }
.mega-industries a {
  display: flex; align-items: center; gap: 9px; padding: 10px 12px;
  border-radius: 10px; font-size: .93rem; font-weight: 550;
  transition: background-color .14s ease, color .14s ease;
}
.mega-industries a:hover { background: var(--brand-050); color: var(--brand-700); }
.mega-industries a.is-featured { background: var(--brand-050); color: var(--brand-700); font-weight: 650; }
.mega-industries .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex: none; opacity: .5; }
.mega-foot {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 16px;
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: .9rem; color: var(--slate);
}

/* Mobile nav */
.nav-toggle {
  display: none; flex: none; width: 44px; height: 44px;
  border: 1px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .ico-close, .nav-toggle[aria-expanded="true"] .ico-open { display: none; }
.nav-toggle[aria-expanded="true"] .ico-close { display: block; }

.mobile-nav {
  display: none; position: fixed; inset: var(--header-h) 0 0; z-index: 99;
  background: #fff; overflow-y: auto; padding: 12px var(--gutter) 40px;
  border-top: 1px solid var(--line);
}
.mobile-nav[data-open="true"] { display: block; }
.mobile-nav details { border-bottom: 1px solid var(--line); }
.mobile-nav summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 4px; font-family: var(--font-display); font-weight: 650; font-size: 1.05rem;
  cursor: pointer; list-style: none;
}
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav summary svg { width: 18px; height: 18px; color: var(--slate); transition: transform .18s ease; }
.mobile-nav details[open] summary svg { transform: rotate(180deg); }
.mobile-nav .m-sub { padding: 2px 4px 18px; }
.mobile-nav .m-sub a { display: block; padding: 9px 0; color: var(--slate); font-weight: 500; }
.mobile-nav .m-sub a:hover { color: var(--brand); }
.mobile-nav .m-sub .m-group { font-size: .74rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); padding: 14px 0 4px; }
.mobile-nav > a.m-top { display: block; padding: 16px 4px; border-bottom: 1px solid var(--line); font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; }
.mobile-nav .m-actions { display: grid; gap: 10px; margin-top: 26px; }

/* ---- 7. Hero ------------------------------------------------------------ */
.hero {
  position: relative; overflow: hidden;
  background: var(--ink); color: #fff;
  padding-block: clamp(56px, 7vw, 92px) clamp(72px, 9vw, 116px);
}
.hero::before {
  content: ""; position: absolute; inset: -30% -10% auto -10%; height: 90%;
  background:
    radial-gradient(52% 60% at 20% 12%, rgba(240,90,34,.36), transparent 62%),
    radial-gradient(46% 55% at 82% 6%, rgba(11,76,117,.60), transparent 66%);
  filter: blur(6px); pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(72% 62% at 50% 22%, #000, transparent 72%);
  -webkit-mask-image: radial-gradient(72% 62% at 50% 22%, #000, transparent 72%);
}
.hero > * { position: relative; z-index: 1; }
.hero .h-display, .hero .h1 { color: #fff; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(0, 1fr); gap: clamp(36px, 5vw, 64px); align-items: center; }
.hero-copy > * + * { margin-top: 22px; }
.hero-center { text-align: center; max-width: 800px; margin-inline: auto; }
.hero-center .btn-group { justify-content: center; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px 7px 9px; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  font-size: .86rem; font-weight: 550; color: rgba(255,255,255,.9);
}
.pill .tag {
  padding: 3px 9px; border-radius: 999px; background: var(--brand);
  font-family: var(--font-display); font-size: .68rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase; color: #fff;
}
.pill-light { background: var(--brand-050); border-color: var(--brand-100); color: var(--brand-700); }

.hero-proof { display: flex; flex-wrap: wrap; gap: 10px 26px; padding-top: 8px; }
.hero-proof li { display: flex; align-items: center; gap: 8px; font-size: .93rem; color: rgba(255,255,255,.78); }
.hero-proof svg { width: 17px; height: 17px; color: var(--amber); flex: none; }

/* ---- 8. Stats ----------------------------------------------------------- */
/* Numbers are <p>/<span>, never headings — fixes the H2-abuse on the live site. */
.stat-row { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 4px; }
.stat { padding: 26px 24px; text-align: center; }
.stat + .stat { border-left: 1px solid var(--line); }
.section-ink .stat + .stat, .hero .stat + .stat { border-left-color: rgba(255,255,255,.14); }
.stat .n {
  display: block; font-family: var(--font-display); font-weight: 750;
  font-size: clamp(2rem, 4vw, 3rem); line-height: 1; letter-spacing: -.03em; color: var(--brand);
}
.stat .l { display: block; margin-top: 10px; font-size: .92rem; color: var(--slate); }
.section-ink .stat .l { color: rgba(255,255,255,.66); }
.hero .stat .n { color: #fff; }
.hero .stat .l { color: rgba(255,255,255,.62); }

/* ---- 9. Cards ----------------------------------------------------------- */
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 30px; transition: box-shadow .2s ease, border-color .2s ease;
}
.card-hover:hover { box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.card .h3 { margin-bottom: 12px; }
.card p { color: var(--slate); }
.card-icon {
  width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand); margin-bottom: 20px;
}
.card-icon svg { width: 23px; height: 23px; }
.card-icon.blue { background: var(--blue-050); color: var(--blue); }
.card-icon.amber { background: #FEF6E4; color: #B87B00; }
.card-icon.green { background: var(--green-050); color: var(--green); }

.card-ink { background: #1A1E25; border-color: rgba(255,255,255,.10); color: #fff; }
.card-ink p { color: rgba(255,255,255,.68); }

.check-list li { display: flex; gap: 12px; align-items: flex-start; padding: 9px 0; }
.check-list svg { width: 21px; height: 21px; flex: none; margin-top: 2px; color: var(--brand); }
.check-list.green svg { color: var(--green); }
.section-ink .check-list svg { color: var(--amber); }
.check-list b { font-weight: 620; }

/* ---- 10. Feature rows --------------------------------------------------- */
.feature-row { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1.08fr); gap: clamp(32px, 6vw, 76px); align-items: center; }
.feature-row + .feature-row { margin-top: clamp(56px, 7vw, 96px); }
.feature-row.reverse .feature-media { order: -1; }
.feature-copy > * + * { margin-top: 18px; }
.feature-copy .h2 { font-size: clamp(1.55rem, 2.6vw, 2.1rem); }

/* ---- 11. Testimonials --------------------------------------------------- */
.quote-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; gap: 20px; height: 100%;
}
.quote-card .stars { display: flex; gap: 3px; color: var(--amber); }
.quote-card .stars svg { width: 17px; height: 17px; }
.quote-card blockquote { margin: 0; font-size: 1.06rem; line-height: 1.6; color: var(--ink-800); }
.quote-card figcaption { display: flex; align-items: center; gap: 13px; margin-top: auto; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%; flex: none;
  display: grid; place-items: center; background: var(--blue-050); color: var(--blue);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  border: 1px dashed var(--line-strong);
}
.quote-card cite { font-style: normal; font-weight: 650; font-family: var(--font-display); display: block; }
.quote-card .role { font-size: .87rem; color: var(--slate); }

.quote-feature {
  background: linear-gradient(135deg, #1A1E25, #14171C);
  color: #fff; border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 56px);
  border: 1px solid rgba(255,255,255,.10);
}
.quote-feature blockquote {
  margin: 0; font-family: var(--font-display); font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.95rem); line-height: 1.35; letter-spacing: -.02em;
}
.quote-feature figcaption { display: flex; align-items: center; gap: 14px; margin-top: 28px; color: rgba(255,255,255,.72); }
.quote-feature .avatar { background: rgba(255,255,255,.08); color: #fff; border-color: rgba(255,255,255,.22); }

/* ---- 12. App mockups (live CSS UI — replaces static PNG screenshots) ----- */
.app-window {
  /* Reset inherited colour: these mockups sit inside dark hero/ink sections. */
  color: var(--ink-800);
  background: #fff; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid rgba(20,23,28,.10); box-shadow: var(--shadow-lg);
}
.hero .app-window, .section-ink .app-window { border-color: rgba(255,255,255,.14); }
.app-bar {
  display: flex; align-items: center; gap: 8px;
  padding: 11px 16px; background: #F3F4F7; border-bottom: 1px solid var(--line);
}
.app-bar .dots { display: flex; gap: 6px; }
.app-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: #D6DAE2; }
.app-bar .url {
  flex: 1; text-align: center; font-family: var(--font-mono); font-size: .72rem; color: var(--slate-400);
}
.app-body { padding: 18px; background: #FBFCFD; }

.app-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.app-title { font-family: var(--font-display); font-weight: 700; font-size: .98rem; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 11px; border-radius: 999px; font-size: .74rem; font-weight: 650;
  background: var(--bg-alt); color: var(--slate); border: 1px solid var(--line);
}
.chip-live { background: var(--green-050); color: var(--green); border-color: transparent; }
.chip-brand { background: var(--brand-050); color: var(--brand-700); border-color: transparent; }
.chip-blue { background: var(--blue-050); color: var(--blue); border-color: transparent; }
.chip .pulse {
  width: 7px; height: 7px; border-radius: 50%; background: currentColor;
  animation: pulse 1.8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; transform: scale(1); } 50% { opacity: .35; transform: scale(.75); } }

.job-card {
  display: flex; gap: 12px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  padding: 13px 14px; box-shadow: var(--shadow-sm);
}
.job-card + .job-card { margin-top: 9px; }
.job-card .jc-ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--brand-050); color: var(--brand);
}
.job-card .jc-ico svg { width: 17px; height: 17px; }
.job-card .jc-ico.blue { background: var(--blue-050); color: var(--blue); }
.job-card .jc-ico.green { background: var(--green-050); color: var(--green); }
.job-card .jc-body { min-width: 0; flex: 1; }
.job-card b { display: block; font-size: .88rem; font-weight: 650; font-family: var(--font-display); }
.job-card span { display: block; font-size: .78rem; color: var(--slate); line-height: 1.45; }
.job-card .jc-meta { margin-left: auto; font-size: .72rem; color: var(--slate-400); white-space: nowrap; }

/* staggered entrance, loops so the UI reads as "live" */
.feed-in { animation: feedIn .7s cubic-bezier(.22,1,.36,1) both; }
.feed-in:nth-child(1) { animation-delay: .05s; }
.feed-in:nth-child(2) { animation-delay: .25s; }
.feed-in:nth-child(3) { animation-delay: .45s; }
.feed-in:nth-child(4) { animation-delay: .65s; }
.feed-in:nth-child(5) { animation-delay: .85s; }
@keyframes feedIn { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }

.progress-track { height: 7px; border-radius: 999px; background: var(--line); overflow: hidden; }
.progress-bar { height: 100%; border-radius: 999px; background: linear-gradient(90deg, var(--brand), var(--amber)); width: 0; animation: fill 2.6s cubic-bezier(.32,.72,.2,1) forwards; }
@keyframes fill { to { width: var(--to, 68%); } }

.mini-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; margin-bottom: 14px; }
.mini-metric { background: #fff; border: 1px solid var(--line); border-radius: 11px; padding: 11px 12px; }
.mini-metric .mm-n { font-family: var(--font-display); font-weight: 750; font-size: 1.25rem; letter-spacing: -.02em; line-height: 1; }
.mini-metric .mm-l { font-size: .7rem; color: var(--slate); margin-top: 5px; }

/* Route map (snow removal) */
.route-map { position: relative; background: #EEF3F8; border-radius: 12px; overflow: hidden; aspect-ratio: 16 / 11; }
.route-map svg { width: 100%; height: 100%; display: block; }
.route-path { stroke: var(--brand); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 900; stroke-dashoffset: 900; animation: draw 5s cubic-bezier(.5,0,.3,1) infinite; }
.route-ghost { stroke: rgba(20,23,28,.13); stroke-width: 3.5; fill: none; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 7 9; }
@keyframes draw { 0% { stroke-dashoffset: 900; } 62% { stroke-dashoffset: 0; } 92% { stroke-dashoffset: 0; opacity: 1; } 100% { stroke-dashoffset: 0; opacity: 0; } }
.truck { offset-path: path(var(--route)); offset-rotate: auto; animation: drive 5s cubic-bezier(.5,0,.3,1) infinite; }
@keyframes drive { 0% { offset-distance: 0%; } 62%, 100% { offset-distance: 100%; } }
.stop-dot { fill: #fff; stroke: var(--brand); stroke-width: 2.5; }
.stop-dot.done { fill: var(--brand); }
.map-legend {
  position: absolute; right: 12px; bottom: 12px; display: flex; gap: 14px;
  background: rgba(255,255,255,.94); border-radius: 9px; padding: 8px 12px;
  font-size: .72rem; font-weight: 600; color: var(--slate); box-shadow: var(--shadow-sm);
}
.map-legend i { width: 9px; height: 9px; border-radius: 50%; display: inline-block; margin-right: 6px; }

/* Call transcript (AI receptionist) */
.transcript { display: flex; flex-direction: column; gap: 10px; }
.bubble {
  max-width: 84%; padding: 11px 15px; border-radius: 16px; font-size: .87rem; line-height: 1.5;
  animation: bubbleIn .55s cubic-bezier(.22,1,.36,1) both;
}
.bubble.caller { align-self: flex-start; background: #EDEFF3; color: var(--ink-800); border-bottom-left-radius: 5px; }
.bubble.bot { align-self: flex-end; background: var(--brand); color: #fff; border-bottom-right-radius: 5px; }
.bubble .who {
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .08em;
  text-transform: uppercase; opacity: .6; margin-bottom: 4px;
}
.bubble:nth-child(1) { animation-delay: .05s; }
.bubble:nth-child(2) { animation-delay: .40s; }
.bubble:nth-child(3) { animation-delay: .75s; }
.bubble:nth-child(4) { animation-delay: 1.10s; }
.bubble:nth-child(5) { animation-delay: 1.45s; }
.bubble:nth-child(6) { animation-delay: 1.80s; }
@keyframes bubbleIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.crm-drop {
  margin-top: 14px; border: 1px solid var(--line); border-radius: 12px; background: #fff;
  padding: 14px; box-shadow: var(--shadow-sm);
  animation: bubbleIn .6s cubic-bezier(.22,1,.36,1) 2.1s both;
}
.crm-drop .cd-head { display: flex; align-items: center; gap: 8px; margin-bottom: 11px; }
.crm-drop .cd-head b { font-family: var(--font-display); font-size: .85rem; }
.crm-field { display: flex; justify-content: space-between; gap: 12px; padding: 6px 0; font-size: .8rem; border-top: 1px dashed var(--line); }
.crm-field:first-of-type { border-top: 0; }
.crm-field .k { color: var(--slate); }
.crm-field .v { font-weight: 620; text-align: right; }

.waveform { display: flex; align-items: center; gap: 3px; height: 30px; }
.waveform i {
  width: 3px; border-radius: 2px; background: var(--brand); opacity: .75;
  animation: wave 1.1s ease-in-out infinite;
}
@keyframes wave { 0%, 100% { height: 22%; } 50% { height: 100%; } }

/* ---- 13. Placeholders --------------------------------------------------- */
/* Every slot that needs real media from Plannit is marked with .ph.          */
.ph {
  position: relative; display: grid; place-items: center; text-align: center;
  gap: 10px; padding: 28px; border: 2px dashed var(--line-strong); border-radius: var(--radius-lg);
  background:
    repeating-linear-gradient(45deg, rgba(20,23,28,.022) 0 10px, transparent 10px 20px),
    var(--bg-alt);
  color: var(--slate); min-height: 180px;
}
.ph-ico { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: #fff; border: 1px solid var(--line); color: var(--brand); }
.ph-ico svg { width: 21px; height: 21px; }
.ph b { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--brand); }
.ph span { font-size: .85rem; max-width: 40ch; line-height: 1.5; }
.ph .spec { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-400); }
.ph-onink { border-color: rgba(255,255,255,.24); background: rgba(255,255,255,.05); color: rgba(255,255,255,.72); }
.ph-onink .ph-ico { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.18); color: var(--amber); }
.ph-onink b { color: var(--amber); }
.ph-onink .spec { color: rgba(255,255,255,.45); }
.ph-video { aspect-ratio: 16 / 9; min-height: 0; }
.ph-square { aspect-ratio: 1; min-height: 0; }
.ph-wide { aspect-ratio: 21 / 9; min-height: 0; }
.ph-logo { min-height: 56px; padding: 12px; border-radius: 12px; }
.ph-logo b { font-size: .68rem; letter-spacing: .12em; color: var(--slate-400); }

/* ---- 14. Logo strip ----------------------------------------------------- */
.logo-strip { display: grid; grid-template-columns: repeat(5, minmax(0,1fr)); gap: 14px; align-items: center; }
.logo-strip-label { text-align: center; font-size: .82rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--slate-400); margin-bottom: 26px; }

/* ---- 15. Steps ---------------------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 26px; }
.step { display: grid; grid-template-columns: 48px minmax(0,1fr); gap: 18px; align-items: start; }
.step::before {
  counter-increment: step; content: counter(step);
  width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center;
  background: var(--brand); color: #fff;
  font-family: var(--font-display); font-weight: 750; font-size: 1.15rem;
  box-shadow: var(--shadow-brand);
}
.step .h3 { margin-bottom: 7px; }
.step p { color: var(--slate); }
.section-ink .step::before { background: rgba(255,255,255,.10); border: 1px solid rgba(255,255,255,.2); box-shadow: none; }
.section-ink .step p { color: rgba(255,255,255,.68); }

/* ---- 16. Pricing -------------------------------------------------------- */
.billing-toggle {
  display: inline-flex; align-items: center; gap: 4px; padding: 5px;
  background: var(--bg-alt); border: 1px solid var(--line); border-radius: 999px;
}
.billing-toggle button {
  border: 0; background: none; padding: 9px 20px; border-radius: 999px; cursor: pointer;
  font-family: var(--font-display); font-weight: 620; font-size: .93rem; color: var(--slate);
  transition: background-color .18s ease, color .18s ease, box-shadow .18s ease;
}
.billing-toggle button[aria-pressed="true"] { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); }
.billing-toggle .save {
  margin-left: 7px; padding: 2px 8px; border-radius: 999px;
  background: var(--green-050); color: var(--green); font-size: .72rem; font-weight: 700;
}

.plan-grid { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 18px; align-items: stretch; }
.plan {
  position: relative; display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 28px 24px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.plan:hover { box-shadow: var(--shadow-lg); border-color: var(--line-strong); }
.plan.is-popular { border-color: var(--brand); box-shadow: 0 0 0 3px var(--brand-050), var(--shadow); }
.plan-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  padding: 5px 14px; border-radius: 999px; background: var(--brand); color: #fff;
  font-family: var(--font-display); font-size: .7rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase; white-space: nowrap;
}
.plan-name { font-family: var(--font-display); font-weight: 700; font-size: 1.2rem; }
.plan-tag { font-size: .86rem; color: var(--slate); margin-top: 6px; min-height: 2.6em; }
.plan-price { display: flex; align-items: baseline; gap: 4px; margin-top: 18px; }
.plan-price .cur { font-size: 1.2rem; font-weight: 650; }
.plan-price .amt { font-family: var(--font-display); font-weight: 780; font-size: 2.6rem; letter-spacing: -.035em; line-height: 1; }
.plan-price .per { font-size: .92rem; color: var(--slate); }
.plan-billed { font-size: .8rem; color: var(--slate-400); margin-top: 7px; min-height: 1.4em; }
.plan .btn { margin-top: 20px; }
.plan-incl { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line); }
.plan-incl .from { font-size: .82rem; font-weight: 700; color: var(--ink-800); margin-bottom: 12px; }
.plan-incl li { display: flex; gap: 10px; align-items: flex-start; padding: 6px 0; font-size: .89rem; line-height: 1.45; }
.plan-incl svg { width: 18px; height: 18px; flex: none; margin-top: 2px; color: var(--green); }

.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; }
table.compare { width: 100%; min-width: 760px; border-collapse: collapse; font-size: .92rem; }
table.compare th, table.compare td { padding: 14px 18px; text-align: left; border-bottom: 1px solid var(--line); }
table.compare thead th { background: var(--bg-alt); font-family: var(--font-display); font-size: .82rem; letter-spacing: .04em; text-transform: uppercase; color: var(--slate); position: sticky; top: 0; }
table.compare tbody th { font-weight: 620; color: var(--ink-800); }
table.compare td { color: var(--slate); }
table.compare tr:last-child th, table.compare tr:last-child td { border-bottom: 0; }
table.compare .yes { color: var(--green); font-weight: 700; }
table.compare .no { color: var(--slate-400); }
.compare-scroll-hint { font-size: .82rem; color: var(--slate-400); margin-top: 10px; }

/* ---- 17. FAQ ------------------------------------------------------------ */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 20px;
  padding: 22px 4px; cursor: pointer; list-style: none;
  font-family: var(--font-display); font-weight: 650; font-size: 1.05rem; line-height: 1.4;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--brand); }
.faq summary .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--line-strong); display: grid; place-items: center; color: var(--slate); transition: transform .2s ease, background-color .2s ease, color .2s ease; }
.faq summary .pm svg { width: 14px; height: 14px; }
.faq details[open] summary .pm { transform: rotate(45deg); background: var(--brand); border-color: var(--brand); color: #fff; }
.faq .faq-body { padding: 0 46px 24px 4px; color: var(--slate); }
.faq .faq-body > * + * { margin-top: 12px; }

/* ---- 18. CTA band ------------------------------------------------------- */
.cta-band {
  position: relative; overflow: hidden; border-radius: var(--radius-xl);
  background: linear-gradient(120deg, var(--ink) 0%, #1C2129 55%, #241A14 100%);
  color: #fff; padding: clamp(40px, 6vw, 72px); text-align: center;
}
.cta-band::before {
  content: ""; position: absolute; inset: auto -10% -60% -10%; height: 100%;
  background: radial-gradient(50% 70% at 50% 100%, rgba(240,90,34,.42), transparent 70%);
  pointer-events: none;
}
.cta-band > * { position: relative; }
.cta-band .h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.cta-band .lead { max-width: 54ch; margin: 18px auto 0; }
.cta-band .btn-group { justify-content: center; margin-top: 30px; }

/* ---- 19. Footer --------------------------------------------------------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.66); padding-block: clamp(52px, 6vw, 76px) 32px; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(0,1fr)); gap: 36px 28px; }
.footer-brand img { width: 118px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { margin-top: 16px; font-size: .92rem; max-width: 30ch; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.10); color: #fff;
  transition: background-color .15s ease, border-color .15s ease;
}
.footer-social a:hover { background: var(--brand); border-color: var(--brand); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h2 { font-family: var(--font-display); font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #fff; margin-bottom: 16px; }
.footer-col li + li { margin-top: 9px; }
.footer-col a { font-size: .91rem; transition: color .14s ease; }
.footer-col a:hover { color: var(--brand); }
.footer-bottom {
  display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center; gap: 14px;
  margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10); font-size: .86rem;
}
.footer-bottom nav { display: flex; flex-wrap: wrap; gap: 20px; }

/* Demo banner — remove before handing to the client portal */
.demo-bar {
  background: linear-gradient(90deg, var(--brand-700), var(--brand));
  color: #fff; font-size: .82rem; text-align: center; padding: 8px 16px;
}
.demo-bar b { font-weight: 700; }
.demo-bar a { text-decoration: underline; text-underline-offset: 2px; }

/* ---- 20. Reveal on scroll ---------------------------------------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---- 21. Responsive ----------------------------------------------------- */
@media (max-width: 1080px) {
  .plan-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px; }
  .footer-top { grid-template-columns: repeat(3, minmax(0,1fr)); }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 960px) {
  .primary-nav, .header-actions { display: none; }
  .nav-toggle { display: flex; }
  .header-inner { justify-content: space-between; }
  .hero-grid, .split, .split-wide-right, .feature-row { grid-template-columns: minmax(0,1fr); }
  .feature-row.reverse .feature-media { order: 0; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .logo-strip { grid-template-columns: repeat(3, minmax(0,1fr)); }
}
@media (max-width: 720px) {
  body { font-size: 16px; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: minmax(0,1fr); }
  .stat-row { grid-template-columns: minmax(0,1fr); }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--line); }
  .section-ink .stat + .stat, .hero .stat + .stat { border-top-color: rgba(255,255,255,.14); }
  .plan-grid { grid-template-columns: minmax(0,1fr); }
  .footer-top { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .btn-group .btn { width: 100%; }
  .card { padding: 24px; }
  .faq .faq-body { padding-right: 4px; }
}

/* ---- 22. Motion / print ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important; animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .route-path { stroke-dashoffset: 0; }
  .progress-bar { width: var(--to, 68%); }
}
@media print {
  .site-header, .demo-bar, .cta-band, .nav-toggle { display: none; }
  body { color: #000; }
}

/* ==========================================================================
   23. Page-level components + current-page state
   ========================================================================== */

/* Current section highlighting, driven by <body data-page> */
body[data-page="pricing"] .nav-link[data-nav="pricing"],
body[data-page="snow"]    .nav-link[data-nav="solutions"],
body[data-page="ai"]      .nav-link[data-nav="features"] { color: var(--brand); }
body[data-page="snow"] .mega-industries a[data-industry="snow"] {
  background: var(--brand-050); color: var(--brand-700); font-weight: 650;
}

/* Pipeline board mock */
.mini-board { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 9px; }
.mini-col { background: #F1F3F6; border-radius: 11px; padding: 9px; }
.mini-col-head {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .66rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--slate); padding: 2px 3px 9px;
}
.mini-col-head .cnt { background: #fff; border-radius: 999px; padding: 1px 7px; letter-spacing: 0; }
.mini-task { background: #fff; border: 1px solid var(--line); border-radius: 9px; padding: 9px; box-shadow: var(--shadow-sm); }
.mini-task + .mini-task { margin-top: 7px; }
.mini-task b { display: block; font-family: var(--font-display); font-size: .76rem; font-weight: 650; }
.mini-task span { display: block; font-size: .69rem; color: var(--slate); margin-top: 2px; line-height: 1.4; }
.mini-task .amt { display: block; margin-top: 6px; font-size: .72rem; font-weight: 700; color: var(--green); }

/* Dispatch board mock */
.sched { display: grid; gap: 7px; }
.sched-row { display: grid; grid-template-columns: 52px minmax(0,1fr); gap: 10px; align-items: center; }
.sched-time { font-family: var(--font-mono); font-size: .69rem; color: var(--slate-400); text-align: right; }
.sched-block {
  background: #fff; border: 1px solid var(--line); border-left: 3px solid var(--brand);
  border-radius: 9px; padding: 9px 11px; box-shadow: var(--shadow-sm);
}
.sched-block b { display: block; font-family: var(--font-display); font-weight: 650; font-size: .8rem; }
.sched-block span { font-size: .71rem; color: var(--slate); }
.sched-block.c2 { border-left-color: var(--blue); }
.sched-block.c3 { border-left-color: var(--green); }
.sched-block.c4 { border-left-color: var(--amber); }
.sched-block.ghost { background: var(--bg-alt); border-style: dashed; box-shadow: none; color: var(--slate-400); }

/* Invoice mock */
.inv { background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 16px; box-shadow: var(--shadow-sm); }
.inv-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; margin-bottom: 14px; }
.inv-head b { font-family: var(--font-display); font-size: .92rem; }
.inv-head span { display: block; font-size: .72rem; color: var(--slate); }
.inv-line { display: flex; justify-content: space-between; gap: 12px; padding: 8px 0; font-size: .82rem; border-top: 1px dashed var(--line); }
.inv-line:first-of-type { border-top: 0; }
.inv-line .muted-k { color: var(--slate); }
.inv-total {
  display: flex; justify-content: space-between; margin-top: 10px; padding-top: 12px;
  border-top: 2px solid var(--ink); font-family: var(--font-display); font-weight: 750; font-size: .98rem;
}
.inv-paid {
  margin-top: 14px; display: flex; align-items: center; gap: 9px; padding: 11px 13px;
  border-radius: 10px; background: var(--green-050); color: var(--green); font-size: .82rem; font-weight: 650;
}
.inv-paid svg { width: 19px; height: 19px; flex: none; }

/* Industry grid */
.industry-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(196px, 1fr)); gap: 12px; }
.industry-card {
  display: flex; align-items: center; gap: 12px; padding: 15px 17px;
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  font-family: var(--font-display); font-weight: 620; font-size: .95rem;
  transition: box-shadow .18s ease, border-color .18s ease, background-color .18s ease, color .18s ease;
}
.industry-card:hover { border-color: var(--brand); background: var(--brand-050); color: var(--brand-700); box-shadow: var(--shadow-sm); }
.industry-card.is-active { border-color: var(--brand); background: var(--brand-050); color: var(--brand-700); }
.industry-card .ico {
  width: 34px; height: 34px; border-radius: 10px; flex: none; display: grid; place-items: center;
  background: var(--bg-alt); color: var(--slate); transition: inherit;
}
.industry-card:hover .ico, .industry-card.is-active .ico { background: #fff; color: var(--brand); }
.industry-card .ico svg { width: 17px; height: 17px; }

/* HubSpot parity note (demo-specific) */
.parity { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-xl); padding: clamp(28px, 4vw, 46px); }
.parity-tag {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 13px; border-radius: 999px;
  background: var(--blue-050); color: var(--blue);
  font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.parity-tag svg { width: 14px; height: 14px; }
.parity-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 36px; margin-top: 26px; }
.parity-item { display: flex; gap: 12px; padding: 14px 0; border-top: 1px solid var(--line); }
.parity-item svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--green); }
.parity-item b { display: block; font-family: var(--font-display); font-weight: 650; font-size: .95rem; }
.parity-item span { font-size: .87rem; color: var(--slate); line-height: 1.5; }

/* Winter hero variant + snowfall */
.hero-winter::before {
  background:
    radial-gradient(54% 62% at 22% 8%, rgba(11,76,117,.85), transparent 64%),
    radial-gradient(44% 54% at 84% 10%, rgba(240,90,34,.30), transparent 66%);
}
.snowfall {
  position: absolute; inset: 0; pointer-events: none; opacity: .55; z-index: 0;
  background-image:
    radial-gradient(2px 2px at 24px 32px, rgba(255,255,255,.85), transparent),
    radial-gradient(2px 2px at 148px 96px, rgba(255,255,255,.55), transparent),
    radial-gradient(1.5px 1.5px at 82px 172px, rgba(255,255,255,.7), transparent),
    radial-gradient(2px 2px at 212px 228px, rgba(255,255,255,.45), transparent),
    radial-gradient(1.5px 1.5px at 262px 60px, rgba(255,255,255,.6), transparent);
  background-size: 300px 300px;
  animation: snowfall 18s linear infinite;
}
@keyframes snowfall { to { background-position: 40px 300px, -30px 300px, 20px 300px, -20px 300px, 10px 300px; } }

/* Add-on rows (pricing) */
.addon { display: flex; gap: 16px; align-items: flex-start; padding: 20px 0; border-top: 1px solid var(--line); }
.addon:first-of-type { border-top: 0; }
.addon .ico { width: 42px; height: 42px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--brand-050); color: var(--brand); }
.addon .ico svg { width: 20px; height: 20px; }
.addon .addon-body { flex: 1; min-width: 0; }
.addon b { display: block; font-family: var(--font-display); font-weight: 650; font-size: 1.02rem; }
.addon p { font-size: .89rem; color: var(--slate); margin-top: 4px; }
.addon .addon-price { font-family: var(--font-display); font-weight: 750; font-size: 1.05rem; white-space: nowrap; text-align: right; }
.addon .addon-price small { display: block; font-size: .74rem; font-weight: 500; color: var(--slate); }

/* Utilities */
.u-center { text-align: center; }
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; } .mt-40 { margin-top: 40px; } .mt-56 { margin-top: 56px; }
.flex-between { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.flex-center { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; }

@media (max-width: 720px) {
  .parity-grid { grid-template-columns: minmax(0,1fr); }
  .mini-board { grid-template-columns: minmax(0,1fr); }
  .addon { flex-wrap: wrap; }
  .addon .addon-price { text-align: left; }
}

/* ==========================================================================
   24. No geometry on hover  (standing rule, enforced by verify-hover.py)
   --------------------------------------------------------------------------
   Nothing may change its own size or position on :hover — no transform, no
   width/height, no padding/margin/border-width, no font-size.

   Moving an element under the cursor moves its own hover boundary. The cursor
   ends up on the far side of it, the element un-hovers and springs back, and
   the cycle repeats at frame rate. Rounded shapes make it worse: Chrome
   hit-tests the actual curve, so on a pill button the entire curved side wall
   is a live boundary, not just the bottom edge. Each cycle here repainted a
   backdrop-filtered sticky header over a blurred hero, which pegged the main
   thread and froze the page.

   Hover feedback uses colour, border-colour, box-shadow and filter only. Those
   are paint-only: the hit area is byte-identical hovered and unhovered, so
   there is nothing for the state to oscillate against.

   A transform on a DESCENDANT (.link-arrow:hover svg) is fine — the hovered
   element's own box is what hit-testing uses, and that does not move.
   ========================================================================== */
