:root {
  color-scheme: light;
  --blue: #3d49ff;
  --black: #0b0b0b;
  --ink: #111219;
  --slate: #515466;
  --ice: #f2f4ff;
  --white: #ffffff;
  --border: rgba(11, 11, 11, 0.1);
  --shadow: 0 30px 60px rgba(13, 18, 58, 0.2);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: radial-gradient(circle at top, #ecf0ff 0%, #f7f9ff 45%, #ffffff 100%);
  color: var(--ink);
  min-height: 100vh;
}

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

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg width='160' height='160' viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(61, 73, 255, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.1rem;
}

.brand-logo {
  height: 28px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 30px;
  height: 30px;
  object-fit: contain;
  display: block;
}

.footer-logo {
  width: 140px;
  height: auto;
  display: block;
  filter: brightness(1.05);
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
  color: var(--slate);
  margin-left: auto;
}

.nav-links a {
  transition: color 0.2s ease;
}

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

.nav-cta {
  display: flex;
  gap: 12px;
}

.primary {
  background: var(--blue);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 18px 40px rgba(61, 73, 255, 0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 45px rgba(61, 73, 255, 0.4);
}

.primary.invert {
  background: var(--white);
  color: var(--blue);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.primary.invert:hover {
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
}

.ghost {
  background: transparent;
  color: var(--ink);
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid rgba(61, 73, 255, 0.2);
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  padding: 90px 0 70px;
  position: relative;
  z-index: 2;
}

.hero-copy h1 {
  font-size: clamp(2.6rem, 3vw + 1.4rem, 4rem);
  margin: 0 0 26px;
  color: var(--black);
}

.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--slate);
  margin: 0 0 28px;
  max-width: 560px;
}

.subhead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--blue);
  margin: 0 0 14px;
}

.hero-copy p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--slate);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: rgba(61, 73, 255, 0.1);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
  font-size: 0.9rem;
  color: var(--slate);
}

.hero-stats span {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--black);
}

.hero-visual {
  position: relative;
  display: grid;
  place-items: center;
}

.logo-card {
  width: min(460px, 100%);
  background: transparent;
  border-radius: 0;
  border: none;
  box-shadow: none;
  padding: 20px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.logo-card img {
  width: min(480px, 90%);
  height: auto;
  display: block;
}

.hero-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: var(--blue);
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.logo-strip {
  background: #f7f8ff;
  color: var(--slate);
  padding: 40px 0;
}

.is-hidden {
  display: none;
}

.audience-strip {
  background: var(--white);
  padding: 48px 0 28px;
}

.audience-strip h2 {
  margin: 0 0 18px;
  font-weight: 600;
  color: var(--ink);
}

.audience-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-tags span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(61, 73, 255, 0.08);
  color: var(--blue);
  font-size: 0.85rem;
  font-weight: 600;
}

.logo-strip p {
  margin: 0 0 20px;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
  align-items: center;
}

.logo-img {
  width: 100%;
  height: 42px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.65;
}

.section {
  padding: 90px 0;
}

.section.alt {
  background: var(--ice);
}

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

.section.marketplace {
  background: #f7f8ff;
}

.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 48px;
  align-items: center;
}

.split.reverse {
  direction: rtl;
}

.split.reverse > * {
  direction: ltr;
}

.section-header {
  max-width: 620px;
  margin-bottom: 36px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.card {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 18px 40px rgba(21, 27, 67, 0.08);
  border: 1px solid rgba(61, 73, 255, 0.08);
}

.card h3 {
  margin-top: 0;
}

.micro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
}

.micro-card {
  background: var(--ice);
  border-radius: var(--radius-sm);
  padding: 18px;
  border: 1px solid rgba(61, 73, 255, 0.12);
}

.micro-card h4 {
  margin: 0 0 8px;
}

.marketplace-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.marketplace-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 22px;
  border: 1px solid rgba(61, 73, 255, 0.1);
  box-shadow: 0 14px 30px rgba(21, 27, 67, 0.08);
}

.marketplace-card h3 {
  margin: 0 0 8px;
}

.security-list h4 {
  margin-bottom: 8px;
}

.security-panel {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
}

.badge {
  background: var(--black);
  color: var(--white);
  padding: 16px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  box-shadow: 0 18px 35px rgba(11, 11, 11, 0.2);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.insight-card {
  background: linear-gradient(140deg, rgba(61, 73, 255, 0.08), rgba(11, 11, 11, 0.02));
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(61, 73, 255, 0.12);
}

.cta {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--blue) 0%, #1b24b3 100%);
  color: var(--white);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta .ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.footer {
  background: var(--black);
  color: rgba(255, 255, 255, 0.75);
  padding: 60px 0 48px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.footer h4 {
  color: var(--white);
  margin-top: 0;
}

.footer a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  text-align: left;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 16px 24px 28px;
  font-size: 0.85rem;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero {
    padding-top: 60px;
  }
}

@media (max-width: 600px) {
  .nav {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .nav-cta {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
