﻿:root {
      color-scheme: light;
      --ink: #17212b;
      --muted: #5b6673;
      --line: #d9e0e7;
      --paper: #f7f9fb;
      --white: #ffffff;
      --brand: #c9342f;
      --brand-strong: #a4211f;
      --teal: #087f8c;
      --gold: #c08a2c;
      --graphite: #202934;
      --shadow: 0 18px 50px rgba(23, 33, 43, .14);
      font-family: Arial, Helvetica, sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--paper);
      color: var(--ink);
      line-height: 1.55;
    }

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

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

    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      background: rgba(255, 255, 255, .94);
      border-bottom: 1px solid rgba(217, 224, 231, .86);
      backdrop-filter: blur(12px);
    }

    .nav {
      width: min(1160px, calc(100% - 40px));
      min-height: 70px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      letter-spacing: 0;
      color: var(--graphite);
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: linear-gradient(135deg, var(--brand), var(--teal));
      color: var(--white);
      font-weight: 900;
    }

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

    .nav-links a:hover {
      color: var(--brand);
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 44px;
      padding: 0 18px;
      border-radius: 8px;
      background: var(--brand);
      color: var(--white);
      font-weight: 800;
      box-shadow: 0 10px 22px rgba(201, 52, 47, .22);
      transition: transform .18s ease, background .18s ease;
    }

    .button:hover {
      background: var(--brand-strong);
      transform: translateY(-1px);
    }

    .button.secondary {
      background: var(--white);
      color: var(--graphite);
      border: 1px solid var(--line);
      box-shadow: none;
    }

    .hero {
      min-height: 480px;
      display: grid;
      align-items: center;
      background:
        linear-gradient(90deg, rgba(21, 29, 38, .94) 0%, rgba(21, 29, 38, .78) 43%, rgba(21, 29, 38, .12) 100%),
        url("softwin-hero.png") center / cover no-repeat;
      color: var(--white);
    }

    .hero-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      padding: 40px 0 30px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 10px;
      border-radius: 6px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #f3d7d5;
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0;
    }

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

    h1 {
      max-width: 760px;
      margin-bottom: 22px;
      font-size: 46px;
      line-height: 1.02;
      letter-spacing: 0;
    }

    .hero p {
      max-width: 650px;
      color: rgba(255, 255, 255, .84);
      font-size: 18px;
    }

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

    .hero-metrics {
      width: min(1160px, calc(100% - 40px));
      margin: -36px auto 0;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 1px;
      background: var(--line);
      border: 1px solid var(--line);
      position: relative;
      z-index: 2;
      box-shadow: var(--shadow);
    }

    .metric {
      min-height: 138px;
      padding: 22px;
      background: var(--white);
    }

    .metric strong {
      display: block;
      font-size: 25px;
      line-height: 1.1;
      color: var(--graphite);
      margin-bottom: 10px;
    }

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

    .metric a {
      color: var(--brand);
    }

    .metric a:hover {
      color: var(--brand-strong);
    }

    section {
      padding: 82px 0;
    }

    .wrap {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
    }

    .section-head {
      max-width: 780px;
      margin-bottom: 34px;
    }

    .section-head h2 {
      margin-bottom: 14px;
      font-size: 42px;
      line-height: 1.08;
      letter-spacing: 0;
    }

    .section-head p {
      color: var(--muted);
      font-size: 18px;
    }

    .projects {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 18px;
    }

    .project {
      min-height: 330px;
      padding: 26px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: var(--white);
      box-shadow: 0 10px 26px rgba(23, 33, 43, .06);
    }

    .project-top {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 16px;
      min-height: 48px;
      margin-bottom: 22px;
    }

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

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

    .tag {
      padding: 5px 8px;
      border-radius: 6px;
      background: #eef3f6;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .project h3 {
      margin-bottom: 10px;
      font-size: 21px;
      line-height: 1.2;
    }

    .project p {
      color: var(--muted);
      margin-bottom: 16px;
    }

    .project ul {
      margin: 0;
      padding-left: 18px;
      color: #3f4a56;
      font-size: 15px;
    }

    .project li + li {
      margin-top: 6px;
    }

    .band {
      background: var(--graphite);
      color: var(--white);
    }

    .band .section-head p {
      color: rgba(255, 255, 255, .72);
    }

    .workflow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1px;
      background: rgba(255, 255, 255, .18);
      border: 1px solid rgba(255, 255, 255, .18);
    }

    .step {
      min-height: 210px;
      padding: 26px;
      background: rgba(255, 255, 255, .06);
    }

    .step span {
      color: #f3b7b4;
      font-weight: 900;
      font-size: 13px;
    }

    .step h3 {
      margin: 16px 0 10px;
      font-size: 20px;
    }

    .step p {
      margin-bottom: 0;
      color: rgba(255, 255, 255, .72);
      font-size: 15px;
    }

    .split {
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 44px;
      align-items: start;
    }

    .feature-list {
      display: grid;
      gap: 14px;
    }

    .feature {
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 14px;
      padding: 18px 0;
      border-bottom: 1px solid var(--line);
    }

    .feature:last-child {
      border-bottom: 0;
    }

    .check {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      border-radius: 8px;
      background: rgba(8, 127, 140, .1);
      color: var(--teal);
      font-weight: 900;
    }

    .feature h3 {
      margin-bottom: 5px;
      font-size: 18px;
    }

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

    .panel {
      padding: 34px;
      border-radius: 8px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .panel h2 {
      font-size: 34px;
      line-height: 1.12;
      margin-bottom: 16px;
    }

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

    .cta {
      padding: 62px 0;
      background: linear-gradient(135deg, var(--brand), #7f2528 58%, var(--teal));
      color: var(--white);
    }

    .cta-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      display: grid;
      grid-template-columns: .9fr 1.1fr;
      gap: 28px;
      align-items: start;
    }

    .cta h2 {
      max-width: 740px;
      margin-bottom: 14px;
      font-size: 40px;
      line-height: 1.1;
    }

    .cta p {
      max-width: 560px;
      margin-bottom: 0;
      color: rgba(255, 255, 255, .82);
      font-size: 18px;
    }

    .contact-list {
      display: grid;
      gap: 12px;
    }

    .contact-item {
      min-height: 82px;
      padding: 18px;
      border-radius: 8px;
      background: rgba(255, 255, 255, .12);
      border: 1px solid rgba(255, 255, 255, .24);
    }

    .contact-item strong {
      display: block;
      margin-bottom: 4px;
      color: rgba(255, 255, 255, .72);
      font-size: 13px;
      text-transform: uppercase;
    }

    .contact-item a,
    .contact-item span {
      color: var(--white);
      font-size: 18px;
      font-weight: 800;
    }

    .contact-item a:hover {
      text-decoration: underline;
    }

    .footer {
      padding: 30px 0;
      background: #121820;
      color: rgba(255, 255, 255, .72);
      font-size: 14px;
    }

    .footer-inner {
      width: min(1160px, calc(100% - 40px));
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 940px) {
      .nav {
        min-height: auto;
        padding: 14px 0;
        align-items: flex-start;
        flex-direction: column;
      }

      .nav-links {
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
      }

      .hero {
        min-height: 460px;
        background-position: 60% center;
      }

      .hero-inner {
        padding-top: 78px;
      }

      .hero-metrics,
      .projects,
      .workflow,
      .split {
        grid-template-columns: 1fr 1fr;
      }

      .cta-inner {
        align-items: flex-start;
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 640px) {
      .nav,
      .wrap,
      .hero-inner,
      .hero-metrics,
      .cta-inner,
      .footer-inner {
        width: min(100% - 28px, 1160px);
      }

      .nav-links {
        gap: 16px;
        font-size: 13px;
      }

      h1 {
        font-size: 36px;
      }

      .section-head h2,
      .cta h2 {
        font-size: 32px;
      }

      section {
        padding: 58px 0;
      }

      .hero-metrics,
      .projects,
      .workflow,
      .split,
      .metric,
      .step,
      .project {
        min-height: auto;
      }

      .panel {
        padding: 24px;
      }
    }
