:root {
      --sh-orange: #f06b23;
      --sh-orange-dark: #d95612;
      --sh-green: #19b36b;
      --sh-lime: #bfff00;
      --sh-ink: #10131a;
      --sh-navy: #24314f;
      --sh-muted: #626978;
      --sh-line: #e5e7ec;
      --sh-paper: #f4f5f7;
      --sh-card: #ffffff;
      --sh-black: #07080b;
      --sh-max: 1370px;
      --sh-radius: 8px;
      --sh-shadow: 0 24px 70px rgba(16, 19, 26, 0.16);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: #fff;
      color: var(--sh-ink);
    }

    .sh-page,
    .sh-page p,
    .sh-page a,
    .sh-page button,
    .sh-page input,
    .sh-page textarea {
      font-family: "Inter", Sans-serif;
    }

    .sh-page {
      overflow: hidden;
      background: #fff;
      color: var(--sh-ink);
    }

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

    .sh-page a {
      color: inherit;
      text-decoration: none;
    }

    .sh-container {
      width: min(100% - 60px, var(--sh-max));
      margin: 0 auto;
    }

    .sh-section {
      padding: 100px 0;
      position: relative;
    }

    .sh-h1,
    .sh-h2,
    .sh-h3,
    .sh-hero-word,
    .sh-year {
      font-family: 'FP_Heavy', arial, sans-serif;
      letter-spacing: 0;
    }

    .sh-h1 {
      max-width: 780px;
      margin: 0;
      color: #fff;
      font-size: clamp(46px, 4.6vw, 70px);
      line-height: 1.03;
      font-weight: 900;
    }

    .sh-h2 {
      max-width: 900px;
      margin: 0 0 18px;
      color: var(--sh-navy);
      font-size: clamp(36px, 4vw, 64px);
      line-height: 1.03;
      font-weight: 900;
    }

    .sh-h3 {
      margin: 0;
      color: var(--sh-ink);
      font-size: 22px;
      line-height: 1.12;
      font-weight: 900;
    }

    .sh-p {
      margin: 0;
      color: var(--sh-muted);
      font-size: 17px;
      line-height: 1.72;
    }

    .sh-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin: 0 0 18px;
      color: var(--sh-orange);
      font-size: 13px;
      font-weight: 900;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .sh-dot {
      position: relative;
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--sh-green);
      box-shadow: 0 0 0 8px rgba(25, 179, 107, 0.14);
      animation: sh-breathe 2.4s ease-in-out infinite;
      flex: 0 0 auto;
    }

    .sh-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 58px;
      padding: 0 28px;
      border: 1px solid transparent;
      border-radius: 999px;
      font-weight: 900;
      font-size: 15px;
      line-height: 1;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
      cursor: pointer;
    }

    .sh-btn:hover {
      transform: translateY(-2px);
    }

    .sh-btn-primary {
      color: #fff;
      background: var(--sh-orange);
      box-shadow: 0 16px 35px rgba(240, 107, 35, 0.34);
    }

    .sh-btn-primary:hover {
      background: #ff7a2e;
      box-shadow: 0 20px 45px rgba(240, 107, 35, 0.44);
    }

    .sh-btn-secondary {
      color: var(--sh-ink);
      background: #fff;
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
    }

    .sh-page .sh-btn-secondary,
    .sh-page .sh-btn-secondary .sh-icon {
      color: var(--sh-ink);
      stroke: currentColor;
    }

    .sh-btn-dark {
      color: #fff;
      background: #121722;
      box-shadow: 0 18px 38px rgba(18, 23, 34, 0.22);
    }

    .sh-icon {
      width: 20px;
      height: 20px;
      stroke-width: 2.4;
    }

    .sh-hero {
      min-height: 760px;
      padding: 250px 0 76px;
      position: relative;
      color: #fff;
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.84) 46%, rgba(5, 5, 5, 0.58) 100%),
        var(--sh-hero-bg) center / cover;
      isolation: isolate;
    }

    .sh-hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 75% 20%, rgba(240, 107, 35, 0.27), transparent 24%),
        radial-gradient(circle at 72% 82%, rgba(25, 179, 107, 0.16), transparent 24%),
        linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
      background-size: auto, auto, 92px 92px, 92px 92px;
      opacity: 0.86;
      z-index: -2;
    }

    .sh-hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.1);
      z-index: -3;
    }

    .sh-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(400px, 0.72fr);
      gap: 52px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .sh-hero-copy {
      max-width: 910px;
    }

    .sh-hero .sh-eyebrow,
    .sh-hero .sh-p {
      color: rgba(255, 255, 255, 0.86);
    }

    .sh-hero .sh-eyebrow {
      color: #fff;
    }

    .sh-hero-lead {
      max-width: 820px;
      margin: 24px 0 0;
      color: rgba(255, 255, 255, 0.84);
      font-size: 20px;
      line-height: 1.68;
    }

    .sh-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin: 34px 0 26px;
    }

    .sh-section-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 34px;
    }

    .sh-section-actions .sh-btn {
      min-height: 52px;
      padding: 0 24px;
    }

    .sh-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .sh-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 40px;
      padding: 0 14px;
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 999px;
      color: #fff;
      background: rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(12px);
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .sh-pill .sh-icon {
      width: 18px;
      height: 18px;
    }

    .sh-hero-word {
      display: inline-block;
      min-width: 10.2ch;
      color: var(--sh-lime);
      text-shadow: 0 0 32px rgba(191, 255, 0, 0.2);
      transform-origin: left center;
      transition:
        opacity 0.44s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.44s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.44s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform, filter;
    }

    .sh-hero-word.is-changing {
      opacity: 0;
      transform: translate3d(0, 18px, 0) scale(0.96);
      filter: blur(8px);
    }

    .sh-build-card {
      position: relative;
      border: 1px solid rgba(255, 255, 255, 0.64);
      border-radius: var(--sh-radius);
      background: rgba(255, 255, 255, 0.9);
      color: var(--sh-ink);
      box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
      overflow: hidden;
      backdrop-filter: blur(16px);
    }

    .sh-build-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      pointer-events: none;
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 42%, rgba(25, 179, 107, 0.22));
      opacity: 0.7;
    }

    .sh-desk-head {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 22px;
      border-bottom: 1px solid rgba(16, 19, 26, 0.08);
      background: rgba(255, 255, 255, 0.86);
    }

    .sh-desk-head strong {
      font-size: 18px;
      font-weight: 900;
    }

    .sh-status {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: #08985a;
      font-size: 13px;
      font-weight: 900;
      white-space: nowrap;
    }

    .sh-status::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: var(--sh-green);
      box-shadow: 0 0 0 8px rgba(25, 179, 107, 0.15);
      animation: sh-breathe 2.2s ease-in-out infinite;
    }

    .sh-task-stream {
      position: relative;
      z-index: 1;
      height: 338px;
      padding: 14px 20px 0;
      background: rgba(249, 246, 243, 0.78);
      overflow: hidden;
    }

    .sh-task-list {
      position: relative;
      height: 304px;
      overflow: hidden;
    }

    .sh-task-row {
      display: grid;
      grid-template-columns: 46px minmax(0, 1fr) auto;
      gap: 14px;
      align-items: center;
      height: 76px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(16, 19, 26, 0.08);
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      transition:
        opacity 0.46s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.46s cubic-bezier(0.22, 1, 0.36, 1);
      will-change: opacity, transform;
    }

    .sh-task-row > div:nth-child(2) {
      min-width: 0;
    }

    .sh-task-list.is-leaving .sh-task-row {
      opacity: 0;
      transform: translate3d(0, -18px, 0) scale(0.985);
    }

    .sh-task-row.is-entering {
      opacity: 0;
      transform: translate3d(0, 18px, 0) scale(0.985);
    }

    .sh-task-icon {
      display: grid;
      place-items: center;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      color: var(--sh-green);
      background: rgba(25, 179, 107, 0.13);
    }

    .sh-task-icon.orange {
      color: var(--sh-orange);
      background: rgba(240, 107, 35, 0.14);
    }

    .sh-task-row strong {
      display: -webkit-box;
      margin: 0 0 4px;
      overflow: hidden;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 900;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 1;
      line-clamp: 1;
      text-overflow: ellipsis;
    }

    .sh-task-row span {
      display: -webkit-box;
      color: var(--sh-muted);
      overflow: hidden;
      font-size: 13px;
      font-weight: 650;
      line-height: 1.35;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      line-clamp: 2;
      text-overflow: ellipsis;
    }

    .sh-badge {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 32px;
      padding: 0 12px;
      border-radius: 999px;
      color: #0a9b5d;
      background: rgba(25, 179, 107, 0.14);
      font-size: 12px;
      font-weight: 900;
      white-space: nowrap;
    }

    .sh-badge.orange {
      color: var(--sh-orange);
      background: rgba(240, 107, 35, 0.14);
    }

    .sh-badge.blue {
      color: #2667df;
      background: rgba(38, 103, 223, 0.12);
    }

    .sh-desk-foot {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      border-top: 1px solid rgba(16, 19, 26, 0.1);
      background: rgba(255, 255, 255, 0.86);
    }

    .sh-desk-foot div {
      padding: 16px;
      border-right: 1px solid rgba(16, 19, 26, 0.08);
    }

    .sh-desk-foot div:last-child {
      border-right: 0;
    }

    .sh-desk-foot strong {
      display: block;
      color: var(--sh-orange);
      font-size: 24px;
      line-height: 1;
      font-weight: 1000;
    }

    .sh-desk-foot span {
      display: block;
      margin-top: 6px;
      color: var(--sh-muted);
      font-size: 12px;
      font-weight: 900;
    }

    .sh-orbit {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 1;
      overflow: hidden;
    }

    .sh-node {
      position: absolute;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--sh-green);
      box-shadow: 0 0 0 8px rgba(25, 179, 107, 0.08), 0 0 24px rgba(25, 179, 107, 0.5);
      opacity: 0.9;
      animation: sh-float 9s ease-in-out infinite;
    }

    .sh-node.orange {
      background: var(--sh-orange);
      box-shadow: 0 0 0 8px rgba(240, 107, 35, 0.08), 0 0 24px rgba(240, 107, 35, 0.5);
    }

    .sh-node:nth-child(1) { top: 18%; right: 9%; animation-delay: -1s; }
    .sh-node:nth-child(2) { top: 42%; right: 36%; animation-delay: -4s; }
    .sh-node:nth-child(3) { top: 76%; right: 14%; animation-delay: -7s; }
    .sh-node:nth-child(4) { top: 68%; left: 7%; animation-delay: -2s; }

    .sh-proof-strip {
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: #080a0f;
      color: #fff;
      overflow: hidden;
    }

    .sh-trust-band {
      padding: 28px 0 32px;
      background: #fff;
      border-bottom: 1px solid rgba(16, 19, 26, 0.08);
    }

    .sh-trust-copy {
      margin: 0 0 20px;
      color: var(--sh-muted);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .sh-trust-grid {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 18px;
      align-items: center;
    }

    .sh-trust-item {
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 92px;
      padding: 14px 18px;
      border: 1px solid rgba(16, 19, 26, 0.08);
      border-radius: var(--sh-radius);
      background: #fff;
      box-shadow: 0 10px 26px rgba(16, 19, 26, 0.04);
    }

    .sh-trust-item img {
      width: 100%;
      max-width: 170px;
      max-height: 54px;
      object-fit: contain;
      filter: saturate(0.95) contrast(1.02);
    }

    .sh-marquee {
      display: flex;
      width: max-content;
      animation: sh-marquee 34s linear infinite;
    }

    .sh-marquee-track {
      display: flex;
      align-items: center;
      gap: 34px;
      padding: 20px 17px;
      white-space: nowrap;
      color: rgba(255, 255, 255, 0.82);
      font-size: 13px;
      font-weight: 900;
      text-transform: uppercase;
    }

    .sh-marquee-track span {
      color: var(--sh-green);
    }

    .sh-human {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
      gap: 58px;
      align-items: center;
    }

    .sh-photo-wrap {
      position: relative;
      border-radius: var(--sh-radius);
      overflow: hidden;
      box-shadow: var(--sh-shadow);
      background: #111;
    }

    .sh-photo-wrap img {
      width: 100%;
      aspect-ratio: 1.06 / 1;
      object-fit: cover;
    }

    .sh-photo-label {
      position: absolute;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 38px;
      padding: 0 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--sh-ink);
      box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
      font-size: 12px;
      font-weight: 900;
      backdrop-filter: blur(10px);
    }

    .sh-photo-label.one { left: 18px; top: 18px; }
    .sh-photo-label.two { right: 18px; top: 40%; }
    .sh-photo-label.three { left: 18px; bottom: 18px; }

    .sh-proof-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 14px;
      margin-top: 28px;
    }

    .sh-mini-card {
      min-height: 124px;
      padding: 20px;
      border: 1px solid var(--sh-line);
      border-radius: var(--sh-radius);
      background: #fff;
      box-shadow: 0 14px 34px rgba(16, 19, 26, 0.06);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .sh-mini-card:hover {
      transform: translateY(-4px);
      border-color: rgba(25, 179, 107, 0.34);
      box-shadow: 0 18px 38px rgba(16, 19, 26, 0.12);
    }

    .sh-mini-card .sh-icon {
      color: var(--sh-orange);
      margin-bottom: 12px;
    }

    .sh-mini-card strong {
      display: block;
      margin-bottom: 8px;
      font-weight: 900;
    }

    .sh-mini-card span {
      color: var(--sh-muted);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }

    .sh-dark {
      color: #fff;
      background: #080a0f;
    }

    .sh-dark .sh-h2,
    .sh-dark .sh-h3 {
      color: #fff;
    }

    .sh-dark .sh-p {
      color: rgba(255, 255, 255, 0.68);
    }

    .sh-timeline {
      position: relative;
      isolation: isolate;
      background:
        radial-gradient(circle at 72% 8%, rgba(240, 107, 35, 0.18), transparent 28%),
        radial-gradient(circle at 18% 72%, rgba(25, 179, 107, 0.12), transparent 28%),
        #080a0f;
    }

    .sh-timeline::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
      background-size: 96px 96px;
      opacity: 0.54;
      z-index: -1;
    }

    .sh-timeline-layout {
      display: grid;
      grid-template-columns: minmax(290px, 0.42fr) minmax(0, 1fr);
      gap: 42px;
      align-items: start;
    }

    .sh-timeline-sticky {
      position: sticky;
      top: 110px;
    }

    .sh-year {
      display: block;
      margin: 24px 0 12px;
      color: var(--sh-lime);
      font-size: clamp(62px, 7vw, 120px);
      line-height: 0.86;
      font-weight: 1000;
      text-shadow: 0 0 35px rgba(191, 255, 0, 0.18);
    }

    .sh-line {
      position: relative;
      height: 4px;
      margin-top: 34px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.12);
      overflow: hidden;
    }

    .sh-line span {
      display: block;
      width: var(--sh-progress, 0%);
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--sh-green), var(--sh-orange));
      transition: width 0.25s ease;
    }

    .sh-timeline-cards {
      display: grid;
      gap: 18px;
    }

    .sh-time-card {
      display: grid;
      grid-template-columns: 120px minmax(0, 1fr) 180px;
      gap: 20px;
      align-items: center;
      min-height: 178px;
      padding: 24px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--sh-radius);
      background: rgba(255, 255, 255, 0.06);
      box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2);
      opacity: 0.54;
      transform: translateY(12px) scale(0.98);
      transition: opacity 0.35s ease, transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
    }

    .sh-time-card.active {
      opacity: 1;
      transform: translateY(0) scale(1);
      border-color: rgba(25, 179, 107, 0.5);
      background: rgba(255, 255, 255, 0.1);
    }

    .sh-time-date {
      color: var(--sh-lime);
      font-size: 30px;
      font-weight: 1000;
    }

    .sh-time-card p {
      margin: 10px 0 0;
      color: rgba(255, 255, 255, 0.68);
      font-size: 15px;
      line-height: 1.65;
      font-weight: 650;
    }

    .sh-time-visual {
      display: grid;
      place-items: center;
      min-height: 126px;
      border-radius: var(--sh-radius);
      color: #fff;
      background:
        radial-gradient(circle at 50% 25%, rgba(25, 179, 107, 0.22), transparent 44%),
        rgba(255, 255, 255, 0.06);
    }

    .sh-time-visual .sh-icon {
      width: 46px;
      height: 46px;
      color: var(--sh-orange);
    }

    .sh-muted-band {
      background: var(--sh-paper);
    }

    .sh-cap-grid {
      display: grid;
      grid-template-columns: repeat(5, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
    }

    .sh-cap-card {
      position: relative;
      min-height: 238px;
      padding: 22px;
      border: 1px solid var(--sh-line);
      border-radius: var(--sh-radius);
      background: #fff;
      box-shadow: 0 14px 34px rgba(16, 19, 26, 0.06);
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .sh-cap-card:hover {
      transform: translateY(-6px);
      border-color: rgba(240, 107, 35, 0.34);
      box-shadow: 0 24px 54px rgba(16, 19, 26, 0.12);
    }

    .sh-cap-card::after {
      content: "";
      position: absolute;
      width: 120px;
      height: 120px;
      right: -52px;
      bottom: -52px;
      border-radius: 50%;
      background: rgba(240, 107, 35, 0.08);
    }

    .sh-cap-card .sh-icon {
      color: var(--sh-green);
      margin-bottom: 22px;
    }

    .sh-cap-number {
      display: block;
      margin-bottom: 12px;
      color: var(--sh-orange);
      font-size: 12px;
      font-weight: 1000;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .sh-workflow {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
    }

    .sh-flow-step {
      position: relative;
      min-height: 168px;
      padding: 20px;
      border: 1px solid var(--sh-line);
      border-radius: var(--sh-radius);
      background: #fff;
    }

    .sh-flow-step::before {
      content: "";
      position: absolute;
      top: 35px;
      right: -14px;
      width: 26px;
      height: 2px;
      background: var(--sh-orange);
      z-index: 1;
    }

    .sh-flow-step:last-child::before {
      display: none;
    }

    .sh-flow-step .sh-icon {
      color: var(--sh-orange);
      margin-bottom: 18px;
    }

    .sh-input-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 34px;
    }

    .sh-input-card {
      display: flex;
      align-items: center;
      gap: 13px;
      min-height: 82px;
      padding: 18px;
      border: 1px solid var(--sh-line);
      border-radius: var(--sh-radius);
      background: #fff;
      font-weight: 900;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .sh-input-card:hover {
      transform: translateY(-3px);
      border-color: rgba(25, 179, 107, 0.36);
      box-shadow: 0 18px 38px rgba(16, 19, 26, 0.1);
    }

    .sh-input-card .sh-icon {
      color: var(--sh-green);
      flex: 0 0 auto;
    }

    .sh-service-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 16px;
      margin-top: 34px;
    }

    .sh-service-card {
      display: flex;
      flex-direction: column;
      min-height: 365px;
      padding: 26px;
      border: 1px solid var(--sh-line);
      border-radius: var(--sh-radius);
      background: #fff;
      box-shadow: 0 18px 45px rgba(16, 19, 26, 0.08);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .sh-service-card.featured {
      border-color: rgba(240, 107, 35, 0.72);
      box-shadow: 0 28px 80px rgba(240, 107, 35, 0.16);
    }

    .sh-service-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 28px 70px rgba(16, 19, 26, 0.13);
    }

    .sh-tag {
      align-self: flex-start;
      min-height: 28px;
      padding: 7px 10px;
      border-radius: 999px;
      color: var(--sh-orange);
      background: rgba(240, 107, 35, 0.1);
      font-size: 12px;
      font-weight: 900;
    }

    .sh-service-card p {
      margin: 14px 0 0;
    }

    .sh-list {
      display: grid;
      gap: 12px;
      padding: 0;
      margin: 24px 0 0;
      list-style: none;
    }

    .sh-list li {
      display: flex;
      gap: 10px;
      color: var(--sh-muted);
      font-size: 14px;
      font-weight: 750;
      line-height: 1.45;
    }

    .sh-list li::before {
      content: "";
      width: 8px;
      height: 8px;
      margin-top: 6px;
      border-radius: 50%;
      background: var(--sh-green);
      box-shadow: 0 0 0 6px rgba(25, 179, 107, 0.11);
      flex: 0 0 auto;
    }

    .sh-portfolio-wall {
      display: grid;
      grid-template-columns: repeat(6, minmax(0, 1fr));
      gap: 12px;
      margin-top: 34px;
    }

    .sh-proof-tile {
      min-height: 96px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: var(--sh-radius);
      background: rgba(255, 255, 255, 0.06);
      color: #fff;
      font-size: 14px;
      font-weight: 900;
      display: flex;
      align-items: flex-end;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .sh-proof-tile:hover {
      transform: translateY(-4px);
      background: rgba(240, 107, 35, 0.2);
    }

    .sh-final {
      background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.72)),
        var(--sh-hero-bg) center / cover;
      color: #fff;
    }

    .sh-final .sh-h2,
    .sh-final .sh-p {
      color: #fff;
    }

    .sh-final-card {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
      gap: 40px;
      align-items: center;
      padding: 44px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: var(--sh-radius);
      background: rgba(255, 255, 255, 0.08);
      backdrop-filter: blur(16px);
    }

    .sh-final-card > * {
      min-width: 0;
    }

    .sh-form-shell {
      width: 100%;
      padding: 24px;
      border-radius: var(--sh-radius);
      background: rgba(255, 255, 255, 0.94);
      color: var(--sh-ink);
    }

    .sh-form-shell strong {
      display: block;
      margin-bottom: 8px;
      font-size: 20px;
      font-weight: 900;
    }

    .sh-form-note {
      color: var(--sh-muted);
      font-size: 14px;
      line-height: 1.55;
      font-weight: 650;
    }

    .sh-fade {
      opacity: 0;
      transform: translate3d(0, 34px, 0) scale(0.985);
      filter: blur(8px);
      transition:
        opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        filter 0.9s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
      will-change: opacity, transform, filter;
    }

    .sh-fade.visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
      filter: blur(0);
    }

    .sh-fade.visible:hover {
      transition:
        transform 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
    }

    @keyframes sh-breathe {
      0%, 100% { transform: scale(1); opacity: 1; }
      50% { transform: scale(1.16); opacity: 0.78; }
    }

    @keyframes sh-float {
      0%, 100% { transform: translate3d(0, 0, 0); }
      50% { transform: translate3d(20px, -22px, 0); }
    }

    @keyframes sh-marquee {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    @media (max-width: 1180px) {
      .sh-hero-grid,
      .sh-human,
      .sh-final-card,
      .sh-timeline-layout {
        grid-template-columns: 1fr;
      }

      .sh-build-card {
        max-width: 680px;
      }

      .sh-timeline-sticky {
        position: relative;
        top: auto;
      }

      .sh-cap-grid,
      .sh-trust-grid,
      .sh-service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .sh-workflow {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .sh-input-grid,
      .sh-portfolio-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .sh-container {
        width: min(100% - 36px, var(--sh-max));
      }

      .sh-section {
        padding: 66px 0;
      }

      .sh-hero {
        min-height: auto;
        padding: 150px 0 58px;
      }

      .sh-h1 {
        font-size: clamp(38px, 10.4vw, 48px);
      }

      .sh-hero-word {
        min-width: 0;
      }

      .sh-h2 {
        font-size: clamp(34px, 10vw, 46px);
      }

      .sh-hero-lead {
        font-size: 17px;
        line-height: 1.58;
      }

      .sh-actions,
      .sh-section-actions,
      .sh-btn {
        width: 100%;
      }

      .sh-task-row {
        grid-template-columns: 38px minmax(0, 1fr) auto;
        gap: 10px;
        height: 68px;
        padding: 10px 0;
      }

      .sh-task-row .sh-badge {
        grid-column: auto;
        justify-self: end;
        min-height: 28px;
        padding: 0 9px;
        font-size: 11px;
      }

      .sh-desk-foot {
        grid-template-columns: repeat(3, minmax(0, 1fr));
      }

      .sh-task-stream {
        height: 282px;
        padding: 10px 18px 0;
      }

      .sh-task-list {
        height: 272px;
      }

      .sh-desk-foot div {
        padding: 12px 10px;
        border-right: 1px solid rgba(16, 19, 26, 0.08);
        border-bottom: 0;
      }

      .sh-desk-foot div:last-child {
        border-right: 0;
      }

      .sh-proof-grid,
      .sh-cap-grid,
      .sh-workflow,
      .sh-trust-grid,
      .sh-input-grid,
      .sh-service-grid,
      .sh-portfolio-wall {
        grid-template-columns: 1fr;
      }

      .sh-trust-item {
        min-height: 84px;
      }

      .sh-flow-step::before {
        left: 30px;
        right: auto;
        top: auto;
        bottom: -14px;
        width: 2px;
        height: 26px;
      }

      .sh-time-card {
        grid-template-columns: 1fr;
      }

      .sh-time-visual {
        min-height: 92px;
      }

      .sh-final-card {
        padding: 26px;
      }

      .sh-photo-label {
        position: static;
        margin: 8px;
      }

    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
      }
    }
