/* =========================================================================
   Digital Peacock — Digital Transformation
   Design system: refined corporate-tech, peacock green ↔ deep blue
   ========================================================================= */

:root {
  /* Brand palette */
  --ink:        #0A1118;   /* near-black body text */
  --ink-soft:   #43525e;   /* muted text */
  --ink-faint:  #7b8a95;   /* captions */
  --white:      #ffffff;
  --paper:      #f5f8f6;   /* off-white sections */
  --paper-2:    #eef3f0;
  --line:       #e2e9e5;   /* hairlines */

  --navy:       #0b2a4a;   /* deep blue */
  --navy-deep:  #071d36;
  --blue:       #1463d6;   /* brand blue */
  --blue-bright:#2f86ff;
  --teal:       #0f9d8e;   /* peacock bridge */
  --green:      #0e8c66;   /* peacock green */
  --green-bright:#19b487;
  --gold:       #e7b53c;   /* peacock eye accent (sparing) */

  --grad-feather: linear-gradient(135deg, #19b487 0%, #0f9d8e 38%, #1463d6 100%);
  --grad-ink:     linear-gradient(135deg, #0b2a4a 0%, #071d36 100%);

  --shadow-sm: 0 1px 2px rgba(11,42,74,.06), 0 2px 8px rgba(11,42,74,.05);
  --shadow-md: 0 8px 24px rgba(11,42,74,.08), 0 2px 6px rgba(11,42,74,.05);
  --shadow-lg: 0 24px 60px rgba(11,42,74,.14), 0 6px 18px rgba(11,42,74,.08);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --font-display: "Times New Roman", "Tinos", Georgia, "Times", serif;
  --font-body: "Roboto", system-ui, -apple-system, "Segoe UI", sans-serif;

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 64px);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

/* ---------- type ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 4.7rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); letter-spacing: -0.005em; }
p  { color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px; border-radius: 2px;
  background: var(--grad-feather);
}
.grad-text {
  background: var(--grad-feather);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
section { position: relative; }
.section-pad { padding-block: clamp(64px, 9vw, 130px); }
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--ink-soft); max-width: 60ch; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .92rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: .98rem; letter-spacing: -.01em;
  border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .2s ease;
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--grad-feather); color: #fff; box-shadow: 0 10px 22px rgba(15,157,142,.28); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 30px rgba(15,157,142,.36); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.25); }
.btn-light:hover { background: rgba(255,255,255,.18); transform: translateY(-2px); }
.btn .arrow { transition: transform .25s ease; }
.btn:hover .arrow { transform: translate(3px,-3px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(160%) blur(14px);
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled { background: rgba(255,255,255,.9); border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-display); font-weight: 400; font-size: 1.42rem; letter-spacing: 0; }
.brand .logo { width: 38px; height: 38px; flex: none; }
.brand b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 600; font-size: .97rem; color: var(--ink-soft); position: relative; transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 2px; width: 0;
  background: var(--grad-feather); border-radius: 2px; transition: width .25s ease;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: 1.25rem; }
.nav-toggle { display: none; background: none; border: 0; width: 44px; height: 44px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px auto; border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: clamp(48px, 8vw, 96px); padding-bottom: clamp(56px, 8vw, 110px); overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.hero h1 { margin-top: 1.1rem; }
.hero .lead { margin-top: 1.4rem; }
.hero-cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero-meta { display: flex; gap: 2.2rem; margin-top: 2.6rem; flex-wrap: wrap; }
.hero-meta .stat strong { font-family: var(--font-display); font-size: 1.9rem; font-weight: 700; display: block; line-height: 1; }
.hero-meta .stat span { font-size: .85rem; color: var(--ink-faint); }

/* atmospheric background */
.aurora { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.aurora::before, .aurora::after {
  content: ""; position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5;
}
.aurora::before { width: 540px; height: 540px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, #19b487, transparent 70%); }
.aurora::after { width: 460px; height: 460px; bottom: -200px; left: -120px; background: radial-gradient(circle at 60% 40%, #2f86ff, transparent 70%); opacity: .35; }
.grid-bg {
  position: absolute; inset: 0; z-index: -1; opacity: .5;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
          mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 75%);
}

/* hero visual — peacock data feather */
.hero-visual { position: relative; aspect-ratio: 1/1; }
.hero-visual .orb {
  position: absolute; inset: 6%; border-radius: 36% 64% 58% 42% / 46% 38% 62% 54%;
  background: var(--grad-feather); filter: blur(2px); opacity: .14;
  animation: morph 16s ease-in-out infinite;
}
@keyframes morph {
  0%,100% { border-radius: 36% 64% 58% 42% / 46% 38% 62% 54%; }
  50%     { border-radius: 60% 40% 42% 58% / 56% 60% 40% 44%; }
}
.float-card {
  position: absolute; background: rgba(255,255,255,.85); backdrop-filter: blur(10px);
  border: 1px solid var(--line); border-radius: var(--r-md); box-shadow: var(--shadow-md);
  padding: .9rem 1.05rem; display: flex; align-items: center; gap: .7rem; font-weight: 600; font-size: .9rem;
}
.float-card .dot { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; color: #fff; flex: none; }
.float-card small { display: block; color: var(--ink-faint); font-weight: 500; font-size: .76rem; }
.fc-1 { top: 8%; left: -4%; animation: floaty 7s ease-in-out infinite; }
.fc-2 { top: 40%; right: -6%; animation: floaty 8s ease-in-out infinite .6s; }
.fc-3 { bottom: 8%; left: 6%; animation: floaty 6.5s ease-in-out infinite 1.2s; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* ---------- marquee / trust ---------- */
.trust { border-block: 1px solid var(--line); background: var(--paper); }
.trust .wrap { display: flex; align-items: center; gap: clamp(20px,5vw,64px); flex-wrap: wrap; padding-block: 26px; }
.trust p { font-size: .82rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-weight: 700; flex: none; }
.trust ul { display: flex; gap: clamp(18px,4vw,48px); flex-wrap: wrap; align-items: center; }
.trust li { font-family: var(--font-display); font-weight: 700; font-size: 1.05rem; color: var(--navy); opacity: .8; }

/* ---------- section heading ---------- */
.sec-head { max-width: 62ch; }
.sec-head.center { margin-inline: auto; text-align: center; }
.sec-head h2 { margin-top: .9rem; }
.sec-head p { margin-top: 1rem; font-size: 1.08rem; }

/* ---------- capability cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; margin-top: 3rem; }
.card {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.9rem; overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.card::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: var(--grad-feather); transform: scaleX(0); transform-origin: left; transition: transform .35s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }
.card .ic { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: #fff; margin-bottom: 1.2rem; box-shadow: var(--shadow-sm); }
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: .55rem; }
.card p { font-size: .98rem; }
.card .more { display: inline-flex; align-items: center; gap: .4rem; margin-top: 1.1rem; font-weight: 700; font-size: .9rem; color: var(--green); }
.bg-green { background: linear-gradient(135deg,#19b487,#0e8c66); }
.bg-teal  { background: linear-gradient(135deg,#16b3a3,#0f9d8e); }
.bg-blue  { background: linear-gradient(135deg,#2f86ff,#1463d6); }
.bg-navy  { background: linear-gradient(135deg,#15457a,#0b2a4a); }

/* ---------- sectors ---------- */
.sectors { background: var(--grad-ink); color: #fff; }
.sectors h2, .sectors h3 { color: #fff; }
.sectors .sec-head p { color: rgba(255,255,255,.72); }
.sectors .eyebrow { color: var(--green-bright); }
.sector-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; grid-auto-rows: 1fr; gap: 20px; margin-top: 3rem; }
.sector {
  position: relative; border: 1px solid rgba(255,255,255,.12); border-radius: var(--r-lg);
  padding: 1.8rem; background: rgba(255,255,255,.04); overflow: hidden;
  transition: transform .3s ease, background .3s ease, border-color .3s ease;
}
.sector:hover { transform: translateY(-5px); background: rgba(255,255,255,.07); border-color: rgba(25,180,135,.5); }
.sector.feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: space-between; background: linear-gradient(160deg, rgba(25,180,135,.16), rgba(20,99,214,.1)); border-color: rgba(25,180,135,.35); }
.sector .tag { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green-bright); }
.sector h3 { margin: .8rem 0 .5rem; }
.sector p { color: rgba(255,255,255,.7); font-size: .95rem; }
.sector .ic { width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; background: rgba(255,255,255,.08); color: var(--green-bright); }
.sector .ic svg { width: 24px; height: 24px; }
.sector.feature ul { margin-top: 1.4rem; display: grid; gap: .7rem; }
.sector.feature li { display: flex; gap: .6rem; align-items: flex-start; color: rgba(255,255,255,.82); font-size: .94rem; }
.sector.feature li svg { width: 18px; height: 18px; color: var(--green-bright); flex: none; margin-top: 3px; }

/* ---------- approach / steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-top: 3rem; counter-reset: step; }
.step { position: relative; padding: 2rem 1.6rem 1.7rem; border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--white); transition: transform .3s ease, box-shadow .3s ease; }
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step .n { font-family: var(--font-display); font-weight: 700; font-size: 2.6rem; line-height: 1; background: var(--grad-feather); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.step h3 { margin: .9rem 0 .5rem; font-size: 1.2rem; }
.step p { font-size: .94rem; }
.step .line { position: absolute; top: 2.6rem; right: -10px; width: 20px; height: 2px; background: var(--line); }

/* ---------- metrics band ---------- */
.metrics { background: var(--paper); border-block: 1px solid var(--line); }
.metric-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.metric { text-align: center; }
.metric strong { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(2.4rem,4.5vw,3.4rem); line-height: 1; background: var(--grad-feather); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.metric span { display: block; margin-top: .6rem; color: var(--ink-soft); font-size: .95rem; font-weight: 500; }

/* ---------- split / feature row ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,5vw,72px); align-items: center; }
.split.reverse .split-media { order: 2; }
.checklist { display: grid; gap: 1rem; margin-top: 1.8rem; }
.checklist li { display: flex; gap: .8rem; align-items: flex-start; }
.checklist .tick { width: 26px; height: 26px; border-radius: 8px; background: rgba(14,140,102,.12); color: var(--green); display: grid; place-items: center; flex: none; }
.checklist .tick svg { width: 16px; height: 16px; }
.checklist b { display: block; color: var(--ink); }
.checklist p { font-size: .94rem; margin-top: .15rem; }
.panel {
  border-radius: var(--r-xl); padding: clamp(28px,4vw,44px); background: var(--grad-ink); color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.panel::after { content:""; position:absolute; width:280px; height:280px; right:-80px; top:-80px; border-radius:50%; background: radial-gradient(circle,#19b487,transparent 70%); opacity:.35; }
.panel h3 { color: #fff; }
.panel .kpi { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 1.6rem; }
.panel .kpi div { border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-md); padding: 1.1rem; background: rgba(255,255,255,.04); }
.panel .kpi strong { font-family: var(--font-display); font-size: 1.7rem; color: var(--green-bright); display: block; }
.panel .kpi span { font-size: .82rem; color: rgba(255,255,255,.7); }

/* ---------- service detail (services page) ---------- */
.svc { display: grid; grid-template-columns: 320px 1fr; gap: clamp(28px,4vw,56px); padding-block: clamp(40px,5vw,64px); border-top: 1px solid var(--line); align-items: start; }
.svc:first-of-type { border-top: 0; }
.svc-aside { position: sticky; top: 100px; }
.svc-aside .ic { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; color: #fff; margin-bottom: 1.2rem; box-shadow: var(--shadow-md); }
.svc-aside .ic svg { width: 30px; height: 30px; }
.svc-aside .num { font-family: var(--font-display); font-weight: 700; color: var(--paper-2); font-size: 3rem; line-height: 1; -webkit-text-stroke: 1.5px var(--line); color: transparent; }
.svc-body h3 { font-size: clamp(1.5rem,2.6vw,2.1rem); }
.svc-body > p { margin-top: 1rem; font-size: 1.06rem; }
.svc-features { display: grid; grid-template-columns: 1fr 1fr; gap: 1.4rem 2rem; margin-top: 1.8rem; }
.svc-features li b { display: flex; align-items: center; gap: .55rem; color: var(--ink); }
.svc-features li b svg { width: 18px; height: 18px; color: var(--green); flex: none; }
.svc-features li p { font-size: .92rem; margin-top: .3rem; padding-left: 1.55rem; }

/* ---------- CTA / contact ---------- */
.cta { background: var(--grad-ink); color: #fff; overflow: hidden; position: relative; }
.cta .aurora::before { opacity:.4; }
.cta-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px,5vw,72px); align-items: center; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255,255,255,.74); margin-top: 1rem; font-size: 1.08rem; }
.cta .ways { margin-top: 2rem; display: grid; gap: 1rem; }
.cta .ways a { display: inline-flex; align-items: center; gap: .7rem; color: rgba(255,255,255,.85); font-weight: 600; }
.cta .ways .ic { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.08); display: grid; place-items: center; color: var(--green-bright); }
.cta .ways .ic svg { width: 19px; height: 19px; }

.form { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: var(--r-xl); padding: clamp(24px,3vw,36px); backdrop-filter: blur(8px); }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field { margin-bottom: 14px; }
.field label { display: block; font-size: .82rem; font-weight: 600; color: rgba(255,255,255,.75); margin-bottom: .4rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); font: inherit; font-size: .95rem;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.16); color: #fff; transition: border-color .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,.4); }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--green-bright); background: rgba(255,255,255,.1); }
.field select option { color: #0a1118; }
.form .btn-primary { width: 100%; justify-content: center; margin-top: .4rem; }
.form .note { font-size: .78rem; color: rgba(255,255,255,.55); margin-top: .9rem; text-align: center; }

/* ---------- footer ---------- */
.site-footer { background: var(--navy-deep); color: rgba(255,255,255,.7); padding-block: clamp(48px,6vw,72px) 32px; }
.foot-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; }
.site-footer .brand { color: #fff; margin-bottom: 1rem; }
.site-footer p { color: rgba(255,255,255,.6); font-size: .95rem; max-width: 38ch; }
.foot-grid h4 { color: #fff; font-size: .85rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.1rem; font-family: var(--font-body); font-weight: 700; }
.foot-grid li { margin-bottom: .6rem; }
.foot-grid a { color: rgba(255,255,255,.65); font-size: .95rem; transition: color .2s; }
.foot-grid a:hover { color: var(--green-bright); }
.foot-bottom { margin-top: clamp(36px,5vw,56px); padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; color: rgba(255,255,255,.5); }

/* ---------- page hero (inner pages) ---------- */
.page-hero { padding-top: clamp(56px,7vw,90px); padding-bottom: clamp(40px,5vw,60px); position: relative; overflow: hidden; }
.page-hero .lead { margin-top: 1.3rem; }

/* ---------- reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
[data-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
[data-stagger].in > * { opacity: 1; transform: none; }
[data-stagger].in > *:nth-child(1){ transition-delay:.05s; }
[data-stagger].in > *:nth-child(2){ transition-delay:.13s; }
[data-stagger].in > *:nth-child(3){ transition-delay:.21s; }
[data-stagger].in > *:nth-child(4){ transition-delay:.29s; }
[data-stagger].in > *:nth-child(5){ transition-delay:.37s; }
[data-stagger].in > *:nth-child(6){ transition-delay:.45s; }

/* ---------- responsive ---------- */
@media (max-width: 940px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { max-width: 460px; margin-inline: auto; order: -1; }
  .cards, .svc-features, .panel .kpi { grid-template-columns: 1fr; }
  .sector-grid { grid-template-columns: 1fr 1fr; }
  .sector.feature { grid-row: auto; grid-column: 1 / -1; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step .line { display: none; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .cta-grid { grid-template-columns: 1fr; }
  .svc { grid-template-columns: 1fr; }
  .svc-aside { position: static; display: flex; align-items: center; gap: 1.2rem; }
  .svc-aside .ic { margin-bottom: 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav-links { position: fixed; inset: 76px 0 auto 0; flex-direction: column; align-items: flex-start; gap: 0; background: #fff; padding: 12px var(--gutter) 24px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); transform: translateY(-130%); transition: transform .35s ease; }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--line); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn:not(.nav-toggle) { display: none; }
  .cards, .sector-grid, .steps, .metric-grid, .foot-grid, .form .row { grid-template-columns: 1fr; }
  .hero-meta { gap: 1.4rem; }
  .float-card { display: none; }
  .hero-visual { max-width: 300px; }
}

/* ---------- brand tagline ---------- */
.brand-tag {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: .01em;
  color: var(--green);
  margin-top: .5rem;
}
.hero .brand-tag { font-size: 1.15rem; margin-top: 1.1rem; }
.site-footer .brand-tag { color: var(--green-bright); margin-bottom: 1rem; }

/* ---------- card grid column variants (responsive) ---------- */
.cards.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cards.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 940px) {
  .cards.cols-3, .cards.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .cards.cols-3, .cards.cols-4 { grid-template-columns: 1fr; }
}

/* ---------- brand logo (single SVG wordmark) ---------- */
.brand-logo { height: 32px; width: auto; display: block; }
.site-footer .brand-logo { height: 30px; margin-bottom: .9rem; }
@media (max-width: 680px) { .brand-logo { height: 27px; } }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal, [data-stagger] > * { opacity: 1; transform: none; }
}

/* =========================================================================
   Brand wordmark — legacy peacock graphic as the "o" in Peacock
   ========================================================================= */
.brand { gap: .1rem; }
.brand .wordmark { display: inline-flex; align-items: baseline; white-space: nowrap; line-height: 1; }
.brand .logo-o {
  width: .92em; height: .92em; display: inline-block;
  margin: 0 .01em; transform: translateY(.12em);
  flex: none;
}
.site-footer .brand .logo-o, .site-footer .brand { color: #fff; }

/* =========================================================================
   Blog — listing + article
   ========================================================================= */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-top: 3rem; }
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.post-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.post-card .thumb {
  aspect-ratio: 16 / 10; display: grid; place-items: center; position: relative; overflow: hidden;
}
.post-card .thumb svg { width: 56px; height: 56px; color: #fff; opacity: .95; position: relative; z-index: 1; }
.post-card .thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.28), transparent 55%); }
.post-card .pbody { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.post-card .cat { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.post-card h3 { margin: .6rem 0 .55rem; font-size: 1.28rem; }
.post-card .excerpt { font-size: .96rem; color: var(--ink-soft); flex: 1; }
.post-card .pmeta { margin-top: 1.2rem; display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--ink-faint); }
.post-card .pmeta .dotsep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
.post-card .readmore { margin-top: 1rem; font-weight: 700; font-size: .9rem; color: var(--green); display: inline-flex; align-items: center; gap: .4rem; }

.featured-post { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; margin-top: 2.4rem; background: var(--white); }
.featured-post .thumb { min-height: 280px; display: grid; place-items: center; position: relative; overflow: hidden; }
.featured-post .thumb svg { width: 90px; height: 90px; color: #fff; position: relative; z-index: 1; }
.featured-post .thumb::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.25), transparent 55%); }
.featured-post .fbody { padding: clamp(28px,4vw,48px); align-self: center; }
.featured-post .cat { font-size: .74rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.featured-post h2 { margin: .8rem 0 .8rem; }
.featured-post p { font-size: 1.05rem; }

/* article / prose */
.article { max-width: 760px; margin-inline: auto; }
.article-head { max-width: 760px; margin-inline: auto; text-align: center; }
.article-head .cat { color: var(--green); font-weight: 700; letter-spacing: .12em; text-transform: uppercase; font-size: .78rem; }
.article-head h1 { font-size: clamp(2.1rem, 4.5vw, 3.3rem); margin: 1rem 0 1.2rem; }
.article-head .pmeta { display: inline-flex; align-items: center; gap: .6rem; font-size: .9rem; color: var(--ink-faint); }
.article-head .pmeta .dotsep { width: 3px; height: 3px; border-radius: 50%; background: var(--ink-faint); }
.article-banner { height: clamp(180px, 30vw, 300px); border-radius: var(--r-xl); margin: 2.4rem auto 0; max-width: 980px; display: grid; place-items: center; position: relative; overflow: hidden; }
.article-banner svg { width: 84px; height: 84px; color: #fff; position: relative; z-index: 1; }
.article-banner::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 75% 20%, rgba(255,255,255,.25), transparent 55%); }
.prose { font-size: 1.08rem; line-height: 1.75; color: var(--ink-soft); }
.prose > * + * { margin-top: 1.2rem; }
.prose h2 { font-size: clamp(1.5rem, 3vw, 2rem); color: var(--ink); margin-top: 2.6rem; }
.prose h3 { font-size: 1.3rem; color: var(--ink); margin-top: 2rem; }
.prose p { color: var(--ink-soft); }
.prose strong { color: var(--ink); }
.prose ul.bullets { display: grid; gap: .7rem; }
.prose ul.bullets li { position: relative; padding-left: 1.7rem; }
.prose ul.bullets li::before { content: ""; position: absolute; left: 0; top: .55em; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-feather); }
.prose blockquote { border-left: 3px solid var(--green); padding: .4rem 0 .4rem 1.4rem; margin: 2rem 0; font-size: 1.2rem; color: var(--ink); font-style: italic; }
.prose a { color: var(--green); text-decoration: underline; text-underline-offset: 3px; }
.article-foot { max-width: 760px; margin: 3rem auto 0; padding-top: 2rem; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

@media (max-width: 940px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .featured-post { grid-template-columns: 1fr; }
  .featured-post .thumb { min-height: 200px; }
}
@media (max-width: 680px) {
  .blog-grid { grid-template-columns: 1fr; }
}
