/* ==========================================================================
   NEXORA — Brand stylesheet
   Palette: Blue · White · Gold
   Author: Pearson & Peaders design system
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Blues */
  --navy-900: #07112b;
  --navy-800: #0a1a3f;
  --navy-700: #0f2454;
  --blue-600: #1e40af;
  --blue-500: #2563eb;
  --blue-400: #3b82f6;
  --blue-300: #60a5fa;

  /* Gold */
  --gold-600: #b8860b;
  --gold-500: #c9a227;
  --gold-400: #e8c547;
  --gold-300: #f3d97a;
  --gold-grad: linear-gradient(135deg, #f3d97a 0%, #e8c547 35%, #c9a227 70%, #b8860b 100%);

  /* Neutrals */
  --white: #ffffff;
  --mist: #f6f8fc;
  --cloud: #eef2f9;
  --line: #e2e8f0;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --ink: #0b1220;

  /* Semantics */
  --bg: var(--white);
  --bg-alt: var(--mist);
  --text: #1e293b;
  --muted: var(--slate-500);
  --heading: var(--navy-800);
  --accent: var(--blue-500);
  --accent-deep: var(--blue-600);

  /* Effects */
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 28px;
  --shadow-sm: 0 1px 2px rgba(10, 26, 63, .06), 0 2px 8px rgba(10, 26, 63, .05);
  --shadow-md: 0 10px 30px rgba(10, 26, 63, .10);
  --shadow-lg: 0 24px 60px rgba(10, 26, 63, .16);
  --ring: 0 0 0 3px rgba(37, 99, 235, .25);

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);

  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: "Sora", "Inter", system-ui, sans-serif;

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: none; box-shadow: var(--ring); border-radius: 6px; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--heading);
  line-height: 1.12;
  letter-spacing: -.02em;
  font-weight: 700;
}
h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { color: var(--slate-600); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--slate-600); }

.gold-text {
  background: var(--gold-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.blue-text { color: var(--blue-500); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.bg-alt { background: var(--bg-alt); }
.bg-navy {
  background:
    radial-gradient(1100px 500px at 80% -10%, rgba(37, 99, 235, .35), transparent 60%),
    radial-gradient(900px 500px at 0% 110%, rgba(201, 162, 39, .18), transparent 55%),
    var(--navy-800);
  color: #cdd7ee;
}
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy p { color: #aebbd8; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .8rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--blue-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold-grad);
  border-radius: 2px;
}
.bg-navy .eyebrow { color: var(--gold-400); }

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

.grid { display: grid; gap: clamp(20px, 2.5vw, 30px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: .98rem;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue-500), var(--blue-600));
  color: #fff;
  box-shadow: 0 10px 26px rgba(37, 99, 235, .35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(37, 99, 235, .45); }
.btn-gold {
  background: var(--gold-grad);
  color: var(--navy-900);
  box-shadow: 0 10px 26px rgba(201, 162, 39, .4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 162, 39, .5); }
.btn-ghost {
  background: rgba(255, 255, 255, .06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .28);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: rgba(255, 255, 255, .14); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid var(--line);
  color: var(--heading);
  background: #fff;
}
.btn-outline:hover { border-color: var(--blue-400); color: var(--blue-600); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--blue-600);
}
.link-arrow svg { width: 16px; transition: transform .25s var(--ease); }
.link-arrow:hover svg { transform: translateX(5px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  transition: background .3s, box-shadow .3s, border-color .3s;
  background: rgba(255, 255, 255, .72);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .92);
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 76px;
  padding-block: 10px;
  flex-wrap: wrap;
}
.brand { flex: none; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); letter-spacing: -.02em; }
.brand .logo-mark { width: 54px; height: 54px; flex: none; }
/* animated rotating globe inside the emblem */
.pp-emblem .pp-spin { animation: pp-globe-spin 7s linear infinite; }
@keyframes pp-globe-spin { from { transform: translateX(0); } to { transform: translateX(-120px); } }
/* red comet orbiting along the arc — front half in front of the globe,
   back half occluded behind it (two synced copies, gated by opacity) */
.pp-comet {
  offset-path: path("M108.9 35.2A54 26 -25 1 1 11.1 80.8A54 26 -25 1 1 108.9 35.2");
  offset-rotate: 0deg;
  filter: drop-shadow(0 0 2px rgba(237, 28, 36, .8));
}
.pp-comet-front { animation: pp-comet-orbit 4.5s linear infinite, pp-comet-front-vis 4.5s linear infinite; }
.pp-comet-back  { opacity: 0; animation: pp-comet-orbit 4.5s linear infinite, pp-comet-back-vis 4.5s linear infinite; }
@keyframes pp-comet-orbit { from { offset-distance: 0%; } to { offset-distance: 100%; } }
@keyframes pp-comet-front-vis { 0%, 49.99% { opacity: 1; } 50%, 100% { opacity: 0; } }
@keyframes pp-comet-back-vis  { 0%, 49.99% { opacity: 0; } 50%, 100% { opacity: 1; } }
.brand-name { display: flex; flex-direction: column; gap: 2px; line-height: 1; white-space: nowrap; }
.bn-main { font-family: "Baloo 2", var(--font-display); font-weight: 700; font-size: 1.18rem; letter-spacing: -.005em; }
.bn-p { color: #ED1C24; }
.bn-amp { color: #8a8c8e; margin: 0 .08em; font-weight: 700; }
.bn-pe { color: #231F20; }
.bn-g { color: #1e40af; font-weight: 700; }
.bn-tag { font-family: "Dancing Script", "Segoe Script", cursive; font-weight: 700; font-size: .9rem; letter-spacing: .01em; color: #14213d; line-height: .9; }
/* dark footer variant */
.site-footer .brand { color: #fff; }
.site-footer .bn-p { color: #ff5a4d; }
.site-footer .bn-amp { color: #aeb6c4; }
.site-footer .bn-pe { color: #ffffff; }
.site-footer .bn-g { color: #6ea8ff; }
.site-footer .bn-tag { color: #9fb0d4; }
.nav-links { display: flex; align-items: center; flex-wrap: wrap; justify-content: flex-end; gap: 2px; }
.nav-links a {
  padding: 8px 9px;
  border-radius: 10px;
  font-weight: 500;
  font-size: .93rem;
  color: var(--slate-700);
  white-space: nowrap;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--blue-600); background: rgba(37, 99, 235, .07); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-cta .btn-ghost { display: none; } /* keep a single primary CTA in the bar */
.nav-toggle { display: none; width: 44px; height: 44px; border-radius: 10px; align-items: center; justify-content: center; color: var(--navy-800); }
.nav-toggle svg { width: 26px; height: 26px; }

/* Medium widths: keep the full menu visible, free up room by hiding the CTA button */
@media (max-width: 1200px) {
  .nav-cta .btn { display: none; }
}
/* Only true mobile collapses into the hamburger menu */
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    padding: 14px var(--gutter) 24px;
    gap: 4px;
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--line);
  }
  .nav-links.open a { padding: 13px 14px; font-size: 1.05rem; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 78% -5%, rgba(37, 99, 235, .45), transparent 55%),
    radial-gradient(900px 600px at -5% 100%, rgba(201, 162, 39, .22), transparent 50%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff;
  padding-block: clamp(70px, 11vw, 150px);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
  mask-image: radial-gradient(circle at 50% 35%, #000, transparent 75%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 2; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 940px) { .hero-grid { grid-template-columns: 1fr; } }
.hero h1 { color: #fff; }
.hero .lead { color: #b9c6e6; max-width: 560px; margin-top: 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 7px 8px 7px 14px; margin-bottom: 26px;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px; font-size: .85rem; color: #d7e0f5;
}
.hero-badge .pill { background: var(--gold-grad); color: var(--navy-900); font-weight: 700; font-size: .72rem; padding: 3px 10px; border-radius: 999px; letter-spacing: .04em; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-stats { display: flex; gap: 34px; margin-top: 48px; flex-wrap: wrap; }
.hero-stats .num { font-family: var(--font-display); font-weight: 700; font-size: 2rem; color: #fff; }
.hero-stats .num b { color: var(--gold-400); }
.hero-stats .lbl { font-size: .85rem; color: #93a3c7; }

/* Hero visual card */
.hero-visual { position: relative; }
.glass-card {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-lg);
  padding: 22px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.terminal { font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace; font-size: .86rem; }
.terminal .bar { display: flex; gap: 7px; margin-bottom: 16px; }
.terminal .bar span { width: 12px; height: 12px; border-radius: 50%; background: #3a4a6b; }
.terminal .dot-r { background: #ff6058; } .terminal .dot-y { background: #ffbd2e; } .terminal .dot-g { background: #29c940; }
.terminal pre { color: #cdd7ee; white-space: pre-wrap; line-height: 1.7; margin: 0; }
.terminal .c-key { color: var(--gold-400); }
.terminal .c-str { color: #7ee0a8; }
.terminal .c-fn { color: var(--blue-300); }
.float-chip {
  position: absolute;
  display: flex; align-items: center; gap: 10px;
  background: #fff; color: var(--navy-800);
  padding: 12px 16px; border-radius: 14px;
  box-shadow: var(--shadow-lg); font-size: .85rem; font-weight: 600;
  font-family: var(--font-display);
}
.float-chip .ic { width: 30px; height: 30px; border-radius: 8px; display: grid; place-items: center; color: #fff; }
.float-chip.one { top: -18px; right: 12px; animation: float 6s ease-in-out infinite; }
.float-chip.two { bottom: -16px; left: -10px; animation: float 6s ease-in-out infinite 1.5s; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- Logos / marquee ---------- */
.trust { padding-block: 40px; border-bottom: 1px solid var(--line); }
.trust p { text-align: center; font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; gap: clamp(24px, 5vw, 60px); justify-content: center; align-items: center; opacity: .8; }
.logo-row span { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--slate-500); letter-spacing: -.01em; }

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: #cdd9f0; }
.card .icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .04));
  color: var(--blue-600);
}
.card .icon svg { width: 28px; height: 28px; }
.card.gold .icon { background: linear-gradient(135deg, rgba(201, 162, 39, .18), rgba(201, 162, 39, .05)); color: var(--gold-600); }
.card h3 { margin-bottom: 10px; }
.card p { font-size: .98rem; }
.card .tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag { font-size: .76rem; font-weight: 600; color: var(--slate-600); background: var(--cloud); padding: 5px 11px; border-radius: 999px; }
.card .topline { position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease); }
.card:hover .topline { transform: scaleX(1); }

/* Service detail blocks */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 5vw, 60px);
  align-items: center;
  padding-block: clamp(40px, 6vw, 70px);
  border-bottom: 1px solid var(--line);
}
.service-block:nth-child(even) .service-media { order: -1; }
@media (max-width: 860px) { .service-block { grid-template-columns: 1fr; } .service-block:nth-child(even) .service-media { order: 0; } }
.service-media {
  border-radius: var(--radius-lg);
  padding: 34px;
  min-height: 280px;
  display: grid; place-items: center;
  background:
    radial-gradient(600px 300px at 70% 0%, rgba(37, 99, 235, .25), transparent 60%),
    linear-gradient(160deg, var(--navy-700), var(--navy-900));
  position: relative; overflow: hidden;
}
.service-media .big-ic { width: 96px; height: 96px; color: var(--gold-400); }
.service-list { margin-top: 22px; display: grid; gap: 14px; }
.service-list li { display: flex; gap: 12px; align-items: flex-start; }
.service-list .check { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(37, 99, 235, .12); color: var(--blue-600); display: grid; place-items: center; margin-top: 2px; }
.service-list .check svg { width: 15px; }
.service-list b { color: var(--heading); font-family: var(--font-display); }
.service-list span { color: var(--slate-600); font-size: .96rem; }

/* Numbered process */
.step { position: relative; padding-left: 4px; }
.step .n { font-family: var(--font-display); font-weight: 800; font-size: 2.6rem; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; line-height: 1; }
.step h3 { margin: 12px 0 8px; }

/* Stats band */
.stat-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
@media (max-width: 760px) { .stat-band { grid-template-columns: repeat(2, 1fr); } }
.stat { text-align: center; padding: 26px 16px; border-radius: var(--radius); background: rgba(255, 255, 255, .04); border: 1px solid rgba(255, 255, 255, .1); }
.stat .v { font-family: var(--font-display); font-weight: 800; font-size: clamp(2rem, 4vw, 2.9rem); color: #fff; }
.stat .v b { color: var(--gold-400); }
.stat .k { color: #9fb0d4; font-size: .9rem; margin-top: 6px; }

/* Testimonial */
.quote-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(30px, 4vw, 48px); box-shadow: var(--shadow-md); position: relative; }
.quote-card .mark { font-family: var(--font-display); font-size: 5rem; line-height: .6; color: var(--gold-400); height: 40px; }
.quote-card blockquote { font-family: var(--font-display); font-size: clamp(1.25rem, 2.4vw, 1.7rem); color: var(--heading); line-height: 1.4; font-weight: 600; letter-spacing: -.01em; }
.quote-card .who { display: flex; align-items: center; gap: 14px; margin-top: 26px; }
.quote-card .avatar { width: 52px; height: 52px; border-radius: 50%; background: var(--gold-grad); display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; color: var(--navy-900); }
.quote-card .who b { display: block; color: var(--heading); font-family: var(--font-display); }
.quote-card .who span { color: var(--muted); font-size: .9rem; }

/* ---------- Blog ---------- */
.post-card { display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); height: 100%; }
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.post-thumb { height: 190px; position: relative; overflow: hidden; display: grid; place-items: center; color: rgba(255, 255, 255, .9); }
.post-thumb svg { width: 56px; height: 56px; opacity: .9; }
/* corporate photo covers */
.post-thumb .cover, .ft-media .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.post-thumb::after, .featured-post .ft-media::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(155deg, rgba(10, 26, 63, .30) 0%, rgba(10, 26, 63, .52) 100%); }
.t-blue { background: linear-gradient(150deg, var(--blue-500), var(--navy-800)); }
.t-gold { background: linear-gradient(150deg, var(--gold-400), var(--gold-600)); }
.t-mix { background: linear-gradient(150deg, var(--blue-500), var(--gold-500)); }
.t-deep { background: linear-gradient(150deg, var(--navy-700), var(--blue-600)); }
.post-body { padding: 24px; display: flex; flex-direction: column; flex: 1; }
.post-meta { display: flex; gap: 10px; align-items: center; font-size: .78rem; color: var(--muted); margin-bottom: 12px; }
.post-meta .cat { color: var(--blue-600); font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.post-body h3 { font-size: 1.18rem; margin-bottom: 10px; }
.post-body p { font-size: .95rem; flex: 1; }
.post-body .link-arrow { margin-top: 16px; font-size: .9rem; }
.featured-post { display: grid; grid-template-columns: 1.1fr .9fr; gap: 0; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-md); background: #fff; }
@media (max-width: 820px) { .featured-post { grid-template-columns: 1fr; } }
.featured-post .ft-media { position: relative; overflow: hidden; min-height: 320px; background: linear-gradient(150deg, var(--navy-700), var(--blue-600)); display: grid; place-items: center; color: #fff; }
.featured-post .ft-media svg { width: 90px; height: 90px; opacity: .9; }
.featured-post .ft-body { padding: clamp(28px, 4vw, 48px); display: flex; flex-direction: column; justify-content: center; }

/* Article */
.article { max-width: 760px; margin-inline: auto; }
.article h2 { margin: 40px 0 14px; }
.article h3 { margin: 30px 0 10px; }
.article p { margin-bottom: 18px; font-size: 1.06rem; color: var(--slate-700); }
.article ul.bullets { margin: 0 0 20px; display: grid; gap: 10px; }
.article ul.bullets li { position: relative; padding-left: 28px; color: var(--slate-700); }
.article ul.bullets li::before { content: ""; position: absolute; left: 6px; top: 11px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-grad); }
.article blockquote { border-left: 4px solid var(--gold-400); padding: 6px 0 6px 22px; margin: 26px 0; font-family: var(--font-display); font-size: 1.3rem; color: var(--heading); font-weight: 600; }
.article-hero { padding-block: clamp(48px, 7vw, 90px); }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; border-radius: var(--radius-lg); padding: clamp(40px, 6vw, 72px); text-align: center;
  background:
    radial-gradient(700px 360px at 80% -20%, rgba(201, 162, 39, .35), transparent 60%),
    radial-gradient(700px 360px at 0% 120%, rgba(37, 99, 235, .4), transparent 55%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: #fff;
}
.cta-band h2 { color: #fff; }
.cta-band p { color: #b9c6e6; max-width: 560px; margin: 16px auto 0; }
.cta-band .hero-actions { justify-content: center; }

/* ---------- Forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-weight: 600; font-size: .88rem; color: var(--heading); }
.field input, .field select, .field textarea {
  font: inherit; font-size: .98rem;
  padding: 13px 15px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff; color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blue-400); box-shadow: var(--ring); }
.form-note { font-size: .82rem; color: var(--muted); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(30px, 5vw, 60px); align-items: start; }
@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }
.info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.info-item .ic { flex: none; width: 46px; height: 46px; border-radius: 12px; background: rgba(37, 99, 235, .1); color: var(--blue-600); display: grid; place-items: center; }
.info-item b { font-family: var(--font-display); color: var(--heading); display: block; }
.info-item span, .info-item a { color: var(--slate-600); font-size: .96rem; }

/* ---------- Page hero (inner) ---------- */
.page-hero { background:
    radial-gradient(900px 460px at 85% -20%, rgba(37, 99, 235, .4), transparent 55%),
    radial-gradient(700px 400px at -5% 120%, rgba(201, 162, 39, .18), transparent 50%),
    linear-gradient(180deg, var(--navy-800), var(--navy-900));
  color: #fff; padding-block: clamp(70px, 9vw, 120px); text-align: center; position: relative; overflow: hidden; }
.page-hero h1 { color: #fff; }
.page-hero p { color: #b9c6e6; max-width: 640px; margin: 18px auto 0; }
.breadcrumb { font-size: .85rem; color: #8da0c8; margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--gold-400); }

/* values / about */
.value-card { padding: 28px; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow-sm); }
.value-card .ic { width: 48px; height: 48px; border-radius: 12px; display: grid; place-items: center; margin-bottom: 16px; background: var(--gold-grad); color: var(--navy-900); }
.value-card h3 { font-size: 1.15rem; margin-bottom: 8px; }
.value-card p { font-size: .96rem; }
.team-card { text-align: center; }
.team-card .ph { width: 110px; height: 110px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 1.8rem; color: #fff; background: linear-gradient(140deg, var(--blue-500), var(--navy-800)); box-shadow: var(--shadow-md); }
.team-card.g .ph { background: var(--gold-grad); color: var(--navy-900); }
.team-card b { font-family: var(--font-display); color: var(--heading); font-size: 1.1rem; }
.team-card span { display: block; color: var(--blue-600); font-size: .9rem; font-weight: 600; }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; } }
.media-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 340px; background:
    radial-gradient(500px 280px at 30% 10%, rgba(201, 162, 39, .3), transparent 60%),
    linear-gradient(150deg, var(--navy-700), var(--blue-600)); display: grid; place-items: center; color: rgba(255, 255, 255, .92); }
.media-frame svg { width: 120px; height: 120px; }
.media-frame .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: #9fb0d4; padding-block: 64px 30px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 36px; }
@media (max-width: 860px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.site-footer .brand { color: #fff; margin-bottom: 16px; }
.site-footer p { color: #8093b8; font-size: .95rem; max-width: 320px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 6px 0; color: #9fb0d4; font-size: .94rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255, 255, 255, .06); display: grid; place-items: center; color: #cdd7ee; transition: background .2s, transform .2s; }
.socials a:hover { background: var(--blue-600); color: #fff; transform: translateY(-2px); }
.socials svg { width: 19px; height: 19px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(255, 255, 255, .09); font-size: .85rem; color: #6f80a6; }
.footer-bottom a:hover { color: var(--gold-400); }

/* newsletter */
.newsletter { display: flex; gap: 10px; margin-top: 16px; max-width: 360px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .16); background: rgba(255, 255, 255, .05); color: #fff; font: inherit; font-size: .92rem; }
.newsletter input::placeholder { color: #8093b8; }
.newsletter input:focus { outline: none; border-color: var(--gold-400); }
.newsletter button { padding: 12px 20px; border-radius: 999px; background: var(--gold-grad); color: var(--navy-900); font-family: var(--font-display); font-weight: 700; }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .float-chip { animation: none; }
  .pp-emblem .pp-spin { animation: none; }
  .pp-comet-front, .pp-comet-back { animation: none; }
  html { scroll-behavior: auto; }
}

/* utilities */
.center { text-align: center; }
.mt-s { margin-top: 14px; }
.mt-m { margin-top: 26px; }
.mt-l { margin-top: 44px; }
.mb-0 { margin-bottom: 0; }
.maxw { max-width: 720px; }
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(120%); background: var(--navy-800); color: #fff; padding: 14px 22px; border-radius: 12px; box-shadow: var(--shadow-lg); font-weight: 600; font-family: var(--font-display); z-index: 100; transition: transform .4s var(--ease); }
.toast.show { transform: translateX(-50%) translateY(0); }

/* ---------- Card photo header (replaces icon) ---------- */
.card-media { margin: -30px -30px 22px; height: 172px; overflow: hidden; position: relative; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(10, 26, 63, .12), rgba(10, 26, 63, .44)); }

/* Service detail panel photo + overlay (keeps the gold icon on top) */
.service-media .cover { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.service-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(150deg, rgba(7, 17, 43, .22), rgba(7, 17, 43, .46)); }

/* ---------- AI Chatbot widget ---------- */
.pp-chat-launch {
  position: fixed; bottom: 22px; right: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 20px 13px 15px; border-radius: 999px;
  background: var(--gold-grad); color: var(--navy-900);
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  box-shadow: var(--shadow-lg); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.pp-chat-launch svg { width: 22px; height: 22px; }
.pp-chat-launch:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201, 162, 39, .5); }
.pp-chat-launch[hidden] { display: none; }

.pp-chat {
  position: fixed; bottom: 22px; right: 22px; z-index: 95;
  width: min(380px, calc(100vw - 32px));
  height: min(560px, calc(100vh - 44px));
  background: #fff; border: 1px solid var(--line); border-radius: 20px;
  box-shadow: var(--shadow-lg); display: flex; flex-direction: column; overflow: hidden;
  opacity: 0; transform: translateY(16px) scale(.98); pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
}
.pp-chat.open { opacity: 1; transform: none; pointer-events: auto; }
.pp-chat-head { background: linear-gradient(150deg, var(--navy-800), var(--navy-900)); color: #fff; padding: 15px 16px; display: flex; align-items: center; gap: 12px; }
.pp-chat-head .ava { width: 40px; height: 40px; border-radius: 12px; background: #fff; display: grid; place-items: center; flex: none; padding: 4px; }
.pp-chat-head .ava svg { width: 22px; height: 22px; }
.pp-chat-head b { font-family: var(--font-display); font-size: 1rem; display: block; line-height: 1.2; }
.pp-chat-head .status { font-size: .76rem; color: #9fb0d4; display: inline-flex; align-items: center; gap: 6px; }
.pp-chat-head .dot { width: 8px; height: 8px; border-radius: 50%; background: #29c940; }
.pp-chat-head .x { margin-left: auto; color: #cdd7ee; width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; }
.pp-chat-head .x:hover { background: rgba(255, 255, 255, .12); }
.pp-chat-head .x svg { width: 20px; height: 20px; }

.pp-chat-body { flex: 1; overflow-y: auto; padding: 18px; background: var(--mist); display: flex; flex-direction: column; gap: 12px; }
.pp-msg { max-width: 86%; padding: 11px 14px; border-radius: 14px; font-size: .92rem; line-height: 1.55; }
.pp-msg.bot { background: #fff; border: 1px solid var(--line); color: var(--slate-700); align-self: flex-start; border-bottom-left-radius: 4px; }
.pp-msg.user { background: var(--blue-600); color: #fff; align-self: flex-end; border-bottom-right-radius: 4px; }
.pp-msg a { color: var(--blue-600); font-weight: 600; text-decoration: underline; }
.pp-msg.user a { color: #fff; }
.pp-msg strong { color: var(--heading); font-family: var(--font-display); }
.pp-typing { align-self: flex-start; display: inline-flex; gap: 4px; padding: 13px 14px; background: #fff; border: 1px solid var(--line); border-radius: 14px; }
.pp-typing i { width: 7px; height: 7px; border-radius: 50%; background: var(--slate-500); animation: ppblink 1.2s infinite both; }
.pp-typing i:nth-child(2) { animation-delay: .2s; }
.pp-typing i:nth-child(3) { animation-delay: .4s; }
@keyframes ppblink { 0%, 80%, 100% { opacity: .3; transform: translateY(0); } 40% { opacity: 1; transform: translateY(-3px); } }

.pp-chips { display: flex; flex-wrap: wrap; gap: 8px; padding: 0 14px 12px; background: var(--mist); }
.pp-chip { font-size: .82rem; font-weight: 600; font-family: var(--font-display); color: var(--blue-600); background: #fff; border: 1px solid var(--line); padding: 7px 12px; border-radius: 999px; transition: background .2s, border-color .2s; }
.pp-chip:hover { background: rgba(37, 99, 235, .07); border-color: var(--blue-400); }

.pp-chat-foot { display: flex; gap: 8px; padding: 12px; border-top: 1px solid var(--line); background: #fff; }
.pp-chat-foot input { flex: 1; padding: 12px 14px; border: 1.5px solid var(--line); border-radius: 999px; font: inherit; font-size: .92rem; color: var(--text); }
.pp-chat-foot input:focus { outline: none; border-color: var(--blue-400); box-shadow: var(--ring); }
.pp-chat-foot button { flex: none; width: 44px; height: 44px; border-radius: 50%; background: var(--gold-grad); color: var(--navy-900); display: grid; place-items: center; transition: transform .2s; }
.pp-chat-foot button:hover { transform: scale(1.06); }
.pp-chat-foot button svg { width: 19px; height: 19px; }
@media (max-width: 480px) { .pp-chat { height: calc(100vh - 24px); bottom: 12px; right: 12px; } .pp-chat-launch { bottom: 14px; right: 14px; } }
@media (prefers-reduced-motion: reduce) { .pp-chat, .pp-chat-launch { transition: none; } .pp-typing i { animation: none; } }

/* ============================================================================
   LANDING PAGE  (lp-*)
   ========================================================================== */
.lp-hero-list { display: grid; gap: 12px; margin-top: 28px; max-width: 520px; }
.lp-hero-list li { display: flex; gap: 12px; align-items: center; color: #d7e0f5; font-size: 1rem; }
.lp-hero-list .tick { flex: none; width: 26px; height: 26px; border-radius: 8px; background: var(--gold-grad); color: var(--navy-900); display: grid; place-items: center; }
.lp-hero-list .tick svg { width: 15px; }

/* glass product mock in hero */
.lp-mock { padding: 14px; }
.lp-mock .shot { border-radius: 16px; overflow: hidden; border: 1px solid rgba(255, 255, 255, .14); position: relative; }
.lp-mock .shot img { width: 100%; display: block; aspect-ratio: 16 / 11; object-fit: cover; }
.lp-mock .shot::after { content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, transparent 40%, rgba(7, 17, 43, .35)); }

/* benefit cards */
.lp-benefit { text-align: left; }
.lp-benefit .ic { width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 16px; background: linear-gradient(135deg, rgba(37, 99, 235, .12), rgba(37, 99, 235, .03)); color: var(--blue-600); }
.lp-benefit.gold .ic { background: linear-gradient(135deg, rgba(201, 162, 39, .18), rgba(201, 162, 39, .05)); color: var(--gold-600); }
.lp-benefit .ic svg { width: 26px; height: 26px; }
.lp-benefit h3 { margin-bottom: 8px; }

/* capability switcher */
.lp-tabs { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-bottom: 34px; }
.lp-tab { padding: 11px 18px; border-radius: 999px; border: 1.5px solid var(--line); background: #fff; font-family: var(--font-display); font-weight: 600; font-size: .95rem; color: var(--slate-600); transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease); }
.lp-tab:hover { border-color: var(--blue-400); color: var(--blue-600); }
.lp-tab.active { background: var(--navy-800); color: #fff; border-color: var(--navy-800); box-shadow: var(--shadow-sm); }
.lp-panel { display: none; }
.lp-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; animation: lpfade .5s var(--ease); }
@media (max-width: 860px) { .lp-panel.active { grid-template-columns: 1fr; } .lp-panel .shot { order: -1; } }
@keyframes lpfade { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.lp-panel .shot { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); min-height: 320px; position: relative; background: linear-gradient(150deg, var(--navy-700), var(--blue-600)); }
.lp-panel .shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lp-panel .shot .badge { position: absolute; left: 16px; bottom: 16px; z-index: 2; background: rgba(255, 255, 255, .92); color: var(--navy-800); font-family: var(--font-display); font-weight: 700; font-size: .82rem; padding: 8px 14px; border-radius: 999px; box-shadow: var(--shadow-md); }
.lp-feature .eyebrow { margin-bottom: 12px; }
.lp-feature h3 { font-size: clamp(1.5rem, 2.6vw, 2.05rem); margin-bottom: 12px; }
.lp-checklist { margin-top: 20px; display: grid; gap: 13px; }
.lp-checklist li { display: flex; gap: 12px; align-items: flex-start; }
.lp-checklist .tick { flex: none; width: 24px; height: 24px; border-radius: 7px; background: rgba(37, 99, 235, .12); color: var(--blue-600); display: grid; place-items: center; margin-top: 2px; }
.lp-checklist .tick svg { width: 14px; }
.lp-checklist span { color: var(--slate-600); font-size: .98rem; }
.lp-checklist b { color: var(--heading); font-family: var(--font-display); }

/* comparison table */
.lp-compare { border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); background: #fff; max-width: 920px; margin-inline: auto; }
.lp-compare .row { display: grid; grid-template-columns: 1.5fr 1fr 1fr; }
.lp-compare .row + .row { border-top: 1px solid var(--line); }
.lp-compare .row > div { padding: 17px 22px; display: flex; align-items: center; gap: 10px; font-size: .96rem; color: var(--slate-600); }
.lp-compare .lbl { font-family: var(--font-display); font-weight: 600; color: var(--heading) !important; }
.lp-compare .head > div { background: var(--mist); font-family: var(--font-display); font-weight: 700; color: var(--heading); font-size: .95rem; }
.lp-compare .head .us { background: var(--navy-800); color: #fff; justify-content: center; }
.lp-compare .col-us { background: rgba(37, 99, 235, .045); justify-content: center; font-family: var(--font-display); font-weight: 600; color: var(--heading); }
.lp-compare .col-them { justify-content: center; }
.lp-compare .yes { color: #16a34a; } .lp-compare .no { color: #cbd5e1; }
.lp-compare svg { width: 21px; height: 21px; flex: none; }
@media (max-width: 620px) { .lp-compare .row { grid-template-columns: 1.3fr .75fr .75fr; } .lp-compare .row > div { padding: 13px 11px; font-size: .82rem; } }

/* inline email capture */
.lp-capture { display: flex; gap: 10px; max-width: 460px; margin: 26px auto 0; flex-wrap: wrap; justify-content: center; }
.lp-capture input { flex: 1; min-width: 220px; padding: 15px 18px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, .2); background: rgba(255, 255, 255, .08); color: #fff; font: inherit; }
.lp-capture input::placeholder { color: #9fb0d4; }
.lp-capture input:focus { outline: none; border-color: var(--gold-400); }
