/* Kabel — founder homepage (v2: light, professional theme)
   Tokens below are placeholders. Before launch, replace with the real
   values from app.kabel.my (PROJECT_BRIEF.md, "Shared design tokens")
   so kabel.my and app.kabel.my read as one product. */
:root{
  --color-ink:#16181D;
  --color-ink-soft:#565B66;
  --color-bg:#FFFFFF;
  --color-surface:#F6F7F9;
  --color-line:#E4E6EA;
  /* v2 — teal palette on a white base, replacing the
     placeholder blue. TODO: reconcile with the real app.kabel.my tokens
     before launch. */
  --color-primary:#0F4F4A;
  --color-primary-ink:#FFFFFF;
  --color-accent:#36D2BA;
  --color-accent-soft:#ECF4F2;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1080px;

  /* v2 — bold sans display type + white-card layout (Upwork testimonial
     reference); the dark "assistant" card is the one deliberate accent. */
  --v2-dark:#1B211D;
  --v2-dark-soft:#AEB4AF;
  --v2-dark-line:#333A35;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  margin:0;
  font-family:var(--font-sans);
  color:var(--color-ink);
  background:var(--color-bg);
  line-height:1.55;
}
img{max-width:100%; display:block;}
.wrap{max-width:var(--max); margin:0 auto; padding:0 24px;}
a{color:inherit;}

/* top bar — logo + a single CTA pointing at the *other* audience (home/
   about/matches/talk-to-us show "For talent"; talent + student pages show
   "For companies"), so the row never has to wrap on narrow screens */
.topbar{border-bottom:1px solid var(--color-line);}
.topbar-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:18px 24px; flex-wrap:nowrap; gap:12px;
}
.topbar .logo{font-weight:700; font-size:18px; text-decoration:none; color:var(--color-ink);}
.logo{display:inline-flex; align-items:center; flex-shrink:0;}
.logo img{height:36px; width:auto; display:block;}
.btn-sm{padding:9px 18px; font-size:13px; white-space:nowrap;}
.topbar-ctas{display:flex; align-items:center; gap:10px; flex-shrink:0;}
.btn-outline{background:transparent; color:var(--color-ink); border-color:var(--color-line);}
.btn-outline:hover{border-color:var(--color-ink); background:var(--color-surface);}
@media(max-width:420px){
  .topbar-inner{padding:14px 16px;}
  .logo img{height:30px;}
}

/* hero — plain white surface, bold sans display headline, dark assistant card */
.hero{padding:72px 0 80px; text-align:center;}
h1{
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(36px,6vw,60px); line-height:1.1; letter-spacing:-.04em;
  margin:0 auto 20px; max-width:16ch; color:var(--color-ink);
}
.subhead{
  font-size:18px; color:var(--color-ink-soft); max-width:48ch;
  margin:0 auto 40px;
}
.hero-ctas{display:flex; align-items:center; gap:14px; flex-wrap:wrap; justify-content:center;}

/* assistant card — white, light-bordered input with a soft teal glow
   that breathes, so submitting a problem feels like something is about
   to happen rather than just filling out a form */
.assistant-card{
  max-width:560px; margin:0 auto; text-align:left;
  background:#fff; border-radius:22px; padding:6px;
  box-shadow:0 0 0 1px var(--color-line), 0 20px 45px -20px rgba(15,79,74,.18);
  animation:assistant-glow 3.6s ease-in-out infinite;
}
@keyframes assistant-glow{
  0%,100%{box-shadow:0 0 0 1px var(--color-line), 0 20px 45px -20px rgba(15,79,74,.18);}
  50%{box-shadow:0 0 0 1px var(--color-accent), 0 20px 50px -18px rgba(54,210,186,.35);}
}
@media(prefers-reduced-motion:reduce){.assistant-card{animation:none;}}
.assistant-input-row{
  display:flex; align-items:flex-end; gap:10px;
  background:var(--color-accent-soft); border:1px solid transparent;
  border-radius:16px; padding:10px 10px 10px 16px;
}
.assistant-input-row textarea{
  flex:1; font-family:inherit; font-size:15px; color:var(--color-ink);
  background:transparent; border:0; resize:none; min-height:44px;
  padding:8px 0; line-height:1.4;
}
.assistant-input-row textarea::placeholder{color:var(--color-ink-soft);}
.assistant-input-row textarea:focus{outline:none;}
.assistant-send{
  flex-shrink:0; width:40px; height:40px; border-radius:12px;
  background:var(--color-accent); color:#0A1210; border:0; font-size:16px;
  cursor:pointer; display:flex; align-items:center; justify-content:center;
  transition:transform .15s ease, background .15s ease;
}
.assistant-send:hover{transform:translateY(-1px); background:#57ddc6;}

.sr-only{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}

/* buttons — bright teal fill with black text for primary, dark outline
   for secondary; moderately rounded corners rather than a full pill */
.btn{
  display:inline-flex; align-items:center; gap:8px;
  font-size:15px; font-weight:600; padding:14px 24px; border-radius:14px;
  border:1px solid transparent; cursor:pointer; text-decoration:none;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary{background:var(--color-accent); color:#0A1210;}
.btn-primary:hover{background:#57ddc6; transform:translateY(-1px); box-shadow:0 8px 20px -8px rgba(54,210,186,.6);}
.btn-secondary{background:var(--v2-dark); color:#fff; border-color:var(--v2-dark-line);}
.btn-secondary:hover{background:#242b26;}

/* problem input — its own section below the hero, Upwork-pattern */
.problem-form{max-width:640px; margin:0 0 16px;}
.problem-form textarea{
  width:100%; font-family:inherit; font-size:17px; padding:16px 18px;
  border:1px solid var(--color-line); border-radius:10px; background:var(--color-bg);
  min-height:96px; resize:vertical; margin-bottom:14px;
}
.problem-form textarea:focus{outline:2px solid var(--color-primary); outline-offset:1px;}

/* /talk-to-us/ — Describe -> Schedule -> Talk */
.intake-page{max-width:640px; padding-top:48px; padding-bottom:80px;}
.step-indicator{
  font-size:12px; text-transform:uppercase; letter-spacing:.05em;
  color:var(--color-ink-soft); margin-bottom:16px;
}
.step-panel h1{font-size:clamp(26px,4vw,32px); margin:0 0 20px;}
.step-panel.hidden{display:none;}
.step-panel .helper{font-size:14px; color:var(--color-ink-soft); margin:0 0 20px;}

.field{margin-bottom:16px;}
.field label{display:block; font-size:13px; font-weight:600; margin-bottom:6px;}
.field input[type=text], .field input[type=email], .field input[type=tel], .field textarea{
  width:100%; font-family:inherit; font-size:15px; padding:12px 14px;
  border:1px solid var(--color-line); border-radius:8px; background:var(--color-bg);
  resize:vertical;
}
.field textarea{min-height:100px;}
.field-row{display:grid; grid-template-columns:1fr 1fr; gap:14px;}
@media(max-width:560px){.field-row{grid-template-columns:1fr;}}

.submit-row{display:flex; align-items:center; gap:14px; margin-top:20px; flex-wrap:wrap;}
.honeypot{position:absolute; left:-9999px;}

#confirmStep p{color:var(--color-ink-soft); max-width:48ch;}

.field select{
  width:100%; font-family:inherit; font-size:15px; padding:12px 14px;
  border:1px solid var(--color-line); border-radius:8px; background:var(--color-bg);
}

/* /matches/ — partial proposal cards, login-gated full detail */
.match-list{display:flex; flex-direction:column; gap:16px;}
.match-card{border:1px solid var(--color-line); border-radius:10px; padding:20px;}
.match-top{display:flex; align-items:center; gap:12px; margin-bottom:12px;}
.match-avatar{
  width:40px; height:40px; border-radius:50%; background:var(--color-surface);
  display:flex; align-items:center; justify-content:center; font-size:12px; flex-shrink:0;
}
.match-name{font-size:15px; font-weight:600;}
.match-score{font-size:13px; color:var(--color-primary); font-weight:600;}
.match-tags{display:flex; gap:8px; flex-wrap:wrap; margin-bottom:12px;}
.tag-pill{font-size:12px; background:var(--color-accent-soft); color:var(--color-primary); padding:4px 10px; border-radius:999px;}
.match-pitch{font-size:14px; margin:0 0 14px;}
.match-rate{font-size:14px; font-weight:600; margin-bottom:14px;}
.blur{filter:blur(5px); user-select:none;}

/* /matches/ — unlock (Core, self-serve) vs. talk to Kabel (DXP) */
.unlock-grid{display:grid; grid-template-columns:1fr 1fr; gap:20px;}
.option-card{border:1px solid var(--color-line); border-radius:10px; padding:24px;}
.option-card .tag{font-size:12px; text-transform:uppercase; letter-spacing:.04em; color:var(--color-primary); margin-bottom:10px;}
.option-card h3{font-size:17px; margin:0 0 8px;}
.option-card p{font-size:14px; color:var(--color-ink-soft); margin:0 0 16px;}
.option-price{font-size:14px; font-weight:600; margin-bottom:16px;}
@media(max-width:640px){.unlock-grid{grid-template-columns:1fr;}}

/* proof strip — company name marquee (text, no logos), white background,
   separated from neighboring sections by hairlines only */
.proof{
  padding:44px 0; background:var(--color-bg);
  border-top:1px solid var(--color-line); border-bottom:1px solid var(--color-line);
  overflow:hidden;
}
.proof .label{font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--color-ink-soft); margin-bottom:20px; text-align:center;}
.marquee{overflow:hidden; -webkit-mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent); mask-image:linear-gradient(90deg,transparent,#000 8%,#000 92%,transparent);}
.marquee-track{display:flex; gap:48px; width:max-content; animation:marquee 40s linear infinite;}
.marquee-name{font-size:15px; font-weight:600; color:var(--color-ink-soft); white-space:nowrap;}

/* /about/ — backer logos, grayscale by default so mismatched source
   files (different formats/colors) still read as one consistent row */
.backed-by-logos{display:flex; gap:48px; flex-wrap:wrap; align-items:center; justify-content:center;}
.backed-by-logo{
  height:44px; width:auto; max-width:200px; object-fit:contain;
  filter:grayscale(1); opacity:.6; transition:filter .2s ease, opacity .2s ease;
}
.backed-by-logo:hover{filter:none; opacity:1;}
@keyframes marquee{from{transform:translateX(0);} to{transform:translateX(-50%);}}
@media(prefers-reduced-motion:reduce){.marquee-track{animation:none;}}

/* success stories — student work, then CEO testimonial, white background,
   bold sans heading (Upwork "Proven results" reference) */
.success{padding:64px 0; background:var(--color-bg);}
.success h2{
  font-family:var(--font-display); font-weight:900; color:var(--color-ink);
  font-size:clamp(28px,3.6vw,38px); line-height:1.15; letter-spacing:-.04em;
  margin:0 0 36px; max-width:26ch;
}
.success .label{font-size:12px; font-weight:700; text-transform:uppercase; letter-spacing:.1em; color:var(--color-ink-soft); margin-bottom:12px;}
.success h2.testimonial-heading{
  font-family:var(--font-display); font-weight:900; color:var(--color-ink);
  font-size:clamp(28px,3.6vw,38px); line-height:1.15; letter-spacing:-.04em;
  margin:80px 0 36px; max-width:26ch;
}

.project-grid{display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:16px; align-items:stretch;}
.project-card{
  display:flex; flex-direction:column;
  background:var(--color-bg); border:1px solid var(--color-line);
  border-radius:14px; padding:22px;
}
.project-card h3{
  font-family:var(--font-display); font-weight:800; font-size:17px; line-height:1.3;
  margin:0 0 16px; color:var(--color-ink);
}
.project-tag{
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
  color:var(--color-accent); margin:0 0 12px;
}
@media(max-width:760px){.project-grid{grid-template-columns:1fr;}}

/* Problem/Solution lines — small labeled rows above the metric row,
   the "so what happened" context before the proof */
.project-meta{margin:0 0 18px;}
.project-meta-row{margin-bottom:10px;}
.project-meta-row:last-child{margin-bottom:0;}
.project-meta dt{
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
  color:var(--color-ink-soft); margin:0 0 3px;
}
.project-meta dd{font-size:14px; line-height:1.45; color:var(--color-ink); margin:0;}

/* impact row — the bold green metric is the visual anchor of the card */
.project-impact{
  display:flex; gap:20px; flex-wrap:wrap; margin-top:auto;
  padding-top:16px; border-top:1px solid var(--color-line);
}
.impact-stat{display:flex; flex-direction:column;}
.impact-value{font-family:var(--font-display); font-weight:900; font-size:22px; color:var(--color-accent); line-height:1.15;}
.impact-label{font-size:12px; color:var(--color-ink-soft); margin-top:2px;}

/* project video embed — placeholder play button until a real src is wired
   up; swap the <video> source or replace with an <iframe> embed later */
.project-card-media{padding:12px;}
.project-video{
  position:relative; aspect-ratio:16/9; border-radius:10px; overflow:hidden;
  background:var(--v2-dark); margin-bottom:16px;
}
.project-video-el{width:100%; height:100%; object-fit:cover; display:block;}
.project-video-placeholder{
  position:absolute; inset:0; display:flex; align-items:center; justify-content:center;
  background:var(--v2-dark); pointer-events:none;
}
.play-icon{
  width:52px; height:52px; border-radius:50%; background:var(--color-accent);
  color:#0A1210; display:flex; align-items:center; justify-content:center;
  font-size:16px; padding-left:3px;
}
.project-card-media h3, .project-card-media .project-tag, .project-card-media .project-meta, .project-card-media .project-impact{padding-left:10px; padding-right:10px;}

/* project photo — same slot/shape as .project-video, for cards backed by
   a static screenshot instead of a demo recording */
.project-photo{
  position:relative; aspect-ratio:16/9; border-radius:10px; margin-bottom:16px;
  background:var(--color-surface); border:1px solid var(--color-line);
  display:flex; align-items:center; justify-content:center; overflow:hidden;
}
.photo-icon{font-size:28px; opacity:.5;}

/* photo rotator — populated by home-v2.js when data-photo-files images are
   found; crossfades every 3s. Icon placeholder is removed once any photo
   loads, so it never shows underneath a real screenshot. */
.photo-rotator-img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  opacity:0; transition:opacity .6s ease;
  -webkit-user-select:none; user-select:none;
  -webkit-touch-callout:none; pointer-events:none;
}
.photo-rotator-img.is-active{opacity:1;}

/* testimonial cards — quote up top, name/company + avatar pinned to the
   bottom, same card shape and rhythm as .project-card above it */
.stories{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; align-items:stretch;}
.story{
  display:flex; flex-direction:column; margin:0;
  background:var(--color-bg); border:1px solid var(--color-line);
  border-radius:14px; padding:24px;
}
.story .quote{flex:1; font-size:16px; line-height:1.5; margin:0 0 16px;}
.story-outcome{font-size:13px; font-weight:600; color:var(--color-primary); line-height:1.4; margin:0 0 20px;}
.story-byline{display:flex; align-items:center; justify-content:space-between; gap:12px;}
.story cite{font-style:normal; display:flex; flex-direction:column; gap:2px;}
.story-name{font-size:14px; font-weight:600; color:var(--color-ink);}
.story-company{font-size:13px; color:var(--color-ink-soft);}
.story-avatar{
  flex-shrink:0; width:44px; height:44px; border-radius:50%;
  background:var(--color-accent-soft); color:var(--color-primary);
  display:flex; align-items:center; justify-content:center;
  font-size:12px; font-weight:600; object-fit:cover;
}
@media(max-width:760px){.stories{grid-template-columns:1fr;}}

/* /talent/ — profile pillars (Skills + Proof + Potential + AI capability),
   reuses .option-card's tag/h3/p rhythm from /matches/ in a 4-up grid */
.pillar-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
@media(max-width:860px){.pillar-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.pillar-grid{grid-template-columns:1fr;}}

/* /about/ — three-pillar grid (Talent / Technology / Mindset), reuses
   .option-card's tag/h3/p rhythm in a 3-up grid */
.pillar-grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:20px;}
@media(max-width:760px){.pillar-grid-3{grid-template-columns:1fr;}}

/* /about/ — pillar card icon + hover lift, so the cards read as finished
   components rather than bare text blocks */
.option-card{transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;}
.option-card:hover{transform:translateY(-3px); box-shadow:0 16px 32px -20px rgba(15,79,74,.25); border-color:var(--color-accent);}
.option-icon{
  width:44px; height:44px; border-radius:12px; background:var(--color-accent-soft);
  color:var(--color-primary); display:flex; align-items:center; justify-content:center;
  margin-bottom:16px;
}
.option-icon svg{width:22px; height:22px;}

/* scroll reveal — fade/rise elements marked .reveal as they enter the
   viewport; ported from style-v3.css so /about/ gets the same motion
   without pulling in the rest of the v3 stylesheet */
.reveal{opacity:0; transform:translateY(18px); transition:opacity .65s ease, transform .65s ease;}
.reveal.in{opacity:1; transform:none;}
@media(prefers-reduced-motion:reduce){
  .reveal{opacity:1; transform:none; transition:none;}
  .option-card{transition:none;}
  .option-card:hover{transform:none;}
}

/* ambient glow — soft, slow-drifting teal blobs behind text-only sections
   (hero + mission) so they don't read as flat. Low opacity, blurred,
   z-index:-1 within an isolated stacking context so it never touches
   text contrast; one drifting pair per section per motion guidance. */
.section-glow{position:relative; isolation:isolate; overflow:hidden;}
.section-glow::before, .section-glow::after{
  content:""; position:absolute; border-radius:50%; filter:blur(90px);
  pointer-events:none; z-index:-1; opacity:.12;
  animation:glow-drift 16s ease-in-out infinite alternate;
}
.section-glow::before{width:360px; height:360px; background:var(--color-accent); top:-200px; left:-140px;}
.section-glow::after{width:280px; height:280px; background:var(--color-primary); bottom:-180px; right:-120px; opacity:.08; animation-delay:-8s;}
@keyframes glow-drift{
  0%{transform:translate(0,0) scale(1);}
  100%{transform:translate(30px,24px) scale(1.08);}
}
@media(prefers-reduced-motion:reduce){.section-glow::before, .section-glow::after{animation:none;}}

/* hero — staggered fade-up on load. Above-the-fold content can't rely on
   the scroll-triggered .reveal pattern (it's visible immediately), so
   this uses a plain delayed keyframe instead. */
.hero>.wrap>.label{animation:hero-in .7s ease both;}
.hero h1{animation:hero-in .7s ease .1s both;}
.hero .subhead{animation:hero-in .7s ease .2s both;}
@keyframes hero-in{from{opacity:0; transform:translateY(14px);} to{opacity:1; transform:none;}}
@media(prefers-reduced-motion:reduce){.hero>.wrap>.label, .hero h1, .hero .subhead{animation:none;}}

/* founder testimonial — oversized decorative quote mark + a slow pulse
   ring on the avatar, the page's one "breathing" accent besides the
   homepage assistant card */
.quote-mark{
  display:block; font-size:64px; line-height:1;
  font-family:var(--font-display); font-weight:900; color:var(--color-primary);
  opacity:.35; margin-bottom:-10px; pointer-events:none; user-select:none;
}
.founder-dark .quote-mark{color:var(--color-accent); opacity:.4;}
.founder-dark .story-avatar{animation:avatar-pulse 3.6s ease-in-out infinite;}
@keyframes avatar-pulse{
  0%,100%{box-shadow:0 0 0 0 rgba(54,210,186,.45);}
  50%{box-shadow:0 0 0 9px rgba(54,210,186,0);}
}
@media(prefers-reduced-motion:reduce){.founder-dark .story-avatar{animation:none;}}

/* /about/ — left-aligned hero variant, layout borrowed from cweihan.com:
   eyebrow + big left-set headline + subhead + dual CTA, in place of the
   homepage's centered hero (kept as its own class so the shared .hero
   used elsewhere stays centered) */
.hero-left{text-align:left;}
.hero-copy{max-width:640px;}
.hero-left h1{margin:0 0 20px; max-width:none;}
.hero-left .subhead{margin:0 0 32px; max-width:none;}
.hero-left .hero-ctas{justify-content:flex-start;}

/* /about/ — mission as a left-aligned editorial statement separated by a
   hairline rather than a boxed background tint, same "whitespace + lines,
   not color blocks" principle as the reference layout */
.mission-statement{
  border-top:1px solid var(--color-line); text-align:left;
  background:var(--color-surface);
}
.mission-copy{max-width:720px;}
.mission-statement h2{margin:0 0 16px; text-align:left; max-width:none;}
.mission-statement .subhead{margin:0; text-align:left; max-width:none;}

/* section 3 (pillars) — pale accent tint, one step further in the
   background rhythm before the dark founder section, so hero/mission/
   pillars don't all read as the same flat white */
.section-accent-tint{background:var(--color-accent-soft); border-top:1px solid var(--color-line);}

/* /about/ — founder quote as the page's one deliberate dark accent,
   echoing the homepage assistant card's "one dark surface" pattern */
.founder-dark{background:var(--v2-dark); color:var(--v2-dark-soft);}
.founder-dark .label{color:var(--color-accent);}
.founder-dark .story{background:transparent; border:0; padding:0;}
.founder-dark .quote{color:#fff; font-family:var(--font-display); font-weight:600; letter-spacing:-.01em;}
.founder-dark .story-name{color:#fff;}
.founder-dark .story-company{color:var(--v2-dark-soft);}
.founder-dark .story-avatar{background:var(--color-accent); color:#0A1210;}

/* /about/ — same oversized-quote layout as .founder-dark, but on the
   page's plain background instead of the one dark accent surface */
.founder-light .label{color:var(--color-primary);}
.founder-light .story{background:transparent; border:0; padding:0;}
.founder-light .quote{
  font-size:22px; color:var(--color-ink);
  font-family:var(--font-display); font-weight:700; letter-spacing:-.01em;
}
.founder-light .story-avatar{animation:avatar-pulse 3.6s ease-in-out infinite;}
@media(prefers-reduced-motion:reduce){.founder-light .story-avatar{animation:none;}}

/* bottom CTA repeat — white background, bold sans heading */
.cta-repeat{
  padding:64px 0; text-align:center; background:var(--color-bg);
  border-top:1px solid var(--color-line);
}
.cta-repeat p{
  font-family:var(--font-display); font-weight:900;
  font-size:clamp(24px,3.2vw,32px); letter-spacing:-.04em;
  color:var(--color-ink); margin:0 0 24px;
}
.cta-repeat .btn-primary{padding:14px 26px;}

/* footer — brand/legal/socials column + three link groups, then a
   copyright bar; same column shape as kabel.my's footer. */
footer{padding:56px 0 0; border-top:1px solid var(--color-line); background:var(--color-surface);}
.footer-grid{
  display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr; gap:32px;
  padding-bottom:40px;
}
.footer-brand .logo{font-weight:700; font-size:18px; text-decoration:none; color:var(--color-ink);}
.footer-entity{font-size:13px; color:var(--color-ink-soft); margin:14px 0 18px; line-height:1.6;}
.footer-social{display:flex; gap:10px;}
.footer-social a{
  width:32px; height:32px; border-radius:50%; background:var(--color-bg);
  border:1px solid var(--color-line); color:var(--color-ink-soft);
  display:flex; align-items:center; justify-content:center;
  font-size:11px; font-weight:700; text-decoration:none; text-transform:uppercase;
}
.footer-social a:hover{color:var(--color-primary); border-color:var(--color-primary);}
.footer-heading{font-size:13px; font-weight:700; color:var(--color-ink); margin:0 0 14px;}
.footer-col nav{display:flex; flex-direction:column; gap:10px;}
.footer-col nav a{font-size:14px; color:var(--color-ink-soft); text-decoration:none;}
.footer-col nav a:hover{color:var(--color-primary);}
.footer-bottom{
  padding:20px 24px; border-top:1px solid var(--color-line);
  font-size:13px; color:var(--color-ink-soft);
}
@media(max-width:760px){
  .footer-grid{grid-template-columns:1fr 1fr; row-gap:32px;}
}

/* /students-graduates/become-digital-agent/ — problem categories as tabs:
   a wrapping pill row of 9 category names, one detail panel visible below
   at a time. Keeps the section to one screen's worth of chrome instead of
   a 9-card grid; .problem-tabs-js toggles which panel/tab is active. */
.problem-tabs{display:flex; flex-wrap:wrap; gap:10px; margin:0 0 28px;}
.problem-tab{
  font-family:inherit; font-size:14px; font-weight:600; color:var(--color-ink-soft);
  background:var(--color-surface); border:1px solid var(--color-line); border-radius:999px;
  padding:10px 18px; cursor:pointer; transition:background .15s ease, color .15s ease, border-color .15s ease;
}
.problem-tab:hover{border-color:var(--color-accent); color:var(--color-ink);}
.problem-tab[aria-selected="true"]{
  background:var(--color-primary); border-color:var(--color-primary); color:#fff;
}
.problem-panels{
  background:var(--color-bg); border:1px solid var(--color-line); border-radius:16px;
  padding:32px;
}
.problem-panel{display:none;}
.problem-panel.is-active{display:block; animation:panel-in .3s ease both;}
@keyframes panel-in{from{opacity:0; transform:translateY(6px);} to{opacity:1; transform:none;}}
@media(prefers-reduced-motion:reduce){.problem-panel.is-active{animation:none;}}
.problem-panel h3{
  font-family:var(--font-display); font-weight:800; font-size:20px; line-height:1.3;
  margin:0 0 20px; color:var(--color-ink);
}
.problem-panel-grid{display:grid; grid-template-columns:1fr 1fr; gap:24px 32px;}
.problem-panel dt{
  font-size:11px; font-weight:700; text-transform:uppercase; letter-spacing:.1em;
  color:var(--color-accent); margin:0 0 6px;
}
.problem-panel dd{font-size:14px; line-height:1.5; color:var(--color-ink); margin:0;}
.problem-outcomes{list-style:none; margin:0; padding:0; font-size:14px; color:var(--color-ink-soft);}
.problem-outcomes li{padding-left:16px; position:relative; margin-bottom:6px;}
.problem-outcomes li::before{content:"+"; position:absolute; left:0; color:var(--color-accent); font-weight:700;}
.problem-skills{
  font-size:13px; color:var(--color-ink-soft); grid-column:1/-1;
  padding-top:20px; margin-top:4px; border-top:1px solid var(--color-line);
}
.problem-skills strong{color:var(--color-ink); font-weight:600;}
@media(max-width:700px){
  .problem-panels{padding:24px;}
  .problem-panel-grid{grid-template-columns:1fr; gap:20px;}
}

/* /students-graduates/become-digital-agent/ — "How DXP works", 4-step
   numbered process in a horizontal row. */
.steps-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:20px;}
.step-card{border:1px solid var(--color-line); border-radius:14px; padding:24px; background:var(--color-bg);}
.step-number{
  width:36px; height:36px; border-radius:10px; background:var(--color-accent-soft);
  color:var(--color-primary); display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:800; font-size:15px; margin-bottom:16px;
}
.step-card h3{font-family:var(--font-display); font-weight:800; font-size:16px; margin:0 0 8px; color:var(--color-ink);}
.step-card p{font-size:14px; color:var(--color-ink-soft); margin:0;}
@media(max-width:860px){.steps-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.steps-grid{grid-template-columns:1fr;}}

.program-note{font-size:13px; color:var(--color-ink-soft); text-align:center; max-width:560px; margin:32px auto 0;}
