      @import url("https://fonts.googleapis.com/css2?family=IBM+Plex+Sans:ital,wght@0,100..700;1,100..700&display=swap");

      :root {
        --bg: #f7f4f1;
        --card: #ffffff;
        --text: #101216;
        --muted: #4c5564;
        --accent: #e0192d;
        --line: rgba(0, 0, 0, 0.08);
        --radius: 18px;
        --shadow: 0 20px 50px rgba(16, 18, 22, 0.12);
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;
        color: var(--text);
        background: var(--bg);
        min-height: 100vh;
      }

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

      p {
        line-height: 1.65;
      }

      .container {
        width: min(1120px, 92vw);
        margin: 0 auto;
      }

      header.site-header {
        position: sticky;
        top: 0;
        z-index: 100;
        backdrop-filter: blur(16px);
        background: rgba(255, 255, 255, 1);
        border-bottom: 1px solid var(--line);
      }

      .nav {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 12px 0;
        gap: 24px;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 14px;
        font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;
        letter-spacing: 0.4px;
      }

      .brand img {
        height: 44px;
        width: auto;
      }

      .brand span {
        font-weight: 600;
        font-size: 15px;
        color: var(--muted);
      }

      .nav-links {
        display: flex;
        align-items: center;
        gap: 22px;
        font-size: 14px;
        color: var(--muted);
      }

      .nav-links a {
        position: relative;
        padding: 6px 0;
      }

      .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -6px;
        width: 0;
        height: 2px;
        background: var(--accent);
        transition: width 0.3s ease;
      }

      .nav-links a:hover::after,
      .nav-links a:focus-visible::after {
        width: 100%;
      }

      .menu-toggle {
        display: none;
        background: transparent;
        color: var(--text);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 8px 12px;
        font-size: 14px;
        cursor: pointer;
      }

      main {
        padding: 60px 0 80px;
      }

      .story-top-actions {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        margin-bottom: 24px;
        flex-wrap: wrap;
      }

      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        border-radius: 999px;
        border: 1px solid var(--line);
        font-size: 14px;
        color: var(--muted);
        margin-bottom: 24px;
      }

      .story-top-actions .back-link {
        margin-bottom: 0;
      }

      .hero {
        background: #ffffff;
        border-radius: 24px;
        padding: 36px;
        border: 1px solid var(--line);
        margin-bottom: 32px;
        box-shadow: var(--shadow);
      }

      h1 {
        font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;
        font-size: clamp(28px, 5vw, 42px);
        margin: 0 0 10px;
      }

      .meta {
        color: var(--muted);
        font-size: 14px;
        line-height: 160%;
      }

      .grid {
        display: grid;
        gap: 22px;
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        margin-top: 28px;
      }

      .story-layout-alt {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 22px;
        align-items: start;
      }

      .story-layout-alt .hero {
        margin-bottom: 0;
      }

      .story-side-stack {
        display: grid;
        gap: 22px;
      }

      .card {
        background: var(--card);
        border-radius: var(--radius);
        padding: 20px;
        border: 1px solid var(--line);
        box-shadow: var(--shadow);
      }

      .card h3 {
        font-family: "IBM Plex Sans", system-ui, -apple-system, Segoe UI, sans-serif;
        margin-top: 0;
      }

      .card p {
        color: var(--muted);
        margin: 6px 0 0;
        font-size: 14px;
        line-height: 160%;
      }

      .hero p {
        margin: 6px 0 0;
        color: var(--muted);
        font-size: 14px;
        line-height: 160%;
      }

      .cta {
        margin-top: 36px;
        padding: 16px 20px;
        border-radius: 14px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        background: var(--accent);
        color: #fff;
        border: none;
        box-shadow: 0 12px 30px rgba(224, 25, 45, 0.3);
      }

      .cta-inline {
        margin-top: 0;
        padding: 10px 16px;
        white-space: nowrap;
      }

      footer {
        color: var(--muted);
        font-size: 13px;
        padding-bottom: 50px;
      }


      @media (max-width: 820px) {
        .nav-links {
          position: absolute;
          top: 64px;
          right: 0;
          flex-direction: column;
          align-items: flex-start;
          background: rgba(255, 255, 255, 1);
          padding: 16px 18px;
          border-radius: 16px;
          border: 1px solid var(--line);
          box-shadow: var(--shadow);
          width: min(240px, 80vw);
          display: none;
        }

        .nav-links.is-open {
          display: flex;
        }

        .menu-toggle {
          display: inline-flex;
          align-items: center;
          gap: 8px;
        }

        .story-top-actions {
          align-items: flex-start;
        }

        .story-layout-alt {
          grid-template-columns: 1fr;
        }
      }
