/* =========================================================
   Manitoba Power Distribution Co. Ltd.
   Light premium design system — logo palette (azure + cyan)
   ========================================================= */

:root {
  /* brand (from logo) */
  --azure: #0870b8;
  --azure-deep: #075c97;
  --azure-darker: #064a7d;
  --cyan: #20a8e0;
  --cyan-light: #58c0e8;
  --sky: #88d0f0;

  /* surfaces */
  --bg: #ffffff;
  --bg-soft: #eef4fb;
  --bg-softer: #f6f9fd;
  --bg-tint: #e7f1fb;
  --surface: #ffffff;

  /* ink */
  --ink: #0c2238;
  --ink-2: #33506b;
  --ink-3: #6b8199;
  --ink-4: #9fb2c6;

  /* lines */
  --line: #e3edf7;
  --line-2: #d2e2f1;

  /* footer dark */
  --navy: #082138;
  --navy-2: #0c2b49;
  --navy-line: rgba(255,255,255,0.12);

  --grad: linear-gradient(118deg, #0870b8 0%, #20a8e0 100%);
  --grad-br: linear-gradient(135deg, #20a8e0 0%, #0870b8 100%);
  --grad-soft: linear-gradient(135deg, #eaf4fc 0%, #f3f9ff 100%);

  --shadow-xs: 0 1px 3px rgba(8,86,151,0.06);
  --shadow-sm: 0 4px 14px rgba(8,86,151,0.08);
  --shadow: 0 18px 44px -18px rgba(8,86,151,0.22);
  --shadow-lg: 0 34px 74px -26px rgba(8,86,151,0.30);
  --shadow-cyan: 0 14px 30px -10px rgba(32,168,224,0.45);

  --radius: 24px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --maxw: 1200px;

  --display: "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink-2);
  line-height: 1.65;
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 26px; }

/* ---------- Type ---------- */
h1,h2,h3,h4 { font-family: var(--display); color: var(--ink); line-height: 1.1; font-weight: 800; letter-spacing: -0.025em; }
h1 { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3rem); }
h3 { font-size: 1.3rem; font-weight: 700; }
p { color: var(--ink-2); }

.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-family: var(--body); font-size: 0.74rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--azure);
  padding: 8px 16px; border-radius: 999px;
  background: var(--bg-tint); border: 1px solid var(--line-2);
}
.eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(32,168,224,0.18); }
.eyebrow.on-dark { color: #cfeafb; background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.18); }

.gradient-text { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: transparent; }
.lead { font-size: 1.17rem; color: var(--ink-2); max-width: 60ch; }
.count-label { font-family: var(--display); font-size: 0.78rem; font-weight: 800; letter-spacing: 0.16em; text-transform: uppercase; color: var(--cyan); }

/* ---------- Nav ---------- */
.nav { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.82); backdrop-filter: blur(18px) saturate(160%); border-bottom: 1px solid var(--line); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; }
.brand { display: flex; align-items: center; }
.brand img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 9px 16px; border-radius: 999px; font-size: 0.93rem; font-weight: 600; color: var(--ink-2); transition: all 0.2s; }
.nav-links a:hover { color: var(--azure); background: var(--bg-soft); }
.nav-links a.active { color: var(--azure); background: var(--bg-tint); }
.nav-cta { padding: 11px 22px; border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: #fff; background: var(--grad); box-shadow: var(--shadow-cyan); transition: all 0.2s; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px -10px rgba(32,168,224,0.55); }
.menu-btn { display: none; background: var(--bg-soft); border: 1px solid var(--line); color: var(--azure); width: 46px; height: 46px; border-radius: 12px; cursor: pointer; font-size: 1.25rem; }

/* ---------- Buttons ---------- */
.btn { display: inline-flex; align-items: center; gap: 9px; padding: 15px 28px; border-radius: 999px; font-family: var(--display); font-weight: 700; font-size: 0.96rem; cursor: pointer; border: none; transition: transform 0.22s, box-shadow 0.22s, background 0.22s; }
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--shadow-cyan); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 22px 42px -12px rgba(32,168,224,0.6); }
.btn-ghost { background: #fff; color: var(--azure); border: 1.5px solid var(--line-2); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--cyan); box-shadow: var(--shadow-sm); }
.btn-white { background: #fff; color: var(--azure); }
.btn-white:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -14px rgba(0,0,0,0.3); }

/* ---------- Sections ---------- */
.section { padding: 104px 0; }
.section-sm { padding: 60px 0; }
.section.soft { background: var(--bg-soft); }
.section.softer { background: var(--bg-softer); }
.section-head { max-width: 66ch; margin-bottom: 50px; }
.section-head.center { text-align: center; margin-inline: auto; }
.section-head h2 { margin: 14px 0 14px; }

/* ---------- Cards ---------- */
.card { position: relative; background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-xs); transition: transform 0.28s, box-shadow 0.28s, border-color 0.28s; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.card .ic { width: 56px; height: 56px; border-radius: 16px; display: grid; place-items: center; margin-bottom: 20px; color: #fff; background: var(--grad); box-shadow: var(--shadow-cyan); }
.card .ic svg { width: 27px; height: 27px; }
.card h3 { margin-bottom: 10px; }
.card p { font-size: 0.96rem; }
.card.tint { background: var(--bg-soft); border-color: var(--line-2); }

.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }

/* ---------- Bento ---------- */
.bento { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
.bento .card { padding: 30px; }
.bento .span-2 { grid-column: span 2; }
.bento .feature { grid-column: span 2; grid-row: span 2; color: #fff; background: var(--grad); border: none; display: flex; flex-direction: column; justify-content: space-between; overflow: hidden; }
.bento .feature::after { content:""; position:absolute; right:-60px; bottom:-60px; width:240px; height:240px; border-radius:50%; background: rgba(255,255,255,0.12); }
.bento .feature h3 { color:#fff; font-size: 1.8rem; position: relative; }
.bento .feature p { color: rgba(255,255,255,0.92); position: relative; }
.bento .feature .ic { background: rgba(255,255,255,0.18); box-shadow: none; }
.bento .feature .chips .chip { background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.25); color:#fff; }

/* ---------- Hero (light) ---------- */
.hero { position: relative; padding: 86px 0 90px; overflow: hidden; background: var(--bg-soft); }
.hero::before { content:""; position:absolute; top:-200px; right:-160px; width:620px; height:620px; border-radius:50%; background: radial-gradient(circle, rgba(32,168,224,0.22), transparent 65%); pointer-events:none; }
.hero::after { content:""; position:absolute; bottom:-220px; left:-160px; width:560px; height:560px; border-radius:50%; background: radial-gradient(circle, rgba(8,112,184,0.14), transparent 65%); pointer-events:none; }
.hero .container { position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero h1 { margin: 22px 0 22px; }
.hero .lead { margin-bottom: 34px; font-size: 1.2rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-visual { position: relative; }

.hero-stats { display: flex; gap: 14px; margin-top: 44px; flex-wrap: wrap; }
.hero-stats .hs { padding: 16px 22px; border-radius: 16px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.hero-stats .hs .n { font-family: var(--display); font-weight: 800; font-size: 1.7rem; line-height: 1; color: var(--azure); }
.hero-stats .hs .l { font-size: 0.74rem; color: var(--ink-3); margin-top: 6px; }

/* floating badge over hero photo */
.float-card { position: absolute; background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 20px; box-shadow: var(--shadow); display: flex; align-items: center; gap: 14px; }
.float-card .fic { width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; color: #fff; background: var(--grad); flex: none; }
.float-card .fic svg { width: 22px; height: 22px; }
.float-card .n { font-family: var(--display); font-weight: 800; font-size: 1.3rem; line-height: 1; color: var(--ink); }
.float-card .l { font-size: 0.72rem; color: var(--ink-3); }
.float-card.a { top: 22px; left: -26px; }
.float-card.b { bottom: 26px; right: -22px; }

/* ---------- Video hero ---------- */
.hero-video { position: relative; min-height: 92vh; display: flex; align-items: center; overflow: hidden; padding: 110px 0 90px; background: var(--navy); }
.hero-video video, .hero-video .vbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-video .scrim { position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(100deg, rgba(6,28,49,0.92) 0%, rgba(8,57,103,0.74) 40%, rgba(8,112,184,0.34) 70%, rgba(32,168,224,0.18) 100%),
    linear-gradient(0deg, rgba(6,20,38,0.7) 0%, transparent 42%);
}
.hero-video .container { position: relative; z-index: 2; }
.hero-video .inner { max-width: 660px; }
.hero-video .eyebrow { color: #eaf6ff; background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.24); }
.hero-video .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.22); }
.hero-video h1 { color: #fff; margin: 24px 0 22px; text-shadow: 0 2px 30px rgba(0,0,0,0.25); }
.hero-video h1 .gradient-text { background: linear-gradient(110deg,#bfe9ff,#7fd0ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-video .lead { color: #dcebf7; color: #d7e8f6; font-size: 1.24rem; margin-bottom: 34px; max-width: 56ch; }
.hero-video .hero-actions { gap: 14px; }
.hero-video .btn-ghost { background: rgba(255,255,255,0.1); color: #fff; border-color: rgba(255,255,255,0.35); }
.hero-video .btn-ghost:hover { background: rgba(255,255,255,0.18); border-color: #fff; }
.hero-video .hero-stats .hs { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); backdrop-filter: blur(10px); }
.hero-video .hero-stats .hs .n { color: #fff; }
.hero-video .hero-stats .hs .l { color: rgba(255,255,255,0.8); }
.hero-scroll { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); z-index: 2; color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero-scroll::after { content: ""; width: 1px; height: 30px; background: linear-gradient(#fff, transparent); animation: cue 1.8s ease-in-out infinite; }
@keyframes cue { 0%,100% { opacity: 0.3; transform: scaleY(0.55); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Stats ---------- */
.stat { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 28px; box-shadow: var(--shadow-xs); transition: transform .25s, box-shadow .25s; }
.stat:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.stat .num { font-family: var(--display); font-size: 2.7rem; font-weight: 800; letter-spacing: -0.04em; color: var(--azure); line-height: 1; }
.stat .num .unit { font-size: 1.1rem; color: var(--cyan); }
.stat .label { font-size: 0.88rem; color: var(--ink-3); margin-top: 9px; }

/* ---------- Photo components ---------- */
.photo-frame { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.photo-frame img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.photo-frame:hover img { transform: scale(1.05); }
.photo-frame::after { content:""; position:absolute; inset:0; background: linear-gradient(160deg, transparent 55%, rgba(8,35,56,0.5)); }
.photo-frame .cap { position: absolute; left: 20px; bottom: 18px; z-index:2; font-size: 0.82rem; font-weight: 700; color: #fff; display: flex; align-items: center; gap: 8px; }
.photo-frame .cap::before { content:""; width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 0 4px rgba(32,168,224,0.4); }
.ratio-4-3 { aspect-ratio: 4/3; } .ratio-3-4 { aspect-ratio: 3/4; } .ratio-16-9 { aspect-ratio: 16/9; } .ratio-1-1 { aspect-ratio: 1/1; }

.media-card { position: relative; border-radius: var(--radius); overflow: hidden; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-xs); transition: transform .28s, box-shadow .28s, border-color .28s; }
.media-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--line-2); }
.media-card .thumb { position: relative; aspect-ratio: 16/10; overflow: hidden; }
.media-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s cubic-bezier(.2,.7,.2,1); }
.media-card:hover .thumb img { transform: scale(1.06); }
.media-card .thumb .badge { position: absolute; top: 14px; left: 14px; z-index: 2; padding: 6px 13px; border-radius: 999px; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; background: rgba(255,255,255,0.92); backdrop-filter: blur(6px); color: var(--azure); box-shadow: var(--shadow-sm); }
.media-card .body { padding: 26px 26px 30px; }
.media-card h3 { margin-bottom: 10px; }
.media-card p { font-size: 0.95rem; }

.feature-band { position: relative; border-radius: 28px; overflow: hidden; min-height: 460px; display: flex; align-items: flex-end; box-shadow: var(--shadow-lg); }
.feature-band img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.feature-band::after { content:""; position:absolute; inset:0; background: linear-gradient(150deg, rgba(8,112,184,0.55), rgba(8,33,56,0.88)); z-index:1; }
.feature-band .fb-content { position: relative; z-index: 2; padding: 50px; max-width: 640px; color: #fff; }
.feature-band .fb-content h2 { color: #fff; margin: 14px 0 14px; }
.feature-band .fb-content p { color: rgba(255,255,255,0.92); }
.feature-band .fb-content .feature-list li { color: rgba(255,255,255,0.94); }
.feature-band .fb-content .feature-list li::before { background: var(--cyan); }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 52px; align-items: center; }
.split-photo { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.split-photo.reverse > div:first-child { order: 2; }

.stat-on-photo { position: relative; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); }
.stat-on-photo img.bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.stat-on-photo::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, rgba(8,33,56,0.92), rgba(8,112,184,0.78)); z-index:1; }
.stat-on-photo .so-inner { position: relative; z-index: 2; padding: 46px; }
.stat-on-photo .stat { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); backdrop-filter: blur(6px); }
.stat-on-photo .stat .num { color: #fff; } .stat-on-photo .stat .num .unit { color: var(--sky); } .stat-on-photo .stat .label { color: rgba(255,255,255,0.85); }

/* ---------- Page head ---------- */
.page-head { padding: 76px 0 30px; position: relative; background: var(--bg-soft); overflow: hidden; }
.page-head::before { content:""; position:absolute; top:-160px; right:-120px; width:480px; height:480px; border-radius:50%; background: radial-gradient(circle, rgba(32,168,224,0.2), transparent 65%); }
.page-head .container { position: relative; z-index: 1; }
.page-head h1 { margin: 16px 0 16px; }
.page-head.with-photo .ph-bg { position:absolute; inset:0; z-index:0; }
.page-head.with-photo .ph-bg img { width:100%; height:100%; object-fit: cover; opacity: 0.16; }
.page-head.with-photo .ph-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(0deg, var(--bg) 2%, transparent 55%), linear-gradient(90deg, var(--bg-soft) 8%, transparent 60%); }
.breadcrumb { font-size: 0.85rem; color: var(--ink-3); }
.breadcrumb a:hover { color: var(--azure); }

/* ---------- Leadership ---------- */
.leaders { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; }
.leader { position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px 30px; text-align: center; box-shadow: var(--shadow-xs); transition: transform .3s, box-shadow .3s; overflow: hidden; }
.leader::before { content:""; position:absolute; top:0; left:0; right:0; height:90px; background: var(--grad-soft); }
.leader:hover { transform: translateY(-8px); box-shadow: var(--shadow); }
.leader .avatar { position: relative; width: 104px; height: 104px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; font-family: var(--display); font-weight: 800; font-size: 2rem; color: #fff; background: var(--grad); box-shadow: 0 0 0 6px #fff, 0 12px 26px -8px rgba(32,168,224,0.5); }
.leader .role { position: relative; display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cyan); margin-bottom: 12px; padding: 5px 13px; border-radius: 999px; background: var(--bg-tint); border: 1px solid var(--line-2); }
.leader h3 { font-size: 1.22rem; margin-bottom: 6px; }
.leader .creds { display: block; font-size: 0.74rem; font-weight: 700; letter-spacing: 0.06em; color: var(--azure); margin-bottom: 10px; }
.leader p { font-size: 0.94rem; }
.leader .socials { display: flex; gap: 10px; justify-content: center; margin-top: 18px; }
.leader .socials a { width: 36px; height: 36px; border-radius: 10px; display: grid; place-items: center; color: var(--ink-3); background: var(--bg-soft); border: 1px solid var(--line); transition: all .2s; }
.leader .socials a:hover { color: #fff; background: var(--azure); border-color: var(--azure); }
.leader .socials svg { width: 17px; height: 17px; }

/* ---------- Timeline ---------- */
.timeline { position: relative; padding-left: 36px; }
.timeline::before { content:""; position:absolute; left:9px; top:6px; bottom:6px; width:2px; background: linear-gradient(var(--cyan), var(--line-2)); }
.tl-item { position: relative; margin-bottom: 34px; }
.tl-item::before { content:""; position:absolute; left:-36px; top:3px; width:20px; height:20px; border-radius:50%; background:#fff; border:3px solid var(--cyan); box-shadow: 0 0 0 4px rgba(32,168,224,0.14); }
.tl-item h3 { margin-bottom: 6px; }
.tl-item .when { font-size: 0.74rem; color: var(--azure); font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; }

/* ---------- Chips / marquee ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { padding: 9px 17px; border-radius: 999px; font-size: 0.85rem; font-weight: 600; background: var(--bg-soft); border: 1px solid var(--line); color: var(--ink-2); }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 60px; width: max-content; animation: scroll 28s linear infinite; }
.marquee-track span { font-family: var(--display); font-weight: 800; font-size: 1.05rem; letter-spacing: 0.04em; color: var(--ink-4); white-space: nowrap; display: inline-flex; align-items: center; gap: 14px; }
.marquee-track span::before { content:""; width: 6px; height: 6px; border-radius: 50%; background: var(--cyan); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow-xs); }
table { width: 100%; border-collapse: collapse; min-width: 520px; background: #fff; }
th,td { text-align: left; padding: 15px 18px; font-size: 0.92rem; }
thead th { background: var(--bg-soft); color: var(--ink); font-weight: 700; font-size: 0.76rem; letter-spacing: 0.06em; text-transform: uppercase; }
tbody tr { border-top: 1px solid var(--line); }
tbody tr:hover { background: var(--bg-softer); }
td { color: var(--ink-2); }
td .tag { font-weight: 700; color: var(--azure); }

/* ---------- Coverage map (light) ---------- */
.coverage { position: relative; border-radius: var(--radius); overflow: hidden; min-height: 340px; background: linear-gradient(160deg, #eaf4fc, #dcecf9); border: 1px solid var(--line-2); background-image: radial-gradient(circle, rgba(8,112,184,0.14) 1px, transparent 1.6px); background-size: 26px 26px; box-shadow: var(--shadow-xs); }
.coverage .pin { position: absolute; width: 12px; height: 12px; border-radius: 50%; background: var(--azure); box-shadow: 0 0 0 5px rgba(32,168,224,0.2); animation: ping 2.6s ease-out infinite; }
.coverage .pin::after { content: attr(data-label); position: absolute; left: 18px; top: -4px; white-space: nowrap; font-size: 0.78rem; font-weight: 700; color: var(--ink); }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(32,168,224,0.45); } 70%,100% { box-shadow: 0 0 0 16px rgba(32,168,224,0); } }

/* ---------- Forms ---------- */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--ink-2); margin-bottom: 8px; }
.field input, .field select, .field textarea { width: 100%; padding: 13px 15px; border-radius: 12px; background: var(--bg-softer); border: 1.5px solid var(--line); color: var(--ink); font-family: inherit; font-size: 0.95rem; transition: border-color .2s, box-shadow .2s, background .2s; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; background: #fff; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(32,168,224,0.15); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 0.82rem; color: var(--ink-4); margin-top: 4px; }
.form-success { display: none; padding: 16px 18px; border-radius: 12px; background: var(--bg-tint); border: 1px solid var(--line-2); color: var(--azure-deep); font-weight: 600; margin-top: 16px; }

/* ---------- Banner ---------- */
.banner { position: relative; background: var(--grad); border-radius: 30px; padding: 64px; text-align: center; overflow: hidden; color: #fff; box-shadow: var(--shadow-lg); }
.banner::before { content:""; position:absolute; right:-80px; top:-80px; width:320px; height:320px; border-radius:50%; background: rgba(255,255,255,0.12); }
.banner::after { content:""; position:absolute; left:-100px; bottom:-100px; width:320px; height:320px; border-radius:50%; background: rgba(255,255,255,0.08); }
.banner > * { position: relative; }
.banner h2 { color: #fff; margin-bottom: 14px; }
.banner p { max-width: 56ch; margin: 0 auto 28px; color: rgba(255,255,255,0.94); }
.banner .eyebrow { color: #fff; background: rgba(255,255,255,0.16); border-color: rgba(255,255,255,0.25); }
.banner .eyebrow::before { background: #fff; box-shadow: 0 0 0 4px rgba(255,255,255,0.2); }

/* ---------- Footer (dark) ---------- */
.footer { background: var(--navy); color: rgba(255,255,255,0.72); padding: 64px 0 34px; margin-top: 0; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr 1fr; gap: 38px; margin-bottom: 42px; }
.footer img.flogo { height: 40px; width: auto; margin-bottom: 18px; }
.footer h4 { font-family: var(--body); font-size: 0.76rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.footer a { display: block; color: rgba(255,255,255,0.72); font-size: 0.92rem; padding: 5px 0; transition: color .2s; }
.footer a:hover { color: var(--cyan-light); }
.footer .muted { font-size: 0.92rem; color: rgba(255,255,255,0.6); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; border-top: 1px solid var(--navy-line); font-size: 0.85rem; color: rgba(255,255,255,0.5); flex-wrap: wrap; gap: 12px; }

/* ---------- Misc ---------- */
.feature-list { list-style: none; }
.feature-list li { position: relative; padding-left: 30px; margin-bottom: 14px; color: var(--ink-2); font-size: 0.97rem; }
.feature-list li::before { content:""; position:absolute; left:0; top:7px; width:16px; height:16px; border-radius:5px; background: var(--grad); box-shadow: var(--shadow-cyan); }
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .split, .split-photo { grid-template-columns: 1fr; }
  .split-photo.reverse > div:first-child { order: 0; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-3, .leaders { grid-template-columns: 1fr; }
  .bento { grid-template-columns: repeat(2,1fr); }
  .bento .feature, .bento .span-2 { grid-column: span 2; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links, .nav-cta { display: none; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 78px; left: 0; right: 0; background: #fff; padding: 16px 24px; gap: 6px; border-bottom: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.open a { padding: 13px 16px; }
  .menu-btn { display: block; }
  .float-card.a { left: 8px; } .float-card.b { right: 8px; }
  .feature-band .fb-content { padding: 34px; }
  .hero-video { min-height: 78vh; padding: 90px 0 70px; }
  .hero-scroll { display: none; }
}
@media (max-width: 600px) {
  .grid-2, .grid-4, .bento { grid-template-columns: 1fr; }
  .bento .feature, .bento .span-2 { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .banner { padding: 40px 24px; }
  .section { padding: 72px 0; }
  .float-card { display: none; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal { opacity: 1; transform: none; }
}
