      :root {
        --ink: #171717;
        --muted: #5f6368;
        --paper: #fbfaf7;
        --line: #ded8ce;
        --green: #1f7a4d;
        --blue: #255f9e;
        --red: #c43b3b;
        --gold: #b87516;
        --violet: #6d519b;
        --white: #ffffff;
        --shadow: 0 18px 55px rgba(27, 31, 35, 0.11);
      }

      * {
        box-sizing: border-box;
      }

      html {
        scroll-behavior: smooth;
      }

      body {
        margin: 0;
        color: var(--ink);
        background:
          linear-gradient(90deg, rgba(31, 122, 77, 0.08) 1px, transparent 1px),
          linear-gradient(0deg, rgba(37, 95, 158, 0.07) 1px, transparent 1px),
          var(--paper);
        background-size: 56px 56px;
        font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
        line-height: 1.6;
      }

      a {
        color: inherit;
      }

      .skip-link {
        position: absolute;
        left: 1rem;
        top: -4rem;
        padding: 0.65rem 0.9rem;
        background: var(--ink);
        color: var(--white);
        z-index: 10;
      }

      .skip-link:focus {
        top: 1rem;
      }

      .site-shell {
        min-height: 100vh;
      }

      .topbar {
        position: sticky;
        top: 0;
        z-index: 20;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
        padding: 0.8rem 0;
        border-bottom: 1px solid rgba(23, 23, 23, 0.12);
        background: rgba(251, 250, 247, 0.9);
        backdrop-filter: blur(14px);
      }

      .brand {
        display: inline-flex;
        align-items: center;
        gap: 0.7rem;
        text-decoration: none;
        font-weight: 800;
      }

      .brand-mark {
        display: grid;
        width: 42px;
        height: 42px;
        place-items: center;
        border: 2px solid var(--ink);
        background: var(--white);
        box-shadow: 4px 4px 0 var(--green);
      }

      .nav {
        display: flex;
        align-items: center;
        gap: 0.35rem;
        flex-wrap: wrap;
        justify-content: flex-end;
      }

      .nav a {
        min-height: 40px;
        padding: 0.45rem 0.75rem;
        border-radius: 6px;
        color: var(--muted);
        font-size: 0.94rem;
        font-weight: 700;
        text-decoration: none;
      }

      .nav a:hover,
      .nav a:focus-visible {
        background: rgba(23, 23, 23, 0.08);
        color: var(--ink);
      }

      .hero {
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
        padding: clamp(1.7rem, 5vw, 4.2rem) 0 3rem;
        display: grid;
        grid-template-columns: minmax(0, 1fr) 390px;
        gap: clamp(2rem, 5vw, 4.5rem);
        align-items: center;
      }

      .eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 0.45rem;
        margin: 0 0 1rem;
        color: var(--green);
        font-weight: 900;
        letter-spacing: 0;
        text-transform: uppercase;
        font-size: 0.82rem;
      }

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

      h1 {
        max-width: 820px;
        margin-bottom: 1.25rem;
        font-size: clamp(2.15rem, 5.8vw, 4.9rem);
        line-height: 1.02;
        letter-spacing: 0;
      }

      .lead {
        max-width: 680px;
        color: #383c40;
        font-size: clamp(1rem, 1.6vw, 1.18rem);
      }

      .actions {
        display: flex;
        gap: 0.8rem;
        flex-wrap: wrap;
        margin-top: 1.8rem;
      }

      .button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 48px;
        padding: 0.7rem 1rem;
        border: 2px solid var(--ink);
        border-radius: 7px;
        background: var(--ink);
        color: var(--white);
        font-weight: 900;
        text-decoration: none;
        box-shadow: 5px 5px 0 rgba(31, 122, 77, 0.38);
      }

      .button.secondary {
        background: var(--white);
        color: var(--ink);
        box-shadow: 5px 5px 0 rgba(37, 95, 158, 0.28);
      }

      .portrait {
        position: relative;
      }

      .profile-card {
        padding: 0.85rem;
        border: 2px solid var(--ink);
        background: var(--white);
        box-shadow: var(--shadow), 9px 9px 0 var(--ink);
        transform: rotate(1deg);
      }

      .profile-photo {
        display: block;
        width: 100%;
        aspect-ratio: 4 / 5;
        border: 1px solid var(--line);
        object-fit: cover;
        object-position: center;
      }

      .profile-caption {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 1rem;
        padding-top: 0.85rem;
        color: var(--muted);
        font-size: 0.95rem;
      }

      .profile-caption strong {
        display: block;
        color: var(--ink);
        font-size: 1rem;
      }

      .section {
        border-top: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.62);
      }

      .section-inner {
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
        padding: clamp(2.6rem, 6vw, 5rem) 0;
      }

      h2 {
        margin-bottom: 1rem;
        font-size: clamp(2rem, 4vw, 3.6rem);
        line-height: 1;
        letter-spacing: 0;
      }

      .section-copy {
        max-width: 720px;
        color: #3f4448;
        font-size: 1.08rem;
      }

      .service-grid,
      .video-grid,
      .social-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
        margin-top: 2rem;
      }

      .card {
        min-height: 100%;
        padding: 1.2rem;
        border: 1px solid var(--line);
        border-radius: 8px;
        background: var(--white);
        box-shadow: 0 12px 30px rgba(27, 31, 35, 0.06);
      }

      .service-card {
        border-top: 6px solid var(--green);
      }

      .service-card:nth-child(2) {
        border-top-color: var(--blue);
      }

      .service-card:nth-child(3) {
        border-top-color: var(--red);
      }

      h3 {
        margin-bottom: 0.55rem;
        font-size: 1.15rem;
        line-height: 1.25;
      }

      .card p {
        margin-bottom: 0;
        color: var(--muted);
      }

      .work-strip {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 1rem;
        margin-top: 2rem;
      }

      .feature {
        min-height: 300px;
        padding: clamp(1.2rem, 4vw, 2rem);
        border: 2px solid var(--ink);
        background:
          linear-gradient(135deg, rgba(31, 122, 77, 0.15), transparent 42%),
          linear-gradient(45deg, rgba(37, 95, 158, 0.14), transparent 56%),
          var(--white);
        box-shadow: 8px 8px 0 rgba(23, 23, 23, 0.85);
      }

      .feature p {
        max-width: 620px;
        color: #373b40;
        font-size: 1.1rem;
      }

      .mini-stack {
        display: grid;
        gap: 1rem;
      }

      .stat {
        padding: 1.15rem;
        border-left: 6px solid var(--gold);
        background: var(--white);
        box-shadow: 0 10px 26px rgba(27, 31, 35, 0.07);
      }

      .stat strong {
        display: block;
        font-size: 1.5rem;
      }

      .video-card {
        padding: 0;
        overflow: hidden;
      }

      .video-card a {
        color: inherit;
        text-decoration: none;
      }

      .video-thumb {
        display: block;
        width: 100%;
        aspect-ratio: 16 / 9;
        background: #111315;
        object-fit: cover;
      }

      .video-body {
        padding: 1rem;
      }

      .video-meta {
        display: flex;
        gap: 0.5rem;
        flex-wrap: wrap;
        margin-bottom: 0.65rem;
        color: var(--muted);
        font-size: 0.9rem;
        font-weight: 700;
      }

      .video-description {
        min-height: 3.1rem;
      }

      .video-link {
        display: inline-flex;
        margin-top: 1rem;
        color: var(--blue);
        font-weight: 900;
      }

      .social-card {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        color: var(--ink);
        text-decoration: none;
        transition: transform 160ms ease, box-shadow 160ms ease;
      }

      .social-card:hover,
      .social-card:focus-visible {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(27, 31, 35, 0.12);
      }

      .social-top {
        display: flex;
        align-items: center;
        gap: 0.75rem;
      }

      .social-icon {
        display: grid;
        width: 44px;
        height: 44px;
        flex: 0 0 auto;
        place-items: center;
        border-radius: 8px;
        color: var(--white);
      }

      .social-icon svg {
        width: 23px;
        height: 23px;
        fill: currentColor;
      }

      .tiktok {
        background: #111315;
      }

      .youtube {
        background: #d72d2d;
      }

      .facebook {
        background: #255f9e;
      }

      .goodreads {
        background: #7b5c37;
      }

      .telegram {
        background: #2481cc;
      }

      .reddit {
        background: #e5532d;
      }

      .wechat {
        background: #1f7a4d;
      }

      .handle {
        color: var(--muted);
        font-size: 0.94rem;
      }

      .contact-panel {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 1rem;
        align-items: center;
        padding: clamp(1.2rem, 4vw, 2rem);
        border: 2px solid var(--ink);
        background: var(--ink);
        color: var(--white);
        box-shadow: 8px 8px 0 var(--green);
      }

      .contact-panel p {
        margin-bottom: 0;
        color: rgba(255, 255, 255, 0.74);
      }

      .contact-panel .button {
        background: var(--white);
        color: var(--ink);
        box-shadow: none;
      }

      footer {
        width: min(1120px, calc(100% - 32px));
        margin: 0 auto;
        padding: 1.5rem 0 2rem;
        color: var(--muted);
        font-size: 0.94rem;
      }

      @media (max-width: 860px) {
        .topbar {
          align-items: flex-start;
          flex-direction: column;
        }

        .nav {
          justify-content: flex-start;
        }

        .hero,
        .work-strip,
        .contact-panel {
          grid-template-columns: 1fr;
        }

        .portrait {
          max-width: 420px;
          width: 100%;
        }

        .service-grid,
        .video-grid,
        .social-grid {
          grid-template-columns: repeat(2, minmax(0, 1fr));
        }
      }

      @media (max-width: 560px) {
        .service-grid,
        .video-grid,
        .social-grid {
          grid-template-columns: 1fr;
        }

        .nav a {
          padding-left: 0;
          padding-right: 0.85rem;
        }

        .profile-card {
          transform: none;
        }
      }