:root {
  --bg: #06060a;
  --bg-soft: #11111a;
  --ink: #f5f3ff;
  --muted: #afadc9;
  --line: rgba(237, 235, 244, 0.14);
  --panel: rgba(237, 235, 244, 0.08);
  --panel-strong: rgba(237, 235, 244, 0.14);
  --primary: #edeaf8;
  --accent: #c52c20;
  --accent-soft: #ff6b5f;
  --blue: #6f8fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 78% 16%, rgba(197, 44, 32, 0.22), transparent 28%),
    radial-gradient(circle at 20% 8%, rgba(111, 143, 255, 0.22), transparent 26%),
    linear-gradient(180deg, #06060a 0%, #101019 48%, #06060a 100%);
}

a {
  color: inherit;
}

.site-header {
  width: min(1180px, calc(100% - 32px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 54px;
  height: 54px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(110, 207, 255, 0.32));
}

.brand strong {
  font-size: 17px;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

nav a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

nav a:hover {
  color: var(--ink);
}

.hero {
  width: min(1180px, calc(100% - 32px));
  min-height: calc(100vh - 78px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  align-items: center;
  gap: 50px;
  padding: 42px 0 82px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent-soft);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

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

h1 {
  max-width: 760px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  font-size: 19px;
  line-height: 1.25;
}

.lead {
  max-width: 660px;
  margin-top: 24px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.actions {
  margin-top: 32px;
}

.button {
  min-height: 48px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
}

.button.primary {
  color: #120f13;
  background: var(--primary);
}

.button.primary:hover {
  background: #ffffff;
}

.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: rgba(237, 235, 244, 0.08);
}

.fintech-visual {
  min-height: 590px;
  position: relative;
  perspective: 1200px;
}

.device,
.orbital-card {
  position: absolute;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(237, 235, 244, 0.16), rgba(237, 235, 244, 0.05));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(20px);
}

.device {
  inset: 90px 40px 42px 58px;
  border-radius: 28px;
  padding: 22px;
  transform: rotateY(-12deg) rotateX(8deg) rotateZ(-2deg);
}

.device-top {
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(90deg, rgba(197, 44, 32, 0.8), rgba(111, 143, 255, 0.55));
  margin-bottom: 18px;
}

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

.device-grid span,
.device-table i {
  display: block;
  border-radius: 14px;
  background: rgba(237, 235, 244, 0.1);
  border: 1px solid var(--line);
}

.device-grid span {
  height: 92px;
}

.device-table {
  display: grid;
  gap: 10px;
}

.device-table i {
  height: 44px;
}

.orbital-card {
  border-radius: 22px;
  padding: 18px;
  color: var(--ink);
}

.orbital-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.orbital-card strong {
  display: block;
  margin-top: 6px;
  font-size: 22px;
}

.card-main {
  width: 310px;
  min-height: 190px;
  right: 0;
  top: 18px;
  transform: rotateY(-18deg) rotateX(10deg) rotateZ(5deg);
  z-index: 3;
}

.card-top {
  width: 190px;
  left: 8px;
  top: 42px;
  transform: rotateY(18deg) rotateZ(-8deg);
  z-index: 2;
}

.card-side {
  width: 218px;
  right: 22px;
  bottom: 0;
  transform: rotateY(-18deg) rotateZ(-5deg);
  z-index: 4;
}

.card-header strong {
  font-size: 30px;
}

.bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 74px;
  margin-top: 22px;
}

.bars i {
  flex: 1;
  border-radius: 999px 999px 8px 8px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent));
}

.bars i:nth-child(1) { height: 34%; }
.bars i:nth-child(2) { height: 62%; }
.bars i:nth-child(3) { height: 48%; }
.bars i:nth-child(4) { height: 82%; }
.bars i:nth-child(5) { height: 58%; }

.trust-strip,
.section,
footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 84px;
}

.trust-strip div,
.section.split,
.module-grid article,
.benefit-grid article,
.contact-band {
  border: 1px solid var(--line);
  background: var(--panel);
  border-radius: 14px;
}

.trust-strip div {
  min-height: 118px;
  padding: 18px;
  display: grid;
  align-content: start;
  gap: 8px;
}

.trust-strip span,
.section.split p,
.benefit-grid p,
.contact-band p,
footer a {
  color: var(--muted);
  line-height: 1.58;
}

.section {
  padding: 78px 0;
}

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

.section.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  padding: 36px;
  align-items: center;
}

.section.split p {
  font-size: 18px;
}

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

.module-grid article {
  min-height: 104px;
  display: flex;
  align-items: center;
  padding: 18px;
  font-weight: 850;
}

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

.benefit-grid article {
  min-height: 218px;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.benefit-grid span {
  color: var(--accent-soft);
  font-weight: 900;
}

.contact-band {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 34px;
}

.contact-band p {
  margin-top: 16px;
}

footer {
  min-height: 98px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.social-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .hero,
  .section.split,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .trust-strip,
  .module-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-header,
  footer {
    display: grid;
    justify-content: stretch;
  }

  nav {
    overflow-x: auto;
    padding-bottom: 4px;
  }

  nav a {
    white-space: nowrap;
  }

  .hero {
    gap: 20px;
    padding-top: 22px;
  }

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

  .fintech-visual {
    min-height: 470px;
  }

  .device {
    inset: 108px 8px 34px 8px;
    border-radius: 18px;
    padding: 14px;
    transform: rotateY(-6deg) rotateX(5deg) rotateZ(-1deg);
  }

  .card-main {
    width: min(290px, 76vw);
    right: 0;
  }

  .card-top {
    width: 172px;
    left: 0;
  }

  .card-side {
    width: 202px;
    right: 0;
  }

  .trust-strip,
  .module-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }
}
