:root {
  --ink: #0d1b27;
  --ink-soft: #33485a;
  --muted: #566370;
  --soft: #f5f7f8;
  --surface: #ffffff;
  --line: #dde6ea;
  --primary: #0f766e;
  --primary-dark: #0b4f4a;
  --mint: #6ee7d8;
  --blue: #2457d6;
  --green: #7aa33a;
  --amber: #c47a1b;
  --slate-900: #07131d;
  --slate-800: #0d1b25;
  --radius: 10px;
  --radius-lg: 16px;
  --shadow: 0 18px 48px rgba(16, 32, 51, 0.12);
  --shadow-soft: 0 8px 26px rgba(16, 32, 51, 0.07);
  --container: 1180px;
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: "Sora", "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 32, 51, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, black, transparent 720px);
}

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

figure {
  margin: 0;
}

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

p {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 1rem;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  line-height: 1.08;
  font-weight: 700;
  letter-spacing: -0.018em;
}

h1 {
  max-width: 800px;
  font-size: clamp(2.5rem, 4.6vw, 3.85rem);
}

h2 {
  font-size: clamp(1.9rem, 3vw, 2.45rem);
}

h3 {
  font-size: 1.16rem;
  letter-spacing: -0.01em;
}

ul {
  margin: 0;
  padding: 0;
}

button,
input,
select,
textarea {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(217, 226, 231, 0.8);
  backdrop-filter: blur(14px);
}

.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.nav-logo {
  width: 172px;
  height: auto;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  list-style: none;
}

.nav-menu a,
.dropdown-toggle,
.lang-link {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 0.75rem;
  border: 0;
  border-radius: 6px;
  color: #344054;
  background: transparent;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
}

.nav-menu a:hover,
.dropdown-toggle:hover,
.nav-menu a[aria-current="page"] {
  color: var(--primary-dark);
  background: #edf7f5;
}

.has-dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  margin-left: 0.45rem;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 190px;
  padding: 0.45rem;
  list-style: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 160ms ease, transform 160ms ease, visibility 160ms ease;
}

.has-dropdown.open .dropdown,
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  width: 100%;
  justify-content: flex-start;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.lang-link {
  border: 1px solid var(--line);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: white;
}

.nav-toggle span {
  width: 19px;
  height: 2px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 0.98rem;
  font-weight: 720;
  line-height: 1;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(15, 118, 110, 0.18);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.btn-secondary {
  color: var(--ink);
  background: #fff;
  border-color: var(--line);
}

.btn-secondary:hover {
  border-color: #a8bac4;
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.08);
}

.btn-ghost {
  color: #eaf7f5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(14px);
}

.btn-ghost:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-light {
  color: var(--primary-dark);
  background: #fff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-small {
  min-height: 40px;
  padding-inline: 0.9rem;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-home {
  min-height: min(820px, calc(100svh - 80px));
  display: grid;
  align-items: end;
  padding: 4.6rem 0 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(110, 231, 216, 0.16), transparent 28%),
    linear-gradient(180deg, #07131d 0%, #0d1b25 52%, #07131d 100%);
  border-bottom: 1px solid #183141;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 13, 19, 0.95) 0%, rgba(5, 13, 19, 0.78) 36%, rgba(5, 13, 19, 0.32) 68%, rgba(5, 13, 19, 0.7) 100%),
    linear-gradient(180deg, transparent 0%, rgba(5, 13, 19, 0.82) 88%);
  z-index: 1;
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: 2.4rem;
  align-items: center;
  min-height: 660px;
}

.hero-copy {
  padding: 2.4rem 0 4.5rem;
}

.hero-copy h1 {
  max-width: 720px;
  color: #fff;
  text-wrap: balance;
}

.hero-copy p,
.page-hero p {
  max-width: 660px;
  margin-top: 1.25rem;
  color: #c7d4da;
  font-size: 1.17rem;
}

.page-hero p {
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.metrics-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  width: min(100%, 710px);
  margin-top: 2.4rem;
  border: 1px solid rgba(185, 215, 221, 0.24);
  border-radius: var(--radius);
  background: rgba(7, 19, 29, 0.68);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.metrics-row div {
  padding: 1rem;
  border-right: 1px solid rgba(185, 215, 221, 0.2);
}

.metrics-row div:last-child {
  border-right: 0;
}

.metrics-row strong {
  display: block;
  color: #a8fff4;
  font-size: 1.25rem;
  line-height: 1.15;
}

.metrics-row span {
  display: block;
  margin-top: 0.35rem;
  color: #afc3cb;
  font-size: 0.83rem;
  line-height: 1.35;
}

.hero-stage {
  position: relative;
  min-height: 520px;
  border-radius: 14px;
}

.hero-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid rgba(185, 215, 221, 0.2);
  border-radius: 14px;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.42);
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(90deg, rgba(7, 19, 29, 0.15), rgba(7, 19, 29, 0.1) 45%, rgba(7, 19, 29, 0.46));
}

.scan-beam {
  position: absolute;
  left: 28%;
  top: 24%;
  width: 2px;
  height: 62%;
  z-index: 2;
  background: linear-gradient(180deg, transparent, rgba(110, 231, 216, 0.92), transparent);
  box-shadow: 0 0 28px rgba(110, 231, 216, 0.95), 0 0 80px rgba(36, 87, 214, 0.6);
  transform: rotate(42deg);
  animation: scan-sweep 4.8s ease-in-out infinite;
}

.detection-tag {
  position: absolute;
  z-index: 3;
  padding: 0.48rem 0.62rem;
  border: 1px solid rgba(110, 231, 216, 0.68);
  border-radius: 6px;
  color: #eafffb;
  background: rgba(6, 25, 34, 0.72);
  font-size: 0.78rem;
  font-weight: 760;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}

.tag-a {
  left: 28%;
  top: 46%;
}

.tag-b {
  right: 11%;
  top: 54%;
}

.live-panel {
  position: absolute;
  z-index: 4;
  right: -1.6rem;
  top: 18%;
  width: min(420px, 58%);
  padding: 1rem;
  border: 1px solid rgba(185, 215, 221, 0.24);
  border-radius: 10px;
  color: #e8f4f3;
  background: rgba(7, 19, 29, 0.82);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.36);
  backdrop-filter: blur(18px);
}

.panel-top,
.panel-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
}

.panel-top span {
  color: #a5f3c5;
  font-size: 0.8rem;
}

.panel-grid {
  margin: 1rem 0;
}

.panel-grid div {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid rgba(185, 215, 221, 0.14);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.055);
}

.panel-grid b,
.panel-grid small {
  display: block;
}

.panel-grid b {
  color: #fff;
  font-size: 1.1rem;
}

.panel-grid small {
  margin-top: 0.2rem;
  color: #b8cbd2;
  font-size: 0.72rem;
}

.live-panel svg {
  width: 100%;
  height: 92px;
  border-radius: 7px;
  background:
    linear-gradient(rgba(255,255,255,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 100% 22px, 40px 100%;
}

.inspection-ticker {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 64px;
  padding: 0 4vw;
  overflow-x: auto;
  color: #d8eceb;
  background: rgba(5, 18, 26, 0.92);
  border-top: 1px solid rgba(185, 215, 221, 0.18);
}

.inspection-ticker span {
  color: #8ff7e8;
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.inspection-ticker b,
.inspection-ticker em {
  white-space: nowrap;
  font-size: 0.86rem;
}

.inspection-ticker b {
  color: #91a8b2;
  font-weight: 650;
}

.inspection-ticker em {
  color: #eaf7f5;
  font-style: normal;
}

.inspection-ticker i {
  width: 54px;
  height: 1px;
  flex: 0 0 auto;
  background: linear-gradient(90deg, #1f726d, #8ff7e8);
}

@keyframes scan-sweep {
  0%, 100% { transform: translateX(-40px) rotate(42deg); opacity: 0.5; }
  50% { transform: translateX(110px) rotate(42deg); opacity: 1; }
}

.workflow-section {
  background:
    linear-gradient(180deg, #ffffff, #f7faf9);
}

.workflow-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 3rem;
  align-items: center;
}

.section-code {
  display: block;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.workflow-intro p {
  margin-top: 1rem;
}

.workflow-rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.workflow-rail::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 2.35rem;
  height: 1px;
  background: repeating-linear-gradient(90deg, #0f766e 0 8px, transparent 8px 16px);
  opacity: 0.75;
}

.workflow-rail article {
  position: relative;
  padding: 4.8rem 1rem 1rem;
}

.workflow-rail article::before {
  content: "";
  position: absolute;
  left: 1rem;
  top: 1rem;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #c8d8de;
  box-shadow: 0 14px 32px rgba(16, 32, 51, 0.08);
}

.workflow-rail span {
  position: absolute;
  left: 1.72rem;
  top: 1.78rem;
  z-index: 1;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 860;
}

.workflow-rail h3 {
  margin-bottom: 0.55rem;
}

.workflow-rail p {
  margin: 0;
  font-size: 0.92rem;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 5.75rem 0 4.25rem;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(115% 130% at 86% 6%, rgba(110, 231, 216, 0.18), transparent 46%),
    radial-gradient(90% 120% at 102% 104%, rgba(36, 87, 214, 0.09), transparent 52%),
    linear-gradient(180deg, #ffffff 0%, #f3f8f7 100%);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(16, 32, 51, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 32, 51, 0.04) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(120% 100% at 90% 0%, #000, transparent 60%);
  mask-image: radial-gradient(120% 100% at 90% 0%, #000, transparent 60%);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.section {
  padding: 5.25rem 0;
}

.section-tint {
  background: #f4f8f7;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-header {
  max-width: 760px;
  margin-bottom: 2.1rem;
}

.section-header p {
  margin-top: 0.9rem;
  font-size: 1.05rem;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 4rem;
  align-items: center;
}

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

.card-grid.compact {
  grid-template-columns: 1fr;
}

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

.card {
  min-height: 100%;
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 22px rgba(16, 32, 51, 0.05);
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.96rem;
}

.card-label {
  display: block;
  margin-bottom: 0.9rem;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.text-link {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--primary-dark);
  font-weight: 760;
}

.text-link:hover {
  color: var(--blue);
}

.media-frame {
  padding: 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.media-frame img {
  width: 100%;
  border-radius: 6px;
}

.check-list,
.spec-list {
  display: grid;
  gap: 0.9rem;
  margin: 1.5rem 0 1.8rem;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 1.8rem;
  color: #475467;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42rem;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 2px;
  background: linear-gradient(135deg, var(--primary), var(--green));
}

.spec-list li {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list strong {
  color: var(--ink);
}

.spec-list span {
  color: var(--muted);
}

.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process article {
  position: relative;
  padding: 1.25rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.process span {
  display: inline-block;
  margin-bottom: 1.1rem;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 800;
}

.process h3 {
  margin-bottom: 0.65rem;
}

.process p {
  margin-bottom: 0;
  font-size: 0.94rem;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  padding: 1.1rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

th {
  width: 240px;
  color: var(--ink);
}

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

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 4.75rem 0;
  color: #fff;
  background:
    radial-gradient(70% 140% at 88% 12%, rgba(110, 231, 216, 0.22), transparent 52%),
    radial-gradient(60% 120% at 8% 100%, rgba(110, 231, 216, 0.12), transparent 55%),
    linear-gradient(135deg, #0c5a53 0%, #0f766e 38%, #2457d6 100%);
}

.cta-band .container {
  position: relative;
  z-index: 1;
}

.cta-band h2 {
  max-width: 760px;
  color: #fff;
}

.cta-band p {
  max-width: 660px;
  margin: 1rem 0 1.6rem;
  color: rgba(255, 255, 255, 0.86);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  gap: 2rem;
  align-items: start;
}

.form-panel,
.contact-card {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

label {
  display: grid;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cfd9df;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  padding: 0.8rem 0.9rem;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.12);
}

.form-message {
  margin: 1rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 6px;
  background: #edf7f5;
  color: var(--primary-dark);
}

.contact-card h2 {
  margin-bottom: 1rem;
  font-size: 1.45rem;
}

.footer {
  padding: 3rem 0;
  background: #0d1b2a;
  color: #d7e0e5;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1fr) minmax(220px, 0.7fr);
  gap: 2rem;
  align-items: start;
}

.footer-logo {
  width: 160px;
  filter: brightness(0) invert(1);
}

.footer p {
  margin-top: 1rem;
  color: #aab8c2;
}

.footer-contact {
  color: #d1f7ef;
  font-weight: 760;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem 1.5rem;
}

.footer-links a {
  color: #d7e0e5;
  font-size: 0.94rem;
}

.footer-links a:hover {
  color: #fff;
}

.footer-note {
  margin: 0;
  font-size: 0.94rem;
}

@media (max-width: 1050px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  .hero-shell {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    min-height: 0;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-stage {
    min-height: 430px;
  }

  .live-panel {
    right: 1rem;
    width: min(420px, 64%);
  }

  .workflow-layout {
    grid-template-columns: 1fr;
  }

  .workflow-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    display: none;
    padding: 1rem 20px 1.2rem;
    background: #fff;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-panel.open {
    display: block;
  }

  .nav-menu,
  .nav-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .nav-actions {
    margin-top: 1rem;
  }

  .nav-menu a,
  .dropdown-toggle,
  .lang-link,
  .nav-actions .btn {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown {
    position: static;
    display: none;
    min-width: 0;
    margin: 0.2rem 0 0.6rem 0.8rem;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .has-dropdown.open .dropdown {
    display: block;
  }

  .split,
  .feature-row,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .card-grid.four,
  .process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  h1 {
    font-size: 2.35rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero-home {
    min-height: 0;
    padding: 2.2rem 0 0;
  }

  .page-hero {
    min-height: 0;
    padding: 3rem 0 2.2rem;
  }

  .hero-actions,
  .metrics-row {
    margin-top: 1.45rem;
  }

  .hero-copy p,
  .page-hero p {
    font-size: 1.04rem;
  }

  .metrics-row,
  .card-grid,
  .card-grid.four,
  .process,
  .workflow-rail,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .metrics-row div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metrics-row div:last-child {
    border-bottom: 0;
  }

  .hero-copy {
    padding: 0 0 1.2rem;
  }

  .hero-stage {
    min-height: 330px;
    margin-inline: -14px;
    border-radius: 0;
  }

  .hero-stage img,
  .hero-stage::after {
    border-radius: 0;
  }

  .live-panel {
    left: 1rem;
    right: 1rem;
    top: auto;
    bottom: 1rem;
    width: auto;
  }

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

  .panel-grid div {
    padding: 0.55rem;
  }

  .detection-tag {
    font-size: 0.68rem;
  }

  .tag-a {
    left: 8%;
    top: 33%;
  }

  .tag-b {
    right: 7%;
    top: 41%;
  }

  .inspection-ticker {
    min-height: 56px;
  }

  .workflow-rail::before {
    display: none;
  }

  .workflow-rail article {
    padding: 4.2rem 0.8rem 0.8rem;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
  }

  .section {
    padding: 3.7rem 0;
  }

  .hero-home + .section {
    padding-top: 2rem;
  }

  .spec-list li {
    grid-template-columns: 1fr;
    gap: 0.3rem;
  }

  th,
  td {
    min-width: 220px;
  }

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

/* ============================================================
   Smart Pick — extended component system (v2)
   ============================================================ */

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
}

.lead {
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.section-header.center {
  margin-inline: auto;
  text-align: center;
}

.section-header.center .eyebrow {
  justify-content: center;
}

/* ---- photo shots ---- */
.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #0b1620;
}

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

.shot--wide { aspect-ratio: 16 / 10; }
.shot--ultrawide { aspect-ratio: 16 / 7; }
.shot--tall { aspect-ratio: 4 / 5; }
.shot--prod { aspect-ratio: 4 / 3; }

.shot-tag {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  padding: 0.34rem 0.62rem;
  border-radius: 7px;
  background: rgba(7, 19, 29, 0.66);
  border: 1px solid rgba(110, 231, 216, 0.5);
  color: #eafffb;
  font-size: 0.72rem;
  font-weight: 760;
  backdrop-filter: blur(8px);
}

.shot-cap {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 1.4rem 1.2rem 1.1rem;
  color: #eaf7f5;
  font-size: 0.84rem;
  background: linear-gradient(transparent, rgba(6, 17, 25, 0.9));
}

.shot-cap b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.1rem;
}

/* ---- light stat strip ---- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow-soft);
}

.stat-strip > div {
  padding: 1.5rem 1.3rem;
  background: #fff;
}

.stat-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.stat-strip span {
  display: block;
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.85rem;
  line-height: 1.4;
}

.metrics-row.four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ---- sees / decides / picks flow ---- */
.flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.flow article {
  position: relative;
  padding: 1.7rem 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.flow article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -1rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--primary);
  border-top: 2px solid var(--primary);
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}

.flow-ic {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 1.1rem;
  border-radius: 13px;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.13), rgba(110, 231, 216, 0.2));
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 800;
}

.flow-step {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--primary);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow h3 { margin-bottom: 0.5rem; }
.flow p { margin: 0; font-size: 0.95rem; }

/* ---- class chips ---- */
.chip-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
}

.chip {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--line);
  border-left: 3px solid var(--primary);
  border-radius: 9px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.chip b {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--ink);
}

.chip span {
  display: block;
  margin-top: 0.32rem;
  color: var(--muted);
  font-size: 0.86rem;
}

/* ---- flywheel ---- */
.loop-banner {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.2rem;
  padding: 1.05rem 1.4rem;
  border: 1px dashed rgba(15, 118, 110, 0.45);
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(15, 78, 74, 0.07), rgba(36, 87, 214, 0.05));
  color: var(--primary-dark);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
}

.loop-banner span { font-size: 1.2rem; }

/* ---- comparison matrix ---- */
.matrix table { font-size: 0.95rem; }
.matrix th,
.matrix td { text-align: center; padding: 0.95rem 1rem; }
.matrix thead th {
  width: auto;
  background: #f1f7f5;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 0.85rem;
}
.matrix th:first-child,
.matrix td:first-child {
  width: 220px;
  text-align: left;
  font-weight: 700;
  color: var(--ink);
}
.matrix tbody tr.row-us { background: rgba(15, 118, 110, 0.07); }
.matrix tbody tr.row-us td:first-child { color: var(--primary-dark); }
.cell-good { color: var(--primary); font-weight: 760; }
.cell-bad { color: #b4453a; font-weight: 640; }
.cell-warn { color: var(--amber); font-weight: 640; }

/* ---- team ---- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.avatar {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 1rem;
  border-radius: 14px;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1rem;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.team-grid.advisors .avatar {
  background: linear-gradient(135deg, #33485a, #0d1b27);
}

.team-card h3 { margin-bottom: 0.2rem; }
.team-role { color: var(--primary); font-weight: 700; font-size: 0.9rem; }
.team-card p { margin: 0.65rem 0 0; font-size: 0.9rem; }

/* ---- stages timeline ---- */
.stages {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.stage {
  position: relative;
  padding: 1.5rem 1.35rem 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.stage::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--mint));
}

.stage-when { color: var(--blue); font-size: 0.76rem; font-weight: 800; letter-spacing: 0.03em; }
.stage h3 { margin: 0.65rem 0 0.55rem; }
.stage p { margin: 0; font-size: 0.92rem; }

/* ---- pilot cards ---- */
.pilot-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.pilot {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pilot img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pilot::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 29, 0.12) 28%, rgba(7, 19, 29, 0.9));
}

.pilot-body {
  position: relative;
  z-index: 1;
  padding: 1.6rem;
  color: #fff;
}

.pilot-status {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.32rem 0.62rem;
  border-radius: 30px;
  background: rgba(110, 231, 216, 0.16);
  border: 1px solid rgba(110, 231, 216, 0.5);
  color: #aef7ec;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.pilot-status::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6ee7d8;
  box-shadow: 0 0 10px #6ee7d8;
}

.pilot h3 { margin: 0.75rem 0 0.25rem; color: #fff; }
.pilot p { margin: 0; color: #cfe1e3; font-size: 0.9rem; }

/* ---- expansion path ---- */
.path {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.path b {
  padding: 0.6rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.path b.now {
  border-color: var(--primary);
  color: var(--primary-dark);
  background: #edf7f5;
}

.path i { color: var(--primary); font-style: normal; font-weight: 800; font-size: 1.1rem; }

/* ---- reversed feature row ---- */
.feature-row.reverse > :first-child { order: 2; }

/* ---- dark section variant ---- */
.section-dark {
  color: #cddbe2;
  background:
    radial-gradient(circle at 85% 12%, rgba(36, 87, 214, 0.16), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(15, 118, 110, 0.18), transparent 42%),
    linear-gradient(180deg, #07131d, #0b1924);
  border-top: 1px solid #16303f;
  border-bottom: 1px solid #16303f;
}

.section-dark h2,
.section-dark h3 { color: #fff; }
.section-dark .section-header p,
.section-dark p { color: #a9bfc9; }
.section-dark .eyebrow { color: #7fe9da; }
.section-dark .card,
.section-dark .flow article,
.section-dark .chip {
  background: rgba(255, 255, 255, 0.045);
  border-color: rgba(173, 200, 210, 0.16);
  box-shadow: none;
}
.section-dark .chip { border-left-color: var(--mint); }
.section-dark .card p,
.section-dark .flow p,
.section-dark .chip span { color: #aebfc8; }
.section-dark .flow-ic { background: rgba(110, 231, 216, 0.14); color: #aef7ec; }
.section-dark .loop-banner { color: #aef7ec; border-color: rgba(110, 231, 216, 0.4); background: rgba(110, 231, 216, 0.06); }
.section-dark .table-wrap { background: rgba(255, 255, 255, 0.03); border-color: rgba(173, 200, 210, 0.18); }
.section-dark .matrix thead th { background: rgba(255, 255, 255, 0.06); color: #fff; }
.section-dark th,
.section-dark td { border-color: rgba(173, 200, 210, 0.14); }
.section-dark .matrix th:first-child,
.section-dark .matrix td:first-child { color: #eaf3f1; }
.section-dark tbody tr.row-us { background: rgba(110, 231, 216, 0.1); }
.section-dark .cell-good { color: #6ee7d8; }
.section-dark .path b { background: rgba(255, 255, 255, 0.05); border-color: rgba(173, 200, 210, 0.2); color: #eaf3f1; }
.section-dark .path b.now { background: rgba(110, 231, 216, 0.14); border-color: var(--mint); color: #eafffb; }
.section-dark .stat-strip { background: rgba(173, 200, 210, 0.16); border-color: rgba(173, 200, 210, 0.18); }
.section-dark .stat-strip > div { background: #0c1a24; }
.section-dark .stat-strip strong { color: #fff; }

/* ---- responsive ---- */
@media (max-width: 1050px) {
  .flow,
  .chip-grid,
  .team-grid,
  .stages,
  .stat-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .flow article:not(:last-child)::after { display: none; }
  .pilot-grid { grid-template-columns: 1fr; }
  .metrics-row.four { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  .flow,
  .chip-grid,
  .team-grid,
  .stages,
  .stat-strip {
    grid-template-columns: 1fr;
  }
  .stat-strip > div { display: flex; align-items: baseline; gap: 0.6rem; }
  .stat-strip span { margin-top: 0; }
  .feature-row.reverse > :first-child { order: 0; }
  .metrics-row.four { grid-template-columns: 1fr; }
  .matrix th:first-child,
  .matrix td:first-child { width: auto; }
}

/* ============================================================
   Smart Pick — motion & startup polish (v3)
   ============================================================ */

/* ---- scroll reveal (only when JS + motion allowed) ---- */
@media (prefers-reduced-motion: no-preference) {
  .has-js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 0.84, 0.44, 1),
      transform 0.7s cubic-bezier(0.16, 0.84, 0.44, 1);
    transition-delay: var(--rd, 0ms);
  }
  .has-js [data-reveal].is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ---- header scrolled state ---- */
.site-header {
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 30px rgba(16, 32, 51, 0.08);
}

/* ---- animated gradient accent text ---- */
.grad {
  background: linear-gradient(100deg, #6ee7d8, #38bdf8 45%, #8ad66a);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (prefers-reduced-motion: no-preference) {
  .grad {
    animation: grad-pan 8s ease-in-out infinite;
  }
}
@keyframes grad-pan {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- decorative glow blobs ---- */
.glow-section {
  position: relative;
  overflow: hidden;
}
.glow-section > .container {
  position: relative;
  z-index: 1;
}
.glow-section::before,
.glow-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  z-index: 0;
}
.glow-section::before {
  width: 520px;
  height: 520px;
  top: -180px;
  right: -120px;
  background: radial-gradient(circle, rgba(15, 118, 110, 0.16), transparent 70%);
}
.glow-section::after {
  width: 460px;
  height: 460px;
  bottom: -200px;
  left: -140px;
  background: radial-gradient(circle, rgba(36, 87, 214, 0.12), transparent 70%);
}
@media (prefers-reduced-motion: no-preference) {
  .glow-section::before { animation: floaty 18s ease-in-out infinite; }
}
@keyframes floaty {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-26px, 22px); }
}
.section-dark.glow-section::before {
  background: radial-gradient(circle, rgba(110, 231, 216, 0.18), transparent 70%);
}

/* ---- premium hover micro-interactions ---- */
.card,
.team-card,
.stage,
.chip,
.bento-item {
  transition: transform 0.32s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.32s ease,
    border-color 0.32s ease;
}
.card:hover,
.team-card:hover,
.stage:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 52px rgba(16, 32, 51, 0.13);
  border-color: #c5d6dc;
}
.chip:hover {
  transform: translateY(-3px);
  border-left-color: var(--mint);
  box-shadow: 0 16px 36px rgba(16, 32, 51, 0.1);
}
.section-dark .card:hover {
  border-color: rgba(110, 231, 216, 0.4);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.35);
}
.flow article {
  transition: transform 0.32s cubic-bezier(0.16, 0.84, 0.44, 1), box-shadow 0.32s ease;
}
.flow article:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(16, 32, 51, 0.12);
}

/* photo shots: gentle zoom on hover */
.shot img,
.pilot img {
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.shot:hover img,
.pilot:hover img {
  transform: scale(1.04);
}

/* button shine sweep */
.btn {
  position: relative;
  overflow: hidden;
}
.btn-primary::after,
.btn-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform 0.6s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .btn-primary:hover::after,
  .btn-light:hover::after {
    transform: translateX(130%);
  }
}

/* hero stage tilt smoothing + alive panel float */
.hero-stage {
  transition: transform 0.4s ease;
}
@media (prefers-reduced-motion: no-preference) {
  .live-panel {
    animation: floaty-sm 7s ease-in-out infinite;
  }
}
@keyframes floaty-sm {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.live-panel b {
  font-variant-numeric: tabular-nums;
}

/* hero eyebrow badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 1.4rem;
  padding: 0.4rem 0.85rem 0.4rem 0.65rem;
  border: 1px solid rgba(110, 231, 216, 0.3);
  border-radius: 30px;
  background: rgba(110, 231, 216, 0.08);
  color: #bff3ec;
  font-size: 0.8rem;
  font-weight: 650;
  backdrop-filter: blur(10px);
}
.hero-badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6ee7d8;
  box-shadow: 0 0 0 0 rgba(110, 231, 216, 0.6);
}
@media (prefers-reduced-motion: no-preference) {
  .hero-badge .dot { animation: pulse-dot 2.4s ease-out infinite; }
}
@keyframes pulse-dot {
  0% { box-shadow: 0 0 0 0 rgba(110, 231, 216, 0.55); }
  70% { box-shadow: 0 0 0 9px rgba(110, 231, 216, 0); }
  100% { box-shadow: 0 0 0 0 rgba(110, 231, 216, 0); }
}

/* ---- marquee ---- */
.marquee {
  overflow: hidden;
  padding: 1.15rem 0;
  border-block: 1px solid var(--line);
  background: #fff;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2.75rem;
  width: max-content;
}
@media (prefers-reduced-motion: no-preference) {
  .marquee-track { animation: marquee 36s linear infinite; }
  .marquee:hover .marquee-track { animation-play-state: paused; }
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee span {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(var(--primary), var(--mint));
}

/* ---- bento grid ---- */
.bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}
.bento-item {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-soft);
}
.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.bento-item.col2 { grid-column: span 2; }
.bento-item.row2 { grid-row: span 2; }
.bento-item .bento-eyebrow {
  color: var(--primary);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.bento-item h3 {
  margin: 0.5rem 0 0.4rem;
  font-size: 1.18rem;
}
.bento-item p {
  margin: 0;
  font-size: 0.92rem;
}
.bento-num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ink);
}
.bento-item.media {
  padding: 0;
}
.bento-item.media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 0.84, 0.44, 1);
}
.bento-item.media:hover img { transform: scale(1.05); }
.bento-item.media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 19, 29, 0.05) 35%, rgba(7, 19, 29, 0.85));
}
.bento-item.media .bento-cap {
  position: relative;
  z-index: 1;
  color: #fff;
}
.bento-item.media .bento-cap h3 { color: #fff; }
.bento-item.media .bento-cap p { color: #cfe1e3; }
.bento-item.dark {
  color: #cddbe2;
  background: linear-gradient(160deg, #0e2029, #07131d);
  border-color: #16303f;
}
.bento-item.dark h3 { color: #fff; }
.bento-item.dark .bento-num { color: #fff; }
.bento-item.dark p { color: #aebfc8; }
.bento-item.dark .bento-eyebrow { color: var(--mint); }
.bento-item.accent {
  background:
    linear-gradient(#fff, #fff) padding-box,
    linear-gradient(135deg, var(--primary), var(--mint)) border-box;
  border: 1.5px solid transparent;
}

/* ---- manifesto band ---- */
.manifesto {
  position: relative;
  padding: 7rem 0;
  overflow: hidden;
  text-align: center;
  color: #eaf3f1;
  background: linear-gradient(180deg, #07131d, #0b1a24);
  border-block: 1px solid #16303f;
}
.manifesto .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.22;
}
.manifesto::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 40%, rgba(7, 19, 29, 0.4), rgba(7, 19, 29, 0.86));
}
.manifesto .container {
  position: relative;
  z-index: 1;
}
.manifesto .eyebrow {
  justify-content: center;
  color: #7fe9da;
}
.manifesto h2 {
  max-width: 17ch;
  margin: 0 auto;
  color: #fff;
  font-size: clamp(2.1rem, 4.6vw, 3.5rem);
}
.manifesto p {
  max-width: 56ch;
  margin: 1.5rem auto 0;
  color: #b6cad2;
  font-size: 1.12rem;
}

/* ---- responsive ---- */
@media (max-width: 1050px) {
  .bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bento-item.col2 { grid-column: span 2; }
}
@media (max-width: 720px) {
  .bento { grid-template-columns: 1fr; grid-auto-rows: auto; }
  .bento-item { min-height: 170px; }
  .bento-item.col2,
  .bento-item.row2 { grid-column: auto; grid-row: auto; }
  .manifesto { padding: 4.5rem 0; }
  .glow-section::before,
  .glow-section::after { display: none; }
}

/* ---- global reduced-motion safety net (covers any ungated animation) ---- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   Smart Pick — UX polish (v4)
   ============================================================ */

/* ---- scroll progress bar ---- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 30;
  background: transparent;
  pointer-events: none;
}
.scroll-progress span {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--primary), var(--mint));
  box-shadow: 0 0 12px rgba(110, 231, 216, 0.6);
}

/* ---- keyboard focus visibility ---- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.btn:focus-visible,
.dropdown-toggle:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(15, 118, 110, 0.55);
  outline-offset: 2px;
  border-radius: 5px;
}
.hero-copy a:focus-visible,
.cta-band a:focus-visible,
.manifesto a:focus-visible,
.section-dark a:focus-visible,
.footer a:focus-visible {
  outline-color: rgba(110, 231, 216, 0.85);
}

/* ---- count-up: avoid layout shift while numbers animate ---- */
.stat-strip strong,
.metrics-row strong,
.bento-num {
  font-variant-numeric: tabular-nums;
}

/* ---- footer enrichment ---- */
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-top: 1.1rem;
}
.footer-meta a,
.footer-meta span {
  color: #9fb0bb;
  font-size: 0.92rem;
}
.footer-meta a:hover {
  color: #fff;
}
.footer-backed {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.2rem;
  padding: 0.4rem 0.8rem;
  border: 1px solid rgba(173, 200, 210, 0.2);
  border-radius: 30px;
  color: #b8c8d1;
  font-size: 0.82rem;
}
.footer-backed::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: linear-gradient(var(--primary), var(--mint));
}
