*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg: #ffffff;
      --bg2: #f8fafc;
      --bg3: #f1f5f9;
      --border: rgba(15, 23, 42, 0.10);
      --border-hover: rgba(15, 23, 42, 0.22);
      --text: #041e42;
      --muted: #475569;
      --accent: #2563eb;
      --accent2: #2563eb;
      --font-main: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
      --content-max-width: 1200px;
      --nav-height: 11rem;
      /* Nav avatar: same gutter as hero + small nudge so it lines up with the name column */
      --page-gutter-x: 4rem;
      --nav-photo-x-nudge: 5.5rem;
      --vv-offset-top: 0px;
      /* Experience body column — keep under row width so badge stays beside text */
      --exp-text-max: 800px;
      --exp-badge-col: 116px;
      --exp-row-gap: 1.25rem;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--nav-height) + 1rem);
      overflow-x: hidden;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-main);
      font-size: 16px;
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      /* offset for fixed header: prevents layout gaps */
      padding-top: var(--nav-height);
      overflow-x: hidden;
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 1rem var(--page-gutter-x);
      min-height: var(--nav-height);
      border-bottom: 1px solid transparent;
      transition: border-color 0.3s, background 0.3s;
    }
    nav.scrolled { background: rgba(255,255,255,0.72); backdrop-filter: blur(8px); border-color: rgba(15, 23, 42, 0.08); }
    .nav-inner {
      container-type: inline-size;
      container-name: navbar;
      width: min(100%, var(--content-max-width));
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center;
      gap: clamp(0.5rem, 2vw, 1.5rem);
    }
    .nav-cluster {
      min-width: 0;
      display: flex;
      align-items: center;
    }
    .nav-cluster--left { justify-content: flex-start; }
    .nav-cluster--right { justify-content: flex-end; pointer-events: none; }
    .nav-logo {
      position: relative;
      left: auto;
      top: auto;
      transform: none;
      margin-left: var(--nav-photo-x-nudge);
      flex-shrink: 0;
      font-family: var(--font-main);
      font-size: 15px;
      color: var(--text);
      letter-spacing: 0.03em;
      text-decoration: none;
      font-weight: 700;
    }
    /* Profile photo replaces text logo — circle matches page bg, navy border */
    .nav-logo-photo {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 0;
    }
    .nav-logo-photo img {
      /* vw shrinks when zooming in → photo scales down */
      width: clamp(40px, 22vw, 156px);
      height: clamp(40px, 22vw, 156px);
      max-width: 100%;
      border-radius: 50%;
      object-fit: cover;
      object-position: center top;
      background: var(--bg);
      border: 3px solid var(--text);
      box-shadow: 0 1px 4px rgba(15, 23, 42, 0.12);
      transition: box-shadow 0.2s, transform 0.2s;
    }
    .nav-logo-photo:hover img {
      box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
      transform: scale(1.03);
    }
    .nav-logo-photo:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 4px;
      border-radius: 50%;
    }
    .nav-links {
      display: flex;
      flex-wrap: nowrap;
      justify-content: center;
      align-content: center;
      gap: clamp(0.75rem, 2.5vw, 3.75rem);
      list-style: none;
      min-width: 0;
      justify-self: center;
      white-space: nowrap;
    }
    .nav-links a { font-size: 13px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .nav-links a:hover { color: var(--text); }
    @container navbar (max-width: 980px) {
      .nav-links { gap: clamp(0.5rem, 2vw, 2rem); }
      .nav-links a { font-size: 11px; letter-spacing: 0.06em; }
      .nav-cluster--left .nav-logo { margin-left: clamp(0rem, 2vw, 2rem); }
      .nav-logo-photo img {
        width: clamp(72px, 12vw, 116px);
        height: clamp(72px, 12vw, 116px);
      }
    }
    .nav-cta { font-family: var(--font-main); font-size: 12px; letter-spacing: 0.04em; color: var(--accent); border: 1.5px solid var(--accent); padding: 0.5rem 1.1rem; border-radius: 6px; text-decoration: none; transition: background 0.2s, color 0.2s; }
    .nav-cta:hover { background: var(--accent); color: #fff; }

    /* HERO */
    #hero {
      min-height: calc(100vh - var(--nav-height));
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 0 var(--page-gutter-x) 5rem;
      position: relative; overflow: hidden;
    }
    .hero-layout {
      width: min(100%, var(--content-max-width));
      margin-inline: auto;
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
      gap: clamp(1rem, 2vw, 2rem);
      align-items: end;
      position: relative;
      z-index: 2;
    }
    .hero-main {
      min-width: 0;
      max-width: 700px;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(0,0,0,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.045) 1px, transparent 1px);
      background-size: 64px 64px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 100%, black 40%, transparent 100%);
      pointer-events: none;
      z-index: 0;
    }
    .hero-accent-blob {
      position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(100px);
      background: radial-gradient(circle, rgba(37,99,235,0.06) 0%, transparent 70%);
      top: -80px; right: -80px; pointer-events: none;
    }
    .hero-accent-blob2 {
      position: absolute; width: 400px; height: 400px; border-radius: 50%; filter: blur(80px);
      background: radial-gradient(circle, rgba(15,23,42,0.04) 0%, transparent 70%);
      bottom: 100px; left: 200px; pointer-events: none;
    }
    .hero-tag { font-family: var(--font-main); font-size: 13px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 1.5rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
    .hero-tag::before { content: ''; display: block; width: 32px; height: 1.5px; background: var(--accent); }
    .hero-name { font-family: var(--font-main); font-size: clamp(52px, 8vw, 96px); line-height: 0.95; letter-spacing: -0.03em; color: var(--text); margin-bottom: 0.5rem; font-weight: 800; }
    .hero-name em { color: inherit; font-style: inherit; }
    .hero-title { font-family: var(--font-main); font-size: clamp(20px, 3vw, 32px); color: var(--muted); font-style: normal; margin-bottom: 2.25rem; font-weight: 500; }
    .hero-desc { max-width: 520px; font-size: 16px; color: var(--muted); line-height: 1.75; margin-bottom: 3rem; text-align: justify; }
    .hero-actions { display: flex; gap: 1rem; align-items: center; }
    .hero-photo-wrap {
      margin: 0;
      width: min(100%, 590px);
      height: auto;
      aspect-ratio: 590 / 500;
      justify-self: end;
      margin-top: 0;
      position: relative;
      z-index: 3;
      border-radius: 20px;
      overflow: visible;
      border: none;
      background: transparent;
      box-shadow: none;
    }
    .hero-animation {
      isolation: isolate;
      display: grid;
      place-items: center;
      padding: 1.5rem;
    }
    .hero-orbit {
      position: absolute;
      border-radius: 999px;
      border: none;
      box-shadow: inset 0 0 0 1px rgba(15, 23, 42, 0.12);
      pointer-events: none;
      transform-origin: center;
      z-index: 1;
    }
    .hero-orbit-one { width: 84%; height: 74%; animation: spin 20s linear infinite; }
    .hero-orbit-two { width: 70%; height: 60%; animation: spinReverse 14s linear infinite; }
    .hero-orbit-three { width: 58%; height: 48%; animation: pulseOrbit 3.6s ease-in-out infinite; }
    .hero-terminal {
      position: relative;
      width: 82%;
      min-height: 58%;
      border-radius: 10px;
      border: none;
      background: linear-gradient(165deg, #0f172a 0%, #1e293b 100%);
      box-shadow: 0 16px 36px rgba(15, 23, 42, 0.18);
      overflow: hidden;
      z-index: 2;
    }
    .hero-terminal::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent 20%, rgba(255,255,255,0.14) 45%, transparent 70%);
      transform: translateX(-130%);
      animation: sheen 5.5s ease-in-out infinite;
    }
    .hero-terminal-dots {
      display: none;
      gap: 0.35rem;
      padding: 0.75rem 0.85rem 0.6rem;
      border-bottom: 1px solid rgba(248, 250, 252, 0.18);
      background: rgba(255,255,255,0.04);
    }
    .hero-terminal-dots span {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: rgba(255,255,255,0.4);
    }
    .hero-terminal-lines {
      display: grid;
      gap: 0.5rem;
      padding: 1rem 0.85rem 0.6rem;
    }
    .hero-terminal-lines .line {
      display: block;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, rgba(148, 163, 184, 0.42), rgba(148, 163, 184, 0.14));
      animation: blinkLines 2.4s ease-in-out infinite;
    }
    .hero-terminal-lines .line.w-85 { width: 85%; }
    .hero-terminal-lines .line.w-75 { width: 75%; animation-delay: 0.3s; }
    .hero-terminal-lines .line.w-65 { width: 65%; animation-delay: 0.6s; }
    .hero-terminal-lines .line.w-55 { width: 55%; animation-delay: 0.9s; }
    .hero-terminal-command {
      margin: 0.3rem 0.85rem 1rem;
      font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
      font-size: 14px;
      color: #a5f3fc;
      white-space: nowrap;
      overflow: hidden;
      border-right: 2px solid rgba(165, 243, 252, 0.8);
      width: 0;
      animation: typeCommand 2.8s steps(31, end) 1 forwards, caretBlink 0.9s step-end infinite;
    }
    .btn-primary { font-family: var(--font-main); font-size: 13px; letter-spacing: 0.03em; background: var(--accent); color: #fff; font-weight: 600; padding: 0.85rem 2rem; border-radius: 6px; text-decoration: none; transition: opacity 0.2s, transform 0.2s; }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn-ghost { font-family: var(--font-main); font-size: 13px; letter-spacing: 0.03em; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
    .btn-ghost:hover { color: var(--text); }
    .hero-scroll {
      position: absolute;
      left: 50%;
      bottom: 2rem;
      transform: translateX(-50%);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.35rem;
      font-family: var(--font-main);
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.12em;
      z-index: 4;
    }
    .scroll-arrow {
      font-size: 16px;
      line-height: 1;
      animation: scrollArrow 1.8s ease-in-out infinite;
    }
    @keyframes scrollArrow {
      0%, 100% { transform: translateY(0); opacity: 0.65; }
      50% { transform: translateY(6px); opacity: 1; }
    }
    @keyframes spin {
      from { transform: rotate(0deg); }
      to { transform: rotate(360deg); }
    }
    @keyframes spinReverse {
      from { transform: rotate(360deg); }
      to { transform: rotate(0deg); }
    }
    @keyframes pulseOrbit {
      0%, 100% { opacity: 0.45; transform: scale(0.98); }
      50% { opacity: 1; transform: scale(1.03); }
    }
    @keyframes sheen {
      0% { transform: translateX(-130%); }
      55%, 100% { transform: translateX(130%); }
    }
    @keyframes blinkLines {
      0%, 100% { opacity: 0.35; }
      50% { opacity: 1; }
    }
    @keyframes typeCommand {
      0% { width: 0; }
      100% { width: 31ch; }
    }
    @keyframes caretBlink {
      50% { border-right-color: transparent; }
    }

    /* SECTIONS */
    section { padding: 8rem 4rem; }
    section > * { width: min(100%, var(--content-max-width)); margin-inline: auto; }
    .section-label { font-family: var(--font-main); font-size: 12px; color: var(--accent); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 1rem; display: flex; align-items: center; gap: 0.75rem; font-weight: 600; }
    .section-label::after { content: ''; flex: 1; max-width: 48px; height: 1.5px; background: var(--accent); }
    .section-title { font-family: var(--font-main); font-size: clamp(34px, 5vw, 56px); line-height: 1.08; letter-spacing: -0.02em; margin-bottom: 1.5rem; color: var(--text); font-weight: 800; }

    /* ABOUT */
    #about { border-top: 1px solid var(--border); }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
    .about-copy p { color: var(--muted); line-height: 1.85; margin-bottom: 1.25rem; font-size: 16px; text-align: justify; }
    .about-copy p strong { color: var(--text); font-weight: 600; }
    .about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5px; background: var(--border); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; }
    .stat { background: var(--bg2); padding: 2rem; transition: background 0.2s; }
    .stat:hover { background: var(--bg3); }
    .stat-num { font-family: var(--font-main); font-size: 52px; line-height: 1; color: var(--text); margin-bottom: 0.5rem; font-weight: 700; }
    .stat-num span { color: var(--accent); }
    .stat-label { font-size: 13px; color: var(--muted); letter-spacing: 0.05em; }

    /* SKILLS — single-column list (scoped so cached/old rules never win) */
    #skills { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    /* Same horizontal band as .section-title / section > * (don’t override width/margin — loses alignment vs title) */
    #skills .skills-grid {
      display: flex !important;
      flex-direction: column;
      flex-wrap: nowrap;
      gap: 0;
      margin-top: 3rem;
      width: min(100%, var(--content-max-width));
      margin-inline: auto;
      grid-template-columns: none !important;
    }
    #skills .skill-card {
      width: 100%;
      padding: 1.65rem 0;
      border: none;
      border-radius: 0;
      border-bottom: 1px solid var(--border);
      background: transparent;
      box-shadow: none;
      transition: background 0.2s ease;
    }
    #skills .skill-card:first-of-type {
      border-top: 1px solid var(--border);
    }
    #skills .skill-card:hover {
      transform: none;
      box-shadow: none;
      background: rgba(255, 255, 255, 0.55);
    }
    #skills .skill-card-icon {
      font-family: var(--font-main);
      font-size: 11px;
      color: var(--accent);
      letter-spacing: 0.1em;
      text-transform: uppercase;
      margin-bottom: 0.45rem;
      font-weight: 600;
    }
    #skills .skill-card h3 {
      font-size: clamp(17px, 2vw, 18px);
      font-weight: 700;
      margin-bottom: 0.85rem;
      color: var(--text);
      letter-spacing: -0.01em;
    }
    #skills .skill-tags { display: flex; flex-wrap: wrap; gap: 0.45rem; align-items: center; }
    #skills .tag {
      font-family: var(--font-main);
      font-size: 11px;
      color: var(--muted);
      border: 1px solid rgba(15, 23, 42, 0.12);
      border-radius: 999px;
      padding: 0.28rem 0.65rem;
      background: rgba(255, 255, 255, 0.65);
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }
    #skills .skill-card:hover .tag {
      color: var(--text);
      border-color: rgba(15, 23, 42, 0.18);
      background: rgba(255, 255, 255, 0.95);
    }

    /* PROJECTS */
    #projects { border-top: 1px solid var(--border); }
    .projects-list { margin-top: 4rem; display: flex; flex-direction: column; }
    .project-item { display: grid; grid-template-columns: 80px 1fr auto; align-items: center; gap: 3rem; padding: 2.5rem 0; border-top: 1px solid var(--border); position: relative; }
    .project-item::after { content: ''; position: absolute; left: -4rem; right: -4rem; top: 0; bottom: 0; background: var(--bg2); z-index: -1; opacity: 0; transition: opacity 0.2s; }
    .project-item:hover::after { opacity: 1; }
    .project-num { font-family: var(--font-main); font-size: 12px; color: var(--muted); letter-spacing: 0.08em; font-weight: 600; }
    .project-info h3 { font-family: var(--font-main); font-size: 24px; margin-bottom: 0.4rem; color: var(--text); transition: color 0.2s; font-weight: 700; }
    .project-info .project-link { color: inherit; text-decoration: none; }
    .project-item:hover .project-info h3 { color: var(--accent); }
    .project-info p { font-size: 14px; color: var(--muted); max-width: 560px; line-height: 1.6; text-align: justify; }
    .project-tech { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: flex-end; }
    .project-tag { font-family: var(--font-main); font-size: 11px; color: var(--accent2); border: 1px solid rgba(37,99,235,0.25); border-radius: 6px; padding: 0.3rem 0.65rem; background: rgba(37,99,235,0.06); font-weight: 500; }

    /* EXPERIENCE */
    #experience { background: var(--bg2); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    .exp-list { margin-top: 3rem; }
    .exp-item { display: grid; grid-template-columns: 180px 1fr; gap: 3rem; padding: 2.5rem 0; border-top: 1px solid var(--border); align-items: start; }
    .exp-body-row {
      display: flex;
      align-items: flex-start;
      flex-wrap: nowrap;
      gap: var(--exp-row-gap);
    }
    /* Same readable measure + reserve badge lane → avoids wrap pushing logos below */
    .exp-body-text {
      flex: 0 1 auto;
      min-width: 0;
      width: min(var(--exp-text-max), calc(100% - var(--exp-badge-col) - var(--exp-row-gap)));
      max-width: min(var(--exp-text-max), calc(100% - var(--exp-badge-col) - var(--exp-row-gap)));
    }
    .exp-body-heading {
      margin-bottom: 0.75rem;
    }
    .exp-body-heading h3 { margin-bottom: 0.25rem; }
    .exp-body-heading .company { margin-bottom: 0; }
    .exp-badge {
      width: 116px;
      height: 116px;
      flex: 0 0 auto;
      margin-left: auto;
      align-self: flex-start;
      border-radius: 999px;
      overflow: hidden;
      border: none;
      box-shadow: inset 0 0 0 2px #041e42;
      background: var(--bg2);
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .exp-badge--athena {
      width: 116px;
      height: 116px;
    }
    .exp-badge img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: contain; /* keep aspect ratio */
      object-position: center center; /* keep visuals consistent across different logo paddings */
    }
    .exp-date { font-family: var(--font-main); font-size: 12px; color: var(--muted); padding-top: 4px; letter-spacing: 0.04em; font-weight: 500; }
    .exp-body h3 { font-size: 18px; font-weight: 700; margin-bottom: 0.25rem; color: var(--text); }
    .exp-body .company { font-family: var(--font-main); font-size: 13px; color: var(--accent); font-weight: 600; }
    .exp-body-text p { font-size: 14px; color: var(--muted); line-height: 1.7; margin: 0; }
    .exp-body a.project-link { color: var(--accent); text-decoration: none; border-bottom: none; }
    .exp-body a.project-link:hover { color: var(--text); border-bottom: none; }

    /* CONTACT */
    #contact { border-top: 1px solid var(--border); text-align: center; }
    .contact-inner { max-width: 640px; margin: 0 auto; }
    .contact-inner .section-label { justify-content: center; }
    .contact-inner .section-label::after { display: none; }
    .contact-email { font-family: var(--font-main); font-size: clamp(22px, 3.5vw, 42px); color: var(--text); text-decoration: none; display: block; margin: 2rem 0; transition: color 0.2s; font-weight: 700; }
    .contact-email:hover { color: var(--accent); }
    .contact-email em { font-style: normal; }
    .contact-sub { color: var(--muted); font-size: 15px; margin-bottom: 3rem; }
    .social-links { display: flex; gap: 2rem; justify-content: center; }
    .social-link { font-family: var(--font-main); font-size: 12px; letter-spacing: 0.08em; color: var(--muted); text-decoration: none; text-transform: uppercase; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; font-weight: 600; }
    .social-link:hover { color: var(--accent); }
    .social-link::before { content: '→'; }

    /* FOOTER */
    footer { border-top: 1px solid var(--border); padding: 2rem 4rem; display: flex; align-items: center; justify-content: space-between; background: var(--bg2); }
    .footer-copy { font-family: var(--font-main); font-size: 12px; color: var(--muted); }
    .footer-links { display: flex; align-items: center; gap: 1rem; }
    .footer-back { font-family: var(--font-main); font-size: 12px; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-back:hover { color: var(--accent); }

    /* ANIMATIONS */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }

    /* MOBILE */
    @media (max-width: 1120px) {
      :root { --nav-height: 8.5rem; --nav-photo-x-nudge: 2rem; }
      nav { padding-top: calc(1rem + env(safe-area-inset-top)); }
      .nav-logo.nav-logo-photo { top: var(--vv-offset-top); }
      .nav-links { display: none; }
      .nav-inner { grid-template-columns: 1fr; }
      .nav-cluster--right { display: none; }
      .nav-cluster--left { justify-content: flex-start; }
      .nav-logo-photo img {
        width: clamp(78px, 12vw, 116px);
        height: clamp(78px, 12vw, 116px);
      }
    }

    @media (max-width: 900px) {
      nav { padding: 0.75rem 1.5rem; }
      :root { --nav-height: 9.25rem; --page-gutter-x: 1.5rem; --nav-photo-x-nudge: 0rem; }
      .nav-cluster--left .nav-logo { margin-left: 0; }
      .nav-logo-photo img {
        width: clamp(92px, 32vw, 132px);
        height: clamp(92px, 32vw, 132px);
      }
      .nav-links { display: none; }
      section, #hero { padding-left: 1.5rem; padding-right: 1.5rem; }
      #hero { padding-bottom: 4rem; }
      .hero-layout { grid-template-columns: 1fr; gap: 2rem; }
      .hero-photo-wrap { justify-self: start; width: min(100%, 360px); height: auto; aspect-ratio: 590 / 500; margin-top: 0; transform: none; }
      .hero-terminal-command { font-size: 13px; }
      .hero-scroll { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 3rem; }
      .about-stats { grid-template-columns: 1fr 1fr; }
      .project-item { grid-template-columns: 1fr; gap: 1rem; }
      .project-tech { justify-content: flex-start; }
      .exp-item { grid-template-columns: 1fr; gap: 0.5rem; }
      :root { --exp-badge-col: 92px; --exp-row-gap: 0.85rem; }
      #experience .exp-body-text {
        width: 100%;
        max-width: 100%;
      }
      .exp-body-row { flex-wrap: wrap; }
      .exp-badge { width: 92px; height: 92px; }
      .exp-badge--athena { width: 92px; height: 92px; }
      .exp-badge img { height: 100%; width: 100%; max-width: none; }
      footer { flex-direction: column; gap: 1rem; padding: 2rem 1.5rem; }
    }
