:root {
    --blue: #1647b8;
    --blue-deep: #0e348d;
    --blue-dark: #08215b;
    --blue-soft: #275bc8;
  
    --cream: #f4f1e8;
    --cream-soft: rgba(244, 241, 232, 0.78);
    --cream-muted: rgba(244, 241, 232, 0.58);
  
    --coral: #ff745c;
    --lime: #e7f46a;
  
    --line: rgba(244, 241, 232, 0.2);
    --line-soft: rgba(244, 241, 232, 0.11);
  
    --font-main: "Manrope", sans-serif;
    --font-condensed: "Barlow Condensed", sans-serif;
    --font-mono: "DM Mono", monospace;
  
    --content-width: 1360px;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    min-width: 320px;
    color: var(--cream);
    background: var(--blue);
    font-family: var(--font-main);
    overflow-x: hidden;
  }
  
  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -4;
    pointer-events: none;
    background:
      radial-gradient(circle at 76% 10%, rgba(255, 116, 92, 0.14), transparent 23%),
      radial-gradient(circle at 11% 86%, rgba(231, 244, 106, 0.08), transparent 28%),
      linear-gradient(135deg, var(--blue) 0%, #1b4dc1 47%, #123eaa 100%);
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  button,
  input,
  textarea {
    font: inherit;
  }
  
  .blueprint-grid {
    position: fixed;
    inset: 0;
    z-index: -3;
    pointer-events: none;
    opacity: 0.28;
    background-image:
      linear-gradient(rgba(244, 241, 232, 0.1) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.1) 1px, transparent 1px),
      linear-gradient(rgba(244, 241, 232, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.04) 1px, transparent 1px);
    background-size:
      120px 120px,
      120px 120px,
      24px 24px,
      24px 24px;
    background-position: -1px -1px;
  }
  
  .page-noise {
    position: fixed;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    opacity: 0.11;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='.7'/%3E%3C/svg%3E");
  }
  
  /* Header */
  
  .site-header {
    position: relative;
    z-index: 20;
    border-bottom: 1px solid var(--line);
  }
  
  .header-inner {
    width: min(var(--content-width), calc(100% - 64px));
    min-height: 98px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(300px, 1fr) auto minmax(180px, 1fr);
    align-items: center;
    gap: 30px;
  }
  
  .brand {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
  }
  
  .brand-mark {
    display: inline-flex;
    align-items: baseline;
    gap: 1px;
    min-width: 62px;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-weight: 700;
    font-size: 31px;
    line-height: 1;
    letter-spacing: -0.06em;
  }
  
  .brand-slash {
    color: var(--coral);
  }
  
  .brand-text {
    display: grid;
    gap: 4px;
    line-height: 1;
  }
  
  .brand-text strong {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }
  
  .brand-text small {
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  
  .desktop-nav {
    display: flex;
    align-items: center;
    gap: 26px;
  }
  
  .desktop-nav a {
    position: relative;
    display: inline-flex;
    gap: 6px;
    align-items: center;
    color: var(--cream-soft);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.03em;
    transition: color 0.25s ease;
  }
  
  .desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -9px;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width 0.25s ease;
  }
  
  .desktop-nav a:hover {
    color: var(--cream);
  }
  
  .desktop-nav a:hover::after {
    width: 100%;
  }
  
  .desktop-nav span {
    color: var(--coral);
  }
  
  .header-status {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }
  
  .status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--lime);
    box-shadow: 0 0 0 4px rgba(231, 244, 106, 0.12);
    animation: statusPulse 2.4s infinite ease-in-out;
  }
  
  @keyframes statusPulse {
    0%,
    100% {
      transform: scale(1);
      box-shadow: 0 0 0 4px rgba(231, 244, 106, 0.1);
    }
  
    50% {
      transform: scale(1.15);
      box-shadow: 0 0 0 8px rgba(231, 244, 106, 0);
    }
  }
  
  .menu-toggle,
  .mobile-menu {
    display: none;
  }
  
  /* Hero */
  
  .hero {
    position: relative;
    min-height: calc(100vh - 99px);
    border-bottom: 1px solid var(--line);
  }
  
  .hero-side-index {
    position: absolute;
    inset: 0 auto 0 0;
    width: 54px;
    border-right: 1px solid var(--line-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 28px 0;
    color: rgba(244, 241, 232, 0.38);
    font-family: var(--font-mono);
    font-size: 9px;
    text-align: center;
  }
  
  .hero-inner {
    width: min(var(--content-width), calc(100% - 140px));
    min-height: calc(100vh - 99px);
    margin: 0 auto;
    padding: 74px 0 86px;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(480px, 0.9fr);
    align-items: center;
    gap: clamp(40px, 8vw, 140px);
  }
  
  .section-label {
    display: flex;
    align-items: center;
    gap: 11px;
    margin: 0 0 26px;
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .section-label span {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--coral);
  }
  
  .hero-copy h1 {
    max-width: 680px;
    margin: 0;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(70px, 8vw, 130px);
    font-weight: 600;
    line-height: 0.84;
    letter-spacing: -0.055em;
    text-transform: uppercase;
  }
  
  .hero-copy h1 span {
    color: var(--coral);
  }
  
  .hero-description {
    max-width: 470px;
    margin: 34px 0 0;
    color: var(--cream-soft);
    font-size: 16px;
    line-height: 1.8;
  }
  
  .hero-link {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    margin-top: 35px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(244, 241, 232, 0.5);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: gap 0.25s ease, border-color 0.25s ease;
  }
  
  .hero-link:hover {
    gap: 22px;
    border-color: var(--coral);
  }
  
  .hero-link span {
    color: var(--coral);
    font-size: 17px;
    line-height: 1;
  }
  
  /* Blueprint visual */
  
  .hero-blueprint {
    position: relative;
    min-height: 570px;
    padding: 64px 50px 48px;
    border: 1px solid rgba(244, 241, 232, 0.42);
    background:
      linear-gradient(rgba(244, 241, 232, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.08) 1px, transparent 1px),
      rgba(5, 40, 116, 0.12);
    background-size: 28px 28px;
    box-shadow:
      inset 0 0 80px rgba(6, 30, 89, 0.22),
      0 26px 60px rgba(7, 21, 68, 0.16);
  }
  
  .hero-blueprint::before {
    content: "";
    position: absolute;
    inset: 17px;
    pointer-events: none;
    border: 1px solid rgba(244, 241, 232, 0.16);
  }
  
  .blueprint-corner {
    position: absolute;
    width: 17px;
    height: 17px;
    border-color: var(--coral);
    border-style: solid;
    z-index: 2;
  }
  
  .corner-top-left {
    top: -1px;
    left: -1px;
    border-width: 2px 0 0 2px;
  }
  
  .corner-top-right {
    top: -1px;
    right: -1px;
    border-width: 2px 2px 0 0;
  }
  
  .corner-bottom-left {
    bottom: -1px;
    left: -1px;
    border-width: 0 0 2px 2px;
  }
  
  .corner-bottom-right {
    right: -1px;
    bottom: -1px;
    border-width: 0 2px 2px 0;
  }
  
  .blueprint-flow {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .flow-item {
    position: relative;
    width: min(100%, 330px);
  }
  
  .flow-box {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    border: 1px solid rgba(244, 241, 232, 0.78);
    background: rgba(18, 64, 172, 0.18);
    color: var(--cream);
    font-family: var(--font-mono);
    font-size: 12px;
    letter-spacing: 0.05em;
    text-align: center;
    text-transform: uppercase;
    transition:
      transform 0.25s ease,
      background 0.25s ease,
      border-color 0.25s ease;
  }
  
  .flow-item:hover .flow-box {
    transform: translateX(8px);
    border-color: var(--coral);
    background: rgba(255, 116, 92, 0.12);
  }
  
  .flow-box-accent {
    border-color: var(--lime);
    box-shadow: 0 0 0 1px rgba(231, 244, 106, 0.11);
  }
  
  .flow-arrow {
    position: relative;
    z-index: 2;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 25px;
    line-height: 1;
  }
  
  .flow-arrow::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 18px;
    transform: translateX(-50%);
    background: rgba(244, 241, 232, 0.55);
  }
  
  .flow-arrow::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 1px;
    height: 14px;
    transform: translateX(-50%);
    background: rgba(244, 241, 232, 0.55);
  }
  
  .flow-note {
    position: absolute;
    top: 50%;
    left: calc(100% + 24px);
    display: flex;
    align-items: center;
    gap: 9px;
    width: 135px;
    transform: translateY(-50%);
    color: var(--cream-muted);
  }
  
  .flow-note p {
    margin: 0;
    font-family: var(--font-mono);
    font-size: 8px;
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .note-line {
    width: 22px;
    height: 1px;
    background: rgba(244, 241, 232, 0.44);
    flex: 0 0 auto;
  }
  
  .flow-note-accent {
    color: var(--lime);
  }
  
  .flow-note-accent .note-line {
    background: var(--lime);
  }
  
  .flow-item-2 {
    transform: translateX(-24px);
  }
  
  .flow-item-3 {
    transform: translateX(12px);
  }
  
  .flow-item-4 {
    transform: translateX(-10px);
  }
  
  .blueprint-meta {
    position: absolute;
    right: 33px;
    bottom: 28px;
    left: 33px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding-top: 13px;
    border-top: 1px solid rgba(244, 241, 232, 0.22);
    color: rgba(244, 241, 232, 0.52);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
  }
  
  /* Reveal */
  
  .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 0.85s ease,
      transform 0.85s ease;
  }
  
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
  
  .delay-1 {
    transition-delay: 0.14s;
  }
  
  /* Responsive */
  
  @media (max-width: 1120px) {
    .header-inner {
      grid-template-columns: minmax(250px, 1fr) auto auto;
      gap: 20px;
    }
  
    .desktop-nav {
      gap: 16px;
    }
  
    .hero-inner {
      grid-template-columns: minmax(0, 1fr) minmax(400px, 0.86fr);
      width: min(var(--content-width), calc(100% - 106px));
      gap: 50px;
    }
  
    .hero-blueprint {
      padding-inline: 36px;
    }
  
    .flow-note {
      display: none;
    }
  }
  
  @media (max-width: 900px) {
    .header-inner {
      width: min(100% - 40px, var(--content-width));
      min-height: 82px;
      grid-template-columns: 1fr auto;
    }
  
    .desktop-nav,
    .header-status {
      display: none;
    }
  
    .menu-toggle {
      display: grid;
      gap: 5px;
      width: 42px;
      padding: 11px 8px;
      border: 1px solid var(--line);
      background: transparent;
      color: var(--cream);
      cursor: pointer;
    }
  
    .menu-toggle span {
      display: block;
      width: 100%;
      height: 1px;
      background: currentColor;
      transition: transform 0.25s ease, opacity 0.25s ease;
    }
  
    .menu-toggle.is-active span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }
  
    .menu-toggle.is-active span:nth-child(2) {
      opacity: 0;
    }
  
    .menu-toggle.is-active span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }
  
    .mobile-menu {
      position: absolute;
      top: 100%;
      right: 0;
      left: 0;
      display: grid;
      gap: 0;
      max-height: 0;
      overflow: hidden;
      background: var(--blue-dark);
      border-bottom: 0 solid var(--line);
      transition: max-height 0.3s ease, border-bottom 0.3s ease;
    }
  
    .mobile-menu.is-open {
      max-height: 280px;
      border-bottom-width: 1px;
    }
  
    .mobile-menu a {
      padding: 18px 20px;
      border-top: 1px solid var(--line-soft);
      color: var(--cream-soft);
      font-family: var(--font-mono);
      font-size: 11px;
      text-transform: uppercase;
    }
  
    .mobile-menu a:hover {
      background: rgba(244, 241, 232, 0.06);
      color: var(--cream);
    }
  
    .hero {
      min-height: auto;
    }
  
    .hero-side-index {
      display: none;
    }
  
    .hero-inner {
      width: min(100% - 40px, var(--content-width));
      min-height: auto;
      padding: 70px 0 80px;
      grid-template-columns: 1fr;
      gap: 62px;
    }
  
    .hero-copy h1 {
      max-width: 650px;
      font-size: clamp(68px, 13vw, 110px);
    }
  
    .hero-blueprint {
      width: 100%;
      min-height: 520px;
      max-width: 650px;
    }
  }
  
  @media (max-width: 560px) {
    .brand {
      gap: 10px;
    }
  
    .brand-mark {
      min-width: 48px;
      font-size: 26px;
    }
  
    .brand-text strong {
      font-size: 9px;
    }
  
    .brand-text small {
      max-width: 190px;
      font-size: 7px;
      line-height: 1.4;
    }
  
    .hero-inner {
      width: min(100% - 28px, var(--content-width));
      padding: 52px 0 58px;
      gap: 45px;
    }
  
    .section-label {
      margin-bottom: 18px;
      font-size: 8px;
    }
  
    .hero-copy h1 {
      font-size: clamp(58px, 17vw, 90px);
      line-height: 0.86;
    }
  
    .hero-description {
      margin-top: 27px;
      font-size: 14px;
    }
  
    .hero-link {
      margin-top: 28px;
      font-size: 9px;
    }
  
    .hero-blueprint {
      min-height: 472px;
      padding: 48px 28px 60px;
    }
  
    .flow-box {
      min-height: 56px;
      font-size: 10px;
    }
  
    .flow-arrow {
      height: 44px;
      font-size: 21px;
    }
  
    .blueprint-meta {
      right: 22px;
      bottom: 19px;
      left: 22px;
      gap: 8px;
      font-size: 6px;
    }
  
    .blueprint-meta span:nth-child(2) {
      display: none;
    }
  }

  /* Working map */

.working-map {
    display: grid;
    grid-template-columns: 1.16fr repeat(4, 1fr);
    min-height: 340px;
    border-bottom: 1px solid var(--line);
    background: rgba(8, 45, 133, 0.18);
  }
  
  .working-map-side,
  .map-card {
    min-height: 340px;
    padding: 46px 34px 34px;
    border-right: 1px solid var(--line);
  }
  
  .working-map-side {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .working-map-side .section-label {
    margin-bottom: 0;
  }
  
  .section-label-light {
    color: rgba(244, 241, 232, 0.68);
  }
  
  .working-map-side h2 {
    max-width: 300px;
    margin: 34px 0 14px;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(38px, 3.5vw, 61px);
    font-weight: 600;
    line-height: 0.95;
    letter-spacing: -0.045em;
    text-transform: uppercase;
  }
  
  .working-map-side h2 span {
    color: var(--coral);
  }
  
  .working-map-side > p:last-child {
    max-width: 285px;
    margin: 0;
    color: var(--cream-soft);
    font-size: 13px;
    line-height: 1.75;
  }
  
  .map-card {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    transition:
      background 0.28s ease,
      transform 0.28s ease;
  }
  
  .map-card:last-child {
    border-right: 0;
  }
  
  .map-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
      radial-gradient(circle at 78% 18%, rgba(255, 116, 92, 0.2), transparent 34%),
      linear-gradient(135deg, rgba(244, 241, 232, 0.06), transparent 55%);
    transition: opacity 0.28s ease;
    pointer-events: none;
  }
  
  .map-card:hover {
    background: rgba(8, 34, 101, 0.28);
  }
  
  .map-card:hover::before {
    opacity: 1;
  }
  
  .map-icon,
  .map-card-content {
    position: relative;
    z-index: 1;
  }
  
  .map-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--coral);
    border: 1px solid rgba(255, 116, 92, 0.52);
    font-family: var(--font-mono);
    font-size: 20px;
    transition:
      color 0.28s ease,
      background 0.28s ease,
      transform 0.28s ease;
  }
  
  .map-card:hover .map-icon {
    color: var(--blue-dark);
    background: var(--coral);
    transform: translateY(-4px);
  }
  
  .map-icon-code span {
    font-size: 15px;
    letter-spacing: -0.18em;
    transform: translateX(-1px);
  }
  
  .map-icon-shield span {
    font-size: 23px;
  }
  
  .map-icon-link span {
    font-size: 29px;
    line-height: 1;
    transform: rotate(-20deg);
  }
  
  .map-icon-growth span {
    font-size: 24px;
  }
  
  .map-card-content {
    margin-top: 34px;
  }
  
  .map-number {
    display: block;
    margin-bottom: 20px;
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
  }
  
  .map-card h3 {
    margin: 0 0 14px;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: 32px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1;
    text-transform: uppercase;
  }
  
  .map-card p {
    margin: 0;
    color: var(--cream-soft);
    font-size: 12px;
    line-height: 1.75;
  }
  
  .delay-2 {
    transition-delay: 0.22s;
  }
  
  .delay-3 {
    transition-delay: 0.3s;
  }
  
  @media (max-width: 1120px) {
    .working-map {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .working-map-side {
      grid-column: span 2;
      min-height: 250px;
      border-bottom: 1px solid var(--line);
    }
  
    .working-map-side h2 {
      max-width: 500px;
    }
  
    .working-map-side > p:last-child {
      max-width: 500px;
    }
  
    .map-card:nth-child(3) {
      border-right: 0;
    }
  
    .map-card:nth-child(4),
    .map-card:nth-child(5) {
      border-top: 1px solid var(--line);
    }
  }
  
  @media (max-width: 640px) {
    .working-map {
      grid-template-columns: 1fr;
    }
  
    .working-map-side {
      grid-column: auto;
      min-height: auto;
      padding: 38px 24px 34px;
    }
  
    .working-map-side h2 {
      margin: 28px 0 16px;
      font-size: 47px;
    }
  
    .map-card {
      min-height: 255px;
      padding: 32px 24px;
      border-right: 0;
      border-top: 1px solid var(--line);
    }
  
    .map-card:nth-child(3) {
      border-right: 0;
    }
  
    .map-card-content {
      margin-top: 26px;
    }
  }

  /* Working principles */

.working-principles {
    display: grid;
    grid-template-columns: 1.16fr repeat(3, 1fr);
    border-bottom: 1px solid var(--line);
    background:
      linear-gradient(180deg, rgba(9, 43, 124, 0.22), rgba(7, 35, 101, 0.16));
  }
  
  .principles-intro,
  .principle-card {
    min-height: 310px;
    padding: 42px 34px 34px;
    border-right: 1px solid var(--line);
  }
  
  .principles-intro {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .principles-intro .section-label {
    margin-bottom: 0;
  }
  
  .principles-copy {
    max-width: 220px;
    margin: 34px 0 0;
    color: var(--cream-soft);
    font-size: 13px;
    line-height: 1.75;
  }
  
  .principle-card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgba(6, 31, 93, 0.08);
    transition:
      background 0.28s ease,
      transform 0.28s ease;
  }
  
  .principle-card:last-child {
    border-right: 0;
  }
  
  .principle-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
      linear-gradient(135deg, rgba(255, 116, 92, 0.15), transparent 48%),
      radial-gradient(circle at 90% 100%, rgba(231, 244, 106, 0.11), transparent 34%);
    transition: opacity 0.28s ease;
  }
  
  .principle-card:hover {
    background: rgba(4, 24, 76, 0.24);
  }
  
  .principle-card:hover::before {
    opacity: 1;
  }
  
  .principle-number,
  .principle-card h3,
  .principle-card p,
  .principle-plus {
    position: relative;
    z-index: 1;
  }
  
  .principle-number {
    color: var(--coral);
    font-family: var(--font-mono);
    font-size: 13px;
    letter-spacing: 0.05em;
  }
  
  .principle-card h3 {
    max-width: 250px;
    margin: 38px 0 17px;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(30px, 2.6vw, 46px);
    font-weight: 600;
    line-height: 0.94;
    letter-spacing: -0.035em;
    text-transform: uppercase;
  }
  
  .principle-card h3 span {
    color: var(--coral);
  }
  
  .principle-card p {
    max-width: 255px;
    margin: 0;
    color: var(--cream-soft);
    font-size: 12px;
    line-height: 1.78;
  }
  
  .principle-plus {
    margin-top: auto;
    align-self: flex-end;
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 20px;
    line-height: 1;
    transition:
      color 0.25s ease,
      transform 0.25s ease;
  }
  
  .principle-card:hover .principle-plus {
    color: var(--coral);
    transform: rotate(90deg);
  }
  
  @media (max-width: 1120px) {
    .working-principles {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .principles-intro {
      grid-column: span 2;
      min-height: 220px;
      border-bottom: 1px solid var(--line);
    }
  
    .principles-copy {
      max-width: 450px;
    }
  
    .principle-card:nth-child(3) {
      border-right: 0;
    }
  
    .principle-card:nth-child(4) {
      grid-column: span 2;
      border-top: 1px solid var(--line);
    }
  }
  
  @media (max-width: 640px) {
    .working-principles {
      grid-template-columns: 1fr;
    }
  
    .principles-intro {
      grid-column: auto;
      min-height: auto;
      padding: 38px 24px 32px;
    }
  
    .principles-copy {
      max-width: 330px;
      margin-top: 28px;
    }
  
    .principle-card {
      min-height: 260px;
      padding: 34px 24px 28px;
      border-right: 0;
      border-top: 1px solid var(--line);
    }
  
    .principle-card:nth-child(3),
    .principle-card:nth-child(4) {
      border-right: 0;
    }
  
    .principle-card:nth-child(4) {
      grid-column: auto;
    }
  
    .principle-card h3 {
      margin-top: 30px;
      font-size: 39px;
    }
  }

  /* Delivery sequence */

.delivery-sequence {
    display: grid;
    grid-template-columns: minmax(250px, 0.95fr) minmax(0, 3.05fr);
    gap: 0;
    background: var(--cream);
    color: var(--blue-dark);
    border-bottom: 1px solid rgba(8, 33, 91, 0.16);
  }
  
  .delivery-intro {
    min-height: 370px;
    padding: 52px 38px 42px;
    border-right: 1px solid rgba(8, 33, 91, 0.16);
    display: flex;
    flex-direction: column;
  }
  
  .section-label-dark {
    color: rgba(8, 33, 91, 0.68);
  }
  
  .section-label-dark span {
    background: var(--blue);
  }
  
  .delivery-intro-copy {
    max-width: 225px;
    margin: 38px 0 0;
    color: rgba(8, 33, 91, 0.82);
    font-size: 15px;
    line-height: 1.7;
  }
  
  .delivery-link {
    display: inline-flex;
    align-items: center;
    gap: 13px;
    width: fit-content;
    margin-top: auto;
    padding-bottom: 7px;
    border-bottom: 1px solid rgba(8, 33, 91, 0.4);
    color: var(--blue-dark);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transition: gap 0.25s ease, border-color 0.25s ease;
  }
  
  .delivery-link:hover {
    gap: 20px;
    border-color: var(--coral);
  }
  
  .delivery-link span {
    color: var(--coral);
    font-size: 16px;
  }
  
  .delivery-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    align-items: stretch;
    padding: 52px 38px 42px;
  }
  
  .delivery-step {
    position: relative;
    min-height: 275px;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
  }
  
  .delivery-step:first-child {
    padding-left: 0;
  }
  
  .delivery-step:last-child {
    padding-right: 0;
  }
  
  .step-top {
    display: flex;
    flex-direction: column;
    gap: 17px;
  }
  
  .step-number {
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 15px;
    letter-spacing: 0.04em;
  }
  
  .step-icon {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(8, 33, 91, 0.42);
    border-radius: 50%;
    color: var(--blue);
    font-family: var(--font-mono);
    font-size: 17px;
    line-height: 1;
    transition: all 0.28s ease;
  }
  
  .delivery-step:hover .step-icon {
    color: var(--cream);
    background: var(--blue);
    border-color: var(--blue);
    transform: translateY(-4px);
  }
  
  .step-line {
    position: absolute;
    top: 62px;
    left: 59px;
    width: calc(100% - 42px);
    height: 1px;
    background: rgba(8, 33, 91, 0.24);
  }
  
  .step-line::after {
    content: "";
    position: absolute;
    right: 0;
    top: -2px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--coral);
  }
  
  .step-line-last {
    display: none;
  }
  
  .delivery-step h3 {
    margin: 29px 0 11px;
    color: var(--blue-dark);
    font-family: var(--font-condensed);
    font-size: 29px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.025em;
    text-transform: uppercase;
  }
  
  .delivery-step p {
    max-width: 170px;
    margin: 0;
    color: rgba(8, 33, 91, 0.76);
    font-size: 12px;
    line-height: 1.72;
  }
  
  @media (max-width: 1120px) {
    .delivery-sequence {
      grid-template-columns: 1fr;
    }
  
    .delivery-intro {
      min-height: 220px;
      border-right: 0;
      border-bottom: 1px solid rgba(8, 33, 91, 0.16);
    }
  
    .delivery-intro-copy {
      max-width: 460px;
      margin-top: 24px;
    }
  
    .delivery-link {
      margin-top: 26px;
    }
  
    .delivery-steps {
      padding-top: 42px;
    }
  }
  
  @media (max-width: 820px) {
    .delivery-steps {
      grid-template-columns: repeat(2, 1fr);
      gap: 0;
      padding: 0;
    }
  
    .delivery-step {
      min-height: 255px;
      padding: 36px 28px;
      border-right: 1px solid rgba(8, 33, 91, 0.16);
      border-bottom: 1px solid rgba(8, 33, 91, 0.16);
    }
  
    .delivery-step:nth-child(2n) {
      border-right: 0;
    }
  
    .delivery-step:last-child {
      border-bottom: 0;
    }
  
    .step-line {
      display: none;
    }
  }
  
  @media (max-width: 560px) {
    .delivery-intro {
      min-height: auto;
      padding: 38px 24px 34px;
    }
  
    .delivery-steps {
      grid-template-columns: 1fr;
    }
  
    .delivery-step,
    .delivery-step:nth-child(2n) {
      min-height: 220px;
      padding: 30px 24px;
      border-right: 0;
    }
  
    .delivery-step h3 {
      margin-top: 24px;
      font-size: 33px;
    }
  
    .delivery-step p {
      max-width: 290px;
    }
  }

  /* Contact CTA */

.contact-cta {
    position: relative;
    overflow: hidden;
    min-height: 345px;
    border-bottom: 1px solid var(--line);
    background:
      radial-gradient(circle at 15% 80%, rgba(255, 116, 92, 0.12), transparent 23%),
      linear-gradient(135deg, #123eaa 0%, #0e348d 100%);
  }
  
  .contact-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image:
      linear-gradient(rgba(244, 241, 232, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  
  .contact-cta-inner {
    position: relative;
    z-index: 2;
    width: min(var(--content-width), calc(100% - 128px));
    min-height: 345px;
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.55fr);
    align-items: center;
    gap: 70px;
  }
  
  .contact-cta-copy h2 {
    max-width: 790px;
    margin: 0;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(48px, 5.5vw, 84px);
    font-weight: 600;
    line-height: 0.9;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }
  
  .contact-cta-copy h2 span {
    color: var(--coral);
  }
  
  .contact-cta-action {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
  }
  
  .contact-cta-button {
    min-width: 285px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 17px 19px 17px 22px;
    border: 1px solid var(--coral);
    color: var(--cream);
    background: rgba(7, 33, 91, 0.18);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
      background 0.25s ease,
      color 0.25s ease,
      transform 0.25s ease;
  }
  
  .contact-cta-button strong {
    color: var(--coral);
    font-size: 20px;
    font-weight: 400;
    line-height: 1;
    transition: transform 0.25s ease;
  }
  
  .contact-cta-button:hover {
    color: var(--blue-dark);
    background: var(--coral);
    transform: translateY(-4px);
  }
  
  .contact-cta-button:hover strong {
    color: var(--blue-dark);
    transform: translateX(5px);
  }
  
  .contact-cta-action p {
    max-width: 310px;
    margin: 0;
    color: var(--cream-soft);
    font-size: 12px;
    line-height: 1.75;
  }
  
  .contact-geometry {
    position: absolute;
    left: clamp(24px, 6vw, 115px);
    bottom: -35px;
    width: 190px;
    height: 190px;
    opacity: 0.7;
  }
  
  .geometry-circle,
  .geometry-line {
    position: absolute;
    display: block;
    border-color: rgba(244, 241, 232, 0.34);
  }
  
  .geometry-circle {
    border: 1px solid rgba(244, 241, 232, 0.3);
    border-radius: 50%;
  }
  
  .geometry-circle-1 {
    width: 146px;
    height: 146px;
    top: 22px;
    left: 18px;
  }
  
  .geometry-circle-2 {
    width: 95px;
    height: 95px;
    top: 46px;
    left: 53px;
  }
  
  .geometry-line {
    height: 1px;
    background: rgba(244, 241, 232, 0.32);
    border: 0;
    transform-origin: left center;
  }
  
  .geometry-line-1 {
    width: 188px;
    top: 91px;
    left: 0;
    transform: rotate(42deg);
  }
  
  .geometry-line-2 {
    width: 170px;
    top: 118px;
    left: 16px;
    transform: rotate(-38deg);
  }
  
  .geometry-line-3 {
    width: 150px;
    top: 82px;
    left: 22px;
    transform: rotate(90deg);
  }
  
  @media (max-width: 1120px) {
    .contact-cta-inner {
      width: min(100% - 80px, var(--content-width));
      grid-template-columns: 1fr;
      gap: 34px;
    }
  
    .contact-cta-action {
      align-items: flex-start;
    }
  }
  
  @media (max-width: 640px) {
    .contact-cta {
      min-height: auto;
    }
  
    .contact-cta-inner {
      width: min(100% - 48px, var(--content-width));
      min-height: auto;
      padding: 58px 0 62px;
      gap: 31px;
    }
  
    .contact-cta-copy h2 {
      font-size: clamp(46px, 13vw, 70px);
      line-height: 0.88;
    }
  
    .contact-cta-button {
      width: 100%;
      min-width: 0;
    }
  
    .contact-geometry {
      left: auto;
      right: -58px;
      bottom: -65px;
      transform: scale(0.8);
    }
  }

  /* Footer */

.site-footer {
    position: relative;
    overflow: hidden;
    background: var(--blue-dark);
    border-top: 1px solid var(--line);
  }
  
  .site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.25;
    background-image:
      linear-gradient(rgba(244, 241, 232, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.08) 1px, transparent 1px);
    background-size: 40px 40px;
  }
  
  .footer-inner,
  .footer-bottom {
    position: relative;
    z-index: 1;
    width: min(var(--content-width), calc(100% - 128px));
    margin: 0 auto;
  }
  
  .footer-inner {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1fr;
    border-left: 1px solid var(--line-soft);
  }
  
  .footer-brand,
  .footer-column {
    min-height: 230px;
    padding: 45px 30px 34px;
    border-right: 1px solid var(--line-soft);
  }
  
  .footer-brand {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .footer-mark {
    display: inline-flex;
    align-items: baseline;
    width: fit-content;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: 47px;
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 1;
  }
  
  .footer-mark i {
    margin: 0 1px;
    color: var(--coral);
    font-style: normal;
  }
  
  .footer-brand p {
    margin: 0;
    color: var(--cream-soft);
    font-family: var(--font-mono);
    font-size: 9px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  
  .footer-label {
    display: block;
    margin-bottom: 10px;
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  
  .footer-column a,
  .footer-column span:not(.footer-label) {
    width: fit-content;
    color: var(--cream-soft);
    font-size: 12px;
    line-height: 1.55;
  }
  
  .footer-column a {
    transition: color 0.22s ease;
  }
  
  .footer-column a:hover {
    color: var(--coral);
  }
  
  .footer-bottom {
    min-height: 64px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--line-soft);
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 8px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }
  
  .footer-bottom > span:last-child {
    justify-self: end;
  }
  
  .back-to-top {
    width: 33px;
    height: 33px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(244, 241, 232, 0.4);
    color: var(--cream);
    background: transparent;
    cursor: pointer;
    font-size: 17px;
    line-height: 1;
    transition:
      background 0.22s ease,
      color 0.22s ease,
      transform 0.22s ease;
  }
  
  .back-to-top:hover {
    color: var(--blue-dark);
    background: var(--cream);
    transform: translateY(-3px);
  }
  
  @media (max-width: 1120px) {
    .footer-inner,
    .footer-bottom {
      width: min(100% - 80px, var(--content-width));
    }
  
    .footer-inner {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-brand,
    .footer-column {
      min-height: 210px;
    }
  
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
      border-top: 1px solid var(--line-soft);
    }
  }
  
  @media (max-width: 640px) {
    .footer-inner,
    .footer-bottom {
      width: min(100% - 48px, var(--content-width));
    }
  
    .footer-inner {
      grid-template-columns: 1fr;
    }
  
    .footer-brand,
    .footer-column {
      min-height: auto;
      padding: 32px 24px;
      border-left: 1px solid var(--line-soft);
      border-right: 1px solid var(--line-soft);
      border-top: 1px solid var(--line-soft);
    }
  
    .footer-brand {
      gap: 35px;
    }
  
    .footer-column:nth-child(3),
    .footer-column:nth-child(4) {
      border-top: 1px solid var(--line-soft);
    }
  
    .footer-bottom {
      min-height: 82px;
      grid-template-columns: 1fr auto;
      font-size: 7px;
    }
  
    .footer-bottom > span:last-child {
      display: none;
    }
  }

  /* Contact modal */

.contact-cta-button {
    cursor: pointer;
    font: inherit;
  }
  
  .contact-modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    place-items: center;
    padding: 28px;
    opacity: 0;
    visibility: hidden;
    transition:
      opacity 0.28s ease,
      visibility 0.28s ease;
  }
  
  .contact-modal.is-open {
    opacity: 1;
    visibility: visible;
  }
  
  .contact-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(3, 14, 47, 0.78);
    backdrop-filter: blur(8px);
  }
  
  .contact-modal-panel {
    position: relative;
    z-index: 1;
    width: min(880px, 100%);
    max-height: min(780px, calc(100vh - 56px));
    overflow-y: auto;
    padding: 56px;
    border: 1px solid rgba(244, 241, 232, 0.45);
    background:
      linear-gradient(rgba(244, 241, 232, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(244, 241, 232, 0.06) 1px, transparent 1px),
      #0e348d;
    background-size: 32px 32px;
    box-shadow: 0 30px 90px rgba(3, 12, 44, 0.52);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.28s ease;
  }
  
  .contact-modal.is-open .contact-modal-panel {
    transform: translateY(0) scale(1);
  }
  
  .contact-modal-close {
    position: absolute;
    top: 18px;
    right: 19px;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    color: var(--cream);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 26px;
    line-height: 1;
    transition:
      color 0.2s ease,
      background 0.2s ease;
  }
  
  .contact-modal-close:hover {
    color: var(--blue-dark);
    background: var(--cream);
  }
  
  .contact-modal-heading {
    max-width: 610px;
    margin-bottom: 42px;
  }
  
  .contact-modal-heading h2 {
    margin: 0;
    color: var(--cream);
    font-family: var(--font-condensed);
    font-size: clamp(48px, 6vw, 78px);
    font-weight: 600;
    line-height: 0.88;
    letter-spacing: -0.05em;
    text-transform: uppercase;
  }
  
  .contact-modal-heading h2 span {
    color: var(--coral);
  }
  
  .contact-modal-heading > p:last-child {
    max-width: 490px;
    margin: 24px 0 0;
    color: var(--cream-soft);
    font-size: 14px;
    line-height: 1.75;
  }
  
  .contact-form {
    display: grid;
    gap: 22px;
  }
  
  .contact-honeypot {
    position: absolute;
    left: -9999px;
    opacity: 0;
    pointer-events: none;
  }
  
  .contact-form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  
  .contact-form label {
    display: grid;
    gap: 8px;
  }
  
  .contact-form label > span {
    color: var(--cream-muted);
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.09em;
    text-transform: uppercase;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    border: 1px solid rgba(244, 241, 232, 0.42);
    border-radius: 0;
    outline: none;
    color: var(--cream);
    background: rgba(4, 24, 76, 0.3);
    font-family: var(--font-main);
    font-size: 14px;
    transition:
      border-color 0.22s ease,
      background 0.22s ease,
      box-shadow 0.22s ease;
  }
  
  .contact-form input {
    min-height: 52px;
    padding: 0 15px;
  }
  
  .contact-form textarea {
    min-height: 142px;
    padding: 14px 15px;
    resize: vertical;
  }
  
  .contact-form input:focus,
  .contact-form textarea:focus {
    border-color: var(--coral);
    background: rgba(4, 24, 76, 0.48);
    box-shadow: 0 0 0 3px rgba(255, 116, 92, 0.1);
  }
  
  .contact-form-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
  
  .contact-form-status {
    margin: 0;
    color: var(--cream-soft);
    font-size: 12px;
    line-height: 1.6;
  }
  
  .contact-submit {
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 15px 16px 15px 20px;
    border: 1px solid var(--coral);
    color: var(--cream);
    background: transparent;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
      color 0.22s ease,
      background 0.22s ease,
      transform 0.22s ease;
  }
  
  .contact-submit strong {
    color: var(--coral);
    font-size: 19px;
    font-weight: 400;
  }
  
  .contact-submit:hover:not(:disabled) {
    color: var(--blue-dark);
    background: var(--coral);
    transform: translateY(-3px);
  }
  
  .contact-submit:hover:not(:disabled) strong {
    color: var(--blue-dark);
  }
  
  .contact-submit:disabled {
    opacity: 0.65;
    cursor: wait;
  }
  
  .contact-form-note {
    margin: -8px 0 0;
    color: var(--cream-muted);
    font-size: 11px;
    line-height: 1.6;
  }
  
  body.modal-open {
    overflow: hidden;
  }
  
  @media (max-width: 640px) {
    .contact-modal {
      padding: 14px;
    }
  
    .contact-modal-panel {
      max-height: calc(100vh - 28px);
      padding: 52px 24px 28px;
    }
  
    .contact-modal-heading {
      margin-bottom: 32px;
    }
  
    .contact-modal-heading h2 {
      font-size: clamp(45px, 14vw, 66px);
    }
  
    .contact-form-grid {
      grid-template-columns: 1fr;
    }
  
    .contact-form-bottom {
      align-items: stretch;
      flex-direction: column;
    }
  
    .contact-submit {
      width: 100%;
    }
  }

/* Header logo image */

.brand-logo {
    display: inline-flex;
    align-items: center;
    width: 360px;
    max-width: 100%;
  }
  
  .brand-logo img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 76px;
    object-fit: contain;
    object-position: left center;
  }
  
  @media (max-width: 1120px) {
    .brand-logo {
      width: 320px;
    }
  
    .brand-logo img {
      max-height: 68px;
    }
  }
  
  @media (max-width: 900px) {
    .brand-logo {
      width: 270px;
    }
  
    .brand-logo img {
      max-height: 58px;
    }
  }
  
  @media (max-width: 560px) {
    .brand-logo {
      width: 205px;
    }
  
    .brand-logo img {
      max-height: 44px;
    }
  }