:root {
  --bg: #0b1220;
  --bg-soft: #111a2b;
  --surface: #ffffff;
  --surface-soft: #f4f7fb;
  --text: #122033;
  --text-soft: #1f2f45;
  --line: #d9e2ee;
  --primary: #0f62fe;
  --primary-dark: #0a47b8;
  --accent: #19c37d;
  --shadow: 0 18px 40px rgba(13, 27, 62, 0.12);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7faff 0%, #eef4fb 100%);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 2rem), var(--max)); margin: 0 auto; }
.section { padding: 4.5rem 0; }
.section-tight { padding: 3rem 0; }
.eyebrow {
  display: inline-block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.9rem;
}
h1, h2, h3, h4 { line-height: 1.15; margin: 0 0 1rem; }
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1rem; color: var(--text); }
.lead { font-size: 1.1rem; max-width: 68ch; }
.small { font-size: 0.95rem; }

.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.6rem; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.35rem;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}
.btn-primary { background: var(--primary); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-1px); }
.btn-secondary { background: rgba(255,255,255,0.12); color: #fff; border: 1px solid rgba(255,255,255,0.2); }
.btn-secondary:hover { background: rgba(255,255,255,0.18); }
.btn-light { background: #fff; color: var(--primary); border: 1px solid var(--line); }
.btn-light:hover { transform: translateY(-1px); box-shadow: var(--shadow); }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(7, 13, 24, 0.94);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav-wrap {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 78px;
}
.brand { display: inline-flex; align-items: center; gap: 0.95rem; color: #fff; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.14); border-radius: 20px; padding: 0.55rem 0.9rem; }
.brand img { width: 180px; height: auto; }
.brand-mark { width: 52px; }
.brand-copy strong { display: block; font-size: 1rem; }
.brand-copy span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.72); }
.nav-toggle {
  display: none; background: transparent; border: 0; color: #fff; font-size: 1.5rem; cursor: pointer;
}
.nav-links { display: flex; align-items: center; gap: 1.2rem; color: rgba(255,255,255,0.9); }
.nav-links a { font-weight: 600; font-size: 0.96rem; }
.nav-links a:hover, .nav-links a.active { color: #fff; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(25,195,125,0.22), transparent 26%),
    radial-gradient(circle at left center, rgba(15,98,254,0.28), transparent 30%),
    linear-gradient(135deg, #08111d 0%, #10233f 56%, #143b6f 100%);
  color: #fff;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2.2rem;
  align-items: center;
  min-height: 78vh;
  padding: 4.5rem 0;
}
.hero p { color: rgba(255,255,255,0.78); }
.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 28px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
}
.stats-grid, .grid-3, .grid-2, .grid-4 {
  display: grid; gap: 1.3rem;
}
.stats-grid { grid-template-columns: repeat(2, 1fr); margin-top: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.stat, .card, .tile, .quote, .contact-card, .logo-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.stat {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.15);
  color: #fff;
  padding: 1.15rem;
}
.stat strong { font-size: 1.75rem; display: block; margin-bottom: 0.2rem; }
.stat span { color: rgba(255,255,255,0.72); }
.card, .tile, .quote, .contact-card, .logo-card { padding: 1.4rem; }
.card h3, .tile h3 { margin-bottom: 0.7rem; }
.card p:last-child, .tile p:last-child { margin-bottom: 0; }
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; background: rgba(15,98,254,0.08); color: var(--primary); font-size: 1.3rem;
}
.band {
  background: linear-gradient(135deg, #0d1830 0%, #12294d 100%);
  color: #fff;
}
.band p { color: rgba(255,255,255,0.78); }
.split {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 2rem; align-items: center;
}
.feature-list { padding: 0; margin: 1.1rem 0 0; list-style: none; }
.feature-list li {
  position: relative; padding-left: 1.7rem; margin-bottom: 0.8rem; color: var(--text-soft);
}
.feature-list li::before {
  content: ""; position: absolute; left: 0; top: 0.6rem; width: 0.8rem; height: 0.8rem;
  border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--accent));
}
.metric {
  padding: 1.15rem; border-radius: 18px; background: var(--surface-soft); border: 1px solid var(--line);
}
.metric strong { display: block; font-size: 1.2rem; color: var(--text); margin-bottom: 0.2rem; }

.platform-box {
  padding: 1.5rem; border-radius: 24px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow);
}
.platform-box h3 { display: flex; justify-content: space-between; gap: 1rem; align-items: center; }
.pill {
  display: inline-flex; padding: 0.32rem 0.7rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700;
  background: rgba(15,98,254,0.1); color: var(--primary);
}
.logo-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; }
.logo-card img { width: 100%; max-width: 380px; margin: 0 auto 1rem; }

.timeline { position: relative; padding-left: 1.25rem; }
.timeline::before {
  content: ""; position: absolute; left: 0.3rem; top: 0.3rem; bottom: 0.3rem; width: 2px; background: var(--line);
}
.timeline-step { position: relative; padding-left: 1.6rem; margin-bottom: 1.2rem; }
.timeline-step::before {
  content: ""; position: absolute; left: -0.1rem; top: 0.35rem; width: 0.8rem; height: 0.8rem;
  background: var(--primary); border-radius: 50%; box-shadow: 0 0 0 6px rgba(15,98,254,0.08);
}
.timeline-step:last-child { margin-bottom: 0; }

.industry-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.industry-card { padding: 1.5rem; background: #fff; border: 1px solid var(--line); border-radius: 24px; box-shadow: var(--shadow); }
.industry-card ul { margin: 0; padding-left: 1.1rem; color: var(--text-soft); }
.industry-card li { margin-bottom: 0.5rem; }

.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 1.5rem; }
.form {
  background: #fff; padding: 1.5rem; border-radius: 24px; border: 1px solid var(--line); box-shadow: var(--shadow);
}
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.form label { display: block; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.form input, .form textarea, .form select {
  width: 100%; padding: 0.95rem 1rem; border-radius: 16px; border: 1px solid var(--line); font: inherit;
  background: #fff;
}
.form textarea { min-height: 150px; resize: vertical; }
.notice { font-size: 0.9rem; color: var(--text-soft); }

.page-hero {
  background: linear-gradient(135deg, #0c1425 0%, #163763 100%);
  color: #fff;
  padding: 5.6rem 0 4rem;
}
.page-hero p { color: rgba(255,255,255,0.78); max-width: 72ch; }
.breadcrumbs { font-size: 0.88rem; color: rgba(255,255,255,0.66); margin-bottom: 1rem; }
.breadcrumbs a { color: rgba(255,255,255,0.9); }

.cta {
  border-radius: 30px;
  padding: 2rem;
  background: linear-gradient(135deg, #0f62fe, #19c37d);
  color: #fff;
  box-shadow: var(--shadow);
}
.cta p { color: rgba(255,255,255,0.92); }

.site-footer {
  background: #09111d; color: rgba(255,255,255,0.78); padding: 2rem 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr 0.85fr; gap: 1.5rem; align-items: start;
}
.site-footer p, .site-footer a { color: rgba(255,255,255,0.72); }
.site-footer h4 { color: #fff; margin-bottom: 0.75rem; }
.footer-nav { display: grid; gap: 0.45rem; }
.footer-bottom {
  margin-top: 1.5rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.08); font-size: 0.92rem;
}

.reveal { opacity: 0; transform: translateY(18px); transition: 0.5s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  .hero-grid, .split, .contact-grid, .footer-grid, .grid-4, .grid-3, .grid-2, .industry-grid, .logo-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute; left: 0; right: 0; top: 78px;
    background: rgba(11, 18, 32, 0.98); padding: 1rem; display: none; flex-direction: column; align-items: flex-start;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .nav-links.open { display: flex; }
}

@media (max-width: 640px) {
  .section { padding: 3.5rem 0; }
  .hero-grid { min-height: auto; padding: 3.2rem 0; }
  .brand img { width: 150px; }
  .stats-grid { grid-template-columns: 1fr; }
}


.brand {
  padding: 0.55rem 0;
}
.brand img {
  filter: drop-shadow(0 10px 22px rgba(0,0,0,0.22));
}

.brand img {
  width: 320px;
  max-width: min(320px, 62vw);
  height: auto;
}
.company-meta {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}
.company-meta p { margin: 0; }
.legal-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
  display: grid;
  gap: 0.65rem;
}
.legal-list li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface-soft);
}
.profile-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.2rem;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: 1.5rem;
}
.profile-badge {
  width: 120px;
  height: 120px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0f62fe, #19c37d);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  font-weight: 800;
}
.compact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.footer-small {
  font-size: 0.9rem;
}
.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1rem;
}
.notice-box {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: var(--surface-soft);
}
@media (max-width: 980px) {
  .profile-card, .compact-grid { grid-template-columns: 1fr; }
  .brand img { width: min(300px, 70vw); }
}


.cookie-banner {position:fixed;left:1rem;right:1rem;bottom:1rem;z-index:100;background:#0b1220;color:#fff;border:1px solid rgba(255,255,255,0.14);border-radius:22px;box-shadow:0 22px 44px rgba(3,8,18,0.34);padding:1.1rem 1.2rem;}
.cookie-banner[hidden]{display:none!important;}
.cookie-banner p{color:rgba(255,255,255,0.86);margin:0;}
.cookie-banner-inner{display:flex;gap:1rem;align-items:flex-start;justify-content:space-between;}
.cookie-actions{display:flex;gap:0.8rem;flex-wrap:wrap;min-width:max-content;}
.cookie-btn{padding:0.85rem 1.1rem;border-radius:999px;border:1px solid rgba(255,255,255,0.18);background:transparent;color:#fff;font:inherit;font-weight:700;cursor:pointer;}
.cookie-btn.primary{background:#0f62fe;border-color:#0f62fe;}
.cookie-btn.secondary{background:#fff;color:#0f62fe;border-color:#fff;}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0;}
@media (max-width: 780px){.cookie-banner-inner{flex-direction:column;}.cookie-actions{min-width:0;}}

.site-footer img{background:#fff;border-radius:18px;padding:0.55rem 0.85rem;border:1px solid rgba(255,255,255,0.08);}


/* v4 logo and readability updates */
.brand {
  background: transparent;
  border: 0;
  padding: 0.35rem 0;
}
.brand img {
  width: 240px;
  height: auto;
}
.band .tile, .band .card, .band .quote, .band .platform-box {
  background: #fff;
  border-color: var(--line);
  color: var(--text);
}
.band .tile h3, .band .card h3, .band .quote h3, .band .platform-box h3,
.band .tile p, .band .card p, .band .quote p, .band .platform-box p,
.band .tile li, .band .card li, .band .quote li, .band .platform-box li {
  color: var(--text);
}
.band .tile .eyebrow, .band .card .eyebrow, .band .quote .eyebrow, .band .platform-box .eyebrow {
  color: var(--primary);
}
@media (max-width: 640px) {
  .brand img { width: 200px; }
}


/* v5 enterprise refinements */
:root{
  --header-bg: rgba(9,17,29,0.82);
  --header-line: rgba(255,255,255,0.08);
  --nav-hover: rgba(255,255,255,0.12);
}

html { scroll-behavior: smooth; }
body { text-rendering: optimizeLegibility; }

.site-header{
  position: sticky;
  top: 0;
  z-index: 80;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-line);
  box-shadow: 0 10px 28px rgba(6, 15, 30, 0.14);
}
.nav-wrap{
  min-height: 94px;
  gap: 1.5rem;
}
.brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid rgba(15, 98, 254, 0.10);
  border-radius: 18px;
  padding: 0.7rem 1rem;
  box-shadow: 0 14px 26px rgba(12, 26, 46, 0.16);
  transition: transform .2s ease, box-shadow .2s ease;
}
.brand:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(12, 26, 46, 0.18);
}
.brand img{
  width: 290px;
  max-width: min(290px, 54vw);
  height: auto;
  filter: none;
  display: block;
}
.nav-links{
  gap: 0.35rem;
}
.nav-links a{
  position: relative;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  color: rgba(255,255,255,0.88);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}
.nav-links a::after{
  content:"";
  position:absolute;
  left:1rem;
  right:1rem;
  bottom:0.45rem;
  height:2px;
  border-radius:2px;
  background: linear-gradient(90deg, #57c4f2 0%, #0f62fe 100%);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .22s ease;
}
.nav-links a:hover{
  color:#fff;
  background: var(--nav-hover);
  transform: translateY(-1px);
}
.nav-links a:hover::after,
.nav-links a.active::after{
  transform: scaleX(1);
}
.nav-links a.active{
  color:#fff;
  background: rgba(255,255,255,0.12);
}
.nav-toggle{
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.08);
  transition: background-color .2s ease, border-color .2s ease;
}
.nav-toggle:hover{
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.22);
}

.hero{
  background:
    radial-gradient(circle at 88% 12%, rgba(87,196,242,0.20), transparent 20%),
    radial-gradient(circle at 10% 20%, rgba(25,195,125,0.10), transparent 22%),
    linear-gradient(135deg, #08111d 0%, #0f1f35 48%, #143b6f 100%);
}
.hero-grid{
  min-height: 82vh;
  gap: 2.7rem;
  padding: 5.2rem 0 4.8rem;
}
.hero h1{
  max-width: 11.5ch;
  letter-spacing: -0.03em;
}
.hero .eyebrow{
  display:inline-flex;
  align-items:center;
  gap:.55rem;
  padding:.45rem .8rem;
  border:1px solid rgba(255,255,255,0.15);
  border-radius:999px;
  background: rgba(255,255,255,0.08);
}
.hero .eyebrow::before{
  content:"";
  width:.55rem;height:.55rem;border-radius:50%;
  background:#19c37d;
  box-shadow:0 0 0 6px rgba(25,195,125,0.16);
}
.hero-card{
  padding: 1.8rem;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12), rgba(255,255,255,0.07));
  box-shadow: 0 28px 60px rgba(1, 10, 24, 0.30);
}
.hero-card > img{
  max-width: 360px;
  width: 100%;
  margin: 0 auto 1.1rem;
  display:block;
}
.metric{
  background: rgba(255,255,255,0.92);
}
.metric span, .metric p, .metric{
  color: var(--text-soft);
}
.metric strong{ color: var(--text); }

.trust-strip{
  padding-top: 0;
  margin-top: -2rem;
}
.trust-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 1.1rem;
  border:1px solid var(--line);
  border-radius: 28px;
  background: rgba(255,255,255,0.95);
  box-shadow: 0 18px 45px rgba(11, 27, 47, 0.10);
}
.trust-item{
  padding: 1rem 1.1rem;
  border-radius: 20px;
  background: linear-gradient(180deg, #fff, #f7fbff);
  border: 1px solid rgba(15, 98, 254, 0.08);
}
.trust-item strong{
  display:block;
  color: var(--text);
  font-size:1.05rem;
  margin-bottom:.35rem;
}
.trust-item span{
  color: var(--text-soft);
  font-size:.96rem;
}

.section h2{
  letter-spacing: -0.025em;
}
.card, .tile, .quote, .contact-card, .logo-card, .platform-box, .industry-card, .profile-card, .form{
  box-shadow: 0 16px 36px rgba(13, 24, 48, 0.08);
}
.card p, .tile p, .platform-box p, .industry-card p, .profile-card p, .contact-card p, .logo-card p, .quote p, .notice-box p{
  color: var(--text-soft);
}
.card li, .tile li, .platform-box li, .industry-card li, .contact-card li{
  color: var(--text-soft);
}
.tile h3, .card h3, .platform-box h3, .industry-card h3, .contact-card h3, .quote h3{
  color: var(--text);
}
.band .platform-box p,
.band .card p,
.band .tile p,
.band .quote p,
.band .platform-box li,
.band .card li,
.band .tile li{
  color: var(--text-soft) !important;
}
.band .platform-box h3,
.band .card h3,
.band .tile h3,
.band .quote h3{
  color: var(--text) !important;
}

.site-footer .brand,
.site-footer img[alt*="logo"]{
  background:#fff;
}

.cookie-banner{
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1100px){
  .trust-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 980px){
  .nav-wrap{ min-height: 84px; }
  .brand img{ width: min(265px, 58vw); }
  .nav-links{
    position: fixed;
    left: 1rem;
    right: 1rem;
    top: 92px;
    padding: .9rem;
    display: none;
    flex-direction: column;
    gap: .25rem;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,0.10);
    background: rgba(9,17,29,0.97);
    box-shadow: 0 24px 44px rgba(2,8,18,0.30);
  }
  .nav-links a{
    width: 100%;
    padding: .95rem 1rem;
  }
  .nav-links a::after{
    left: 1rem;
    right: auto;
    width: 36px;
    bottom: .6rem;
  }
  body.menu-open{ overflow: hidden; }
}

@media (max-width: 760px){
  .hero-grid{ padding: 4.2rem 0 3.8rem; }
  .hero h1{ max-width: none; }
  .brand{
    padding: .55rem .8rem;
    border-radius: 14px;
  }
  .brand img{ width: min(230px, 62vw); }
  .trust-grid{ grid-template-columns: 1fr; }
}

@media (max-width: 640px){
  .nav-wrap{ min-height: 78px; }
  .nav-links{ top: 84px; }
  .hero-card{ padding: 1.2rem; }
}
