:root {
      color-scheme: light;
      --bg: #e8e8e5;
      --paper: #f7f7f3;
      --ink: #11110f;
      --muted: #66675f;
      --line: #babbb4;
      --soft-line: #d5d6cf;
      --orange: #f05a28;
      --amber: #f2b705;
      --green: #188a68;
      --white: #ffffff;
      --shadow: 10px 10px 0 rgba(17, 17, 15, 0.08);
      --font-head: "Chakra Petch", "Arial Black", Impact, sans-serif;
      --font-body: "Space Grotesk", Arial, sans-serif;
      --content: 1420px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      margin: 0;
      font-family: var(--font-body);
      color: var(--ink);
      background:
        linear-gradient(to right, rgba(17, 17, 15, 0.16) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 15, 0.14) 1px, transparent 1px),
        var(--bg);
      background-size: 96px 96px;
      line-height: 1.55;
      text-rendering: geometricPrecision;
      -webkit-font-smoothing: antialiased;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button,
    input,
    textarea {
      font: inherit;
    }

    button {
      cursor: pointer;
    }

    ::selection {
      color: var(--white);
      background: var(--ink);
    }

    .site-shell {
      width: min(100%, var(--content));
      margin: 0 auto;
      background: rgba(232, 232, 229, 0.88);
      border-right: 1px solid var(--line);
      border-left: 1px solid var(--line);
      overflow: hidden;
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 50;
      display: grid;
      grid-template-columns: minmax(300px, auto) minmax(260px, 1fr) auto;
      align-items: center;
      min-height: 72px;
      border-bottom: 1px solid var(--line);
      background: rgba(247, 247, 243, 0.82);
      backdrop-filter: blur(16px);
    }

    .brand-mark {
      display: inline-grid;
      grid-template-columns: 34px minmax(0, 1fr);
      align-items: center;
      gap: 12px;
      min-width: 322px;
      min-height: 72px;
      padding: 0 26px;
      border-right: 1px solid var(--line);
      font-weight: 800;
    }

    .mark-box {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border: 1px solid var(--ink);
      background: var(--white);
      box-shadow: 3px 3px 0 var(--amber);
      font-family: var(--font-head);
      font-size: 0.78rem;
      line-height: 1;
    }

    .brand-copy {
      display: grid;
      min-width: 0;
      gap: 2px;
    }

    .brand-name {
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .brand-calendar {
      display: flex;
      align-items: center;
      gap: 8px;
      min-width: 0;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 900;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      line-height: 1.25;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .brand-calendar span {
      overflow: hidden;
      text-overflow: ellipsis;
    }

    .clock-chip {
      display: inline-block;
      flex: 0 0 7.4ch;
      width: 7.4ch;
      color: var(--ink);
      font-family: var(--font-head);
      font-size: 0.78rem;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      text-align: left;
    }

    .lunar-chip {
      color: var(--green);
    }

    .nav-links {
      display: flex;
      justify-content: center;
      gap: 4px;
      padding: 0 14px;
    }

    .nav-links a {
      position: relative;
      padding: 10px 12px;
      font-size: 0.82rem;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0;
      transition: color 180ms ease, background 180ms ease;
    }

    .nav-links a:hover,
    .nav-links a.active {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.68);
    }

    .top-actions {
      display: flex;
      align-items: center;
      height: 72px;
      border-left: 1px solid var(--line);
    }

    .icon-link,
    .icon-btn {
      display: inline-grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border: 0;
      border-left: 1px solid var(--line);
      background: var(--paper);
      color: var(--ink);
      transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    }

    button.icon-link {
      appearance: none;
    }

    .icon-link:first-child {
      border-left: 0;
    }

    .icon-link:hover,
    .icon-btn:hover {
      color: var(--white);
      background: var(--ink);
      transform: translateY(-1px);
    }

    .icon {
      width: 18px;
      height: 18px;
      stroke: currentColor;
      stroke-width: 2;
      fill: none;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .section {
      border-bottom: 1px solid var(--line);
    }

    .section-grid {
      display: grid;
      grid-template-columns: 0.95fr 2.05fr;
      min-height: 420px;
    }

    .section-kicker,
    .micro-label {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 0.75rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .micro-label::before,
    .section-kicker::before {
      content: "";
      width: 7px;
      height: 7px;
      background: var(--ink);
    }

    .hero {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(390px, 0.9fr);
      min-height: 600px;
      border-bottom: 1px solid var(--line);
    }

    .hero-main {
      position: relative;
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 24px;
      padding: 48px;
      border-right: 1px solid var(--line);
      overflow: hidden;
    }

    .hero-main::after {
      content: "";
      position: absolute;
      right: -74px;
      bottom: 72px;
      width: 170px;
      height: 170px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 50%, var(--orange) 0 7px, transparent 8px),
        linear-gradient(var(--soft-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--soft-line) 1px, transparent 1px),
        rgba(255, 255, 255, 0.38);
      background-size: auto, 20px 20px, 20px 20px, auto;
      transform: rotate(8deg);
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 760px;
    }

    h1,
    h2,
    h3,
    p {
      margin: 0;
    }

    .hero-title,
    .section-title,
    .block-title {
      font-family: var(--font-head);
      font-weight: 700;
      line-height: 0.92;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .hero-title {
      margin-top: 16px;
      font-size: 5.6rem;
    }

    .hero-lead {
      max-width: 670px;
      margin-top: 22px;
      font-size: 1.08rem;
      color: #32322d;
    }

    .role-row {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      max-width: 820px;
    }

    .pill {
      display: inline-flex;
      align-items: center;
      min-height: 34px;
      padding: 8px 13px;
      border: 1px solid var(--ink);
      background: var(--white);
      box-shadow: 3px 3px 0 rgba(17, 17, 15, 0.08);
      font-size: 0.86rem;
      font-weight: 800;
      white-space: nowrap;
    }

    .cta-row {
      position: relative;
      z-index: 2;
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 46px;
      padding: 12px 17px;
      border: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      font-weight: 800;
      transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
    }

    .btn:hover {
      transform: translate(-2px, -2px);
      box-shadow: 5px 5px 0 var(--amber);
    }

    .btn.secondary {
      color: var(--ink);
      background: var(--white);
    }

    .btn.ghost {
      color: var(--ink);
      background: rgba(255, 255, 255, 0.42);
    }

    .hero-side {
      position: relative;
      display: grid;
      grid-template-rows: 1fr auto;
      overflow: hidden;
      background:
        radial-gradient(circle at 18% 14%, rgba(242, 183, 5, 0.18), transparent 25%),
        radial-gradient(circle at 84% 24%, rgba(24, 138, 104, 0.14), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 232, 229, 0.86));
    }

    .hero-side::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(120deg, transparent 0 34%, rgba(17, 17, 15, 0.055) 34% 34.4%, transparent 34.4% 100%),
        linear-gradient(to right, rgba(17, 17, 15, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 15, 0.05) 1px, transparent 1px);
      background-size: auto, 64px 64px, 64px 64px;
      pointer-events: none;
    }

    .tech-visual {
      position: relative;
      display: grid;
      align-items: stretch;
      min-height: 280px;
      border-bottom: 1px solid var(--line);
      overflow: hidden;
    }

    .calendar-visual {
      background:
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.92), transparent 38%),
        radial-gradient(circle at 20% 75%, rgba(240, 90, 40, 0.13), transparent 22%),
        radial-gradient(circle at 80% 18%, rgba(24, 138, 104, 0.12), transparent 26%),
        linear-gradient(to right, rgba(17, 17, 15, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 15, 0.07) 1px, transparent 1px),
        rgba(247, 247, 243, 0.78);
      background-size: auto, auto, auto, 48px 48px, 48px 48px, auto;
    }

    .calendar-visual::before,
    .calendar-visual::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(17, 17, 15, 0.13);
      background: rgba(255, 255, 255, 0.35);
      pointer-events: none;
    }

    .calendar-visual::before {
      top: 24px;
      left: -22px;
      width: 160px;
      height: 160px;
      transform: rotate(10deg);
    }

    .calendar-visual::after {
      right: -40px;
      bottom: 18px;
      width: 190px;
      height: 120px;
      transform: rotate(-8deg);
    }

    .calendar-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .orbit-line {
      position: absolute;
      border: 1px solid rgba(17, 17, 15, 0.16);
      background: rgba(255, 255, 255, 0.56);
      box-shadow: 0 14px 30px rgba(17, 17, 15, 0.08);
    }

    .orbit-line.line-a {
      top: 52px;
      left: 58px;
      width: 74%;
      height: 14px;
    }

    .orbit-line.line-b {
      right: 42px;
      bottom: 62px;
      width: 66%;
      height: 12px;
    }

    .orbit-node {
      position: absolute;
      width: 56px;
      height: 56px;
      border: 1px solid rgba(17, 17, 15, 0.16);
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.62);
      box-shadow: inset 8px 8px 18px rgba(255, 255, 255, 0.82), inset -8px -8px 18px rgba(17, 17, 15, 0.1), 0 12px 24px rgba(17, 17, 15, 0.1);
      backdrop-filter: blur(10px);
    }

    .orbit-node.node-a { top: 26px; left: 86px; }
    .orbit-node.node-b { right: 64px; top: 44px; }
    .orbit-node.node-c { left: 34px; bottom: 48px; }

    .orbit-dot {
      position: absolute;
      width: 18px;
      height: 18px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 12px rgba(240, 90, 40, 0.15);
      animation: pulse 2.7s ease-in-out infinite;
    }

    .orbit-dot.dot-a { right: 36px; top: 118px; }
    .orbit-dot.dot-b { left: 44px; top: 116px; animation-delay: 750ms; }

    .calendar-panel {
      position: relative;
      z-index: 2;
      align-self: center;
      width: min(430px, calc(100% - 56px));
      margin: 24px auto;
      border: 1px solid var(--ink);
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 247, 243, 0.86)),
        var(--paper);
      box-shadow: 10px 10px 0 rgba(17, 17, 15, 0.08), 0 28px 60px rgba(17, 17, 15, 0.12);
      backdrop-filter: blur(12px);
    }

    .calendar-status {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 16px 18px 0;
    }

    .calendar-status > span {
      display: inline-flex;
      align-items: center;
      min-height: 24px;
      padding: 4px 8px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.72);
      color: var(--green);
      font-size: 0.68rem;
      font-weight: 900;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .calendar-status > span[data-mode="pending"] {
      color: var(--muted);
    }

    .calendar-status > span[data-mode="ok"] {
      color: var(--green);
      border-color: rgba(24, 138, 104, 0.32);
      background: rgba(24, 138, 104, 0.08);
    }

    .calendar-status > span[data-mode="error"] {
      color: var(--orange);
      border-color: rgba(240, 90, 40, 0.34);
      background: rgba(240, 90, 40, 0.08);
    }

    .hero-clock {
      display: block;
      padding: 8px 18px 18px;
      border-bottom: 1px solid var(--line);
      font-family: var(--font-head);
      font-size: 3.2rem;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum";
      line-height: 0.9;
      text-shadow: 2px 2px 0 rgba(242, 183, 5, 0.3);
    }

    .calendar-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
    }

    .calendar-cell {
      min-height: 78px;
      padding: 14px 16px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.48);
    }

    .calendar-cell:nth-child(2n) {
      border-right: 0;
    }

    .calendar-cell:nth-last-child(-n+2) {
      border-bottom: 0;
    }

    .calendar-cell small {
      display: block;
      margin-bottom: 5px;
      color: var(--muted);
      font-size: 0.68rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .calendar-cell strong {
      display: block;
      font-size: 0.96rem;
      line-height: 1.22;
    }

    .calendar-action {
      appearance: none;
      width: 100%;
      border-top: 0;
      border-left: 0;
      color: inherit;
      font: inherit;
      text-align: left;
      cursor: pointer;
      transition: background 180ms ease, color 180ms ease;
    }

    .calendar-action:hover {
      background: rgba(242, 183, 5, 0.14);
      color: var(--ink);
    }

    .time-source {
      padding: 10px 14px;
      border-top: 1px solid var(--line);
      color: var(--muted);
      background: rgba(255, 255, 255, 0.45);
      font-size: 0.72rem;
      font-weight: 800;
    }

    .side-panel {
      display: grid;
      grid-template-columns: 1fr 1fr;
      border-bottom: 1px solid var(--line);
    }

    .mini-stat {
      min-height: 76px;
      padding: 13px 16px;
      border-right: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.5);
    }

    .mini-stat:nth-child(2n) {
      border-right: 0;
    }

    .mini-stat strong {
      display: block;
      font-family: var(--font-head);
      font-size: 1.72rem;
      line-height: 1;
    }

    .mini-stat span {
      display: block;
      margin-top: 5px;
      font-size: 0.76rem;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
    }

    .contact-stack {
      display: grid;
      gap: 0;
    }

    .contact-line {
      display: grid;
      grid-template-columns: 52px 1fr;
      align-items: center;
      min-height: 56px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.62);
    }

    .contact-line:last-child {
      border-bottom: 0;
    }

    .contact-line .icon-wrap {
      display: grid;
      place-items: center;
      width: 52px;
      height: 100%;
      border-right: 1px solid var(--line);
    }

    .contact-line > span:not(.icon-wrap) {
      min-width: 0;
      padding: 0 18px;
    }

    .contact-line small {
      display: block;
      font-size: 0.72rem;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
    }

    .contact-line strong {
      display: block;
      margin-top: 2px;
      overflow-wrap: anywhere;
    }

    .section-side {
      padding: 52px 44px;
      border-right: 1px solid var(--line);
      background: rgba(247, 247, 243, 0.55);
    }

    .section-title {
      margin-top: 16px;
      font-size: 3.1rem;
    }

    .section-note {
      margin-top: 28px;
      color: var(--muted);
      font-weight: 600;
    }

    .section-content {
      padding: 52px 54px;
      background: rgba(255, 255, 255, 0.42);
    }

    .about-copy {
      max-width: 960px;
      font-size: 1.12rem;
    }

    .about-copy p + p {
      margin-top: 20px;
    }

    .highlight {
      display: inline;
      padding: 1px 7px;
      background: var(--amber);
      font-weight: 800;
      box-decoration-break: clone;
      -webkit-box-decoration-break: clone;
    }

    .goal-strip {
      display: grid;
      grid-template-columns: 72px 1fr;
      max-width: 960px;
      margin-top: 34px;
      border: 1px solid var(--ink);
      background: var(--paper);
      box-shadow: var(--shadow);
    }

    .goal-icon {
      display: grid;
      place-items: center;
      border-right: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
    }

    .goal-text {
      padding: 24px;
    }

    .goal-text strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.02rem;
      text-transform: uppercase;
    }

    .insight-lab {
      display: grid;
      grid-template-columns: minmax(190px, 0.7fr) minmax(220px, 1fr) minmax(260px, 1.25fr);
      gap: 0;
      max-width: 960px;
      margin-top: 26px;
      border: 1px solid var(--line);
      background: rgba(247, 247, 243, 0.78);
      box-shadow: 8px 8px 0 rgba(17, 17, 15, 0.06);
    }

    .insight-title,
    .insight-tabs,
    .insight-copy {
      padding: 22px;
    }

    .insight-title,
    .insight-tabs {
      border-right: 1px solid var(--line);
    }

    .insight-title h3 {
      margin-top: 18px;
      font-family: var(--font-head);
      font-size: 1.35rem;
      line-height: 1;
      text-transform: uppercase;
    }

    .insight-tabs {
      display: grid;
      align-content: center;
      gap: 8px;
    }

    .insight-tab {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 42px;
      padding: 9px 12px;
      border: 1px solid var(--line);
      background: var(--white);
      color: var(--muted);
      font-weight: 900;
      text-align: left;
      transition: background 180ms ease, color 180ms ease, transform 180ms ease;
    }

    .insight-tab.is-active,
    .insight-tab:hover {
      color: var(--white);
      background: var(--ink);
      transform: translateX(3px);
    }

    .insight-copy {
      align-content: center;
      display: grid;
      gap: 10px;
    }

    .insight-copy strong {
      font-size: 1rem;
      text-transform: uppercase;
    }

    .insight-copy p {
      color: var(--muted);
    }

    .carousel-section {
      padding: 52px 44px 44px;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 22px;
      margin-bottom: 32px;
      padding-bottom: 20px;
      border-bottom: 1px solid var(--line);
    }

    .section-head .section-title {
      margin-top: 10px;
    }

    .card-rail {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      overflow: visible;
      padding: 4px;
    }

    .info-card {
      position: relative;
      display: grid;
      grid-template-rows: auto 1fr auto;
      min-height: 386px;
      border: 1px solid var(--line);
      background: var(--paper);
      cursor: pointer;
      transition: transform 200ms ease, box-shadow 200ms ease, border-color 200ms ease;
    }

    .info-card::before {
      content: "";
      position: absolute;
      inset: 10px;
      border: 1px solid transparent;
      pointer-events: none;
      transition: border-color 180ms ease;
    }

    .info-card:hover {
      border-color: var(--ink);
      box-shadow: var(--shadow);
      transform: translateY(-3px);
    }

    .info-card:hover::before {
      border-color: rgba(17, 17, 15, 0.18);
    }

    .card-tag {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 36px;
      padding: 0 12px;
      border-bottom: 1px solid var(--line);
      color: var(--muted);
      font-size: 0.72rem;
      font-weight: 800;
      text-transform: uppercase;
    }

    .card-tag span:last-child {
      color: var(--ink);
    }

    .card-body {
      padding: 18px;
    }

    .card-icon {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      margin-bottom: 14px;
      border: 1px solid var(--ink);
      background: var(--white);
      box-shadow: 4px 4px 0 var(--amber);
    }

    .card-body h3 {
      font-family: var(--font-head);
      font-size: 1.03rem;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .card-body ul {
      display: grid;
      gap: 7px;
      margin: 14px 0 0;
      padding: 0;
      list-style: none;
      color: #34342f;
      font-size: 0.8rem;
    }

    .card-body li {
      position: relative;
      padding-left: 15px;
    }

    .card-body li::before {
      content: "";
      position: absolute;
      top: 0.72em;
      left: 0;
      width: 6px;
      height: 6px;
      background: var(--orange);
    }

    .card-foot {
      display: grid;
      grid-template-columns: 1fr auto;
      border-top: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.56);
    }

    .card-foot div {
      padding: 10px 11px;
      font-size: 0.72rem;
      font-weight: 800;
    }

    .card-foot small {
      display: block;
      margin-bottom: 3px;
      color: var(--muted);
      font-size: 0.68rem;
      text-transform: uppercase;
    }

    .card-open {
      display: grid;
      place-items: center;
      min-width: 72px;
      padding: 0 10px;
      border-left: 1px solid var(--line);
      color: var(--ink);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .card-open {
      height: 100%;
      border-top: 0;
      border-right: 0;
      border-bottom: 0;
      background: transparent;
      transition: background 180ms ease, color 180ms ease;
    }

    .card-open:hover {
      color: var(--white);
      background: var(--ink);
    }

    .matrix {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
    }

    .matrix-aside {
      padding: 52px 44px;
      border-right: 1px solid var(--line);
      background: rgba(17, 17, 15, 0.94);
      color: var(--white);
    }

    .matrix-aside .section-kicker::before {
      background: var(--amber);
    }

    .matrix-aside .section-note {
      color: rgba(255, 255, 255, 0.68);
    }

    .year-badge {
      display: inline-flex;
      margin-top: 28px;
      padding: 8px 12px;
      border: 1px solid rgba(255, 255, 255, 0.35);
      background: var(--amber);
      color: var(--ink);
      font-size: 0.84rem;
      font-weight: 900;
    }

    .experience-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: rgba(255, 255, 255, 0.38);
    }

    .experience-item {
      min-height: 260px;
      padding: 36px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      transition: background 180ms ease;
    }

    .experience-item:nth-child(2n) {
      border-right: 0;
    }

    .experience-item:nth-last-child(-n+2) {
      border-bottom: 0;
    }

    .experience-item:hover {
      background: var(--paper);
    }

    .experience-item h3 {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
      font-size: 1.1rem;
    }

    .number-chip {
      display: grid;
      place-items: center;
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border: 1px solid var(--ink);
      background: var(--white);
      font-family: var(--font-head);
      font-weight: 800;
      box-shadow: 3px 3px 0 var(--orange);
    }

    .experience-item ul {
      display: grid;
      gap: 8px;
      margin: 0;
      padding-left: 18px;
      color: #3d3d38;
      font-size: 0.94rem;
    }

    .showcase {
      padding: 52px 44px;
      background: rgba(255, 255, 255, 0.3);
    }

    .showcase-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border-top: 1px solid var(--line);
      border-left: 1px solid var(--line);
    }

    .show-card {
      min-height: 256px;
      padding: 28px;
      border-right: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(247, 247, 243, 0.62);
      cursor: pointer;
      transition: background 180ms ease, transform 180ms ease;
    }

    .show-card:hover {
      background: var(--paper);
      transform: translateY(-2px);
    }

    .show-card h3 {
      margin-top: 38px;
      font-size: 1rem;
    }

    .show-card p {
      margin-top: 14px;
      color: var(--muted);
      font-size: 0.9rem;
    }

    .corner-frame {
      position: relative;
    }

    .corner-frame::before,
    .corner-frame::after,
    .corner-frame span::before,
    .corner-frame span::after {
      content: "";
      position: absolute;
      width: 10px;
      height: 10px;
      border-color: var(--line);
      border-style: solid;
    }

    .corner-frame::before {
      top: 14px;
      left: 14px;
      border-width: 1px 0 0 1px;
    }

    .corner-frame::after {
      top: 14px;
      right: 14px;
      border-width: 1px 1px 0 0;
    }

    .corner-frame span::before {
      bottom: 14px;
      left: 14px;
      border-width: 0 0 1px 1px;
    }

    .corner-frame span::after {
      right: 14px;
      bottom: 14px;
      border-width: 0 1px 1px 0;
    }

    .skill-layout {
      display: grid;
      grid-template-columns: 0.75fr 2.25fr;
    }

    .skill-title {
      padding: 52px 44px;
      border-right: 1px solid var(--line);
      background: rgba(247, 247, 243, 0.72);
    }

    .skill-board {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      background: rgba(255, 255, 255, 0.35);
    }

    .skill-col {
      min-height: 320px;
      padding: 32px;
      border-right: 1px solid var(--line);
    }

    .skill-col:last-child {
      border-right: 0;
    }

    .skill-col h3 {
      margin-bottom: 20px;
      padding-bottom: 12px;
      border-bottom: 1px solid var(--soft-line);
      font-size: 1rem;
    }

    .tag-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .tag {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 6px 10px;
      border: 1px solid var(--soft-line);
      background: var(--white);
      font-size: 0.78rem;
      font-weight: 700;
    }

    .bar-list {
      display: grid;
      gap: 15px;
    }

    .bar-row {
      display: grid;
      gap: 7px;
      font-size: 0.86rem;
      font-weight: 700;
    }

    .bar-track {
      height: 7px;
      background: var(--soft-line);
    }

    .bar-fill {
      display: block;
      height: 100%;
      background: var(--ink);
      transform-origin: left;
      animation: growBar 900ms ease both;
    }

    .tool-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
    }

    .tool {
      display: grid;
      place-items: center;
      min-height: 42px;
      padding: 8px;
      border: 1px solid var(--soft-line);
      background: var(--white);
      text-align: center;
      font-size: 0.78rem;
      font-weight: 800;
    }

    .contact {
      display: grid;
      grid-template-columns: 1fr 1fr;
      min-height: 430px;
      background: rgba(17, 17, 15, 0.95);
      color: var(--white);
    }

    .contact-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 58px 64px;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
    }

    .contact-copy .section-kicker::before {
      background: var(--orange);
    }

    .contact-copy .section-title {
      margin-top: 18px;
    }

    .contact-copy p {
      max-width: 580px;
      margin-top: 26px;
      color: rgba(255, 255, 255, 0.72);
      font-size: 1.05rem;
    }

    .contact-card {
      display: grid;
      align-content: center;
      gap: 16px;
      padding: 58px 64px;
    }

    .contact-choice {
      display: grid;
      grid-template-columns: 54px 1fr auto;
      align-items: center;
      min-height: 78px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      background: rgba(255, 255, 255, 0.06);
      transition: background 180ms ease, transform 180ms ease;
    }

    .contact-choice:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateX(4px);
    }

    .contact-choice .choice-icon {
      display: grid;
      place-items: center;
      height: 100%;
      border-right: 1px solid rgba(255, 255, 255, 0.18);
      color: var(--amber);
    }

    .contact-choice > span:not(.choice-icon):not(.choice-arrow) {
      min-width: 0;
      padding: 0 20px;
    }

    .contact-choice small {
      display: block;
      color: rgba(255, 255, 255, 0.54);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .contact-choice strong {
      display: block;
      margin-top: 2px;
      overflow-wrap: anywhere;
    }

    .contact-choice .choice-arrow {
      display: grid;
      place-items: center;
      width: 54px;
      height: 100%;
      border-left: 1px solid rgba(255, 255, 255, 0.18);
    }

    .contact-tools {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-top: 6px;
    }

    .mini-action.wide {
      grid-column: 1 / -1;
    }

    .mini-action {
      min-height: 46px;
      border: 1px solid rgba(255, 255, 255, 0.22);
      background: rgba(255, 255, 255, 0.08);
      color: var(--white);
      font-weight: 900;
      transition: background 180ms ease, transform 180ms ease;
    }

    .mini-action:hover {
      background: rgba(255, 255, 255, 0.16);
      transform: translateY(-2px);
    }

    .idea-note {
      min-height: 52px;
      padding: 14px 16px;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background:
        linear-gradient(to right, rgba(255, 255, 255, 0.055) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        rgba(255, 255, 255, 0.06);
      background-size: 28px 28px;
      color: rgba(255, 255, 255, 0.76);
      font-size: 0.88rem;
      font-weight: 700;
    }

    .footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-height: 78px;
      padding: 20px 44px;
      background: var(--paper);
      color: var(--muted);
      font-size: 0.86rem;
      font-weight: 700;
    }

    .footer a {
      color: var(--ink);
    }

    .float-nav {
      position: fixed;
      right: 22px;
      bottom: 72px;
      z-index: 80;
      width: 50px;
      height: 50px;
      pointer-events: none;
    }

    .float-menu-toggle {
      position: relative;
      display: grid;
      place-items: center;
      width: 50px;
      height: 50px;
      border: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      box-shadow: 7px 7px 0 rgba(17, 17, 15, 0.16);
      pointer-events: auto;
      transition: transform 180ms ease, background 180ms ease, color 180ms ease;
    }

    .float-menu-toggle:hover {
      transform: translate(-2px, -2px);
      background: var(--orange);
      color: var(--ink);
    }

    .float-menu-toggle span {
      position: absolute;
      width: 20px;
      height: 2px;
      background: currentColor;
      transition: transform 200ms ease, opacity 200ms ease;
    }

    .float-menu-toggle span:nth-child(1) { transform: translateY(-7px); }
    .float-menu-toggle span:nth-child(3) { transform: translateY(7px); }

    .float-nav.is-open .float-menu-toggle span:nth-child(1) {
      transform: rotate(45deg);
    }

    .float-nav.is-open .float-menu-toggle span:nth-child(2) {
      opacity: 0;
    }

    .float-nav.is-open .float-menu-toggle span:nth-child(3) {
      transform: rotate(-45deg);
    }

    .float-menu-panel {
      position: absolute;
      right: 0;
      bottom: calc(100% + 12px);
      display: grid;
      min-width: 210px;
      border: 1px solid var(--ink);
      background:
        linear-gradient(to right, rgba(17, 17, 15, 0.07) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 15, 0.06) 1px, transparent 1px),
        rgba(247, 247, 243, 0.96);
      background-size: 28px 28px;
      box-shadow: 10px 10px 0 rgba(17, 17, 15, 0.13);
      opacity: 0;
      transform: translateY(10px) scale(0.98);
      transform-origin: right bottom;
      pointer-events: none;
      overflow: hidden;
      transition: opacity 180ms ease, transform 180ms ease;
      backdrop-filter: blur(14px);
    }

    .float-nav.is-open .float-menu-panel {
      opacity: 1;
      transform: translateY(0) scale(1);
      pointer-events: auto;
    }

    .float-menu-panel a {
      display: grid;
      grid-template-columns: 42px 1fr;
      align-items: center;
      min-height: 42px;
      border-bottom: 1px solid var(--line);
      color: var(--ink);
      font-size: 0.86rem;
      font-weight: 900;
      text-transform: uppercase;
      transition: background 160ms ease, color 160ms ease;
    }

    .float-menu-panel a:last-child {
      border-bottom: 0;
    }

    .float-menu-panel a span {
      display: grid;
      place-items: center;
      height: 100%;
      border-right: 1px solid var(--line);
      color: var(--muted);
      font-family: var(--font-head);
      font-size: 0.76rem;
    }

    .float-menu-panel a:hover,
    .float-menu-panel a.active {
      background: var(--ink);
      color: var(--white);
    }

    .float-menu-panel a:hover span,
    .float-menu-panel a.active span {
      color: var(--amber);
    }

    .modal-layer {
      position: fixed;
      inset: 0;
      z-index: 100;
      display: grid;
      place-items: center;
      padding: 22px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 200ms ease;
    }

    .modal-layer.is-open {
      opacity: 1;
      pointer-events: auto;
    }

    .modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(17, 17, 15, 0.58);
      backdrop-filter: blur(12px);
    }

    .modal-card {
      position: relative;
      width: min(720px, 100%);
      max-height: min(760px, calc(100vh - 44px));
      overflow: auto;
      border: 1px solid var(--ink);
      background:
        linear-gradient(to right, rgba(17, 17, 15, 0.08) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(17, 17, 15, 0.08) 1px, transparent 1px),
        var(--paper);
      background-size: 44px 44px;
      box-shadow: 14px 14px 0 rgba(0, 0, 0, 0.22);
      transform: translateY(12px) scale(0.98);
      transition: transform 220ms ease;
    }

    .modal-layer.is-open .modal-card {
      transform: translateY(0) scale(1);
    }

    .modal-head {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 18px;
      align-items: start;
      padding: 26px;
      border-bottom: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.68);
    }

    .modal-tag {
      display: inline-flex;
      width: fit-content;
      margin-bottom: 14px;
      padding: 5px 8px;
      border: 1px solid var(--ink);
      background: var(--amber);
      font-size: 0.72rem;
      font-weight: 900;
      text-transform: uppercase;
    }

    .modal-title {
      font-family: var(--font-head);
      font-size: 2rem;
      line-height: 0.95;
      text-transform: uppercase;
    }

    .modal-close {
      display: grid;
      place-items: center;
      width: 42px;
      height: 42px;
      border: 1px solid var(--ink);
      background: var(--white);
      color: var(--ink);
      transition: background 180ms ease, color 180ms ease;
    }

    .modal-close:hover {
      color: var(--white);
      background: var(--ink);
    }

    .modal-body {
      display: grid;
      gap: 22px;
      padding: 26px;
    }

    .modal-desc {
      color: #30302b;
      font-size: 1.04rem;
    }

    .modal-list {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .modal-list li {
      display: grid;
      grid-template-columns: 24px 1fr;
      gap: 10px;
      align-items: start;
      padding: 12px;
      border: 1px solid var(--soft-line);
      background: rgba(255, 255, 255, 0.72);
    }

    .modal-list li::before {
      content: "✓";
      display: grid;
      place-items: center;
      width: 24px;
      height: 24px;
      background: var(--ink);
      color: var(--white);
      font-size: 0.76rem;
      font-weight: 900;
    }

    .modal-chips {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .modal-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 4px;
    }

    .toast {
      position: fixed;
      right: 24px;
      bottom: 24px;
      z-index: 120;
      min-width: min(320px, calc(100vw - 48px));
      padding: 14px 16px;
      border: 1px solid var(--ink);
      background: var(--ink);
      color: var(--white);
      box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.22);
      font-weight: 800;
      opacity: 0;
      pointer-events: none;
      transform: translateY(16px);
      transition: opacity 180ms ease, transform 180ms ease;
    }

    .toast.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity 550ms ease, transform 550ms ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes floaty {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50% { transform: translateX(-50%) translateY(-10px); }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: 0.85; }
      50% { transform: scale(1.18); opacity: 1; }
    }

    @keyframes growBar {
      from { transform: scaleX(0); }
      to { transform: scaleX(1); }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 1ms !important;
      }
    }

    @media (max-width: 1180px) {
      .brand-calendar .date-chip {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
      }

      .hero-main {
        min-height: 600px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .hero-side {
        grid-template-columns: 1fr 0.9fr;
        grid-template-rows: auto;
      }

      .tech-visual {
        min-height: 390px;
        border-right: 1px solid var(--line);
        border-bottom: 0;
      }

      .side-panel {
        align-content: stretch;
        border-bottom: 0;
      }

      .contact-stack {
        border-left: 1px solid var(--line);
      }

      .section-grid,
      .matrix,
      .skill-layout,
      .contact {
        grid-template-columns: 1fr;
      }

      .section-side,
      .matrix-aside,
      .skill-title,
      .contact-copy {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .showcase-grid {
        grid-template-columns: 1fr 1fr;
      }

      .card-rail {
        grid-template-columns: 1fr 1fr;
      }

      .skill-board {
        grid-template-columns: 1fr 1fr;
      }

      .skill-col:nth-child(2n) {
        border-right: 0;
      }

      .skill-col:nth-child(-n+2) {
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 880px) {
      .topbar {
        grid-template-columns: 1fr auto;
      }

      .brand-mark {
        min-width: 0;
        padding: 0 18px;
      }

      .nav-links {
        display: none;
      }

      .hero-title {
        font-size: 4.3rem;
      }

      .hero-side {
        display: none;
      }

      .tech-visual {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .contact-stack {
        border-left: 0;
      }

      .experience-grid,
      .showcase-grid,
      .skill-board {
        grid-template-columns: 1fr;
      }

      .experience-item,
      .experience-item:nth-child(2n),
      .skill-col,
      .skill-col:nth-child(2n),
      .skill-col:nth-child(-n+2) {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .experience-item:last-child,
      .skill-col:last-child {
        border-bottom: 0;
      }

      .insight-lab {
        grid-template-columns: 1fr;
      }

      .insight-title,
      .insight-tabs {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }
    }

    @media (max-width: 640px) {
      body {
        background-size: 68px 68px;
      }

      .site-shell {
        border-right: 0;
        border-left: 0;
      }

      .brand-mark {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
      }

      .brand-calendar {
        font-size: 0.62rem;
      }

      .brand-name {
        font-size: 0.94rem;
      }

      .hero-main,
      .section-side,
      .section-content,
      .carousel-section,
      .matrix-aside,
      .showcase,
      .skill-title,
      .contact-copy,
      .contact-card {
        padding: 34px 22px;
      }

      .hero-main {
        min-height: auto;
      }

      .hero-title {
        font-size: 3.08rem;
      }

      .hero-lead,
      .about-copy,
      .contact-copy p {
        font-size: 1rem;
      }

      .section-title {
        font-size: 2.25rem;
      }

      .section-head {
        align-items: flex-start;
        flex-direction: column;
      }

      .card-rail {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 0;
      }

      .info-card {
        min-height: 0;
      }

      .tech-visual {
        min-height: 320px;
      }

      .calendar-panel {
        width: calc(100% - 32px);
      }

      .calendar-status {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding: 14px 14px 0;
      }

      .hero-clock {
        font-size: 2.25rem;
        padding-right: 14px;
        padding-left: 14px;
      }

      .calendar-grid {
        grid-template-columns: 1fr;
      }

      .calendar-cell,
      .calendar-cell:nth-child(2n),
      .calendar-cell:nth-last-child(-n+2) {
        min-height: 64px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .calendar-cell:last-child {
        border-bottom: 0;
      }

      .time-source {
        font-size: 0.68rem;
      }

      .side-panel {
        grid-template-columns: 1fr 1fr;
      }

      .mini-stat {
        min-height: 96px;
        padding: 14px;
      }

      .mini-stat strong {
        font-size: 1.72rem;
      }

      .goal-strip {
        grid-template-columns: 1fr;
      }

      .goal-icon {
        min-height: 58px;
        border-right: 0;
        border-bottom: 1px solid var(--ink);
      }

      .show-card,
      .skill-col,
      .experience-item {
        padding: 26px 22px;
      }

      .contact-choice {
        grid-template-columns: 48px 1fr;
      }

      .contact-choice > span:not(.choice-icon):not(.choice-arrow),
      .contact-line > span:not(.icon-wrap) {
        padding: 0 14px;
      }

      .contact-choice .choice-arrow {
        display: none;
      }

      .contact-tools {
        grid-template-columns: 1fr;
      }

      .modal-layer {
        padding: 14px;
      }

      .modal-head,
      .modal-body {
        padding: 20px;
      }

      .modal-title {
        font-size: 1.55rem;
      }

      .toast {
        right: 14px;
        bottom: 14px;
        min-width: calc(100vw - 28px);
      }

      .float-nav {
        right: 14px;
        bottom: 58px;
        width: 46px;
        height: 46px;
      }

      .float-menu-toggle {
        width: 46px;
        height: 46px;
      }

      .float-menu-panel {
        min-width: min(224px, calc(100vw - 28px));
      }

      .float-menu-panel a {
        min-height: 40px;
        font-size: 0.78rem;
      }

      .footer {
        align-items: flex-start;
        flex-direction: column;
        padding: 22px;
      }
    }
