/* PrintFleet, Option A: Control Room.  Dark, cinematic, glass. */

:root {
  --bg: #050a14;
  --bg-2: #07101f;
  --navy: #0b2d5b;
  --blue: #0066ff;
  --blue-hi: #2e83ff;
  --cyan: #00c6ff;
  --teal: #00d1a0;
  --green: #7ed321;
  --amber: #f2a900;
  --text: #eef3fa;
  --soft: #b9c5d8;
  --muted: #8e9cb3;
  --line: rgba(160, 190, 235, 0.12);
  --line-2: rgba(160, 190, 235, 0.2);
  --glass: rgba(18, 32, 58, 0.45);
  --glass-2: rgba(22, 40, 72, 0.6);
  --grad: linear-gradient(90deg, #0066ff 0%, #00c6ff 38%, #00d1a0 70%, #7ed321 100%);
  --radius: 20px;
  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --sans: "Poppins", system-ui, -apple-system, "Segoe UI", sans-serif;
  --mono: "JetBrains Mono", ui-monospace, "Cascadia Mono", Consolas, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3 { margin: 0; line-height: 1.12; letter-spacing: -0.02em; font-weight: 600; text-wrap: balance; }
p { margin: 0; }
figure { margin: 0; }

::selection { background: rgba(0, 198, 255, 0.35); }

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 8px;
}

.sr {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  padding: 10px 16px; border-radius: 10px;
  background: var(--blue); color: #fff; text-decoration: none; font-weight: 600;
}
.skip:focus { top: 12px; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.num { font-family: var(--mono); font-weight: 500; letter-spacing: -0.02em; font-variant-numeric: tabular-nums; }

.grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Buttons */

.btn {
  --h: 46px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: var(--h);
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 600 15px/1 var(--sans);
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.25s var(--ease), background-color 0.2s, border-color 0.2s;
}
.btn--sm { --h: 40px; padding: 0 18px; font-size: 14px; }
.btn--lg { --h: 54px; padding: 0 30px; font-size: 16px; }
.btn--block { width: 100%; }

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, #0a5ce8 0%, #0066ff 55%, #0b72ff 100%);
  box-shadow: 0 0 0 1px rgba(120, 180, 255, 0.35) inset, 0 8px 28px -8px rgba(0, 102, 255, 0.75);
}
.btn--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(150, 200, 255, 0.5) inset, 0 12px 36px -8px rgba(0, 140, 255, 0.9);
}

.btn--ghost {
  color: var(--text);
  border-color: var(--line-2);
  background: rgba(255, 255, 255, 0.02);
}
.btn--ghost:hover { border-color: rgba(0, 198, 255, 0.55); background: rgba(0, 198, 255, 0.06); }

.btn--glass {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line-2);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.btn--glass:hover { background: rgba(255, 255, 255, 0.09); transform: translateY(-1px); }

/* Header */

.top {
  position: fixed; inset: 0 0 auto 0; z-index: 50;
  transition: background-color 0.3s, border-color 0.3s, backdrop-filter 0.3s;
  border-bottom: 1px solid transparent;
}
.top.is-scrolled,
.top.is-open {
  background: rgba(5, 10, 20, 0.78);
  border-bottom-color: var(--line);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  backdrop-filter: blur(16px) saturate(140%);
}
.top__inner {
  display: flex; align-items: center; gap: 28px;
  max-width: calc(1320px + var(--gutter) * 2);
  margin: 0 auto;
  padding: 16px var(--gutter);
}
.brand img { width: 148px; height: auto; }
.nav { display: flex; gap: 4px; margin-left: auto; }
.nav a {
  padding: 8px 14px; border-radius: 999px;
  color: var(--soft); text-decoration: none; font-size: 15px; font-weight: 500;
  transition: color 0.2s, background-color 0.2s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, 0.05); }
.top__actions { display: flex; align-items: center; gap: 10px; }
.brand + .top__actions { margin-left: auto; }

.menu {
  display: none;
  width: 42px; height: 42px; border-radius: 12px;
  border: 1px solid var(--line-2); background: rgba(255, 255, 255, 0.03);
  color: var(--text); cursor: pointer; place-items: center;
}
.menu__bars,
.menu__bars::before,
.menu__bars::after {
  display: block; width: 18px; height: 2px; border-radius: 2px; background: currentColor;
  transition: transform 0.25s var(--ease), opacity 0.2s;
}
.menu__bars { position: relative; }
.menu__bars::before,
.menu__bars::after { content: ""; position: absolute; left: 0; }
.menu__bars::before { top: -6px; }
.menu__bars::after { top: 6px; }
.menu[aria-expanded="true"] .menu__bars { background: transparent; }
.menu[aria-expanded="true"] .menu__bars::before { transform: translateY(6px) rotate(45deg); }
.menu[aria-expanded="true"] .menu__bars::after { transform: translateY(-6px) rotate(-45deg); }

.menu-panel {
  display: grid; gap: 4px;
  padding: 8px var(--gutter) 22px;
}
.menu-panel[hidden] { display: none; }
.menu-panel a:not(.btn) {
  padding: 12px 4px; border-bottom: 1px solid var(--line);
  text-decoration: none; font-weight: 500; color: var(--soft);
}
.menu-panel .btn { margin-top: 14px; }

/* Hero */

.hero {
  position: relative;
  padding: 136px 0 0;
  overflow: hidden;
  isolation: isolate;
}
.hero__sky {
  position: absolute; inset: 0; z-index: -2;
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(0, 102, 255, 0.32), transparent 70%),
    radial-gradient(40% 35% at 85% 18%, rgba(0, 209, 160, 0.14), transparent 70%),
    radial-gradient(35% 30% at 12% 30%, rgba(0, 198, 255, 0.12), transparent 70%),
    linear-gradient(180deg, #081a3a 0%, var(--bg) 62%);
}
.hero__sky::after {
  /* a faint grid, like a control room floor */
  content: ""; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(140, 180, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 180, 255, 0.05) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(70% 60% at 50% 20%, #000 20%, transparent 75%);
  mask-image: radial-gradient(70% 60% at 50% 20%, #000 20%, transparent 75%);
}

.hero__copy { position: relative; text-align: center; }

.words {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 26px;
  padding: 8px 18px;
  border: 1px solid var(--line-2); border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px; font-weight: 600; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--soft);
}
.words b { color: var(--teal); font-weight: 400; letter-spacing: 0; }

.hero h1 {
  max-width: 980px; margin: 0 auto;
  font-size: clamp(40px, 6.6vw, 80px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.04;
}
.hero h1 .grad { display: inline-block; padding-bottom: 0.08em; }

.lede {
  max-width: 680px; margin: 24px auto 0;
  font-size: clamp(17px, 1.6vw, 20px);
  color: var(--soft);
}
.cta { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; margin-top: 36px; }
.assure { margin-top: 22px; font-size: 14px; color: var(--muted); }

/* The pixel trail, after the logo */
.pixels {
  position: absolute; z-index: -1;
  top: 128px; right: max(4vw, calc(50% - 640px));
  width: 220px; height: 200px;
  pointer-events: none;
}
.pixels i {
  position: absolute;
  width: var(--s, 14px); height: var(--s, 14px);
  border-radius: 3px;
  background: var(--c, var(--cyan));
  box-shadow: 0 0 18px var(--c, var(--cyan));
  opacity: 0;
  animation: pixel 7s var(--ease) infinite;
  animation-delay: var(--d, 0s);
}
.pixels i:nth-child(1) { --c: #00a8ff; --s: 16px; left: 8px;   top: 128px; --d: 0s; }
.pixels i:nth-child(2) { --c: #00c6ff; --s: 12px; left: 44px;  top: 96px;  --d: 0.6s; }
.pixels i:nth-child(3) { --c: #00d6d0; --s: 20px; left: 76px;  top: 124px; --d: 1.3s; }
.pixels i:nth-child(4) { --c: #00d1a0; --s: 10px; left: 104px; top: 82px;  --d: 2s; }
.pixels i:nth-child(5) { --c: #00d1a0; --s: 18px; left: 124px; top: 44px;  --d: 2.6s; }
.pixels i:nth-child(6) { --c: #3fd46a; --s: 8px;  left: 150px; top: 102px; --d: 3.4s; }
.pixels i:nth-child(7) { --c: #7ed321; --s: 16px; left: 168px; top: 62px;  --d: 4.1s; }
.pixels i:nth-child(8) { --c: #00c6ff; --s: 22px; left: 186px; top: 8px;   --d: 4.8s; }
.pixels i:nth-child(9) { --c: #7ed321; --s: 10px; left: 200px; top: 112px; --d: 5.5s; }

@keyframes pixel {
  0%   { opacity: 0; transform: translate(-18px, 18px) scale(0.6); }
  18%  { opacity: 0.85; }
  60%  { opacity: 0.55; }
  100% { opacity: 0; transform: translate(26px, -30px) scale(1); }
}

/* Stage: the wall in perspective with the phone */

.stage {
  position: relative;
  width: min(1100px, calc(100% - var(--gutter) * 2));
  margin: 52px auto 0;
  perspective: 2200px;
  padding-bottom: 70px;
}
.stage__glow {
  position: absolute; left: 6%; right: 6%; top: 12%; bottom: 8%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 102, 255, 0.55), rgba(0, 198, 255, 0.18) 45%, transparent 72%);
  filter: blur(60px);
}
.screen {
  border-radius: 16px;
  overflow: hidden;
  background: #0b1424;
  border: 1px solid rgba(140, 190, 255, 0.22);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.6),
    0 40px 120px -30px rgba(0, 30, 90, 0.9),
    0 0 80px -20px rgba(0, 140, 255, 0.45);
  transform: rotateX(14deg) scale(0.98);
  transform-origin: 50% 0%;
  animation: settle 1.4s var(--ease) 0.15s both;
}
@keyframes settle {
  from { transform: rotateX(26deg) translateY(40px) scale(0.94); opacity: 0; }
  to   { transform: rotateX(14deg) scale(0.98); opacity: 1; }
}
.screen__bar {
  display: flex; align-items: center; gap: 7px;
  height: 34px; padding: 0 14px;
  background: linear-gradient(180deg, #111d33, #0d172a);
  border-bottom: 1px solid rgba(140, 190, 255, 0.12);
}
.screen__bar i { width: 10px; height: 10px; border-radius: 50%; background: #2a3a55; }
.screen__bar span {
  margin: 0 auto; padding: 3px 60px; border-radius: 6px;
  background: rgba(255, 255, 255, 0.05);
  font-size: 11px; color: var(--muted);
  transform: translateX(-20px);
}

/* Phone frame, drawn in CSS */

.phone {
  position: relative;
  width: var(--pw, 260px);
  aspect-ratio: 390 / 820;
  padding: calc(var(--pw, 260px) * 0.04);
  border-radius: calc(var(--pw, 260px) * 0.17);
  background: linear-gradient(145deg, #2a3446, #0d131e 40%, #1b2433);
  box-shadow:
    0 0 0 1px rgba(170, 200, 240, 0.25),
    inset 0 0 0 2px rgba(0, 0, 0, 0.7),
    0 50px 90px -30px rgba(0, 0, 0, 0.9),
    0 0 70px -20px rgba(0, 198, 255, 0.45);
}
.phone::before {
  /* the island */
  content: ""; position: absolute; z-index: 2;
  top: calc(var(--pw, 260px) * 0.07); left: 50%;
  width: 30%; height: calc(var(--pw, 260px) * 0.075);
  transform: translateX(-50%);
  border-radius: 999px; background: #000;
}
.phone__screen {
  height: 100%;
  border-radius: calc(var(--pw, 260px) * 0.135);
  overflow: hidden;
  background: #0b1220;
  padding-top: calc(var(--pw, 260px) * 0.12);
}
.phone__screen img { width: 100%; }

.phone--hero {
  --pw: 250px;
  position: absolute; right: -2%; bottom: 0;
  transform: rotate(4deg);
  animation: rise 1.4s var(--ease) 0.5s both;
}
@keyframes rise {
  from { opacity: 0; transform: translateY(60px) rotate(8deg); }
  to   { opacity: 1; transform: translateY(0) rotate(4deg); }
}

/* Live strip */

.strip {
  position: relative;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, rgba(0, 102, 255, 0.06), rgba(0, 209, 160, 0.05));
}
.strip__inner {
  display: flex; align-items: center; gap: 40px;
  padding-top: 26px; padding-bottom: 26px;
}
.strip__label {
  display: flex; align-items: center; gap: 10px; flex: none;
  font-size: 12px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--soft);
}
.dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(126, 211, 33, 0.6);
  animation: pulse 2.2s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(126, 211, 33, 0.55); }
  70%  { box-shadow: 0 0 0 10px rgba(126, 211, 33, 0); }
  100% { box-shadow: 0 0 0 0 rgba(126, 211, 33, 0); }
}
.strip__stats {
  display: grid; grid-template-columns: repeat(5, minmax(0, 1fr));
  flex: 1; gap: 24px; margin: 0;
}
.strip__stats > div { border-left: 1px solid var(--line); padding-left: 20px; }
.strip__stats dt {
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted);
}
.strip__stats dd { margin: 4px 0 0; font-size: 26px; line-height: 1.2; color: var(--text); white-space: nowrap; }
.strip__stats dd small { margin-left: 8px; font-family: var(--sans); font-size: 13px; color: var(--muted); letter-spacing: 0; }
.num--green { color: var(--green) !important; }
.num--amber { color: var(--amber) !important; }

/* Sections */

.section { position: relative; padding: clamp(76px, 9vw, 124px) 0; }
.head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.head--center { margin-left: auto; margin-right: auto; text-align: center; }
.head h2, .section h2 { font-size: clamp(32px, 4.4vw, 54px); font-weight: 700; letter-spacing: -0.03em; }
.head > p:not(.eyebrow) { margin-top: 18px; color: var(--soft); font-size: 18px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--cyan);
}
.eyebrow::before {
  /* three pixels */
  content: ""; width: 20px; height: 8px;
  background:
    linear-gradient(var(--blue), var(--blue)) 0 100% / 6px 6px no-repeat,
    linear-gradient(var(--cyan), var(--cyan)) 8px 50% / 5px 5px no-repeat,
    linear-gradient(var(--teal), var(--teal)) 15px 0 / 4px 4px no-repeat;
}

.big { font-size: clamp(18px, 1.7vw, 21px); color: var(--soft); margin-top: 18px; }

.glass {
  position: relative;
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(24, 42, 74, 0.55), rgba(12, 22, 42, 0.45));
  border: 1px solid var(--line);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 30px 60px -40px rgba(0, 0, 0, 0.8);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
}

.ticks { list-style: none; padding: 0; margin: 26px 0 0; display: grid; gap: 14px; }
.ticks li { position: relative; padding-left: 32px; color: var(--soft); }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: 5px;
  width: 18px; height: 18px; border-radius: 6px;
  background: rgba(0, 209, 160, 0.14);
  box-shadow: inset 0 0 0 1px rgba(0, 209, 160, 0.4);
}
.ticks li::after {
  content: ""; position: absolute; left: 6px; top: 9px;
  width: 6px; height: 9px;
  border: solid var(--teal); border-width: 0 2px 2px 0;
  transform: rotate(40deg);
}

/* Trio */

.trio { padding-bottom: clamp(40px, 5vw, 70px); }
.trio__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trio__card { padding: 34px 30px 36px; overflow: hidden; }
.trio__card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: var(--grad); opacity: 0.8;
}
.trio__word {
  display: block; margin-bottom: 22px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3em; text-transform: uppercase;
}
.trio__word--1 { color: #3d94ff; }
.trio__word--2 { color: var(--cyan); }
.trio__word--3 { color: var(--teal); }
.trio__card h3 { font-size: 23px; margin-bottom: 12px; }
.trio__card p { color: var(--soft); font-size: 16px; }

/* Features */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 4.3fr) minmax(0, 7.7fr);
  gap: clamp(36px, 5vw, 64px);
  align-items: center;
}
.feature + .feature { margin-top: clamp(80px, 10vw, 136px); }
.feature--flip .feature__text { order: 2; }
.feature h3 { font-size: clamp(28px, 3vw, 38px); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 18px; }
.feature__text > p:not(.tag) { color: var(--soft); }
.feature__text strong { color: var(--text); font-weight: 600; }

.tag {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 18px; padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px; font-weight: 600;
  border: 1px solid;
}
.tag span {
  padding: 2px 8px; border-radius: 999px;
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase;
  background: rgba(126, 211, 33, 0.16);
}
.tag--blue  { color: #6fb0ff; border-color: rgba(0, 102, 255, 0.45); background: rgba(0, 102, 255, 0.1); }
.tag--teal  { color: var(--teal); border-color: rgba(0, 209, 160, 0.4); background: rgba(0, 209, 160, 0.08); }
.tag--green { color: var(--green); border-color: rgba(126, 211, 33, 0.4); background: rgba(126, 211, 33, 0.08); }

.shot {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(140, 190, 255, 0.2);
  background: #0b1424;
  box-shadow: 0 40px 90px -40px rgba(0, 40, 120, 0.9), 0 0 60px -30px rgba(0, 198, 255, 0.5);
}
.shot--flat { box-shadow: none; border-color: var(--line); border-radius: 12px; }

.feature__media.shot::after {
  /* a soft sheen */
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.06), transparent 35%);
}

.phones {
  position: relative;
  display: flex; justify-content: center; align-items: flex-start;
  min-height: 520px;
}
.phones::before {
  content: ""; position: absolute; inset: 10% 5%; z-index: -1;
  background: radial-gradient(50% 50% at 50% 50%, rgba(0, 209, 160, 0.3), transparent 70%);
  filter: blur(40px);
}
.phone--a { --pw: 250px; transform: rotate(-4deg) translateX(24px); z-index: 1; }
.phone--b { --pw: 250px; transform: rotate(4deg) translate(-24px, 56px); }

/* Wall screen */

.wall { overflow: hidden; }
.wall::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(60% 45% at 50% 60%, rgba(0, 70, 180, 0.28), transparent 70%);
}
.tv { position: relative; max-width: 1000px; margin: 0 auto; }
.tv__glow {
  position: absolute; inset: 8% 4% 12%; z-index: -1;
  background: conic-gradient(from 200deg at 50% 50%, rgba(0, 102, 255, 0.55), rgba(0, 198, 255, 0.45), rgba(0, 209, 160, 0.4), rgba(126, 211, 33, 0.3), rgba(0, 102, 255, 0.55));
  filter: blur(80px);
  opacity: 0.7;
}
.tv__bezel {
  padding: clamp(8px, 1.3vw, 14px);
  border-radius: clamp(10px, 1.4vw, 16px);
  background: linear-gradient(180deg, #1a1f29, #07090d);
  box-shadow:
    0 0 0 1px rgba(200, 220, 255, 0.14),
    inset 0 0 0 1px rgba(0, 0, 0, 0.9),
    0 60px 120px -40px rgba(0, 0, 0, 0.95);
}
.tv__bezel img { border-radius: 4px; }
.tv__stand {
  position: relative; height: clamp(40px, 6vw, 70px);
}
.tv__stand::before {
  content: ""; position: absolute; left: 50%; top: 0;
  width: 14%; height: 75%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #11151c, #1d2330);
  clip-path: polygon(30% 0, 70% 0, 82% 100%, 18% 100%);
}
.tv__stand::after {
  content: ""; position: absolute; left: 50%; bottom: 0;
  width: 32%; height: 10px;
  transform: translateX(-50%);
  border-radius: 6px 6px 3px 3px;
  background: linear-gradient(180deg, #2a3140, #10141b);
  box-shadow: 0 16px 30px -8px rgba(0, 0, 0, 0.9);
}

/* Reports and more */

.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.bento__reports {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: minmax(0, 4fr) minmax(0, 7fr); gap: 40px; align-items: center;
  padding: clamp(28px, 3.5vw, 44px);
}
.bento__reports h3 { font-size: 26px; margin-bottom: 14px; }
.bento__reports p { color: var(--soft); }
.reports { display: grid; gap: 14px; }
.mini { padding: 30px 26px 32px; transition: transform 0.35s var(--ease), border-color 0.3s; }
.mini:hover { transform: translateY(-4px); border-color: rgba(0, 198, 255, 0.3); }
.mini h3 { font-size: 19px; margin: 20px 0 10px; }
.mini p { color: var(--soft); font-size: 15px; }
.mini__icon {
  display: grid; place-items: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: linear-gradient(135deg, rgba(0, 102, 255, 0.28), rgba(0, 209, 160, 0.18));
  box-shadow: inset 0 0 0 1px rgba(120, 200, 255, 0.28), 0 10px 30px -10px rgba(0, 150, 255, 0.6);
}
.mini__icon svg {
  width: 24px; height: 24px;
  fill: none; stroke: #9fdcff; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round;
}

/* How it works */

.steps {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  position: relative;
}
.steps::before {
  content: ""; position: absolute; left: 12%; right: 12%; top: 58px; height: 1px; z-index: -1;
  background: var(--grad); opacity: 0.55;
}
.step { padding: 34px 30px 36px; }
.step__n {
  display: inline-grid; place-items: center;
  width: 50px; height: 50px; margin-bottom: 26px;
  border-radius: 14px;
  font: 600 17px/1 var(--mono);
  color: #fff;
  background: linear-gradient(135deg, #0066ff, #00c6ff);
  box-shadow: 0 10px 30px -8px rgba(0, 140, 255, 0.8);
}
.step:nth-child(2) .step__n { background: linear-gradient(135deg, #00a6e0, #00b98c); box-shadow: 0 10px 30px -8px rgba(0, 209, 160, 0.7); }
.step:nth-child(3) .step__n { background: linear-gradient(135deg, #00a582, #5fae16); box-shadow: 0 10px 30px -8px rgba(126, 211, 33, 0.6); }
.step h3 { font-size: 22px; margin-bottom: 12px; }
.step p { color: var(--soft); font-size: 16px; }

/* White label */

.brandsec { overflow: hidden; }
.brandsec::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(45% 55% at 78% 50%, rgba(0, 102, 255, 0.2), transparent 70%);
}
.brandsec__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px); align-items: center;
}
.brandsec__text .btn { margin-top: 34px; }

.signin {
  --accent: #0066ff;
  position: relative;
  aspect-ratio: 16 / 11;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(140, 190, 255, 0.2);
  box-shadow: 0 50px 100px -40px rgba(0, 0, 0, 0.9), 0 0 70px -30px var(--accent);
  animation: accent 12s steps(1) infinite;
}
.signin__art {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 65% at 18% 28%, color-mix(in srgb, var(--accent) 75%, transparent), transparent 70%),
    radial-gradient(45% 55% at 30% 95%, color-mix(in srgb, var(--accent) 40%, #00d1a0 20%), transparent 70%),
    linear-gradient(135deg, #0d1a33, #060b16);
}
.signin__art::before {
  content: ""; 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: 32px 32px;
}
.signin__art::after {
  content: "Your artwork"; position: absolute; left: 7%; bottom: 8%;
  font-size: 11px; font-weight: 600; letter-spacing: 0.24em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.signin__card {
  position: absolute; top: 50%; right: 7%;
  width: min(300px, 58%);
  transform: translateY(-50%);
  padding: 26px 24px;
  border-radius: 16px;
  background: rgba(8, 14, 26, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.signin__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 17px;
}
.signin__logo span {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 10px;
  background: var(--accent); color: #fff; font-size: 13px;
  transition: background-color 0.8s;
}
.signin__title { margin: 18px 0 14px; font-size: 14px; color: var(--soft); }
.signin__field {
  height: 38px; margin-bottom: 10px; padding: 0 12px;
  display: flex; align-items: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  font-size: 12px; color: var(--muted);
}
.signin__btn {
  display: grid; place-items: center;
  height: 40px; margin-top: 6px; border-radius: 10px;
  background: var(--accent); color: #fff; font-weight: 600; font-size: 14px;
  transition: background-color 0.8s;
}
.signin__swatches { display: flex; gap: 8px; margin-top: 18px; }
.signin__swatches i { width: 18px; height: 18px; border-radius: 6px; }
.signin__swatches i:nth-child(1) { background: #0066ff; }
.signin__swatches i:nth-child(2) { background: #e0461e; }
.signin__swatches i:nth-child(3) { background: #0c8a6b; }
.signin__swatches i:nth-child(4) { background: #7a3cd6; }

@keyframes accent {
  0%  { --accent: #0066ff; }
  25% { --accent: #e0461e; }
  50% { --accent: #0c8a6b; }
  75% { --accent: #7a3cd6; }
}
@property --accent { syntax: "<color>"; inherits: true; initial-value: #0066ff; }

/* Security */

.zeros {
  display: grid; grid-template-columns: repeat(3, 1fr);
  max-width: 900px; margin: 0 auto clamp(40px, 5vw, 60px);
  text-align: center;
}
.zeros > div + div { border-left: 1px solid var(--line); }
.zeros .num {
  display: block;
  font-family: var(--sans);
  font-size: clamp(56px, 8vw, 96px); line-height: 1; font-weight: 600; letter-spacing: -0.04em;
  background: linear-gradient(180deg, #ffffff, #8fd8ff);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.zeros p { margin-top: 10px; color: var(--soft); font-size: 15px; }

.facts { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fact { padding: 30px 28px 32px; }
.fact h3 { font-size: 20px; margin-bottom: 12px; }
.fact h3::before {
  content: ""; display: block; width: 28px; height: 3px; margin-bottom: 20px; border-radius: 3px;
  background: var(--grad);
}
.fact p { color: var(--soft); font-size: 16px; }

/* Demo */

.demo::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(50% 60% at 75% 55%, rgba(0, 102, 255, 0.25), transparent 70%),
    radial-gradient(30% 40% at 15% 30%, rgba(0, 209, 160, 0.1), transparent 70%);
}
.demo__grid {
  display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  gap: clamp(40px, 6vw, 90px); align-items: start;
}
.demo__text { padding-top: 12px; }
.returning {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 40px; padding: 20px 24px;
}
.returning p { color: var(--soft); font-size: 15px; }
.returning strong { display: block; color: var(--text); font-weight: 600; }

.form { padding: clamp(26px, 3.5vw, 42px); display: grid; gap: 18px; }
.form::before {
  content: ""; position: absolute; inset: -1px; z-index: -1; border-radius: inherit;
  padding: 1px;
  background: linear-gradient(140deg, rgba(0, 198, 255, 0.55), rgba(255, 255, 255, 0.04) 40%, rgba(0, 209, 160, 0.4));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field > span { font-size: 14px; font-weight: 500; color: var(--soft); }
.field em { font-style: normal; color: var(--muted); font-weight: 400; margin-left: 4px; }
.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(160, 190, 235, 0.18);
  background: rgba(4, 9, 18, 0.6);
  color: var(--text);
  font: 400 16px/1.4 var(--sans);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}
.field textarea { resize: vertical; min-height: 116px; }
.field input::placeholder,
.field textarea::placeholder { color: #71809a; }
.field select {
  appearance: none; -webkit-appearance: none;
  padding-right: 44px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%239fdcff' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.field select:invalid { color: #8e9cb3; }
.field select option { background: #0b1424; color: var(--text); }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: rgba(160, 190, 235, 0.32); }
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--cyan);
  background-color: rgba(4, 12, 26, 0.85);
  box-shadow: 0 0 0 4px rgba(0, 198, 255, 0.16);
}
.form .btn { margin-top: 6px; }
.form__note { font-size: 13px; color: var(--muted); text-align: center; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* Footer */

.foot {
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, var(--bg), #03060d);
  padding: 64px 0 36px;
}
.foot__inner { display: flex; justify-content: space-between; align-items: flex-start; gap: 40px; flex-wrap: wrap; }
.foot__brand img { width: 170px; margin-bottom: 16px; }
.foot__brand p { color: var(--soft); }
.foot__words { margin-top: 10px; font-size: 12px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--muted) !important; }
.foot__words b { color: var(--teal); font-weight: 400; margin: 0 6px; }
.foot__nav { display: flex; flex-wrap: wrap; gap: 8px 28px; }
.foot__nav a { color: var(--soft); text-decoration: none; font-size: 15px; }
.foot__nav a:hover { color: var(--text); }
.foot__base {
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 13px; color: var(--muted);
}

/* Simple pages: thanks and 404 */

.solo {
  min-height: 100vh; min-height: 100svh;
  display: grid; place-items: center;
  padding: 120px var(--gutter) 80px;
  text-align: center;
  position: relative; overflow: hidden; isolation: isolate;
}
.solo__card { max-width: 620px; }
.solo__mark { width: 180px; margin: 0 auto 32px; filter: drop-shadow(0 20px 50px rgba(0, 140, 255, 0.45)); }
.solo h1 { font-size: clamp(36px, 6vw, 60px); font-weight: 700; letter-spacing: -0.03em; }
.solo p { margin: 20px auto 0; color: var(--soft); font-size: 18px; max-width: 520px; }
.solo .cta { margin-top: 34px; }
.solo__code { font-family: var(--mono); color: var(--cyan); letter-spacing: 0.2em; font-size: 14px; margin-bottom: 14px !important; }

/* Scroll reveals, only when JavaScript is running */

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
  transition-delay: var(--delay, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* Responsive */

@media (max-width: 1080px) {
  .nav { display: none; }
  .top__actions { margin-left: auto; }
  .menu { display: grid; }
  .strip__inner { flex-direction: column; align-items: flex-start; gap: 18px; }
  .strip__stats { width: 100%; }
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento__reports { grid-template-columns: 1fr; gap: 28px; }
}
@media (min-width: 1081px) {
  .menu-panel { display: none !important; }
}

@media (max-width: 900px) {
  .feature,
  .brandsec__grid,
  .demo__grid { grid-template-columns: 1fr; }
  .feature--flip .feature__text { order: 0; }
  .returning { display: none; }
  .trio__grid,
  .steps,
  .facts { grid-template-columns: 1fr; }
  .steps::before { left: 55px; right: auto; top: 40px; bottom: 40px; width: 1px; height: auto; background: linear-gradient(180deg, #0066ff, #00d1a0, #7ed321); }
  .strip__stats { grid-template-columns: repeat(3, minmax(0, 1fr)); row-gap: 18px; }
  .phone--hero { --pw: 190px; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .top__inner { gap: 12px; padding-top: 12px; padding-bottom: 12px; }
  .brand img { width: 124px; }
  .top__demo { display: none; }
  .hero { padding-top: 116px; }
  .words { gap: 8px; padding: 7px 12px; font-size: 10px; letter-spacing: 0.2em; }
  .cta .btn { width: 100%; }
  .stage { margin-top: 44px; padding-bottom: 90px; width: calc(100% - 32px); }
  .screen { transform: rotateX(8deg); animation-name: settle-sm; }
  .screen__bar { height: 24px; gap: 5px; padding: 0 10px; }
  .screen__bar i { width: 7px; height: 7px; }
  .screen__bar span { display: none; }
  .phone--hero { --pw: 132px; right: -6px; }
  .pixels { top: 88px; right: -60px; transform: scale(0.7); }
  .strip__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .strip__stats > div:last-child { display: none; }
  .strip__stats dd { font-size: 22px; }
  .phones { min-height: 0; padding-bottom: 50px; }
  .phone--a, .phone--b { --pw: min(44vw, 200px); }
  .phone--a { transform: rotate(-4deg) translateX(10px); }
  .phone--b { transform: rotate(4deg) translate(-10px, 44px); }
  .bento { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; }
  .zeros p { font-size: 13px; padding: 0 6px; }
  .signin { aspect-ratio: 4 / 5; }
  .signin__card { right: 50%; transform: translate(50%, -50%); width: 78%; }
  .foot__base { flex-direction: column; }
}
@keyframes settle-sm {
  from { transform: rotateX(20deg) translateY(30px); opacity: 0; }
  to   { transform: rotateX(8deg); opacity: 1; }
}

/* Motion: respect the reader's setting */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .pixels i { opacity: 0.6; animation: none; }
  .dot { animation: none; }
  .signin { animation: none; }
  .js .reveal { opacity: 1; transform: none; }
}
