/* =========================================================
   Skye Consortium: agency-style redesign
   Inspiration: alternating light/dark bands, big type,
   doodle accents, avatar hero, stat blocks, case blocks.
   Palette: all-blue, calm. Headings: Space Grotesk.
   ========================================================= */

/* ---------------- Tokens ---------------- */
:root {
  --ink: #10233f;
  --ink-soft: #51617a;
  --ink-on-dark: #e9f0fb;
  --ink-on-dark-soft: #a6b9d6;

  --band: #ffffff;
  --band-alt: #e9f1fb;
  --band-dark: #0e2140;
  --band-dark-2: #13294d;

  --card: #ffffff;
  --card-alt: #f2f7fd;

  --line: #dde8f4;
  --line-dark: rgba(255, 255, 255, 0.12);

  --accent: #2f6bd0;
  --accent-strong: #234f9e;
  --accent-soft: #6fa8dc;
  --powder: #cfe2f6;
  --pale: #e9f1fb;

  /* Fixed saturated blues for case blocks (theme-independent) */
  --blk-navy: #12294d;
  --blk-royal: #2f6bd0;
  --blk-sky: #6fa8dc;
  --blk-powder: #cfe2f6;

  --radius: 22px;
  --radius-lg: 30px;
  --radius-sm: 14px;
  --shadow-sm: 0 2px 8px rgba(16, 35, 63, 0.06);
  --shadow-md: 0 18px 44px rgba(16, 35, 63, 0.12);
  --max: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --head: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --body: "Nunito Sans", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Lock the site to its light soft-blue scheme regardless of the
     viewer's OS/browser dark-mode preference. */
  color-scheme: light;
}

/* ---------------- Reset / base ---------------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink);
  background: var(--band);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; }
p { font-size: 1.05rem; line-height: 1.68; }
h1, h2, h3, h4 { font-family: var(--head); font-weight: 600; line-height: 1.12; letter-spacing: -0.02em; color: var(--ink); }
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.material-symbols-outlined { font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; user-select: none; }

/* ---------------- Eyebrow ---------------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 22px; height: 2px; border-radius: 2px; background: var(--accent); }
.on-dark .eyebrow { color: var(--accent-soft); }
.on-dark .eyebrow::before { background: var(--accent-soft); }

/* ---------------- Buttons ---------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 28px; border-radius: 999px; border: none; cursor: pointer;
  font-family: var(--body); font-size: 0.98rem; font-weight: 700; white-space: nowrap;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn .material-symbols-outlined { font-size: 20px; }
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-strong); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--ink); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.on-dark .btn-ghost { color: #fff; border-color: rgba(255, 255, 255, 0.28); }
.on-dark .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.06); }
.btn .arrow { transition: transform 0.2s var(--ease); }
.btn:hover .arrow { transform: translateX(3px); }

/* ---------------- Navbar (rebuilt, seam-free) ---------------- */
.navbar {
  position: sticky; top: 0; z-index: 60; background: var(--band);
  /* 1px shadow the same colour as the bar covers the sub-pixel sticky seam */
  box-shadow: 0 1px 0 var(--band), 0 3px 10px rgba(16, 35, 63, 0.07);
  transition: box-shadow 0.25s ease;
}
.navbar.is-scrolled { box-shadow: 0 1px 0 var(--band), var(--shadow-md); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 76px; }
.navbar-brand { display: inline-flex; align-items: center; }
.navbar-brand img { height: 52px; width: auto; display: block; transition: transform 0.4s var(--ease); }
.navbar-brand:hover img { transform: translateY(-2px) scale(1.03); }
.navbar-menu { display: flex; align-items: center; gap: 30px; }
.navbar-menu > a { color: var(--ink-soft); font-weight: 500; font-size: 0.96rem; position: relative; }
.navbar-menu > a:hover { color: var(--ink); }
.navbar-menu > a.active { color: var(--accent); }
.navbar-menu > a:not(.navbar-cta)::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.25s var(--ease);
}
.navbar-menu > a:not(.navbar-cta):hover::after, .navbar-menu > a.active:not(.navbar-cta)::after { transform: scaleX(1); }
.navbar-cta {
  padding: 10px 18px; border-radius: 999px; background: var(--accent); color: #fff;
  font-family: var(--body); font-weight: 700; font-size: 0.88rem;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}
.navbar-cta:hover { background: var(--accent-strong); color: #fff; transform: translateY(-1px); }
.navbar-toggle { display: none; background: none; border: none; color: var(--ink); cursor: pointer; padding: 4px; }
@media (max-width: 640px) {
  .navbar-menu {
    position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px;
    background: var(--band); padding: 14px 20px 22px; display: none; box-shadow: var(--shadow-md);
  }
  .navbar-menu.is-open { display: flex; }
  .navbar-menu > a:not(.navbar-cta) { padding: 10px 0; }
  .navbar-cta { text-align: center; margin-top: 8px; }
  .navbar-toggle { display: inline-grid; }
}

/* Footer brand (shared logo styles) */
.brand { display: inline-flex; align-items: center; gap: 11px; font-family: var(--head); font-weight: 700; font-size: 1.25rem; color: var(--ink); letter-spacing: -0.02em; }
.brand-logo { height: 52px; width: auto; display: block; }
.site-footer .brand-logo { height: 58px; }

/* ---------------- Section scaffolding ---------------- */
section { padding: 92px 0; position: relative; }
.band-alt { background: var(--band-alt); }
.band-dark, .on-dark { background: var(--band-dark); color: var(--ink-on-dark); }
.on-dark h1, .on-dark h2, .on-dark h3, .on-dark h4 { color: #fff; }
.on-dark .muted { color: var(--ink-on-dark-soft); }
.muted { color: var(--ink-soft); }

.section-head { max-width: 60ch; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 4vw, 3rem); margin-bottom: 14px; }
.section-head p { font-size: 1.2rem; }

/* ---------------- Doodles ---------------- */
.doodle { position: absolute; z-index: 0; pointer-events: none; color: var(--accent-soft); opacity: 0.9; }
.on-dark .doodle { color: var(--accent-soft); opacity: 0.5; }

/* ---------------- Hero ---------------- */
.hero { background: linear-gradient(180deg, var(--band) 0%, var(--band-alt) 240px); padding: 84px 0 96px; overflow: hidden; text-align: center; margin-top: -1px; }
.hero .container { position: relative; z-index: 2; }
.hero-inner { max-width: 760px; margin: 0 auto; }
.hero-logo { display: block; height: 84px; width: auto; margin: 0 auto 22px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: 999px;
  background: var(--card); border: 1px solid var(--line); color: var(--ink-soft);
  font-size: 0.85rem; font-weight: 500; margin-bottom: 24px; box-shadow: var(--shadow-sm);
}
.hero-badge .material-symbols-outlined { font-size: 18px; color: var(--accent); }
.hero h1 { font-size: clamp(2.6rem, 6.2vw, 4.6rem); margin-bottom: 22px; }
.hero h1 .u { position: relative; white-space: nowrap; }
.hero h1 .u::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0.08em; height: 0.14em; border-radius: 4px;
  background: var(--accent-soft); z-index: -1;
}
.hero-sub { font-size: 1.28rem; color: var(--ink-soft); max-width: 58ch; margin: 0 auto 32px; }

/* Inline email capture (reference style) */
.capture { display: flex; gap: 8px; align-items: center; max-width: 470px; margin: 0 auto 18px; background: var(--card); border: 1px solid var(--line); border-radius: 999px; padding: 7px 7px 7px 8px; box-shadow: var(--shadow-sm); }
.capture input { flex: 1; min-width: 0; border: none; background: transparent; color: var(--ink); font: inherit; font-size: 1rem; padding: 10px 14px; }
.capture input:focus { outline: none; }
.capture input::placeholder { color: var(--ink-soft); }
.capture .btn { flex: none; padding: 12px 22px; }
.hero-note { font-size: 0.85rem; color: var(--ink-soft); }
.hero-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Floating avatar bubbles + cards (decorative) */
.hero-decor { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.avatar {
  position: absolute; width: 66px; height: 66px; border-radius: 20px; display: grid; place-items: center;
  background: var(--powder); color: var(--accent-strong); box-shadow: var(--shadow-md);
  border: 3px solid var(--card); animation: floaty 6s var(--ease) infinite alternate;
}
.avatar .material-symbols-outlined { font-size: 34px; }
.avatar.round { border-radius: 50%; }
.avatar.a1 { top: 10%; left: 6%; background: var(--blk-royal); color: #fff; transform: rotate(-6deg); }
.avatar.a2 { top: 26%; left: 15%; background: var(--powder); animation-delay: .8s; }
.avatar.a3 { top: 8%; right: 8%; background: var(--blk-sky); color: #0e2140; transform: rotate(7deg); animation-delay: 1.4s; }
.avatar.a4 { top: 30%; right: 14%; background: var(--card); color: var(--accent); border-radius: 50%; animation-delay: .4s; }
.avatar.a5 { bottom: 16%; left: 12%; background: var(--card); color: var(--accent); border-radius: 50%; animation-delay: 1.1s; }
.avatar.a6 { bottom: 12%; right: 10%; background: var(--blk-navy); color: #fff; transform: rotate(-5deg); animation-delay: .6s; }
@keyframes floaty { to { translate: 0 -14px; } }

/* ---------------- Logo strip ---------------- */
.logos { padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.logos p { text-align: center; font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 22px; }
.logo-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 44px; }
.logo-row span { font-family: var(--head); font-weight: 700; font-size: 1.25rem; color: var(--ink-soft); opacity: 0.6; letter-spacing: -0.02em; }

/* ---------------- Image slots ---------------- */
.img-slot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 2; }
.img-slot.is-empty img { display: none; }
.img-hint {
  position: absolute; z-index: 3; left: 50%; bottom: 14px; transform: translateX(-50%);
  display: none; align-items: center; gap: 6px; white-space: nowrap;
  padding: 6px 13px; border-radius: 999px; background: rgba(255, 255, 255, 0.9); color: var(--ink-soft);
  font-size: 0.76rem; font-weight: 500; box-shadow: var(--shadow-sm);
}
.img-hint .material-symbols-outlined { font-size: 15px; }
.img-slot.is-empty .img-hint { display: inline-flex; }
.avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; border-radius: inherit; z-index: 1; }

/* ---------------- Intro + stats ---------------- */
.intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.media-frame { border-radius: var(--radius-lg); aspect-ratio: 5/4; position: relative; overflow: hidden; background: var(--pale); box-shadow: var(--shadow-md); }
.media-frame .blob { position: absolute; border-radius: 50%; }
.media-frame .b1 { width: 58%; height: 58%; top: 12%; left: 10%; background: var(--blk-royal); opacity: 0.85; }
.media-frame .b2 { width: 42%; height: 42%; bottom: 8%; right: 10%; background: var(--blk-sky); opacity: 0.7; }
/* Slightly reduced image in the home "Events" section */
#events .media-frame { max-width: 560px; margin-inline: auto; }
.stat-row { display: flex; gap: 12px; margin-top: 28px; }
.stat-chip { flex: 1 1 0; min-width: 0; background: var(--card-alt); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 16px 14px; }
.stat-chip .num { font-family: var(--head); font-size: 1.6rem; font-weight: 700; color: var(--ink); }
.stat-chip .label { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.3; }

/* ---------------- Service cards ---------------- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.svc-card {
  background: var(--card); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); border: 1px solid transparent;
}
.svc-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.svc-icon { width: 60px; height: 60px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 20px; }
.svc-icon .material-symbols-outlined { font-size: 30px; }
.svc-icon.i1 { background: var(--pale); color: var(--accent); }
.svc-icon.i2 { background: var(--powder); color: var(--accent-strong); }
.svc-icon.i3 { background: var(--blk-royal); color: #fff; }
.svc-icon.i4 { background: var(--blk-navy); color: #fff; }
.svc-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.svc-card p { color: var(--ink-soft); font-size: 1.02rem; }
.svc-card .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-family: var(--body); font-weight: 700; font-size: 0.9rem; color: var(--accent); }
.on-dark .svc-card { color: var(--ink); }
.on-dark .svc-card h3 { color: var(--ink); }
.svc-card .ticks { margin-top: 18px; }
.svc-card .ticks li { font-size: 1rem; margin-bottom: 9px; }

/* ---------------- Case-study blocks ---------------- */
.case { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 40px; align-items: center; margin-bottom: 28px; }
.case:nth-child(even) .case-visual { order: 2; }
.case-visual {
  border-radius: var(--radius-lg); aspect-ratio: 16/11; display: grid; place-items: center;
  position: relative; overflow: hidden; box-shadow: var(--shadow-md);
}
.case-visual .logo { font-family: var(--head); font-weight: 700; font-size: 2.2rem; letter-spacing: -0.03em; display: inline-flex; align-items: center; gap: 10px; }
.case-visual .material-symbols-outlined { font-size: 2.4rem; }
.case-navy { background: var(--blk-navy); color: #fff; }
.case-royal { background: var(--blk-royal); color: #fff; }
.case-sky { background: var(--blk-sky); color: #0e2140; }
.case-body .tag { font-family: var(--body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.case-body h3 { font-size: clamp(1.4rem, 2.6vw, 2rem); margin: 8px 0 12px; }
.case-body p { color: var(--ink-soft); margin-bottom: 20px; }

/* ---------------- Service pillars (detailed) ---------------- */
.pillar { margin-bottom: 40px; }
.pillar:last-child { margin-bottom: 0; }
.pillar-head { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 28px; }
.pillar-num {
  width: 76px; height: 76px; border-radius: 20px; flex: none; display: grid; place-items: center;
  font-family: var(--head); font-weight: 700; font-size: 1.7rem; position: relative;
}
.pillar-num .material-symbols-outlined { position: absolute; bottom: 8px; right: 8px; font-size: 20px; opacity: 0.85; }
.pillar-head .tag { font-family: var(--body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); }
.pillar-head h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 6px 0 10px; }
.pillar-head p { color: var(--ink-soft); max-width: 62ch; }
.pillar-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 16 / 7; background: var(--pale); box-shadow: var(--shadow-md); margin: 0 auto 24px; max-width: 820px; }
.pillar-media .blob { position: absolute; border-radius: 50%; }
.pillar-media .b1 { width: 34%; height: 150%; top: -25%; left: 8%; background: var(--blk-royal); opacity: 0.85; }
.pillar-media .b2 { width: 26%; height: 150%; bottom: -25%; right: 12%; background: var(--blk-sky); opacity: 0.7; }
.pillar-lists { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.list-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; }
.band-alt .list-card { background: var(--band); }
.list-card h4 { font-family: var(--body); font-weight: 700; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent); margin-bottom: 16px; }
.ticks { list-style: none; }
.ticks li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 11px; color: var(--ink-soft); font-size: 1.02rem; }
.ticks li:last-child { margin-bottom: 0; }
.ticks li .material-symbols-outlined { font-size: 20px; flex: none; color: var(--accent); }
.ticks.benefits li .material-symbols-outlined { color: var(--accent-soft); }

/* ---------------- Speaking engagements ---------------- */
.speak-top { display: grid; grid-template-columns: 0.82fr 1.18fr; gap: 52px; align-items: center; margin-bottom: 64px; }
.speak-media { position: relative; overflow: hidden; border-radius: var(--radius-lg); aspect-ratio: 4 / 5; box-shadow: var(--shadow-md); background: linear-gradient(150deg, var(--blk-royal), var(--blk-navy)); }
.audience-list { list-style: none; margin-top: 26px; display: grid; gap: 14px; }
.audience-list li { display: flex; gap: 16px; align-items: flex-start; padding: 16px 18px; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.09); }
.audience-list .a-ic { width: 46px; height: 46px; border-radius: 12px; flex: none; display: grid; place-items: center; background: var(--accent); color: #fff; }
.audience-list .a-ic .material-symbols-outlined { font-size: 24px; }
.audience-list strong { display: block; color: #fff; font-family: var(--head); font-weight: 600; font-size: 1.05rem; margin-bottom: 2px; }
.audience-list span { color: var(--ink-on-dark-soft); font-size: 1rem; line-height: 1.5; }

.speak-topics-head { text-align: center; max-width: 58ch; margin: 0 auto 34px; }
.speak-topics-head h3 { font-size: 1.6rem; margin-bottom: 8px; }
.speak-topics-head p { color: var(--ink-on-dark-soft); }
.topic-card { position: relative; background: var(--card); border-radius: var(--radius); padding: 32px 26px 26px; overflow: hidden; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.topic-card::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 5px; background: var(--accent); }
.topic-card:nth-child(1)::before { background: var(--blk-royal); }
.topic-card:nth-child(2)::before { background: var(--blk-sky); }
.topic-card:nth-child(3)::before { background: var(--blk-navy); }
.topic-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.topic-card .t-ic { width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center; background: var(--pale); color: var(--accent); margin-bottom: 18px; }
.topic-card .t-ic .material-symbols-outlined { font-size: 27px; }
.topic-card h4 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ink); }
.topic-card p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------------- Workflow steps ---------------- */
.workflow { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center; }
.wf-list { background: var(--card); border-radius: var(--radius-lg); padding: 12px; box-shadow: var(--shadow-md); }
.wf-item { display: grid; grid-template-columns: 52px 1fr; gap: 16px; padding: 22px; border-radius: var(--radius); align-items: start; }
.wf-item + .wf-item { border-top: 1px solid var(--line); }
.wf-item .wf-ic { width: 48px; height: 48px; border-radius: 14px; display: grid; place-items: center; background: var(--pale); color: var(--accent); }
.wf-item h4 { font-size: 1.15rem; margin-bottom: 3px; }
.wf-item p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------------- Engagement / pricing cards ---------------- */
.plans { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.plan { border-radius: var(--radius-lg); padding: 34px; }
.plan-dark { background: var(--blk-navy); color: #fff; }
.plan-light { background: var(--card); border: 1px solid var(--line); box-shadow: var(--shadow-sm); }
.plan .plan-name { font-family: var(--head); font-weight: 600; font-size: 1.3rem; margin-bottom: 6px; }
.plan .plan-desc { font-size: 1.02rem; opacity: 0.85; margin-bottom: 24px; }
.plan-dark .plan-desc { color: var(--ink-on-dark-soft); }
.plan-light .plan-desc { color: var(--ink-soft); }
.plan ul { list-style: none; margin-bottom: 26px; }
.plan li { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; font-size: 1.02rem; }
.plan li .material-symbols-outlined { font-size: 20px; color: var(--accent-soft); flex: none; }
.plan-light li .material-symbols-outlined { color: var(--accent); }

/* ---------------- Testimonial ---------------- */
.quote-band { border-radius: var(--radius-lg); background: var(--blk-royal); color: #fff; padding: 60px 48px; text-align: center; position: relative; overflow: hidden; }
.quote-band .qmark { font-family: var(--head); font-size: 5rem; line-height: 0.5; opacity: 0.35; }
.quote-band blockquote { font-family: var(--head); font-weight: 500; font-size: clamp(1.4rem, 3vw, 2.1rem); line-height: 1.3; max-width: 24ch; margin: 18px auto 22px; letter-spacing: -0.02em; }
.quote-band .who { font-size: 0.98rem; opacity: 0.9; }
.quote-band .who strong { font-weight: 600; }

/* ---------------- CTA band ---------------- */
.cta { border-radius: var(--radius-lg); background: var(--blk-navy); color: #fff; padding: 68px 40px; text-align: center; position: relative; overflow: hidden; }
.cta h2 { font-size: clamp(2rem, 4.4vw, 3.2rem); margin-bottom: 14px; color: #fff; }
.cta p { color: var(--ink-on-dark-soft); max-width: 52ch; margin: 0 auto 30px; font-size: 1.18rem; }
.cta .capture { background: rgba(255, 255, 255, 0.1); border-color: rgba(255, 255, 255, 0.2); }
.cta .capture input { color: #fff; }
.cta .capture input::placeholder { color: rgba(255, 255, 255, 0.6); }

/* ---------------- Founder / values ---------------- */
.founder { display: grid; grid-template-columns: 340px 1fr; gap: 52px; align-items: center; }
.founder .portrait { aspect-ratio: 1; border-radius: var(--radius-lg); background: var(--pale); position: relative; overflow: hidden; box-shadow: var(--shadow-md); }
.founder .portrait .blob { position: absolute; border-radius: 50%; }
.founder .portrait .b1 { width: 70%; height: 70%; top: 16%; left: 15%; background: var(--blk-royal); opacity: 0.85; }
.founder .portrait .b2 { width: 46%; height: 46%; bottom: 6%; right: 10%; background: var(--blk-sky); opacity: 0.7; }
.value-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.value-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.value-card .material-symbols-outlined { color: var(--accent); font-size: 30px; margin-bottom: 14px; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 8px; color: var(--ink); }
.value-card p { color: var(--ink-soft); font-size: 1.02rem; }

/* ---------------- Contact ---------------- */
.contact-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: start; }
.contact-form { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 34px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-family: var(--body); font-weight: 700; font-size: 0.85rem; margin-bottom: 7px; color: var(--ink); }
.field input, .field textarea { width: 100%; padding: 14px 16px; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: var(--band); color: var(--ink); font: inherit; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.field input:focus, .field textarea:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--pale); }
.field textarea { min-height: 128px; resize: vertical; }
.topic-field { margin-bottom: 22px; }
.topic-field .lbl { font-family: var(--body); font-weight: 700; font-size: 0.85rem; margin-bottom: 10px; color: var(--ink); }
.chip-set { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 15px; border-radius: 999px; border: 1.5px solid var(--line); background: transparent; color: var(--ink-soft); font: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.15s var(--ease); }
.chip .material-symbols-outlined { font-size: 17px; width: 0; opacity: 0; overflow: hidden; transition: width 0.15s var(--ease), opacity 0.15s var(--ease); }
.chip.selected { background: var(--pale); border-color: var(--accent); color: var(--accent-strong); }
.chip.selected .material-symbols-outlined { width: 17px; opacity: 1; color: var(--accent); }
.form-submit { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; margin-top: 6px; }
.form-help { display: inline-flex; align-items: center; gap: 6px; color: var(--ink-soft); font-size: 0.82rem; }
.form-help .material-symbols-outlined { font-size: 16px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; align-items: flex-start; }
.contact-detail .ic { width: 48px; height: 48px; border-radius: 14px; flex: none; background: var(--pale); color: var(--accent); display: grid; place-items: center; }
.contact-detail h4 { font-size: 1rem; margin-bottom: 2px; }
.contact-detail p { color: var(--ink-soft); }

/* ---------------- Footer ---------------- */
.site-footer { background: var(--band-dark); color: var(--ink-on-dark-soft); padding: 68px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 1.7fr 1fr 1fr; gap: 40px; margin-bottom: 44px; }
.site-footer .brand { color: #fff; margin-bottom: 14px; }
.site-footer p { max-width: 38ch; }
.footer-col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--ink-on-dark-soft); margin-bottom: 9px; font-size: 0.95rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding-top: 22px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 0.88rem; }

/* ---------------- Snackbar ---------------- */
.snackbar { position: fixed; left: 50%; bottom: 24px; transform: translate(-50%, 150%); display: flex; align-items: center; gap: 12px; max-width: min(560px, calc(100vw - 32px)); padding: 15px 20px; border-radius: var(--radius-sm); background: var(--blk-navy); color: #fff; box-shadow: var(--shadow-md); font-size: 0.95rem; z-index: 90; opacity: 0; transition: transform 0.35s var(--ease), opacity 0.35s var(--ease); }
.snackbar.show { transform: translate(-50%, 0); opacity: 1; }
.snackbar .material-symbols-outlined { color: var(--accent-soft); }

/* ---------------- Reveal ---------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }

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

/* ---------------- Responsive ---------------- */
@media (max-width: 940px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .intro, .case, .case:nth-child(even) .case-visual, .workflow, .plans, .founder, .contact-grid, .speak-top { grid-template-columns: 1fr; }
  .speak-media { max-width: 440px; margin-inline: auto; aspect-ratio: 4 / 3; }
  .case-visual { order: -1 !important; }
  .founder .portrait { max-width: 340px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-decor { display: none; }
}
@media (max-width: 640px) {
  .nav-links { position: absolute; top: 76px; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 4px; background: var(--band); padding: 14px 20px 22px; display: none; border-bottom: 1px solid var(--line); box-shadow: var(--shadow-md); }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 10px 0; }
  .nav-cta { margin: 8px 0 0; }
  .nav-cta .btn { width: 100%; }
  .nav-toggle { display: inline-grid; }
  .grid-3, .grid-2, .value-list, .form-row, .pillar-lists { grid-template-columns: 1fr; }
  .pillar-head { flex-direction: column; gap: 16px; }
  section { padding: 64px 0; }
  .capture { flex-direction: column; border-radius: var(--radius); background: transparent; border: none; box-shadow: none; padding: 0; gap: 10px; }
  .capture input { background: var(--card); border: 1px solid var(--line); border-radius: 999px; width: 100%; }
  .capture .btn { width: 100%; }
}

/* =========================================================
   Animations & motion polish
   ========================================================= */

/* Directional reveal variants (base .reveal handled inline above) */
.reveal-l { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-r { opacity: 0; transform: translateX(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-scale { opacity: 0; transform: scale(0.94); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal-l.in, .reveal-r.in, .reveal-scale.in { opacity: 1; transform: none; }

/* Nav animated underline */
.nav-links a:not(.btn)::after {
  content: ""; position: absolute; left: 16px; right: 16px; bottom: 6px; height: 2px; border-radius: 2px;
  background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform 0.28s var(--ease);
}
.nav-links a:not(.btn):hover::after, .nav-links a.active::after { transform: scaleX(1); }
@media (max-width: 640px) { .nav-links a:not(.btn)::after { left: 0; right: 0; bottom: 2px; } }

/* Hero underline swash draws itself in */
.hero h1 .u::after { transform-origin: left; animation: swash 0.7s var(--ease) 0.55s both; }
@keyframes swash { from { transform: scaleX(0); } to { transform: scaleX(1); } }

/* Image hover zoom */
.img-slot img { transition: transform 0.7s var(--ease); }
.img-slot:hover img { transform: scale(1.05); }
.case-visual { transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease); }
.case:hover .case-visual { transform: translateY(-5px); box-shadow: var(--shadow-md); }

/* Card icon micro-motions on hover */
.svc-icon, .value-card .material-symbols-outlined, .topic-card .t-ic, .wf-item .wf-ic, .audience-list .a-ic, .contact-detail .ic {
  transition: transform 0.3s var(--ease);
}
.svc-card:hover .svc-icon { transform: scale(1.1) rotate(-5deg); }
.value-card:hover .material-symbols-outlined { transform: scale(1.18); }
.topic-card:hover .t-ic { transform: translateY(-3px) rotate(-4deg); }
.wf-item:hover .wf-ic { transform: rotate(-6deg) scale(1.06); }
.audience-list li:hover .a-ic { transform: rotate(-6deg) scale(1.06); }
.contact-detail:hover .ic { transform: scale(1.1) rotate(-4deg); }

/* "Learn more" arrow nudge */
.more { transition: gap 0.2s var(--ease); }
.more:hover { gap: 11px; }

/* Primary button shine sweep */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ""; position: absolute; top: 0; left: -130%; width: 55%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: skewX(-20deg); transition: left 0.6s var(--ease); pointer-events: none;
}
.btn-primary:hover::after { left: 150%; }
.btn-primary > * { position: relative; z-index: 1; }

/* Ambient drifting glow behind dark feature blocks */
.cta::before, .quote-band::before {
  content: ""; position: absolute; inset: -40%; pointer-events: none; z-index: 0;
  background: radial-gradient(closest-side, rgba(111, 168, 220, 0.28), transparent 70%);
  animation: drift 16s ease-in-out infinite alternate;
}
.cta > *, .quote-band > * { position: relative; z-index: 1; }
@keyframes drift {
  from { transform: translate(-8%, -6%) scale(1); }
  to   { transform: translate(10%, 8%) scale(1.18); }
}

/* Logo strip gentle fade loop */
.logo-row span { transition: opacity 0.3s var(--ease), color 0.3s var(--ease); }
.logo-row:hover span { opacity: 0.3; }
.logo-row span:hover { opacity: 1; color: var(--accent); }

/* Brand logo subtle float */
.site-header .brand-logo { transition: transform 0.4s var(--ease); }
.site-header .brand:hover .brand-logo { transform: translateY(-2px) scale(1.03); }
