:root {
  --ink: #101b19;
  --muted: #5f6b68;
  --accent: #416edc;
  --paper: #f5f5ef;
  --line: #d8dbd2;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: Arial, Helvetica, sans-serif; }
a { color: inherit; text-decoration: none; }
.shell { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.nav { height: 106px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); }
.logo { width: 188px; height: 58px; object-fit: cover; object-position: left center; filter: invert(1); }
.navLinks { display: flex; align-items: center; gap: 38px; font-size: 14px; font-weight: 600; }
.navLinks > a:not(.navCta) { transition: opacity .2s; }
.navLinks > a:hover { opacity: .65; }
.navCta { border: 1px solid var(--ink); padding: 13px 17px; display: flex; gap: 22px; }

.hero { min-height: 680px; display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 64px; padding-block: 72px 90px; overflow: hidden; }
.eyebrow { text-transform: uppercase; font-size: 11px; letter-spacing: .2em; font-weight: 700; display: flex; gap: 12px; align-items: center; }
.eyebrow > span { width: 25px; height: 2px; background: var(--accent); display: inline-block; }
h1, h2 { margin: 0; font-weight: 500; letter-spacing: -.055em; line-height: .98; }
h1 { font-size: clamp(56px, 6.2vw, 92px); max-width: 760px; }
h1 em, h2 em { font-family: Georgia, serif; font-weight: 400; }
h1 em { display: block; }
.lead { max-width: 560px; margin: 30px 0 0; color: var(--muted); font-size: 19px; line-height: 1.55; }
.heroActions { display: flex; align-items: center; gap: 34px; margin-top: 38px; }
.button { display: inline-flex; align-items: center; justify-content: space-between; gap: 36px; padding: 18px 20px; font-weight: 700; font-size: 14px; transition: transform .2s, background .2s; }
.button:hover { transform: translateY(-2px); }
.primary { background: var(--accent); color: var(--ink); }
.textLink { font-size: 13px; font-weight: 700; display: flex; gap: 18px; border-bottom: 1px solid var(--ink); padding-block: 10px; }

.fintechVisual { position: relative; height: 500px; min-width: 0; }
.orbit { position: absolute; border: 1px solid #cbd0c8; border-radius: 50%; }
.orbitOne { width: 470px; height: 470px; right: -80px; top: 10px; }
.orbitTwo { width: 340px; height: 340px; right: -10px; top: 80px; border-style: dashed; animation: spin 30s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.dataCard { position: absolute; background: #13221f; color: white; box-shadow: 0 35px 80px #1b28222c; }
.mainCard { width: 420px; right: 15px; top: 88px; padding: 30px; transform: rotate(-2deg); }
.cardTop { display: flex; justify-content: space-between; align-items: center; }
.cardLabel { color: #aab4b0; font-size: 11px; text-transform: uppercase; letter-spacing: .1em; }
.live { font-size: 9px; letter-spacing: .08em; color: var(--accent); }
.live i, .statusPill i { display: inline-block; width: 6px; height: 6px; background: var(--accent); border-radius: 50%; margin-right: 6px; box-shadow: 0 0 10px var(--accent); }
.mainCard > strong { display: block; font-size: 32px; margin: 12px 0 24px; letter-spacing: -.03em; }
.chart { height: 145px; display: flex; align-items: flex-end; gap: 10px; border-bottom: 1px solid #ffffff25; background: repeating-linear-gradient(to bottom, transparent 0 35px, #ffffff0d 36px); }
.chart span { flex: 1; background: var(--accent); opacity: .82; min-height: 8px; }
.chartMeta { display: flex; justify-content: space-between; color: #7f8e89; font-size: 8px; margin-top: 10px; }
.floatingCard { left: -15px; top: 280px; padding: 18px 24px; display: flex; align-items: center; gap: 18px; transform: rotate(3deg); }
.floatingCard .miniIcon { background: var(--accent); color: var(--ink); width: 34px; height: 34px; display: grid; place-items: center; }
.floatingCard small, .floatingCard strong { display: block; }
.floatingCard small { color: #8fa09a; margin-bottom: 3px; }
.statusPill { position: absolute; right: 5px; bottom: 37px; background: white; box-shadow: 0 15px 40px #17241e1b; padding: 14px 18px; font-size: 11px; font-weight: 700; }
.statusPill i { background: #416edc; box-shadow: none; }

.signalBar { background: var(--ink); color: white; overflow: hidden; }
.signalTrack { min-height: 72px; display: flex; align-items: center; justify-content: space-around; min-width: 900px; }
.signalTrack span { font-size: 11px; letter-spacing: .18em; font-weight: 700; }
.signalTrack i { color: var(--accent); font-style: normal; margin-left: 38px; }
.section { padding-block: 130px; }
.sectionIntro { display: grid; grid-template-columns: 1fr 1.4fr .7fr; gap: 48px; align-items: start; margin-bottom: 68px; }
h2 { font-size: clamp(40px, 5vw, 68px); }
.sectionIntro > p:last-child { color: var(--muted); line-height: 1.65; margin: 8px 0 0; font-size: 15px; }
.serviceGrid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.serviceCard { min-height: 390px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); position: relative; transition: background .25s, transform .25s; }
.serviceCard:hover { background: white; transform: translateY(-5px); }
.serviceNumber { font: 12px Georgia, serif; font-style: italic; color: #8c9692; }
.serviceIcon { height: 110px; display: flex; gap: 6px; align-items: flex-end; margin-top: 20px; }
.serviceIcon span { display: block; background: var(--ink); width: 12px; }
.serviceIcon span:nth-child(1) { height: 32px; }
.serviceIcon span:nth-child(2) { height: 62px; background: var(--accent); }
.serviceIcon span:nth-child(3) { height: 88px; }
.serviceCard:nth-child(2) .serviceIcon { align-items: center; }
.serviceCard:nth-child(2) .serviceIcon span { height: 58px; border-radius: 50%; width: 58px; background: transparent; border: 1px solid var(--ink); margin-right: -30px; }
.serviceCard:nth-child(2) .serviceIcon span:nth-child(2) { border-color: var(--accent); }
.serviceCard:nth-child(3) .serviceIcon span { height: 14px; width: 80px; transform: rotate(-25deg); margin-right: -53px; }
.serviceCard h3 { font-size: 21px; margin: 28px 0 12px; }
.serviceCard p { max-width: 290px; color: var(--muted); font-size: 14px; line-height: 1.6; }
.cardArrow { position: absolute; right: 28px; bottom: 28px; }

.expertiseSection { background: var(--ink); color: white; padding-block: 120px; }
.expertiseLayout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 120px; }
.eyebrow.light { color: #9ba7a3; }
.expertiseLayout h2 { margin-top: 35px; }
.expertiseLayout h2 em { color: var(--accent); }
.expertiseList { border-top: 1px solid #ffffff26; }
.expertiseList div { display: grid; grid-template-columns: 48px 1fr auto; align-items: center; min-height: 73px; border-bottom: 1px solid #ffffff26; }
.expertiseList span { color: var(--accent); font: italic 12px Georgia, serif; }
.expertiseList strong { font-size: 16px; }
.expertiseList i { font-style: normal; color: #82908b; }

.ctaSection { text-align: center; padding-block: 140px; display: flex; flex-direction: column; align-items: center; }
.ctaSection .eyebrow { justify-content: center; }
.ctaSection h2 { margin-top: 25px; }
.ctaSection > p:not(.eyebrow) { color: var(--muted); max-width: 600px; line-height: 1.7; }
.ctaSection .button { margin-top: 20px; }
footer { background: #0b1412; color: white; }
.footerInner { min-height: 150px; display: flex; align-items: center; justify-content: space-between; }
.footerLogo { width: 150px; height: 56px; object-fit: cover; object-position: left center; }
.footerInner p, .footerInner > span { color: #87928f; font-size: 12px; }
.socialLinks { display: flex; align-items: center; gap: 18px; }
.socialLinks a { display: inline-flex; align-items: center; gap: 8px; color: #b5bfbc; font-size: 12px; transition: color .2s, transform .2s; }
.socialLinks a:hover { color: white; transform: translateY(-2px); }
.socialLinks a:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.socialIcon { width: 28px; height: 28px; display: inline-grid; place-items: center; border: 1px solid #ffffff4a; border-radius: 7px; position: relative; transition: border-color .2s, background .2s; }
.socialLinks a:hover .socialIcon { border-color: var(--accent); background: var(--accent); }
.instagramIcon::before { content: ""; width: 10px; height: 10px; border: 1.5px solid currentColor; border-radius: 50%; }
.instagramIcon::after { content: ""; width: 3px; height: 3px; border-radius: 50%; background: currentColor; position: absolute; top: 6px; right: 6px; }
.linkedinIcon { font: 700 13px Arial, Helvetica, sans-serif; border-radius: 4px; }

@media (max-width: 900px) {
  .navLinks > a:not(.navCta) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 60px; }
  .fintechVisual { height: 430px; }
  .sectionIntro { grid-template-columns: 1fr; }
  .sectionIntro .eyebrow { margin-bottom: -20px; }
  .sectionIntro > p:last-child { max-width: 500px; }
  .expertiseLayout { grid-template-columns: 1fr; gap: 70px; }
}

@media (max-width: 640px) {
  .shell { width: min(100% - 32px, 1180px); }
  .nav { height: 82px; }
  .logo { width: 145px; height: 48px; }
  .navCta { padding: 11px; font-size: 12px; gap: 10px; }
  .hero { gap: 20px; padding-block: 55px 50px; }
  h1 { font-size: 53px; }
  .lead { font-size: 17px; }
  .heroActions { align-items: flex-start; flex-direction: column; }
  .fintechVisual { height: 370px; margin-top: 20px; }
  .orbitOne { width: 360px; height: 360px; right: -110px; }
  .orbitTwo { width: 270px; height: 270px; right: -60px; }
  .mainCard { width: 320px; right: -18px; padding: 22px; }
  .mainCard > strong { font-size: 26px; }
  .chart { height: 115px; gap: 7px; }
  .floatingCard { left: 0; top: 260px; }
  .statusPill { display: none; }
  .signalTrack { justify-content: flex-start; gap: 42px; padding-inline: 20px; }
  .signalTrack i { margin-left: 20px; }
  .section { padding-block: 90px; }
  .serviceGrid { grid-template-columns: 1fr; }
  .serviceCard { min-height: 340px; }
  .expertiseSection { padding-block: 90px; }
  .ctaSection { padding-block: 95px; }
  .footerInner { padding-block: 40px; align-items: flex-start; flex-direction: column; gap: 16px; }
  .footerInner p { margin: 0; }
  .socialLinks { flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .orbitTwo { animation: none; }
}
