:root {
  --brand: #005e9e;
  --brand-deep: #004a7d;
  --brand-ink: #05365a;
  --teal: #00a7a5;
  --teal-deep: #008c8a;
  --mint: #d7f6f4;
  --ink: #0f2433;
  --muted: #4f6978;
  --muted-2: #7895a5;
  --soft: #eff7fb;
  --soft-2: #f7fbfd;
  --line: #dcebf3;
  --paper: #ffffff;
  --warm: #f4bd59;
  --shadow: 0 26px 70px rgba(15, 36, 51, 0.15);
  --shadow-soft: 0 14px 34px rgba(15, 36, 51, 0.08);
  --shadow-hard: 0 34px 90px rgba(5, 54, 90, 0.22);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fcfd 38%, #ffffff 100%);
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

::selection {
  color: white;
  background: var(--brand);
}

img,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

[hidden] {
  display: none !important;
}

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

p,
h1,
h2,
h3,
h4 {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

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

ul {
  margin: 0;
  padding-left: 1.1rem;
}

li + li {
  margin-top: 0.55rem;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  background: var(--brand);
  color: white;
  padding: 0.7rem 1rem;
  border-radius: var(--radius);
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(0, 167, 165, 0.45);
  outline-offset: 3px;
}

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

.section {
  padding: 88px 0;
  position: relative;
}

.section-tight {
  padding: 64px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, rgba(239, 247, 251, 0.75), rgba(255, 255, 255, 0.85)),
    var(--soft-2);
}

.section-band {
  background: linear-gradient(135deg, #f7fbfd 0%, #eef8f8 55%, #ffffff 100%);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(220, 235, 243, 0.9);
  box-shadow: 0 10px 30px rgba(15, 36, 51, 0.04);
  backdrop-filter: blur(20px);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  min-width: 174px;
}

.brand-link img {
  width: 178px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0.28rem;
  border: 1px solid rgba(220, 235, 243, 0.95);
  border-radius: 999px;
  background: rgba(247, 251, 253, 0.88);
  color: #314b5a;
  font-size: 0.91rem;
  font-weight: 650;
}

.site-nav a {
  padding: 0.56rem 0.82rem;
  border-radius: 999px;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  color: var(--brand);
  background: white;
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.06);
}

.site-nav .nav-quote {
  display: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.82rem 1.16rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 750;
  letter-spacing: 0;
  line-height: 1.15;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: white;
  background: linear-gradient(135deg, var(--brand) 0%, #0078ae 100%);
  box-shadow: 0 14px 30px rgba(0, 94, 158, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: linear-gradient(135deg, var(--brand-deep) 0%, var(--brand) 100%);
}

.btn-secondary {
  color: var(--brand);
  background: white;
  border-color: rgba(0, 94, 158, 0.2);
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  border-color: rgba(0, 167, 165, 0.6);
  box-shadow: var(--shadow-soft);
}

.btn-link {
  min-height: auto;
  padding: 0;
  color: var(--brand);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.btn-link:hover {
  transform: none;
  color: var(--brand-deep);
}

.hero {
  padding: 76px 0 68px;
  overflow: hidden;
  background:
    linear-gradient(115deg, rgba(0, 94, 158, 0.08) 0%, transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #eef7fb 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.9fr);
  gap: 56px;
  align-items: center;
}

.hero-copy {
  max-width: 660px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: var(--brand-deep);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(0, 167, 165, 0.12);
}

.hero h1,
.page-hero h1 {
  margin-bottom: 1.1rem;
  color: #0b2230;
  font-size: 62px;
  line-height: 1.03;
  letter-spacing: 0;
}

.hero-lede,
.page-lede {
  max-width: 710px;
  margin-bottom: 1.7rem;
  color: #38596a;
  font-size: 1.18rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.assurance-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 22px;
  color: #31566a;
  font-size: 0.92rem;
  font-weight: 800;
}

.assurance-row span {
  display: inline-flex;
  align-items: center;
}

.assurance-row span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.5rem;
  border-radius: 50%;
  background: var(--teal);
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.signal {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0.42rem 0.7rem;
  color: #254655;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 700;
}

.signal::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 0.46rem;
  border-radius: 50%;
  background: var(--teal);
}

.hero-visual,
.page-visual {
  position: relative;
}

.hero-frame {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(190, 219, 232, 0.9);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.hero-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  pointer-events: none;
}

.hero-frame img {
  width: 100%;
  min-height: 430px;
  object-fit: cover;
}

.hero-frame.product-shot img {
  aspect-ratio: 1.25;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.38), transparent 34%),
    #858989;
}

.hero-frame figcaption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  padding: 0.9rem 1rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 37, 54, 0.82);
  backdrop-filter: blur(16px);
}

.hero-frame figcaption strong {
  display: block;
  line-height: 1.2;
}

.hero-frame figcaption span {
  display: block;
  margin-top: 0.22rem;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.88rem;
  font-weight: 700;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
  max-width: 610px;
}

.metric-chip {
  min-height: 88px;
  padding: 0.9rem;
  border: 1px solid rgba(188, 215, 230, 0.76);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 12px 30px rgba(15, 36, 51, 0.06);
}

.metric-chip strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--brand);
  font-size: 1.35rem;
  line-height: 1;
}

.metric-chip span {
  display: block;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.35;
}

.hero-gallery {
  position: relative;
  min-height: 590px;
  padding: 26px 0 36px 34px;
}

.hero-gallery::before {
  content: "";
  position: absolute;
  inset: 0 34px 42px 0;
  border: 1px solid rgba(190, 219, 232, 0.8);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(230, 247, 250, 0.72)),
    radial-gradient(circle at 20% 20%, rgba(0, 167, 165, 0.12), transparent 38%);
  box-shadow: var(--shadow);
}

.showcase-main,
.showcase-small,
.showcase-ticket {
  position: relative;
  border: 1px solid rgba(220, 235, 243, 0.92);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.showcase-main {
  width: 78%;
  overflow: hidden;
  z-index: 2;
  box-shadow: var(--shadow-hard);
}

.showcase-main img {
  width: 100%;
  aspect-ratio: 1.09;
  object-fit: cover;
  object-position: center;
}

.showcase-main.product-shot img,
.photo-card.product-shot img {
  aspect-ratio: 1.7;
  object-fit: contain;
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, 0.36), transparent 34%),
    #858989;
}

.showcase-main figcaption,
.photo-card figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0.74rem 0.86rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(7, 37, 54, 0.78);
  backdrop-filter: blur(16px);
}

.showcase-main figcaption strong,
.photo-card figcaption strong {
  display: block;
  font-size: 0.92rem;
  line-height: 1.2;
}

.showcase-main figcaption span,
.photo-card figcaption span {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 700;
}

.showcase-small {
  position: absolute;
  right: 0;
  overflow: hidden;
  width: 42%;
  z-index: 3;
}

.showcase-small.top {
  top: 88px;
}

.showcase-small.bottom {
  right: 40px;
  bottom: 0;
  width: 38%;
}

.showcase-small img {
  width: 100%;
  aspect-ratio: 0.82;
  object-fit: cover;
}

.showcase-ticket {
  position: absolute;
  left: 0;
  bottom: 58px;
  z-index: 4;
  width: min(265px, 56%);
  padding: 1rem;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.showcase-ticket strong {
  display: block;
  color: var(--ink);
}

.showcase-ticket span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.ticket-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--line);
}

.ticket-row b {
  color: var(--brand);
}

.photo-stack {
  position: relative;
  min-height: 480px;
  padding: 20px 20px 80px;
}

.photo-stack::before {
  content: "";
  position: absolute;
  inset: 0 48px 44px 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(237, 249, 250, 0.82)),
    radial-gradient(circle at 78% 16%, rgba(0, 94, 158, 0.12), transparent 34%);
  box-shadow: var(--shadow);
}

.photo-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(220, 235, 243, 0.9);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.photo-card.large {
  width: 78%;
  z-index: 2;
  box-shadow: var(--shadow-hard);
}

.photo-card.small {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 44%;
  z-index: 3;
}

.photo-card img {
  width: 100%;
  aspect-ratio: 1.12;
  object-fit: cover;
}

.photo-card.small img {
  aspect-ratio: 0.88;
}

.deployment-card {
  position: absolute;
  left: 0;
  bottom: 26px;
  z-index: 4;
  width: min(280px, 58%);
  padding: 1rem;
  border: 1px solid rgba(220, 235, 243, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.deployment-card strong {
  display: block;
  margin-bottom: 0.25rem;
}

.deployment-card span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.visual-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

.visual-note {
  position: absolute;
  left: -18px;
  bottom: 28px;
  width: min(280px, 70%);
  padding: 1rem;
  border: 1px solid rgba(220, 235, 243, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}

.visual-note strong {
  display: block;
  margin-bottom: 0.2rem;
}

.visual-note span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

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

.section-heading h2 {
  margin-bottom: 0.75rem;
  font-size: 38px;
  line-height: 1.14;
  letter-spacing: 0;
}

.section-heading p {
  margin-bottom: 0;
  font-size: 1.05rem;
}

.compact-heading .cta-row {
  margin-top: 1.35rem;
}

.intro-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.5fr);
  gap: 28px;
  align-items: end;
  margin-bottom: 34px;
}

.intro-panel .section-heading {
  margin-bottom: 0;
}

.availability-panel {
  padding: 1.15rem;
  border: 1px solid rgba(188, 215, 230, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.availability-panel strong {
  display: block;
  margin-bottom: 0.3rem;
}

.availability-panel span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

.card,
.solution-card,
.package-card,
.case-card,
.partner-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.solution-card {
  min-height: 390px;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-media {
  position: relative;
  overflow: hidden;
  background: #eaf4f8;
}

.solution-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(4, 28, 43, 0.5) 100%);
}

.solution-media img {
  width: 100%;
  aspect-ratio: 1.35;
  object-fit: cover;
  transition: transform 360ms ease;
}

.solution-card:hover .solution-media img {
  transform: scale(1.035);
}

.solution-card-content {
  padding: 1.35rem;
  flex: 1;
}

.solution-card > .btn-link {
  align-self: flex-start;
  margin: 0 1.35rem 1.35rem;
}

.card-kicker {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.solution-card .icon,
.feature-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  color: var(--brand);
  background: var(--mint);
  border-radius: var(--radius);
  font-weight: 900;
}

.solution-card h3,
.package-card h3,
.case-card h3,
.partner-card h3 {
  margin-bottom: 0.55rem;
  font-size: 1.25rem;
  line-height: 1.25;
}

.solution-card p,
.package-card p,
.case-card p,
.partner-card p {
  margin-bottom: 1rem;
}

.solution-card:hover,
.package-card:hover,
.case-card:hover,
.partner-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 1fr);
  gap: 42px;
  align-items: start;
}

.feature-list {
  display: grid;
  gap: 16px;
}

.feature-item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, #ffffff, #fbfdfe);
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
}

.feature-item h3 {
  margin-bottom: 0.25rem;
  font-size: 1.08rem;
}

.feature-item p {
  margin: 0;
}

.stat-panel {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #ffffff 0%, #eef8f8 100%);
  box-shadow: var(--shadow-soft);
}

.photo-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.proof-photo {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #eaf4f8;
  box-shadow: var(--shadow-soft);
}

.proof-photo img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.proof-photo span {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 0.62rem 0.75rem;
  color: white;
  border-radius: var(--radius);
  background: rgba(7, 37, 54, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
}

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

.stat {
  min-height: 116px;
  padding: 1rem;
  border: 1px solid rgba(220, 235, 243, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
}

.stat strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--brand);
  font-size: 1.8rem;
  line-height: 1;
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.package-card {
  min-height: 350px;
  padding: 1.45rem;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.package-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
}

.package-price {
  margin: 0.3rem 0 1rem;
  color: var(--brand);
  font-size: 1.45rem;
  font-weight: 850;
}

.package-card ul {
  margin-bottom: 1.4rem;
  color: var(--muted);
}

.package-card .btn {
  margin-top: auto;
  align-self: flex-start;
}

.logo-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.logo-tile {
  position: relative;
  min-height: 82px;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: #31566a;
  border: 1px solid rgba(188, 215, 230, 0.86);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 253, 0.88));
  box-shadow: 0 12px 26px rgba(15, 36, 51, 0.06);
  font-size: 0.84rem;
  font-weight: 850;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
}

.logo-tile::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  width: 34px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), var(--teal));
  transform: translateX(-50%);
}

.range-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 22px;
  align-items: center;
  padding: 1.25rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.range-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.range-item {
  padding: 1rem;
  border: 1px solid rgba(220, 235, 243, 0.9);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
}

.range-item strong,
.range-item span,
.range-item b {
  display: block;
}

.range-item strong {
  color: var(--ink);
}

.range-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

.range-item b {
  margin-top: 0.5rem;
  color: var(--brand);
  font-size: 1.2rem;
}

.proof-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.proof-mini-card {
  min-height: 220px;
  padding: 1.25rem;
  border: 1px solid rgba(188, 215, 230, 0.86);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.proof-mini-card span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-mini-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.18rem;
}

.proof-mini-card p {
  margin-bottom: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
}

.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.15rem;
  color: var(--ink);
  font-weight: 850;
}

.faq-item summary::marker {
  color: var(--brand);
}

.faq-item p {
  margin: 0;
  padding: 0 1.15rem 1rem;
}

.page-hero {
  padding: 78px 0 68px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(0, 94, 158, 0.09), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(0, 167, 165, 0.11), transparent 26%),
    linear-gradient(180deg, #ffffff 0%, #f6fbfd 100%);
}

.page-hero .signal-row {
  display: none;
}

.gallery-hero .signal-row {
  display: flex;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.proof-item {
  min-height: 92px;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
}

.proof-item strong {
  display: block;
  margin-bottom: 0.25rem;
}

.proof-item span {
  color: var(--muted);
  font-size: 0.92rem;
}

.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 44px;
  align-items: start;
}

.content-panel {
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.content-panel + .content-panel {
  margin-top: 18px;
}

.content-panel h3 {
  margin-bottom: 0.55rem;
}

.use-case-list {
  display: grid;
  gap: 14px;
}

.use-case {
  padding: 1.15rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #fbfdfe);
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
}

.use-case h3 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.use-case p {
  margin: 0;
}

.comparison-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

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

th {
  color: var(--ink);
  background: #f3f9fb;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

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

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

td strong {
  color: var(--ink);
}

.case-card {
  overflow: hidden;
}

.case-card img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 360ms ease;
}

.case-card:hover img {
  transform: scale(1.03);
}

.case-body {
  padding: 1.35rem;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.3rem 0.6rem;
  color: #275366;
  background: #eff8f8;
  border: 1px solid #d2ecea;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 750;
}

.case-proof {
  margin-top: 1rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid #cce5ef;
  border-left: 4px solid var(--teal);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #f8fcfd, #eff8f8);
  color: #33576a;
  font-size: 0.92rem;
  font-weight: 700;
}

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

.gallery-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  margin-bottom: 28px;
}

.gallery-heading-row .section-heading {
  margin-bottom: 0;
}

.gallery-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 520px;
}

.filter-chip {
  min-height: 38px;
  padding: 0.52rem 0.78rem;
  color: #31566a;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  box-shadow: 0 8px 18px rgba(15, 36, 51, 0.04);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 800;
  cursor: pointer;
}

.filter-chip[aria-pressed="true"],
.filter-chip:hover,
.filter-chip:focus-visible {
  color: white;
  border-color: var(--brand);
  background: var(--brand);
}

.gallery-grid-large {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.gallery-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.gallery-media-button {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  color: inherit;
  border: 0;
  background: #eaf4f8;
  cursor: pointer;
}

.gallery-card img,
.gallery-media-button img {
  width: 100%;
  aspect-ratio: 1.18;
  object-fit: cover;
  border-bottom: 1px solid var(--line);
  transition: transform 360ms ease;
}

.gallery-card:hover .gallery-media-button img {
  transform: scale(1.035);
}

.play-badge {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-grid;
  place-items: center;
  width: 74px;
  height: 74px;
  transform: translate(-50%, -50%);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  background: rgba(0, 94, 158, 0.86);
  box-shadow: 0 18px 40px rgba(5, 54, 90, 0.28);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gallery-card div {
  padding: 1rem;
}

.gallery-card span {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--teal-deep);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
  line-height: 1.25;
}

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

.gallery-empty {
  grid-column: 1 / -1;
  padding: 2rem;
  border: 1px dashed #bdd7e5;
  border-radius: var(--radius);
  background: #f7fbfd;
  text-align: center;
}

.gallery-empty h3 {
  margin-bottom: 0.35rem;
  font-size: 1.18rem;
}

.gallery-empty p {
  margin: 0 auto;
  max-width: 520px;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(7, 25, 36, 0.78);
  backdrop-filter: blur(10px);
}

.media-lightbox[hidden] {
  display: none;
}

body[data-lightbox-open="true"] {
  overflow: hidden;
}

.lightbox-panel {
  position: relative;
  width: min(1080px, 100%);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-hard);
}

.lightbox-media {
  background: #071924;
}

.lightbox-media img,
.lightbox-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  object-fit: contain;
}

.lightbox-copy {
  padding: 1.1rem 1.25rem;
}

.lightbox-copy h2 {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
}

.lightbox-copy p {
  margin: 0;
}

.lightbox-close {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  min-height: 38px;
  padding: 0.46rem 0.78rem;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(7, 25, 36, 0.72);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 850;
  cursor: pointer;
}

.partner-card {
  min-height: 250px;
  padding: 1.35rem;
  background:
    linear-gradient(180deg, #ffffff, #fbfdfe);
}

.quote-band {
  padding: 52px 0;
  color: white;
  background:
    linear-gradient(135deg, rgba(0, 94, 158, 0.98) 0%, rgba(8, 123, 157, 0.98) 58%, rgba(0, 167, 165, 0.98) 100%),
    url("assets/photo-wall-signage.png") center / cover;
}

.quote-band p,
.quote-band .eyebrow {
  color: rgba(255, 255, 255, 0.88);
}

.quote-band .eyebrow::before {
  background: var(--warm);
  box-shadow: 0 0 0 5px rgba(244, 189, 89, 0.18);
}

.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
}

.quote-grid h2 {
  margin-bottom: 0.5rem;
  font-size: 34px;
  line-height: 1.15;
}

.quote-grid p {
  margin: 0;
}

.quote-grid .btn-primary {
  color: var(--brand);
  background: white;
  box-shadow: none;
}

.quote-grid .btn-secondary {
  color: white;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 36px;
  align-items: start;
}

.form-card,
.contact-aside {
  padding: 1.45rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

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

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

label {
  color: #294b5d;
  font-size: 0.9rem;
  font-weight: 750;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 0.85rem;
  color: var(--ink);
  border: 1px solid #bfd8e6;
  border-radius: var(--radius);
  background: #fbfdfe;
  font: inherit;
}

textarea {
  min-height: 146px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--teal);
  outline: 3px solid rgba(0, 167, 165, 0.16);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.form-status {
  margin-top: 16px;
  padding: 0.9rem 1rem;
  border: 1px solid #bee7d8;
  border-radius: var(--radius);
  background: #effbf6;
  color: #1f6b4f;
  font-weight: 700;
}

.form-status[hidden] {
  display: none;
}

.contact-aside h2 {
  font-size: 1.35rem;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 1.2rem;
}

.contact-list div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  display: block;
}

.admin-shell {
  min-height: 100vh;
  padding: 56px 0;
  background: linear-gradient(180deg, #f7fbfd, #ffffff);
}

.admin-panel {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow-soft);
}

.auth-panel,
.admin-topbar,
.admin-panel-heading,
.admin-access-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.auth-panel {
  margin-bottom: 24px;
}

.auth-panel h2,
.admin-panel-heading h2 {
  margin-bottom: 0.25rem;
  font-size: 1.3rem;
}

.auth-panel p,
.admin-panel-heading p {
  margin-bottom: 0;
}

.auth-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-topbar {
  margin-bottom: 20px;
}

.admin-user {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.admin-user strong,
.admin-user span {
  display: block;
}

.admin-user span {
  color: var(--muted);
  font-size: 0.92rem;
}

.admin-avatar {
  width: 44px;
  height: 44px;
  display: grid;
  flex: 0 0 44px;
  place-items: center;
  overflow: hidden;
  color: white;
  border-radius: 999px;
  background: var(--brand);
  font-weight: 900;
}

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

.admin-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1fr);
  gap: 24px;
  align-items: start;
}

.admin-list {
  display: grid;
  gap: 12px;
}

.admin-item {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 12px;
  align-items: center;
  padding: 0.75rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.admin-item img {
  width: 96px;
  aspect-ratio: 1.25;
  object-fit: cover;
  border-radius: var(--radius);
}

.admin-item h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.admin-item p {
  margin-bottom: 0.55rem;
  font-size: 0.9rem;
}

.admin-owner-panel {
  margin-top: 24px;
}

.admin-mini-form {
  margin-top: 18px;
  align-items: end;
}

.admin-mini-form .form-actions {
  margin-top: 0;
}

.admin-access-list {
  margin-top: 18px;
}

.admin-access-item {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fbfdfe;
}

.admin-access-item h3 {
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.admin-access-item p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.admin-access-item button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.admin-status {
  margin-top: 1rem;
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  padding: 54px 0 34px;
  color: #dcebf3;
  background: #0f2433;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) repeat(3, minmax(140px, 0.35fr));
  gap: 32px;
}

.footer-logo {
  width: 168px;
  padding: 0;
  border-radius: 0;
  background: transparent;
}

.site-footer p,
.site-footer a {
  color: #b7cfda;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: white;
}

.site-footer h2,
.site-footer h3 {
  color: white;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-bottom {
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(220, 235, 243, 0.16);
  color: #9cb9c8;
  font-size: 0.9rem;
}

@media (max-width: 1020px) {
  .header-inner {
    flex-wrap: wrap;
    padding: 14px 0;
  }

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

  .site-nav {
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    order: 3;
    margin-top: 4px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .site-header[data-nav-open="true"] .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 0.74rem 0.85rem;
    border-radius: var(--radius);
  }

  .site-nav .nav-quote {
    display: flex;
    justify-content: center;
    color: white;
    background: var(--brand);
    font-weight: 850;
  }

  .nav-actions {
    margin-left: auto;
  }

  .nav-actions .btn-secondary {
    display: none;
  }

  .hero-grid,
  .page-hero-grid,
  .why-grid,
  .split-grid,
  .intro-panel,
  .gallery-heading-row,
  .range-panel,
  .contact-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 44px;
  }

  .hero-visual,
  .page-visual {
    max-width: 760px;
  }

  .visual-note {
    left: 18px;
  }

  .hero-gallery,
  .photo-stack {
    min-height: 520px;
    padding-left: 20px;
  }

  .card-grid,
  .card-grid.two,
  .proof-strip,
  .photo-proof,
  .gallery-grid,
  .proof-mini-grid,
  .range-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-grid .cta-row {
    justify-content: flex-start;
  }

  .gallery-toolbar {
    justify-content: flex-start;
    max-width: none;
  }

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

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

  .section {
    padding: 64px 0;
  }

  .hero,
  .page-hero {
    padding: 42px 0 48px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 36px;
  }

  .hero-lede,
  .page-lede {
    font-size: 1.03rem;
  }

  .section-heading h2,
  .quote-grid h2 {
    font-size: 30px;
  }

  .hero-grid,
  .page-hero-grid {
    gap: 28px;
  }

  .card-grid,
  .card-grid.two,
  .proof-strip,
  .photo-proof,
  .gallery-grid,
  .proof-mini-grid,
  .range-list,
  .stat-grid,
  .logo-row,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
  }

  .metric-chip {
    min-height: 76px;
    padding: 0.68rem;
  }

  .metric-chip strong {
    font-size: 1.08rem;
  }

  .metric-chip span {
    font-size: 0.72rem;
  }

  .assurance-row {
    display: grid;
    gap: 8px;
  }

  .nav-actions .btn-primary {
    display: none;
  }

  .brand-link {
    min-width: 154px;
  }

  .brand-link img,
  .footer-logo {
    width: 164px;
  }

  .visual-note {
    position: static;
    width: auto;
    margin-top: 14px;
  }

  .hero-gallery,
  .photo-stack {
    min-height: auto;
    padding: 0;
  }

  .hero-frame img {
    min-height: 300px;
  }

  .hero-frame figcaption {
    position: static;
    border-radius: 0;
    background: #0f2433;
  }

  .hero-gallery::before,
  .photo-stack::before {
    inset: 14px;
  }

  .showcase-main,
  .photo-card.large {
    width: 100%;
  }

  .showcase-main img,
  .photo-card.large img {
    aspect-ratio: 1.04;
  }

  .showcase-small,
  .showcase-small.top,
  .showcase-small.bottom,
  .photo-card.small {
    position: relative;
    right: auto;
    bottom: auto;
    top: auto;
    width: 82%;
    margin: 14px 0 0 auto;
  }

  .showcase-small.bottom {
    width: 72%;
    margin-left: 0;
    margin-right: auto;
  }

  .showcase-ticket,
  .deployment-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
    margin-top: 14px;
  }

  .showcase-main figcaption,
  .photo-card figcaption {
    position: static;
    border-radius: 0;
    background: #0f2433;
  }

  .solution-card,
  .package-card {
    min-height: auto;
  }

  .cta-row,
  .form-actions {
    align-items: stretch;
  }

  .cta-row .btn,
  .form-actions .btn {
    width: 100%;
  }

  .media-lightbox {
    padding: 14px;
  }

  .lightbox-copy {
    padding: 0.95rem;
  }

  .auth-panel,
  .admin-topbar,
  .admin-panel-heading,
  .admin-access-item {
    align-items: stretch;
    flex-direction: column;
  }

  .auth-actions,
  .admin-topbar .btn,
  .admin-access-item .btn {
    width: 100%;
  }

  .admin-grid,
  .admin-item {
    grid-template-columns: 1fr;
  }

  .admin-item img {
    width: 100%;
  }

}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}
