/* SoluView — Premium minimal SaaS landing (light theme) */

:root {
  --bg: #ffffff;
  --bg-soft: #f5f9ff;
  --text: #0b1220;
  --muted: rgba(11, 18, 32, 0.72);
  --muted-2: rgba(11, 18, 32, 0.55);
  --border: rgba(10, 132, 255, 0.08);
  --border-2: rgba(11, 18, 32, 0.08);

  --blue-1: #0a84ff;
  --blue-2: #0066ff;
  --blue-3: #36a3ff;

  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 6px 18px rgba(11, 18, 32, 0.06);
  --shadow-md: 0 18px 50px rgba(11, 18, 32, 0.10);
  --shadow-glow: 0 20px 70px rgba(10, 132, 255, 0.16);

  --container: 1280px;
  --section-y: 120px;

  --grad: linear-gradient(135deg, var(--blue-1) 0%, var(--blue-3) 55%, var(--blue-2) 110%);
  --grad-soft: radial-gradient(1200px 700px at 20% 10%, rgba(10, 132, 255, 0.14), transparent 60%),
    radial-gradient(900px 600px at 80% 20%, rgba(54, 163, 255, 0.12), transparent 60%),
    radial-gradient(700px 700px at 70% 90%, rgba(0, 102, 255, 0.10), transparent 55%);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

.section {
  padding: var(--section-y) 0;
}

.section--soft {
  background: var(--bg-soft);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(11, 18, 32, 0.8);
}

.kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 99px;
  background: var(--grad);
  box-shadow: 0 0 0 4px rgba(10, 132, 255, 0.12);
}

.h1 {
  font-size: clamp(44px, 5vw, 72px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 16px 0 0;
  font-weight: 800;
}

.h2 {
  font-size: clamp(34px, 3.5vw, 52px);
  line-height: 1.12;
  letter-spacing: -0.03em;
  margin: 0;
  font-weight: 800;
}

.lead {
  margin: 18px 0 0;
  font-size: 18px;
  color: var(--muted);
  max-width: 64ch;
}

.muted {
  color: var(--muted);
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Navbar */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
}

.nav-inner {
  margin: 16px auto 0;
  width: min(var(--container), calc(100% - 24px));
  border-radius: 999px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(14px);
  transition: box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
  box-shadow: 0 0 0 rgba(11, 18, 32, 0);
}

.nav-inner.is-scrolled {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 10px 40px rgba(11, 18, 32, 0.08);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  gap: 14px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 170px;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
  padding: 2px;
  filter: drop-shadow(0 10px 26px rgba(10, 132, 255, 0.18));
}

.brand span {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: rgba(11, 18, 32, 0.78);
  padding: 10px 10px;
  border-radius: 12px;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover {
  background: rgba(10, 132, 255, 0.08);
  color: rgba(11, 18, 32, 0.92);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.btn {
  border: 1px solid var(--border-2);
  background: #fff;
  color: rgba(11, 18, 32, 0.9);
  border-radius: 999px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
  box-shadow: 0 6px 14px rgba(11, 18, 32, 0.06);
  cursor: pointer;
  user-select: none;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.10);
}

.btn--primary {
  border-color: rgba(10, 132, 255, 0.18);
  background: var(--grad);
  color: #fff;
  box-shadow: 0 14px 34px rgba(10, 132, 255, 0.22);
}

.btn--primary:hover {
  box-shadow: 0 18px 44px rgba(10, 132, 255, 0.26);
}

.btn-icon {
  width: 18px;
  height: 18px;
  display: inline-block;
}

.hamburger {
  display: none;
  border: 1px solid var(--border-2);
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  padding: 10px 12px;
  box-shadow: 0 6px 14px rgba(11, 18, 32, 0.06);
}

/* Hero */
.hero {
  position: relative;
  padding: 54px 0 110px;
}

.hero-bg {
  position: absolute;
  inset: -180px -140px auto -140px;
  height: 760px;
  background: var(--grad-soft);
  filter: blur(0px);
  pointer-events: none;
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  padding-top: 40px;
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-meta {
  margin-top: 22px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted-2);
  font-size: 14px;
}

.hero-meta strong {
  color: rgba(11, 18, 32, 0.92);
  font-weight: 800;
}

.viz {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
  overflow: hidden;
  min-height: 520px;
}

.viz::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(800px 500px at 30% 20%, rgba(10, 132, 255, 0.26), transparent 60%),
    radial-gradient(700px 420px at 90% 40%, rgba(54, 163, 255, 0.20), transparent 60%),
    radial-gradient(600px 600px at 50% 110%, rgba(0, 102, 255, 0.12), transparent 50%);
  opacity: 0.8;
}

.viz-inner {
  position: relative;
  padding: 22px;
  height: 100%;
}

.viz-frame {
  position: absolute;
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.viz-top {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(11, 18, 32, 0.07);
}

.viz-dots {
  display: flex;
  gap: 8px;
}

.viz-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: rgba(11, 18, 32, 0.14);
}

.viz-title {
  font-size: 13px;
  font-weight: 700;
  color: rgba(11, 18, 32, 0.75);
}

.viz-body {
  padding: 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.glass-card {
  border-radius: 20px;
  border: 1px solid rgba(10, 132, 255, 0.10);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
  padding: 14px 14px;
}

.glass-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10, 132, 255, 0.12);
  background: rgba(10, 132, 255, 0.06);
  color: rgba(11, 18, 32, 0.85);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.badge i {
  width: 9px;
  height: 9px;
  border-radius: 99px;
  background: var(--grad);
  display: inline-block;
}

.mini {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

.metric {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric .item {
  border-radius: 16px;
  border: 1px solid rgba(11, 18, 32, 0.07);
  background: rgba(255, 255, 255, 0.66);
  padding: 12px 12px;
}

.metric .value {
  font-weight: 900;
  letter-spacing: -0.03em;
  font-size: 18px;
}

.metric .label {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
}

.float {
  position: absolute;
  right: 28px;
  top: 98px;
  width: min(270px, 55%);
  transform: rotate(2deg);
  animation: floaty 8s ease-in-out infinite;
}

.float-2 {
  left: 26px;
  bottom: 28px;
  width: min(300px, 64%);
  transform: rotate(-1.5deg);
  animation: floaty 10s ease-in-out infinite;
}

@keyframes floaty {
  0%, 100% { transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { transform: translateY(-10px) rotate(var(--r, 0deg)); }
}

/* Trusted by marquee */
.marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  animation: marquee 26s linear infinite;
  filter: grayscale(1);
  opacity: 0.8;
}

.marquee:hover .marquee-track {
  animation-play-state: paused;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--marquee-distance, 50%))); }
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255,255,255,0.7);
  color: rgba(11, 18, 32, 0.65);
  font-weight: 800;
  letter-spacing: -0.01em;
  font-size: 14px;
}

/* Section header */
.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  max-width: 60ch;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

.card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
  border-color: rgba(10, 132, 255, 0.16);
}

.icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(10, 132, 255, 0.10);
  border: 1px solid rgba(10, 132, 255, 0.14);
  color: rgba(11, 18, 32, 0.85);
  font-weight: 900;
  letter-spacing: -0.02em;
}

.icon svg {
  width: 22px;
  height: 22px;
}

.icon svg path,
.icon svg circle,
.icon svg rect {
  stroke: rgba(11, 18, 32, 0.82);
}

.icon--solid svg path,
.icon--solid svg circle,
.icon--solid svg rect {
  fill: rgba(11, 18, 32, 0.82);
  stroke: none;
}

.card h3 {
  margin: 14px 0 6px;
  font-size: 18px;
  letter-spacing: -0.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

/* Showcase */
.showcase {
  overflow: hidden;
}

.showcase-rail {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(245,249,255,0.9));
  box-shadow: var(--shadow-md);
  padding: 18px;
}

.showcase-track {
  display: flex;
  gap: 16px;
  width: max-content;
  will-change: transform;
  animation: rail 34s linear infinite;
}

.showcase-rail:hover .showcase-track {
  animation-play-state: paused;
}

@keyframes rail {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--rail-distance, 50%))); }
}

.shot {
  width: min(520px, 78vw);
  border-radius: 26px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 16px 50px rgba(11, 18, 32, 0.12);
  position: relative;
}

.shot-media {
  aspect-ratio: 16 / 10;
  width: 100%;
  background: radial-gradient(700px 400px at 30% 30%, rgba(10, 132, 255, 0.20), transparent 55%),
    radial-gradient(600px 380px at 80% 40%, rgba(54, 163, 255, 0.16), transparent 55%),
    #ffffff;
}

.shot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shot-label {
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.shot-label strong {
  font-size: 14px;
  letter-spacing: -0.02em;
}

.shot-label span {
  font-size: 12px;
  color: var(--muted-2);
}

/* Industries */
.industries {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

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

.orb {
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.74);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 18px 16px;
  min-height: 120px;
  display: grid;
  place-items: center;
  text-align: center;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.orb:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 50px rgba(11, 18, 32, 0.10);
}

.orb b {
  display: block;
  font-size: 14px;
  letter-spacing: -0.02em;
}

.orb small {
  display: block;
  color: var(--muted-2);
  margin-top: 6px;
  font-size: 12px;
}

/* Why / Process */
.two-col {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: start;
}

.benefits {
  display: grid;
  gap: 12px;
}

.benefit {
  display: flex;
  gap: 12px;
  padding: 14px 14px;
  border-radius: 18px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-sm);
}

.check {
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(10, 132, 255, 0.12);
  border: 1px solid rgba(10, 132, 255, 0.16);
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.benefit b {
  display: block;
  letter-spacing: -0.02em;
}

.benefit p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.step {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-sm);
  padding: 16px 16px;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 14px;
  align-items: start;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(10, 132, 255, 0.10);
  border: 1px solid rgba(10, 132, 255, 0.14);
  font-weight: 900;
}

.step h4 {
  margin: 2px 0 4px;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Testimonials */
.quotes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.quote {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.78);
  box-shadow: var(--shadow-sm);
  padding: 18px 18px;
}

.quote p {
  margin: 0;
  color: rgba(11, 18, 32, 0.78);
  font-size: 15px;
}

.quote .who {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted-2);
  font-size: 13px;
}

.quote .who b {
  color: rgba(11, 18, 32, 0.86);
  letter-spacing: -0.02em;
}

/* CTA banner */
.cta {
  border-radius: var(--radius-xl);
  background: var(--grad);
  color: #fff;
  box-shadow: 0 30px 90px rgba(10, 132, 255, 0.26);
  overflow: hidden;
  position: relative;
}

.cta::before {
  content: "";
  position: absolute;
  inset: -120px -80px -80px -80px;
  background:
    radial-gradient(720px 420px at 20% 30%, rgba(255,255,255,0.25), transparent 60%),
    radial-gradient(520px 420px at 70% 10%, rgba(255,255,255,0.18), transparent 55%),
    radial-gradient(520px 520px at 80% 90%, rgba(255,255,255,0.16), transparent 55%);
  opacity: 0.9;
}

.cta-inner {
  position: relative;
  padding: 46px 40px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 18px;
  align-items: center;
}

.cta h3 {
  margin: 0;
  font-size: clamp(26px, 2.4vw, 38px);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.cta p {
  margin: 10px 0 0;
  opacity: 0.92;
  font-size: 16px;
}

.cta-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.btn--cta {
  background: rgba(255,255,255,0.92);
  border-color: rgba(255,255,255,0.65);
  color: rgba(11, 18, 32, 0.92);
}

.btn--cta:hover {
  background: #fff;
}

.btn--ghost {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.35);
  color: rgba(255,255,255,0.95);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255,255,255,0.14);
  box-shadow: none;
}

/* Page focus (chat / deep links) */
#contact.is-page-focus,
#proposal-form.is-page-focus {
  outline: 2px solid rgba(10, 132, 255, 0.45);
  outline-offset: 6px;
  border-radius: 24px;
  animation: page-focus-pulse 2s ease;
}

@keyframes page-focus-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(10, 132, 255, 0.35);
  }
  40% {
    box-shadow: 0 0 0 10px rgba(10, 132, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(10, 132, 255, 0);
  }
}

/* Footer */
/* Proposal form status */
.form-status {
  margin: 0 40px 12px;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.form-status--success {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: rgba(11, 18, 32, 0.92);
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.10);
}

.form-status--error {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  color: #9b2c2c;
  box-shadow: 0 12px 32px rgba(11, 18, 32, 0.10);
}

@media (max-width: 768px) {
  .form-status {
    margin: 0 0 12px;
  }
}

footer {
  padding: 90px 0 70px;
  color: rgba(11, 18, 32, 0.74);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 22px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: rgba(11, 18, 32, 0.9);
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 0;
  object-fit: contain;
  padding: 2px;
  filter: drop-shadow(0 10px 26px rgba(10, 132, 255, 0.18));
}

.footer-small {
  margin-top: 14px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 14px;
}

.footer-col h5 {
  margin: 6px 0 10px;
  font-size: 13px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.6);
}

.footer-col a {
  display: inline-block;
  padding: 8px 0;
  color: rgba(11, 18, 32, 0.74);
  font-weight: 600;
  font-size: 14px;
}

.footer-col a:hover {
  color: rgba(11, 18, 32, 0.92);
}

.footer-bottom {
  margin-top: 26px;
  padding-top: 18px;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.6);
}

.social {
  display: flex;
  gap: 10px;
}

.social a {
  width: 38px;
  height: 38px;
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  display: grid;
  place-items: center;
  background: rgba(255,255,255,0.8);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.social a:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(11, 18, 32, 0.10);
}

/* Fade-in on scroll */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .viz {
    min-height: 480px;
  }

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

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

  .two-col,
  .industries {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .quotes {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cta-actions {
    justify-content: flex-start;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  :root {
    --section-y: 88px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee-track, .showcase-track { animation: none !important; }
  .reveal { transition: none; }
}

