﻿
  * { box-sizing: border-box; margin: 0; padding: 0; }
  :root {
    --bg: #090d13;
    --bg-card: #111824;
    --text-primary: #f4ede3;
    --text-secondary: #c9bca9;
    --text-muted: #8f8372;
    --accent: #c89a54;
    --accent-2: #195743;
    --border: rgba(244,237,227,0.12);
    --border-strong: rgba(244,237,227,0.22);
    --radius: 14px;
    --space-12: 12px;
    --space-16: 16px;
    --space-20: 20px;
    --space-24: 24px;
    --space-32: 32px;
    --space-40: 40px;
    --space-56: 56px;
    --shadow: 0 12px 30px rgba(0,0,0,0.35);
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-serif: 'Sora', 'Space Grotesk', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-logo: 'Cairo', 'Tajawal', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  }
  html {
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
    scroll-behavior: smooth;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }
  [data-palette="deal-me-in"] {
    --bg: #090d13;
    --bg-card: #111824;
    --text-primary: #f4ede3;
    --text-secondary: #c9bca9;
    --text-muted: #8f8372;
    --accent: #c89a54;
    --accent-2: #195743;
    --border: rgba(244,237,227,0.085);
    --border-strong: rgba(244,237,227,0.18);
  }
  [data-palette="absolute-cinema"] {
    --bg: #131927;
    --bg-card: #1b2233;
    --text-primary: #eef1fb;
    --text-secondary: #c8cee3;
    --text-muted: #939dbd;
    --accent: #79cfff;
    --accent-2: #d163a8;
    --border: rgba(238,241,251,0.1);
    --border-strong: rgba(238,241,251,0.2);
  }
  [data-palette="out-of-office"] {
    --bg: #0f1824;
    --bg-card: #162334;
    --text-primary: #f3f7fb;
    --text-secondary: #c1cfdd;
    --text-muted: #8ea4b9;
    --accent: #d6ff3b;
    --accent-2: #1ecfa0;
    --border: rgba(243,247,251,0.1);
    --border-strong: rgba(243,247,251,0.22);
  }
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
  }

  body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text-primary);
    line-height: 1.6;
    padding-top: 64px;
  }
  main.wrap {
    overflow-x: hidden;
  }
  body.custom-cursor-enabled,
  body.custom-cursor-enabled a,
  body.custom-cursor-enabled button,
  body.custom-cursor-enabled [role="button"],
  body.custom-cursor-enabled input,
  body.custom-cursor-enabled textarea,
  body.custom-cursor-enabled select,
  body.custom-cursor-enabled summary {
    cursor: none !important;
  }
  .cursor-dot,
  .cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, -50%);
    z-index: 12000;
    transition: opacity 140ms ease;
  }
  .cursor-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent) 82%, #ffffff);
    box-shadow: 0 0 0 1px color-mix(in srgb, var(--bg) 55%, transparent);
  }
  .cursor-ring {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--accent) 52%, var(--text-primary));
    background: transparent;
  }
  body.cursor-active .cursor-dot,
  body.cursor-active .cursor-ring {
    opacity: 1;
  }
  a { color: inherit; text-decoration: none; }
  img,
  svg,
  video {
    max-width: 100%;
  }
  .wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 var(--space-24);
  }
  .about-back-row {
    padding-top: 18px;
  }
  .about-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease;
  }
  .about-back-chevron {
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    font-weight: 600;
    color: currentColor;
    transform: translateY(-1px);
  }
  .about-back-link:hover {
    color: var(--text-primary);
  }

  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: color-mix(in srgb, var(--bg) 85%, transparent);
    border-bottom: 1px solid var(--border);
  }
  .nav-inner {
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-16);
  }
  .nav .nav-inner.wrap {
    max-width: none;
    width: 100%;
    padding: 0 56px;
  }
  .nav-logo {
    font-family: var(--font-logo);
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: 0.01em;
    text-transform: lowercase;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
  }
  .nav-drawer-label {
    display: none;
  }
  .nav-links a {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
    position: relative;
  }
  .nav-links a:hover { color: var(--text-primary); }
  .nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width 0.3s ease;
  }
  .nav-links a:hover::after { width: 100%; }
  .nav-links .nav-resume-btn {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 18%, transparent);
    color: var(--text-primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 8px 14px;
    line-height: 1;
    cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease, transform 220ms ease;
  }
  .nav-links .nav-resume-btn::after {
    display: none;
  }
  .nav-links .nav-resume-btn:hover {
    transform: translateY(-1px);
    border-color: color-mix(in srgb, var(--accent) 68%, #ffffff);
    background: color-mix(in srgb, var(--accent) 30%, transparent);
  }
  .nav-links .nav-resume-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 3px;
  }
  .nav-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 28px;
    height: 20px;
    position: relative;
    flex-direction: column;
    justify-content: space-between;
    pointer-events: auto;
    touch-action: manipulation;
  }
  .nav-menu-btn:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 4px;
    border-radius: 4px;
  }
  .nav-menu-btn span {
    display: block;
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    transform-origin: center;
    transition: opacity 0.22s ease, transform 0.28s ease;
  }
  .nav.menu-open .nav-menu-btn {
    justify-content: center;
  }
  .nav.menu-open .nav-menu-btn span {
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
  }
  .nav.menu-open .nav-menu-btn span:nth-child(1) {
    transform: translateY(-50%) rotate(45deg);
  }
  .nav.menu-open .nav-menu-btn span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  .nav.menu-open .nav-menu-btn span:nth-child(3) {
    transform: translateY(-50%) rotate(-45deg);
  }
  .nav-drawer-scrim {
    display: none;
  }

  .hero {
    padding: var(--space-56) 0 var(--space-40);
  }
  .hero-collage {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: calc(var(--radius) + 4px);
    min-height: min(72vh, 860px);
    background: var(--bg-card);
    box-shadow: var(--shadow);
  }
  .hero-copy {
    position: relative;
    z-index: 2;
    max-width: min(760px, calc(100% - 52px));
    margin: 34px 0 0 34px;
    padding: 22px 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: color-mix(in srgb, var(--bg) 76%, transparent);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }
  .hero-main-image {
    position: absolute;
    inset: 0;
    min-height: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-float {
    position: absolute;
    z-index: 3;
    width: clamp(150px, 16vw, 240px);
    height: auto;
    display: block;
    pointer-events: none;
    filter: drop-shadow(0 16px 26px rgba(0, 0, 0, 0.35));
  }
  .hero-float-a {
    left: 22px;
    bottom: -8px;
  }
  .hero-float-b {
    left: 30%;
    bottom: -10px;
  }
  .hero-float-e {
    right: 20px;
    bottom: -12px;
  }
  .eyebrow {
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  h1 {
    font-family: var(--font-serif);
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.08;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
  }
  .hero p {
    color: var(--text-secondary);
    max-width: 66ch;
  }
  .hero-image {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 300px;
    background: var(--bg-card);
    box-shadow: var(--shadow);
  }
  .hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .section {
    padding: var(--space-40) 0;
  }
  .section-head {
    position: relative;
    margin-bottom: var(--space-24);
  }
  .section-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(26px, 3vw, 38px);
    margin-bottom: 8px;
  }
  .section-head p { color: var(--text-secondary); max-width: 70ch; }
  .section-accent {
    position: absolute;
    z-index: 1;
    width: clamp(110px, 12vw, 170px);
    height: auto;
    pointer-events: none;
  }
  .section-accent-leadership-coffee {
    right: 10px;
    bottom: -188px;
  }
  .section-accent-moments-darts {
    right: 12px;
    top: -28px;
  }
  .theme-story-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-16);
  }
  .theme-story-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-20);
    display: grid;
    gap: 10px;
    align-content: start;
    min-height: 220px;
  }
  .theme-story-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
  }
  .theme-story-title {
    font-size: 20px;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }
  .theme-story-copy {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
  }
  .inline-link {
    color: var(--text-primary);
    border-bottom: 1px dotted color-mix(in srgb, var(--accent) 65%, transparent);
  }
  .inline-link:hover {
    color: color-mix(in srgb, var(--accent) 70%, var(--text-primary));
  }
  .anime-feed {
    margin-top: 8px;
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: grid;
    gap: 10px;
  }
  .anime-feed-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    color: var(--text-muted);
  }
  .anime-feed-open {
    font-size: 12px;
    color: var(--text-secondary);
    white-space: nowrap;
  }
  .anime-feed-open:hover {
    color: var(--text-primary);
  }
  .anime-feed-list {
    list-style: none;
    display: grid;
    gap: 8px;
  }
  .anime-feed-item {
    display: grid;
    gap: 8px;
    padding: 8px 10px;
    border: 1px solid color-mix(in srgb, var(--border-strong) 70%, transparent);
    border-radius: 10px;
    background: color-mix(in srgb, var(--bg) 76%, transparent);
  }
  .anime-feed-item a {
    font-size: 13px;
    color: var(--text-primary);
    line-height: 1.4;
  }
  .anime-feed-item a:hover {
    color: color-mix(in srgb, var(--accent) 66%, var(--text-primary));
  }
  .anime-feed-meta {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: flex-end;
    margin-top: 0;
  }
  .anime-feed-pill {
    border: 1px solid color-mix(in srgb, var(--border-strong) 72%, transparent);
    border-radius: 999px;
    padding: 2px 8px;
    font-size: 10px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: color-mix(in srgb, var(--bg-card) 78%, transparent);
    line-height: 1.4;
  }
  .anime-feed-item time {
    font-size: 11px;
    color: var(--text-muted);
  }
  .anime-feed-item-foot {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
  }
  .anime-feed-item.is-loading,
  .anime-feed-item.is-empty {
    font-size: 12px;
    color: var(--text-muted);
  }

  .highlight-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--space-20);
  }
  .card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .card-media {
    aspect-ratio: 4 / 3;
    border-bottom: 1px solid var(--border);
  }
  .card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .card-body {
    padding: var(--space-16);
  }
  .card-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .card-body p {
    font-size: 14px;
    color: var(--text-secondary);
  }
  .card-photo-note {
    display: block;
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.5;
    min-height: 2.8em;
  }

  .photo-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: var(--space-16);
  }
  .photo-item {
    grid-column: span 4;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .photo-item img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
  }
  .photo-cap {
    padding: 10px 12px 12px;
    font-size: 13px;
    color: var(--text-secondary);
  }
  .photo-cap-main {
    display: block;
    font-size: 18px;
    line-height: 1.35;
    color: var(--text-secondary);
  }
  .photo-cap-sub {
    display: block;
    margin-top: 4px;
    min-height: 44px;
    font-size: 14px;
    line-height: 1.4;
    color: var(--text-muted);
  }

  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-16);
  }
  .leadership-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-20);
  }
  .leadership-role {
    font-weight: 600;
    margin-bottom: 2px;
  }
  .leadership-org {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .leadership-item p {
    font-size: 14px;
    color: var(--text-secondary);
  }
  .mbti-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-16);
  }
  .mbti-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: var(--space-20);
  }
  .mbti-hero-card {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-16);
    align-items: center;
  }
  .mbti-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
  }
  .mbti-card p {
    font-size: 14px;
    color: var(--text-secondary);
  }
  .mbti-list {
    list-style: none;
    display: grid;
    gap: 8px;
  }
  .mbti-list li {
    font-size: 14px;
    color: var(--text-secondary);
    padding-left: 14px;
    position: relative;
  }
  .mbti-list li::before {
    content: '•';
    color: color-mix(in srgb, var(--accent) 74%, var(--text-primary));
    position: absolute;
    left: 0;
    top: 0;
  }
  .mbti-type {
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 10px;
  }
  .mbti-type strong {
    font-size: clamp(28px, 4.2vw, 40px);
    line-height: 0.9;
    letter-spacing: 0.02em;
    color: color-mix(in srgb, var(--accent) 66%, #ffffff);
    border-bottom: 2px solid color-mix(in srgb, var(--accent) 72%, transparent);
    padding-bottom: 2px;
  }
  .mbti-role {
    font-size: clamp(22px, 3vw, 30px);
    line-height: 1.15;
    letter-spacing: -0.01em;
    margin: 6px 0 6px;
  }
  .mbti-subtype {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .mbti-report-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 13px;
    color: color-mix(in srgb, var(--accent) 70%, var(--text-primary));
    border-bottom: 1px dotted color-mix(in srgb, var(--accent) 75%, transparent);
  }
  .mbti-report-link:hover {
    color: #fff;
  }
  body.mbti-modal-open {
    overflow: hidden;
  }
  .mbti-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .mbti-modal[hidden] { display: none; }
  .mbti-modal.open {
    opacity: 1;
    pointer-events: auto;
  }
  .mbti-modal-panel {
    width: min(960px, 96vw);
    max-height: 90vh;
    overflow: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
    padding: 18px;
    position: relative;
  }
  .mbti-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .mbti-modal-close:hover {
    border-color: color-mix(in srgb, var(--accent) 70%, var(--border-strong));
  }
  .mbti-modal-head {
    margin-bottom: 12px;
    padding-right: 42px;
  }
  .mbti-modal-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .mbti-modal-title {
    font-size: clamp(20px, 2.4vw, 28px);
    margin-bottom: 6px;
    line-height: 1.2;
  }
  .mbti-modal-copy {
    font-size: 13px;
    color: var(--text-secondary);
  }
  .mbti-modal-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .mbti-modal-action {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    background: color-mix(in srgb, var(--bg) 80%, transparent);
  }
  .mbti-modal-action:hover {
    color: #fff;
    border-color: color-mix(in srgb, var(--accent) 76%, var(--border-strong));
  }
  .mbti-modal-frame-shell {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 68vh;
    background: color-mix(in srgb, var(--bg) 70%, transparent);
  }
  .mbti-modal-frame {
    width: 100%;
    height: 68vh;
    border: 0;
    display: block;
    background: #ffffff;
  }
  .mbti-modal-fallback {
    min-height: 68vh;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 10px;
    color: var(--text-secondary);
    padding: 24px;
    background: color-mix(in srgb, var(--bg) 65%, #fff 35%);
  }
  .mbti-note {
    margin-top: var(--space-16);
    font-size: 12px;
    color: var(--text-muted);
  }
  .mbti-radar-wrap {
    display: grid;
    place-items: center;
    padding: 6px 0 2px;
  }
  .mbti-radar {
    width: min(300px, 100%);
    height: auto;
  }
  .mbti-radar text {
    fill: color-mix(in srgb, #ffffff 88%, var(--accent));
    font-size: 15px;
    font-weight: 600;
    font-family: var(--font-sans);
  }
  .mbti-radar .grid {
    fill: none;
    stroke: color-mix(in srgb, var(--text-primary) 34%, transparent);
    stroke-width: 1;
  }
  .mbti-radar .axis {
    stroke: color-mix(in srgb, #ffffff 42%, transparent);
    stroke-width: 1;
  }
  .mbti-radar .shape {
    fill: color-mix(in srgb, var(--accent) 46%, transparent);
    stroke: color-mix(in srgb, var(--accent) 88%, #fff);
    stroke-width: 2.5;
  }
  .mbti-radar .dot {
    fill: color-mix(in srgb, #fff 78%, var(--accent));
  }
  .mbti-domain-trigger {
    cursor: pointer;
  }
  .mbti-fit-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--space-16);
  }
  .mbti-fit-column h4 {
    font-size: 15px;
    margin-bottom: 8px;
    color: var(--text-primary);
  }
  .mbti-fit-column .mbti-list {
    margin-bottom: 10px;
  }
  .mbti-match-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
  }
  .mbti-pill {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 12px;
    color: var(--text-secondary);
    background: color-mix(in srgb, var(--bg-card) 92%, transparent);
  }

  .fact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .fact {
    border: 1px solid var(--border-strong);
    background: color-mix(in srgb, var(--bg-card) 92%, transparent);
    border-radius: 999px;
    font-size: 12px;
    color: var(--text-secondary);
    padding: 8px 12px;
  }

  .about-footer {
    border-top: 1px solid var(--border);
    padding: var(--space-32) 0 var(--space-56);
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: var(--space-16);
    align-items: center;
    color: var(--text-secondary);
  }
  
  .about-footer-name {
    margin-bottom: 6px;
  }
  .about-footer-signature {
    display: block;
    width: auto;
    height: 52px;
    max-width: min(360px, 80vw);
    filter: brightness(0) invert(1);
    transform: rotate(8deg);
    transform-origin: left center;
  }
  .about-footer-note {
    font-size: 12px;
    color: var(--text-muted);
  }
  .footer-links {
    display: inline-flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-left: auto;
    align-items: center;
    justify-self: end;
    text-align: right;
  }
  .footer-link {
    font-size: 13px;
    letter-spacing: 0.03em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .footer-link:hover {
    color: var(--text-primary);
  }
  .footer-link-back {
    border: 1px solid color-mix(in srgb, var(--accent) 66%, var(--border-strong));
    border-radius: 999px;
    padding: 8px 14px;
    color: color-mix(in srgb, var(--text-primary) 92%, var(--accent));
    background: color-mix(in srgb, var(--accent) 14%, var(--bg-card));
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--accent) 18%, transparent);
    font-weight: 600;
  }
  .footer-link-back:hover {
    border-color: color-mix(in srgb, var(--accent) 82%, #fff);
    background: color-mix(in srgb, var(--accent) 22%, var(--bg-card));
    color: #fff;
  }


  /* Restored styles for the current About page structure. */
  .hero {
    padding: 44px 0 58px;
  }
  .hero-collage {
    min-height: 660px;
    border-radius: 18px;
    background: var(--bg-card);
  }
  .hero-collage::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
      linear-gradient(90deg, rgba(9, 13, 19, 0.58), rgba(9, 13, 19, 0.18) 54%, rgba(9, 13, 19, 0.08)),
      linear-gradient(0deg, rgba(9, 13, 19, 0.42), transparent 42%);
    pointer-events: none;
  }
  .hero-main-image,
  .hero-main-image picture,
  .hero-main-image img {
    width: 100%;
    height: 100%;
  }
  .hero-main-image img {
    object-position: 68% center;
    filter: saturate(0.96) contrast(0.96);
  }
  .hero-copy {
    max-width: 650px;
    margin: 34px 0 0 34px;
    padding: 20px 20px 22px;
    background: rgba(9, 13, 19, 0.68);
    border: 1px solid rgba(244, 237, 227, 0.1);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  }
  .hero-copy h1 {
    font-size: 46px;
    line-height: 1.1;
    letter-spacing: 0;
    margin-bottom: 14px;
  }
  .hero-copy p {
    font-size: 17px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--text-primary) 86%, var(--text-secondary));
  }
  .hero-float {
    width: 300px;
  }
  .hero-float-a {
    left: 20px;
    bottom: -10px;
    width: 325px;
    transform: rotate(-5deg);
  }
  .hero-float-b {
    left: 51%;
    bottom: -28px;
    width: 400px;
    transform: translateX(-50%) rotate(2deg);
    z-index: 10;
  }
  .hero-float-e {
    right: 10px;
    bottom: -36px;
    width: 340px;
    transform: rotate(4deg);
  }

  .section {
    padding: 52px 0;
  }
  .section > :not(.section-head) {
    position: relative;
    z-index: 1;
  }
  .section-head {
    position: relative;
    z-index: 0;
    isolation: isolate;
    margin-bottom: 26px;
  }
  #leadership > .section-head {
    margin-bottom: 42px;
  }
  #highlights > .section-head,
  #moments > .section-head {
    margin-bottom: 42px;
    padding-bottom: 12px;
  }
  .section-head h2 {
    font-size: 32px;
    line-height: 1.12;
    letter-spacing: 0;
  }
  .section-head p {
    font-size: 16px;
    line-height: 1.6;
  }
  .section-head h2,
  .section-head p {
    position: relative;
    z-index: 2;
  }
  .section-accent {
    position: absolute;
    z-index: 0;
    opacity: 1;
    pointer-events: none;
    object-fit: contain;
    max-width: none;
  }
  .section-accent-leadership-coffee {
    width: 132px;
    right: 12px;
    top: 12px;
  }
  .section-accent-moments-darts {
    width: 122px;
    right: 12px;
    top: 2px;
  }

  .proverb-card {
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--accent) 44%, var(--border));
    border-radius: 18px;
    padding: 38px 28px 52px;
    background:
      linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, transparent), transparent 34%),
      linear-gradient(90deg, color-mix(in srgb, var(--bg-card) 88%, #000), var(--bg-card));
    box-shadow: var(--shadow);
  }
  .proverb-quote {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding: 12px 70px 22px;
    font-family: 'Space Grotesk', var(--font-sans);
    font-size: 30px;
    line-height: 1.22;
    letter-spacing: 0;
    text-align: center;
    color: var(--text-primary);
  }
  .proverb-highlight {
    color: color-mix(in srgb, var(--accent) 76%, #ffffff);
  }
  .proverb-mark {
    position: absolute;
    font-family: Georgia, serif;
    font-size: 76px;
    line-height: 1;
    color: color-mix(in srgb, var(--text-primary) 34%, transparent);
  }
  .proverb-mark-open {
    top: 20px;
    left: 12px;
  }
  .proverb-mark-close {
    right: 12px;
    bottom: 8px;
  }
  @media (min-width: 721px) {
    .proverb-mark-open {
      top: -4px;
      left: -2px;
    }
    .proverb-mark-close {
      right: -2px;
      bottom: -14px;
    }
  }
  .proverb-jacks {
    display: flex;
    justify-content: center;
    align-items: end;
    min-height: 150px;
    margin: 2px 0 42px;
  }
  .proverb-jack {
    width: 106px;
    height: auto;
    filter: drop-shadow(0 14px 22px rgba(0, 0, 0, 0.36));
  }
  .proverb-jack + .proverb-jack {
    margin-left: -30px;
  }
  .proverb-jack-1 { transform: rotate(-16deg) translateY(8px); }
  .proverb-jack-2 { transform: rotate(-6deg); }
  .proverb-jack-3 { transform: rotate(7deg); }
  .proverb-jack-4 { transform: rotate(16deg) translateY(8px); }
  .proverb-copy {
    max-width: 820px;
    margin: 0 auto;
    padding-top: 28px;
    border-top: 1px solid var(--border);
    display: grid;
    gap: 18px;
  }
  .proverb-copy p {
    font-size: 15px;
    line-height: 1.72;
    color: var(--text-secondary);
  }
  .proverb-copy strong {
    color: var(--text-primary);
  }

  .leadership-grid {
    align-items: stretch;
  }
  .leadership-item {
    padding: 24px;
    min-height: 164px;
  }
  .leadership-role {
    font-size: 18px;
    line-height: 1.2;
  }
  .leadership-org {
    font-size: 14px;
    margin: 7px 0 14px;
  }
  .leadership-item p {
    font-size: 15px;
    line-height: 1.58;
  }

  .highlight-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: stretch;
    gap: var(--space-24);
  }
  .highlight-grid .card {
    aspect-ratio: auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .card-media {
    min-height: 0;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
  }
  .card-body {
    min-height: 0;
  }
  .card-body {
    display: flex;
    flex-direction: column;
    padding: 18px;
  }
  .card-body h3 {
    font-size: 20px;
    line-height: 1.15;
    margin-bottom: 12px;
  }
  .card-body p {
    display: flex;
    flex: 1;
    flex-direction: column;
    font-size: 15px;
    line-height: 1.52;
  }
  .card-copy-main {
    display: block;
  }
  .card-photo-note {
    margin-top: auto;
    padding-top: 14px;
    min-height: 48px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.45;
  }
  @media (min-width: 721px) {
    .highlight-grid .card-body p {
      display: grid;
      grid-template-rows: minmax(6.3em, auto) auto;
      gap: 10px;
    }
    .card-photo-note {
      min-height: 4.4em;
    }
  }

  .photo-grid {
    align-items: stretch;
    gap: var(--space-24);
  }
  .photo-item {
    aspect-ratio: auto;
    display: grid;
    grid-template-rows: auto 1fr;
    align-items: start;
    height: 100%;
  }
  .photo-item img {
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    display: block;
  }
  .photo-item img.photo-item-img-chalet {
    object-position: center;
  }
  @media (min-width: 721px) {
    .photo-item img.photo-item-img-chalet {
      object-position: center !important;
    }
  }
  .photo-cap {
    min-height: 130px;
    display: grid;
    grid-template-rows: minmax(58px, auto) auto;
    align-content: start;
    gap: 6px;
    padding: 14px;
    height: 100%;
  }
  .photo-cap-main {
    min-height: 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    color: var(--text-primary);
  }
  .photo-cap-sub {
    min-height: 0;
    margin-top: 0;
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-muted);
  }

  .mbti-card {
    padding: 24px;
  }
  .mbti-grid {
    gap: 14px;
  }
  .mbti-hero-card {
    grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
    gap: 34px;
    align-items: center;
  }
  .mbti-content {
    order: 2;
    min-height: 300px;
    display: flex;
    flex-direction: column;
  }
  .mbti-radar-wrap {
    order: 1;
    position: relative;
    min-height: 330px;
  }
  .mbti-topline {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 22px;
  }
  .mbti-type {
    margin: 0;
    align-items: flex-start;
  }
  .mbti-type strong {
    font-size: 44px;
    letter-spacing: 0.04em;
  }
  .mbti-core {
    margin-top: auto;
    margin-bottom: auto;
  }
  .mbti-role {
    font-size: 27px;
    line-height: 1.16;
    margin: 0 0 10px;
  }
  .mbti-summary {
    font-size: 15px;
    line-height: 1.5;
  }
  .mbti-highlights {
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .mbti-subtype {
    margin-bottom: 12px;
  }
  .mbti-list {
    gap: 10px;
  }
  .mbti-list li {
    font-size: 15px;
  }
  .mbti-report-link {
    margin-top: 24px;
    align-self: flex-start;
  }
  .mbti-radar {
    width: 360px;
  }
  .mbti-radar-hover-tip {
    position: absolute;
    z-index: 4;
    width: min(280px, calc(100% - 16px));
    padding: 12px 14px;
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    background: color-mix(in srgb, var(--bg) 88%, #000);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 160ms ease, transform 160ms ease;
  }
  .mbti-radar-hover-tip.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  .mbti-radar-tip-head {
    margin-bottom: 4px;
    color: var(--text-primary);
  }
  .mbti-radar-hover-tip p {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-secondary);
  }
  .mbti-radar-mobile-tip {
    display: none;
  }
  .mbti-fit-shellless {
    padding: 0;
    border: 0;
    background: transparent;
    margin: 0;
  }
  .mbti-fit-grid {
    gap: 14px;
  }
  .mbti-fit-panel {
    border: 1px solid var(--border-strong);
    border-radius: var(--radius);
    padding: 20px;
    background: color-mix(in srgb, var(--bg-card) 92%, var(--bg));
    display: flex;
    flex-direction: column;
  }
  .mbti-fit-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 12px;
  }
  .mbti-fit-head h4 {
    font-size: 18px;
    line-height: 1.25;
    color: var(--text-primary);
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
  }
  .mbti-fit-badge {
    flex: 0 0 auto;
    margin-left: auto;
    max-width: 100%;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 5px 10px;
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    background: color-mix(in srgb, var(--bg) 76%, transparent);
  }
  .mbti-fit-copy {
    font-size: 15px;
    line-height: 1.55;
    min-height: 0;
  }
  .mbti-match-list {
    margin-top: auto;
    padding-top: 10px;
  }
  .mbti-note {
    margin-top: 10px;
    text-align: left;
  }

  .binging-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .binging-card {
    min-height: 296px;
    display: grid;
    grid-template-columns: minmax(260px, 0.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 28px;
    overflow: hidden;
  }
  .binging-card-intro {
    min-width: 0;
  }
  .binging-card .theme-story-title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .binging-card .theme-story-copy {
    font-size: 15px;
    line-height: 1.58;
  }
  .binging-card .anime-feed {
    min-width: 0;
    margin-top: 0;
    padding-top: 0;
    border-top: 0;
  }
  .anime-feed-list {
    list-style: none;
  }
  .binging-card .anime-feed-list {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding: 2px 0 12px;
    scroll-snap-type: x proximity;
  }
  .anime-feed-thumb-item {
    flex: 0 0 156px;
    padding: 0;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    background: color-mix(in srgb, var(--bg) 70%, transparent);
    scroll-snap-align: start;
  }
  .anime-feed-thumb-link {
    position: relative;
    display: block;
    height: 232px;
    color: var(--text-primary);
  }
  .anime-feed-thumb-image,
  .anime-feed-thumb-fallback {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background: linear-gradient(135deg, var(--bg-card), var(--bg));
  }
  .anime-feed-thumb-meta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    padding: 58px 8px 10px;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.84));
  }
  .anime-feed-thumb-date {
    flex-basis: 100%;
    text-align: center;
    color: color-mix(in srgb, var(--text-secondary) 88%, var(--accent));
  }
  .feed-error-icon {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
  }
  .anime-feed-item.is-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
  }

  body.resume-modal-open {
    overflow: hidden;
  }
  .resume-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: grid;
    place-items: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.58);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }
  .resume-modal[hidden] {
    display: none;
  }
  .resume-modal.open {
    opacity: 1;
    pointer-events: auto;
  }
  .resume-modal-panel {
    width: min(960px, 96vw);
    max-height: 90vh;
    overflow: auto;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 16px;
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.46);
    padding: 18px;
    position: relative;
  }
  .resume-modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 1px solid var(--border-strong);
    background: color-mix(in srgb, var(--bg) 72%, transparent);
    color: var(--text-primary);
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
  }
  .resume-modal-header {
    margin-bottom: 12px;
    padding-right: 42px;
  }
  .resume-modal-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 4px;
  }
  .resume-modal-title {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 6px;
  }
  .resume-modal-copy {
    font-size: 13px;
    color: var(--text-secondary);
  }
  .resume-modal-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    flex-wrap: wrap;
  }
  .resume-modal-action {
    border: 1px solid var(--border-strong);
    border-radius: 999px;
    padding: 7px 12px;
    font-size: 12px;
    color: var(--text-secondary);
    background: color-mix(in srgb, var(--bg) 80%, transparent);
  }
  .resume-modal-action.primary {
    color: var(--text-primary);
    background: color-mix(in srgb, var(--accent) 18%, transparent);
  }
  .resume-modal-frame-shell {
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    min-height: 68vh;
    background: color-mix(in srgb, var(--bg) 70%, transparent);
  }
  .resume-modal-frame {
    width: 100%;
    height: 68vh;
    border: 0;
    display: block;
    background: #ffffff;
  }

  @media (max-width: 1024px) {
    .hero-collage {
      min-height: 660px;
    }
    .hero-main-image img {
      object-position: 68% center;
    }
    .hero-copy h1 {
      font-size: 40px;
    }
    .hero-float {
      width: 244px;
    }
    .hero-float-a {
      left: 20px;
      bottom: 0px;
      width: 270px;
    }
    .hero-float-b {
      left: 51%;
      bottom: -18px;
      width: 340px;
    }
    .hero-float-e {
      right: 10px;
      bottom: -10px;
      width: 280px;
    }
    .section {
      padding: 46px 0;
    }
    .section-accent-leadership-coffee {
      width: 118px;
      right: 12px;
      top: 22px;
    }
    .section-accent-moments-darts {
      width: 108px;
      right: 12px;
      top: 18px;
    }
    .highlight-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .photo-item {
      grid-column: span 6;
    }
    .mbti-fit-head {
      flex-direction: column;
      align-items: flex-start;
      gap: 8px;
    }
    .mbti-fit-badge {
      margin-left: 0;
      align-self: flex-start;
    }
    .binging-card {
      grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
    }
  }

  @media (max-width: 900px) and (min-width: 721px) {
    .hero-collage {
      min-height: 620px;
    }
    .hero-copy {
      max-width: calc(100% - 32px);
      margin: 18px auto 0;
    }
    .hero-float {
      width: 210px;
    }
    .hero-float-a {
      left: 8px;
      bottom: 18px;
      width: 220px;
    }
    .hero-float-b {
      left: 50%;
      bottom: -10px;
      width: 300px;
    }
    .hero-float-e {
      right: 4px;
      bottom: 8px;
      width: 235px;
    }
  }

  @media (max-width: 720px) {
    html,
    body {
      overflow-x: hidden;
    }
    .nav .nav-inner.wrap {
      padding: 0 24px;
    }
    .nav.menu-open {
      z-index: 11050;
    }
    .nav-links {
      display: flex;
      position: fixed;
      top: 0;
      left: 0;
      bottom: auto;
      width: min(84vw, 320px);
      max-width: 320px;
      height: 100vh;
      height: 100dvh;
      box-sizing: border-box;
      background: color-mix(in srgb, var(--bg-card) 98%, var(--bg));
      border-right: 1px solid var(--border-strong);
      border-radius: 0 16px 16px 0;
      padding: calc(74px + env(safe-area-inset-top)) 14px max(20px, env(safe-area-inset-bottom));
      box-shadow: var(--shadow);
      overflow-y: auto;
      overscroll-behavior: contain;
      flex-direction: column;
      align-items: stretch;
      gap: 3px;
      z-index: 1202;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transform: translateX(calc(-100% - 12px));
      transition: transform 260ms ease, opacity 220ms ease, visibility 0s linear 260ms;
    }
    .nav.menu-open .nav-links {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(0);
      transition: transform 260ms ease, opacity 220ms ease, visibility 0s linear 0s;
    }
    .nav-drawer-label {
      display: block;
      padding: 0 10px 20px;
      color: color-mix(in srgb, var(--text-secondary) 74%, var(--text-muted));
      font-size: 14px;
      font-weight: 700;
      letter-spacing: 0.18em;
      line-height: 1;
      text-transform: uppercase;
    }
    .nav-links a {
      display: flex;
      align-items: center;
      min-height: 44px;
      padding: 10px 12px 10px 16px;
      border-radius: 9px;
      font-size: 13px;
      line-height: 1.2;
      letter-spacing: 0.015em;
      transition: background 180ms ease, color 180ms ease;
    }
    .nav-links a::after {
      display: none;
    }
    .nav-links a:hover,
    .nav-links a:focus-visible {
      background: color-mix(in srgb, var(--accent) 10%, transparent);
      color: var(--text-primary);
    }
    .nav-links a:focus-visible {
      outline: none;
      box-shadow: 0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent);
    }
    .nav-links .nav-resume-btn {
      width: 100%;
      margin: 3px 0 0;
      text-align: left;
      border: 0;
      border-radius: 0;
      background: color-mix(in srgb, var(--accent) 7%, transparent);
      color: var(--text-primary);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.2;
      text-transform: uppercase;
      min-height: 44px;
      padding: 10px 12px 10px 16px;
      box-shadow: inset 4px 0 0 color-mix(in srgb, var(--accent) 88%, #ffffff);
    }
    .nav-links .nav-resume-btn:hover,
    .nav-links .nav-resume-btn:focus-visible {
      background: color-mix(in srgb, var(--accent) 12%, transparent);
      transform: none;
    }
    .nav-links .nav-resume-btn:focus-visible {
      outline: none;
      box-shadow:
        inset 4px 0 0 color-mix(in srgb, var(--accent) 88%, #ffffff),
        0 0 0 1px color-mix(in srgb, var(--accent) 42%, transparent);
    }
    .nav-drawer-scrim {
      display: block;
      position: fixed;
      inset: 0;
      border: 0;
      margin: 0;
      padding: 0;
      background: color-mix(in srgb, var(--bg) 44%, transparent);
      backdrop-filter: blur(2px);
      -webkit-backdrop-filter: blur(2px);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      z-index: 11040;
      transition: opacity 220ms ease, visibility 0s linear 220ms;
    }
    .nav-drawer-scrim.is-visible {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transition: opacity 220ms ease, visibility 0s linear 0s;
    }
    .nav-menu-btn {
      display: flex;
      z-index: 1203;
    }
    .hero {
      padding: 30px 0 52px;
    }
    .hero-collage {
      min-height: 690px;
    }
    .hero-main-image img {
      object-position: center 58%;
    }
    .hero-copy {
      margin: 18px 14px 0;
      max-width: none;
      padding: 18px;
    }
    .hero-copy h1 {
      font-size: 36px;
    }
    .hero-copy p {
      font-size: 16px;
    }
    .hero-float {
      width: 162px;
    }
    .hero-float-a {
      left: -4px;
      bottom: 78px;
      width: 182px;
      transform: rotate(-12deg);
    }
    .hero-float-b {
      left: 50%;
      bottom: -4px;
      width: 266px;
      transform: translateX(-50%) rotate(2deg);
      z-index: 4;
    }
    .hero-float-e {
      right: -2px;
      bottom: 58px;
      width: 202px;
      transform: rotate(11deg);
    }
    .section {
      padding: 36px 0;
    }
    .section-head h2 {
      font-size: 29px;
    }
    .section-head p {
      font-size: 16px;
    }
    .section-accent-leadership-coffee {
      width: 92px;
      right: 12px;
      top: 40px;
    }
    .section-accent-moments-darts {
      width: 86px;
      right: 12px;
      top: 60px;
    }
    .proverb-card {
      padding: 26px 18px 38px;
    }
    .proverb-quote {
      padding: 12px 42px 18px;
      font-size: 24px;
    }
    .proverb-mark {
      font-size: 54px;
    }
    .proverb-jacks {
      min-height: 120px;
      margin-bottom: 32px;
    }
    .proverb-jack {
      width: 82px;
    }
    .proverb-jack + .proverb-jack {
      margin-left: -24px;
    }
    .leadership-grid {
      grid-template-columns: 1fr;
    }
    .leadership-item {
      padding: 24px;
    }
    [data-mobile-carousel] {
      display: flex !important;
      grid-template-columns: none !important;
      gap: 16px;
      overflow-x: auto;
      max-width: 100%;
      scroll-snap-type: x mandatory;
      scroll-padding-left: var(--space-24);
      padding: 0 0 12px;
    }
    [data-mobile-carousel] > * {
      flex: 0 0 min(86%, 320px);
      scroll-snap-align: start;
    }
    [data-mobile-carousel="co-curriculars"] > *,
    [data-mobile-carousel="fun-moments"] > * {
      flex-basis: min(92%, 360px);
    }
    [data-mobile-carousel="co-curriculars"] .card-body p {
      min-height: 10.5em;
    }
    .highlight-grid .card {
      aspect-ratio: auto;
    }
    .photo-item {
      min-width: 0;
      aspect-ratio: auto;
    }
    .mbti-card {
      padding: 22px;
    }
    .mbti-grid {
      gap: 12px;
    }
    .mbti-hero-card {
      grid-template-columns: 1fr;
    }
    .mbti-fit-shellless {
      width: 100%;
      padding: 0;
      margin: 0;
    }
    .mbti-content,
    .mbti-radar-wrap {
      order: initial;
      min-height: 0;
    }
    .mbti-topline {
      justify-content: flex-end;
    }
    .mbti-type {
      text-align: right;
    }
    .mbti-type strong {
      font-size: 42px;
    }
    .mbti-radar {
      width: 280px;
    }
    .mbti-radar-hover-tip {
      display: none;
    }
    .mbti-radar-mobile-tip {
      display: block;
      width: 100%;
      max-width: 520px;
      margin-top: 12px;
      padding: 14px 16px;
      border: 1px solid var(--border-strong);
      border-radius: 12px;
      background: color-mix(in srgb, var(--bg) 72%, transparent);
    }
    .mbti-radar-mobile-head {
      margin-bottom: 4px;
      color: var(--text-primary);
    }
    .mbti-radar-mobile-tip p {
      font-size: 14px;
      line-height: 1.5;
    }
    .mbti-fit-grid {
      grid-template-columns: 1fr;
      gap: 12px;
    }
    .mbti-fit-panel {
      width: 100%;
      padding: 20px 22px;
    }
    .mbti-fit-head {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      gap: 8px 12px;
      margin-bottom: 10px;
    }
    .binging-card {
      min-height: 0;
      grid-template-columns: 1fr;
      gap: 18px;
    }
    .binging-card .anime-feed-list {
      margin-right: -8px;
    }
    .anime-feed-thumb-item {
      flex-basis: 132px;
    }
    .anime-feed-thumb-link {
      height: 198px;
    }
    .resume-modal,
    .mbti-modal {
      padding: 12px;
    }
    .resume-modal-panel,
    .mbti-modal-panel {
      padding: 14px;
    }
    .resume-modal-frame-shell,
    .resume-modal-frame {
      height: 62vh;
      min-height: 62vh;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    html {
      scroll-behavior: auto !important;
    }
  }

  @media (max-width: 720px) and (min-width: 596px) {
    .section-accent-moments-darts {
      width: 86px;
      right: 12px;
      top: 42px;
    }
  }
