/* ============================================================
   AUTOMIS — Landing page styles
   Built on the Automis design system (colors_and_type.css).
   Mintlify-influenced: atmospheric hero, floating product,
   disciplined whitespace, borders over shadows.
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: hidden; background: var(--au-white); }
img { max-width: 100%; display: block; }
a { color: inherit; }
::selection { background: rgba(126,211,33,.28); }

:root {
  --shell: 1200px;
  --gutter: 32px;
  --nav-h: 68px;
}

.wrap { max-width: var(--shell); margin: 0 auto; padding-inline: var(--gutter); }

/* ---------- shared bits ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 5px 12px 5px 8px; border-radius: var(--au-r-full);
  background: rgba(255,255,255,.72);
  border: 1px solid var(--au-green-200);
  font-size: 12px; font-weight: 700; color: var(--au-green-800);
  letter-spacing: .04em; backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.eyebrow .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--au-green-500);
  box-shadow: 0 0 0 3px rgba(31,166,74,.22);
}
.eyebrow .dot.pulse { animation: dotPulse 2.4s var(--au-ease-in-out) infinite; }
@keyframes dotPulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(31,166,74,.22); }
  50%     { box-shadow: 0 0 0 6px rgba(31,166,74,.06); }
}

.section-eyebrow {
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--au-green-700);
}

/* buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 46px; padding: 0 22px; border-radius: var(--au-r-full);
  font-family: var(--au-font-sans); font-weight: 700; font-size: 15px;
  letter-spacing: -0.01em; border: 1px solid transparent; cursor: pointer;
  text-decoration: none; white-space: nowrap;
  transition: transform var(--au-dur-fast) var(--au-ease-out),
              background var(--au-dur-fast) var(--au-ease-out),
              box-shadow var(--au-dur-base) var(--au-ease-out),
              border-color var(--au-dur-fast) var(--au-ease-out);
}
.btn svg { width: 17px; height: 17px; stroke: currentColor; fill: none; stroke-width: 2.1; flex: none; }
.btn-primary {
  background: var(--au-green-500); color: #fff;
  box-shadow: 0 1px 2px rgba(11,61,30,.18), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-primary:hover { background: var(--au-green-600); transform: translateY(-1px); box-shadow: var(--au-shadow-glow); }
.btn-primary:active { transform: translateY(0); }
.btn-dark { background: var(--au-green-950); color: #fff; box-shadow: 0 1px 2px rgba(11,61,30,.2); }
.btn-dark:hover { background: var(--au-green-900); transform: translateY(-1px); }
.btn-glass {
  background: rgba(255,255,255,.72); color: var(--au-green-900);
  border-color: rgba(11,61,30,.10); backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
}
.btn-glass:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--au-shadow-card-hover); }
.btn-ghost { background: transparent; color: var(--au-green-900); }
.btn-ghost:hover { background: var(--au-green-50); }
.btn-sm { min-height: 40px; font-size: 14px; padding: 0 16px; }
.btn-lg { min-height: 54px; font-size: 16px; padding: 0 28px; }

/* =====================================================
   PROMO BAR
   ===================================================== */
.promo {
  position: relative; z-index: 60;
  background: var(--au-green-950); color: #fff;
  font-size: 13px; font-weight: 600; letter-spacing: -0.01em;
  text-align: center; padding: 9px 16px;
}
.promo a { color: var(--au-lime-300); text-decoration: none; font-weight: 700; }
.promo a:hover { text-decoration: underline; }
.promo .arrow { display: inline-block; transition: transform var(--au-dur-base) var(--au-ease-out); }
.promo a:hover .arrow { transform: translateX(3px); }

/* =====================================================
   NAV
   ===================================================== */
.nav {
  position: sticky; top: 0; z-index: 50;
  height: var(--nav-h);
  background: rgba(255,255,255,.0);
  transition: background var(--au-dur-base) var(--au-ease-out),
              box-shadow var(--au-dur-base) var(--au-ease-out),
              border-color var(--au-dur-base) var(--au-ease-out);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px) saturate(1.4); -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border-bottom-color: var(--au-border);
  box-shadow: 0 1px 0 rgba(11,61,30,.02);
}
.nav__in { display: flex; align-items: center; gap: 28px; height: 100%; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 34px; height: 34px; }
.brand__tx { display: flex; flex-direction: column; line-height: 1; }
.brand__tx b { font-size: 16px; font-weight: 800; letter-spacing: .12em; color: var(--au-green-950); }
.brand__tx span { font-size: 9.5px; font-weight: 800; letter-spacing: .14em; color: var(--au-green-700); margin-top: 3px; }
.nav__links { display: flex; align-items: center; gap: 4px; margin-left: 10px; }
.nav__links a {
  font-size: 14.5px; font-weight: 600; color: var(--au-slate-700);
  text-decoration: none; padding: 8px 12px; border-radius: var(--au-r-md);
  transition: color var(--au-dur-fast), background var(--au-dur-fast);
}
.nav__links a:hover { color: var(--au-green-800); background: var(--au-green-50); }
.nav__right { margin-left: auto; display: flex; align-items: center; gap: 10px; }
.nav__burger { display: none; }

/* =====================================================
   HERO
   ===================================================== */
.hero {
  position: relative; isolation: isolate;
  padding-top: 72px;
  margin-top: calc(-1 * var(--nav-h));
  overflow: hidden;
}
.hero__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("assets/hero-meadow.png");
  background-size: cover; background-position: center 18%;
  will-change: transform;
}
/* sky tint + bottom fade so it melts into white */
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 60% at 50% 0%, rgba(31,166,74,.10), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,0) 52%, rgba(255,255,255,.55) 78%, #fff 100%);
}
.hero__inner { position: relative; padding-top: calc(var(--nav-h) + 46px); text-align: center; }
.hero h1 {
  font-size: clamp(40px, 6vw, 70px); line-height: 1.04; font-weight: 800;
  letter-spacing: -0.035em; color: var(--au-green-950);
  margin: 22px auto 0; max-width: 16ch;
}
.hero h1 .accent {
  background: linear-gradient(120deg, var(--au-green-600), var(--au-green-500) 55%, var(--au-lime-500));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__sub {
  font-size: clamp(17px, 1.4vw, 20px); line-height: 1.55; font-weight: 500;
  color: var(--au-slate-700); margin: 22px auto 0; max-width: 56ch;
}
.hero__cta { display: inline-flex; gap: 12px; margin-top: 30px; flex-wrap: wrap; justify-content: center; }
.hero__note {
  margin-top: 18px; font-size: 13px; font-weight: 600; color: var(--au-slate-500);
  display: inline-flex; align-items: center; gap: 8px;
}
.hero__note svg { width: 15px; height: 15px; stroke: var(--au-green-500); fill: none; stroke-width: 2.2; }

/* floating product window */
.hero__stage { position: relative; margin-top: 54px; perspective: 2000px; }
.product {
  position: relative; z-index: 2;
  border-radius: 16px;
  background: var(--au-white);
  border: 1px solid var(--au-border);
  box-shadow:
    0 2px 6px rgba(11,61,30,.06),
    0 28px 60px -18px rgba(11,61,30,.28),
    0 60px 120px -40px rgba(11,61,30,.18);
  overflow: hidden;
  will-change: transform;
}
.product__floats { position: absolute; inset: -36px -18px; z-index: 3; pointer-events: none; }
.chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.92); border: 1px solid var(--au-border);
  border-radius: var(--au-r-full); padding: 8px 14px;
  box-shadow: 0 10px 30px -10px rgba(11,61,30,.22);
  font-size: 13px; font-weight: 700; color: var(--au-slate-800);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.chip .ic { width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center; flex: none; }
.chip .ic svg { width: 15px; height: 15px; stroke: #fff; fill: none; stroke-width: 2.3; }
.chip small { display: block; font-size: 11px; font-weight: 600; color: var(--au-slate-500); letter-spacing: 0; }
.chip-1 { top: -20px; left: 30px; }
.chip-2 { bottom: -22px; right: -26px; }

/* worker mobile app mockup */
.phone {
  position: absolute; z-index: 4; right: -18px; bottom: -54px;
  width: 232px; border-radius: 34px; padding: 9px;
  background: linear-gradient(160deg, #1a1f1c, #0b3d1e);
  box-shadow: 0 30px 60px -18px rgba(11,61,30,.45), 0 0 0 1px rgba(11,61,30,.25), inset 0 1px 0 rgba(255,255,255,.12);
  transform: rotate(2deg);
  animation: phoneFloat 7s var(--au-ease-in-out) infinite;
}
@keyframes phoneFloat { 0%,100% { transform: rotate(2deg) translateY(0); } 50% { transform: rotate(2deg) translateY(-12px); } }
.phone__scr {
  position: relative; border-radius: 26px; overflow: hidden;
  background: var(--au-slate-50); padding: 0 0 8px;
}
.ph__status { display: flex; align-items: center; justify-content: space-between; padding: 9px 16px 5px; font-size: 11px; font-weight: 800; color: var(--au-green-950); }
.ph__sig { display: inline-flex; align-items: flex-end; gap: 2.5px; }
.ph__sig i { width: 3px; border-radius: 1px; background: var(--au-green-950); }
.ph__sig i:nth-child(1) { height: 5px; } .ph__sig i:nth-child(2) { height: 8px; } .ph__sig i:nth-child(3) { height: 11px; }
.ph__top { display: flex; align-items: center; gap: 9px; padding: 6px 14px 12px; background: #fff; border-bottom: 1px solid var(--au-slate-100); }
.ph__av { width: 30px; height: 30px; border-radius: 50%; background: var(--au-green-100); color: var(--au-green-700); display: grid; place-items: center; font-size: 12px; font-weight: 800; flex: none; }
.ph__id { display: flex; flex-direction: column; line-height: 1.2; }
.ph__id b { font-size: 12.5px; font-weight: 800; color: var(--au-green-950); }
.ph__id small { font-size: 10px; color: var(--au-slate-500); }
.ph__bell { margin-left: auto; color: var(--au-slate-400); }
.ph__bell svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.ph__count { padding: 11px 14px 4px; font-size: 11px; font-weight: 700; color: var(--au-slate-500); }
.ph__count b { color: var(--au-green-700); font-size: 13px; }
.ph__list { display: flex; flex-direction: column; gap: 8px; padding: 4px 12px 0; }
.ph__card { background: #fff; border: 1px solid var(--au-slate-100); border-left: 3px solid var(--au-green-500); border-radius: 11px; padding: 9px 11px; box-shadow: var(--au-shadow-card); }
.ph__card:nth-child(2) { border-left-color: var(--au-status-progress); }
.ph__card:nth-child(3) { border-left-color: var(--au-status-done); }
.ph__crow { display: flex; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.ph__time { font-family: var(--au-font-mono); font-size: 10px; font-weight: 700; color: var(--au-slate-400); }
.ph__card b { display: block; font-size: 12px; font-weight: 700; color: var(--au-green-950); letter-spacing: -0.01em; }
.ph__obj { display: flex; align-items: center; gap: 5px; margin-top: 4px; font-size: 10.5px; font-weight: 600; color: var(--au-slate-500); }
.ph__obj svg { width: 12px; height: 12px; stroke: var(--au-green-500); fill: none; stroke-width: 2; flex: none; }
.ph__nav { display: flex; align-items: center; justify-content: space-around; margin: 12px 8px 0; padding-top: 9px; border-top: 1px solid var(--au-slate-100); }
.ph__nav span { color: var(--au-slate-300); }
.ph__nav span.on { color: var(--au-green-600); }
.ph__nav svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =====================================================
   PRODUCT WINDOW — rebuilt Uzdevumi view
   ===================================================== */
.pw { display: grid; grid-template-columns: 210px 1fr; min-height: 430px; font-size: 13px; }
.pw__topbar {
  grid-column: 1 / -1; height: 12px;
  background: linear-gradient(90deg, #fff, var(--au-slate-50));
  border-bottom: 1px solid var(--au-slate-100);
  display: flex; align-items: center; gap: 6px; padding: 0 14px;
}
.pw__dots { display: flex; gap: 6px; }
.pw__dots i { width: 8px; height: 8px; border-radius: 50%; background: var(--au-slate-200); display: block; }

.pw__side {
  border-right: 1px solid var(--au-slate-100); padding: 16px 12px;
  display: flex; flex-direction: column; gap: 4px; background: #fff;
}
.pw__brand { display: flex; align-items: center; gap: 9px; padding: 4px 6px 14px; }
.pw__brand .mk {
  width: 30px; height: 30px; border-radius: 9px; background: var(--au-green-950);
  display: grid; place-items: center; flex: none;
}
.pw__brand .mk span { display: flex; flex-direction: column; gap: 2.5px; }
.pw__brand .mk i { width: 6px; height: 6px; border-radius: 50%; display: block; }
.pw__brand .lt { display: flex; flex-direction: column; line-height: 1; }
.pw__brand .lt b { font-size: 11.5px; font-weight: 800; letter-spacing: .1em; color: var(--au-green-950); }
.pw__brand .lt em { font-size: 7.5px; font-weight: 700; font-style: normal; letter-spacing: .08em; color: var(--au-green-600); margin-top: 3px; }
.pw__sechead { font-size: 9px; font-weight: 800; letter-spacing: .14em; color: var(--au-slate-400); padding: 12px 8px 4px; }
.pw__nav { display: flex; align-items: center; gap: 9px; padding: 8px 10px; border-radius: 8px; color: var(--au-slate-600); font-weight: 600; font-size: 12.5px; }
.pw__nav svg { width: 15px; height: 15px; stroke: currentColor; fill: none; stroke-width: 2; flex: none; }
.pw__nav.on { background: var(--au-green-950); color: #fff; }
.pw__nav .led { width: 8px; height: 8px; border-radius: 50%; background: var(--au-lime-500); flex: none; box-shadow: 0 0 0 2px rgba(126,211,33,.3); }

.pw__main { padding: 16px 18px; background: var(--au-slate-50); display: flex; flex-direction: column; gap: 12px; }
.pw__head { display: flex; align-items: center; justify-content: space-between; }
.pw__head h3 { font-size: 16px; font-weight: 800; letter-spacing: .02em; color: var(--au-green-950); margin: 0; }
.pw__actions { display: flex; gap: 8px; }
.pw__btn { display: inline-flex; align-items: center; gap: 6px; height: 30px; padding: 0 12px; border-radius: var(--au-r-full); font-size: 12px; font-weight: 700; border: 1px solid var(--au-border); background: #fff; color: var(--au-slate-700); white-space: nowrap; }
.pw__btn svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.pw__btn.dark { background: var(--au-green-950); color: #fff; border-color: var(--au-green-950); }
.pw__btn.dark svg { stroke: var(--au-lime-400); }

.pw__panel { background: #fff; border: 1px solid var(--au-slate-100); border-radius: 12px; padding: 12px; }
.pw__search { display: flex; align-items: center; gap: 8px; height: 34px; border: 1px solid var(--au-slate-200); border-radius: 9px; padding: 0 12px; color: var(--au-slate-400); font-size: 12.5px; }
.pw__search svg { width: 14px; height: 14px; stroke: currentColor; fill: none; stroke-width: 2; }
.pw__filters { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 10px; }
.pw__fl { font-size: 8.5px; font-weight: 800; letter-spacing: .08em; color: var(--au-slate-400); }
.pw__sel { display: flex; align-items: center; gap: 6px; height: 30px; border: 1px solid var(--au-slate-200); border-radius: 8px; padding: 0 8px; font-size: 11px; font-weight: 700; color: var(--au-slate-700); margin-top: 3px; white-space: nowrap; overflow: hidden; }
.pw__sel .cr { margin-left: auto; color: var(--au-slate-400); }

.pw__table { background: #fff; border: 1px solid var(--au-slate-100); border-radius: 12px; overflow: hidden; }
.pw__tr { display: grid; grid-template-columns: 90px 1.5fr 1fr 0.95fr 94px 54px; align-items: center; gap: 10px; padding: 11px 14px; }
.pw__tr + .pw__tr { border-top: 1px solid var(--au-slate-100); }
.pw__th { background: var(--au-slate-50); }
.pw__th span { font-size: 8.5px; font-weight: 800; letter-spacing: .08em; color: var(--au-slate-400); }
.pw__cell { font-size: 12px; color: var(--au-slate-700); }
.pw__date { font-family: var(--au-font-mono); font-size: 11px; color: var(--au-slate-500); display: flex; align-items: center; gap: 6px; }
.pw__date svg { width: 12px; height: 12px; stroke: var(--au-slate-400); fill: none; stroke-width: 2; }
.pw__task b { font-size: 12.5px; font-weight: 700; color: var(--au-green-950); display: block; }
.pw__task code { font-family: var(--au-font-mono); font-size: 10px; color: var(--au-slate-400); }
.pw__obj { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.pw__obj svg { width: 13px; height: 13px; stroke: var(--au-green-500); fill: none; stroke-width: 2; flex: none; }
.pw__who { display: flex; align-items: center; gap: 7px; font-weight: 600; }
.pw__av { width: 20px; height: 20px; border-radius: 50%; background: var(--au-green-100); color: var(--au-green-700); display: grid; place-items: center; font-size: 9px; font-weight: 800; flex: none; }
.badge { display: inline-block; white-space: nowrap; font-size: 9.5px; font-weight: 800; letter-spacing: .05em; padding: 3px 8px; border-radius: var(--au-r-full); border: 1px solid; }
.badge.new  { background: var(--au-status-new-bg); color: var(--au-status-new); border-color: #BFDBFE; }
.badge.prog { background: var(--au-status-progress-bg); color: var(--au-status-progress); border-color: #FDE68A; }
.badge.done { background: var(--au-status-done-bg); color: var(--au-status-done); border-color: #A7F3D0; }
.pw__rowact { display: flex; gap: 7px; color: var(--au-slate-300); }
.pw__rowact svg { width: 13px; height: 13px; stroke: currentColor; fill: none; stroke-width: 2; }
.pw__rowact .e { color: var(--au-green-500); }

/* =====================================================
   LOGO STRIP
   ===================================================== */
.logos { padding: 56px 0 12px; text-align: center; }
.logos p { font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--au-slate-500); margin: 0 0 26px; }
.logos__row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 44px; }
.logos__row .lg {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 19px; font-weight: 800; letter-spacing: -0.02em; color: var(--au-slate-400);
  opacity: .85; filter: grayscale(1);
  transition: color var(--au-dur-base), opacity var(--au-dur-base);
}
.logos__row .lg:hover { color: var(--au-green-700); opacity: 1; }
.logos__row .lg .gl { width: 22px; height: 22px; border-radius: 6px; background: currentColor; opacity: .35; }
.logos__row .lg .gl.round { border-radius: 50%; }
.logos__row .lg .gl.tri { background: none; width: 0; height: 0; border-radius: 0; border-left: 11px solid transparent; border-right: 11px solid transparent; border-bottom: 19px solid currentColor; opacity: .35; }

/* =====================================================
   PHOTO PROOF (before / after)
   ===================================================== */
.proof { padding: 96px 0; background:
    linear-gradient(180deg, var(--au-white), #F6FAF7 40%, var(--au-white)); }
.proof__in { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 60px; align-items: center; }
.proof__copy h2 { font-size: clamp(28px, 3vw, 40px); line-height: 1.1; font-weight: 800; letter-spacing: -0.03em; color: var(--au-green-950); margin: 18px 0 0; }
.proof__copy p { font-size: 17px; line-height: 1.65; color: var(--au-slate-600); margin: 16px 0 0; max-width: 46ch; }
.proof__list { list-style: none; margin: 30px 0 0; padding: 0; display: flex; flex-direction: column; }
.proof__list li { display: flex; align-items: center; gap: 16px; padding: 15px 0; border-top: 1px solid var(--au-slate-100); }
.proof__list li:last-child { border-bottom: 1px solid var(--au-slate-100); }
.proof__n { font-family: var(--au-font-mono); font-size: 13px; font-weight: 700; color: var(--au-green-600); flex: none; }
.proof__t { font-size: 15.5px; font-weight: 700; color: var(--au-green-950); letter-spacing: -0.01em; }

.proof__media { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.phshot {
  margin: 0; background: #fff; border: 1px solid var(--au-border);
  border-radius: var(--au-r-xl); overflow: hidden; box-shadow: var(--au-shadow-lg);
}
.phshot__bar { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 12px 14px; border-bottom: 1px solid var(--au-slate-100); }
.phshot__bar b { font-size: 12px; font-weight: 800; letter-spacing: .22em; color: var(--au-green-950); }
.phshot__bar span { font-family: var(--au-font-mono); font-size: 10.5px; color: var(--au-slate-400); letter-spacing: -0.01em; }
.phshot__img {
  position: relative; aspect-ratio: 3 / 4; display: grid; place-items: center;
  background:
    repeating-linear-gradient(135deg, #EAF1EC 0 12px, #E2ECE5 12px 24px);
}
.phshot__cap { font-family: var(--au-font-mono); font-size: 11px; font-weight: 600; letter-spacing: .04em; color: var(--au-slate-500); background: rgba(255,255,255,.78); padding: 6px 12px; border-radius: var(--au-r-full); }

.proof__checks { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
.chk { display: flex; align-items: center; gap: 13px; padding: 16px 18px; background: #fff; border: 1px solid var(--au-border); border-radius: var(--au-r-lg); box-shadow: var(--au-shadow-card); }
.chk__ic { width: 40px; height: 40px; border-radius: 11px; flex: none; display: grid; place-items: center; background: var(--au-green-50); border: 1px solid var(--au-green-200); }
.chk__ic svg { width: 20px; height: 20px; stroke: var(--au-green-600); fill: none; stroke-width: 2; }
.chk__tx b { display: block; font-size: 14.5px; font-weight: 700; color: var(--au-green-950); }
.chk__tx span { font-size: 12.5px; color: var(--au-slate-500); line-height: 1.4; }

/* =====================================================
   SECTION HEAD
   ===================================================== */
.shead { max-width: 720px; margin: 0 auto; text-align: center; }
.shead h2 {
  font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; font-weight: 800;
  letter-spacing: -0.03em; color: var(--au-green-950); margin: 14px 0 0;
}
.shead p { font-size: 18px; line-height: 1.6; color: var(--au-slate-600); margin: 16px auto 0; max-width: 60ch; }

/* =====================================================
   PILLARS
   ===================================================== */
.pillars { padding: 96px 0 8px; }
.pillars__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 52px; }
.pcard {
  position: relative; background: #fff; border: 1px solid var(--au-border);
  border-radius: var(--au-r-xl); padding: 28px 26px 26px;
  box-shadow: var(--au-shadow-card);
  transition: transform var(--au-dur-base) var(--au-ease-out), box-shadow var(--au-dur-base) var(--au-ease-out), border-color var(--au-dur-base);
  overflow: hidden;
}
.pcard::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 3px;
  background: linear-gradient(90deg, var(--au-green-500), var(--au-lime-500));
  transform: scaleX(0); transform-origin: left; transition: transform var(--au-dur-slow) var(--au-ease-out);
}
.pcard:hover { transform: translateY(-4px); box-shadow: var(--au-shadow-lg); border-color: var(--au-green-200); }
.pcard:hover::before { transform: scaleX(1); }
.pcard__ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: var(--au-green-50); border: 1px solid var(--au-green-200); margin-bottom: 20px;
}
.pcard__ic svg { width: 26px; height: 26px; stroke: var(--au-green-600); fill: none; stroke-width: 2; }
.pcard h3 { font-size: 21px; font-weight: 800; letter-spacing: -0.02em; color: var(--au-green-950); margin: 0 0 9px; }
.pcard p { font-size: 15px; line-height: 1.6; color: var(--au-slate-600); margin: 0 0 18px; }
.pcard__list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.pcard__list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; font-weight: 600; color: var(--au-slate-700); }
.pcard__list svg { width: 16px; height: 16px; stroke: var(--au-green-500); fill: none; stroke-width: 2.4; flex: none; margin-top: 1px; }

/* =====================================================
   FEATURE DEEP-DIVE
   ===================================================== */
.feature { padding: 80px 0; }
.feature__row { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.feature--reverse .feature__media { order: 2; }
.feature__tag {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 800;
  letter-spacing: .12em; text-transform: uppercase; color: var(--au-green-700);
  padding: 5px 12px; border-radius: var(--au-r-full); background: var(--au-green-50); border: 1px solid var(--au-green-200);
}
.feature__copy h2 { font-size: clamp(28px, 3vw, 38px); line-height: 1.12; font-weight: 800; letter-spacing: -0.03em; color: var(--au-green-950); margin: 18px 0 0; }
.feature__copy p { font-size: 17px; line-height: 1.65; color: var(--au-slate-600); margin: 16px 0 0; }
.feature__pts { list-style: none; margin: 26px 0 0; padding: 0; display: flex; flex-direction: column; gap: 16px; }
.feature__pts li { display: flex; gap: 13px; }
.feature__pts .ck { width: 26px; height: 26px; border-radius: 8px; background: var(--au-green-50); border: 1px solid var(--au-green-200); display: grid; place-items: center; flex: none; margin-top: 2px; }
.feature__pts .ck svg { width: 15px; height: 15px; stroke: var(--au-green-600); fill: none; stroke-width: 2.6; }
.feature__pts b { font-size: 15.5px; font-weight: 700; color: var(--au-green-950); display: block; }
.feature__pts span { font-size: 14px; line-height: 1.55; color: var(--au-slate-600); }
.feature__link { margin-top: 28px; display: inline-flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--au-green-700); text-decoration: none; }
.feature__link svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2.2; transition: transform var(--au-dur-base) var(--au-ease-out); }
.feature__link:hover svg { transform: translateX(4px); }

/* media frame */
.fmedia {
  position: relative; border-radius: var(--au-r-2xl); padding: 22px;
  background:
    radial-gradient(80% 80% at 30% 10%, rgba(126,211,33,.12), transparent 60%),
    linear-gradient(160deg, var(--au-green-50), #fff 70%);
  border: 1px solid var(--au-green-100);
  box-shadow: var(--au-shadow-lg);
}
.fmedia__win { background: #fff; border: 1px solid var(--au-border); border-radius: var(--au-r-lg); overflow: hidden; box-shadow: var(--au-shadow-card); }
.fmedia__bar { height: 34px; display: flex; align-items: center; gap: 6px; padding: 0 12px; border-bottom: 1px solid var(--au-slate-100); background: var(--au-slate-50); }
.fmedia__bar i { width: 8px; height: 8px; border-radius: 50%; background: var(--au-slate-200); }
.fmedia__bar b { margin-left: 8px; font-size: 11px; font-weight: 700; color: var(--au-slate-500); letter-spacing: .02em; }

/* monitoring map mock */
.mon { padding: 16px; display: flex; flex-direction: column; gap: 12px; }
.mon__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.mon__stat { border: 1px solid var(--au-slate-100); border-radius: 10px; padding: 12px; }
.mon__stat .lab { font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--au-slate-400); }
.mon__stat .val { font-size: 26px; font-weight: 800; letter-spacing: -0.02em; color: var(--au-green-950); margin-top: 4px; }
.mon__stat .val.red { color: var(--au-status-blocked); }
.mon__map { position: relative; height: 150px; border-radius: 10px; overflow: hidden; border: 1px solid var(--au-slate-100);
  background:
    linear-gradient(0deg, rgba(31,166,74,.05), rgba(31,166,74,.05)),
    repeating-linear-gradient(0deg, transparent 0 23px, rgba(11,61,30,.05) 23px 24px),
    repeating-linear-gradient(90deg, transparent 0 23px, rgba(11,61,30,.05) 23px 24px),
    #F6FBF7; }
.mon__pin { position: absolute; width: 14px; height: 14px; border-radius: 50%; border: 3px solid #fff; box-shadow: 0 2px 6px rgba(11,61,30,.25); }
.mon__pin::after { content: ""; position: absolute; inset: -8px; border-radius: 50%; border: 2px solid currentColor; opacity: 0; animation: ping 2.6s var(--au-ease-out) infinite; }
@keyframes ping { 0% { transform: scale(.6); opacity: .5; } 100% { transform: scale(1.8); opacity: 0; } }
.mon__pin.g { background: var(--au-status-done); color: var(--au-status-done); }
.mon__pin.b { background: var(--au-status-new); color: var(--au-status-new); }
.mon__pin.a { background: var(--au-status-progress); color: var(--au-status-progress); }
.mon__pin.r { background: var(--au-status-blocked); color: var(--au-status-blocked); }

/* services list mock */
.svc { padding: 14px; display: flex; flex-direction: column; gap: 8px; }
.svc__item { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border: 1px solid var(--au-slate-100); border-radius: 10px; }
.svc__ic { width: 34px; height: 34px; border-radius: 9px; display: grid; place-items: center; flex: none; }
.svc__ic svg { width: 17px; height: 17px; stroke: #fff; fill: none; stroke-width: 2; }
.svc__tx b { font-size: 13px; font-weight: 700; color: var(--au-green-950); display: block; }
.svc__tx span { font-size: 11px; color: var(--au-slate-500); }
.svc__rep { margin-left: auto; font-size: 10px; font-weight: 800; letter-spacing: .04em; color: var(--au-green-700); background: var(--au-green-50); border: 1px solid var(--au-green-200); padding: 3px 9px; border-radius: var(--au-r-full); }

/* timeline mock for tasks */
.tl { padding: 16px; display: flex; flex-direction: column; gap: 0; }
.tl__row { display: grid; grid-template-columns: 64px 1fr; gap: 12px; padding: 9px 0; }
.tl__time { font-family: var(--au-font-mono); font-size: 11px; color: var(--au-slate-400); padding-top: 11px; }
.tl__card { border: 1px solid var(--au-slate-100); border-left: 3px solid var(--au-green-500); border-radius: 9px; padding: 10px 12px; background: #fff; }
.tl__card.b { border-left-color: var(--au-status-new); }
.tl__card.a { border-left-color: var(--au-status-progress); }
.tl__card b { font-size: 12.5px; font-weight: 700; color: var(--au-green-950); }
.tl__card span { display: block; font-size: 11px; color: var(--au-slate-500); margin-top: 2px; }
.tl__bar { height: 5px; border-radius: 99px; background: var(--au-slate-100); margin-top: 8px; overflow: hidden; }
.tl__bar i { display: block; height: 100%; border-radius: 99px; background: linear-gradient(90deg, var(--au-green-500), var(--au-lime-500)); width: 0; transition: width 1.1s var(--au-ease-out); }

/* =====================================================
   SECURITY / RELIABILITY (dark band)
   ===================================================== */
.security {
  position: relative; margin-top: 40px; overflow: hidden;
  background:
    radial-gradient(70% 120% at 12% 0%, rgba(126,211,33,.14), transparent 55%),
    radial-gradient(60% 100% at 90% 20%, rgba(31,166,74,.16), transparent 55%),
    var(--au-green-950);
  color: #fff;
}
.security__in { padding: 100px 0; }
.security .shead h2 { color: #fff; }
.security .shead p { color: rgba(255,255,255,.72); }
.security .section-eyebrow { color: var(--au-lime-400); }
.sec__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 54px; }
.sec__card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--au-r-xl); padding: 24px 22px;
  backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
  transition: transform var(--au-dur-base) var(--au-ease-out), border-color var(--au-dur-base), background var(--au-dur-base);
}
.sec__card:hover { transform: translateY(-3px); border-color: rgba(126,211,33,.4); background: rgba(255,255,255,.06); }
.sec__card .ic { width: 46px; height: 46px; border-radius: 12px; background: rgba(126,211,33,.14); border: 1px solid rgba(126,211,33,.3); display: grid; place-items: center; margin-bottom: 18px; }
.sec__card .ic svg { width: 23px; height: 23px; stroke: var(--au-lime-400); fill: none; stroke-width: 2; }
.sec__card h3 { font-size: 17px; font-weight: 700; color: #fff; margin: 0 0 7px; letter-spacing: -0.01em; }
.sec__card p { font-size: 14px; line-height: 1.55; color: rgba(255,255,255,.66); margin: 0; }

.metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 64px; padding-top: 54px; border-top: 1px solid rgba(255,255,255,.10); }
.metric { text-align: center; }
.metric__v { font-size: clamp(38px, 4.4vw, 56px); font-weight: 800; letter-spacing: -0.03em; line-height: 1;
  background: linear-gradient(120deg, #fff, var(--au-lime-300)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.metric__l { font-size: 14px; font-weight: 600; color: rgba(255,255,255,.7); margin-top: 12px; }

/* =====================================================
   TESTIMONIAL
   ===================================================== */
.quote { padding: 100px 0; }
.qcard {
  position: relative; max-width: 920px; margin: 0 auto; text-align: center;
  background: #fff; border: 1px solid var(--au-border); border-radius: var(--au-r-2xl);
  padding: 64px 56px; box-shadow: var(--au-shadow-lg); overflow: hidden;
}
.qcard::before { content: ""; position: absolute; inset: 0; background: var(--au-aurora); pointer-events: none; }
.qcard__mark { position: relative; font-size: 64px; line-height: .6; font-weight: 800; color: var(--au-green-200); height: 28px; }
.qcard blockquote { position: relative; font-size: clamp(20px, 2.4vw, 28px); line-height: 1.4; font-weight: 600; letter-spacing: -0.02em; color: var(--au-green-950); margin: 18px 0 0; }
.qcard__by { position: relative; display: inline-flex; align-items: center; gap: 13px; margin-top: 30px; }
.qcard__av { width: 48px; height: 48px; border-radius: 50%; background: var(--au-green-100); border: 1px solid var(--au-green-200); display: grid; place-items: center; font-size: 16px; font-weight: 800; color: var(--au-green-700); }
.qcard__by .nm { text-align: left; }
.qcard__by .nm b { display: block; font-size: 15px; font-weight: 700; color: var(--au-green-950); }
.qcard__by .nm span { font-size: 13px; color: var(--au-slate-500); }
.qcard__ph { position: relative; margin-top: 22px; font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--au-slate-400); }

/* =====================================================
   FINAL CTA
   ===================================================== */
.cta { padding: 40px 0 110px; }
.cta__box {
  position: relative; overflow: hidden; text-align: center;
  border-radius: var(--au-r-2xl); padding: 78px 40px;
  background:
    radial-gradient(80% 120% at 20% 0%, rgba(126,211,33,.16), transparent 55%),
    radial-gradient(70% 110% at 85% 30%, rgba(31,166,74,.18), transparent 55%),
    var(--au-green-950);
  border: 1px solid var(--au-green-800);
}
.cta__box h2 { font-size: clamp(30px, 4vw, 48px); line-height: 1.08; font-weight: 800; letter-spacing: -0.03em; color: #fff; margin: 0 auto; max-width: 18ch; }
.cta__box p { font-size: 18px; line-height: 1.55; color: rgba(255,255,255,.74); margin: 18px auto 0; max-width: 52ch; }
.cta__btns { display: inline-flex; gap: 13px; margin-top: 34px; flex-wrap: wrap; justify-content: center; }
.cta .btn-glass { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.22); }
.cta .btn-glass:hover { background: rgba(255,255,255,.16); }
.cta__fine { margin-top: 22px; font-size: 13px; color: rgba(255,255,255,.55); }

/* =====================================================
   FOOTER
   ===================================================== */
.footer { background: var(--au-slate-50); border-top: 1px solid var(--au-border); padding: 72px 0 34px; }
.footer__top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer__brand .brand { margin-bottom: 16px; }
.footer__brand p { font-size: 14px; line-height: 1.6; color: var(--au-slate-500); max-width: 32ch; margin: 0; }
.footer__brand .tag { margin-top: 18px; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--au-green-600); }
.fcol h4 { font-size: 12px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--au-slate-400); margin: 0 0 16px; }
.fcol a { display: block; font-size: 14px; font-weight: 600; color: var(--au-slate-600); text-decoration: none; padding: 6px 0; transition: color var(--au-dur-fast); }
.fcol a:hover { color: var(--au-green-700); }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 56px; padding-top: 26px; border-top: 1px solid var(--au-border); }
.footer__bottom p { font-size: 13px; color: var(--au-slate-500); margin: 0; }
.footer__soc { display: flex; gap: 10px; }
.footer__soc a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--au-border); display: grid; place-items: center; color: var(--au-slate-500); }
.footer__soc a:hover { color: var(--au-green-700); border-color: var(--au-green-300); }
.footer__soc svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }

/* =====================================================
   SCROLL REVEAL
   ===================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--au-ease-out), transform .7s var(--au-ease-out); transition-delay: var(--d, 0ms); }
.reveal.in { opacity: 1; transform: none; }

/* hero load animation */
.hero__inner > * { opacity: 0; transform: translateY(20px); animation: heroUp .9s var(--au-ease-out) forwards; }
.hero__inner > *:nth-child(1) { animation-delay: .05s; }
.hero__inner > *:nth-child(2) { animation-delay: .15s; }
.hero__inner > *:nth-child(3) { animation-delay: .25s; }
.hero__inner > *:nth-child(4) { animation-delay: .35s; }
.hero__inner > *:nth-child(5) { animation-delay: .45s; }
.hero__stage { opacity: 0; transform: translateY(40px) scale(.985); animation: heroUp 1.1s var(--au-ease-out) .5s forwards; }
@keyframes heroUp { to { opacity: 1; transform: none; } }

.float { animation: floaty 7s var(--au-ease-in-out) infinite; }
@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.chip.float-a { animation: floaty 6s var(--au-ease-in-out) infinite; }
.chip.float-b { animation: floaty 8s var(--au-ease-in-out) .6s infinite; }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .feature__row { gap: 44px; }
}
@media (max-width: 860px) {
  :root { --gutter: 22px; }
  .nav__right .btn-ghost { display: none; }
  .pillars__grid { grid-template-columns: 1fr; }
  .sec__grid { grid-template-columns: 1fr 1fr; }
  .metrics { grid-template-columns: 1fr 1fr; gap: 36px 18px; }
  .feature__row { grid-template-columns: 1fr; gap: 32px; }
  .feature--reverse .feature__media { order: 0; }
  .proof__in { grid-template-columns: 1fr; gap: 36px; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .logos__row { gap: 28px; }
  .chip { display: none; }
  .phone { display: none; }
  .hero__stage { perspective: none; }
}
@media (max-width: 540px) {
  .pw { grid-template-columns: 1fr; }
  .pw__side { display: none; }
  .pw__filters { grid-template-columns: 1fr 1fr; }
  .pw__tr { grid-template-columns: 1fr 78px; }
  .pw__tr .pw__date, .pw__tr .pw__obj, .pw__tr .pw__who, .pw__tr .pw__rowact { display: none; }
  .pw__th span:not(:first-child):not(:nth-child(5)) { display: none; }
  .sec__grid { grid-template-columns: 1fr; }
  .proof__checks { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .qcard { padding: 44px 26px; }
  .cta__box { padding: 56px 24px; }
}

/* =====================================================
   REDUCED MOTION
   ===================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1; transform: none; }
  .hero__inner > *, .hero__stage { opacity: 1; transform: none; }
}
