/* ==========================================================================
   Awhere — Real-Time Emergency Response Platform
   Design system inspired by Google Workspace product pages: light, airy,
   confident. Brand purple derived from the Awhere pin.
   ========================================================================== */

:root {
  /* Brand */
  --purple:      #7B6FA0;
  --purple-600:  #6A5E92;
  --purple-700:  #574B80;
  --purple-200:  #C9C1E3;
  --purple-100:  #E9E5F4;
  --purple-50:   #F5F3FA;

  /* Neutrals (Google Material greys) */
  --ink:         #202124;
  --ink-2:       #5F6368;
  --ink-3:       #80868B;
  --line:        #E8EAED;
  --line-2:      #DADCE0;
  --surface:     #FFFFFF;
  --surface-2:   #F8F9FA;

  /* Semantic */
  --green:  #1E8E3E;
  --green-100: #E6F4EA;
  --amber:  #F29900;
  --amber-100: #FEF3E0;
  --red:    #D93025;
  --red-100: #FCE8E6;
  --blue:   #1A73E8;

  /* Type */
  --font-display: "Plus Jakarta Sans", "Google Sans", system-ui, sans-serif;
  --font-body:    "DM Sans", "Google Sans Text", system-ui, sans-serif;

  /* Layout */
  --container: 1520px;
  --gutter: clamp(24px, 3.5vw, 56px);
  --nav-h: 104px;

  /* Radii */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 100px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(60,64,67,.12), 0 1px 3px 1px rgba(60,64,67,.06);
  --shadow-md: 0 4px 12px rgba(60,64,67,.10), 0 1px 3px rgba(60,64,67,.08);
  --shadow-lg: 0 24px 48px -12px rgba(32,33,36,.18), 0 6px 16px rgba(32,33,36,.06);
  --shadow-purple: 0 8px 24px -8px rgba(123,111,160,.5);

  /* Motion */
  --ease: cubic-bezier(.2,.7,.2,1);
  --dur: .35s;
}

/* --------------------------------------------------------------------------
   Reset & base
   -------------------------------------------------------------------------- */
*,*::before,*::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { margin: 0; padding: 0; list-style: none; }
h1,h2,h3,h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: -0.015em; }
p { margin: 0; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 3px; border-radius: 4px; }
.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; }

.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--gutter); }
.section { padding: 112px 0; }
.section--alt { background: var(--surface-2); }
.section--tint { background: var(--purple-50); }

/* Typography */
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 12px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 16px;
}
.h1 { font-size: clamp(38px, 3.6vw, 56px); line-height: 1.08; letter-spacing: -0.025em; }
.h2 { font-size: clamp(32px, 3.3vw, 52px); line-height: 1.1; letter-spacing: -0.02em; }
.h3 { font-size: 22px; line-height: 1.3; font-weight: 600; }
.lead { font-size: 19px; line-height: 1.6; color: var(--ink-2); }
.muted { color: var(--ink-2); }
.section-head { max-width: 800px; margin-bottom: 64px; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head .lead { margin-top: 16px; }

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 48px; padding: 0 24px;
  border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 15px; font-weight: 600; letter-spacing: -0.005em;
  white-space: nowrap;
  transition: background var(--dur) var(--ease), box-shadow var(--dur) var(--ease), transform var(--dur) var(--ease), color var(--dur) var(--ease), border-color var(--dur) var(--ease);
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--purple); color: #fff; box-shadow: var(--shadow-purple); }
.btn--primary:hover { background: var(--purple-600); transform: translateY(-1px); box-shadow: 0 12px 28px -8px rgba(123,111,160,.6); }
.btn--secondary { background: var(--surface); color: var(--purple-700); border: 1px solid var(--line-2); }
.btn--secondary:hover { background: var(--purple-50); border-color: var(--purple-200); }
.btn--ghost { color: var(--purple-700); padding: 0 16px; }
.btn--ghost:hover { background: var(--purple-50); }
.btn--lg { height: 56px; padding: 0 32px; font-size: 16px; }
.btn--white { background: #fff; color: var(--purple-700); }
.btn--white:hover { background: var(--purple-50); transform: translateY(-1px); }
.btn--outline-white { color:#fff; border:1px solid rgba(255,255,255,.55); }
.btn--outline-white:hover { background: rgba(255,255,255,.12); }

.link-arrow {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--purple-700);
}
.link-arrow svg { width: 18px; height: 18px; transition: transform var(--dur) var(--ease); }
.link-arrow:hover svg { transform: translateX(3px); }

/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: 0 1px 0 rgba(0,0,0,.02), 0 8px 24px -16px rgba(32,33,36,.18); }
.nav__inner { height: 100%; display: flex; align-items: center; gap: 40px; }
.brand { display: inline-flex; align-items: center; gap: 15px; }
.brand__pin { height: 54px; width: auto; }
.brand__word { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-display); font-size: 38px; font-weight: 500; letter-spacing: -0.02em; color: #5A6064; }
.brand__tag { font-family: var(--font-display); font-size: 17px; font-weight: 400; letter-spacing: .01em; color: #7B8288; margin-top: 4px; align-self: flex-end; margin-right: 2px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 10px 16px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 15.5px; font-weight: 500; color: var(--ink-2);
  transition: background var(--dur), color var(--dur);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--ink); background: var(--surface-2); }
.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__cta .btn { height: 48px; padding: 0 24px; font-size: 15px; }
.nav__burger { display: none; width: 48px; height: 48px; border-radius: 50%; align-items: center; justify-content: center; }
.nav__burger:hover { background: var(--surface-2); }
.nav__burger svg { width: 24px; height: 24px; }

.drawer {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: 99;
  background: #fff; padding: 16px var(--gutter) 40px;
  transform: translateY(-8px); opacity: 0; pointer-events: none;
  transition: opacity var(--dur) var(--ease), transform var(--dur) var(--ease);
  overflow-y: auto;
}
.drawer.is-open { opacity: 1; transform: none; pointer-events: auto; }
.drawer a { display: block; padding: 16px 8px; font-family: var(--font-display); font-size: 20px; font-weight: 600; border-bottom: 1px solid var(--line); }
.drawer .btn { margin-top: 24px; width: 100%; }

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero { position: relative; padding: 72px 0 104px; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1; pointer-events: none;
  background:
    radial-gradient(800px 480px at 82% 30%, rgba(123,111,160,.16), transparent 60%),
    radial-gradient(500px 360px at 10% 90%, rgba(123,111,160,.08), transparent 60%);
}
.hero__grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr); gap: 64px; align-items: center; }
.hero__copy .h1 { max-width: 21ch; }
.hero__copy .lead { max-width: 600px; margin-top: 28px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.hero__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 36px; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 12px 7px 10px; border-radius: var(--r-pill);
  background: var(--surface); border: 1px solid var(--line);
  font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink-2);
}
.chip svg { width: 14px; height: 14px; color: var(--purple); }

/* Hero visual: Virtual Command mockup */
.hero__visual { position: relative; }
.mock {
  position: relative;
  background: #fff; border-radius: 18px; border: 1px solid var(--line);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  transform: perspective(1400px) rotateY(-4deg) rotateX(2deg);
  transform-origin: 60% 50%;
}
.mock__bar {
  display: flex; align-items: center; gap: 10px; height: 44px; padding: 0 14px;
  border-bottom: 1px solid var(--line); background: var(--surface-2);
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600; color: var(--ink-2);
}
.mock__dots { display: flex; gap: 6px; }
.mock__dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--line-2); }
.mock__title { margin-left: 4px; }
.mock__status { margin-left: auto; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--r-pill); background: var(--red-100); color: var(--red); font-size: 11.5px; }
.mock__status i { width: 7px; height: 7px; border-radius: 50%; background: var(--red); animation: blink 1.4s infinite; }
.mock__body { display: grid; grid-template-columns: 1fr clamp(176px, 22%, 220px); }
.mock__map { padding: 14px; border-right: 1px solid var(--line); }
.mock__map > svg { width: 100%; height: auto; }
.mock__side { padding: 12px; display: flex; flex-direction: column; gap: 10px; background: var(--surface-2); }
.mock__label { font-family: var(--font-display); font-size: 10.5px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-3); }
.feed { position: relative; height: 54px; border-radius: 8px; overflow: hidden; background: linear-gradient(135deg, #6f6a8a, #3f3a57); }
.feed::after { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(0deg, rgba(255,255,255,.03) 0 1px, transparent 1px 3px); }
.feed span { position: absolute; left: 6px; top: 5px; display: inline-flex; align-items: center; gap: 4px; padding: 2px 6px; border-radius: 4px; background: rgba(0,0,0,.45); color: #fff; font-family: var(--font-display); font-size: 9px; font-weight: 700; letter-spacing: .06em; z-index: 1; }
.feed span i { width: 5px; height: 5px; border-radius: 50%; background: #ff5b4d; }
.feed:nth-child(3) { background: linear-gradient(135deg, #8f8bab, #55506f); }
.feed:nth-child(4) { background: linear-gradient(135deg, #a49fc2, #6a6386); }
.alert-card { background: #fff; border: 1px solid var(--line); border-radius: 10px; padding: 10px; font-size: 11.5px; line-height: 1.4; }
.alert-card b { display: block; font-family: var(--font-display); font-size: 12px; color: var(--ink); }
.alert-card .muted { font-size: 11px; }
.mini-stat { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mini-stat div { background: #fff; border: 1px solid var(--line); border-radius: 8px; padding: 8px; }
.mini-stat b { display: block; font-family: var(--font-display); font-size: 16px; color: var(--ink); line-height: 1; }
.mini-stat small { font-size: 10px; color: var(--ink-3); }

.float-chip {
  position: absolute; z-index: 2;
  display: inline-flex; align-items: center; gap: 10px;
  padding: 10px 14px 10px 10px; border-radius: 14px;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-size: 13px; font-weight: 600; color: var(--ink);
  animation: floaty 6s ease-in-out infinite;
}
.float-chip small { display: block; font-weight: 500; font-size: 11.5px; color: var(--ink-3); }
.float-chip .ic { width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center; }
.float-chip .ic svg { width: 16px; height: 16px; }
.ic--red { background: var(--red-100); color: var(--red); }
.ic--green { background: var(--green-100); color: var(--green); }
.ic--purple { background: var(--purple-100); color: var(--purple-700); }
.ic--amber { background: var(--amber-100); color: var(--amber); }
.float-chip--1 { top: -30px; left: -26px; animation-delay: 0s; }
.float-chip--2 { right: -22px; top: 37%; animation-delay: -2s; }
.float-chip--3 { left: 6%; bottom: -26px; animation-delay: -4s; }

/* Floor plan SVG styles (shared) */
.fp .wall { fill: #fff; stroke: #D3D6DB; stroke-width: 1.5; }
.fp .floor { fill: #F8F9FA; stroke: #DADCE0; stroke-width: 2; }
.fp .corridor { fill: #F1F3F4; }
.fp .lbl { font-family: var(--font-display); font-size: 9px; font-weight: 600; fill: #9AA0A6; letter-spacing: .04em; }
.fp .pin { fill: var(--purple); stroke: #fff; stroke-width: 2; }
.fp .ring { fill: none; stroke: var(--purple); stroke-width: 1.5; opacity: 0; transform-origin: center; transform-box: fill-box; animation: ping 2.4s var(--ease) infinite; }
.fp .pin--injured { fill: var(--amber); }
.fp .ring--injured { stroke: var(--amber); }
.fp .cross { stroke: #fff; stroke-width: 1.6; stroke-linecap: round; }
.fp .hot { fill: rgba(217,48,37,.10); stroke: rgba(217,48,37,.55); stroke-width: 1.5; stroke-dasharray: 3 3; }
.fp .safe { fill: rgba(30,142,62,.08); stroke: rgba(30,142,62,.5); stroke-width: 1.5; }
.fp .route { fill: none; stroke: var(--green); stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 7 6; animation: dash 1.6s linear infinite; }
.fp .exit { fill: var(--green); }
.fp .exit-lbl { font-family: var(--font-display); font-size: 8px; font-weight: 700; fill: #fff; letter-spacing: .08em; }
.fp .tag { fill: #fff; stroke: #E8EAED; }
.fp .tag-txt { font-family: var(--font-display); font-size: 8.5px; font-weight: 600; fill: var(--ink); }
.fp .tag-sub { font-family: var(--font-body); font-size: 7.5px; fill: var(--ink-3); }

@keyframes ping { 0% { transform: scale(.4); opacity: .8; } 70% { transform: scale(2.6); opacity: 0; } 100% { opacity: 0; } }
@keyframes dash { to { stroke-dashoffset: -26; } }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: .25; } }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* --------------------------------------------------------------------------
   Stats strip
   -------------------------------------------------------------------------- */
.stats { padding: 0 0 8px; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; background: #fff; }
.stat { padding: 32px 28px; border-right: 1px solid var(--line); }
.stat:last-child { border-right: 0; }
.stat__num { font-family: var(--font-display); font-size: 40px; font-weight: 700; letter-spacing: -0.03em; color: var(--purple-700); line-height: 1; }
.stat__num sup { font-size: 18px; vertical-align: top; margin-left: 2px; color: var(--purple); }
.stat__label { margin-top: 10px; font-size: 14px; color: var(--ink-2); line-height: 1.45; }

/* --------------------------------------------------------------------------
   Two-column feature blocks
   -------------------------------------------------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 6vw, 104px); align-items: center; }
.split--reverse > :first-child { order: 2; }
.split .h2 { margin-bottom: 20px; }
.split .lead { margin-bottom: 20px; }
.split .lead + .lead { margin-top: -4px; }
.split .btn, .split .link-arrow { margin-top: 12px; }

/* Disconnected → Unified diagram */
.diagram { position: relative; border-radius: var(--r-xl); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md); padding: 28px; }
.diagram > svg { width: 100%; height: auto; }
.diagram .node { fill: #fff; stroke: var(--line-2); stroke-width: 1.5; }
.diagram .node-ic { fill: var(--ink-3); }
.diagram .link { stroke: var(--purple-200); stroke-width: 2; stroke-dasharray: 5 5; animation: dash 2s linear infinite; }
.diagram .broken { stroke: #E0E3E7; stroke-width: 2; stroke-dasharray: 2 6; }
.diagram .d-lbl { font-family: var(--font-display); font-size: 11px; font-weight: 700; fill: var(--ink-2); letter-spacing: .08em; }
.diagram .d-sub { font-family: var(--font-body); font-size: 10.5px; fill: var(--ink-3); }
.diagram .d-node-lbl { font-family: var(--font-display); font-size: 10px; font-weight: 600; fill: var(--ink-2); }
.diagram .arrow { fill: var(--purple); }

/* --------------------------------------------------------------------------
   How it works — steps
   -------------------------------------------------------------------------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
.step {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 36px 32px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-200); }
.step__num { font-family: var(--font-display); font-size: 13px; font-weight: 700; letter-spacing: .12em; color: var(--purple); }
.step__ic { width: 52px; height: 52px; border-radius: 14px; background: var(--purple-50); color: var(--purple-700); display: grid; place-items: center; margin: 20px 0 24px; }
.step__ic svg { width: 24px; height: 24px; }
.step .h3 { margin-bottom: 14px; }
.step ul { display: grid; gap: 10px; }
.step li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 15.5px; }
.step li svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.steps__cta { display: flex; justify-content: center; margin-top: 48px; }

/* --------------------------------------------------------------------------
   Platform tabs (Google-style)
   -------------------------------------------------------------------------- */
.tabs { display: flex; justify-content: center; margin-bottom: 56px; }
.tabs__list {
  display: inline-flex; gap: 4px; padding: 6px; border-radius: var(--r-pill);
  background: var(--surface-2); border: 1px solid var(--line);
  max-width: 100%; overflow-x: auto; scrollbar-width: none;
}
.tabs__list::-webkit-scrollbar { display: none; }
.tab {
  padding: 10px 20px; border-radius: var(--r-pill);
  font-family: var(--font-display); font-size: 14.5px; font-weight: 600; color: var(--ink-2); white-space: nowrap;
  transition: background var(--dur), color var(--dur), box-shadow var(--dur);
}
.tab:hover { color: var(--ink); }
.tab[aria-selected="true"] { background: #fff; color: var(--purple-700); box-shadow: var(--shadow-sm); }
.panel { display: none; }
.panel.is-active { display: grid; animation: fadeUp .45s var(--ease); }
@keyframes fadeUp { from { opacity: 0; transform: translateY(12px); } to { opacity: 1; transform: none; } }

.illus {
  position: relative; border-radius: var(--r-xl); background: var(--purple-50); padding: 32px;
  border: 1px solid var(--purple-100);
}
.illus__card { background: #fff; border-radius: 14px; border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden; }
.illus__card > svg { width: 100%; height: auto; }
.illus__badge {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px; border-radius: 10px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-md);
  font-family: var(--font-display); font-size: 12.5px; font-weight: 600;
}
.illus__badge .dot { width: 8px; height: 8px; border-radius: 50%; }
.illus__badge--tl { top: 14px; left: 14px; }
.illus__badge--br { bottom: 14px; right: 14px; }
.feature-list { display: grid; gap: 14px; margin-top: 8px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--ink-2); }
.feature-list li svg { flex: 0 0 20px; width: 20px; height: 20px; color: var(--purple); margin-top: 2px; }
.feature-list b { color: var(--ink); font-weight: 600; }

/* Map SVG */
.map .street { stroke: #E3E6EA; stroke-width: 6; stroke-linecap: round; }
.map .street--minor { stroke-width: 3; }
.map .park { fill: #E9F3EA; }
.map .block { fill: #F3F4F6; }
.map .water { fill: #E4EEF8; }
.map .fence { fill: rgba(123,111,160,.14); stroke: var(--purple); stroke-width: 2; stroke-dasharray: 6 5; }
.map .dot { fill: var(--purple); stroke: #fff; stroke-width: 1.5; }
.map .dot--out { fill: #C4C7CC; }
.map .m-lbl { font-family: var(--font-display); font-size: 9.5px; font-weight: 600; fill: #9AA0A6; }

/* Video grid SVG */
.vid .tile { fill: url(#vg1); }
.vid .tile-2 { fill: url(#vg2); }
.vid .tile-3 { fill: url(#vg3); }
.vid .tile-4 { fill: url(#vg4); }
.vid .live { fill: rgba(0,0,0,.45); }
.vid .live-txt { font-family: var(--font-display); font-size: 8px; font-weight: 700; fill: #fff; letter-spacing: .08em; }
.vid .chat { fill: #fff; stroke: var(--line); }
.vid .bubble { fill: var(--purple-50); }
.vid .bubble--me { fill: var(--purple); }
.vid .c-txt { font-family: var(--font-body); font-size: 8.5px; fill: var(--ink); }
.vid .c-txt--me { fill: #fff; }
.vid .c-name { font-family: var(--font-display); font-size: 7.5px; font-weight: 700; fill: var(--ink-3); }

/* --------------------------------------------------------------------------
   Product cards
   -------------------------------------------------------------------------- */
.products { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.product {
  display: grid; grid-template-rows: 240px auto; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.product:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--purple-200); }
.product__art { position: relative; background: linear-gradient(180deg, var(--purple-50), #fff); border-bottom: 1px solid var(--line); overflow: hidden; display: grid; place-items: center; }
.product__body { padding: 28px 32px 32px; }
.product__body .h3 { margin-bottom: 10px; }
.product__body p { color: var(--ink-2); margin-bottom: 18px; }
.product__tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px; }
.product__tags span { padding: 5px 10px; border-radius: 6px; background: var(--surface-2); border: 1px solid var(--line); font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--ink-2); }

/* mini dashboard art */
.art-dash { width: 78%; background: #fff; border-radius: 10px; border: 1px solid var(--line); box-shadow: var(--shadow-md); overflow: hidden; transform: translateY(24px); }
.art-dash__bar { height: 22px; background: var(--surface-2); border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: 4px; padding: 0 8px; }
.art-dash__bar i { width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.art-dash__grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 6px; padding: 8px; }
.art-dash__map { height: 110px; border-radius: 6px; background: repeating-linear-gradient(90deg, #F1F3F4 0 22px, #fff 22px 24px), #F8F9FA; position: relative; border: 1px solid var(--line); }
.art-dash__map i { position: absolute; width: 11px; height: 11px; border-radius: 50%; background: var(--purple); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--purple); }
.art-dash__map i:nth-child(1) { left: 22%; top: 30%; }
.art-dash__map i:nth-child(2) { left: 55%; top: 60%; }
.art-dash__map i:nth-child(3) { left: 70%; top: 25%; }
.art-dash__map i:nth-child(4) { left: 40%; top: 72%; background: var(--amber); box-shadow: 0 0 0 1px var(--amber); }
.art-dash__side { display: grid; gap: 6px; }
.art-dash__side i { display: block; height: 32px; border-radius: 5px; background: linear-gradient(135deg, #7c7796, #4a4560); }
.art-dash__side i:last-child { background: #fff; border: 1px solid var(--line); }

/* phone art */
.art-phones { display: flex; gap: 14px; align-items: flex-end; transform: translateY(30px); }
.phone { width: 96px; height: 190px; border-radius: 20px; background: #202124; padding: 6px; box-shadow: var(--shadow-lg); }
.phone--back { transform: translateY(14px) rotate(-6deg); opacity: .9; }
.phone__screen { height: 100%; border-radius: 15px; background: #fff; padding: 12px 8px; display: flex; flex-direction: column; gap: 6px; }
.phone__notch { width: 30px; height: 4px; border-radius: 2px; background: var(--line-2); margin: 0 auto 4px; }
.phone__shield { width: 34px; height: 34px; border-radius: 50%; background: var(--purple); margin: 4px auto 2px; display: grid; place-items: center; box-shadow: 0 0 0 5px var(--purple-100); }
.phone__shield svg { width: 16px; height: 16px; color: #fff; }
.phone__pill { height: 8px; border-radius: 4px; background: var(--green-100); width: 60%; margin: 6px auto 4px; }
.phone__row { height: 20px; border-radius: 5px; background: var(--surface-2); border: 1px solid var(--line); }
.phone__map { flex: 1; border-radius: 6px; background: repeating-linear-gradient(0deg, #F1F3F4 0 14px, #fff 14px 16px), #F8F9FA; border: 1px solid var(--line); position: relative; }
.phone__map i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--purple); border: 2px solid #fff; box-shadow: 0 0 0 1px var(--purple); }
.phone__map i:nth-child(1) { left: 25%; top: 25%; }
.phone__map i:nth-child(2) { left: 60%; top: 55%; }
.phone__map i:nth-child(3) { left: 40%; top: 75%; background: var(--amber); box-shadow: 0 0 0 1px var(--amber); }

/* panic button art */
.art-button { position: relative; width: 150px; height: 150px; border-radius: 50%; background: linear-gradient(145deg, #ffffff, #EEF0F3); box-shadow: 0 20px 40px -18px rgba(32,33,36,.35), inset 0 1px 0 #fff; display: grid; place-items: center; }
.art-button::before { content: ""; position: absolute; inset: 14px; border-radius: 50%; border: 3px solid var(--purple-200); box-shadow: 0 0 0 6px rgba(123,111,160,.10); animation: glowring 2.6s ease-in-out infinite; }
.art-button__core { width: 84px; height: 84px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #9d92c4, var(--purple) 55%, var(--purple-700)); box-shadow: 0 10px 22px -10px rgba(87,75,128,.7), inset 0 2px 4px rgba(255,255,255,.35); display: grid; place-items: center; }
.art-button__core svg { width: 32px; height: 32px; color: #fff; }
@keyframes glowring { 0%,100% { box-shadow: 0 0 0 6px rgba(123,111,160,.10); } 50% { box-shadow: 0 0 0 12px rgba(123,111,160,.05); } }

/* wearable art */
.art-wear { position: relative; display: grid; place-items: center; transform: translateY(6px); }
.badge { width: 128px; height: 168px; border-radius: 14px; background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow-lg); padding: 14px; position: relative; }
.badge::before { content: ""; position: absolute; top: -26px; left: 50%; width: 18px; height: 34px; margin-left: -9px; border: 3px solid #C4C7CC; border-radius: 9px; border-bottom: 0; }
.badge__slot { width: 34px; height: 6px; border-radius: 3px; background: var(--line-2); margin: 0 auto 12px; }
.badge__photo { width: 54px; height: 54px; border-radius: 50%; background: linear-gradient(145deg, var(--purple-100), var(--purple-200)); margin: 0 auto 10px; }
.badge__line { height: 7px; border-radius: 4px; background: var(--surface-2); margin: 6px auto; }
.badge__line--long { width: 80%; } .badge__line--short { width: 55%; }
.badge__btn { position: absolute; right: -16px; bottom: 28px; width: 44px; height: 44px; border-radius: 50%; background: radial-gradient(circle at 35% 30%, #9d92c4, var(--purple) 55%, var(--purple-700)); box-shadow: 0 8px 18px -8px rgba(87,75,128,.8), 0 0 0 5px #fff; display: grid; place-items: center; }
.badge__btn svg { width: 18px; height: 18px; color: #fff; }

/* --------------------------------------------------------------------------
   Capabilities grid
   -------------------------------------------------------------------------- */
.caps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cap { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 28px 24px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur); }
.cap:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.cap__ic { width: 44px; height: 44px; border-radius: 12px; background: var(--purple-50); color: var(--purple-700); display: grid; place-items: center; margin-bottom: 18px; }
.cap__ic svg { width: 22px; height: 22px; }
.cap h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 8px; }
.cap p { font-size: 14.5px; color: var(--ink-2); line-height: 1.55; }

/* --------------------------------------------------------------------------
   Industries
   -------------------------------------------------------------------------- */
.industries { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.industry {
  display: flex; gap: 18px; align-items: flex-start; background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), border-color var(--dur);
}
.industry:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--purple-200); }
.industry__ic { flex: 0 0 48px; width: 48px; height: 48px; border-radius: 12px; background: var(--purple-50); color: var(--purple-700); display: grid; place-items: center; }
.industry__ic svg { width: 22px; height: 22px; }
.industry h4 { font-size: 16.5px; font-weight: 600; margin-bottom: 4px; }
.industry p { font-size: 14.5px; color: var(--ink-2); line-height: 1.5; }

/* --------------------------------------------------------------------------
   Why choose us
   -------------------------------------------------------------------------- */
.why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.why__item { text-align: left; }
.why__ic { width: 56px; height: 56px; border-radius: 16px; background: var(--purple); color: #fff; display: grid; place-items: center; margin-bottom: 22px; box-shadow: var(--shadow-purple); }
.why__ic svg { width: 26px; height: 26px; }
.why__item .h3 { margin-bottom: 12px; }
.why__item p { color: var(--ink-2); }

/* --------------------------------------------------------------------------
   Testimonials
   -------------------------------------------------------------------------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.quote { margin: 0; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 36px 32px; }
.quote__mark { width: 36px; height: 36px; color: var(--purple-200); margin-bottom: 18px; }
.quote p { font-family: var(--font-display); font-size: 17.5px; line-height: 1.55; font-weight: 500; letter-spacing: 0; flex: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; margin-top: 28px; padding-top: 22px; border-top: 1px solid var(--line); }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--purple-700); background: var(--purple-100); }
.quote__who b { display: block; font-family: var(--font-display); font-size: 15px; }
.quote__who small { color: var(--ink-3); font-size: 13.5px; }

/* --------------------------------------------------------------------------
   Pricing
   -------------------------------------------------------------------------- */
.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; max-width: 1320px; margin: 0 auto; }
.plan { position: relative; display: flex; flex-direction: column; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 36px 32px; transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease); }
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.plan--featured { border: 2px solid var(--purple); box-shadow: 0 24px 56px -20px rgba(123,111,160,.45); }
.plan__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); padding: 6px 14px; border-radius: var(--r-pill); background: var(--purple); color: #fff; font-family: var(--font-display); font-size: 12px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; white-space: nowrap; }
.plan__name { font-family: var(--font-display); font-size: 20px; font-weight: 700; }
.plan__desc { color: var(--ink-2); font-size: 15px; margin-top: 6px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; margin: 26px 0 22px; }
.plan__price b { font-family: var(--font-display); font-size: 48px; font-weight: 700; letter-spacing: -0.03em; line-height: 1; }
.plan__price span { color: var(--ink-3); font-size: 15px; }
.plan__list { display: grid; gap: 12px; margin-bottom: 28px; flex: 1; }
.plan__list li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--ink-2); }
.plan__list li svg { flex: 0 0 18px; width: 18px; height: 18px; color: var(--green); margin-top: 3px; }
.plan .btn { width: 100%; }
.pricing__note { text-align: center; color: var(--ink-3); font-size: 14px; margin-top: 28px; }

/* --------------------------------------------------------------------------
   FAQ
   -------------------------------------------------------------------------- */
.faq { max-width: 960px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left;
  padding: 24px 4px; font-family: var(--font-display); font-size: 18px; font-weight: 600; color: var(--ink);
}
.faq__q svg { flex: 0 0 22px; width: 22px; height: 22px; color: var(--purple); transition: transform var(--dur) var(--ease); }
.faq__item.is-open .faq__q svg { transform: rotate(180deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height var(--dur) var(--ease); }
.faq__a p { padding: 0 4px 26px; color: var(--ink-2); font-size: 16px; max-width: 760px; }

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */
.cta { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--purple-700) 0%, var(--purple) 60%, #9186BD 100%); color: #fff; padding: 96px 0; }
.cta::before { content: ""; position: absolute; width: 640px; height: 640px; right: -180px; top: -260px; border-radius: 50%; background: rgba(255,255,255,.07); }
.cta::after { content: ""; position: absolute; width: 380px; height: 380px; left: -120px; bottom: -220px; border-radius: 50%; background: rgba(255,255,255,.06); }
.cta__inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.cta .h2 { color: #fff; margin-bottom: 18px; }
.cta p { font-size: 19px; color: rgba(255,255,255,.85); margin-bottom: 36px; }
.cta__actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* --------------------------------------------------------------------------
   Contact
   -------------------------------------------------------------------------- */
.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(48px, 6vw, 96px); align-items: start; }
.contact__info .h2 { margin-bottom: 16px; }
.contact__info .lead { margin-bottom: 36px; }
.contact__rows { display: grid; gap: 20px; }
.contact__row { display: flex; gap: 16px; align-items: flex-start; }
.contact__row .ic { flex: 0 0 44px; width: 44px; height: 44px; border-radius: 12px; background: var(--purple-50); color: var(--purple-700); display: grid; place-items: center; }
.contact__row .ic svg { width: 20px; height: 20px; }
.contact__row b { display: block; font-family: var(--font-display); font-size: 15px; margin-bottom: 2px; }
.contact__row span { color: var(--ink-2); font-size: 15px; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); padding: 36px; box-shadow: var(--shadow-md); }
.form__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label { font-family: var(--font-display); font-size: 13.5px; font-weight: 600; color: var(--ink-2); }
.field input, .field select, .field textarea {
  font: inherit; font-size: 15px; color: var(--ink);
  height: 48px; padding: 0 14px; border-radius: 10px; border: 1px solid var(--line-2); background: #fff;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.field textarea { height: auto; min-height: 120px; padding: 12px 14px; resize: vertical; }
.field select { appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235F6368' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='m6 9 6 6 6-6'/></svg>"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--purple); box-shadow: 0 0 0 4px rgba(123,111,160,.16); }
.form .btn { margin-top: 6px; width: 100%; }
.form__note { font-size: 13px; color: var(--ink-3); text-align: center; margin-top: 12px; }
.hp { position: absolute; left: -9999px; top: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__error { display: block; margin-top: 12px; padding: 12px 14px; border-radius: 10px; background: var(--red-100); color: var(--red); font-size: 14px; text-align: center; }
.form__error[hidden] { display: none; }
.btn.is-loading { opacity: .75; pointer-events: none; }
.form__success { display: none; text-align: center; padding: 24px 8px; }
.form__success .ic { width: 64px; height: 64px; border-radius: 50%; background: var(--green-100); color: var(--green); display: grid; place-items: center; margin: 0 auto 18px; }
.form__success .ic svg { width: 30px; height: 30px; }
.form__success h3 { margin-bottom: 8px; }
.form.is-sent .form__grid, .form.is-sent .btn, .form.is-sent .form__note { display: none; }
.form.is-sent .form__success { display: block; }

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer { background: var(--ink); color: #BDC1C6; padding: 72px 0 32px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.1); }
.footer .brand__name { color: #fff; }
.footer .brand__tag { color: #9AA0A6; }
.footer__tagline { margin: 18px 0 22px; max-width: 320px; font-size: 15px; }
.footer__social { display: flex; gap: 10px; }
.footer__social a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,.14); display: grid; place-items: center; color: #E8EAED; transition: background var(--dur), border-color var(--dur); }
.footer__social a:hover { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.3); }
.footer__social svg { width: 18px; height: 18px; }
.footer h4 { font-family: var(--font-display); font-size: 14px; font-weight: 700; color: #fff; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 18px; }
.footer__col a { display: block; padding: 6px 0; font-size: 15px; color: #BDC1C6; transition: color var(--dur); }
.footer__col a:hover { color: #fff; }
.footer__bottom { display: flex; flex-wrap: wrap; gap: 16px; justify-content: space-between; align-items: center; padding-top: 28px; font-size: 13.5px; color: #9AA0A6; }
.footer__bottom nav { display: flex; gap: 22px; }
.footer__bottom a:hover { color: #fff; }

/* --------------------------------------------------------------------------
   Reveal on scroll
   -------------------------------------------------------------------------- */
[data-reveal] { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
[data-reveal-stagger] > * { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal-stagger].is-in > * { opacity: 1; transform: none; }
[data-reveal-stagger].is-in > :nth-child(1) { transition-delay: .00s; }
[data-reveal-stagger].is-in > :nth-child(2) { transition-delay: .08s; }
[data-reveal-stagger].is-in > :nth-child(3) { transition-delay: .16s; }
[data-reveal-stagger].is-in > :nth-child(4) { transition-delay: .24s; }
[data-reveal-stagger].is-in > :nth-child(5) { transition-delay: .32s; }
[data-reveal-stagger].is-in > :nth-child(6) { transition-delay: .40s; }
[data-reveal-stagger].is-in > :nth-child(7) { transition-delay: .48s; }
[data-reveal-stagger].is-in > :nth-child(8) { transition-delay: .56s; }
[data-reveal-stagger].is-in > :nth-child(9) { transition-delay: .64s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  [data-reveal], [data-reveal-stagger] > * { opacity: 1; transform: none; }
}

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */
@media (max-width: 1100px) {
  .hero__grid { gap: 40px; }
  .caps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 960px) {
  :root { --nav-h: 84px; }
  .section { padding: 80px 0; }
  .brand__pin { height: 46px; }
  .brand__name { font-size: 32px; }
  .brand__tag { font-size: 14.5px; }
  .nav__links, .nav__cta .btn { display: none; }
  .nav__burger { display: inline-flex; }
  .nav__cta { margin-left: auto; }
  .hero { padding: 48px 0 72px; }
  .hero__grid { grid-template-columns: 1fr; }
  .hero__copy .h1 { max-width: none; }
  .hero__visual { margin-top: 40px; margin-bottom: 16px; }
  .mock { transform: none; }
  .float-chip--1 { left: 8px; top: -26px; }
  .float-chip--2 { right: 8px; }
  .float-chip--3 { left: 8px; bottom: -26px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: 0; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse > :first-child { order: 0; }
  .steps { grid-template-columns: 1fr; }
  .products { grid-template-columns: 1fr; }
  .industries { grid-template-columns: repeat(2, 1fr); }
  .why { grid-template-columns: 1fr; gap: 32px; }
  .quotes { grid-template-columns: 1fr; }
  .plans { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .plan--featured { order: -1; }
  .contact { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .tabs { justify-content: flex-start; margin-left: calc(-1 * var(--gutter)); margin-right: calc(-1 * var(--gutter)); padding: 0 var(--gutter); overflow-x: auto; scrollbar-width: none; }
  .tabs::-webkit-scrollbar { display: none; }
}
@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .lead { font-size: 17px; }
  .hero__actions .btn { width: 100%; }
  .mock__body { grid-template-columns: 1fr; }
  .mock__side { display: none; }
  .float-chip { font-size: 12px; padding: 8px 10px 8px 8px; }
  .float-chip small { display: none; }
  .stats__grid { grid-template-columns: 1fr; }
  .stat { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: 0; }
  .caps, .industries { grid-template-columns: 1fr; }
  .illus { padding: 18px; }
  .form { padding: 24px; }
  .form__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .cta { padding: 72px 0; }
}

/* --------------------------------------------------------------------------
   Photo components
   -------------------------------------------------------------------------- */
.mosaic { display: grid; grid-template-columns: 1.45fr 1fr; grid-template-rows: 1fr 1fr; gap: 14px; }
.mosaic figure { position: relative; margin: 0; border-radius: 20px; overflow: hidden; background: var(--purple-50); box-shadow: var(--shadow-md); }
.mosaic img { width: 100%; height: 100%; object-fit: cover; }
.mosaic__main { grid-row: 1 / 3; aspect-ratio: 4 / 5; }
.mosaic__main img { object-position: 56% 40%; }
.mosaic__small { aspect-ratio: 4 / 3; }
.mosaic__small:nth-child(2) img { object-position: 50% 45%; }
.mosaic__small:nth-child(3) img { object-position: 50% 70%; }
.mosaic figcaption {
  position: absolute; left: 12px; bottom: 12px; padding: 6px 11px; border-radius: var(--r-pill);
  background: rgba(255,255,255,.9); backdrop-filter: blur(8px);
  font-family: var(--font-display); font-size: 12px; font-weight: 600; color: var(--ink);
}
.float-chip--m1 { position: absolute; top: auto; left: 16px; right: auto; bottom: 16px; }

.spotlight { display: grid; grid-template-columns: 1.1fr 1fr; background: #fff; border: 1px solid var(--line); border-radius: var(--r-xl); overflow: hidden; margin-bottom: 24px; box-shadow: var(--shadow-sm); }
.spotlight__media { position: relative; min-height: 380px; }
.spotlight__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 45%; }
.spotlight__body { padding: 48px 52px; display: flex; flex-direction: column; gap: 16px; }
.spotlight__body p { color: var(--ink-2); }
.spotlight__body .feature-list { gap: 10px; }
.spotlight__body .feature-list li { font-size: 15px; }
.spotlight__body .link-arrow { margin-top: 4px; }

.photo-card { position: relative; border-radius: var(--r-xl); overflow: hidden; aspect-ratio: 4 / 3; background: #1b1a22; box-shadow: var(--shadow-lg); }
.photo-card img { width: 100%; height: 100%; object-fit: cover; object-position: 46% 50%; }
.photo-card__chips { position: absolute; left: 18px; bottom: 18px; display: flex; flex-wrap: wrap; gap: 8px; }
.chip--glass { background: rgba(255,255,255,.92); backdrop-filter: blur(8px); border-color: transparent; color: var(--ink); box-shadow: var(--shadow-sm); }

@media (max-width: 960px) {
  .spotlight { grid-template-columns: 1fr; }
  .spotlight__media { min-height: 260px; }
  .spotlight__body { padding: 32px 28px; }
}
@media (max-width: 600px) {
  .mosaic { gap: 10px; grid-template-columns: 1fr 1fr; grid-template-rows: auto auto; }
  .mosaic__main { grid-column: 1 / 3; grid-row: 1; aspect-ratio: 4 / 3; }
  .mosaic__main img { object-position: 56% 30%; }
  .mosaic figure { border-radius: 14px; }
  .float-chip--m1 { left: 10px; bottom: 10px; }
}

/* --------------------------------------------------------------------------
   Large screens — let content breathe in the wider container
   -------------------------------------------------------------------------- */
@media (min-width: 1440px) {
  body { font-size: 17px; }
  .lead { font-size: 20.5px; }
  .section { padding: 128px 0; }
  .h3 { font-size: 24px; }
  .step, .plan, .quote { padding: 40px 36px; }
  .product { grid-template-rows: 280px auto; }
  .product__body { padding: 32px 36px 36px; }
  .cap, .industry { padding: 30px 28px; }
  .cap p, .industry p { font-size: 15.5px; }
  .feature-list li { font-size: 17px; }
  .step li, .plan__list li { font-size: 16.5px; }
  .stat { padding: 40px 36px; }
  .stat__num { font-size: 46px; }
  .stat__label { font-size: 15px; }
  .illus { padding: 40px; }
  .spotlight__body { padding: 56px 64px; gap: 18px; }
  .spotlight__media { min-height: 440px; }
  .form { padding: 44px; }
  .tab { padding: 12px 24px; font-size: 15.5px; }
  .chip { font-size: 13.5px; padding: 8px 14px 8px 11px; }
  .float-chip { font-size: 14px; }
}
