/* Magic Staffing Co. — design system v3.
   Family look shared with NXT LEVEL: light, deep royal blue + orange,
   Plus Jakarta Sans, rounded cards, soft shadows. */
@font-face {
  font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 400;
  font-display: swap; src: url("/fonts/pjs-400.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 600;
  font-display: swap; src: url("/fonts/pjs-600.woff2") format("woff2");
}
@font-face {
  font-family: "Plus Jakarta Sans"; font-style: normal; font-weight: 800;
  font-display: swap; src: url("/fonts/pjs-800.woff2") format("woff2");
}
:root {
  --bg: #ffffff;
  --bg-soft: #f4f7fb;
  --ink: #0e1b2c;
  --muted: #4d5e77;
  --primary: #2563eb;
  --primary-hover: #1d4ed8;
  --primary-deep: #003087;
  --accent: #f97316;
  --accent-bright: #fb923c;
  --line: #e4eaf3;
  --radius: 14px;
  --w: 1120px;
  --shadow-sm: 0 1px 2px rgba(16, 44, 94, 0.06), 0 4px 14px rgba(16, 44, 94, 0.06);
  --shadow-lg: 0 12px 32px rgba(16, 44, 94, 0.14);
}
* { box-sizing: border-box; margin: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg); color: var(--ink);
  font: 400 1.04rem/1.65 "Plus Jakarta Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
::selection { background: var(--primary); color: #fff; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
h1, h2, h3 { font-weight: 800; line-height: 1.12; letter-spacing: -0.022em; }
h1 { font-size: clamp(2.5rem, 5.5vw, 3.9rem); line-height: 1.06; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.4rem); }
h3 { font-size: 1.16rem; }
p { max-width: 62ch; }
.hl { color: var(--accent-bright); }
.container { max-width: var(--w); margin: 0 auto; padding: 0 22px; }
.skip { position: absolute; left: -999px; }
.skip:focus { left: 12px; top: 12px; background: var(--primary); color: #fff; padding: 8px 14px; border-radius: 8px; z-index: 10; }

/* Header */
header.site {
  position: sticky; top: 0; z-index: 5;
  background: rgba(255, 255, 255, 0.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
header.site .container { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; padding-top: 15px; padding-bottom: 15px; }
.wordmark {
  font-weight: 800; letter-spacing: 0.02em; color: var(--primary-deep);
  font-size: 1.08rem; white-space: nowrap;
}
.wordmark span { color: var(--accent); }
.wordmark:hover { text-decoration: none; }
nav.main { display: flex; gap: 6px 22px; flex-wrap: wrap; align-items: center; margin-left: auto; }
nav.main a { color: var(--muted); font-weight: 600; font-size: 0.94rem; }
nav.main a:hover { color: var(--primary); text-decoration: none; }
nav.main a[aria-current="page"] { color: var(--primary-deep); box-shadow: 0 2px 0 var(--accent); }
nav.main a.btn { color: #fff; }

/* Buttons */
.btn {
  display: inline-block; background: var(--primary); color: #fff;
  font-weight: 800; padding: 14px 26px; border-radius: 12px;
  border: 0; cursor: pointer; font-size: 0.98rem;
  box-shadow: 0 8px 22px rgba(37, 99, 235, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { background: var(--primary-hover); text-decoration: none; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35); }
.btn-ghost {
  display: inline-block; color: var(--ink); font-weight: 700; padding: 14px 26px;
  border: 1.5px solid var(--line); border-radius: 12px; background: #fff; cursor: pointer;
  font-size: 0.98rem;
  transition: transform 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); text-decoration: none; transform: translateY(-2px); }

/* Hero — deep blue gradient band, white text */
.hero {
  padding: 100px 0 76px; position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--primary-deep) 0%, #1e4fd6 78%, var(--primary) 100%);
  color: #fff;
}
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(760px 460px at 28% 18%, #000 0%, transparent 75%);
  -webkit-mask-image: radial-gradient(760px 460px at 28% 18%, #000 0%, transparent 75%);
}
.hero .container { position: relative; }
.hero a { color: #fff; text-decoration: underline; }
.hero p.lead { font-size: 1.2rem; color: rgba(255, 255, 255, 0.87); margin: 20px 0 32px; }
.hero .eyebrow {
  color: #fff; border-color: rgba(255, 255, 255, 0.32); background: rgba(255, 255, 255, 0.1);
}
.hero .btn {
  background: #fff; color: var(--primary-deep); box-shadow: 0 10px 26px rgba(0, 10, 40, 0.35);
  text-decoration: none;
}
.hero .btn:hover { background: #f0f5ff; transform: translateY(-2px); }
.hero .btn-ghost {
  background: transparent; border-color: rgba(255, 255, 255, 0.45); color: #fff; text-decoration: none;
}
.hero .btn-ghost:hover { border-color: #fff; color: #fff; background: rgba(255, 255, 255, 0.08); }
.eyebrow {
  display: inline-block; color: var(--primary); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.74rem;
  border: 1px solid var(--line); background: var(--bg-soft);
  padding: 7px 14px; border-radius: 999px; margin-bottom: 18px;
}
@media (prefers-reduced-motion: no-preference) {
  .hero .container > * { animation: rise 0.55s ease both; }
  .hero .container > *:nth-child(2) { animation-delay: 0.07s; }
  .hero .container > *:nth-child(3) { animation-delay: 0.14s; }
  .hero .container > *:nth-child(4) { animation-delay: 0.21s; }
}
@keyframes rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Sections — alternate white / soft blue-gray */
.section { padding: 72px 0; }
main > .section:nth-of-type(even):not(.stats):not(.method) { background: var(--bg-soft); }
.section h2 { margin-bottom: 12px; }
.section h2::before { content: ""; display: block; width: 52px; height: 5px; background: var(--accent); margin-bottom: 16px; border-radius: 3px; }
.section > .container > p { color: var(--muted); font-size: 1.05rem; }
.cta-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }

/* Grids & cards */
.grid { display: grid; gap: 18px; margin-top: 32px; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }
.card {
  background: #fff; border: 1px solid var(--line); border-top: 3px solid transparent;
  border-radius: var(--radius); padding: 26px 24px; box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-4px); border-top-color: var(--accent); box-shadow: var(--shadow-lg); }
.card h3 { margin-bottom: 9px; }
.card p { color: var(--muted); font-size: 0.96rem; }
.steps { counter-reset: step; display: grid; gap: 18px; margin-top: 32px; grid-template-columns: repeat(auto-fit, minmax(235px, 1fr)); }
.steps .card::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  font-weight: 800; font-size: 1.35rem; color: var(--accent);
  display: block; margin-bottom: 10px; letter-spacing: 0.02em;
}

/* Forms */
.form { display: grid; gap: 15px; max-width: 660px; margin-top: 30px; }
.form label { font-weight: 600; font-size: 0.95rem; display: grid; gap: 6px; }
.form input[type="text"], .form input[type="email"], .form input[type="tel"],
.form select, .form textarea {
  width: 100%; padding: 13px; border-radius: 10px; border: 1.5px solid var(--line);
  background: #fff; color: var(--ink); font: inherit;
}
.form input:focus, .form select:focus, .form textarea:focus {
  outline: 2px solid var(--primary); outline-offset: 1px; border-color: transparent;
}
.form textarea { min-height: 110px; resize: vertical; }
.form fieldset { border: 1.5px solid var(--line); border-radius: 10px; padding: 15px; }
.form legend { font-weight: 700; padding: 0 6px; }
.form .checks { display: flex; gap: 8px 18px; flex-wrap: wrap; margin-top: 6px; }
.form .checks label { font-weight: 500; display: flex; gap: 8px; align-items: center; }
.form .btn { justify-self: start; }
.hp { position: absolute; left: -9999px; }
.form-status { font-weight: 700; min-height: 1.4em; }
.form-status.ok { color: #15803d; }
.form-status.err { color: #b91c1c; }
.notice {
  background: var(--bg-soft); border: 1px solid var(--line); border-left: 4px solid var(--accent);
  border-radius: var(--radius); padding: 16px 20px; color: var(--muted); margin-top: 26px;
}

/* FAQ */
.faq details {
  border: 1px solid var(--line); border-radius: var(--radius); background: #fff;
  padding: 18px 22px; margin-top: 12px; box-shadow: var(--shadow-sm);
  transition: border-color 0.15s ease;
}
.faq details[open], .faq details:hover { border-color: var(--primary); }
.faq summary { font-weight: 700; cursor: pointer; font-size: 1.02rem; }
.faq details p { color: var(--muted); margin-top: 12px; }

/* Footer — deep navy band */
footer.site { background: #0a1a30; color: #b9c6d9; margin-top: 84px; padding: 52px 0 44px; font-size: 0.95rem; }
footer.site .cols { display: flex; gap: 24px 56px; flex-wrap: wrap; justify-content: space-between; }
footer.site nav { display: grid; gap: 7px; }
footer.site a { color: #b9c6d9; }
footer.site a:hover { color: #fff; }
footer.site .wordmark { color: #fff; font-size: 1.02rem; }
footer.site .wordmark span { color: var(--accent-bright); }
.legal { margin-top: 30px; font-size: 0.85rem; color: #8fa0b8; }
.legal a { color: #8fa0b8; }

/* ==========================================================================
   v4 — motion layer + Awwwards-tier polish (additive; the "Magic Field" build)
   ========================================================================== */

/* Reduced-motion backstop: honor the OS setting no matter what JS does. */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* Reveal-on-scroll (reveal.js adds .in). No-JS + reduced-motion => shown. */
[data-reveal] { opacity: 0; transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1); will-change: opacity, transform; }
[data-reveal="left"]  { transform: translateX(-32px); }
[data-reveal="right"] { transform: translateX(32px); }
[data-reveal="scale"] { transform: scale(.93); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s cubic-bezier(.22,1,.36,1); }
[data-reveal-stagger].in > * { opacity: 1; transform: none; }
[data-reveal-stagger].in > *:nth-child(2){ transition-delay:.06s }
[data-reveal-stagger].in > *:nth-child(3){ transition-delay:.12s }
[data-reveal-stagger].in > *:nth-child(4){ transition-delay:.18s }
[data-reveal-stagger].in > *:nth-child(5){ transition-delay:.24s }
[data-reveal-stagger].in > *:nth-child(6){ transition-delay:.30s }
html:not(.js) [data-reveal], html:not(.js) [data-reveal-stagger] > * { opacity: 1; transform: none; }

/* Trailing cursor glow — additive, never hides the native cursor; off on touch. */
.ms-cursor { position: fixed; top: 0; left: 0; width: 26px; height: 26px; border-radius: 50%;
  pointer-events: none; z-index: 9998; opacity: 0; mix-blend-mode: screen;
  background: radial-gradient(circle, rgba(249,115,22,.55), rgba(249,115,22,0) 70%);
  transition: opacity .3s ease, width .2s ease, height .2s ease, background .2s ease; }
.ms-cursor.is-on { opacity: 1; }
.ms-cursor.is-active { width: 54px; height: 54px; background: radial-gradient(circle, rgba(37,99,235,.5), rgba(37,99,235,0) 70%); }
@media (hover: none), (pointer: coarse) { .ms-cursor { display: none; } }

/* Magnetic elements */
[data-magnetic] { transition: transform .25s cubic-bezier(.22,1,.36,1); will-change: transform; }

/* Marquee ticker */
.marquee { overflow: hidden; white-space: nowrap; padding: 10px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent); }
.marquee__track { display: inline-flex; gap: 2.4rem; align-items: center; animation: ms-marquee 34s linear infinite; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track span { font-weight: 800; letter-spacing: -.01em; font-size: 1.15rem; color: var(--primary-deep); display: inline-flex; align-items: center; gap: 2.4rem; }
.marquee__track span::after { content: "✦"; color: var(--accent); font-size: .9rem; }
@keyframes ms-marquee { to { transform: translateX(-50%); } }

/* Gradient eyebrow + big section rhythm */
.eyebrow-grad { display: inline-block; font-weight: 800; text-transform: uppercase; letter-spacing: .14em;
  font-size: .74rem; padding: 8px 16px; border-radius: 999px; color: var(--primary);
  background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(249,115,22,.10)); border: 1px solid var(--line); margin-bottom: 20px; }
.section-xl { padding: 108px 0; }
.grad-ink { background: linear-gradient(120deg, var(--primary-deep), var(--primary) 55%, var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

/* ---- HERO: "The Magic Field" ---- */
.hero-magic { position: relative; min-height: min(92vh, 880px); display: flex; align-items: center;
  overflow: hidden; background: #041233; color: #fff; padding: 116px 0 88px; }
.hero-magic .mesh { position: absolute; inset: 0; overflow: hidden; z-index: 0; }
.hero-magic .mesh::before, .hero-magic .mesh::after { content: ""; position: absolute; border-radius: 50%; filter: blur(72px); will-change: transform; }
.hero-magic .mesh::before { width: 72vmax; height: 72vmax; left: -16vmax; top: -26vmax;
  background: radial-gradient(circle at center, #003087, transparent 62%); opacity: .95; animation: ms-drift1 24s ease-in-out infinite alternate; }
.hero-magic .mesh::after { width: 60vmax; height: 60vmax; right: -18vmax; bottom: -24vmax;
  background: radial-gradient(circle at center, #2563eb, transparent 60%); opacity: .7; animation: ms-drift2 30s ease-in-out infinite alternate; }
.hero-magic .glow { position: absolute; z-index: 0; width: 46vmax; height: 46vmax; right: 2vmax; top: -8vmax; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(249,115,22,.42), transparent 60%); filter: blur(26px); animation: ms-drift3 27s ease-in-out infinite alternate; }
#bubbles { position: absolute; inset: 0; width: 100%; height: 100%; display: block; z-index: 1; }
.hero-magic .container { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 46px; align-items: center; }
.hero-magic .eyebrow-grad { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.22); }
.hero-magic h1 { font-size: clamp(2.9rem, 6.6vw, 5.4rem); line-height: 1.0; letter-spacing: -.035em; }
.hero-magic .lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: rgba(255,255,255,.82); margin: 26px 0 36px; max-width: 36ch; }
.hero-magic .cta-row { margin-top: 0; }
.hero-magic .btn { background: linear-gradient(135deg, #f97316, #fb923c); color: #fff; box-shadow: 0 12px 30px rgba(249,115,22,.42); text-decoration: none; }
.hero-magic .btn:hover { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(249,115,22,.52); }
.hero-magic .btn-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.42); color: #fff; text-decoration: none; }
.hero-magic .btn-ghost:hover { background: rgba(255,255,255,.13); border-color: #fff; color: #fff; }
.hero-magic .trust { margin-top: 30px; display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.66); font-size: .9rem; font-weight: 600; }
.hero-magic .trust b { color: #fff; }

/* the shimmering "Magic" word */
.word-magic { background: linear-gradient(100deg, #f97316 0%, #fdba74 28%, #ffffff 50%, #fdba74 72%, #f97316 100%);
  background-size: 220% auto; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #f97316;
  filter: drop-shadow(0 0 20px rgba(249,115,22,.45)); animation: ms-shine 6.5s linear infinite; }
@keyframes ms-shine { to { background-position: 220% center; } }

/* hero portrait (placeholder frame until Troy's cut-out arrives) */
.hero-portrait { position: relative; justify-self: center; }
.hero-portrait .frame { position: relative; width: min(410px, 84vw); aspect-ratio: 4 / 5; border-radius: 26px; overflow: hidden;
  background: linear-gradient(165deg, rgba(255,255,255,.14), rgba(255,255,255,.03)); border: 1px solid rgba(255,255,255,.2);
  box-shadow: 0 34px 90px rgba(0,0,0,.5); }
.hero-portrait img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-portrait .placeholder { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px; text-align: center; padding: 24px;
  background: radial-gradient(120% 90% at 50% 10%, rgba(37,99,235,.35), rgba(4,18,51,.2)); color: rgba(255,255,255,.7); }
.hero-portrait .placeholder svg { width: 92px; height: 92px; opacity: .8; }
.hero-portrait .placeholder .ph-note { font-size: .82rem; font-weight: 600; letter-spacing: .01em; }
.hero-portrait .namecard { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(4,18,51,.62); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 12px 16px; }
.hero-portrait .namecard .n { font-weight: 800; font-size: 1.02rem; }
.hero-portrait .namecard .r { color: rgba(255,255,255,.72); font-size: .84rem; font-weight: 600; }
.hero-portrait .chip { position: absolute; top: -16px; right: -10px; background: linear-gradient(135deg, #f97316, #fb923c); color: #fff;
  font-weight: 800; font-size: .8rem; padding: 10px 15px; border-radius: 999px; box-shadow: 0 12px 26px rgba(249,115,22,.42); }
@media (max-width: 900px) {
  .hero-magic { min-height: 0; padding: 92px 0 64px; }
  .hero-magic .container { grid-template-columns: 1fr; gap: 34px; }
  .hero-magic h1 { font-size: clamp(2.6rem, 12vw, 3.4rem); }
  .hero-portrait .frame { width: min(320px, 78vw); }   /* copy leads on mobile; portrait follows */
}

@keyframes ms-drift1 { from { transform: translate(-4%, -3%) scale(1); } to { transform: translate(6%, 5%) scale(1.15); } }
@keyframes ms-drift2 { from { transform: translate(4%, 3%) scale(1.05); } to { transform: translate(-6%, -4%) scale(1.2); } }
@keyframes ms-drift3 { from { transform: translate(0, 0) scale(1); } to { transform: translate(-6%, 6%) scale(1.16); } }
@media (prefers-reduced-motion: reduce) { .hero-magic .mesh::before, .hero-magic .mesh::after, .hero-magic .glow, .word-magic { animation: none; } .word-magic { background-position: 0 center; } }

/* ---- STATS band ("the numbers don't lie") ---- */
.stats { background: linear-gradient(135deg, #00206b, #003087 58%, #123a8f); color: #fff; }
.stats .eyebrow-grad { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.2); }
.stats h2 { color: #fff; }
.draw-line { height: 4px; width: 100%; border-radius: 3px; background: linear-gradient(90deg, #f97316, #fb923c); transform: scaleX(1); transform-origin: left center; margin: 22px 0 46px; }
.grid-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat .num { font-size: clamp(2.5rem, 5vw, 3.7rem); font-weight: 800; letter-spacing: -.02em; line-height: 1;
  background: linear-gradient(135deg, #ffffff, #bcd3ff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat .lbl { color: rgba(255,255,255,.74); font-weight: 600; margin-top: 10px; font-size: .96rem; }
@media (max-width: 820px) { .grid-stats { grid-template-columns: repeat(2, 1fr); gap: 26px; } }

/* ---- METHOD: horizontal-pin panels ---- */
.method { background: #041233; color: #fff; overflow: hidden; }
.method .container { position: relative; z-index: 2; }
.method .eyebrow-grad { color: #fff; background: rgba(255,255,255,.10); border-color: rgba(255,255,255,.2); }
.method h2 { color: #fff; }
.hpin-viewport { position: relative; }
/* Safe default: panels stack vertically (no-JS, reduced-motion, mobile all get this). */
.hpin-track { display: flex; flex-direction: column; width: auto; gap: 8px; }
.hpin-panel { width: auto; max-width: 1060px; min-height: auto; padding: 26px 5vw; display: flex; align-items: center; }
.hpin-step { display: grid; grid-template-columns: auto 1fr; gap: 34px; align-items: center; }
.hpin-step .no { font-size: clamp(4rem, 12vw, 9rem); font-weight: 800; line-height: .8; letter-spacing: -.04em;
  background: linear-gradient(160deg, #2563eb, #f97316); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; opacity: .95; }
.hpin-step h3 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); color: #fff; margin-bottom: 12px; }
.hpin-step p { color: rgba(255,255,255,.78); font-size: 1.08rem; max-width: 46ch; }
/* Horizontal pin ONLY when motion.js enables it on a capable desktop. */
.hpin-on .hpin-track { flex-direction: row; width: max-content; gap: 0; }
.hpin-on .hpin-panel { width: 88vw; min-height: 66vh; padding: 0 5vw; }
@media (max-width: 879px) { .hpin-step { grid-template-columns: 1fr; gap: 10px; } }

/* ---- Duotone portrait treatment (brand blue->orange) ---- */
.duotone { filter: url(#ms-duotone); }
.ms-svg-defs { position: absolute; width: 0; height: 0; overflow: hidden; }

/* dark section headings share the accent underline */
.section.stats h2::before, .section.method h2::before { background: var(--accent); }

/* Inner-page hero bands get a subtle living orange glow (pure CSS, cohesive with home). */
.hero > .container { position: relative; z-index: 2; }
.hero::after { content: ""; position: absolute; z-index: 0; width: 42vmax; height: 42vmax; right: -8vmax; top: -14vmax;
  border-radius: 50%; pointer-events: none; filter: blur(30px);
  background: radial-gradient(circle at center, rgba(249,115,22,.26), transparent 62%);
  animation: ms-drift3 26s ease-in-out infinite alternate; }
@media (prefers-reduced-motion: reduce) { .hero::after { animation: none; } }

/* About / founder feature */
.founder { display: grid; grid-template-columns: .9fr 1.1fr; gap: 44px; align-items: center; margin-top: 34px; }
.founder .portrait { position: relative; border-radius: 22px; overflow: hidden; aspect-ratio: 4 / 5; box-shadow: var(--shadow-lg);
  background: linear-gradient(160deg, #003087, #2563eb); }
.founder .portrait img { width: 100%; height: 100%; object-fit: cover; }
.founder .portrait .placeholder { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.45); }
.founder .portrait .placeholder svg { width: 108px; height: 108px; }
.founder .namecard { position: absolute; left: 16px; bottom: 16px; right: 16px; background: rgba(4,18,51,.66); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.16); border-radius: 14px; padding: 12px 16px; color: #fff; }
.founder .namecard .n { font-weight: 800; }
.founder .namecard .r { color: rgba(255,255,255,.72); font-size: .86rem; font-weight: 600; }
.pull { font-size: clamp(1.3rem, 2.4vw, 1.9rem); font-weight: 800; line-height: 1.25; letter-spacing: -.02em; margin: 10px 0 18px; }
.pull .grad-ink { display: inline; }
@media (max-width: 820px) { .founder { grid-template-columns: 1fr; gap: 28px; } .founder .portrait { max-width: 360px; } }
