   :root {
      --ink: #050b17;
      --navy: #091426;
      --blue: #1f6dff;
      --blue-2: #62c8ff;
      --gold: #f8c64e;
      --green: #37e7a1;
      --red: #ff5c7c;
      --text: #f7fbff;
      --muted: #a9b7c9;
      --paper: #f7faff;
      --line: rgba(255,255,255,.14);
      --dark-line: rgba(9,20,38,.12);
      --radius: 8px;
      --max: 1200px;
      font-family: Inter, "Segoe UI Variable", "Segoe UI", Roboto, Arial, ui-sans-serif, system-ui, sans-serif;
    }

    * { box-sizing: border-box; }
    html {
      max-width: 100%;
      overflow-x: hidden;
      scroll-behavior: smooth;
    }

    body {
      max-width: 100%;
      overflow-x: hidden;
      margin: 0;
      color: var(--text);
      background: var(--ink);
      line-height: 1.55;
      text-rendering: optimizeLegibility;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -2;
      background:
        radial-gradient(circle at 18% 12%, rgba(31,109,255,.30), transparent 28%),
        radial-gradient(circle at 82% 8%, rgba(248,198,78,.14), transparent 24%),
        radial-gradient(circle at 50% 80%, rgba(55,231,161,.10), transparent 34%),
        linear-gradient(180deg, #050b17 0%, #091426 100%);
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      opacity: .18;
      background-image:
        linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
      pointer-events: none;
    }

    a { color: inherit; text-decoration: none; }
    img { max-width: 100%; display: block; }
    button, input, textarea { font: inherit; }
    button { cursor: pointer; }

    .shell {
      width: min(var(--max), calc(100% - 32px));
      max-width: calc(100% - 32px);
      margin: 0 auto;
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      z-index: 50;
      background: rgba(5,11,23,.94);
      border-bottom: 1px solid var(--line);
      box-shadow: 0 16px 45px rgba(0,0,0,.22);
      backdrop-filter: blur(16px);
    }

    .nav {
      min-height: 68px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      min-width: 0;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-weight: 950;
      min-width: 0;
      flex-shrink: 0;
    }

    .brand-logo {
      width: 42px;
      height: 42px;
      flex: 0 0 42px;
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      object-fit: contain;
      object-position: center;
      background: #1f6dff;
      box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 0 28px rgba(31,109,255,.32);
    }

    .brand span:last-child {
      display: grid;
      line-height: 1.05;
      font-size: 1rem;
    }

    .brand small {
      color: var(--muted);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(12px, 1.8vw, 24px);
      min-width: 0;
      color: rgba(247,251,255,.82);
      font-size: 13px;
      font-weight: 850;
    }

    .nav-links button {
      appearance: none;
      border: 0;
      padding: 0;
      color: inherit;
      background: transparent;
      font: inherit;
      font-weight: inherit;
    }

    .nav-links a:hover,
    .nav-links button:hover {
      color: #fff;
    }

    .mobile-menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(248,198,78,.35);
      border-radius: var(--radius);
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      box-shadow: 0 14px 34px rgba(248,198,78,.18);
      place-items: center;
      padding: 10px;
    }

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

    .mobile-menu-toggle span + span {
      margin-top: 4px;
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
      transform: translateY(6px) rotate(45deg);
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
      opacity: 0;
    }

    .mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
      transform: translateY(-6px) rotate(-45deg);
    }

    .btn {
      min-height: 48px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      border-radius: var(--radius);
      border: 1px solid transparent;
      padding: 0 22px;
      font-weight: 950;
      white-space: nowrap;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .btn:hover,
    .panel:hover,
    .expert-card:hover,
    .value-card:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      box-shadow: 0 18px 48px rgba(248,198,78,.22);
    }

    .btn-blue {
      color: #fff;
      background: linear-gradient(135deg, var(--blue-2), var(--blue));
      box-shadow: 0 18px 48px rgba(31,109,255,.26);
    }

    .btn-ghost {
      color: #fff;
      border-color: rgba(255,255,255,.22);
      background: rgba(255,255,255,.07);
    }

    .hero {
      min-height: auto;
      padding: clamp(64px, 7vw, 104px) 0 clamp(66px, 7vw, 96px);
      display: grid;
      align-items: center;
      overflow: visible;
      position: relative;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 460px);
      gap: 34px;
      align-items: center;
      min-width: 0;
    }

    .eyebrow {
      margin: 0 0 16px;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--blue-2);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .16em;
      text-transform: uppercase;
    }

    .eyebrow::before {
      content: "";
      width: 42px;
      height: 1px;
      background: currentColor;
    }

    h1, h2, h3, p {
      margin-top: 0;
      overflow-wrap: break-word;
    }

    h1 {
      max-width: 900px;
      margin-bottom: 34px;
      font-size: clamp(3rem, 6.1vw, 6.7rem);
      line-height: .94;
      letter-spacing: -.035em;
      font-weight: 880;
    }

    .gold-text {
      color: transparent;
      background: linear-gradient(135deg, #fff, #8ed4ff 42%, var(--gold));
      -webkit-background-clip: text;
      background-clip: text;
    }

    .hero-line {
      display: inline;
    }

    .hero-copy {
      max-width: 720px;
      margin-bottom: 28px;
      color: var(--muted);
      font-size: clamp(1.04rem, 1.45vw, 1.24rem);
      overflow-wrap: break-word;
    }

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

    .authority-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(118px, 1fr));
      border: 1px solid var(--line);
      border-radius: var(--radius);
      background: rgba(255,255,255,.07);
      backdrop-filter: blur(18px);
      overflow: hidden;
    }

    .authority {
      min-height: 106px;
      padding: 18px;
      border-right: 1px solid var(--line);
    }

    .authority:last-child { border-right: 0; }

    .authority strong {
      display: block;
      font-size: clamp(1.35rem, 2.2vw, 2rem);
      line-height: 1;
      letter-spacing: -.03em;
    }

    .authority span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 850;
    }

    .profile-stage {
      position: relative;
      min-height: 600px;
      display: grid;
      align-items: end;
    }

    .portrait-shell {
      position: relative;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(255,255,255,.16);
      background: linear-gradient(180deg, rgba(255,255,255,.12), rgba(31,109,255,.08));
      box-shadow: 0 34px 110px rgba(0,0,0,.42);
    }

    .portrait-shell img {
      width: 100%;
      height: 580px;
      object-fit: cover;
      object-position: center top;
      filter: contrast(1.1) saturate(1.06);
    }

    .portrait-shell::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 52%, rgba(5,11,23,.86));
      pointer-events: none;
    }

    .trade-card {
      position: absolute;
      left: -28px;
      right: 28px;
      bottom: 22px;
      z-index: 2;
      padding: 18px;
      border-radius: var(--radius);
      background: rgba(5,11,23,.88);
      border: 1px solid rgba(255,255,255,.16);
      backdrop-filter: blur(18px);
      box-shadow: 0 20px 56px rgba(0,0,0,.34);
    }

    .trade-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 12px;
    }

    .live {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--green);
      font-size: 13px;
      font-weight: 950;
    }

    .live::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 18px var(--green);
    }

    .mini-chart {
      height: 86px;
      border-radius: var(--radius);
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.06) 0 1px, transparent 1px 28px),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      position: relative;
      overflow: hidden;
    }

    .mini-chart svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .trade-card .btn {
      width: 100%;
      margin-top: 12px;
    }

    .ticker {
      max-width: 100%;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(255,255,255,.045);
      overflow: hidden;
    }

    .ticker-track {
      min-height: 58px;
      display: flex;
      align-items: center;
      gap: 34px;
      width: max-content;
      animation: ticker 28s linear infinite;
      color: rgba(247,251,255,.78);
      font-size: 13px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .ticker span { white-space: nowrap; }
    .ticker b { color: var(--gold); }

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

    section {
      padding: clamp(54px, 6.4vw, 88px) 0;
      scroll-margin-top: 96px;
    }

    .light {
      color: #071225;
      background: var(--paper);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, .9fr) minmax(280px, .52fr);
      gap: 32px;
      align-items: start;
      margin-bottom: 36px;
      min-width: 0;
    }

    .compact-head {
      grid-template-columns: minmax(0, .82fr) minmax(280px, .6fr);
      margin-bottom: 24px;
    }

    h2 {
      margin-bottom: 0;
      font-size: clamp(1.9rem, 3.15vw, 3.45rem);
      line-height: 1.03;
      letter-spacing: -.025em;
      font-weight: 820;
    }

    .lead {
      margin-bottom: 0;
      color: #5c6a7a;
      font-size: 1.04rem;
    }

    .story-layout {
      display: grid;
      grid-template-columns: .9fr 1fr;
      gap: 18px;
      align-items: stretch;
      min-width: 0;
    }

    .panel {
      border-radius: var(--radius);
      border: 1px solid var(--dark-line);
      background: #fff;
      box-shadow: 0 18px 56px rgba(7,18,37,.08);
      transition: transform .2s ease;
    }

    .bio-panel {
      padding: clamp(26px, 3.5vw, 44px);
    }

    .bio-panel h2 { margin-bottom: 18px; }
    .bio-panel p { color: #5c6a7a; }

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

    .credential {
      min-height: 230px;
      padding: 25px;
      border-radius: var(--radius);
      color: #071225;
      background: #eef5ff;
      border: 1px solid rgba(7,18,37,.08);
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .credential:nth-child(2) { background: #fff6da; }
    .credential:nth-child(3) { background: #edfdf5; }
    .credential:nth-child(4) { background: #f1f4ff; }

    .credential strong {
      display: block;
      margin-bottom: 14px;
      font-size: 1.65rem;
      letter-spacing: -.03em;
    }

    .credential span {
      color: #5c6a7a;
      font-size: 1rem;
      line-height: 1.62;
      font-weight: 750;
    }

    .proof-section {
      background:
        linear-gradient(180deg, #f7faff 0%, #edf4ff 100%);
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .proof-card {
      min-height: 270px;
      display: flex;
      flex-direction: column;
      padding: 24px;
      border-radius: var(--radius);
      color: #071225;
      background:
        radial-gradient(circle at 88% 14%, rgba(248,198,78,.2), transparent 28%),
        #fff;
      border: 1px solid rgba(7,18,37,.1);
      box-shadow: 0 18px 46px rgba(7,18,37,.08);
      position: relative;
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }

    .proof-card:hover {
      transform: translateY(-2px);
      border-color: rgba(31,109,255,.24);
      box-shadow: 0 24px 58px rgba(7,18,37,.12);
    }

    .proof-card::after {
      content: "";
      position: absolute;
      right: -54px;
      bottom: -54px;
      width: 150px;
      height: 150px;
      border-radius: 50%;
      border: 1px solid rgba(31,109,255,.18);
    }

    .proof-card-blue {
      color: #fff;
      background:
        radial-gradient(circle at 82% 12%, rgba(248,198,78,.24), transparent 34%),
        linear-gradient(145deg, #071225, #123b76);
      border-color: rgba(255,255,255,.12);
    }

    .proof-icon {
      width: 50px;
      height: 50px;
      min-width: 50px;
      max-width: 50px;
      flex: 0 0 50px;
      display: grid;
      place-items: center;
      border-radius: 16px;
      color: var(--blue);
      background: linear-gradient(135deg, #eef5ff, #fff6da);
      border: 1px solid rgba(31,109,255,.14);
      position: relative;
      z-index: 1;
    }

    .proof-card-blue .proof-icon {
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      border-color: rgba(255,255,255,.22);
    }

    .proof-icon-upwork {
      color: #fff;
      background: #14a800;
      border-color: rgba(255,255,255,.28);
    }

    .proof-icon svg {
      width: 24px !important;
      height: 24px !important;
      min-width: 24px;
      min-height: 24px;
      max-width: 24px;
      max-height: 24px;
      display: block;
      flex: 0 0 24px;
      fill: currentColor;
      stroke: currentColor;
      overflow: visible;
    }

    .proof-icon svg path {
      vector-effect: non-scaling-stroke;
    }

    .upwork-logo {
      display: grid;
      place-items: center;
      width: 100%;
      height: 100%;
      color: inherit;
      font-family: Arial, sans-serif;
      font-size: 18px;
      font-weight: 900;
      letter-spacing: -.08em;
      line-height: 1;
      transform: translateY(-1px);
    }

    .proof-card small,
    .proof-card strong,
    .proof-card p {
      position: relative;
      z-index: 1;
    }

    .proof-card small {
      margin-top: 22px;
      color: var(--blue);
      font-size: 12px;
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
    }

    .proof-card-blue small { color: var(--gold); }

    .proof-card strong {
      display: block;
      margin: 8px 0 12px;
      font-size: 1.35rem;
      line-height: 1.1;
      letter-spacing: -.02em;
    }

    .proof-card p {
      margin: 0;
      color: #5c6a7a;
      font-size: .95rem;
      line-height: 1.58;
    }

    .proof-card-blue p { color: rgba(247,251,255,.76); }

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

    .expert-card {
      min-height: 0;
      padding: 28px;
      border-radius: var(--radius);
      color: #071225;
      background: #fff;
      border: 1px solid var(--dark-line);
      box-shadow: 0 18px 56px rgba(7,18,37,.08);
      transition: transform .2s ease;
      position: relative;
      overflow: hidden;
    }

    .point-list {
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 11px;
    }

    .point-list li {
      display: grid;
      grid-template-columns: 28px 1fr;
      gap: 10px;
      align-items: start;
      color: #526173;
      font-size: 14px;
      font-weight: 800;
    }

    .point-icon {
      width: 24px;
      height: 24px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      position: relative;
    }

    .point-icon::before {
      content: "";
      width: 7px;
      height: 7px;
      border-top: 2px solid currentColor;
      border-right: 2px solid currentColor;
      transform: rotate(45deg);
      margin-left: -2px;
    }

    .expert-card::after {
      content: "";
      position: absolute;
      right: -48px;
      bottom: -48px;
      width: 170px;
      height: 170px;
      border-radius: 50%;
      border: 1px solid rgba(31,109,255,.18);
    }

    .expert-icon {
      width: 58px;
      height: 58px;
      display: inline-grid;
      place-items: center;
      border-radius: 18px;
      color: var(--blue);
      background: linear-gradient(135deg, #eef5ff, #fff6da);
      border: 1px solid rgba(31,109,255,.14);
    }

    .expert-icon svg {
      width: 28px;
      height: 28px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .expert-card h3 {
      margin: 24px 0 12px;
      font-size: 1.32rem;
      line-height: 1.18;
      letter-spacing: -.01em;
      font-weight: 820;
    }

    .expert-card p { color: #5c6a7a; }

    .list {
      margin: 22px 0 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 10px;
    }

    .list li {
      display: flex;
      gap: 10px;
      color: #526173;
      font-size: 14px;
      font-weight: 800;
      align-items: flex-start;
    }

    .list li::before {
      content: "";
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      margin-top: 2px;
      border-radius: 50%;
      background:
        linear-gradient(135deg, var(--blue), var(--blue-2));
      box-shadow: inset 0 0 0 5px rgba(255,255,255,.0);
      clip-path: circle(50%);
    }

    .strategy {
      background:
        radial-gradient(circle at 80% 18%, rgba(248,198,78,.12), transparent 28%),
        linear-gradient(180deg, #071225, #050b17);
    }

    .strategy-grid {
      display: grid;
      grid-template-columns: .9fr 1fr;
      gap: 24px;
      align-items: center;
      min-width: 0;
    }

    .terminal {
      min-height: 500px;
      padding: 22px;
      border-radius: 22px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,.07);
      box-shadow: 0 34px 100px rgba(0,0,0,.32);
    }

    .terminal-bar {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 18px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 900;
    }

    .big-chart {
      height: 286px;
      border-radius: var(--radius);
      background:
        repeating-linear-gradient(0deg, rgba(255,255,255,.07) 0 1px, transparent 1px 50px),
        repeating-linear-gradient(90deg, rgba(255,255,255,.05) 0 1px, transparent 1px 72px),
        linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
      position: relative;
      overflow: hidden;
    }

    .big-chart svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
    }

    .terminal-stats {
      margin-top: 16px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
    }

    .terminal-stats div {
      padding: 16px;
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.07);
    }

    .terminal-stats strong {
      display: block;
      margin-bottom: 6px;
      font-size: 1.32rem;
    }

    .terminal-stats span {
      display: inline-flex;
      width: fit-content;
      margin-top: 2px;
      padding: 4px 8px;
      border-radius: 999px;
      color: #06101f;
      background: #ffffff;
      font-size: 12px;
      font-weight: 950;
      line-height: 1.2;
      text-shadow: none;
    }

    .strategy-copy h2 { margin-bottom: 18px; }
    .strategy-copy p { color: var(--muted); }

    .strategy-action {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 26px;
    }

    .strategy-action .btn {
      min-width: min(100%, 260px);
    }

    .warning {
      margin-top: 20px;
      padding: 16px;
      border-radius: var(--radius);
      color: rgba(247,251,255,.78);
      background: rgba(248,198,78,.10);
      border: 1px solid rgba(248,198,78,.22);
      font-size: 13px;
      font-weight: 800;
    }

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

    .faq-grid {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 22px;
      align-items: start;
      min-width: 0;
    }

    .faq-intro {
      position: sticky;
      top: 98px;
      padding: clamp(26px, 3.6vw, 40px);
      border-radius: var(--radius);
      color: #fff;
      background:
        radial-gradient(circle at 82% 18%, rgba(248,198,78,.18), transparent 34%),
        linear-gradient(145deg, #071225, #0d2d5e 58%, #123b76);
      box-shadow: 0 24px 70px rgba(7,18,37,.16);
      border: 1px solid rgba(255,255,255,.12);
      overflow: hidden;
    }

    .faq-intro h2 {
      margin-bottom: 18px;
      font-size: clamp(1.9rem, 3vw, 3.15rem);
      line-height: 1.04;
    }

    .faq-intro p {
      color: rgba(247,251,255,.78);
      margin-bottom: 0;
    }

    .faq-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 22px;
    }

    .faq-proof span {
      min-height: 34px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      padding: 0 12px;
      color: #071225;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      font-size: 12px;
      font-weight: 950;
      white-space: nowrap;
    }

    .faq-list {
      display: grid;
      gap: 10px;
    }

    .faq-card {
      min-height: 0;
      padding: 0;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid rgba(7,18,37,.10);
      box-shadow: 0 10px 28px rgba(7,18,37,.045);
      overflow: hidden;
      transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
      position: relative;
    }

    .faq-card[open] {
      border-color: rgba(31,109,255,.18);
      background:
        linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
      box-shadow: 0 18px 46px rgba(7,18,37,.08);
    }

    .faq-card[open]::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 3px;
      background: linear-gradient(180deg, var(--blue-2), var(--gold));
    }

    .faq-card summary {
      min-height: 62px;
      padding: 16px 62px 16px 22px;
      font-size: 1rem;
      line-height: 1.32;
      letter-spacing: 0;
      display: grid;
      grid-template-columns: 34px 1fr;
      gap: 14px;
      align-items: center;
      cursor: pointer;
      list-style: none;
      position: relative;
      color: #071225;
      font-weight: 650;
      outline: none;
    }

    .faq-card summary:focus-visible {
      box-shadow: inset 0 0 0 3px rgba(31,109,255,.24);
    }

    .faq-card summary::-webkit-details-marker { display: none; }

    .faq-card summary::before {
      content: "";
      width: 32px;
      height: 32px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background:
        #fff4d1
        url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2218%22 height=%2218%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%231f6dff%22 stroke-width=%222.4%22 stroke-linecap=%22round%22 stroke-linejoin=%22round%22%3E%3Cpath d=%22M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z%22/%3E%3Cpath d=%22M8 9h8M8 13h5%22/%3E%3C/svg%3E")
        center / 18px 18px no-repeat;
      border: 1px solid rgba(248,198,78,.36);
    }

    .faq-card summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: var(--blue);
      background: #eef5ff;
      transform: translateY(-50%);
      font-size: 1.05rem;
      font-weight: 780;
      line-height: 1;
      box-shadow: none;
    }

    .faq-card[open] summary::after {
      content: "-";
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      color: #06101f;
    }

    .faq-card p {
      margin: 0;
      padding: 0 28px 22px 68px;
      color: #5c6a7a;
      font-size: .98rem;
      line-height: 1.7;
      max-width: 860px;
      position: relative;
    }

    .faq-card p::before {
      content: "";
      position: absolute;
      left: 21px;
      top: 10px;
      bottom: 28px;
      width: 1px;
      background: linear-gradient(180deg, rgba(31,109,255,.20), rgba(248,198,78,.32));
    }

    .value-card {
      min-height: 270px;
      padding: 26px;
      border-radius: var(--radius);
      color: #fff;
      background: linear-gradient(145deg, #071225, #123b76);
      box-shadow: 0 20px 60px rgba(7,18,37,.14);
      transition: transform .2s ease;
      position: relative;
      overflow: hidden;
    }

    .value-card:nth-child(2) { background: linear-gradient(145deg, #0b203d, #1457d9); }
    .value-card:nth-child(3) { background: linear-gradient(145deg, #171d30, #31506f); }

    .value-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, rgba(98,200,255,.18), transparent 56%);
      pointer-events: none;
    }

    .value-card > * { position: relative; z-index: 1; }

    .value-card small {
      color: var(--gold);
      font-weight: 950;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .value-card h3 {
      margin: 16px 0 12px;
      font-size: 1.34rem;
      line-height: 1.18;
      font-weight: 820;
    }

    .value-card p { color: rgba(247,251,255,.76); }

    .contact {
      color: #fff;
      background: linear-gradient(180deg, #091426, #050b17);
      padding: clamp(48px, 5.8vw, 78px) 0;
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, .95fr) minmax(340px, .72fr);
      gap: 20px;
      align-items: start;
      min-width: 0;
    }

    .contact-panel,
    .contact-form {
      border-radius: var(--radius);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.07);
      box-shadow: 0 30px 90px rgba(0,0,0,.28);
    }

    .contact-panel { padding: clamp(24px, 3vw, 34px); }
    .contact-panel h2 {
      margin-bottom: 16px;
      font-size: clamp(1.9rem, 3vw, 3.2rem);
      line-height: 1.04;
    }
    .contact-panel p { color: var(--muted); }

    .contact-links {
      display: grid;
      gap: 10px;
      margin: 22px 0;
    }

    .contact-links a,
    .contact-links span {
      min-height: 48px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: 12px 14px;
      border-radius: var(--radius);
      background: rgba(255,255,255,.07);
      border: 1px solid var(--line);
      color: rgba(247,251,255,.88);
      font-weight: 850;
    }

    .contact-links a {
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .contact-links a:hover {
      transform: translateY(-1px);
      border-color: rgba(98,200,255,.36);
      background: rgba(255,255,255,.10);
    }

    .contact-symbol {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
    }

    .contact-symbol svg {
      width: 18px;
      height: 18px;
      display: block;
      fill: currentColor;
      stroke: currentColor;
    }

    .contact-symbol-upwork {
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
    }

    .contact-symbol .upwork-logo {
      font-size: 14px;
    }

    .contact-label {
      flex: 1;
      min-width: 0;
    }

    .contact-label small {
      display: block;
      margin-top: 2px;
      color: rgba(247,251,255,.58);
      font-size: 12px;
      font-weight: 800;
      overflow-wrap: anywhere;
    }

    .contact-form {
      padding: 20px;
      display: grid;
      gap: 10px;
      align-content: start;
    }

    .field {
      width: 100%;
      height: 50px;
      min-height: 0;
      border-radius: var(--radius);
      border: 1px solid rgba(255,255,255,.16);
      background: rgba(255,255,255,.09);
      color: #fff;
      padding: 0 14px;
      outline: none;
      line-height: 50px;
    }

    textarea.field {
      height: 118px;
      min-height: 118px;
      padding-top: 12px;
      line-height: 1.45;
      resize: vertical;
    }

    .field::placeholder { color: rgba(247,251,255,.56); }

    .field:focus {
      border-color: var(--blue-2);
      box-shadow: 0 0 0 4px rgba(98,200,255,.15);
    }

    .contact-form .btn:disabled {
      cursor: wait;
      opacity: .72;
      transform: none;
    }

    .form-note {
      display: grid;
      grid-template-columns: 42px 1fr;
      gap: 12px;
      align-items: center;
      margin-top: 4px;
      padding: 14px;
      border-radius: var(--radius);
      color: rgba(247,251,255,.92);
      background: linear-gradient(135deg, rgba(55,231,161,.16), rgba(98,200,255,.08));
      border: 1px solid rgba(55,231,161,.34);
      box-shadow: 0 16px 40px rgba(0,0,0,.18);
    }

    .form-note[hidden] { display: none; }

    .form-note-icon {
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #06101f;
      background: linear-gradient(135deg, var(--green), #c7ffe9);
    }

    .form-note-icon svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 3;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .form-note strong,
    .form-note small {
      display: block;
    }

    .form-note strong {
      margin-bottom: 3px;
      font-size: .98rem;
      line-height: 1.25;
    }

    .form-note small {
      color: rgba(247,251,255,.68);
      font-size: .82rem;
      line-height: 1.45;
      font-weight: 750;
    }

    .form-note.is-error {
      background: linear-gradient(135deg, rgba(255,92,124,.16), rgba(248,198,78,.08));
      border-color: rgba(255,92,124,.34);
    }

    .form-note.is-error .form-note-icon {
      background: linear-gradient(135deg, var(--red), #ffd4de);
    }

    .footer {
      padding: 26px 0 78px;
      color: rgba(247,251,255,.64);
      background: #050b17;
      border-top: 1px solid var(--line);
    }

    .footer-grid {
      display: block;
      max-width: 780px;
    }

    .footer-contact {
      margin-top: 22px;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 10px;
    }

    .footer-contact a {
      min-height: 64px;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px;
      border-radius: var(--radius);
      color: rgba(247,251,255,.9);
      background: rgba(255,255,255,.06);
      border: 1px solid var(--line);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .footer-contact a:hover {
      transform: translateY(-1px);
      border-color: rgba(98,200,255,.36);
      background: rgba(255,255,255,.10);
    }

    .disclaimer {
      width: min(var(--max), calc(100% - 32px));
      margin: 16px auto 0;
      padding-top: 14px;
      border-top: 1px solid var(--line);
      color: rgba(247,251,255,.58);
      font-size: 13px;
      line-height: 1.6;
    }

    @media (max-width: 1040px) {
      .hero-grid,
      .story-layout,
      .strategy-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .profile-stage {
        width: 100%;
        max-width: 560px;
        min-height: auto;
        margin-inline: auto;
      }

      .portrait-shell img {
        height: 520px;
      }

      .trade-card {
        left: 18px;
        right: 18px;
      }

      .expert-grid,
      .value-grid,
      .proof-grid,
      .faq-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .faq-grid,
      .story-layout,
      .strategy-grid,
      .contact-grid {
        grid-template-columns: 1fr;
      }

      .footer-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 760px) {
      .shell {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
      }

      .nav-wrap {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        background: #050b17;
        box-shadow: 0 12px 30px rgba(0,0,0,.32);
      }

      body {
        padding-top: 58px;
      }

      .nav {
        min-height: 58px;
        gap: 12px;
        display: flex;
        position: relative;
        justify-content: space-between;
      }
      .nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 16px;
        right: 16px;
        z-index: 70;
        display: none;
        width: auto;
        margin-left: 0;
        padding: 12px;
        border: 1px solid var(--line);
        border-radius: var(--radius);
        background: rgba(5,11,23,.98);
        box-shadow: 0 22px 60px rgba(0,0,0,.36);
        color: rgba(247,251,255,.9);
        backdrop-filter: blur(16px);
      }

      .nav-links.is-open {
        display: grid;
        gap: 8px;
      }

      .nav-links a:not(.btn),
      .nav-links button:not(.btn) {
        min-height: 42px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        border-radius: var(--radius);
        padding: 0 12px;
        background: rgba(255,255,255,.06);
        border: 1px solid rgba(255,255,255,.10);
      }
      .nav-links .btn {
        width: 100%;
        min-height: 44px;
        padding: 0 14px;
        font-size: 13px;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .mobile-menu-toggle {
        display: grid;
      }

      .brand span:last-child { display: none; }
      .brand-logo {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
      }
      section { scroll-margin-top: 74px; }
      body::after { display: none; }
      .nav-wrap { backdrop-filter: none; }
      .authority-grid,
      .trade-card {
        backdrop-filter: none;
      }
      .hero {
        padding-top: 46px;
        padding-bottom: 48px;
      }

      .hero-grid,
      .hero-grid > div,
      .hero-copy,
      .hero-actions,
      .authority-grid {
        width: 100%;
        max-width: 100%;
      }

      .hero-grid {
        display: block;
        overflow: hidden;
      }

      .hero-copy {
        overflow-wrap: anywhere;
      }

      .hero-actions .btn {
        max-width: 100%;
      }

      h1 {
        max-width: 100%;
        margin-bottom: 22px;
        font-size: clamp(2.28rem, 9.8vw, 3.55rem);
        line-height: 1.05;
      }

      .hero-line {
        display: block;
      }

      h2 {
        font-size: clamp(1.65rem, 6.8vw, 2.55rem);
        line-height: 1.08;
      }

      .hero-copy,
      .lead,
      .bio-panel p,
      .strategy-copy p,
      .contact-panel p {
        max-width: 100%;
        font-size: 1rem;
        line-height: 1.65;
      }

      .panel,
      .bio-panel,
      .credential,
      .expert-card,
      .proof-card,
      .value-card,
      .faq-card,
      .contact-panel,
      .contact-form {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: break-word;
      }

      .authority-grid,
      .credential-grid,
      .expert-grid,
      .value-grid,
      .section-head,
      .compact-head,
      .terminal-stats,
      .proof-grid,
      .footer-contact {
        grid-template-columns: 1fr;
      }

      .faq-intro {
        position: static;
      }

      .contact-panel h2,
      .faq-intro h2,
      .bio-panel h2,
      .strategy-copy h2 {
        font-size: clamp(1.55rem, 6vw, 2.2rem);
        line-height: 1.08;
      }

      .faq-card summary {
        min-height: 60px;
        padding: 14px 52px 14px 15px;
        grid-template-columns: 28px 1fr;
        gap: 10px;
        font-size: .94rem;
        line-height: 1.28;
        font-weight: 560;
      }

      .faq-card summary::before {
        width: 28px;
        height: 28px;
        background-size: 16px 16px;
      }

      .faq-card summary::after {
        right: 16px;
        width: 28px;
        height: 28px;
        font-size: 1rem;
      }

      .faq-card p {
        padding: 0 18px 20px 53px;
        font-size: .94rem;
        line-height: 1.66;
      }

      .faq-card p::before {
        left: 30px;
      }

      .authority {
        border-right: 0;
        border-bottom: 1px solid var(--line);
      }

      .authority:last-child { border-bottom: 0; }
      .portrait-shell img { height: 500px; }
    }

    @media (max-width: 420px) {
      .shell {
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
      }

      .nav {
        min-height: 56px;
      }

      body {
        padding-top: 56px;
      }

      .brand-logo {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
      }

      .nav-links {
        left: 14px;
        right: 14px;
      }

      .hero {
        padding-top: 40px;
        padding-bottom: 42px;
      }

      .hero-grid,
      .hero-grid > div,
      .hero-copy,
      .hero-actions,
      .authority-grid,
      h1 {
        max-width: 100%;
      }

      .eyebrow {
        gap: 8px;
        font-size: 10px;
        letter-spacing: .14em;
      }

      .eyebrow::before {
        width: 28px;
      }

      h1 {
        font-size: clamp(2.16rem, 9.7vw, 3.05rem);
        line-height: 1.04;
      }

      .hero-copy {
        margin-bottom: 22px;
      }

      .hero-actions {
        gap: 10px;
        margin-bottom: 22px;
      }

      .btn {
        min-height: 46px;
        padding: 0 16px;
        font-size: 14px;
      }

      section {
        padding: 42px 0;
        scroll-margin-top: 78px;
      }

      .authority {
        min-height: auto;
        padding: 16px;
      }

      .authority strong {
        font-size: 1.6rem;
      }

      .bio-panel,
      .credential-grid,
      .expert-card,
      .proof-card,
      .value-card,
      .contact-panel,
      .contact-form {
        padding: 18px;
      }

      .credential {
        min-height: auto;
        padding: 20px;
      }

      .credential strong {
        margin-bottom: 10px;
        font-size: 1.42rem;
        line-height: 1.12;
      }

      .credential span {
        font-size: .95rem;
        line-height: 1.55;
        font-weight: 720;
      }

      .expert-card,
      .proof-card,
      .value-card {
        min-height: auto;
      }

      .expert-card h3,
      .value-card h3,
      .proof-card strong {
        font-size: 1.12rem;
      }
    }

    @media (max-width: 560px) {
      .hero-actions,
      .contact-panel .hero-actions {
        display: grid;
      }

      .btn,
      .contact-form .btn {
        width: 100%;
      }

      .trade-card {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: -84px;
      }

      .bio-panel,
      .credential-grid,
      .expert-card,
      .proof-card,
      .value-card,
      .contact-panel,
      .contact-form {
        padding: 20px;
      }

      .proof-card {
        min-height: auto;
      }

      .proof-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        max-width: 46px;
        flex-basis: 46px;
      }

      .proof-icon svg {
        width: 22px !important;
        height: 22px !important;
        min-width: 22px;
        min-height: 22px;
        max-width: 22px;
        max-height: 22px;
      }

      .proof-card small {
        margin-top: 16px;
      }

      .contact {
        padding: 40px 0 64px;
      }

      .contact-links {
        margin: 18px 0;
      }

      .contact-panel h2 {
        font-size: clamp(1.65rem, 6.8vw, 2.3rem);
      }

      .field {
        height: 48px;
        line-height: 48px;
      }

      textarea.field {
        height: 110px;
        min-height: 110px;
        line-height: 1.45;
      }

    }

    /* Final mobile hero polish for upload package */
    @media (max-width: 760px) {
      .hero {
        padding: 54px 0 44px;
        overflow: hidden;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
        align-items: start;
        width: 100%;
        max-width: 100%;
        padding-left: 14px;
        padding-right: 14px;
      }

      .hero-grid > div,
      .hero-copy,
      .hero-actions,
      .authority-grid,
      .profile-stage {
        width: 100%;
        max-width: 100%;
        min-width: 0;
      }

      h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(2.45rem, 10.4vw, 3.75rem);
        line-height: 1.03;
        letter-spacing: -.035em;
        text-wrap: balance;
      }

      .hero-line {
        display: block;
      }

      .hero-copy {
        font-size: clamp(1rem, 4.4vw, 1.18rem);
        line-height: 1.62;
        overflow-wrap: break-word;
      }

      .hero-actions {
        display: grid;
        gap: 10px;
      }

      .hero-actions .btn {
        width: 100%;
        min-height: 50px;
        white-space: normal;
        text-align: center;
      }

      .profile-stage {
        max-width: 480px;
        margin: 0 auto;
      }

      .portrait-shell {
        border-radius: 24px;
      }

      .portrait-shell img {
        height: auto;
        aspect-ratio: 4 / 5;
        object-fit: cover;
        object-position: center top;
      }
    }

    @media (max-width: 420px) {
      .hero {
        padding: 46px 0 38px;
      }

      .hero-grid {
        gap: 30px;
        padding-left: 14px;
        padding-right: 14px;
      }

      h1 {
        font-size: clamp(2.18rem, 9.8vw, 3rem);
        line-height: 1.05;
      }

      .hero-copy {
        font-size: 1rem;
      }

      .authority {
        padding: 16px 18px;
      }

      .trade-card {
        margin-top: -72px;
      }
    }

    /* Final cross-section alignment polish */
    .hero-grid,
    .story-layout,
    .strategy-grid,
    .contact-grid,
    .faq-grid,
    .section-head,
    .compact-head,
    .credential-grid,
    .proof-grid,
    .expert-grid,
    .value-grid,
    .terminal-stats,
    .footer-contact {
      align-items: start;
    }

    .profile-stage {
      align-items: start;
    }

    /* Final hero headline scale polish */
    h1 {
      font-size: clamp(3.6rem, 5.25vw, 5.85rem);
      line-height: .98;
      letter-spacing: -.035em;
      max-width: 820px;
      text-wrap: balance;
    }

    .hero-line {
      display: block;
    }

    @media (min-width: 1400px) {
      h1 {
        font-size: clamp(4.1rem, 5vw, 6.15rem);
        max-width: 900px;
      }
    }

    @media (max-width: 1180px) {
      h1 {
        font-size: clamp(3.05rem, 6.4vw, 4.65rem);
        max-width: 720px;
        line-height: 1.02;
      }
    }

    @media (max-width: 900px) {
      h1 {
        font-size: clamp(2.65rem, 8.4vw, 4rem);
        max-width: 100%;
      }
    }

    @media (max-width: 520px) {
      h1 {
        font-size: clamp(2.18rem, 10.2vw, 3.05rem);
        line-height: 1.05;
      }
    }
