:root {
        --bg: #111217;
        --panel: #1c1c24;
        --panel-2: #242433;
        --line: rgba(156, 134, 255, 0.26);
        --line-soft: rgba(255, 255, 255, 0.12);
        --text: #f3f4f8;
        --muted: #a8adb8;
        --violet: #7b61ff;
        --violet-2: #9c86ff;
        --green: #50e6a8;
        --red: #ff5c7a;
        --max: 1180px;
        --page-title-size: clamp(38px, 3.5vw, 45px);
        --section-title-size: clamp(28px, 3vw, 38px);
        color-scheme: dark;
        font-family: Inter, "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      }

      * {
        box-sizing: border-box;
      }

      body {
        margin: 0;
        background: #1c1c24;
        color: var(--text);
      }

      body::before {
        content: "";
        position: fixed;
        inset: 0;
        pointer-events: none;
        background-image: url("../images/background.svg");
        background-position: center;
        background-repeat: repeat;
        background-size: 799px;
        opacity: 1;
      }

      img {
        max-width: 100%;
        display: block;
      }

      a {
        color: inherit;
      }

      .shell {
        position: relative;
        z-index: 1;
      }

      .topbar {
        position: sticky;
        top: 0;
        z-index: 20;
        backdrop-filter: blur(18px);
        background: rgba(17, 18, 23, 0.82);
        border-bottom: 1px solid var(--line-soft);
      }

      .topbar-inner {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        min-height: 72px;
        display: flex;
        position: relative;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
      }

      .menu-backdrop {
        display: none;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        min-width: 0;
      }

      .brand img {
        flex: 0 0 auto;
        width: 118px;
        height: auto;
      }

      .visually-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      .menu-toggle {
        display: none;
        align-items: center;
        justify-content: center;
        width: 46px;
        height: 46px;
        border: 1px solid var(--line-soft);
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.04);
        color: var(--text);
        cursor: pointer;
      }

      .menu-toggle-lines {
        display: grid;
        gap: 5px;
      }

      .menu-toggle-lines span {
        display: block;
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        transition: transform 160ms ease, opacity 160ms ease;
      }

      .primary-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        gap: 12px;
        min-width: 0;
      }

      .nav-links {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 4px;
      }

      .nav-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        min-height: 36px;
        padding: 0 13px;
        border-radius: 0;
        clip-path: polygon(9px 0, 100% 0, calc(100% - 9px) 100%, 0 100%);
        color: var(--muted);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        letter-spacing: 0.16em;
        text-decoration: none;
        text-transform: uppercase;
        font-weight: 700;
        white-space: nowrap;
      }

      .nav-link::before {
        content: "";
        display: none;
        flex: 0 0 auto;
        width: 7px;
        height: 18px;
        background: var(--violet-2);
        transform: skewX(-14deg);
        box-shadow: 3px 0 0 rgba(123, 97, 255, 0.18);
      }

      .nav-link:hover,
      .nav-link:focus-visible {
        color: var(--text);
        background: rgba(156, 134, 255, 0.16);
      }

      .nav-link.is-active {
        color: var(--violet-2);
        background: transparent;
      }

      .nav-link.is-active::before {
        display: block;
      }

      .nav-cta {
        min-height: 38px;
        padding: 0 15px;
        font-size: 14px;
      }

      .topbar.is-menu-open .menu-toggle-lines span:first-child {
        transform: translateY(7px) rotate(45deg);
      }

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

      .topbar.is-menu-open .menu-toggle-lines span:last-child {
        transform: translateY(-7px) rotate(-45deg);
      }

      .section {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        padding: 76px 0 58px;
        scroll-margin-top: 96px;
      }

      .hero {
        min-height: 520px;
        display: grid;
        align-items: center;
        grid-template-columns: minmax(0, 0.96fr) minmax(360px, 1.04fr);
        gap: 52px;
        padding-top: 34px;
        padding-bottom: 44px;
      }

      .eyebrow {
        margin: 0 0 16px;
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.16em;
      }

      .section-label {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 24px;
        font-weight: 900;
        line-height: 1;
      }

      .section-label::before,
      .section-label::after {
        content: "";
        display: block;
        flex: 0 0 auto;
      }

      .section-label::before {
        width: 9px;
        height: 24px;
        background: var(--violet-2);
        transform: skewX(-14deg);
        box-shadow: 4px 0 0 rgba(123, 97, 255, 0.18);
      }

      .section-label::after {
        flex: 1 1 auto;
        min-width: 64px;
        height: 1px;
        margin-bottom: 3px;
        align-self: flex-end;
        background: linear-gradient(90deg, var(--violet-2), rgba(156, 134, 255, 0.1));
      }

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

      h1 {
        margin-bottom: 20px;
        font-size: var(--page-title-size);
        line-height: 0.96;
        letter-spacing: 0;
      }

      h2 {
        margin-bottom: 16px;
        font-size: var(--section-title-size);
        line-height: 1.05;
        letter-spacing: 0;
      }

      h3 {
        margin-bottom: 10px;
        font-size: 18px;
      }

      .lead {
        max-width: 660px;
        color: #d7d9e1;
        font-size: clamp(18px, 2vw, 22px);
        line-height: 1.55;
      }

      .copy {
        color: var(--muted);
        line-height: 1.7;
      }

      .actions {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        margin-top: 28px;
      }

      .button {
        position: relative;
        isolation: isolate;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 11px;
        min-height: 46px;
        padding: 0 18px 0 15px;
        border-radius: 0;
        border: 1px solid var(--line-soft);
        clip-path: polygon(11px 0, 100% 0, calc(100% - 11px) 100%, 0 100%);
        color: var(--text);
        background: rgba(20, 20, 29, 0.9);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        font-weight: 700;
        letter-spacing: 0.16em;
        line-height: 1;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
        transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
      }

      .button::before {
        content: "";
        display: block;
        flex: 0 0 auto;
        width: 8px;
        height: 22px;
        background: var(--violet-2);
        transform: skewX(-14deg);
        box-shadow: 4px 0 0 rgba(123, 97, 255, 0.18);
      }

      .button.primary {
        color: #dcd6ff;
        background: rgba(16, 17, 24, 0.86);
      }

      .button.secondary {
        color: #f3f4f7;
        background: rgba(255, 255, 255, 0.04);
        border-color: rgba(0, 0, 0, 0.42);
      }

      .button.secondary::before {
        background: #9aa0ad;
        box-shadow: 4px 0 0 rgba(255, 255, 255, 0.1);
      }

      .button:hover,
      .button:focus-visible {
        color: #f4f1ff;
        background: rgba(37, 34, 54, 0.96);
        border-color: rgba(156, 134, 255, 0.62);
      }

      .button.secondary:hover,
      .button.secondary:focus-visible {
        color: #fafafa;
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(0, 0, 0, 0.5);
      }

      input[type="submit"].button {
        padding-left: 22px;
      }

      .chips {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 24px;
      }

      .chip {
        border: 1px solid var(--line);
        background: rgba(123, 97, 255, 0.08);
        color: #dcd6ff;
        padding: 8px 11px;
        border-radius: 999px;
        font-size: 13px;
      }

      .media-panel {
        position: relative;
        overflow: hidden;
        border: 1px solid var(--line);
        background: rgba(28, 28, 36, 0.82);
        border-radius: 14px;
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
      }

      .media-panel img {
        width: 100%;
        min-height: 320px;
        object-fit: cover;
      }

      .media-panel.contain img {
        min-height: 0;
        object-fit: contain;
        background: #0b0b10;
      }

      .use-case-panel {
        background:
          linear-gradient(180deg, rgba(35, 41, 70, 0.72), rgba(14, 34, 58, 0.84)),
          rgba(20, 24, 38, 0.92);
      }

      .use-case-board {
        padding: 0;
        color: #eef1fb;
        font-size: 14px;
      }

      .use-case-band {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        gap: 16px;
        min-height: 72px;
        padding: 16px 26px;
        border-bottom: 1px solid rgba(156, 134, 255, 0.55);
        background: rgba(63, 52, 119, 0.32);
      }

      .use-case-icon {
        display: inline-grid;
        place-items: center;
        width: 44px;
        height: 44px;
        border: 1px solid rgba(156, 134, 255, 0.62);
        border-radius: 10px;
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        font-weight: 800;
        line-height: 1;
        background: rgba(123, 97, 255, 0.1);
      }

      .use-case-band h3,
      .use-case-column h3 {
        margin: 0;
        text-transform: uppercase;
        color: #e5e7f2;
        letter-spacing: 0;
      }

      .use-case-band h3 {
        font-size: clamp(15px, 2vw, 20px);
      }

      .slash {
        color: var(--violet-2);
        font-size: 1.35em;
        font-weight: 900;
        padding: 0 6px;
      }

      .use-case-grid {
        display: grid;
        grid-template-columns: 1fr 1px 1fr;
        gap: 30px;
        padding: 28px 30px 24px;
      }

      .use-case-divider {
        width: 1px;
        min-height: 170px;
        background: linear-gradient(180deg, transparent, rgba(156, 134, 255, 0.7), transparent);
      }

      .use-case-column {
        display: grid;
        grid-template-columns: 54px minmax(0, 1fr);
        gap: 16px;
        align-items: start;
      }

      .use-case-column h3 {
        color: var(--violet-2);
        font-size: 16px;
      }

      .case-list {
        display: grid;
        gap: 18px;
        margin-top: 22px;
      }

      .case-row {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        color: #eef1fb;
        font-size: 13px;
        font-weight: 700;
      }

      .case-row .use-case-icon {
        width: 42px;
        height: 42px;
        border-radius: 9px;
        font-size: 11px;
      }

      .hud {
        position: absolute;
        inset: auto 18px 18px;
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px;
      }

      .hud-item {
        min-height: 76px;
        padding: 12px;
        border: 1px solid rgba(255, 255, 255, 0.16);
        background: rgba(8, 9, 14, 0.72);
        border-radius: 8px;
      }

      .hud-item strong {
        display: block;
        color: var(--green);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        margin-bottom: 6px;
      }

      .hud-item span {
        color: #e7e8ee;
        font-size: 13px;
      }

      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
      }

      .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px;
      }

      .card,
      .proof-card {
        border: 1px solid var(--line-soft);
        background: rgba(28, 28, 36, 0.78);
        border-radius: 12px;
        padding: 24px;
      }

      .card .kicker,
      .proof-card .kicker {
        display: block;
        margin-bottom: 10px;
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        text-transform: uppercase;
      }

      .process {
        display: grid;
        grid-template-columns: 1fr auto 1fr auto 1fr;
        gap: 14px;
        align-items: center;
      }

      .arrow-line {
        width: 42px;
        height: 1px;
        background: var(--violet-2);
      }

      .split {
        display: grid;
        grid-template-columns: 0.85fr 1.15fr;
        gap: 40px;
        align-items: center;
      }

      .proof-card img {
        border-radius: 8px;
        border: 1px solid var(--line-soft);
        aspect-ratio: 16 / 9;
        object-fit: cover;
        margin-bottom: 18px;
      }

      .footer-cta {
        padding-bottom: 72px;
      }

      .footer-cta .lead {
        margin-bottom: 0;
      }

      .news-header {
        width: 100%;
        margin-bottom: 32px;
      }

      .news-header .copy {
        max-width: 620px;
        margin-bottom: 0;
      }

      .news-grid {
        display: grid;
        grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
        gap: 22px;
        align-items: stretch;
      }

      .home-news-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
        align-items: stretch;
      }

      .news-section-actions {
        display: flex;
        justify-content: flex-start;
        margin-top: 24px;
      }

      .news-feature,
      .news-card {
        border: 1px solid var(--line-soft);
        border-radius: 12px;
        background: rgba(28, 28, 36, 0.78);
        overflow: hidden;
      }

      .news-feature,
      .newsroom-grid .news-card {
        display: grid;
        grid-template-columns: minmax(0, 1.05fr) minmax(260px, 0.78fr);
        min-height: 360px;
      }

      .news-feature img,
      .news-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .news-media-placeholder {
        display: block;
        min-height: 360px;
        background: rgba(8, 9, 14, 0.28);
      }

      .news-feature img {
        min-height: 360px;
        object-position: 37% center;
      }

      .news-card img {
        aspect-ratio: 16 / 9;
      }

      .newsroom-grid .news-card img {
        min-height: 300px;
        aspect-ratio: auto;
      }

      .newsroom-grid .news-media-placeholder {
        min-height: 300px;
      }

      .news-body {
        display: grid;
        align-content: space-between;
        gap: 24px;
        padding: 26px;
      }

      .news-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 16px;
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        text-transform: uppercase;
      }

      .news-title {
        margin-bottom: 12px;
        font-size: clamp(22px, 2.3vw, 32px);
        line-height: 1.08;
      }

      .news-title a {
        color: inherit;
        text-decoration: none;
      }

      .news-title a:hover {
        color: #e6e0ff;
      }

      .news-list {
        display: grid;
        gap: 22px;
      }

      .home-news-card {
        display: grid;
        grid-template-rows: 170px minmax(0, 1fr);
        min-height: 420px;
        height: 100%;
      }

      .home-news-card .home-news-media {
        display: block;
        height: 170px;
        min-height: 0;
        overflow: hidden;
      }

      .home-news-card .news-media-placeholder {
        min-height: 0;
      }

      .news-card.home-news-card .news-body {
        min-height: 0;
        padding: 20px;
      }

      .news-card.home-news-card .news-title {
        font-size: 18px;
        line-height: 1.16;
      }

      .home-news-card .copy {
        display: -webkit-box;
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 3;
      }

      .news-card .news-body {
        padding: 22px;
      }

      .news-card .news-title {
        font-size: 20px;
      }

      .news-link {
        display: inline-flex;
        align-items: center;
        width: max-content;
        color: #e6e0ff;
        text-decoration: none;
        font-weight: 800;
      }

      .news-link:hover {
        color: var(--text);
      }

      .contact-grid {
        display: grid;
        grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
        gap: 40px;
        align-items: start;
      }

      .contact-intel {
        display: grid;
        gap: 18px;
      }

      .signal-list {
        display: grid;
        gap: 12px;
        margin-top: 12px;
      }

      .signal-row {
        display: grid;
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 14px;
        align-items: center;
        padding: 14px;
        border: 1px solid var(--line-soft);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.035);
      }

      .signal-row strong {
        display: block;
        margin-bottom: 3px;
        color: var(--text);
      }

      .signal-row span {
        color: var(--muted);
        font-size: 14px;
        line-height: 1.45;
      }

      .contact-form {
        display: grid;
        gap: 18px;
        padding: 26px;
        border: 1px solid var(--line);
        border-radius: 14px;
        background:
          linear-gradient(180deg, rgba(36, 36, 51, 0.86), rgba(17, 18, 23, 0.92)),
          rgba(28, 28, 36, 0.88);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
      }

      .form-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .form-field {
        display: grid;
        gap: 8px;
      }

      .form-field.full {
        grid-column: 1 / -1;
      }

      label {
        color: #dfe2ee;
        font-size: 13px;
        font-weight: 700;
      }

      input,
      select,
      textarea {
        width: 100%;
        min-height: 46px;
        border: 1px solid var(--line-soft);
        border-radius: 8px;
        background: rgba(8, 9, 14, 0.7);
        color: var(--text);
        font: inherit;
        padding: 0 13px;
        outline: none;
      }

      textarea {
        min-height: 128px;
        padding-top: 13px;
        resize: vertical;
      }

      input:focus,
      select:focus,
      textarea:focus {
        border-color: var(--violet-2);
        box-shadow: 0 0 0 3px rgba(156, 134, 255, 0.14);
      }

      .form-footer {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
      }

      .form-note {
        max-width: 320px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
      }

      .form-status {
        color: var(--green);
        font-size: 13px;
        font-weight: 700;
      }

      .form-status:empty {
        display: none;
      }

      .site-footer {
        background: rgba(8, 9, 14, 0.42);
      }

      .site-footer-inner {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        padding: 46px 0 34px;
        display: grid;
        grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(140px, 0.6fr));
        gap: 32px;
      }

      .footer-brand img {
        width: 112px;
        margin-bottom: 18px;
      }

      .footer-brand p,
      .footer-column a,
      .footer-bottom {
        color: var(--muted);
      }

      .footer-brand p {
        max-width: 360px;
        line-height: 1.65;
      }

      .footer-column h3 {
        margin-bottom: 14px;
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        text-transform: uppercase;
      }

      .footer-column a {
        display: block;
        margin-bottom: 10px;
        text-decoration: none;
        line-height: 1.45;
      }

      .footer-column a:hover {
        color: var(--text);
      }

      .footer-bottom {
        width: min(var(--max), calc(100% - 32px));
        margin: 0 auto;
        padding: 18px 0 28px;
        font-size: 13px;
      }

      @media (max-width: 860px) {
        .topbar-inner {
          align-items: center;
          flex-direction: row;
          flex-wrap: wrap;
          row-gap: 0;
          padding: 10px 0;
          z-index: 2;
        }

        .brand img {
          width: 108px;
        }

        .menu-toggle {
          display: inline-flex;
          width: 44px;
          height: 44px;
          border: 0;
          background: transparent;
        }

        .menu-backdrop {
          position: fixed;
          inset: 97px 0 0;
          z-index: 1;
          display: block;
          pointer-events: none;
          background: rgba(8, 9, 14, 0);
          backdrop-filter: blur(0);
          opacity: 0;
          transition: opacity 160ms ease, background 160ms ease, backdrop-filter 160ms ease;
        }

        .topbar.is-menu-open .menu-backdrop {
          background: rgba(8, 9, 14, 0.42);
          backdrop-filter: blur(2px);
          opacity: 1;
        }

        .primary-nav {
          width: 100%;
          align-items: stretch;
          flex-direction: column;
          gap: 10px;
          position: absolute;
          top: calc(100% + 12px);
          left: 0;
          right: 0;
          z-index: 3;
          padding: 10px;
          border: 1px solid var(--line-soft);
          border-radius: 14px;
          background:
            linear-gradient(180deg, rgba(36, 36, 51, 0.98), rgba(17, 18, 23, 0.98)),
            var(--bg);
          box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
          max-height: 0;
          opacity: 0;
          overflow: hidden;
          pointer-events: none;
          visibility: hidden;
          transition: max-height 200ms ease, opacity 160ms ease, visibility 160ms ease;
        }

        .topbar.is-menu-open .primary-nav {
          max-height: 360px;
          opacity: 1;
          pointer-events: auto;
          visibility: visible;
        }

        .nav-links {
          width: 100%;
          align-items: stretch;
          flex-direction: column;
          gap: 6px;
          padding: 0;
          border: 0;
          border-radius: 0;
          background: transparent;
        }

        .nav-link {
          justify-content: flex-start;
          width: 100%;
          min-height: 42px;
          padding: 0 16px;
        }

        .nav-link {
          flex: none;
        }

        .nav-cta {
          width: 100%;
        }

        .hero,
        .split,
        .contact-grid,
        .home-news-grid,
        .news-grid,
        .news-feature,
        .newsroom-grid .news-card {
          grid-template-columns: 1fr;
        }

        .grid-3,
        .grid-2 {
          grid-template-columns: 1fr;
        }

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

        .arrow-line {
          width: 1px;
          height: 28px;
          justify-self: center;
        }

        .hud {
          position: static;
          grid-template-columns: 1fr;
          padding: 12px;
        }

        .use-case-band,
        .use-case-column,
        .case-row {
          grid-template-columns: 1fr;
          text-align: center;
          justify-items: center;
        }

        .use-case-grid {
          grid-template-columns: 1fr;
          gap: 20px;
          padding: 22px;
        }

        .use-case-divider {
          width: 100%;
          min-height: 1px;
          height: 1px;
          background: linear-gradient(90deg, transparent, rgba(156, 134, 255, 0.7), transparent);
        }

        .section {
          padding: 54px 0 46px;
          scroll-margin-top: 132px;
        }

        .section-label {
          gap: 9px;
          margin-bottom: 18px;
        }

        .section-label::before {
          width: 8px;
          height: 22px;
        }

        .section-label::after {
          min-width: 28px;
          margin-bottom: 3px;
        }

        .news-feature img {
          min-height: 240px;
        }

        .news-media-placeholder,
        .newsroom-grid .news-media-placeholder {
          min-height: 240px;
        }

        .newsroom-grid .news-card img {
          min-height: 240px;
          aspect-ratio: 16 / 9;
        }

        .home-news-card {
          grid-template-rows: 220px minmax(0, 1fr);
          min-height: 0;
        }

        .home-news-card .home-news-media {
          height: 220px;
        }

        .site-footer-inner {
          grid-template-columns: 1fr;
          gap: 20px;
          padding-top: 36px;
        }

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

        .contact-form {
          padding: 20px;
        }
      }

      .content-page {
        min-height: calc(100vh - 72px);
      }

      .content-card {
        max-width: 860px;
        padding: 34px;
        border: 1px solid var(--line-soft);
        border-radius: 14px;
        background: rgba(28, 28, 36, 0.78);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.24);
      }

      .content-card h1 {
        font-size: var(--page-title-size);
      }

      .content-card h2 {
        margin-top: 34px;
        font-size: var(--section-title-size);
      }

      .content-card p,
      .content-card li {
        color: var(--muted);
        line-height: 1.7;
      }

      .content-card strong {
        color: #dde1ea;
      }

      .content-card ul,
      .content-card ol {
        padding-left: 1.2rem;
      }

      .content-card img {
        margin: 26px 0;
        border: 1px solid var(--line-soft);
        border-radius: 12px;
        background: #0b0b10;
      }

      .content-card a {
        color: #e6e0ff;
        font-weight: 800;
      }

      .newsroom-page {
        min-height: calc(100vh - 72px);
      }

      .newsroom-hero {
        width: 100%;
        max-width: none;
        margin-bottom: 34px;
      }

      .newsroom-hero h1 {
        font-size: var(--page-title-size);
      }

      .newsroom-feature {
        margin-bottom: 22px;
      }

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

      .newsroom-grid .news-card {
        min-height: 320px;
      }

      .news-card.no-image {
        min-height: 290px;
      }

      .newsroom-grid .news-card.no-image {
        display: block;
      }

      .news-back-link {
        display: inline-flex;
        align-items: center;
        margin-bottom: 28px;
        color: #e6e0ff;
        text-decoration: none;
        font-weight: 800;
      }

      .news-back-link::before {
        content: "";
        width: 9px;
        height: 9px;
        margin-right: 10px;
        border-left: 2px solid currentColor;
        border-bottom: 2px solid currentColor;
        transform: rotate(45deg);
      }

      .news-post {
        min-height: calc(100vh - 72px);
      }

      .news-post-hero {
        padding-bottom: 32px;
      }

      .news-post-heading {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
        gap: 40px;
        align-items: end;
      }

      .news-post-heading h1 {
        max-width: 940px;
        font-size: var(--page-title-size);
      }

      .news-post-facts {
        display: grid;
        gap: 12px;
        margin: 0;
        padding: 18px;
        border: 1px solid var(--line-soft);
        border-radius: 12px;
        background: rgba(28, 28, 36, 0.78);
      }

      .news-post-facts div {
        display: grid;
        gap: 4px;
        padding-bottom: 12px;
        border-bottom: 1px solid var(--line-soft);
      }

      .news-post-facts div:last-child {
        padding-bottom: 0;
        border-bottom: 0;
      }

      .news-post-facts dt {
        color: var(--violet-2);
        font-family: "IBM Plex Mono", "Roboto Mono", ui-monospace, monospace;
        font-size: 12px;
        font-weight: 800;
        text-transform: uppercase;
      }

      .news-post-facts dd {
        margin: 0;
        color: #dde1ea;
        font-weight: 700;
        line-height: 1.45;
      }

      .news-post-media {
        margin: 38px 0 0;
        overflow: hidden;
        border: 1px solid var(--line);
        border-radius: 14px;
        background: rgba(8, 9, 14, 0.72);
        box-shadow: 0 24px 80px rgba(0, 0, 0, 0.3);
      }

      .news-post-media img {
        width: 100%;
        max-height: 580px;
        object-fit: cover;
      }

      .news-post-media figcaption {
        padding: 14px 18px;
        color: var(--muted);
        font-size: 13px;
        line-height: 1.5;
      }

      .news-post-body {
        display: grid;
        grid-template-columns: minmax(0, 760px) minmax(260px, 340px);
        gap: 54px;
        align-items: start;
        padding-top: 32px;
      }

      .news-post-content {
        font-size: 18px;
      }

      .news-post-content p,
      .news-post-content li {
        color: #d7d9e1;
        line-height: 1.78;
      }

      .news-post-content h2 {
        margin-top: 42px;
        font-size: var(--section-title-size);
      }

      .news-post-content a {
        color: #e6e0ff;
        font-weight: 800;
      }

      .news-post-aside {
        position: sticky;
        top: 104px;
        display: grid;
        gap: 18px;
      }

      .news-post-aside .button {
        width: 100%;
      }

      @media (max-width: 860px) {
        .news-post-heading,
        .news-post-body {
          grid-template-columns: 1fr;
        }

        .news-post-aside {
          position: static;
        }
      }
