:root {
  --ink: #071018;
  --ink-2: #0e1c27;
  --paper: #f7fafb;
  --muted: #6a7884;
  --line: rgba(7, 16, 24, 0.12);
  --cyan: #13c8ff;
  --teal: #14d6ba;
  --amber: #ffb84d;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(5, 13, 20, 0.18);
  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(--ink);
  background: var(--paper);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(5, 12, 18, 0.92);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  overflow: hidden;
  background: #031627;
  border-radius: 8px;
  box-shadow: 0 0 20px rgba(19, 200, 255, 0.24);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 3vw, 34px);
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--white);
}

.text-link {
  color: #007fa5;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: #04556c;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border: 0;
  border-radius: 8px;
  padding: 0 20px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.24);
  color: var(--white);
  white-space: nowrap;
}

.button.primary {
  background: linear-gradient(135deg, var(--cyan), var(--teal));
  color: #031018;
  box-shadow: 0 18px 44px rgba(19, 200, 255, 0.24);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 8, 13, 0.96) 0%, rgba(2, 8, 13, 0.82) 42%, rgba(2, 8, 13, 0.36) 78%),
    linear-gradient(0deg, rgba(2, 8, 13, 0.72), rgba(2, 8, 13, 0.02) 44%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.48fr);
  align-items: center;
  gap: clamp(34px, 7vw, 92px);
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  padding-top: 82px;
}

.hero-content {
  width: min(760px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

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

h1 {
  max-width: 760px;
  margin-bottom: 20px;
  font-size: clamp(48px, 5.2vw, 74px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 560px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 620px;
}

.hero-proof span {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.hero-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: clamp(22px, 2.7vw, 30px);
  background:
    linear-gradient(180deg, rgba(5, 16, 25, 0.86), rgba(5, 16, 25, 0.68)),
    radial-gradient(circle at 100% 0%, rgba(19, 200, 255, 0.14), transparent 36%);
  box-shadow: 0 26px 74px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(22px);
}

.panel-kicker {
  margin-bottom: 14px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 360px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(28px, 2.7vw, 38px);
  line-height: 1.05;
}

.hero-panel dl {
  display: grid;
  gap: 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel dl div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-panel dl div:last-child {
  border-bottom: 0;
}

.hero-panel dt {
  color: var(--teal);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-panel dd {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 750;
  line-height: 1.45;
}

.section,
.band,
.advantage,
.cta-section {
  padding: clamp(70px, 10vw, 118px) 0;
}

.home-services {
  padding: clamp(56px, 7vw, 86px) 0;
  background: #f6fafb;
}

.home-section-head {
  display: grid;
  max-width: 780px;
  margin-bottom: 34px;
  gap: 14px;
}

.home-section-head h2 {
  max-width: 720px;
  font-size: clamp(34px, 3.8vw, 52px);
  line-height: 1.06;
}

.home-section-head p {
  max-width: 650px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.home-service-grid .service-card {
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 90% 0%, rgba(19, 200, 255, 0.12), transparent 34%);
}

.home-operating {
  padding: clamp(64px, 8vw, 98px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 16%, rgba(19, 200, 255, 0.18), transparent 30%),
    linear-gradient(135deg, #06111b, #0c2633);
}

.home-operating-head {
  max-width: 840px;
  margin-bottom: 34px;
}

.home-operating-head h2 {
  font-size: clamp(34px, 4vw, 56px);
}

.home-operating-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
}

.home-operating-grid article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  min-height: 210px;
  padding: clamp(22px, 3vw, 32px);
  background: rgba(3, 18, 29, 0.9);
}

.home-operating-grid span {
  color: var(--teal);
  font-weight: 900;
}

.home-operating-grid h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.home-operating-grid p {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.7;
}

.home-proof-strip {
  padding: clamp(42px, 6vw, 70px) 0;
  background: var(--white);
}

.home-logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #071018;
  color: var(--white);
}

.home-logo-row span {
  display: grid;
  min-height: 92px;
  place-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 900;
}

.home-logo-row span:last-child {
  border-right: 0;
}

.section-inner {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.intro {
  background: var(--white);
}

.credibility-band {
  padding: 0 0 clamp(42px, 7vw, 78px);
  background: var(--white);
}

.homepage-proof {
  padding-top: clamp(42px, 7vw, 78px);
}

.credibility-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #071018;
  color: var(--white);
  box-shadow: var(--shadow);
}

.credibility-grid div {
  min-height: 118px;
  padding: 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.credibility-grid div:last-child {
  border-right: 0;
}

.credibility-grid strong,
.credibility-grid span {
  display: block;
}

.credibility-grid strong {
  margin-bottom: 10px;
  font-size: 19px;
}

.credibility-grid span {
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.55;
}

.intro-grid,
.advantage-grid,
.cta-grid,
.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.04;
  letter-spacing: 0;
}

.intro-grid > p,
.section-heading.split > p,
.cta-grid > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0;
}

.contact-details a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 8px;
  padding: 0 14px;
  background: #eefaff;
  color: #006f91;
  font-size: 14px;
  font-weight: 850;
}

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

.address-grid address {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: #f9fbfc;
  color: var(--muted);
  font-style: normal;
  line-height: 1.55;
}

.address-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

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

.service-card,
.process-grid article {
  min-height: 280px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.06);
}

.service-icon {
  display: grid;
  width: 46px;
  height: 46px;
  margin-bottom: 42px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 200, 255, 0.14), rgba(20, 214, 186, 0.08)),
    #f3fbfd;
  color: #007ea5;
  box-shadow: inset 0 0 0 1px rgba(0, 127, 165, 0.08);
}

.service-card h3,
.advantage-list h3,
.process-grid h3 {
  margin-bottom: 12px;
  font-size: 21px;
  line-height: 1.2;
}

.service-card p,
.advantage-list p,
.process-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.industries-section {
  background: var(--white);
}

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

.industry-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, #ffffff, #f4f9fb);
}

.industry-grid span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  background: #e8f9ff;
  color: #007ea5;
  font-size: 13px;
  font-weight: 950;
}

.industry-grid h3 {
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.2;
}

.industry-grid p {
  color: var(--muted);
  line-height: 1.65;
}

.advantage {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 18%, rgba(19, 200, 255, 0.22), transparent 32%),
    linear-gradient(135deg, #061019, #0d1a23 54%, #071018);
}

.visual-panel {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 72px);
  box-shadow: var(--shadow);
}

.signal-ring {
  position: absolute;
  inset: 68px 68px auto auto;
  width: 250px;
  aspect-ratio: 1;
  border: 34px solid rgba(19, 200, 255, 0.15);
  border-top-color: var(--cyan);
  border-right-color: var(--amber);
  border-radius: 50%;
  animation: rotate 18s linear infinite;
}

.chart-bars {
  position: absolute;
  inset: auto 38px 38px 38px;
  display: flex;
  align-items: end;
  gap: 16px;
  height: 230px;
}

.chart-bars span {
  flex: 1;
  min-width: 26px;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(180deg, var(--cyan), var(--teal));
  box-shadow: 0 0 30px rgba(19, 200, 255, 0.25);
}

.advantage-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.advantage-list > div {
  padding: 22px 0 22px 24px;
  border-left: 3px solid var(--cyan);
}

.advantage-list p {
  color: rgba(255, 255, 255, 0.68);
}

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

.proof-section {
  background:
    linear-gradient(180deg, #f7fafb 0%, #ffffff 48%, #f2f7f9 100%);
}

.client-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 22px;
}

.arbitrage-explainer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.arbitrage-explainer article {
  min-height: 245px;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 8px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(238, 250, 255, 0.86));
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.06);
}

.arbitrage-explainer span {
  display: grid;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  place-items: center;
  border-radius: 8px;
  background: #071018;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 950;
}

.arbitrage-explainer h3 {
  margin-bottom: 12px;
  font-size: 23px;
  line-height: 1.2;
}

.arbitrage-explainer p {
  color: var(--muted);
  line-height: 1.65;
}

.client-strip span {
  display: grid;
  min-height: 74px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 900;
  box-shadow: 0 12px 32px rgba(8, 22, 33, 0.05);
}

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

.case-card {
  min-height: 270px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.06);
}

.featured-case {
  grid-column: span 2;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 18%, rgba(19, 200, 255, 0.24), transparent 36%),
    linear-gradient(135deg, #071018, #102431);
}

.case-label {
  margin-bottom: 18px;
  color: #0086aa;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-case .case-label {
  color: var(--teal);
}

.case-card h3 {
  margin-bottom: 14px;
  font-size: 24px;
  line-height: 1.18;
}

.case-card p,
.case-card li {
  color: var(--muted);
  line-height: 1.65;
}

.featured-case p,
.featured-case li {
  color: rgba(255, 255, 255, 0.72);
}

.case-card ul {
  display: grid;
  gap: 9px;
  margin: 22px 0 0;
  padding-left: 18px;
}

.team-proof {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
  margin: clamp(46px, 7vw, 76px) 0 24px;
  border-top: 1px solid var(--line);
  padding-top: clamp(38px, 6vw, 62px);
}

.team-proof p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

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

.review-grid figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: #f9fbfc;
}

.review-grid blockquote {
  margin: 0 0 20px;
  color: var(--ink-2);
  font-size: 18px;
  font-weight: 750;
  line-height: 1.55;
}

.review-grid figcaption {
  color: #0086aa;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.process-grid article {
  min-height: 250px;
}

.process-grid span {
  display: inline-flex;
  margin-bottom: 26px;
  color: #0086aa;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.cta-section {
  background: var(--white);
}

.trust-section {
  padding: clamp(70px, 10vw, 118px) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(20, 214, 186, 0.16), transparent 34%),
    linear-gradient(135deg, #071018, #102431);
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
}

.trust-grid > div > p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 18px;
  line-height: 1.75;
}

.trust-grid .button {
  margin-top: 20px;
}

.trust-list {
  display: grid;
  gap: 16px;
}

.trust-list article {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(18px);
}

.trust-list span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.trust-list h3 {
  margin-bottom: 10px;
  font-size: 23px;
}

.trust-list p {
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.65;
}

.faq-section {
  background:
    linear-gradient(180deg, #f7fafb, #ffffff);
}

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

.faq-grid details {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 24px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.05);
}

.faq-grid summary {
  cursor: pointer;
  color: var(--ink-2);
  font-size: 19px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-grid p {
  margin: 16px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: #071018;
  color: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255, 255, 255, 0.72);
  background: #050b10;
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.footer-grid a {
  color: var(--cyan);
  font-weight: 800;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px 20px;
}

.legal-body {
  background: var(--paper);
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px clamp(18px, 4vw, 58px);
  color: var(--white);
  background: rgba(5, 12, 18, 0.96);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.legal-header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 750;
}

.legal-header nav a:hover,
.legal-header nav a:focus-visible {
  color: var(--white);
}

.legal-hero {
  padding: clamp(70px, 10vw, 118px) 0 clamp(42px, 6vw, 70px);
  color: var(--white);
  background:
    radial-gradient(circle at 80% 16%, rgba(19, 200, 255, 0.2), transparent 32%),
    linear-gradient(135deg, #071018, #102431);
}

.legal-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  font-size: clamp(42px, 6vw, 72px);
}

.legal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 19px;
  line-height: 1.7;
}

.legal-content {
  padding: clamp(46px, 7vw, 82px) 0;
}

.legal-grid {
  display: grid;
  grid-template-columns: minmax(180px, 0.35fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 78px);
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
}

.legal-toc a {
  color: #006f91;
  font-weight: 800;
}

.legal-card {
  display: grid;
  gap: 24px;
}

.legal-card section {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.05);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3vw, 38px);
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-note {
  border-left: 4px solid var(--cyan);
  padding: 16px 18px;
  background: #eefaff;
  color: #0b5368;
  font-weight: 750;
}

.page-lead {
  max-width: 840px;
}

.detail-heading h2 {
  max-width: 760px;
  font-size: clamp(34px, 3.6vw, 48px);
  line-height: 1.08;
}

.detail-section {
  padding: clamp(52px, 7vw, 86px) 0;
}

.detail-section.alt {
  background: #eef5f7;
}

.arbitrage-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(19, 200, 255, 0.12), transparent 30%),
    #eef5f7;
}

.arbitrage-header {
  display: grid;
  max-width: 760px;
  margin-bottom: 30px;
  gap: 12px;
}

.arbitrage-header h2 {
  font-size: clamp(34px, 3.8vw, 50px);
  line-height: 1.08;
}

.arbitrage-header p {
  max-width: 680px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  border: 1px solid rgba(7, 16, 24, 0.12);
  border-radius: 8px;
  padding: clamp(22px, 3vw, 32px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.05);
}

.detail-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(19, 200, 255, 0.14), rgba(20, 214, 186, 0.08)),
    #f3fbfd;
  color: #007ca0;
  box-shadow: inset 0 0 0 1px rgba(0, 127, 165, 0.08);
}

.service-icon::before,
.detail-icon::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: currentColor;
  mask: var(--icon) center / contain no-repeat;
}

.icon-search {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.4-3.4'/%3E%3C/svg%3E");
}

.icon-target {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Ccircle cx='12' cy='12' r='5'/%3E%3Ccircle cx='12' cy='12' r='1.5'/%3E%3C/svg%3E");
}

.icon-window {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='4' y='5' width='16' height='14' rx='2'/%3E%3Cpath d='M4 9h16M9 19V9'/%3E%3C/svg%3E");
}

.icon-link {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M10 13a5 5 0 0 0 7.1.1l2-2a5 5 0 0 0-7.1-7.1l-1.1 1.1'/%3E%3Cpath d='M14 11a5 5 0 0 0-7.1-.1l-2 2a5 5 0 0 0 7.1 7.1l1.1-1.1'/%3E%3C/svg%3E");
}

.icon-bars {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 20V10M12 20V4M19 20v-7'/%3E%3C/svg%3E");
}

.icon-globe {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='M3 12h18M12 3a14 14 0 0 1 0 18M12 3a14 14 0 0 0 0 18'/%3E%3C/svg%3E");
}

.icon-trend {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 17 10 11l4 4 6-8'/%3E%3Cpath d='M14 7h6v6'/%3E%3C/svg%3E");
}

.icon-funnel {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 5h16l-6 7v5l-4 2v-7L4 5Z'/%3E%3C/svg%3E");
}

.icon-diamond {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h12l4 6-10 12L2 9l4-6Z'/%3E%3Cpath d='M2 9h20M8 3l4 18 4-18'/%3E%3C/svg%3E");
}

.icon-headset {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 13a8 8 0 0 1 16 0'/%3E%3Cpath d='M4 13v4a2 2 0 0 0 2 2h2v-8H6a2 2 0 0 0-2 2ZM20 13v4a2 2 0 0 1-2 2h-2v-8h2a2 2 0 0 1 2 2Z'/%3E%3Cpath d='M14 20h-4'/%3E%3C/svg%3E");
}

.icon-store {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10h16l-2-6H6l-2 6Z'/%3E%3Cpath d='M5 10v10h14V10M9 20v-6h6v6'/%3E%3C/svg%3E");
}

.icon-sparkle {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l1.8 5.2L19 10l-5.2 1.8L12 17l-1.8-5.2L5 10l5.2-1.8L12 3Z'/%3E%3Cpath d='M19 15l.8 2.2L22 18l-2.2.8L19 21l-.8-2.2L16 18l2.2-.8L19 15Z'/%3E%3C/svg%3E");
}

.icon-badge {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='8' r='5'/%3E%3Cpath d='M8.5 12.5 7 21l5-3 5 3-1.5-8.5'/%3E%3C/svg%3E");
}

.icon-cycle {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 7h-6a6 6 0 0 0-5.7 4.1'/%3E%3Cpath d='M17 4l3 3-3 3'/%3E%3Cpath d='M4 17h6a6 6 0 0 0 5.7-4.1'/%3E%3Cpath d='M7 20l-3-3 3-3'/%3E%3C/svg%3E");
}

.icon-shield {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 6v6c0 5-3.4 8-8 9-4.6-1-8-4-8-9V6l8-3Z'/%3E%3Cpath d='m8.5 12 2.2 2.2L15.8 9'/%3E%3C/svg%3E");
}

.icon-report {
  --icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 3h9l3 3v15H6V3Z'/%3E%3Cpath d='M14 3v4h4M9 14h6M9 18h6M9 10h2'/%3E%3C/svg%3E");
}

.detail-card h2,
.detail-card h3 {
  font-size: clamp(21px, 2.2vw, 28px);
}

.detail-card p,
.detail-card li,
.detail-list li {
  color: var(--muted);
  line-height: 1.7;
}

.detail-card ul,
.detail-list {
  margin: 0;
  padding-left: 20px;
}

.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}

.detail-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.detail-column {
  padding: clamp(22px, 3vw, 32px);
  border-right: 1px solid var(--line);
}

.detail-column:last-child {
  border-right: 0;
}

.detail-column h2,
.detail-column h3 {
  margin-bottom: 18px;
  font-size: 20px;
}

.detail-column ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  color: #203641;
  list-style: none;
}

.pillar-band {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(19, 200, 255, 0.18), transparent 28%),
    linear-gradient(135deg, #272338, #443853);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 4vw, 54px);
}

.pillar-card {
  display: grid;
  gap: 18px;
}

.pillar-symbol {
  color: #9d5cff;
  font-size: 42px;
  line-height: 1;
}

.pillar-card h3 {
  font-size: 20px;
  text-transform: uppercase;
}

.pillar-card p {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.7;
}

.wide-card {
  grid-column: span 2;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.65fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
}

.contact-panel {
  display: grid;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: clamp(22px, 4vw, 34px);
  background: var(--white);
  box-shadow: 0 18px 46px rgba(8, 22, 33, 0.05);
}

.contact-panel address {
  color: var(--muted);
  font-style: normal;
  line-height: 1.75;
}

.form-note {
  margin: -4px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav,
  .nav-cta {
    display: none;
  }

  .menu-button {
    display: block;
  }

  .site-header.is-open .nav {
    position: absolute;
    inset: 78px 18px auto;
    display: grid;
    gap: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(5, 12, 18, 0.98);
  }

  .site-header.is-open .nav a {
    padding: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    min-height: 920px;
    align-items: start;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 118px;
  }

  .hero-panel {
    max-width: 620px;
  }

  .service-grid,
  .home-service-grid,
  .industry-grid,
  .process-grid,
  .case-grid,
  .review-grid,
  .arbitrage-explainer,
  .faq-grid,
  .detail-grid,
  .detail-columns,
  .arbitrage-grid,
  .home-operating-grid,
  .pillar-grid,
  .contact-page-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-logo-row {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-logo-row span:nth-child(3n) {
    border-right: 0;
  }

  .detail-column:nth-child(2n) {
    border-right: 0;
  }

  .detail-column:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

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

  .credibility-grid {
    grid-template-columns: 1fr;
  }

  .credibility-grid div {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .intro-grid,
  .advantage-grid,
  .cta-grid,
  .section-heading.split,
  .team-proof,
  .trust-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small {
    display: none;
  }

  .hero {
    min-height: 720px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 8, 13, 0.95), rgba(2, 8, 13, 0.76)),
      linear-gradient(0deg, rgba(2, 8, 13, 0.84), rgba(2, 8, 13, 0.18));
  }

  .hero-shell {
    width: min(100% - 36px, 560px);
    padding-top: 104px;
  }

  h1 {
    font-size: 45px;
    line-height: 0.98;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    display: none;
  }

  .service-grid,
  .home-service-grid,
  .industry-grid,
  .process-grid,
  .case-grid,
  .review-grid,
  .client-strip,
  .arbitrage-explainer,
  .faq-grid,
  .detail-grid,
  .detail-columns,
  .arbitrage-grid,
  .home-operating-grid,
  .pillar-grid,
  .contact-page-grid {
    grid-template-columns: 1fr;
  }

  .home-services {
    padding-top: 48px;
  }

  .home-section-head {
    margin-bottom: 24px;
  }

  .home-section-head h2,
  .home-operating-head h2 {
    font-size: 36px;
    line-height: 1.1;
  }

  .home-operating-grid article {
    min-height: auto;
  }

  .home-logo-row {
    grid-template-columns: 1fr;
  }

  .home-logo-row span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .home-logo-row span:last-child {
    border-bottom: 0;
  }

  .detail-column {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .detail-column:first-child {
    border-top: 0;
  }

  .wide-card {
    grid-column: auto;
  }

  .featured-case {
    grid-column: auto;
  }

  .visual-panel {
    min-height: 360px;
  }

  .signal-ring {
    inset: 44px 32px auto auto;
    width: 180px;
    border-width: 24px;
  }

  .chart-bars {
    gap: 9px;
    height: 170px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-details,
  .contact-details a {
    width: 100%;
  }

  .address-grid {
    grid-template-columns: 1fr;
  }
}
