﻿    :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, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      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; }

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

    .nav-wrap {
      position: fixed;
      inset: 0 0 auto;
      z-index: 50;
      background: rgba(5,11,23,.82);
      border-bottom: 1px solid var(--line);
      backdrop-filter: blur(18px);
    }

    .nav {
      min-height: 74px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      font-weight: 950;
    }

    .brand-badge {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--blue-2), var(--blue) 58%, #061b52);
      box-shadow: 0 0 34px rgba(31,109,255,.42);
      position: relative;
      overflow: hidden;
    }

    .brand-badge::after {
      content: "";
      position: absolute;
      left: 12px;
      right: 9px;
      bottom: 12px;
      height: 18px;
      border-left: 3px solid #fff;
      border-bottom: 3px solid #fff;
      transform: skewX(-18deg);
      opacity: .9;
    }

    .brand span:last-child {
      display: grid;
      line-height: 1.05;
    }

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

    .nav-links {
      display: flex;
      align-items: center;
      gap: clamp(14px, 2.2vw, 30px);
      color: rgba(247,251,255,.82);
      font-size: 14px;
      font-weight: 850;
    }

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

    .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(132px, 10vw, 158px) 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;
    }

    .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; }

    h1 {
      max-width: 900px;
      margin-bottom: 34px;
      font-size: clamp(3.25rem, 6.55vw, 7.25rem);
      line-height: .9;
      letter-spacing: -.05em;
    }

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

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

    .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 {
      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;
    }

    main > section:not(.hero) {
      content-visibility: auto;
      contain-intrinsic-size: 1px 920px;
    }

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

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

    h2 {
      margin-bottom: 0;
      font-size: clamp(2.35rem, 5vw, 5.1rem);
      line-height: .95;
      letter-spacing: -.05em;
    }

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

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

    .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;
    }

    .expert-grid {
      display: grid;
      grid-template-columns: repeat(3, 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.45rem;
      line-height: 1.12;
      letter-spacing: -.02em;
    }

    .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;
    }

    .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(3, 1fr);
      gap: 18px;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: .72fr 1fr;
      gap: 18px;
      align-items: start;
    }

    .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, #123b76);
      box-shadow: 0 24px 70px rgba(7,18,37,.16);
      border: 1px solid rgba(255,255,255,.12);
    }

    .faq-intro h2 {
      margin-bottom: 18px;
      font-size: clamp(2rem, 4vw, 4.2rem);
    }

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

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

    .faq-card {
      min-height: 0;
      padding: 0;
      border-radius: var(--radius);
      background: #fff;
      border: 1px solid var(--dark-line);
      box-shadow: 0 14px 42px rgba(7,18,37,.07);
      overflow: hidden;
    }

    .faq-card summary {
      min-height: 76px;
      padding: 20px 58px 20px 24px;
      font-size: 1.18rem;
      line-height: 1.15;
      letter-spacing: -.02em;
      display: flex;
      gap: 10px;
      align-items: center;
      cursor: pointer;
      list-style: none;
      position: relative;
      color: #071225;
      font-weight: 950;
    }

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

    .faq-card summary::before {
      content: "Q";
      width: 26px;
      height: 26px;
      flex: 0 0 26px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #06101f;
      background: linear-gradient(135deg, var(--gold), #ffe9a0);
      font-size: 13px;
      font-weight: 950;
    }

    .faq-card summary::after {
      content: "+";
      position: absolute;
      right: 22px;
      top: 50%;
      width: 30px;
      height: 30px;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #fff;
      background: linear-gradient(135deg, var(--blue), var(--blue-2));
      transform: translateY(-50%);
      font-size: 1.2rem;
      line-height: 1;
      box-shadow: 0 10px 22px rgba(31,109,255,.18);
    }

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

    .faq-card p {
      margin: 0;
      padding: 0 24px 22px 60px;
      color: #5c6a7a;
    }

    .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.48rem;
      line-height: 1.12;
    }

    .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;
    }

    .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(2.2rem, 4vw, 4.35rem);
      line-height: .98;
    }
    .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-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 {
        max-width: 560px;
        min-height: auto;
      }

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

      .expert-grid,
      .value-grid,
      .faq-grid {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 760px) {
      .nav { min-height: 66px; }
      .nav-links a:not(.btn) { display: none; }
      .nav-links .btn { min-height: 42px; padding: 0 14px; }
      .brand span:last-child { display: none; }
      section { scroll-margin-top: 82px; }
      body::after { display: none; }
      .nav-wrap { backdrop-filter: none; }
      .authority-grid,
      .trade-card {
        backdrop-filter: none;
      }
      .hero {
        padding-top: 112px;
        padding-bottom: 64px;
      }

      h1 {
        font-size: clamp(2.75rem, 13vw, 4.8rem);
        line-height: .94;
      }

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

      .faq-intro {
        position: static;
      }

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

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

    @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,
      .value-card,
      .contact-panel,
      .contact-form {
        padding: 20px;
      }

      .contact {
        padding: 44px 0 72px;
      }

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

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

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

    }
