/* =====================================================================
   Paytools Home — Warm earthy palette, Bricolage Grotesque + Hanken Grotesk
   ===================================================================== */

@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400..800&family=Hanken+Grotesk:wght@400;500;600;700&display=swap");
@import url("https://api.fontshare.com/v2/css?f[]=general-sans@400,500,600,700&display=swap");

/* Aeonik (licensed) — files live in /design-system/fonts/ */
@font-face {
  font-family: "Aeonik";
  src: url("/design-system/fonts/Aeonik-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Aeonik";
  src: url("/design-system/fonts/aeonik-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --accent: #5A45DE;
  --lav: #CEC2EF;
  --paper: #F1E8E2;
  --paper-alt: #FCFAF8;
  --ink: #1A1613;
  --ink-2: #2A2420;
  --ink-soft: #5A514A;
  --ink-mute: #8A8078;
  --ink-faint: #A89E95;
  --border: #E6DBD2;
  --border-card: #ECE2DA;
  --green: #3E9A6D;
  --green-2: #4A8C68;
  --green-dark: #1F5C40;
  --red: #B4452F;

  /* ---- Paytools design system tokens (used by inner/product pages) ---- */
  --pt-accent:        #3339F2;
  --pt-accent-soft:   #F4F1FE;
  --pt-paper:         #FFFFFF;
  --pt-paper-deep:    #F3F4F6;
  --pt-cream:         #F4F1EC;
  --pt-ink:           #1F2937;
  --pt-ink-soft:      #555769;
  --pt-ink-mute:      #757780;
  --pt-line:          #E5E7EB;
  --pt-line-strong:   #D1D5DB;
  --pt-serif:         Georgia, 'Times New Roman', serif;
  --pt-font-display:  'Hanken Grotesk', 'General Sans', system-ui, sans-serif;
  --pt-font-mono:     'JetBrains Mono', ui-monospace, monospace;
  --pt-ease:          cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---- Shared component classes for inner/product pages ---- */

/* Buttons */
.pt-btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: inherit; font-size: 15.1px; font-weight: 500;
  border-radius: 999px; padding: 10px 18px;
  border: 1px solid transparent; cursor: pointer; text-decoration: none;
  transition: background 160ms, transform 160ms, box-shadow 160ms;
  white-space: nowrap;
}
.pt-btn--lg  { padding: 13px 22px; font-size: 16.2px; }
.pt-btn--sm  { padding: 8px 14px;  font-size: 14.6px; }
.pt-btn--primary {
  background: var(--pt-ink); color: #fff;
  box-shadow: 0 1px 2px rgba(20,21,26,.18), inset 0 1px 0 rgba(255,255,255,.10);
}
.pt-btn--primary:hover { background: #000; transform: translateY(-1px); box-shadow: 0 8px 22px -8px rgba(20,21,26,.45); }
.pt-btn--ghost { background: transparent; color: var(--pt-ink); border-color: var(--pt-line); }
.pt-btn--ghost:hover { background: rgba(20,21,26,.04); }
.pt-btn--white { background: #fff; color: var(--pt-ink); box-shadow: 0 1px 2px rgba(0,0,0,.06), 0 8px 24px -10px rgba(0,0,0,.30); }
.pt-btn--white:hover { transform: translateY(-1px); }
.pt-btn--ghost-light { background: transparent; color: rgba(255,255,255,.92); border-color: rgba(255,255,255,.22); }
.pt-btn--ghost-light:hover { background: rgba(255,255,255,.08); }

/* Hero (inner pages — centered or split) */
.pt-page { min-height: 100vh; background: #fff; }
.pt-hero { position: relative; padding: 80px 40px 72px; background: var(--pt-paper); }
.pt-hero-inner { max-width: 1120px; margin: 0 auto; }
.pt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase;
  color: var(--pt-accent); margin-bottom: 24px;
}
.pt-hero-eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--pt-accent);
}
.pt-hero-title {
  font-size: clamp(34.6px, 4.9vw, 60.5px); font-weight: 800; line-height: 1.1;
  letter-spacing: -.02em; color: var(--pt-ink); margin: 0 0 20px;
}
.pt-hero-title em { font-style: italic; font-weight: 800; }
.pt-hero-sub {
  font-size: clamp(17.3px, 1.8vw, 20.5px); line-height: 1.6; color: var(--pt-ink-soft); margin: 0 0 36px;
}
.pt-hero-cta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }

/* Section typography */
.pt-features-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.pt-eyebrow-mark {
  font-size: 16px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--pt-accent); margin-bottom: 16px;
}
.pt-section-title {
  font-size: clamp(25.9px, 3.2vw, 38.9px); font-weight: 700; line-height: 1.2;
  letter-spacing: -.02em; color: var(--pt-ink); margin: 0 0 16px;
}
.pt-section-sub { font-size: clamp(17.3px, 1.8vw, 20.5px); line-height: 1.55; color: var(--pt-ink-soft); margin: 20px 0 0; max-width: 58ch; }

/* Capability / stat cards (shared across About, Pricing, etc.) */
.pt-caps { padding: 80px 0; }
.pt-caps-inner { max-width: 1100px; margin: 0 auto; padding: 0 40px; }
.pt-caps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px;
}
.pt-cap-card {
  background: #fff; border: 1px solid var(--pt-line); border-radius: 16px; padding: 28px;
}
.pt-cap-icon {
  width: 40px; height: 40px; background: var(--pt-accent-soft); color: var(--pt-accent);
  border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
}
.pt-cap-label { font-size: 17.3px; font-weight: 700; margin-bottom: 8px; color: var(--pt-ink); }
.pt-cap-body  { font-size: 15.1px; line-height: 1.6; color: var(--pt-ink-soft); margin: 0; }

@media (max-width: 900px) {
  .pt-caps-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .pt-caps-inner { padding: 0 20px; }
  .pt-hero { padding: 64px 20px 56px; }
}

* { box-sizing: border-box; }
html, body {
  margin: 0; padding: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: 'Aeonik', 'General Sans', 'Hanken Grotesk', -apple-system, sans-serif;
  font-size: 18.4px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font-family: 'Aeonik', 'General Sans', 'Hanken Grotesk', sans-serif; cursor: pointer; }

/* ============ ANIMATIONS ============ */
@keyframes ptrise    { from{opacity:0;transform:translateY(22px)} to{opacity:1;transform:translateY(0)} }
@keyframes ptfloat   { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-6px)} }
@keyframes ptviewA   { 0%{opacity:1}45%{opacity:1}50%{opacity:0}95%{opacity:0}100%{opacity:1} }
@keyframes ptviewB   { 0%{opacity:0}45%{opacity:0}50%{opacity:1}95%{opacity:1}100%{opacity:0} }
@keyframes ptbadge   { 0%,100%{box-shadow:0 0 0 0 rgba(90,69,222,0)} 50%{box-shadow:0 0 0 5px rgba(90,69,222,.16)} }
@keyframes ptdotcheck{ 0%,64%{background:#fff;border-color:#C9BBB0} 72%,93%{background:#3E9A6D;border-color:#3E9A6D} 100%{background:#fff;border-color:#C9BBB0} }
@keyframes pttick2   { 0%,65%{opacity:0;transform:scale(0)} 73%{opacity:1;transform:scale(1.35)} 79%,93%{opacity:1;transform:scale(1)} 100%{opacity:0;transform:scale(0)} }
@keyframes ptqueued  { 0%,66%{opacity:1;transform:translateY(0)} 72%,100%{opacity:0;transform:translateY(-3px)} }
@keyframes ptdone    { 0%,67%{opacity:0;transform:translateY(3px)} 75%,93%{opacity:1;transform:translateY(0)} 100%{opacity:0;transform:translateY(3px)} }
@keyframes ptlabeld  { 0%,64%{color:#8A8078} 72%,93%{color:#2A2420} 100%{color:#8A8078} }
@keyframes ptcursor  { 0%,57%{opacity:0;transform:translate(13px,15px)} 63%{opacity:1;transform:translate(3px,4px)} 70%{transform:translate(0,1px) scale(.8)} 74%{transform:translate(3px,4px) scale(1)} 88%{opacity:1;transform:translate(3px,4px)} 95%,100%{opacity:0;transform:translate(-5px,-10px)} }
@keyframes aireveal  { 0%{opacity:0;transform:translateY(6px)} 5%{opacity:1;transform:none} 92%{opacity:1} 98%{opacity:0} 100%{opacity:0} }
@keyframes aiblink   { 0%,48%{opacity:1} 50%,100%{opacity:0} }
@keyframes aipulse   { 0%,100%{opacity:.35;transform:scale(.8)} 50%{opacity:1;transform:scale(1)} }
@keyframes aisweep   { 0%{transform:translateX(-130%)} 100%{transform:translateX(330%)} }

/* ============ NAV ============ */
.pt-nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(241,232,226,.82);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .25s, background .25s;
}
.pt-nav--scrolled {
  box-shadow: 0 8px 24px -14px rgba(26,22,19,.4);
  background: rgba(241,232,226,.96);
}
.pt-nav-inner {
  max-width: 1180px; margin: 0 auto;
  padding: 16px clamp(20px,5vw,48px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.pt-nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none; margin: 0; padding: 0;
  font-size: 17.8px; font-weight: 500; color: var(--ink-2);
}
.pt-nav-item { position: relative; }
.pt-nav-item > span { cursor: pointer; }
.pt-nav-item > span:hover, .pt-nav-item > a:hover { color: var(--accent); }
.pt-nav-caret { margin-left: 3px; font-size: 10.8px; opacity: .6; }
.pt-nav-cta {
  font-size: 17.3px; font-weight: 500;
  color: var(--paper); background: var(--ink);
  border: none; padding: 11px 22px; border-radius: 999px;
  transition: background .18s, transform .18s;
}
.pt-nav-cta:hover { background: #2E2823; transform: translateY(-1px); }

.pt-dropdown {
  position: absolute; top: calc(100% + 12px); left: 0;
  background: var(--paper-alt); border: 1px solid var(--border);
  border-radius: 12px; padding: 8px; min-width: 200px;
  box-shadow: 0 16px 40px -16px rgba(26,22,19,.2);
  list-style: none; margin: 0; z-index: 100;
}
.pt-dropdown li a {
  display: block; padding: 9px 14px; border-radius: 8px;
  font-size: 15.7px; color: var(--ink-2); transition: background .15s;
}
.pt-dropdown li a:hover { background: var(--paper); }

.pt-mega {
  position: absolute; top: calc(100% + 12px); left: -20px;
  background: var(--paper-alt); border: 1px solid var(--border);
  border-radius: 14px; padding: 12px; min-width: 360px;
  box-shadow: 0 20px 48px -20px rgba(26,22,19,.22); z-index: 100;
}
.pt-mega-card {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 12px; border-radius: 10px; text-decoration: none; color: var(--ink);
  transition: background .15s;
}
.pt-mega-card:hover { background: var(--paper); }
.pt-mega-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--paper); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; color: var(--accent);
}
.pt-mega-title { font-size: 15.1px; font-weight: 600; color: var(--ink-2); }
.pt-mega-desc { font-size: 13.5px; color: var(--ink-mute); margin-top: 2px; line-height: 1.4; }

/* ============ HERO ============ */
.pt-hero {
  padding: clamp(56px,8vw,104px) 0 clamp(48px,6vw,80px);
  background: var(--paper);
}
.pt-hero-center {
  max-width: 1180px; margin: 0 auto;
  padding: 0 clamp(20px,5vw,48px); text-align: center;
}
.pt-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 16px; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 22px;
}
.pt-hero-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: clamp(32.4px,5.2vw,64.8px);
  line-height: 1.04; letter-spacing: -.025em; margin: 0 auto;
  white-space: nowrap;
}
.pt-hero-chip {
  background: var(--ink); color: var(--paper);
  padding: 0 .16em; border-radius: 12px;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.pt-hero-sub {
  font-size: 19.4px; line-height: 1.5; color: var(--ink-soft);
  max-width: 46ch; margin: 26px auto 0;
}
.pt-hero-ctas {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center; margin-top: 34px;
}
.pt-btn-fill {
  font-size: 16.2px; font-weight: 500; color: var(--paper);
  background: var(--accent); border: none;
  padding: 15px 28px; border-radius: 999px;
  transition: background .18s, transform .18s;
}
.pt-btn-fill:hover { background: #4A37C8; transform: translateY(-2px); }
.pt-btn-stroke {
  font-size: 16.2px; font-weight: 500; color: var(--ink);
  background: transparent; border: 1.5px solid #C9BBB0;
  padding: 15px 28px; border-radius: 999px;
  transition: transform .18s;
}
.pt-btn-stroke:hover { transform: translateY(-2px); }

/* ============ TRUSTED BAR ============ */
.pt-trusted { background: var(--lav); overflow: hidden; }
.pt-trusted-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 34px clamp(20px,5vw,48px);
  display: flex; align-items: center; gap: clamp(24px,3vw,48px); flex-wrap: wrap;
}
.pt-trusted-label { font-size: 13px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #3A2E78; flex-shrink: 0; }
.pt-trusted-logos { flex: 1; min-width: 280px; display: grid; grid-template-columns: repeat(6,1fr); align-items: center; justify-items: center; gap: 12px; }
.pt-trusted-logo { width: auto; max-width: 100%; display: block; filter: brightness(0); }
.pt-trusted-logo--volvo { height: 16.2px; }
.pt-trusted-logo--sm { height: 22px; }
.pt-trusted-logo--lg { height: 38.5px; }
.pt-trusted-logo--bapcor { height: 25.3px; }
.pt-trusted-logo--boost { height: 44.3px; }

/* ============ SECTION SHARED ============ */
.pt-section-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.pt-pill {
  display: inline-flex; align-items: center;
  font-size: 14px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  padding: 7px 14px; border-radius: 999px; margin-bottom: 22px; white-space: nowrap;
}
.pt-pill--red   { color: #FBEEE9; background: var(--red); }
.pt-pill--green { color: #E7F1EA; background: #2F6B47; }
.pt-h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: clamp(32.4px,4.8vw,58.3px);
  line-height: 1.04; letter-spacing: -.02em; margin: 0;
}
.pt-section-sub { font-size: 19px; line-height: 1.55; color: var(--ink-soft); margin: 20px 0 0; max-width: 58ch; }

/* ============ PROBLEM ============ */
.pt-problem { background: var(--paper-alt); padding: clamp(72px,9vw,120px) 0; }
.pt-problem-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(258px,1fr)); gap: 18px; margin-top: clamp(40px,5vw,56px); }
.pt-problem-card { background: var(--paper-alt); border: 1px solid #EADFD6; border-radius: 18px; overflow: hidden; display: flex; flex-direction: column; }
.pt-problem-art { height: 148px; position: relative; display: flex; align-items: center; padding: 0 22px; gap: 16px; overflow: hidden; }
.pt-problem-art--green  { background: #E9F0EA; }
.pt-problem-art--blue   { background: #D3E2F4; }
.pt-problem-art--purple { background: #E7E0F1; }
.pt-problem-body { padding: 20px 22px 24px; flex: 1; background: var(--paper); }
.pt-problem-h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; font-size: 21.6px; margin: 0 0 8px; letter-spacing: -.01em; }
.pt-problem-p  { font-size: 16.2px; line-height: 1.5; color: #6B6259; margin: 0; }

/* BAU clock art */
.pt-art-clock { width: 62px; height: 62px; border-radius: 50%; border: 3px solid #4A8C68; position: relative; flex-shrink: 0; background: #fff; }
.pt-art-hand  { position: absolute; left: 50%; top: 50%; width: 2px; background: #4A8C68; transform-origin: bottom; border-radius: 2px; }
.pt-art-hand-h { height: 22px; transform: translate(-50%,-100%) rotate(38deg); }
.pt-art-hand-m { height: 16px; transform: translate(-50%,-100%) rotate(-70deg); }
.pt-art-bau-list { flex: 1; display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.pt-art-bau-item { display: flex; align-items: center; gap: 7px; font-size: 13px; font-weight: 600; color: #2F6B47; }
.pt-art-bau-item--strat { color: #B0A69C; text-decoration: line-through; }
.pt-art-bau-check { width: 14px; height: 14px; border-radius: 4px; background: #4A8C68; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 9.7px; flex-shrink: 0; }
.pt-art-bau-check--empty { background: none; border: 1.5px dashed #C0B6AC; }

/* Spreadsheet art */
.pt-art-stack { position: absolute; left: 34px; top: 42px; width: 150px; height: 96px; background: #fff; border: 1px solid #DBCFC4; border-radius: 7px; box-shadow: 0 6px 14px -6px rgba(0,0,0,.18); }
.pt-art-stack-2 { left: 46px; top: 34px; transform: rotate(-2deg); }
.pt-art-stack-3 { left: 58px; top: 28px; transform: none; overflow: hidden; }
.pt-art-stack-1 { transform: rotate(-7deg); }
.pt-art-xls-head { height: 18px; background: #E7EFE9; border-bottom: 1px solid #DBCFC4; display: flex; align-items: center; padding: 0 7px; gap: 5px; }
.pt-art-xls-icon { width: 7px; height: 7px; background: #5FA77F; border-radius: 2px; }
.pt-art-xls-name { font-size: 9.7px; font-weight: 700; color: #3E7457; font-family: monospace; }
.pt-art-xls-grid { padding: 6px; display: grid; grid-template-columns: repeat(5,1fr); gap: 2px; }
.pt-art-xls-cell { height: 7px; background: #EFE7DF; }
.pt-art-xls-cell--hl { background: #F2D9D0; }

/* Memory art */
.pt-art-note { position: absolute; display: flex; align-items: center; justify-content: center; box-shadow: 0 5px 10px -4px rgba(0,0,0,.18); font-size: 11.9px; font-weight: 700; font-family: monospace; }
.pt-art-qmark { position: absolute; right: 18px; bottom: 14px; font-size: 32.4px; color: #C9302C; font-weight: 800; font-family: 'Bricolage Grotesque', sans-serif; }

/* ============ SOLUTION ============ */
.pt-solution { background: var(--paper); padding: clamp(72px,9vw,120px) 0; }
.pt-feature-eyebrow { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.pt-h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28.1px,3.2vw,41px); line-height: 1.08; letter-spacing: -.02em; margin: 0 0 18px; }
.pt-feature-body { font-size: 17px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 14px; }
.pt-feature-row { display: grid; grid-template-columns: 1fr 1.05fr; gap: clamp(32px,5vw,72px); align-items: center; margin-top: clamp(48px,6vw,80px); }
.pt-feature-row--alt { grid-template-columns: 1.05fr 1fr; }
.pt-feature-row--alt .pt-feature-copy { order: 2; }
.pt-feature-row--alt .pt-feature-mock { order: 1; }
.pt-feature-mock { background: var(--paper-alt); border: 1px solid var(--border); border-radius: 18px; box-shadow: 0 30px 60px -40px rgba(26,22,19,.4); overflow: hidden; }

/* Teams panel */
.pt-teams-panel {
  margin-top: clamp(56px,7vw,88px); background: #211B3E; border-radius: 22px;
  padding: clamp(28px,3.4vw,48px); display: grid; grid-template-columns: 1.05fr 1fr;
  gap: clamp(30px,4vw,60px); align-items: center; box-shadow: 0 40px 80px -50px rgba(26,22,19,.7);
}
.pt-teams-eyebrow { display: inline-flex; align-items: center; gap: 7px; font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #C9BEF7; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); padding: 6px 13px; border-radius: 999px; margin-bottom: 20px; }
.pt-teams-h3 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(29.2px,3.5vw,45.4px); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 18px; color: #F4F1FF; }
.pt-teams-body { font-size: 17px; line-height: 1.62; color: #BEB6D8; margin: 0 0 14px; }

/* ============ WORKS WITH ============ */
.pt-works { background: var(--paper-alt); padding: clamp(64px,8vw,108px) 0; }
.pt-works-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; }
.pt-works-layer-card { background: var(--paper-alt); border: 1px solid var(--border); border-radius: 18px; padding: clamp(22px,2.6vw,32px); box-shadow: 0 30px 60px -42px rgba(26,22,19,.4); }
.pt-works-main-box { background: var(--paper); color: #15120F; border: 1px solid var(--border); border-radius: 18px; padding: 22px 22px 20px; }
.pt-works-main-eyebrow { font-size: 11.3px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #A0958B; }
.pt-works-main-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 32.4px; letter-spacing: -.02em; line-height: 1; margin: 6px 0 9px; color: #15120F; }
.pt-works-main-desc { font-size: 15.1px; font-weight: 500; line-height: 1.45; color: #3F362E; }
.pt-works-tags { display: flex; gap: 7px; margin-top: 15px; }
.pt-works-tag { flex: 1; text-align: center; font-size: 12.4px; font-weight: 600; color: #3F362E; background: #FAF6F1; border: 1px solid #E7DCD2; border-radius: 9px; padding: 8px 6px; }
.pt-works-divider { display: flex; align-items: center; gap: 8px; margin: 20px 0 11px; }
.pt-works-divider-lbl { font-size: 11.3px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #9A8F84; white-space: nowrap; }
.pt-works-divider-line { flex: 1; height: 1px; background: #E7DCD2; }
.pt-works-neighbours { display: grid; grid-template-columns: 1.5fr 1fr; gap: 10px; }
.pt-neighbour { display: flex; flex-direction: column; background: #FAF6F1; border: 1px solid #E7DCD2; border-radius: 14px; padding: 15px 16px; }
.pt-neighbour-eyebrow { font-size: 10.8px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #A0958B; line-height: 1.3; }
.pt-neighbour-name { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: 16.3px; color: #3F362E; margin: 5px 0 7px; }
.pt-neighbour-brands { font-size: 12.4px; color: var(--ink-mute); line-height: 1.5; }
.pt-neighbour-note { margin-top: auto; padding-top: 12px; font-size: 11.9px; line-height: 1.45; color: #6B6058; }
.pt-neighbour-note strong { color: #3F362E; font-weight: 700; }
.pt-works-copy-eyebrow { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.pt-works-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28.7px,3.71vw,47.2px); line-height: 1.06; letter-spacing: -.02em; margin: 0 0 22px; }
.pt-works-body { font-size: 17.8px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 16px; }
.pt-works-sub { font-size: 16.2px; line-height: 1.55; color: var(--ink-mute); margin: 0; }

/* ============ RESULTS ============ */
.pt-results { background: var(--lav); padding: clamp(44px,5.5vw,70px) 0; }
.pt-results-eyebrow { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #3A2E78; margin-bottom: clamp(24px,3.4vw,40px); }
.pt-results-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: clamp(28px,4vw,48px); }
.pt-result-num { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 800; font-size: clamp(58.3px,6.5vw,82.1px); line-height: 1; letter-spacing: -.03em; color: #4A37C8; }
.pt-result-text { font-size: 18.4px; line-height: 1.45; color: #2A2450; margin: 16px 0 10px; font-weight: 500; max-width: 30ch; }
.pt-result-org { font-size: 14.6px; font-style: italic; color: #5A4F8A; }

/* ============ FINAL CTA ============ */
.pt-final { background: #15120F; color: var(--paper); padding: clamp(72px,9vw,128px) 0; position: relative; overflow: hidden; }
.pt-final-glow { position: absolute; left: -100px; bottom: -140px; width: 420px; height: 420px; border-radius: 50%; background: radial-gradient(circle,rgba(90,69,222,.22),transparent 70%); pointer-events: none; }
.pt-final-inner { max-width: 900px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); text-align: center; position: relative; }
.pt-final-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(28.7px,3.9vw,49.2px); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 20px; }
.pt-final-sub { font-size: clamp(17.3px,2.1vw,21.6px); line-height: 1.55; color: #C7BEB6; margin: 0 auto 34px; max-width: 48ch; }
.pt-btn-accent { font-size: 16.7px; font-weight: 500; color: var(--paper); background: var(--accent); border: none; padding: 16px 32px; border-radius: 999px; cursor: pointer; transition: background .18s, transform .18s; }
.pt-btn-accent:hover { background: #4A37C8; transform: translateY(-2px); }
.pt-self-guided { font-size: 16.2px; font-weight: 600; color: #C7BEB6; cursor: pointer; background: none; border: none; transition: color .18s; }
.pt-self-guided:hover { color: #B6A9F5; }

/* ============ TESTIMONIALS ============ */
.pt-testimonials { background: var(--paper); padding: clamp(64px,8vw,104px) 0; }
.pt-testi-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(300px,1fr)); gap: 20px; }
.pt-testi-card { background: var(--paper-alt); border: 1px solid var(--border); border-radius: 18px; padding: 26px; display: flex; flex-direction: column; }
.pt-testi-head { display: flex; align-items: center; gap: 13px; margin-bottom: 16px; }
.pt-testi-av { width: 46px; height: 46px; border-radius: 50%; background: var(--lav); color: #3A2E78; display: flex; align-items: center; justify-content: center; font-size: 16.2px; font-weight: 700; flex-shrink: 0; }
.pt-testi-name { font-size: 16.2px; font-weight: 700; line-height: 1.25; margin-bottom: 2px; }
.pt-testi-role, .pt-testi-org { font-size: 14px; color: #7A716A; line-height: 1.35; }
.pt-testi-stars { color: #E8B43B; font-size: 16.2px; letter-spacing: 2px; margin-bottom: 12px; }
.pt-testi-quote { font-size: 16.7px; line-height: 1.55; color: #3A332D; margin: 0 0 18px; flex: 1; }
.pt-testi-more { font-size: 15.1px; font-weight: 600; color: var(--accent); cursor: pointer; }
.pt-testi-more-btn { display: flex; justify-content: center; margin-top: 36px; }
.pt-btn-outline { font-size: 15.7px; font-weight: 600; color: var(--ink); background: transparent; border: 1.5px solid #BFB2A7; padding: 13px 26px; border-radius: 999px; cursor: pointer; transition: background .18s, color .18s, border-color .18s, transform .18s; }
.pt-btn-outline:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); transform: translateY(-1px); }

/* ============ AI SECTION ============ */
.pt-ai { background: #15120F; color: var(--paper); padding: clamp(64px,8vw,108px) 0; position: relative; overflow: hidden; }
.pt-ai-glow { position: absolute; right: -120px; top: -120px; width: 380px; height: 380px; border-radius: 50%; background: radial-gradient(circle,rgba(90,69,222,.28),transparent 70%); pointer-events: none; }
.pt-ai-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px,5vw,72px); align-items: center; position: relative; }
.pt-ai-eyebrow { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: #B6A9F5; margin-bottom: 20px; }
.pt-ai-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(30.8px,4.09vw,51px); line-height: 1.05; letter-spacing: -.02em; margin: 0 0 22px; }
.pt-ai-chip { background: var(--paper); color: #15120F; padding: 0 .16em; border-radius: 10px; box-decoration-break: clone; -webkit-box-decoration-break: clone; }
.pt-ai-body { font-size: 18.4px; line-height: 1.6; color: #C7BEB6; margin: 0 0 16px; max-width: 54ch; }
.pt-ai-body a { color: #B6A9F5; font-weight: 600; text-decoration: none; transition: color .15s ease; }
.pt-ai-body a:hover { color: #D2C9FA; }
.pt-terminal { background: #1E1A16; border: 1px solid #322C26; border-radius: 16px; overflow: hidden; font-family: 'JetBrains Mono','SF Mono',monospace; box-shadow: 0 40px 80px -40px rgba(0,0,0,.6); }
.pt-term-chrome { display: flex; align-items: center; gap: 8px; padding: 13px 16px; border-bottom: 1px solid #322C26; }
.pt-term-dot { width: 10px; height: 10px; border-radius: 50%; background: #3A332D; }
.pt-term-label { margin-left: 8px; font-size: 11.9px; color: #7A716A; }
.pt-term-badge { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; font-size: 10.8px; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: #8FB99C; background: rgba(143,185,156,.12); border: 1px solid rgba(143,185,156,.25); padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.pt-term-sweep { height: 2px; background: #241F1A; overflow: hidden; position: relative; }
.pt-term-sweep-bar { position: absolute; top: 0; left: 0; height: 100%; width: 38%; background: linear-gradient(90deg,transparent,#6F5BE6,transparent); animation: aisweep 2.2s ease-in-out infinite; }
.pt-term-body { padding: 18px; font-size: 13.5px; line-height: 1.85; color: #C7BEB6; }
.pt-term-line { animation: aireveal 9s ease-in-out infinite; }
.pt-term-agent { color: #B6A9F5; }
.pt-term-fn    { color: #8FB99C; }
.pt-term-mute  { color: #7A716A; }
.pt-term-warn  { color: #E8853B; }
.pt-term-yellow{ color: #E8B43B; }
.pt-term-badge-write { background: #2A2450; color: #B6A9F5; padding: 2px 8px; border-radius: 6px; font-size: 11.9px; }
.pt-term-av { flex: none; width: 18px; height: 18px; border-radius: 50%; background: #2A2450; color: #B6A9F5; display: inline-flex; align-items: center; justify-content: center; font-size: 9.7px; font-weight: 700; }
.pt-term-pulse { width: 6px; height: 6px; border-radius: 50%; background: #E8B43B; animation: aipulse 1.4s ease-in-out infinite; display: inline-block; }
.pt-term-cursor { display: inline-block; width: 7px; height: 13px; background: #7A716A; vertical-align: text-bottom; animation: aiblink 1.1s steps(1) infinite; }

/* ============ FAQ ============ */
.pt-faq { background: var(--paper-alt); padding: clamp(64px,8vw,108px) 0; }
.pt-faq-grid { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: clamp(40px,5vw,72px); align-items: start; max-width: 1080px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); }
.pt-faq-eyebrow { font-size: 16px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px; }
.pt-faq-h2 { font-family: 'Bricolage Grotesque', sans-serif; font-weight: 700; font-size: clamp(30.2px,3.7vw,47.5px); line-height: 1.04; letter-spacing: -.02em; margin: 0 0 16px; }
.pt-faq-sub { font-size: 17.3px; line-height: 1.6; color: #6B6259; margin: 0 0 22px; max-width: 32ch; }
.pt-faq-chat { display: inline-flex; align-items: center; gap: 8px; font-size: 16.2px; font-weight: 600; color: var(--accent); text-decoration: none; }
.pt-faq-chat:hover { color: #4A37C8; }
.pt-faq-list { display: flex; flex-direction: column; gap: 10px; }
.pt-faq-item { border-radius: 14px; overflow: hidden; border: 1.5px solid var(--border); background: #fff; transition: border-color .2s, background .2s; }
.pt-faq-item.open { border-color: var(--accent); background: #F4F1FD; }
.pt-faq-btn { display: flex; align-items: center; gap: 16px; padding: 18px 22px; cursor: pointer; background: none; border: none; width: 100%; text-align: left; }
.pt-faq-q { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17.8px; font-weight: 600; flex: 1; letter-spacing: -.01em; transition: color .2s; color: var(--ink); }
.pt-faq-item.open .pt-faq-q { color: var(--accent); }
.pt-faq-caret { flex-shrink: 0; color: var(--accent); transition: transform .28s cubic-bezier(.4,0,.2,1); }
.pt-faq-item.open .pt-faq-caret { transform: rotate(180deg); }
.pt-faq-a { overflow: hidden; max-height: 0; opacity: 0; transition: max-height .32s cubic-bezier(.4,0,.2,1), opacity .25s; font-size: 16.7px; line-height: 1.6; color: var(--ink-soft); padding: 0 22px; }
.pt-faq-item.open .pt-faq-a { max-height: 600px; opacity: 1; padding-bottom: 22px; }

/* ============ FOOTER ============ */
.pt-footer { background: #15120F; color: #C7BEB6; padding: clamp(48px,6vw,80px) 0 0; }
.pt-footer-inner { max-width: 1180px; margin: 0 auto; padding: 0 clamp(20px,5vw,48px); display: grid; grid-template-columns: 1.4fr repeat(3,1fr); gap: clamp(24px,3vw,48px); }
.pt-footer-tagline { font-size: 15.1px; line-height: 1.65; color: #8A8078; margin: 18px 0 16px; max-width: 34ch; }
.pt-footer-col-h { font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: #6B6259; margin-bottom: 16px; }
.pt-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.pt-footer-col ul li a { font-size: 15.1px; color: #8A8078; transition: color .15s; }
.pt-footer-col ul li a:hover { color: #C7BEB6; }
.pt-footer-bottom { max-width: 1180px; margin: 0 auto; padding: 24px clamp(20px,5vw,48px); display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #2A2420; margin-top: clamp(40px,5vw,64px); font-size: 14px; color: #5A514A; }
.pt-footer-bottom a { color: #5A514A; }
.pt-footer-bottom a:hover { color: #8A8078; }
.pt-footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.pt-social-badge { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 8px; background: #2A2420; color: #8A8078; transition: background .15s, color .15s; }
.pt-social-badge:hover { background: #3A3430; color: #C7BEB6; }

/* ============ RESPONSIVE ============ */
@media (max-width: 900px) {
  .pt-nav-links { display: none; }
  .pt-hero-h1 { white-space: normal; }
  .pt-feature-row, .pt-feature-row--alt { grid-template-columns: 1fr; }
  .pt-feature-row--alt .pt-feature-copy { order: unset; }
  .pt-feature-row--alt .pt-feature-mock  { order: unset; }
  .pt-teams-panel { grid-template-columns: 1fr; }
  .pt-ai-inner { grid-template-columns: 1fr; }
  .pt-works-grid { grid-template-columns: 1fr; }
  .pt-faq-grid { grid-template-columns: 1fr; }
  .pt-footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pt-footer-inner { grid-template-columns: 1fr; }
}

/* ===== STUB / COMING SOON ===== */
.pt-stub {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 110px;
  background: var(--paper);
}
.pt-stub-inner { max-width: 620px; text-align: center; }
.pt-stub-pill {
  display: inline-block;
  font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); background: var(--lav);
  border-radius: 999px; padding: 6px 14px; margin-bottom: 22px;
}
.pt-stub-h1 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 700; font-size: clamp(36.7px, 5.4vw, 58.3px); line-height: 1.05; letter-spacing: -.02em;
  color: var(--ink); margin: 0 0 18px;
}
.pt-stub-sub { font-size: 19.4px; line-height: 1.6; color: var(--ink-soft); margin: 0 0 32px; }
.pt-stub-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
