/* ===================================================
   AtomMatrix.ai — stylesheet
   Modern dark AI theme, responsive, glassmorphism
   =================================================== */

:root {
  --bg: #070812;
  --bg-2: #0b0d1f;
  --surface: rgba(255, 255, 255, 0.04);
  --surface-2: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.10);
  --border-strong: rgba(255, 255, 255, 0.18);
  --text: #eef0fb;
  --text-muted: #a2a7c4;
  --text-dim: #767b9c;

  --brand: #6d5efc;
  --brand-2: #22d3ee;
  --brand-3: #d946ef;
  --grad: linear-gradient(120deg, #6d5efc 0%, #22d3ee 100%);
  --grad-soft: linear-gradient(120deg, rgba(109,94,252,0.18), rgba(34,211,238,0.18));

  --radius: 16px;
  --radius-lg: 22px;
  --maxw: 1200px;
  --header-h: 72px;
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.6);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: "Space Grotesk", "Inter", sans-serif; line-height: 1.12; letter-spacing: -0.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-weight: 600; font-size: 0.95rem;
  padding: 13px 26px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s;
  white-space: nowrap;
}
.btn--sm { padding: 9px 18px; font-size: 0.9rem; }
.btn--primary { background: var(--grad); color: #fff; box-shadow: 0 10px 30px -10px rgba(109, 94, 252, 0.7); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 38px -12px rgba(109, 94, 252, 0.85); }
.btn--ghost { background: var(--surface); color: var(--text); border-color: var(--border-strong); backdrop-filter: blur(8px); }
.btn--ghost:hover { background: var(--surface-2); transform: translateY(-2px); }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  display: flex; align-items: center;
  transition: background 0.3s, backdrop-filter 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.header.is-scrolled {
  background: rgba(7, 8, 18, 0.78);
  backdrop-filter: blur(14px);
  border-bottom-color: var(--border);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.header__logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 700; }
.header__logo-mark { color: var(--brand-2); display: inline-flex; filter: drop-shadow(0 0 8px rgba(34,211,238,0.5)); }
.header__logo-text { font-family: "Space Grotesk", sans-serif; font-size: 1.2rem; letter-spacing: -0.01em; }
.header__logo-dot { background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }

.header__nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.header__link { color: var(--text-muted); font-size: 0.95rem; font-weight: 500; position: relative; transition: color 0.2s; }
.header__link::after { content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--grad); transition: width 0.25s var(--ease); }
.header__link:hover { color: var(--text); }
.header__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 14px; }

.header__toggle { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--surface); border: 1px solid var(--border); border-radius: 12px; cursor: pointer; }
.header__toggle span { width: 20px; height: 2px; background: var(--text); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.header__toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.header__toggle.is-open span:nth-child(2) { opacity: 0; }
.header__toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; top: var(--header-h); left: 0; right: 0; z-index: 99;
  background: rgba(9, 11, 26, 0.97); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  display: flex; flex-direction: column; padding: 18px 24px 26px;
  gap: 6px; transform: translateY(-120%); transition: transform 0.35s var(--ease);
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu__link { padding: 14px 6px; font-size: 1.05rem; font-weight: 500; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.mobile-menu__link:hover { color: var(--text); }
.mobile-menu__cta { margin-top: 16px; }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; padding-top: var(--header-h); }
.hero__bg { position: absolute; inset: 0; z-index: 0; background: radial-gradient(1200px 600px at 70% -10%, rgba(109,94,252,0.25), transparent 60%), radial-gradient(900px 500px at 0% 100%, rgba(34,211,238,0.18), transparent 55%), var(--bg); }
.hero__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px); background-size: 54px 54px; mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 80%); -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 40%, transparent 80%); }
.hero__glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.5; }
.hero__glow--1 { width: 480px; height: 480px; background: var(--brand); top: -120px; right: -80px; animation: float 14s ease-in-out infinite; }
.hero__glow--2 { width: 420px; height: 420px; background: var(--brand-2); bottom: -140px; left: -100px; animation: float 16s ease-in-out infinite reverse; }
.hero__bg-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.30; mix-blend-mode: luminosity; }
.hero__bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,11,30,0.35) 0%, rgba(10,11,30,0.55) 55%, var(--bg) 100%); }
@keyframes float { 0%,100% { transform: translate(0,0);} 50% { transform: translate(30px, 40px);} }

.hero__slides { position: relative; z-index: 2; width: 100%; }
.hero__slide { display: none; }
.hero__slide.is-active { display: block; animation: fadeUp 0.7s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px);} to { opacity: 1; transform: translateY(0);} }

.hero__content { max-width: 760px; }
.hero__eyebrow { display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--brand-2); padding: 7px 16px; border: 1px solid var(--border-strong); border-radius: 999px; background: var(--surface); margin-bottom: 22px; }
.hero__title { font-size: clamp(2.6rem, 6vw, 4.8rem); font-weight: 700; margin-bottom: 22px; }
.hero__title { background: linear-gradient(180deg, #fff 30%, #b9bce0 120%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero__subtitle { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-muted); max-width: 600px; margin-bottom: 34px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero__dots { position: absolute; bottom: 42px; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: 12px; }
.hero__dot { width: 34px; height: 5px; border-radius: 999px; border: none; background: rgba(255,255,255,0.2); cursor: pointer; transition: background 0.3s, width 0.3s; }
.hero__dot.is-active { background: var(--grad); width: 48px; }

/* ---------- Stats ---------- */
.stats { position: relative; margin-top: -1px; background: linear-gradient(180deg, var(--bg), var(--bg-2)); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stats__inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 40px; padding: 46px 24px; }
.stats__lead { display: flex; align-items: center; gap: 18px; max-width: 460px; }
.stats__badge { flex: none; width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; color: var(--brand-2); background: var(--grad-soft); border: 1px solid var(--border); }
.stats__headline { color: var(--text-muted); font-size: 1.02rem; }
.stats__headline strong { color: var(--text); }
.stats__data { display: flex; gap: 46px; flex-wrap: wrap; }
.stats__stat { display: flex; flex-direction: column; }
.stats__num { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stats__label { color: var(--text-dim); font-size: 0.9rem; }

/* ---------- Sections ---------- */
.section { padding: 110px 0; position: relative; }
.section__eyebrow { text-align: center; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--brand-2); margin-bottom: 14px; }
.section__title { text-align: center; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 18px; }
.section__title--left { text-align: left; }
.section__subtitle { text-align: center; color: var(--text-muted); max-width: 640px; margin: 0 auto 60px; font-size: 1.08rem; }

/* ---------- Products ---------- */
.products__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card {
  position: relative; padding: 34px 30px; border-radius: var(--radius-lg);
  background: var(--surface); border: 1px solid var(--border);
  overflow: hidden; transition: transform 0.35s var(--ease), border-color 0.35s, background 0.35s;
}
.product-card::before { content: ""; position: absolute; inset: 0; background: var(--grad-soft); opacity: 0; transition: opacity 0.35s; }
.product-card > * { position: relative; z-index: 1; }
.product-card:hover { transform: translateY(-6px); border-color: var(--border-strong); }
.product-card:hover::before { opacity: 1; }
.product-card__icon { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; overflow: hidden; background: var(--grad); color: #fff; box-shadow: 0 10px 24px -10px rgba(109,94,252,0.8); }
.product-card__icon svg { width: 26px; height: 26px; }
.product-card__icon img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.12); }
.product-card__title { font-size: 1.28rem; margin-bottom: 10px; }
.product-card__desc { color: var(--text-muted); font-size: 0.98rem; margin-bottom: 20px; }
.product-card__link { font-weight: 600; color: var(--brand-2); font-size: 0.95rem; }

/* ---------- Platform ---------- */
.platform { background: linear-gradient(180deg, var(--bg), var(--bg-2)); }
.platform__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.platform__img { aspect-ratio: 4 / 3; border-radius: var(--radius-lg); width: 100%; height: 100%; object-fit: cover; display: block; border: 1px solid var(--border); }
.platform__lead { color: var(--text-muted); font-size: 1.08rem; margin: 6px 0 30px; }
.platform__features { display: grid; gap: 22px; }
.platform__features li { display: flex; gap: 16px; }
.platform__feature-icon { flex: none; width: 46px; height: 46px; border-radius: 12px; display: grid; place-items: center; color: var(--brand-2); background: var(--grad-soft); border: 1px solid var(--border); }
.platform__feature-icon svg { width: 22px; height: 22px; }
.platform__features strong { display: block; font-size: 1.05rem; margin-bottom: 2px; }
.platform__features p { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Solutions ---------- */
.solutions__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.solution-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; border: 1px solid var(--border); }
.solution-card__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.solution-card:hover .solution-card__bg { transform: scale(1.06); }
.solution-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7,8,18,0.1) 0%, rgba(7,8,18,0.55) 55%, rgba(7,8,18,0.94) 100%); z-index: 1; }
.solution-card__overlay { position: absolute; inset: auto 0 0 0; z-index: 2; padding: 28px; transition: transform 0.4s var(--ease); }
.solution-card__title { font-size: 1.32rem; margin-bottom: 8px; }
.solution-card__desc { color: var(--text-muted); font-size: 0.96rem; margin-bottom: 14px; }
.solution-card__link { font-weight: 600; color: var(--brand-2); opacity: 0; transform: translateY(8px); transition: opacity 0.35s, transform 0.35s; display: inline-block; }
.solution-card:hover .solution-card__overlay { transform: translateY(-6px); }
.solution-card:hover .solution-card__link { opacity: 1; transform: translateY(0); }

/* ---------- CTA banner ---------- */
.cta-banner { padding: 40px 0; }
.cta-banner__inner { position: relative; overflow: hidden; text-align: center; padding: 64px 32px; border-radius: 28px; background: var(--grad-soft); border: 1px solid var(--border-strong); }
.cta-banner__inner::before { content: ""; position: absolute; inset: 0; z-index: 1; background: radial-gradient(600px 300px at 50% -40%, rgba(109,94,252,0.4), transparent 70%); }
.cta-banner__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.22; mix-blend-mode: luminosity; z-index: 0; }
.cta-banner__inner > *:not(.cta-banner__bg) { position: relative; z-index: 2; }
.cta-banner__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.cta-banner__text { color: var(--text-muted); max-width: 520px; margin: 0 auto 28px; }
.cta-banner__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---------- Contact ---------- */
.contact { overflow: hidden; }
.contact__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.12; mix-blend-mode: luminosity; pointer-events: none; }
.contact > .container { position: relative; z-index: 1; }
.contact__wrap { display: grid; grid-template-columns: 1.4fr 1fr; gap: 30px; align-items: stretch; }
.contact__form { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 16px; }
.contact__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact__input { width: 100%; background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 12px; padding: 14px 16px; color: var(--text); font: inherit; font-size: 0.97rem; transition: border-color 0.2s, background 0.2s; }
.contact__input::placeholder { color: var(--text-dim); }
.contact__input:focus { outline: none; border-color: var(--brand); background: rgba(109,94,252,0.06); }
.contact__textarea { resize: vertical; min-height: 120px; }
.contact__submit { align-self: flex-start; margin-top: 4px; }
.contact__note { color: var(--text-muted); font-size: 0.9rem; }
.contact__note.is-success { color: var(--brand-2); }
.contact__note.is-error { color: #ff8095; }
/* Honeypot — visually hidden but present for bots */
.contact__hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }

.contact__info { background: var(--grad-soft); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 34px; display: flex; flex-direction: column; gap: 24px; }
.contact__item { display: flex; flex-direction: column; gap: 4px; }
.contact__label { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dim); }
.contact__value { color: var(--text); font-size: 1.05rem; font-weight: 500; }
a.contact__value:hover { color: var(--brand-2); }
.contact__socials { display: flex; gap: 12px; margin-top: auto; }
.contact__social { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: var(--surface-2); border: 1px solid var(--border); font-weight: 600; font-size: 0.9rem; transition: background 0.2s, transform 0.2s; }
.contact__social:hover { background: var(--grad); color: #fff; transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { background: var(--bg-2); border-top: 1px solid var(--border); padding-top: 64px; }
.footer__inner { display: grid; grid-template-columns: 1.4fr 2fr; gap: 50px; padding-bottom: 48px; }
.footer__tagline { color: var(--text-dim); margin-top: 16px; max-width: 320px; font-size: 0.96rem; }
.header__logo--footer { margin-bottom: 4px; }
.footer__columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.footer__column-title { font-size: 0.95rem; font-family: "Inter", sans-serif; margin-bottom: 16px; color: var(--text); }
.footer__column li { margin-bottom: 10px; }
.footer__column a { color: var(--text-muted); font-size: 0.95rem; transition: color 0.2s; }
.footer__column a:hover { color: var(--brand-2); }
.footer__bottom { border-top: 1px solid var(--border); padding: 22px 0; }
.footer__bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--text-dim); font-size: 0.9rem; }
.footer__legal { display: flex; gap: 22px; }
.footer__legal a:hover { color: var(--brand-2); }

/* ---------- Image placeholders ---------- */
.img-placeholder {
  position: relative;
  background:
    repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0 12px, transparent 12px 24px),
    var(--grad-soft);
  border: 1px dashed var(--border-strong);
  display: grid; place-items: center;
  color: var(--text-dim); font-size: 0.85rem; letter-spacing: 0.05em; text-transform: uppercase;
}
.img-placeholder span { padding: 6px 12px; border-radius: 8px; background: rgba(0,0,0,0.3); }

/* ---------- Product detail pages ---------- */
.prod-hero { position: relative; overflow: hidden; padding: calc(var(--header-h) + 80px) 0 80px; }
.prod-hero__inner { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 56px; align-items: center; position: relative; z-index: 2; }
.prod-hero__badge { display: inline-flex; align-items: center; gap: 10px; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--brand-2); padding: 8px 16px; border: 1px solid var(--border-strong); border-radius: 999px; background: var(--surface); margin-bottom: 22px; }
.prod-hero__badge svg { width: 18px; height: 18px; }
.prod-hero__title { font-size: clamp(2.3rem, 5vw, 3.8rem); font-weight: 700; margin-bottom: 20px; background: linear-gradient(180deg, #fff 30%, #b9bce0 120%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.prod-hero__lead { font-size: clamp(1.05rem, 1.6vw, 1.25rem); color: var(--text-muted); max-width: 560px; margin-bottom: 30px; }
.prod-hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Decorative visual panel (no image required) */
.prod-visual { position: relative; aspect-ratio: 5 / 4; border-radius: var(--radius-lg); border: 1px solid var(--border); background: linear-gradient(160deg, rgba(109,94,252,0.16), rgba(34,211,238,0.10)); overflow: hidden; box-shadow: var(--shadow); }
.prod-visual__grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px); background-size: 34px 34px; mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 40%, transparent 85%); -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 40%, #000 40%, transparent 85%); }
.prod-visual__mark { position: absolute; inset: 0; display: grid; place-items: center; color: var(--brand-2); filter: drop-shadow(0 0 20px rgba(34,211,238,0.5)); }
.prod-visual__mark svg { width: 44%; height: 44%; opacity: 0.92; }
.prod-visual__glow { position: absolute; width: 260px; height: 260px; border-radius: 50%; filter: blur(80px); opacity: 0.5; background: var(--brand); top: -60px; right: -40px; }

.prod-hero__img { width: 100%; height: 100%; aspect-ratio: 5 / 4; object-fit: cover; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); display: block; }

/* Feature grid (reuses product-card look) */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* How it works — steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 30px 26px; border-radius: var(--radius-lg); background: var(--surface); border: 1px solid var(--border); }
.step__num { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--grad); color: #fff; font-family: "Space Grotesk", sans-serif; font-weight: 700; margin-bottom: 16px; box-shadow: 0 10px 24px -10px rgba(109,94,252,0.8); }
.step__title { font-size: 1.12rem; margin-bottom: 8px; }
.step__desc { color: var(--text-muted); font-size: 0.95rem; }

/* Use cases — checklist */
.usecases { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px 40px; max-width: 940px; margin: 0 auto; }
.usecase { display: flex; gap: 14px; align-items: flex-start; padding: 18px 0; border-bottom: 1px solid var(--border); }
.usecase__check { flex: none; width: 28px; height: 28px; border-radius: 8px; display: grid; place-items: center; color: var(--brand-2); background: var(--grad-soft); border: 1px solid var(--border); }
.usecase__check svg { width: 16px; height: 16px; }
.usecase__text strong { display: block; margin-bottom: 2px; }
.usecase__text p { color: var(--text-dim); font-size: 0.93rem; }

/* Spec / highlight strip */
.prod-highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 42px; border-radius: var(--radius-lg); background: var(--grad-soft); border: 1px solid var(--border-strong); }
.prod-highlight { text-align: center; }
.prod-highlight__num { font-family: "Space Grotesk", sans-serif; font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.prod-highlight__label { color: var(--text-dim); font-size: 0.9rem; margin-top: 4px; }

.section--tight { padding: 84px 0; }
.breadcrumb { display: flex; gap: 8px; align-items: center; color: var(--text-dim); font-size: 0.88rem; margin-bottom: 26px; }
.breadcrumb a:hover { color: var(--brand-2); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .products__grid, .solutions__grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .platform__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__wrap { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .prod-hero__inner { grid-template-columns: 1fr; gap: 40px; }
  .prod-hero__visual { order: -1; max-width: 480px; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .prod-highlights { grid-template-columns: repeat(2, 1fr); gap: 30px; padding: 34px; }
}

@media (max-width: 760px) {
  .header__nav { display: none; }
  .header__toggle { display: flex; }
  .header__actions .btn--primary { display: none; }
  .section { padding: 78px 0; }
  .products__grid, .solutions__grid, .feature-grid { grid-template-columns: 1fr; }
  .usecases { grid-template-columns: 1fr; gap: 0 0; }
  .footer__columns { grid-template-columns: repeat(2, 1fr); }
  .stats__inner { gap: 28px; }
  .stats__data { gap: 30px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
