:root {
  --bg: #05070d;
  --bg-soft: #0a0f1d;
  --card: rgba(255, 255, 255, 0.065);
  --card-strong: rgba(255, 255, 255, 0.105);
  --line: rgba(255, 255, 255, 0.13);
  --text: #f7fbff;
  --muted: #aab6c9;
  --muted-2: #6f7d94;
  --cyan: #21e7ff;
  --lime: #9dff6b;
  --violet: #8f63ff;
  --shadow: 0 24px 90px rgba(0, 0, 0, 0.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: radial-gradient(circle at top left, rgba(33, 231, 255, 0.12), transparent 34%), var(--bg);
  color: var(--text);
  overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.section { padding: 110px 0; position: relative; }
.noise {
  position: fixed; inset: 0; z-index: -3; opacity: 0.22; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.45'/%3E%3C/svg%3E");
}
.orb { position: fixed; border-radius: 999px; filter: blur(70px); opacity: .35; z-index: -2; pointer-events: none; }
.orb-one { width: 440px; height: 440px; background: var(--cyan); right: -180px; top: 90px; }
.orb-two { width: 420px; height: 420px; background: var(--violet); left: -200px; bottom: 10%; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(5, 7, 13, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav { min-height: 92px; display: flex; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; letter-spacing: -0.04em; }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px;
  color: #041018; background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-weight: 900; box-shadow: 0 0 35px rgba(33,231,255,.35);
}
.brand-text { font-size: 26px; }
.nav-links { display: flex; align-items: center; gap: 30px; color: var(--muted); font-size: 14px; font-weight: 600; }
.nav-links a:hover { color: var(--text); }
.nav-cta { color: var(--text) !important; padding: 12px 18px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.06); }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); background: transparent; border-radius: 12px; }
.nav-toggle span { display: block; height: 2px; width: 18px; margin: 5px auto; background: var(--text); }

.hero { min-height: calc(100vh - 78px); display: flex; align-items: center; padding-top: 80px; }
.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 54px; align-items: center; }
.eyebrow { color: var(--muted); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 800; display: inline-flex; gap: 10px; align-items: center; }
.eyebrow span { width: 8px; height: 8px; border-radius: 999px; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(48px, 7.2vw, 88px); line-height: .94; letter-spacing: -.075em; margin: 18px 0 26px; max-width: 920px; }
h2 { font-size: clamp(36px, 5vw, 64px); line-height: 1; letter-spacing: -.06em; margin: 12px 0 20px; }
h3 { letter-spacing: -.03em; }
.hero-copy, .section-heading p, .platform-wrap p, .cta-card p, .sticky-copy > p { color: var(--muted); font-size: 18px; line-height: 1.75; max-width: 660px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 34px 0; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 22px; border-radius: 999px; font-weight: 800; border: 1px solid transparent; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #041018; background: linear-gradient(135deg, var(--cyan), var(--lime)); box-shadow: 0 15px 50px rgba(33,231,255,.25); }
.btn-secondary { color: var(--text); border-color: var(--line); background: rgba(255,255,255,.05); }
.hero-proof { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; max-width: 650px; }
.hero-proof div { padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.045); }
.hero-proof strong { display: block; font-size: 28px; letter-spacing: -.04em; }
.hero-proof span { color: var(--muted); font-size: 13px; }

.visual-panel { position: relative; min-height: 620px; border: 1px solid var(--line); border-radius: 36px; background: linear-gradient(145deg, rgba(255,255,255,.1), rgba(255,255,255,.035)); box-shadow: var(--shadow); overflow: hidden; }
.visual-panel::before { content: ""; position: absolute; inset: -40%; background: conic-gradient(from 90deg, transparent, rgba(33,231,255,.22), transparent, rgba(157,255,107,.15), transparent); animation: rotate 18s linear infinite; }
.visual-panel::after { content: ""; position: absolute; inset: 1px; border-radius: 35px; background: rgba(6,10,20,.86); }
.panel-topline, .loop-core, .mini-dashboard { position: relative; z-index: 2; }
.panel-topline { display: flex; align-items: center; gap: 10px; padding: 24px; color: var(--muted); font-size: 13px; font-weight: 700; }
.live-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 18px var(--lime); }
.status-pill { margin-left: auto; color: var(--lime); border: 1px solid rgba(157,255,107,.25); background: rgba(157,255,107,.08); padding: 8px 10px; border-radius: 999px; }
.loop-core { height: 400px; margin: 20px; display: grid; place-items: center; }
.core-ring { position: absolute; border-radius: 999px; border: 1px solid rgba(33,231,255,.35); }
.ring-a { width: 260px; height: 260px; animation: pulse 3.2s ease-in-out infinite; }
.ring-b { width: 350px; height: 350px; border-color: rgba(157,255,107,.23); animation: pulse 4.2s ease-in-out infinite reverse; }
.core-center { width: 150px; height: 150px; border-radius: 999px; display: grid; place-items: center; align-content: center; background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.22), rgba(33,231,255,.16), rgba(255,255,255,.04)); border: 1px solid rgba(255,255,255,.22); box-shadow: 0 0 70px rgba(33,231,255,.18); }
.core-center span { color: var(--muted); font-size: 11px; letter-spacing: .24em; }
.core-center strong { font-size: 19px; letter-spacing: -.03em; }
.node { position: absolute; width: 120px; padding: 12px; border: 1px solid var(--line); border-radius: 18px; background: rgba(255,255,255,.08); color: #dfeaff; font-size: 12px; font-weight: 800; text-align: center; backdrop-filter: blur(12px); }
.node-1 { top: 20px; left: 48%; transform: translateX(-50%); }
.node-2 { top: 118px; right: 26px; }
.node-3 { bottom: 92px; right: 50px; }
.node-4 { bottom: 24px; left: 48%; transform: translateX(-50%); }
.node-5 { bottom: 102px; left: 34px; }
.node-6 { top: 118px; left: 24px; }
.mini-dashboard { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 12px; padding: 0 24px 24px; }
.dash-card { border: 1px solid var(--line); border-radius: 18px; padding: 16px; background: rgba(255,255,255,.055); }
.dash-card span { display: block; color: var(--muted); font-size: 12px; margin-bottom: 8px; }
.dash-card strong { font-size: 24px; letter-spacing: -.04em; }

.logo-strip { border-block: 1px solid rgba(255,255,255,.08); overflow: hidden; background: rgba(255,255,255,.025); }
.strip-track { display: flex; gap: 44px; width: max-content; padding: 22px 0; animation: scroll 32s linear infinite; }
.strip-track span { color: var(--muted-2); font-weight: 900; text-transform: uppercase; letter-spacing: .14em; white-space: nowrap; }
.section-heading { margin-bottom: 42px; }
.centered { text-align: center; margin-inline: auto; }
.centered p { margin-inline: auto; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stat-card, .feature-card, .vertical-card, .platform-wrap, .cta-card { border: 1px solid var(--line); background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); }
.stat-card { padding: 30px; min-height: 260px; display: flex; flex-direction: column; justify-content: space-between; }
.stat-card strong { font-size: clamp(44px, 6vw, 74px); line-height: .9; letter-spacing: -.07em; background: linear-gradient(135deg, #fff, var(--cyan), var(--lime)); -webkit-background-clip: text; color: transparent; }
.stat-card h3 { font-size: 20px; margin-bottom: 10px; }
.stat-card p, .feature-card p, .vertical-card p { color: var(--muted); line-height: 1.65; margin-bottom: 0; }
.split-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: 54px; align-items: start; }
.sticky-copy { position: sticky; top: 118px; }
.text-link { display: inline-block; margin-top: 18px; color: var(--lime); font-weight: 800; }
.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.feature-card { padding: 28px; min-height: 250px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.feature-card:hover, .vertical-card:hover { transform: translateY(-6px); border-color: rgba(33,231,255,.38); background: var(--card-strong); }
.icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 14px; margin-bottom: 28px; color: #041018; background: linear-gradient(135deg, var(--cyan), var(--lime)); font-weight: 900; }
.vertical-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.vertical-card { padding: 30px; min-height: 240px; transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.vertical-card span { font-size: 34px; display: inline-block; margin-bottom: 28px; }
.accent-card { background: linear-gradient(145deg, rgba(33,231,255,.12), rgba(157,255,107,.08)); }
.accent-card a { display: inline-block; margin-top: 18px; color: var(--lime); font-weight: 800; }
.platform-wrap { padding: 44px; display: grid; grid-template-columns: .85fr 1.15fr; gap: 44px; align-items: center; }
.platform-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.platform-grid span { padding: 18px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.055); color: #dce7f8; font-weight: 800; }
.cta-section { padding: 80px 0 120px; }
.cta-card { position: relative; overflow: hidden; padding: clamp(36px, 7vw, 76px); text-align: center; }
.cta-card h2 { max-width: 850px; margin-inline: auto; }
.cta-card p { margin-inline: auto; }
.cta-glow { position: absolute; inset: auto 10% -160px; height: 260px; background: radial-gradient(circle, rgba(33,231,255,.35), transparent 70%); filter: blur(30px); }
.lead-form { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; margin: 34px auto 12px; max-width: 850px; }
.lead-form input { width: 100%; min-height: 54px; padding: 0 18px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.06); color: var(--text); outline: none; font: inherit; }
.lead-form input:focus { border-color: rgba(33,231,255,.5); box-shadow: 0 0 0 4px rgba(33,231,255,.08); }
.form-note { color: var(--muted-2); }
.footer { border-top: 1px solid rgba(255,255,255,.08); padding: 28px 0; color: var(--muted); }
.footer-grid { display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.footer-brand .brand-text { font-size: 22px; color: var(--text); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .22s; }
.delay-3 { transition-delay: .32s; }

@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(.96); opacity: .55; } 50% { transform: scale(1.04); opacity: 1; } }
@keyframes scroll { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .nav-toggle { display: block; }
  .nav-links { position: fixed; inset: 78px 20px auto; padding: 24px; border: 1px solid var(--line); border-radius: 24px; background: rgba(7, 10, 18, .96); display: none; flex-direction: column; align-items: stretch; box-shadow: var(--shadow); }
  body.nav-open .nav-links { display: flex; }
  .hero-grid, .split-grid, .platform-wrap { grid-template-columns: 1fr; }
  .visual-panel { min-height: 560px; }
  .stats-grid, .vertical-grid { grid-template-columns: repeat(2, 1fr); }
  .sticky-copy { position: static; }
  .lead-form { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 28px, 1180px); }
  .section { padding: 76px 0; }
  .hero { padding-top: 50px; }
  .hero-proof, .stats-grid, .feature-grid, .vertical-grid, .platform-grid, .mini-dashboard { grid-template-columns: 1fr; }
  .visual-panel { min-height: 500px; }
  .loop-core { transform: scale(.82); margin: -10px 0 0; }
  .panel-topline { flex-wrap: wrap; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}


/* Refined transparent logo integration */
.brand-logo {
  display: block;
  width: 186px;
  height: auto;
  filter: drop-shadow(0 0 16px rgba(33, 231, 255, 0.16));
}
.hero-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin: 0 0 18px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 18px;
  background: rgba(255,255,255,.03);
  backdrop-filter: blur(10px);
}
.hero-mark {
  width: 62px;
  height: 62px;
  display: block;
  filter: drop-shadow(0 0 18px rgba(33, 231, 255, 0.18));
}
.hero-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-brand-copy strong {
  font-size: 32px;
  line-height: .9;
  letter-spacing: -.06em;
  font-weight: 800;
}
.hero-brand-copy span {
  font-size: 11px;
  letter-spacing: .34em;
  color: #66d8ff;
  font-weight: 800;
}
.footer-brand .brand-logo { width: 160px; }
@media (max-width: 680px) {
  .brand-logo { width: 150px; }
  .hero-brand-lockup { gap: 12px; padding: 9px 12px 9px 9px; }
  .hero-mark { width: 52px; height: 52px; }
  .hero-brand-copy strong { font-size: 26px; }
  .hero-brand-copy span { font-size: 9px; letter-spacing: .26em; }
}

/* Lead form thank-you popup */
.thank-you-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
}

.thank-you-popup.show {
  display: flex;
}

.thank-you-box {
  position: relative;
  width: min(100%, 500px);
  padding: 42px 34px 36px;
  text-align: center;
  color: var(--text);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at top, rgba(33, 231, 255, 0.16), transparent 42%),
    rgba(8, 13, 24, 0.96);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.58);
}

.thank-you-icon {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #041018;
  font-weight: 900;
  font-size: 28px;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  box-shadow: 0 0 36px rgba(33, 231, 255, 0.24);
}

.thank-you-box h2 {
  margin: 0 0 12px;
  font-size: clamp(32px, 5vw, 46px);
}

.thank-you-box p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.thank-you-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}

.thank-you-close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.lead-form button:disabled {
  cursor: not-allowed;
  opacity: 0.75;
  transform: none;
}


/* Unified Atooz logo lockup for header and footer */
.header-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.header-mark {
  width: 62px;
  height: 62px;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(33, 231, 255, 0.18));
  flex: 0 0 auto;
}

.header-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.header-brand-copy strong {
  font-size: 32px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
  color: #ffffff;
}

.header-brand-copy span {
  font-size: 10px;
  letter-spacing: 0.34em;
  color: #66d8ff;
  font-weight: 800;
  white-space: nowrap;
}

.footer-brand.header-brand-lockup {
  gap: 12px;
}

.footer-brand .header-mark {
  width: 52px;
  height: 52px;
}

.footer-brand .header-brand-copy strong {
  font-size: 27px;
}

.footer-brand .header-brand-copy span {
  font-size: 8px;
}

@media (max-width: 680px) {
  .header-brand-lockup {
    gap: 10px;
  }

  .header-mark {
    width: 48px;
    height: 48px;
  }

  .header-brand-copy strong {
    font-size: 24px;
  }

  .header-brand-copy span {
    font-size: 7px;
    letter-spacing: 0.22em;
  }

  .footer-brand .header-mark {
    width: 44px;
    height: 44px;
  }
}


/* Footer legal links */
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text);
}

/* Legal pages */
.legal-main {
  padding: 86px 0 110px;
}

.legal-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}

.legal-card h1 {
  font-size: clamp(42px, 6vw, 68px);
  margin-bottom: 14px;
}

.legal-meta {
  color: var(--muted-2);
  margin-bottom: 34px;
}

.legal-card h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
  margin-bottom: 12px;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.75;
}

.legal-card ul {
  padding-left: 22px;
}

.legal-card a {
  color: var(--lime);
  font-weight: 800;
}

.legal-note {
  margin-top: 34px;
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(33,231,255,.18);
  background: rgba(33,231,255,.06);
}

@media (max-width: 980px) {
  .footer-grid {
    align-items: flex-start;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

/* Final aligned footer layout */
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 34px 0;
  color: var(--muted);
}

.footer-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 24px 48px;
}

.footer-brand.header-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  border: 0;
  background: transparent;
}

.footer-brand .header-mark {
  width: 54px;
  height: 54px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand .header-brand-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-brand .header-brand-copy strong {
  color: #ffffff;
  font-size: 28px;
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 800;
}

.footer-brand .header-brand-copy span {
  color: #66d8ff;
  font-size: 9px;
  letter-spacing: 0.26em;
  font-weight: 800;
  white-space: nowrap;
}

.footer-grid > p {
  margin: 0;
  font-size: 16px;
  color: var(--muted);
  justify-self: start;
}

.footer-links {
  grid-column: 1 / -1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  padding-top: 8px;
}

.footer-links a {
  color: var(--muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-links {
    gap: 14px;
  }

  .footer-brand .header-mark {
    width: 46px;
    height: 46px;
  }

  .footer-brand .header-brand-copy strong {
    font-size: 24px;
  }

  .footer-brand .header-brand-copy span {
    font-size: 7px;
    letter-spacing: 0.22em;
  }
}


/* Premium footer layout */
.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 44px 0 34px;
  color: var(--muted);
}

.footer-card {
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr auto;
  gap: 34px;
  align-items: center;
  padding: 34px 36px;
}

.footer-brand.header-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  min-width: 0;
}

.footer-brand .header-mark {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex-shrink: 0;
}

.footer-brand .header-brand-copy strong {
  font-size: 30px;
  line-height: .9;
}

.footer-brand .header-brand-copy span {
  font-size: 8px;
  letter-spacing: .26em;
  white-space: nowrap;
}

.footer-description {
  margin: 0;
  max-width: 650px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  color: #041018;
  background: linear-gradient(135deg, var(--cyan), var(--lime));
  font-weight: 900;
  white-space: nowrap;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 36px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.12);
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-2);
  font-size: 13px;
}

.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
  padding: 0;
  font-size: 13px;
  font-weight: 800;
}

.footer-links a {
  color: var(--muted);
  transition: color .25s ease;
}

.footer-links a:hover {
  color: var(--text);
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

  .footer-cta {
    width: fit-content;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-links {
    justify-content: flex-start;
  }
}

@media (max-width: 680px) {
  .footer {
    padding: 28px 0;
  }

  .footer-main,
  .footer-bottom {
    padding: 24px;
  }

  .footer-brand .header-mark {
    width: 48px;
    height: 48px;
  }

  .footer-brand .header-brand-copy strong {
    font-size: 24px;
  }

  .footer-brand .header-brand-copy span {
    font-size: 7px;
    letter-spacing: .2em;
  }

  .footer-links {
    gap: 14px;
  }
}


/* Updated Atooz logo assets */
.site-logo-link {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
.site-logo {
  display: block;
  width: min(315px, 34vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(33, 231, 255, 0.16));
}
.footer-logo-link .site-logo {
  width: min(280px, 48vw);
}
.hero-content .eyebrow {
  margin-top: 0;
}

/* New solutions section */
.solutions {
  padding-top: 110px;
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}
.solution-card {
  grid-column: span 2;
  border: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px;
  min-height: 250px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.solution-card-wide {
  grid-column: span 4;
}
.solution-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33,231,255,.38);
  background: var(--card-strong);
}
.solution-card p {
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .site-logo { width: min(260px, 58vw); }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .solution-card, .solution-card-wide { grid-column: span 1; }
}
@media (max-width: 680px) {
  .site-logo { width: min(215px, 68vw); }
  .solutions-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; }
}

/* Final logo sizing refinement */
.site-header .site-logo-link {
  align-items: center;
}

.site-header .site-logo {
  width: auto !important;
  height: 78px !important;
  max-width: 170px !important;
  object-fit: contain !important;
}

.site-header .nav {
  min-height: 92px;
}

.footer-logo-link .site-logo {
  width: auto !important;
  height: 118px !important;
  max-width: 190px !important;
  object-fit: contain !important;
}

.footer-main {
  align-items: center;
}

@media (max-width: 760px) {
  .site-header .site-logo {
    height: 62px !important;
    max-width: 140px !important;
  }

  .site-header .nav {
    min-height: 78px;
  }

  .footer-logo-link .site-logo {
    height: 96px !important;
    max-width: 160px !important;
  }
}
