/* ============================================================
   MAXIMINDS · CINEMATIC EDITORIAL FINTECH · LIGHT
   Single-file. White ground, Maximinds logo palette,
   two product bands as equal-weight peers.

   PALETTE RULES (contrast-verified against #FFFFFF):
     indigo  #2D388A  10.27:1  ink accent, eyebrows, headings
     blue    #0F6BA8   5.69:1  links, body-size accents
     teal    #0E7C66   5.13:1  Attesta product accent
     cyan    #00AEEF   2.53:1  FILL ONLY, never text on white
     orange  #FB9C2A   2.12:1  FILL ONLY, button ground; ink #3A2400 on it = 6.91:1
   ============================================================ */

:root{
  /* ---------- ground ---------- */
  --paper:     #FFFFFF;
  --bg:        #FFFFFF;
  --bg-2:      #F7F9FC;
  --bg-3:      #EEF4FB;
  --panel:     #FFFFFF;
  --raised:    #FFFFFF;
  --deep:      #0E1633;
  --deep-2:    #16204A;
  --line:      #E2E7EF;
  --line-2:    #CDD6E4;

  /* ---------- ink ---------- */
  --text:      #141D2B;
  --text-soft: #47536B;
  --text-mute: #5A6473;
  --on-deep:      #EDF2FF;
  --on-deep-soft: #A9B6D8;
  --on-deep-mute: #7C8AB4;
  --on-deep-line: rgba(255,255,255,.12);

  /* ---------- Maximinds logo palette ---------- */
  --indigo:     #2D388A;
  --indigo-dp:  #222B6E;
  --cyan:       #00AEEF;
  --blue:       #137DC5;
  --blue-ink:   #0F6BA8;
  --orange:     #FB9C2A;
  --orange-dp:  #EF8A12;
  --orange-ink: #3A2400;
  --teal:       #0B6B58;
  --teal-dp:    #0B1F3A;
  --positive:   #15803D;
  --negative:   #B3261E;

  /* legacy aliases kept so no selector goes unstyled */
  --gold:      var(--indigo);
  --gold-hi:   var(--indigo);
  --gold-soft: rgba(45,56,138,.08);
  --teal-deep: #0B5F4E;
  --blue-hi:   var(--cyan);

  /* per-product accent, overridden on each .product band */
  --accent:      var(--indigo);
  --accent-soft: rgba(45,56,138,.08);
  --accent-line: rgba(45,56,138,.22);

  /* ---------- gradients ---------- */
  /* decorative only (rules, sparklines): free to run to full cyan */
  --grad-brand:  linear-gradient(135deg,#2D388A 0%,#137DC5 52%,#00AEEF 100%);
  /* gradient-clipped display type on white: end stops at 4.07:1, clears AA large */
  --grad-display:linear-gradient(135deg,#2D388A 0%,#137DC5 55%,#0C86BD 100%);
  --grad-gold:   linear-gradient(135deg,#FDB055 0%,#FB9C2A 48%,#EF8A12 100%);
  --grad-att:    linear-gradient(150deg,#0B1F3A 0%,#0E7C66 100%);
  --grad-teal:   linear-gradient(135deg,#129179 0%,#0B5F4E 100%);
  --grad-blue:   linear-gradient(135deg,#2D388A 0%,#0F6BA8 100%);
  --grad-deep:   linear-gradient(160deg,#16204A 0%,#0E1633 100%);

  /* ---------- elevation: indigo-tinted, never flat black ---------- */
  --sh-1: 0 1px 2px rgba(20,29,43,.05), 0 2px 8px -2px rgba(45,56,138,.08);
  --sh-2: 0 2px 6px rgba(20,29,43,.05), 0 14px 34px -14px rgba(45,56,138,.18);
  --sh-3: 0 4px 12px rgba(20,29,43,.06), 0 34px 68px -28px rgba(45,56,138,.26);
  --sh-4: 0 8px 20px rgba(20,29,43,.07), 0 54px 100px -40px rgba(45,56,138,.34);

  /* ---------- type ---------- */
  --serif: "DM Serif Display", Georgia, serif;
  --sans:  "Sora", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, monospace;

  /* ---------- shape ---------- */
  --r-sm: 10px;
  --r:    16px;
  --r-lg: 24px;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
  --dur: .55s;
  --maxw: 1240px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; -webkit-text-size-adjust:100%; background:var(--paper); }
body{
  font-family:var(--sans);
  background:var(--paper);
  color:var(--text);
  line-height:1.6;
  font-weight:400;
  letter-spacing:.005em;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  text-rendering:optimizeLegibility;
}
section[id], [id]{ scroll-margin-top:104px; }
img,svg{ display:block; max-width:100%; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; cursor:pointer; border:none; background:none; color:inherit; }
ul{ list-style:none; }
em{ font-style:italic; }
.vh{ position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0 0 0 0); white-space:nowrap; }
::selection{ background:rgba(0,174,239,.22); color:var(--text); }
:focus-visible{ outline:2px solid var(--blue-ink); outline-offset:3px; border-radius:4px; }

/* paper tooth: multiply at low opacity reads as fine grain, not dirt */
body::before{
  content:""; position:fixed; inset:0; z-index:1; pointer-events:none;
  opacity:.032; mix-blend-mode:multiply;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.container{ width:100%; max-width:var(--maxw); margin:0 auto; padding:0 28px; }

/* ---------- typography ---------- */
h1,h2,h3,h4{ font-family:var(--serif); font-weight:400; line-height:1.07; letter-spacing:-.012em; color:var(--text); }
.display{ font-size:clamp(2.7rem,6.2vw,5rem); }
h2.section-title{ font-size:clamp(1.9rem,3.8vw,3rem); line-height:1.1; }
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family:var(--mono); font-size:11.5px; font-weight:500;
  letter-spacing:.22em; text-transform:uppercase; color:var(--accent);
}
.eyebrow.teal{ color:var(--teal); }
.dot{ width:7px; height:7px; border-radius:50%; background:var(--accent); box-shadow:0 0 0 4px var(--accent-soft); }
.dot.tealdot{ background:var(--teal); box-shadow:0 0 0 4px rgba(14,124,102,.12); }
.lede{ font-size:clamp(1.02rem,1.5vw,1.18rem); color:var(--text-soft); line-height:1.65; }
/* the signature cinematic move: logo-gradient clipped into the display serif */
.serif-em em{
  background:var(--grad-display); -webkit-background-clip:text; background-clip:text;
  -webkit-text-fill-color:transparent; color:var(--indigo);
}
@supports not ((-webkit-background-clip:text) or (background-clip:text)){
  .serif-em em{ -webkit-text-fill-color:currentColor; color:var(--indigo); }
}

/* ---------- buttons ---------- */
.btn{
  position:relative; display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:14px 26px; border-radius:var(--r-sm); font-size:14.5px; font-weight:600;
  letter-spacing:.01em; transition:transform .35s var(--ease-out), box-shadow .35s var(--ease-out), background .3s, border-color .3s, color .3s;
  white-space:nowrap; overflow:hidden;
}
.btn svg{ width:17px; height:17px; }
.btn--lg{ padding:17px 32px; font-size:15.5px; }
.btn-primary{ background:var(--grad-gold); color:var(--orange-ink); box-shadow:0 8px 26px -10px rgba(239,138,18,.55); }
.btn-primary::after{
  content:""; position:absolute; top:0; left:-120%; width:60%; height:100%;
  background:linear-gradient(100deg,transparent,rgba(255,255,255,.6),transparent);
  transform:skewX(-18deg); transition:none;
}
.btn-primary:hover{ transform:translateY(-2px); box-shadow:0 16px 38px -12px rgba(239,138,18,.66); }
.btn-primary:hover::after{ animation:shimmer 1.05s var(--ease); }
@keyframes shimmer{ from{ left:-120%; } to{ left:150%; } }
.btn-secondary{ background:var(--paper); color:var(--text); border:1px solid var(--line-2); box-shadow:var(--sh-1); }
.btn-secondary:hover{ background:var(--bg-2); border-color:var(--indigo); color:var(--indigo); transform:translateY(-2px); }
.btn-teal{ background:var(--grad-teal); color:#FFFFFF; box-shadow:0 8px 26px -10px rgba(14,124,102,.5); }
.btn-teal:hover{ transform:translateY(-2px); box-shadow:0 16px 38px -12px rgba(14,124,102,.6); }
.btn-ghost{ border:1px solid var(--line-2); color:var(--text); background:var(--paper); }
.btn-ghost:hover{ background:var(--bg-2); border-color:var(--indigo); color:var(--indigo); transform:translateY(-2px); }
.btn-indigo{ background:var(--grad-blue); color:#FFFFFF; box-shadow:0 8px 26px -10px rgba(45,56,138,.55); }
.btn-indigo:hover{ transform:translateY(-2px); box-shadow:0 16px 38px -12px rgba(45,56,138,.65); }
/* on the deep cinematic bands */
.on-deep .btn-secondary,.on-deep .btn-ghost{ background:rgba(255,255,255,.06); border-color:rgba(255,255,255,.24); color:var(--on-deep); box-shadow:none; }
.on-deep .btn-secondary:hover,.on-deep .btn-ghost:hover{ background:rgba(255,255,255,.12); border-color:rgba(255,255,255,.4); color:#FFFFFF; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position:fixed; top:0; left:0; right:0; z-index:100;
  transition:background .4s var(--ease), backdrop-filter .4s, border-color .4s, box-shadow .4s;
  border-bottom:1px solid transparent;
}
.nav.scrolled{
  background:rgba(255,255,255,.82); backdrop-filter:blur(20px) saturate(160%);
  -webkit-backdrop-filter:blur(20px) saturate(160%);
  border-bottom:1px solid var(--line); box-shadow:0 10px 34px -24px rgba(45,56,138,.5);
}
.nav-inner{ display:flex; align-items:center; justify-content:space-between; height:80px; gap:18px; }
.nav-brand{ display:flex; align-items:center; color:var(--text); }
.nav-brand svg{ width:196px; height:47px; }
.nav-brand-footer{ color:#CFD8EA; }
.nav-brand-footer svg{ width:215px; height:53px; }
.nav-links{ display:flex; align-items:center; gap:28px; }
.nav-link{
  font-size:14px; font-weight:500; color:var(--text-soft); letter-spacing:.01em;
  transition:color .25s; position:relative; white-space:nowrap;
}
.nav-link::after{
  content:""; position:absolute; left:0; bottom:-6px; width:0; height:1.5px;
  background:var(--grad-brand); transition:width .3s var(--ease);
}
.nav-link:hover{ color:var(--text); }
.nav-link:hover::after{ width:100%; }
.nav-cta{ display:flex; align-items:center; gap:10px; }
.nav-burger{ display:none; width:42px; height:42px; align-items:center; justify-content:center; border:1px solid var(--line-2); border-radius:var(--r-sm); color:var(--text); background:var(--paper); }
.nav-burger svg{ width:20px; height:20px; }
/* the funnel CTA is the one nav element allowed to shout */
.btn-nav-accent{ padding:11px 18px; font-size:13.5px; background:var(--grad-gold); color:var(--orange-ink); box-shadow:0 6px 18px -8px rgba(239,138,18,.6); }
.btn-nav-accent:hover{ transform:translateY(-2px); box-shadow:0 12px 28px -10px rgba(239,138,18,.7); }

.mobile-menu{
  position:fixed; inset:0 0 0 auto; width:min(86vw,340px); z-index:99;
  background:var(--paper); border-left:1px solid var(--line);
  padding:96px 28px 28px; transform:translateX(100%); transition:transform .42s var(--ease);
  display:flex; flex-direction:column; gap:4px; box-shadow:-30px 0 70px -40px rgba(45,56,138,.4);
  overflow-y:auto;
}
.mobile-menu.open{ transform:translateX(0); }
.mobile-menu a{ padding:14px 6px; font-size:16px; color:var(--text-soft); border-bottom:1px solid var(--line); transition:color .2s; }
.mobile-menu a:hover{ color:var(--indigo); }
.mobile-cta{ display:flex; flex-direction:column; gap:12px; margin-top:22px; }
.mobile-cta .btn{ width:100%; }

/* ============================================================
   HERO: white ground, aurora wash in logo colours
   ============================================================ */
.hero{ position:relative; min-height:100vh; display:flex; align-items:center; padding:120px 0 70px; overflow:hidden; background:var(--paper); }
.hero-bg{ position:absolute; inset:0; z-index:0; }
.hero-bg .blob{ position:absolute; border-radius:50%; filter:blur(90px); }
.blob-1{ width:620px; height:620px; top:-190px; right:-140px; background:radial-gradient(circle,rgba(0,174,239,.30),transparent 70%); }
.blob-2{ width:520px; height:520px; bottom:-200px; left:-160px; background:radial-gradient(circle,rgba(251,156,42,.22),transparent 70%); }
.blob-3{ width:460px; height:460px; top:26%; left:40%; background:radial-gradient(circle,rgba(45,56,138,.18),transparent 70%); }
.hero-grid{
  position:absolute; inset:0; z-index:0; opacity:.7;
  background-image:linear-gradient(var(--line) 1px,transparent 1px),linear-gradient(90deg,var(--line) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 80% 70% at 50% 40%,#000 30%,transparent 80%);
  -webkit-mask-image:radial-gradient(ellipse 80% 70% at 50% 40%,#000 30%,transparent 80%);
}
.hero-inner{ position:relative; z-index:2; display:grid; grid-template-columns:1.05fr .95fr; gap:54px; align-items:center; }
.hero-content{ max-width:620px; }
.hero h1{ margin:22px 0 24px; font-size:clamp(2.8rem,6vw,5.1rem); }
.hero-sub{ font-size:clamp(1.05rem,1.6vw,1.22rem); color:var(--text-soft); max-width:560px; line-height:1.62; }
.hero-sub strong{ color:var(--text); font-weight:600; }
.hero-actions{ display:flex; gap:14px; margin:34px 0 38px; flex-wrap:wrap; }
.hero-meta{ display:flex; flex-direction:column; gap:14px; padding-top:28px; border-top:1px solid var(--line); }
.hero-meta-text{ font-size:13.5px; color:var(--text-mute); }
.hero-meta-text strong{ color:var(--text-soft); font-weight:600; }
.hero-cities{ display:flex; flex-wrap:wrap; gap:8px; }
.hero-cities span{
  font-family:var(--mono); font-size:11px; letter-spacing:.08em; color:var(--text-mute);
  padding:6px 12px; border:1px solid var(--line); border-radius:100px; background:var(--paper);
}

/* hero visual: floating credential stack */
.hero-visual{ position:relative; height:480px; }
.hero-orb{
  position:absolute; inset:0; margin:auto; width:360px; height:360px; border-radius:50%;
  background:conic-gradient(from 180deg,rgba(0,174,239,.20),rgba(251,156,42,.18),rgba(45,56,138,.18),rgba(0,174,239,.20));
  filter:blur(26px); opacity:.85; animation:spin 26s linear infinite;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.hcard{
  position:absolute; width:300px; padding:18px 20px; border-radius:var(--r);
  background:rgba(255,255,255,.92);
  border:1px solid var(--line); backdrop-filter:blur(10px); -webkit-backdrop-filter:blur(10px);
  box-shadow:var(--sh-3);
}
.hcard-1{ top:18px; left:0; z-index:3; animation:float1 7s ease-in-out infinite; }
.hcard-2{ top:175px; right:-6px; z-index:4; animation:float2 8s ease-in-out infinite; }
.hcard-3{ bottom:6px; left:34px; z-index:5; animation:float1 9s ease-in-out infinite; }
@keyframes float1{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-14px); } }
@keyframes float2{ 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(12px); } }
.hcard-label{ font-family:var(--mono); font-size:10px; letter-spacing:.16em; text-transform:uppercase; color:var(--text-mute); }
.hcard-value{ font-family:var(--serif); font-size:22px; margin:4px 0 10px; }
.hcard-row{ display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:7px; }
.pill{ display:inline-flex; align-items:center; gap:7px; font-size:11px; font-weight:600; padding:5px 11px; border-radius:100px; }
.pill.green{ background:rgba(14,124,102,.10); color:var(--teal); }
.pill.gold{ background:rgba(45,56,138,.08); color:var(--indigo); }
.pill .d{ width:6px; height:6px; border-radius:50%; background:currentColor; }
.hcard small{ font-size:11px; color:var(--text-mute); }
.hcard .mono{ font-family:var(--mono); font-size:11px; color:var(--text-soft); }
.hcard-spark{ height:34px; margin:8px 0; border-radius:6px;
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 34' preserveAspectRatio='none'%3E%3Cpath d='M0 26 L14 20 L26 24 L40 12 L54 16 L68 6 L82 10 L100 2' fill='none' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E") no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 34' preserveAspectRatio='none'%3E%3Cpath d='M0 26 L14 20 L26 24 L40 12 L54 16 L68 6 L82 10 L100 2' fill='none' stroke='black' stroke-width='2.4'/%3E%3C/svg%3E") no-repeat;
  background:var(--grad-brand); }

/* ============================================================
   SECTION SCAFFOLD
   ============================================================ */
.section{ position:relative; z-index:2; padding:104px 0; background:var(--paper); }
.section--tight{ padding:78px 0; }
.section--alt{ background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section--tint{ background:var(--bg-3); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.section-head{ max-width:720px; margin:0 auto 56px; text-align:center; }
.section-head h2{ margin:18px 0 16px; }
.section-head .lede{ margin:0 auto; }
.divider{ height:1px; background:linear-gradient(90deg,transparent,var(--line-2),transparent); }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trustbar{ position:relative; z-index:2; border-top:1px solid var(--line); border-bottom:1px solid var(--line); background:var(--bg-2); }
.trust-grid{ display:grid; grid-template-columns:repeat(5,1fr); }
.trust-cell{ padding:40px 22px; text-align:center; border-right:1px solid var(--line); }
.trust-cell:last-child{ border-right:none; }
.trust-val{ font-family:var(--serif); font-size:clamp(1.8rem,3vw,2.6rem); color:var(--indigo); line-height:1; }
.trust-lbl{ margin-top:10px; font-size:12.5px; color:var(--text-mute); letter-spacing:.02em; }

/* ============================================================
   PROBLEM: four sides
   ============================================================ */
.sides{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.side{
  padding:30px 26px; border-radius:var(--r); background:var(--panel);
  border:1px solid var(--line); box-shadow:var(--sh-1);
  transition:transform .4s var(--ease-out), border-color .4s, box-shadow .4s;
}
.side:hover{ transform:translateY(-6px); border-color:var(--line-2); box-shadow:var(--sh-3); }
.side-ic{ width:46px; height:46px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:var(--accent-soft); color:var(--accent); margin-bottom:18px; }
.side-ic svg{ width:23px; height:23px; }
.side-tag{ font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute); }
.side h3{ font-size:1.32rem; margin:8px 0 12px; }
.side p{ font-size:13.7px; color:var(--text-soft); line-height:1.6; }
.side-fix{ margin-top:18px; padding-top:16px; border-top:1px solid var(--line); }
.side-fix strong{ display:block; font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--teal); margin-bottom:5px; }
.side-fix span{ font-size:13px; color:var(--text-soft); }

/* ============================================================
   PRODUCT BANDS: Attesta and PracticePilot as equal-weight peers.
   Identical scaffold; only --accent and the artwork differ.
   ============================================================ */
.product{
  position:relative; z-index:2; padding:108px 0; overflow:hidden;
  background:var(--bg-3);
  border-top:1px solid var(--line); border-bottom:1px solid var(--line);
}
.product::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 55% 75% at 82% 18%,var(--accent-soft),transparent 62%),
    radial-gradient(ellipse 45% 60% at 8% 88%,var(--accent-soft),transparent 62%);
}
.product > .container{ position:relative; z-index:1; }
.product--attesta{ --accent:#0B6B58; --accent-soft:rgba(14,124,102,.14); --accent-line:rgba(14,124,102,.26); background:var(--bg-3); }
.product--pp{ --accent:#2D388A; --accent-soft:rgba(45,56,138,.12); --accent-line:rgba(45,56,138,.24); background:var(--paper); }
/* each product's display accent is its own colour, not the company gradient */
.product--attesta .serif-em em{ background:linear-gradient(135deg,#129179 0%,#0B5F4E 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }
.product--pp .serif-em em{ background:linear-gradient(135deg,#2D388A 0%,#0F6BA8 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* full-width row beneath the product grid: steps, pricing, deep links */
.pp-below{ margin-top:58px; padding-top:44px; border-top:1px solid var(--line); }
.pp-below .pp-steps{ grid-template-columns:repeat(3,1fr); gap:26px; margin:0 0 30px; }
.pp-below .pp-steps li{ flex-direction:column; align-items:flex-start; gap:10px; font-size:15px; color:var(--text); }
.pp-below .pp-steps li::before{ font-size:13px; padding-bottom:10px; border-bottom:2px solid var(--accent-line); width:100%; }
.pp-below .pp-price{ margin-top:0; }
.pp-meta-row{ display:grid; grid-template-columns:1fr 1fr; gap:12px 40px; margin-top:18px; align-items:start; }
.product-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:54px; align-items:center; }
/* grid items default to min-width:auto, so a fixed-width child (the pp card)
   inflates the track and overflows the container. Opt every main grid out. */
.product-grid > *,.attesta-grid > *,.split > *,.panel-grid > *,.about-grid > *,.hero-inner > *,.pp-band-inner > *{ min-width:0; }
.product h2{ font-size:clamp(2.2rem,4.4vw,3.6rem); margin:20px 0 22px; }
.product .lede{ margin-bottom:18px; max-width:560px; }
.product-cta{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; align-items:center; }
.product-by{ display:inline-flex; align-items:center; gap:9px; margin-top:26px; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-mute); }
.product-by svg{ width:16px; height:16px; color:var(--accent); }
.product-fine{ margin-top:12px; font-size:12.5px; color:var(--text-mute); }
.product-link{ font-size:14.5px; font-weight:600; color:var(--blue-ink); border-bottom:1px solid rgba(15,107,168,.35); transition:border-color .25s,color .25s; }
.product-link:hover{ color:var(--indigo); border-bottom-color:var(--indigo); }

/* legacy Attesta selectors kept so nothing is left unstyled */
.attesta{ position:relative; z-index:2; padding:108px 0; background:var(--bg-3); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.attesta-grid{ display:grid; grid-template-columns:1.1fr .9fr; gap:54px; align-items:center; }
.attesta h2{ font-size:clamp(2.2rem,4.4vw,3.6rem); margin:20px 0 22px; }
.attesta .lede{ margin-bottom:18px; max-width:560px; }
.attesta-cta{ display:flex; gap:14px; margin-top:30px; flex-wrap:wrap; }
.attesta-by{ display:inline-flex; align-items:center; gap:9px; margin-top:26px; font-family:var(--mono); font-size:11px; letter-spacing:.1em; text-transform:uppercase; color:var(--text-mute); }
.attesta-by svg{ width:16px; height:16px; color:var(--teal); }

.seal-wrap{ position:relative; display:flex; align-items:center; justify-content:center; min-height:340px; }
.seal-ring{ position:absolute; width:330px; height:330px; border-radius:50%; border:1px solid var(--accent-line); }
.seal-ring::after{ content:""; position:absolute; inset:-28px; border-radius:50%; border:1px dashed var(--accent-line); animation:spin 38s linear infinite; }
.seal{ width:200px; height:200px; filter:drop-shadow(0 26px 54px rgba(14,124,102,.36)); animation:float1 6s ease-in-out infinite; }

/* PracticePilot artwork: a balanced-ledger card, PHI-free by construction */
.pp-art{ position:relative; display:flex; align-items:center; justify-content:center; min-height:340px; }
.pp-card{
  width:100%; max-width:min(400px,100%); border-radius:var(--r-lg); overflow:hidden;
  background:var(--paper); border:1px solid var(--line); box-shadow:var(--sh-4);
  animation:float1 8s ease-in-out infinite;
}
.pp-card-head{ display:flex; align-items:center; justify-content:space-between; gap:12px; padding:16px 20px; background:var(--grad-blue); color:#FFFFFF; }
.pp-card-head strong{ font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase; font-weight:500; }
.pp-card-head span{ font-family:var(--mono); font-size:10.5px; color:rgba(255,255,255,.82); }
.pp-rows{ padding:8px 0; }
.pp-row{ display:flex; align-items:center; justify-content:space-between; gap:14px; padding:13px 20px; border-bottom:1px solid var(--line); }
.pp-row:last-child{ border-bottom:none; }
.pp-row-l{ font-size:13px; color:var(--text-soft); }
.pp-row-v{ font-family:var(--mono); font-size:13px; font-variant-numeric:tabular-nums; color:var(--text); }
.pp-row-v.warn{ color:var(--negative); }
.pp-row-v.ok{ color:var(--positive); }
.pp-foot{ padding:14px 20px; background:var(--bg-2); border-top:1px solid var(--line); display:flex; align-items:center; gap:9px; }
.pp-foot svg{ width:15px; height:15px; color:var(--positive); flex-shrink:0; }
.pp-foot span{ font-size:11.5px; color:var(--text-mute); }
.pp-leaks{ display:grid; gap:10px; margin:26px 0 4px; }
.pp-leak{ display:flex; gap:12px; align-items:flex-start; font-size:14px; color:var(--text-soft); }
.pp-leak svg{ width:17px; height:17px; flex-shrink:0; margin-top:3px; color:var(--accent); }
.pp-steps{ counter-reset:pp; display:grid; gap:12px; margin:26px 0 0; padding:0; list-style:none; }
.pp-steps li{ counter-increment:pp; display:flex; gap:13px; align-items:baseline; font-size:14px; color:var(--text-soft); }
.pp-steps li::before{
  content:counter(pp,decimal-leading-zero); font-family:var(--mono); font-size:11px; font-weight:500;
  color:var(--accent); flex-shrink:0; letter-spacing:.08em;
}
.pp-price{
  margin-top:26px; padding:18px 20px; border-radius:var(--r); background:var(--paper);
  border:1px solid var(--line); border-left:3px solid var(--accent); box-shadow:var(--sh-1);
  font-size:14px; color:var(--text-soft); font-variant-numeric:tabular-nums;
}
.pp-price strong{ color:var(--text); font-weight:600; }
.pp-learn{ display:flex; flex-wrap:wrap; gap:20px; margin-top:22px; }

/* repeat conversion band */
.pp-band{ position:relative; z-index:2; padding:64px 0; background:var(--bg-2); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.pp-band-inner{ display:flex; align-items:center; justify-content:space-between; gap:30px; flex-wrap:wrap; }
.pp-band h3{ font-size:clamp(1.4rem,2.4vw,1.9rem); margin-bottom:8px; }
.pp-band p{ font-size:13.5px; color:var(--text-mute); }

/* ============================================================
   PILLARS
   ============================================================ */
.pillars{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.pillar{
  padding:34px 30px; border-radius:var(--r-lg); background:var(--panel); border:1px solid var(--line);
  box-shadow:var(--sh-1);
  transition:transform .4s var(--ease-out), border-color .4s, box-shadow .4s; position:relative; overflow:hidden;
}
.pillar::before{ content:""; position:absolute; top:0; left:0; right:0; height:2px; background:var(--grad-brand); transform:scaleX(0); transform-origin:left; transition:transform .45s var(--ease); }
.pillar:hover{ transform:translateY(-8px); border-color:var(--line-2); box-shadow:var(--sh-3); }
.pillar:hover::before{ transform:scaleX(1); }
.pillar-ic{ width:56px; height:56px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--grad-att); margin-bottom:22px; color:#fff; box-shadow:0 10px 26px -12px rgba(14,124,102,.6); }
.pillar-ic svg{ width:27px; height:27px; }
.pillar h3{ font-size:1.5rem; margin-bottom:12px; }
.pillar p{ font-size:14.5px; color:var(--text-soft); }
.pillar ul{ margin-top:18px; display:flex; flex-direction:column; gap:10px; }
.pillar li{ display:flex; gap:10px; font-size:13.5px; color:var(--text-soft); }
.pillar li svg{ width:18px; height:18px; flex-shrink:0; color:var(--teal); margin-top:1px; }

/* ============================================================
   RENTAL PASSPORT showcase
   ============================================================ */
.split{ display:grid; grid-template-columns:1fr 1fr; gap:54px; align-items:center; }
.split.flip .split-visual{ order:-1; }
.split-copy h2{ font-size:clamp(1.8rem,3.3vw,2.7rem); margin:16px 0 18px; }
.split-list{ display:flex; flex-direction:column; gap:18px; margin:28px 0; }
.split-li{ display:flex; gap:14px; }
.split-li-ic{ width:38px; height:38px; flex-shrink:0; border-radius:10px; display:flex; align-items:center; justify-content:center; background:rgba(14,124,102,.10); color:var(--teal); }
.split-li-ic svg{ width:19px; height:19px; }
.split-li strong{ display:block; font-size:14.5px; color:var(--text); margin-bottom:3px; }
.split-li span{ font-size:13.5px; color:var(--text-mute); line-height:1.55; }
.badge-trust{ display:inline-flex; align-items:center; gap:8px; font-family:var(--mono); font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--teal); padding:9px 14px; border:1px solid rgba(14,124,102,.3); border-radius:100px; background:rgba(14,124,102,.05); }
.badge-trust svg{ width:14px; height:14px; }
.split-actions{ display:flex; align-items:center; gap:16px; flex-wrap:wrap; margin-top:26px; }

/* credential card stays a dark object, as a physical credential would be */
.credential{
  border-radius:var(--r-lg); overflow:hidden; border:1px solid rgba(20,29,43,.12);
  background:var(--grad-deep);
  box-shadow:var(--sh-4); max-width:430px; margin:0 auto;
}
.cred-stripe{ background:var(--grad-att); padding:16px 22px; display:flex; align-items:center; justify-content:space-between; }
.cred-stripe-l{ font-size:12px; letter-spacing:.06em; color:rgba(255,255,255,.9); }
.cred-stripe-n{ font-family:var(--mono); font-size:11px; color:rgba(255,255,255,.72); }
.cred-body{ padding:24px 22px; display:flex; gap:18px; align-items:center; }
.cred-photo{ width:64px; height:64px; border-radius:14px; background:var(--grad-gold); display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:24px; color:var(--orange-ink); flex-shrink:0; }
.cred-detail h3{ font-size:1.4rem; color:var(--on-deep); }
.cred-meta{ display:flex; gap:22px; margin:8px 0 10px; }
.cred-meta span{ display:block; font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-deep-mute); }
.cred-meta b{ font-size:13px; font-weight:600; color:var(--on-deep-soft); }
.cred-verified{ display:inline-flex; align-items:center; gap:7px; font-size:12px; font-weight:600; color:#5FE3CC; background:rgba(95,227,204,.12); padding:5px 11px; border-radius:100px; }
.cred-verified svg{ width:14px; height:14px; }
.cred-foot{ padding:20px 22px; border-top:1px solid var(--on-deep-line); }
.cred-income{ display:flex; align-items:center; justify-content:space-between; gap:16px; }
.cred-income-lbl{ font-size:10px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-deep-mute); }
.cred-income-band{ font-family:var(--serif); font-size:1.5rem; color:#FFC978; margin:3px 0; }
.cred-income-note{ font-size:11px; color:var(--on-deep-mute); }
.cred-ring{ width:62px; height:62px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-weight:500; font-size:19px; color:var(--on-deep);
  background:conic-gradient(#5FE3CC 83%,rgba(255,255,255,.12) 0); }
.cred-ring b{ width:48px; height:48px; border-radius:50%; background:var(--deep); display:flex; align-items:center; justify-content:center; font-weight:500; }
.cred-rows{ margin-top:18px; display:flex; flex-direction:column; gap:11px; }
.cred-row{ display:flex; align-items:center; gap:10px; font-size:12.5px; }
.cred-row svg{ width:16px; height:16px; flex-shrink:0; }
.cred-row .l{ flex:1; color:var(--on-deep-soft); }
.cred-row .s{ font-family:var(--mono); font-size:11px; }
.cred-row .s.ok{ color:#5FE3CC; }
.cred-row .s.soon{ color:#FFC978; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps{ position:relative; display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.steps::before{ content:""; position:absolute; top:38px; left:14%; right:14%; height:1px; background:linear-gradient(90deg,transparent,var(--line-2) 14%,var(--line-2) 86%,transparent); }
.step{ position:relative; text-align:center; padding:0 14px; }
.step-num{
  width:76px; height:76px; margin:0 auto 22px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; position:relative; z-index:2;
  font-family:var(--serif); font-size:1.9rem; color:var(--indigo);
  background:var(--paper); border:1px solid var(--line-2);
  box-shadow:0 0 0 8px var(--bg-2), var(--sh-1);
}
.step h3{ font-size:1.4rem; margin-bottom:10px; }
.step p{ font-size:14px; color:var(--text-soft); max-width:320px; margin:0 auto; }

/* ============================================================
   PERSPECTIVE TABS
   ============================================================ */
.tabs{ display:flex; justify-content:center; flex-wrap:wrap; gap:10px; margin-bottom:42px; }
.tab{
  display:inline-flex; align-items:center; gap:9px; padding:12px 22px; border-radius:100px;
  font-size:13.5px; font-weight:500; color:var(--text-soft); border:1px solid var(--line); background:var(--paper);
  transition:all .3s var(--ease);
}
.tab svg{ width:17px; height:17px; }
.tab:hover{ border-color:var(--line-2); color:var(--text); }
.tab.active{ color:#FFFFFF; background:var(--grad-blue); border-color:transparent; box-shadow:0 8px 22px -10px rgba(45,56,138,.6); }
.panel{ display:none; }
.panel.active{ display:block; animation:fadeUp .5s var(--ease-out); }
.panel-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.panel-info h3{ font-size:1.7rem; margin-bottom:12px; }
.panel-tagline{ font-size:15px; color:var(--text-soft); margin-bottom:24px; }
.panel-feats{ display:flex; flex-direction:column; gap:16px; }
.feat{ display:flex; gap:13px; }
.feat-ic{ width:36px; height:36px; flex-shrink:0; border-radius:9px; display:flex; align-items:center; justify-content:center; background:rgba(45,56,138,.08); color:var(--indigo); }
.feat-ic svg{ width:18px; height:18px; }
.feat strong{ display:block; font-size:14px; color:var(--text); }
.feat span{ font-size:13px; color:var(--text-mute); }

/* mock dashboard */
.mock{ border-radius:var(--r-lg); border:1px solid var(--line); background:var(--paper); overflow:hidden; box-shadow:var(--sh-3); }
.mock-head{ display:flex; align-items:center; justify-content:space-between; padding:16px 20px; border-bottom:1px solid var(--line); background:var(--bg-2); }
.mock-title{ font-family:var(--mono); font-size:12px; color:var(--text-soft); letter-spacing:.02em; }
.mock-dots{ display:flex; gap:6px; }
.mock-dots span{ width:9px; height:9px; border-radius:50%; background:var(--line-2); }
.mock-stats{ display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:var(--line); }
.mock-stat{ background:var(--paper); padding:18px 16px; }
.mock-stat-l{ font-size:10.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--text-mute); }
.mock-stat-v{ font-family:var(--serif); font-size:1.7rem; margin:4px 0 2px; }
.mock-stat-d{ font-size:11px; color:var(--teal); }
.mock-row{ display:flex; align-items:center; gap:12px; padding:14px 20px; border-top:1px solid var(--line); }
.mock-av{ width:36px; height:36px; border-radius:9px; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:var(--mono); font-size:12px; font-weight:500; background:var(--grad-att); color:#fff; }
.mock-av.gold{ background:var(--grad-gold); color:var(--orange-ink); }
.mock-av.teal{ background:var(--grad-teal); color:#fff; }
.mock-av.mute{ background:var(--bg-3); color:var(--text-mute); }
.mock-row-name{ font-size:13px; font-weight:500; }
.mock-row-sub{ font-size:11.5px; color:var(--text-mute); }
.mock-row-body{ flex:1; }
.mock-meta{ font-family:var(--mono); font-size:12px; color:var(--text-soft); }
.mock-st{ font-size:11px; font-weight:600; padding:4px 10px; border-radius:100px; }
.mock-st.ok{ background:rgba(14,124,102,.10); color:var(--teal); }
.mock-st.warn{ background:rgba(45,56,138,.08); color:var(--indigo); }
.mock-st.info{ background:var(--bg-3); color:var(--text-mute); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.quote{ padding:32px 28px; border-radius:var(--r-lg); background:var(--panel); border:1px solid var(--line); box-shadow:var(--sh-1); display:flex; flex-direction:column; transition:transform .4s var(--ease-out), border-color .4s, box-shadow .4s; }
.quote:hover{ transform:translateY(-6px); border-color:var(--line-2); box-shadow:var(--sh-3); }
.quote-mark{ font-family:var(--serif); font-size:3.4rem; line-height:.5; color:var(--cyan); height:30px; }
.quote p{ font-size:15.5px; color:var(--text); line-height:1.6; margin:14px 0 24px; flex:1; }
.quote-by{ display:flex; align-items:center; gap:13px; padding-top:20px; border-top:1px solid var(--line); }
.quote-av{ width:46px; height:46px; border-radius:50%; flex-shrink:0; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:18px; color:#FFFFFF; background:var(--grad-blue); }
.quote-name{ font-size:14px; font-weight:600; color:var(--text); }
.quote-role{ font-size:12px; color:var(--text-mute); }

/* ============================================================
   SECURITY
   ============================================================ */
.sec-badges{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:44px; }
.sec-badge{ padding:24px 20px; border-radius:var(--r); background:var(--panel); border:1px solid var(--line); box-shadow:var(--sh-1); text-align:center; }
.sec-badge-ic{ width:46px; height:46px; margin:0 auto 14px; border-radius:12px; display:flex; align-items:center; justify-content:center; background:rgba(14,124,102,.10); color:var(--teal); }
.sec-badge-ic svg{ width:22px; height:22px; }
.sec-badge strong{ display:block; font-size:14.5px; color:var(--text); }
.sec-badge span{ font-family:var(--mono); font-size:9.5px; letter-spacing:.12em; color:var(--text-mute); }
.sec-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.sec-col{ padding:26px; border-radius:var(--r); border:1px solid var(--line); background:var(--paper); box-shadow:var(--sh-1); }
.sec-col h4{ font-family:var(--sans); font-weight:600; font-size:15px; display:flex; align-items:center; gap:10px; margin-bottom:12px; color:var(--text); }
.sec-col h4 svg{ width:18px; height:18px; color:var(--indigo); }
.sec-col p{ font-size:13.5px; color:var(--text-soft); line-height:1.62; }

/* ============================================================
   ABOUT / FOUNDER
   ============================================================ */
.about-grid{ display:grid; grid-template-columns:1.2fr .8fr; gap:54px; align-items:center; }
.about-text h2{ font-size:clamp(1.8rem,3.3vw,2.7rem); margin:16px 0 18px; }
.about-text p{ font-size:15px; color:var(--text-soft); margin-bottom:14px; }
.about-text p strong{ color:var(--indigo); font-weight:600; }
.about-stats{ display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:30px; }
.about-stat{ padding:18px 20px; border-radius:var(--r); border:1px solid var(--line); background:var(--paper); box-shadow:var(--sh-1); }
.about-stat strong{ font-family:var(--serif); font-size:1.8rem; color:var(--indigo); display:block; }
.about-stat span{ font-size:12.5px; color:var(--text-mute); }
.founder{ padding:38px 32px; border-radius:var(--r-lg); background:var(--paper); border:1px solid var(--line); box-shadow:var(--sh-3); text-align:center; }
.founder-av{ position:relative; width:150px; height:150px; margin:0 auto 20px; border-radius:50%; overflow:hidden; display:flex; align-items:center; justify-content:center; font-family:var(--serif); font-size:52px; line-height:1; color:#FFFFFF; background:var(--grad-blue); box-shadow:0 16px 40px -18px rgba(45,56,138,.55); border:2px solid var(--paper); outline:1px solid var(--line-2); }
.founder-av picture{ display:block; width:100%; height:100%; }
/* object-position keeps the face on the circle's optical centre when a
   full-length portrait is used in place of the pre-cropped square asset. */
.founder-av img{ width:100%; height:100%; object-fit:cover; object-position:50% 20%; display:block; background:var(--grad-blue); }
.founder-role{ display:inline-flex; align-items:center; gap:7px; font-family:var(--mono); font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--indigo); margin-bottom:8px; }
.founder-role svg{ width:14px; height:14px; }
.founder h3{ font-size:1.6rem; margin-bottom:10px; }
.founder p{ font-size:14px; color:var(--text-soft); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-wrap{ max-width:780px; margin:0 auto; }
.faq-item{ border:1px solid var(--line); border-radius:var(--r); margin-bottom:12px; overflow:hidden; background:var(--paper); box-shadow:var(--sh-1); transition:border-color .3s, box-shadow .3s; }
.faq-item.open{ border-color:var(--line-2); box-shadow:var(--sh-2); }
.faq-q{ width:100%; display:flex; align-items:center; justify-content:space-between; gap:16px; padding:22px 24px; text-align:left; font-size:15.5px; font-weight:600; color:var(--text); }
.faq-q svg{ width:20px; height:20px; flex-shrink:0; color:var(--indigo); transition:transform .35s var(--ease); }
.faq-item.open .faq-q svg{ transform:rotate(45deg); }
.faq-a{ max-height:0; overflow:hidden; transition:max-height .42s var(--ease); }
.faq-item.open .faq-a{ max-height:600px; }
.faq-a-inner{ padding:0 24px 24px; font-size:14px; color:var(--text-soft); line-height:1.68; }

/* ============================================================
   FINAL CTA: the one cinematic cut to deep navy
   ============================================================ */
.final{ position:relative; z-index:2; padding:120px 0; text-align:center; overflow:hidden;
  background:var(--deep); color:var(--on-deep);
  border-top:1px solid var(--deep); }
.final::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 70% 120% at 50% 0%,rgba(0,174,239,.28),transparent 62%),
    radial-gradient(ellipse 60% 100% at 50% 100%,rgba(251,156,42,.16),transparent 62%),
    radial-gradient(ellipse 50% 80% at 15% 40%,rgba(45,56,138,.5),transparent 65%);
}
.final > .container{ position:relative; z-index:1; }
.final h2{ font-size:clamp(2.2rem,4.6vw,3.6rem); max-width:780px; margin:0 auto 18px; color:#FFFFFF; }
.final .lede{ max-width:560px; margin:0 auto 34px; color:var(--on-deep-soft); }
.final-actions{ display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.final .serif-em em{ background:linear-gradient(135deg,#7FD8FF 0%,#00AEEF 60%,#5FE3CC 100%); -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent; }

/* ============================================================
   FOOTER: continuous with the final cut
   ============================================================ */
.footer{ position:relative; z-index:2; background:var(--deep); color:var(--on-deep-soft); border-top:1px solid var(--on-deep-line); padding:72px 0 36px; }
.footer-grid{ display:grid; grid-template-columns:1.6fr 1fr 1fr 1.4fr; gap:42px; padding-bottom:44px; border-bottom:1px solid var(--on-deep-line); }
.footer-brand p{ font-size:13.5px; color:var(--on-deep-mute); max-width:300px; margin:18px 0; line-height:1.6; }
.footer-contact{ display:flex; flex-direction:column; gap:9px; margin-bottom:18px; }
.footer-contact a{ display:inline-flex; align-items:center; gap:9px; font-size:13.5px; color:var(--on-deep-soft); transition:color .2s; }
.footer-contact a:hover{ color:var(--cyan); }
.footer-contact svg{ width:16px; height:16px; color:var(--cyan); }
.footer-social{ display:flex; gap:10px; }
.footer-social a{ width:38px; height:38px; border-radius:10px; border:1px solid var(--on-deep-line); display:flex; align-items:center; justify-content:center; color:var(--on-deep-soft); transition:all .25s; }
.footer-social a:hover{ border-color:var(--cyan); color:var(--cyan); background:rgba(0,174,239,.1); }
.footer-social svg{ width:18px; height:18px; }
.footer-col h5{ font-family:var(--sans); font-weight:600; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-deep-mute); margin-bottom:18px; }
.footer-col li{ margin-bottom:11px; }
.footer-col a{ font-size:13.5px; color:var(--on-deep-soft); transition:color .2s; }
.footer-col a:hover{ color:var(--cyan); }
.footer-prod{ display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.footer-prod-tag{ font-family:var(--mono); font-size:9.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-deep-mute); }
.footer-news h5{ font-family:var(--sans); font-weight:600; font-size:12px; letter-spacing:.1em; text-transform:uppercase; color:var(--on-deep-mute); margin-bottom:14px; }
.footer-news p{ font-size:13px; color:var(--on-deep-mute); margin-bottom:14px; }
.news-form{ display:flex; gap:8px; }
.news-form input{ flex:1; min-width:0; padding:12px 14px; border-radius:var(--r-sm); background:rgba(255,255,255,.06); border:1px solid var(--on-deep-line); color:var(--on-deep); font-family:inherit; font-size:13.5px; }
.news-form input::placeholder{ color:var(--on-deep-mute); }
.news-form input:focus{ outline:none; border-color:var(--cyan); background:rgba(255,255,255,.1); }
.news-form button{ padding:12px 18px; border-radius:var(--r-sm); background:var(--grad-gold); color:var(--orange-ink); font-weight:600; font-size:13.5px; }
.news-msg{ margin-top:10px; font-size:12.5px; }
.news-msg.ok{ color:#5FE3CC; }
.news-msg.err{ color:#FFA9A0; }
.footer-disclaimer{ font-size:12px; color:var(--on-deep-mute); line-height:1.6; padding:24px 0; border-bottom:1px solid var(--on-deep-line); }
.footer-bottom{ display:flex; align-items:center; justify-content:space-between; gap:18px; flex-wrap:wrap; padding-top:24px; }
.footer-bottom > div:first-child{ font-size:12.5px; color:var(--on-deep-mute); }
.footer-bottom-links{ display:flex; gap:20px; flex-wrap:wrap; }
.footer-bottom-links a{ font-size:12.5px; color:var(--on-deep-mute); transition:color .2s; }
.footer-bottom-links a:hover{ color:var(--on-deep-soft); }

/* cookie bar */
.cookie{ position:fixed; bottom:18px; left:18px; right:18px; max-width:560px; margin:0 auto; z-index:120;
  display:flex; align-items:center; gap:14px; padding:14px 18px; border-radius:var(--r);
  background:rgba(255,255,255,.94); backdrop-filter:blur(16px); -webkit-backdrop-filter:blur(16px); border:1px solid var(--line-2);
  box-shadow:var(--sh-4); transform:translateY(160%); transition:transform .5s var(--ease); }
.cookie.show{ transform:translateY(0); }
.cookie span{ flex:1; font-size:12.5px; color:var(--text-soft); }
.cookie a{ color:var(--blue-ink); text-decoration:underline; }
.cookie button{ padding:9px 16px; border-radius:var(--r-sm); font-size:12.5px; font-weight:600; }
.cookie .accept{ background:var(--grad-gold); color:var(--orange-ink); }
.cookie .close{ color:var(--text-mute); font-size:18px; padding:4px; }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal{ opacity:0; transform:translateY(28px); transition:opacity .7s var(--ease-out), transform .7s var(--ease-out); }
.reveal.in{ opacity:1; transform:none; }
@keyframes fadeUp{ from{ opacity:0; transform:translateY(20px); } to{ opacity:1; transform:none; } }
.load{ opacity:0; transform:translateY(24px); animation:fadeUp .9s var(--ease-out) forwards; }

@media (prefers-reduced-motion:reduce){
  *{ animation:none !important; transition:none !important; }
  .reveal{ opacity:1; transform:none; }
  .load{ opacity:1; transform:none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:1180px){
  .nav-links{ gap:20px; }
  .nav-link{ font-size:13.5px; }
}
@media (max-width:1080px){
  .hero-inner{ grid-template-columns:1fr; gap:40px; }
  .hero-visual{ height:420px; max-width:420px; margin:0 auto; width:100%; }
  .attesta-grid,.product-grid,.split,.split.flip,.panel-grid,.about-grid{ grid-template-columns:1fr; gap:38px; }
  .split.flip .split-visual{ order:0; }
  .sides{ grid-template-columns:repeat(2,1fr); }
  .pillars,.quotes,.sec-cols{ grid-template-columns:1fr; }
  .sec-badges{ grid-template-columns:repeat(2,1fr); }
  .pp-art{ min-height:0; }
}
@media (max-width:880px){
  .nav-links{ display:none; }
  .nav-cta .btn-secondary{ display:none; }
  .nav-burger{ display:flex; }
  .trust-grid{ grid-template-columns:repeat(2,1fr); }
  .trust-cell:nth-child(2){ border-right:none; }
  .trust-cell:nth-child(5){ grid-column:1 / -1; border-right:none; border-top:1px solid var(--line); }
  .steps{ grid-template-columns:1fr; gap:40px; }
  .steps::before{ display:none; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
  .footer-brand,.footer-news{ grid-column:1 / -1; }
  .pp-band-inner{ flex-direction:column; align-items:flex-start; }
}
@media (max-width:700px){
  .pp-below .pp-steps{ grid-template-columns:1fr; gap:14px; }
  .pp-below .pp-steps li::before{ width:auto; border-bottom:none; padding-bottom:0; }
  .pp-below .pp-steps li{ flex-direction:row; align-items:baseline; }
}
@media (max-width:560px){
  .container{ padding:0 20px; }
  .section,.product{ padding:72px 0; }
  .sides{ grid-template-columns:1fr; }
  .sec-badges{ grid-template-columns:1fr; }
  .hero-actions .btn,.attesta-cta .btn,.product-cta .btn,.final-actions .btn,.pp-band .btn{ width:100%; }
  .product-cta{ align-items:stretch; }
  .footer-grid{ grid-template-columns:1fr; }
  .footer-bottom{ flex-direction:column; align-items:flex-start; }
  .credential{ max-width:100%; }
  .pp-learn{ gap:12px; }
}
/* ============================================================
   MULTI-PAGE SHELL
   Added when the single page became a site: a company hub plus
   one page per product.
   ============================================================ */

/* active state for the page you are on */
.nav-link.active{ color:var(--text); font-weight:600; }
.nav-link.active::after{ width:100%; }
.mobile-menu a.active{ color:var(--indigo); font-weight:600; }

/* ---------- interior page hero ---------- */
.page-hero{ position:relative; overflow:hidden; padding:148px 0 76px; background:var(--paper); }
.page-hero::before{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:
    radial-gradient(ellipse 52% 68% at 84% 6%,var(--accent-soft),transparent 62%),
    radial-gradient(ellipse 40% 55% at 4% 92%,rgba(251,156,42,.10),transparent 62%);
}
.page-hero > .container{ position:relative; z-index:1; }
.page-hero-grid{ display:grid; grid-template-columns:1.15fr .85fr; gap:54px; align-items:center; }
/* same min-width:auto trap as the other grids: a fixed-width child would
   otherwise inflate the track and overflow the container on small screens */
.page-hero-grid > *,.prodcards > *,.decisions > *,.tiers > *,.phi > *{ min-width:0; }
.page-hero h1{ font-size:clamp(2.4rem,5vw,4.2rem); margin:16px 0 20px; }
.page-hero .lede{ max-width:620px; }
.page-hero .lede + .lede{ margin-top:14px; }
.page-hero-actions{ display:flex; gap:14px; margin-top:32px; flex-wrap:wrap; align-items:center; }

/* ---------- breadcrumb ---------- */
.breadcrumb{
  display:flex; align-items:center; gap:9px; font-family:var(--mono);
  font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--text-mute);
  margin-bottom:20px;
}
.breadcrumb a{ color:var(--text-mute); transition:color .2s; }
.breadcrumb a:hover{ color:var(--accent); }
.breadcrumb svg{ width:12px; height:12px; opacity:.6; }
.breadcrumb strong{ color:var(--accent); font-weight:500; }

/* ---------- products band on the hub: two peer cards ---------- */
.prodcards{ display:grid; grid-template-columns:1fr 1fr; gap:26px; }
.prodcard{
  position:relative; overflow:hidden; display:flex; flex-direction:column;
  padding:40px 34px 34px; border-radius:var(--r-lg); background:var(--paper);
  border:1px solid var(--line); box-shadow:var(--sh-2);
  transition:transform .4s var(--ease-out), box-shadow .4s, border-color .4s;
}
.prodcard::before{ content:""; position:absolute; top:0; left:0; right:0; height:3px; background:var(--accent); }
.prodcard::after{
  content:""; position:absolute; inset:0; z-index:0; pointer-events:none;
  background:radial-gradient(ellipse 60% 50% at 88% 0%,var(--accent-soft),transparent 62%);
}
.prodcard > *{ position:relative; z-index:1; }
.prodcard:hover{ transform:translateY(-8px); box-shadow:var(--sh-4); border-color:var(--line-2); }
.prodcard--attesta{ --accent:#0B6B58; --accent-soft:rgba(11,107,88,.12); }
.prodcard--pp{ --accent:#2D388A; --accent-soft:rgba(45,56,138,.12); }
.prodcard-ic{ width:54px; height:54px; border-radius:14px; display:flex; align-items:center; justify-content:center; background:var(--accent-soft); color:var(--accent); margin-bottom:20px; }
.prodcard-ic svg{ width:26px; height:26px; }
.prodcard-eyebrow{ font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); }
.prodcard h3{ font-size:1.9rem; margin:8px 0 12px; }
.prodcard p{ font-size:14.5px; color:var(--text-soft); margin-bottom:18px; }
.prodcard-meta{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:24px; }
.prodcard-meta span{ font-family:var(--mono); font-size:10.5px; letter-spacing:.05em; color:var(--text-mute); padding:5px 11px; border:1px solid var(--line); border-radius:100px; background:var(--bg-2); }
.prodcard-actions{ margin-top:auto; display:flex; gap:16px; flex-wrap:wrap; align-items:center; }

/* ---------- compact company narrative ---------- */
.hub-note{ max-width:760px; margin:0 auto; text-align:center; }
.hub-note p{ font-size:15.5px; color:var(--text-soft); line-height:1.68; }

/* ---------- PHI-free callout on the PracticePilot page ---------- */
.phi{ display:grid; grid-template-columns:1.05fr .95fr; gap:44px; align-items:center;
  padding:40px 38px; border-radius:var(--r-lg); background:var(--paper);
  border:1px solid var(--line); border-left:3px solid var(--accent); box-shadow:var(--sh-2); }
.phi h3{ font-size:1.7rem; margin-bottom:14px; }
.phi p{ font-size:14.5px; color:var(--text-soft); margin-bottom:12px; }
.phi-list{ display:grid; gap:12px; }
.phi-item{ display:flex; gap:12px; align-items:flex-start; font-size:14px; color:var(--text-soft); }
.phi-item svg{ width:18px; height:18px; flex-shrink:0; margin-top:2px; color:var(--positive); }
.phi-item strong{ color:var(--text); font-weight:600; }

/* ---------- the six decisions ---------- */
.decisions{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.decision{ padding:28px 26px; border-radius:var(--r); background:var(--paper); border:1px solid var(--line); box-shadow:var(--sh-1);
  transition:transform .4s var(--ease-out), box-shadow .4s, border-color .4s; }
.decision:hover{ transform:translateY(-6px); box-shadow:var(--sh-3); border-color:var(--line-2); }
.decision-q{ font-family:var(--serif); font-size:1.24rem; color:var(--text); margin-bottom:10px; line-height:1.25; }
.decision p{ font-size:13.5px; color:var(--text-soft); line-height:1.6; }
.decision-tag{ display:block; font-family:var(--mono); font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--accent); margin-bottom:12px; }

/* ---------- pricing table ---------- */
.tiers{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; align-items:stretch; }
.tier{ display:flex; flex-direction:column; padding:32px 28px; border-radius:var(--r-lg); background:var(--paper); border:1px solid var(--line); box-shadow:var(--sh-1); }
.tier--feature{ border-color:var(--accent); box-shadow:var(--sh-3); }
.tier-name{ font-family:var(--mono); font-size:10.5px; letter-spacing:.14em; text-transform:uppercase; color:var(--accent); }
.tier-price{ font-family:var(--serif); font-size:2.2rem; margin:10px 0 4px; font-variant-numeric:tabular-nums; }
.tier-price small{ font-family:var(--sans); font-size:13px; color:var(--text-mute); font-weight:400; }
.tier p{ font-size:13.5px; color:var(--text-soft); margin-top:12px; }
.tier-actions{ margin-top:auto; padding-top:22px; }

@media (max-width:1080px){
  .page-hero-grid,.phi{ grid-template-columns:1fr; gap:34px; }
  .prodcards{ grid-template-columns:1fr; }
  .decisions,.tiers{ grid-template-columns:1fr; }
  .page-hero{ padding:126px 0 62px; }
}
@media (max-width:560px){
  .page-hero{ padding:112px 0 54px; }
  .prodcard{ padding:32px 24px 28px; }
  .phi{ padding:30px 24px; }
  .page-hero-actions .btn{ width:100%; }
}

/* ============================================================
   PRODUCT LOGO LOCKUPS
   Attesta ships a seal, PracticePilot ships a heart holding a
   rising bar chart. Both products now sign their own sections.
   ============================================================ */
.lockup{ display:flex; align-items:center; gap:16px; margin-bottom:24px; }
.lockup svg{ width:66px; height:66px; flex-shrink:0; }
.lockup-name{ font-family:var(--sans); font-size:27px; font-weight:400; letter-spacing:-.012em; color:var(--text); line-height:1.1; }
.lockup-name b{ font-weight:700; }
.lockup-tag{ font-size:12.5px; color:var(--text-mute); margin-top:4px; }

/* the product cards on the hub carry the real marks, not generic glyphs */
.prodcard-mark{ width:56px; height:56px; margin-bottom:20px; display:block; }
.prodcard--attesta .prodcard-mark{ filter:drop-shadow(0 8px 18px rgba(11,107,88,.30)); }
.prodcard--pp .prodcard-mark{ filter:drop-shadow(0 8px 18px rgba(19,125,197,.30)); }

/* small mark beside the PracticePilot entry in the footer directory */
.footer-prod-mark{ width:15px; height:15px; display:inline-block; vertical-align:-2px; margin-right:7px; }

/* mark inside the PracticePilot data-model card header */
.pp-card-head .pp-head-mark{ width:20px; height:20px; flex-shrink:0; }
.pp-card-head strong{ display:inline-flex; align-items:center; gap:9px; }

@media (max-width:560px){
  .lockup svg{ width:54px; height:54px; }
  .lockup-name{ font-size:23px; }
  .nav-brand svg{ width:158px; height:38px; }
}

/* ============================================================
   CINEMATIC PASS
   Light, motion, and typographic air. Every animation below is
   killed wholesale by the prefers-reduced-motion block, and the
   colour endpoints stay inside the contrast-verified stops.
   ============================================================ */

/* the page arrives like a scene, not a document */
@keyframes pageIn{ from{ opacity:0; } to{ opacity:1; } }
main{ animation:pageIn .55s var(--ease-out) both; }

/* reading progress, drawn in the brand gradient */
.scroll-progress{ position:fixed; top:0; left:0; height:3px; width:0; z-index:130; background:var(--grad-brand); box-shadow:0 0 14px rgba(0,174,239,.4); pointer-events:none; }

/* entrances resolve from soft focus, a rack-focus rather than a fade */
@keyframes fadeUp{ from{ opacity:0; transform:translateY(24px); filter:blur(7px); } to{ opacity:1; transform:none; filter:none; } }
.reveal{ transform:translateY(34px) scale(.985); filter:blur(6px); transition:opacity .85s var(--ease-out), transform .85s var(--ease-out), filter .85s var(--ease-out); }
.reveal.in{ filter:none; }

/* the gradient inside the display serifs breathes, slowly */
.serif-em em, .product--attesta .serif-em em, .product--pp .serif-em em, .final .serif-em em{
  background-size:220% 220%; animation:gradPan 11s ease-in-out infinite alternate;
}
@keyframes gradPan{ from{ background-position:0% 20%; } to{ background-position:100% 80%; } }

/* aurora drift: the hero light moves like weather */
.blob-1{ animation:drift1 30s ease-in-out infinite alternate; }
.blob-2{ animation:drift2 36s ease-in-out infinite alternate; }
.blob-3{ animation:drift3 33s ease-in-out infinite alternate; }
@keyframes drift1{ to{ transform:translate(-46px,34px) scale(1.07); } }
@keyframes drift2{ to{ transform:translate(38px,-28px) scale(1.05); } }
@keyframes drift3{ to{ transform:translate(-30px,-36px) scale(1.09); } }

/* the deep closing band swells gently */
.final::before{ animation:aurora 16s ease-in-out infinite alternate; }
@keyframes aurora{ from{ opacity:.82; transform:scale(1); } to{ opacity:1; transform:scale(1.05); } }

/* typographic air */
h1, h2.section-title{ text-wrap:balance; }
.lede{ text-wrap:pretty; }
.hero h1{ font-size:clamp(2.9rem,6.4vw,5.6rem); letter-spacing:-.02em; }
.page-hero h1{ letter-spacing:-.018em; }

/* glassy inner light on the loud buttons */
.btn-primary{ box-shadow:inset 0 1px 0 rgba(255,255,255,.45), 0 8px 26px -10px rgba(239,138,18,.55); }
.btn-primary:hover{ box-shadow:inset 0 1px 0 rgba(255,255,255,.45), 0 16px 38px -12px rgba(239,138,18,.66); }
.btn-teal{ box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 8px 26px -10px rgba(14,124,102,.5); }
.btn-indigo{ box-shadow:inset 0 1px 0 rgba(255,255,255,.22), 0 8px 26px -10px rgba(45,56,138,.55); }

/* the founder portrait leans in */
.founder-av img{ transition:transform .7s var(--ease-out); }
.founder:hover .founder-av img{ transform:scale(1.06); }

/* product marks lift with their cards */
.prodcard-mark{ transition:transform .5s var(--ease-out); }
.prodcard:hover .prodcard-mark{ transform:translateY(-3px); }

/* ============================================================
   MONUMENT HERO
   The hub hero is a centred typographic monument: one voice,
   one object. The floating card stack is retired and the old
   trustbar is folded into a single machined stat rail.
   ============================================================ */
.hero--mn{ text-align:center; padding:150px 0 96px; }
.hero-mn{ position:relative; z-index:2; display:flex; flex-direction:column; align-items:center; }

/* a slow conic halo behind the headline, light as breath */
.hero-halo{
  position:absolute; left:50%; top:42%; transform:translate(-50%,-50%); z-index:0;
  width:min(720px,86vw); height:min(720px,86vw); border-radius:50%;
  background:conic-gradient(from 180deg,rgba(0,174,239,.14),rgba(251,156,42,.10),rgba(45,56,138,.12),rgba(0,174,239,.14));
  filter:blur(34px); opacity:.6; animation:spin 46s linear infinite;
}

/* hairline-flanked kicker, the classic engraved device */
.hero-kicker{ position:relative; display:inline-flex; align-items:center; gap:10px; }
.hero-kicker::before,.hero-kicker::after{ content:""; height:1px; width:clamp(36px,9vw,120px); }
.hero-kicker::before{ background:linear-gradient(90deg,transparent,var(--line-2)); margin-right:8px; }
.hero-kicker::after{ background:linear-gradient(90deg,var(--line-2),transparent); margin-left:8px; }

.hero--mn h1{ margin:26px 0 24px; font-size:clamp(3rem,7.4vw,6.6rem); letter-spacing:-.022em; line-height:1.02; }
.hero--mn .hero-sub{ max-width:660px; margin:0 auto; }
.hero--mn .hero-actions{ justify-content:center; margin:36px 0 30px; }

/* one engraved line instead of chips */
.hero-etch{
  font-family:var(--mono); font-size:11px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text-mute); margin-bottom:0;
}

/* the stat rail: one machined object, jewel case glass */
.hero-stage{
  width:100%; max-width:1080px; margin-top:58px; border-radius:var(--r-lg);
  border:1px solid var(--line); background:rgba(255,255,255,.7);
  backdrop-filter:blur(14px) saturate(130%); -webkit-backdrop-filter:blur(14px) saturate(130%);
  box-shadow:var(--sh-3), inset 0 1px 0 rgba(255,255,255,.9);
  overflow:hidden; position:relative;
}
.hero-stage::before{
  content:""; position:absolute; inset:0; pointer-events:none;
  background:linear-gradient(115deg,rgba(45,56,138,.05),transparent 32%,transparent 68%,rgba(0,174,239,.06));
}
.stage-grid{ position:relative; display:grid; grid-template-columns:repeat(5,1fr); }
.stage-cell{ padding:28px 16px 24px; border-right:1px solid var(--line); }
.stage-cell:last-child{ border-right:none; }
.stage-val{ font-family:var(--serif); font-size:clamp(1.7rem,2.6vw,2.3rem); line-height:1; color:var(--indigo); }
.stage-lbl{ margin-top:9px; font-family:var(--mono); font-size:9.5px; letter-spacing:.13em; text-transform:uppercase; color:var(--text-mute); }

@media (max-width:880px){
  .hero--mn{ padding:132px 0 76px; }
  .stage-grid{ grid-template-columns:repeat(2,1fr); }
  .stage-cell{ border-right:none; border-bottom:1px solid var(--line); }
  .stage-cell:nth-child(odd){ border-right:1px solid var(--line); }
  .stage-cell:nth-child(5){ grid-column:1 / -1; border-bottom:none; }
  .stage-cell:nth-child(4){ border-bottom:none; }
  .stage-cell:nth-child(3){ border-bottom:1px solid var(--line); }
}
@media (max-width:560px){
  .hero-etch{ font-size:9.5px; letter-spacing:.1em; }
  .hero-stage{ margin-top:44px; }
  /* a wrapped kicker leaves the flanking hairlines orphaned; drop them */
  .hero-kicker::before,.hero-kicker::after{ display:none; }
}
