:root {
  --navy: #06264a;
  --blue: #0877e8;
  --cyan: #13b8d9;
  --teal: #13c9a7;
  --green: #19d39c;
  --ink: #102033;
  --muted: #65758b;
  --soft: #f4f8fc;
  --white: #ffffff;
  --border: rgba(14, 74, 122, 0.12);
  --shadow: 0 24px 70px rgba(8, 38, 74, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: linear-gradient(135deg, #f8fbff 0%, #edf7ff 46%, #f7fffd 100%);
}

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

.page-bg {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.22;
  pointer-events: none;
}

.orb-one {
  width: 420px;
  height: 420px;
  background: var(--blue);
  top: 80px;
  left: -160px;
}

.orb-two {
  width: 360px;
  height: 360px;
  background: var(--teal);
  right: -140px;
  top: 340px;
}

.site-header {
  width: min(1180px, calc(100% - 36px));
  margin: 22px auto 0;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 14px 40px rgba(8, 38, 74, 0.08);
  position: sticky;
  top: 16px;
  z-index: 20;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--navy);
  font-size: 1.18rem;
}

.brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 12px;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.94rem;
  color: #31455f;
}

nav a {
  transition: color 0.2s ease;
}

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

.nav-pill {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--navy);
  color: white;
  box-shadow: 0 10px 22px rgba(6, 38, 74, 0.22);
}

.nav-pill:hover {
  color: white;
  background: #0b3d73;
}

.menu-button {
  display: none;
  border: 0;
  background: transparent;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-button span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  display: block;
}

main {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 42px;
  align-items: center;
  min-height: calc(100vh - 120px);
  padding: 70px 0 50px;
}

.status-badge {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 14px;
  border: 1px solid rgba(8, 119, 232, 0.18);
  color: #0759aa;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  margin-bottom: 18px;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(25, 211, 156, 0.55);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 12px rgba(25, 211, 156, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(25, 211, 156, 0);
  }
}

h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 0.94;
  margin: 0 0 22px;
  letter-spacing: -0.075em;
  color: var(--navy);
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  margin: 0 0 18px;
  letter-spacing: -0.055em;
  color: var(--navy);
}

h3 {
  margin: 0 0 10px;
  color: var(--navy);
}

.hero-text,
.section p,
.cta p {
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 30px 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--teal));
  color: white;
  box-shadow: 0 18px 32px rgba(8, 119, 232, 0.22);
}

.btn-secondary {
  background: white;
  color: var(--navy);
  border: 1px solid var(--border);
}

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-line span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: #52677f;
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-card {
  position: relative;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(14, 74, 122, 0.13);
  border-radius: 36px;
  padding: 34px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.main-logo {
  width: 100%;
  max-width: 520px;
  display: block;
  margin: 0 auto;
  border-radius: 24px;
}

.check-card {
  margin: -18px auto 22px;
  width: min(420px, 94%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  background: var(--navy);
  color: white;
  border-radius: 22px;
  box-shadow: 0 20px 35px rgba(6, 38, 74, 0.22);
  position: relative;
}

.check-card small {
  display: block;
  color: #9fc6e7;
  margin-bottom: 4px;
}

.check-card strong {
  display: block;
  font-size: 1.1rem;
}

.score {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--teal), var(--green));
  font-weight: 900;
  font-size: 1.3rem;
}

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

.signal-grid div,
.feature-card,
.highlight-panel,
.privacy-list div,
.timeline-grid div {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 18px;
}

.signal-grid strong {
  display: block;
  color: var(--navy);
  margin-bottom: 4px;
}

.signal-grid span,
.feature-card p,
.timeline-grid p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.section {
  padding: 80px 0;
}

.intro-grid,
.privacy-section {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  gap: 28px;
  align-items: center;
}

.section-label {
  display: inline-block;
  color: var(--blue);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 12px;
}

.highlight-panel ul {
  margin: 0;
  padding-left: 19px;
  color: var(--muted);
  line-height: 1.9;
}

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

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

.feature-card {
  min-height: 220px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(8, 38, 74, 0.1);
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 17px;
  display: grid;
  place-items: center;
  background: linear-gradient(
    135deg,
    rgba(8, 119, 232, 0.1),
    rgba(19, 201, 167, 0.18)
  );
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 16px;
}

.privacy-section {
  background: linear-gradient(
    135deg,
    rgba(6, 38, 74, 0.96),
    rgba(8, 119, 232, 0.9)
  );
  color: white;
  padding: 46px;
  border-radius: 34px;
  box-shadow: var(--shadow);
}

.privacy-section h2,
.privacy-section .section-label {
  color: white;
}

.privacy-section p {
  color: rgba(255, 255, 255, 0.78);
}

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

.privacy-list div {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.16);
  font-weight: 800;
}

.privacy-list span {
  color: #7ff0d4;
  margin-right: 12px;
}

.timeline-grid {
  grid-template-columns: repeat(4, 1fr);
}

.timeline-grid strong {
  color: var(--blue);
}

.cta {
  text-align: center;
  margin: 60px 0 80px;
  padding: 54px 28px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid var(--border);
  border-radius: 36px;
  box-shadow: var(--shadow);
}

.cta p {
  max-width: 760px;
  margin: 0 auto 26px;
}

footer {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 28px 0 40px;
  color: var(--muted);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--border);
}

footer p {
  margin: 0;
}

@media (max-width: 920px) {
  nav {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    background: white;
    border: 1px solid var(--border);
    border-radius: 22px;
    box-shadow: var(--shadow);
  }

  nav.open {
    display: flex;
  }

  .menu-button {
    display: flex;
  }

  .hero,
  .intro-grid,
  .privacy-section {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .card-grid,
  .timeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .site-header,
  main,
  footer {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 40px;
    height: 40px;
  }

  .hero-card,
  .privacy-section,
  .cta {
    border-radius: 26px;
    padding: 24px;
  }

  .signal-grid,
  .card-grid,
  .timeline-grid {
    grid-template-columns: 1fr;
  }

  footer {
    flex-direction: column;
  }
}

/* TrustIBAN infographic section */
.infographic-section {
  padding-top: 40px;
}

.infographic-heading {
  max-width: 820px;
}

.infographic-heading p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.7;
}

.infographic-card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.infographic-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.infographic-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

@media (max-width: 620px) {
  .infographic-card {
    padding: 10px;
    border-radius: 24px;
  }

  .infographic-card img {
    border-radius: 18px;
  }
}
