:root {
  --bg: #04080f;
  --bg-soft: #0c1724;
  --surface: #0f2232;
  --surface-soft: #16364b;
  --ink: #eaf4ff;
  --muted: #b8cadc;
  --brand: #4ed6c5;
  --brand-strong: #1fa391;
  --accent: #ffbe58;
  --line: rgba(255, 255, 255, 0.14);
  --glow: 0 24px 60px rgba(0, 0, 0, 0.38);
  --radius-lg: 22px;
  --radius-md: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100svh;
  font-family: "Manrope", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(1400px 700px at 20% -10%, rgba(78, 214, 197, 0.14), transparent 50%),
    radial-gradient(1200px 800px at 90% 0%, rgba(94, 138, 245, 0.15), transparent 54%),
    linear-gradient(180deg, #03070c 0%, #081220 46%, #081826 100%);
  line-height: 1.62;
  overflow-x: hidden;
}

.bg-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.bg-layer-1 {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 88%);
}

.bg-layer-2 {
  background:
    radial-gradient(circle at 15% 80%, rgba(255, 190, 88, 0.12), transparent 32%),
    radial-gradient(circle at 86% 65%, rgba(78, 214, 197, 0.16), transparent 34%);
}

img {
  max-width: 100%;
}

.skip-link {
  position: absolute;
  left: -999px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 2000;
  background: #fff;
  color: #111;
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
}

.container {
  width: min(1160px, 92vw);
  margin: 0 auto;
}

.section {
  padding: clamp(2.7rem, 6vw, 5rem) 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  background: rgba(4, 10, 16, 0.74);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.brand {
  text-decoration: none;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.72rem;
}

.brand-mark {
  width: 42px;
  aspect-ratio: 1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: "Sora", sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: #042a25;
  background: linear-gradient(140deg, var(--brand), #98f2e7);
  box-shadow: 0 8px 22px rgba(78, 214, 197, 0.26);
}

.brand strong {
  display: block;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.02em;
}

.brand small {
  display: block;
  font-size: 0.75rem;
  color: var(--muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-nav a {
  position: relative;
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.93rem;
}

.site-nav a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 0;
  height: 2px;
  background: var(--brand);
  transition: width 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-current::after {
  width: 100%;
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
  padding: 0.72rem 1.12rem;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: #052c26;
  background: linear-gradient(130deg, var(--brand) 0%, #99f2e8 100%);
  box-shadow: 0 12px 28px rgba(78, 214, 197, 0.26);
}

.btn-ghost {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.03);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: var(--brand);
}

.btn-nav {
  background: rgba(255, 190, 88, 0.14);
  color: #ffd79b;
  border-color: rgba(255, 190, 88, 0.5);
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.54rem;
  font-size: 0.77rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #a8d5ff;
}

.eyebrow::before {
  content: "";
  width: 1.2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  line-height: 1.16;
}

h1 {
  font-size: clamp(2.05rem, 4.4vw, 3.65rem);
  max-width: 16.5ch;
  margin-top: 0.62rem;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 2.35rem);
}

h3 {
  font-size: 1.1rem;
}

.lead {
  color: var(--muted);
  max-width: 62ch;
  margin: 1rem 0 1.45rem;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(1.1rem, 3vw, 2.1rem);
  align-items: start;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.metric-grid {
  margin-top: 1.05rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
}

.metric-card {
  padding: 0.86rem 0.88rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(18, 37, 55, 0.7), rgba(9, 23, 34, 0.74));
}

.metric-value {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.3rem;
  color: #d4fff8;
}

.metric-label {
  margin: 0.2rem 0 0;
  color: #afc3d6;
  font-size: 0.83rem;
}

.hero-visual {
  display: grid;
  gap: 0.82rem;
}

.hero-main-photo,
.support-photo,
.edge-photo,
.showcase-card,
.service-card img {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--glow);
}

.hero-main-photo {
  aspect-ratio: 16 / 10;
}

.hero-main-photo img,
.support-photo img,
.edge-photo img,
.showcase-card img,
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.86) contrast(1.04);
}

.hero-support {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 0.82rem;
}

.support-photo {
  aspect-ratio: 1;
}

.support-card {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background:
    linear-gradient(168deg, rgba(78, 214, 197, 0.14), transparent 45%),
    rgba(12, 29, 42, 0.84);
}

.support-card h2 {
  font-size: 1.16rem;
  margin-bottom: 0.6rem;
}

.support-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.44rem;
}

.support-card li {
  color: #d8e8f7;
  font-size: 0.9rem;
  padding-left: 0.9rem;
  position: relative;
}

.support-card li::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: var(--brand);
  position: absolute;
  left: 0;
  top: 0.5rem;
}

.support-card p {
  margin: 0.7rem 0 0;
  color: #9dd8cf;
  font-size: 0.85rem;
}

.section-head {
  margin-bottom: 1rem;
}

.section-head h2 {
  max-width: 19ch;
  margin-top: 0.62rem;
}

.marquee {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(11, 25, 38, 0.7);
  margin-bottom: 1rem;
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 0.55rem;
  padding: 0.45rem;
  animation: marquee-slide 24s linear infinite;
}

.marquee-track span {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.86rem;
  font-weight: 700;
  color: #d9efff;
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

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

.hardware-mini-grid {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.mini-card {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12, 27, 39, 0.8);
  overflow: hidden;
}

.mini-card img {
  width: 100%;
  height: 130px;
  display: block;
}

.mini-card figcaption {
  padding: 0.55rem 0.7rem 0.68rem;
  font-size: 0.84rem;
  color: #cfe3f5;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.95rem;
  background: linear-gradient(180deg, rgba(21, 44, 62, 0.72), rgba(10, 25, 36, 0.72));
}

.card p {
  margin: 0.54rem 0 0;
  color: var(--muted);
}

.edge {
  background: linear-gradient(180deg, rgba(7, 15, 22, 0), rgba(12, 25, 38, 0.46));
}

.edge-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.edge-copy p {
  color: var(--muted);
}

.feature-list {
  display: grid;
  gap: 0.7rem;
}

.feature-item {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 0.9rem;
  background: rgba(13, 30, 43, 0.78);
}

.feature-item p {
  margin: 0.45rem 0 0;
}

.edge-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.edge-photo {
  aspect-ratio: 4 / 5;
}

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

.service-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: linear-gradient(180deg, rgba(22, 44, 61, 0.74), rgba(11, 26, 38, 0.74));
}

.service-card img {
  height: 180px;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

img.img-contain {
  object-fit: contain !important;
  background: linear-gradient(180deg, #f0f3f8 0%, #e3e9f2 100%);
  padding: 0.55rem;
}

.service-card div {
  padding: 0.92rem 0.9rem 0.98rem;
}

.service-card p {
  margin: 0.5rem 0 0;
  color: var(--muted);
}

.integration-layout {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.95rem;
  background:
    linear-gradient(160deg, rgba(255, 190, 88, 0.08), transparent 45%),
    rgba(9, 23, 35, 0.86);
}

.integration-copy p {
  color: var(--muted);
}

.issue-grid {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.issue-grid li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 14px;
  background: rgba(8, 18, 29, 0.76);
  padding: 0.9rem;
  color: #d4e5f7;
}

.issue-grid strong {
  display: block;
  margin-bottom: 0.25rem;
  color: #ffd59a;
}

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

.showcase-card {
  position: relative;
  aspect-ratio: 4 / 5;
}

.showcase-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(3, 8, 13, 0.85) 100%);
}

.showcase-card figcaption {
  position: absolute;
  left: 0.78rem;
  right: 0.78rem;
  bottom: 0.72rem;
  z-index: 2;
  color: #e8f4ff;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
}

.contact-layout {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.2rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
  background: rgba(11, 26, 38, 0.84);
}

.contact-lead {
  color: var(--muted);
  max-width: 60ch;
}

.contact-actions {
  display: grid;
  align-content: center;
  gap: 0.7rem;
}

.contact-actions p {
  color: var(--muted);
  margin: 0;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.1rem 0 1.7rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.footer-inner a {
  color: var(--brand);
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero-layout,
  .edge-layout,
  .integration-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .metric-grid,
  .brand-grid,
  .hardware-mini-grid,
  .service-grid,
  .showcase-grid,
  .edge-media {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .menu-toggle {
    display: inline-flex;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 10px;
    background: transparent;
    color: var(--ink);
    padding: 0.44rem 0.64rem;
    font-weight: 600;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: grid;
    gap: 0.6rem;
    padding: 0.9rem 4vw 1rem;
    background: rgba(5, 12, 20, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transform-origin: top;
    transform: scaleY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.24s ease, opacity 0.24s ease;
  }

  .site-nav.is-open {
    transform: scaleY(1);
    opacity: 1;
    pointer-events: auto;
  }

  .btn-nav {
    max-width: max-content;
  }

  .hero-support {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 2.3rem 0;
  }

  .metric-grid,
  .brand-grid,
  .hardware-mini-grid,
  .service-grid,
  .showcase-grid,
  .edge-media {
    grid-template-columns: 1fr;
  }

  .service-card img {
    height: 200px;
  }

  .showcase-card {
    aspect-ratio: 16 / 10;
  }

}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Premium Boardroom Visual Upgrade */
:root {
  --mx: 50%;
  --my: 28%;
  --panel-bg: rgba(10, 22, 35, 0.72);
  --panel-bg-strong: rgba(8, 18, 29, 0.84);
  --panel-border: rgba(145, 223, 255, 0.2);
  --hero-shadow: 0 26px 70px rgba(0, 0, 0, 0.42);
}

body {
  background:
    radial-gradient(1200px 760px at 14% -8%, rgba(78, 214, 197, 0.2), transparent 56%),
    radial-gradient(1200px 860px at 90% 2%, rgba(95, 147, 255, 0.2), transparent 54%),
    linear-gradient(180deg, #02060c 0%, #061121 42%, #07192a 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(650px 650px at var(--mx) var(--my), rgba(106, 221, 246, 0.12), transparent 58%),
    radial-gradient(360px 360px at calc(var(--mx) + 16%) calc(var(--my) + 10%), rgba(255, 201, 115, 0.1), transparent 72%);
}

.ambient-cursor {
  display: none;
}

#top,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  background:
    linear-gradient(100deg, rgba(8, 20, 33, 0.88), rgba(6, 14, 24, 0.78)),
    rgba(5, 11, 19, 0.74);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.25);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(116, 220, 251, 0.72), transparent);
}

.site-header.scrolled {
  background:
    linear-gradient(100deg, rgba(7, 18, 29, 0.94), rgba(5, 12, 22, 0.9)),
    rgba(4, 9, 16, 0.9);
}

.hero {
  padding-top: clamp(3.4rem, 8vw, 6rem);
}

.hero-copy h1 {
  text-shadow: 0 10px 34px rgba(64, 133, 255, 0.18);
  letter-spacing: -0.01em;
}

.hero-badges {
  display: flex;
  gap: 0.56rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.hero-badges span {
  padding: 0.44rem 0.72rem;
  border-radius: 999px;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #b9e5ff;
  border: 1px solid rgba(136, 212, 255, 0.34);
  background: rgba(17, 37, 53, 0.62);
}

.hero-main-photo,
.support-photo,
.edge-photo {
  box-shadow: var(--hero-shadow);
}

.hero-main-photo {
  animation: float-slow 7.2s ease-in-out infinite;
}

.support-photo {
  animation: float-slow 8.4s ease-in-out infinite reverse;
}

@keyframes float-slow {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.support-card,
.integration-layout,
.contact-layout,
.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li {
  background: linear-gradient(180deg, rgba(16, 36, 54, 0.82), rgba(9, 20, 32, 0.86));
  border-color: var(--panel-border);
  backdrop-filter: blur(10px);
}

.support-card {
  background:
    linear-gradient(165deg, rgba(74, 212, 227, 0.2), transparent 40%),
    linear-gradient(180deg, rgba(16, 36, 54, 0.84), rgba(8, 18, 29, 0.9));
}

.metric-card,
.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li,
.showcase-card,
.support-card {
  transition: transform 0.34s ease, border-color 0.34s ease, box-shadow 0.34s ease;
}

[data-tilt] {
  transform-style: preserve-3d;
  will-change: transform;
}

[data-tilt]:hover {
  border-color: rgba(130, 222, 250, 0.48);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.metric-card {
  position: relative;
  overflow: hidden;
}

.metric-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 34%, rgba(168, 241, 255, 0.14), transparent 66%);
  transform: translateX(-140%);
  transition: transform 0.7s ease;
}

.metric-card:hover::after {
  transform: translateX(140%);
}

.metric-value {
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
}

.brand-grid .card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
}

.brand-grid .card h3 {
  color: #e4f7ff;
}

.hardware-mini-grid .mini-card {
  min-height: 190px;
}

.mini-card img {
  background: rgba(230, 241, 250, 0.92);
}

.feature-item h3 {
  color: #d5f7ff;
}

.service-card {
  min-height: 370px;
}

.service-card img {
  background: linear-gradient(180deg, #eef3f7 0%, #dde6f0 100%);
}

.showcase-grid {
  gap: 1rem;
}

.showcase-card {
  border: 1px solid rgba(168, 224, 255, 0.34);
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.34);
}

.showcase-card img {
  transition: transform 0.45s ease, filter 0.45s ease;
}

.showcase-card:hover img {
  transform: scale(1.06);
  filter: saturate(1.06) contrast(1.03);
}

.showcase-card::after {
  background: linear-gradient(180deg, rgba(5, 10, 16, 0.04) 30%, rgba(3, 8, 13, 0.9) 100%);
}

.showcase-card figcaption {
  font-size: 0.97rem;
  letter-spacing: 0.01em;
}

.integration-layout {
  box-shadow: var(--hero-shadow);
}

.issue-grid li {
  min-height: 128px;
}

.contact-layout {
  box-shadow: var(--hero-shadow);
}

@media (max-width: 1080px) {
  .service-card {
    min-height: 0;
  }

  .issue-grid li {
    min-height: 0;
  }
}

@media (max-width: 840px) {
  .hero-main-photo,
  .support-photo {
    animation: none;
  }

  .hero-badges span {
    font-size: 0.73rem;
  }
}

/* Launch Visual Pass v3 */
:root {
  --radius-xl: 28px;
  --panel-ring: rgba(158, 226, 255, 0.22);
  --panel-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1600;
  background: rgba(255, 255, 255, 0.04);
}

.scroll-progress span {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #6bead9, #7fc7ff, #ffd08a);
  box-shadow: 0 0 14px rgba(116, 220, 251, 0.6);
  transition: width 0.1s linear;
}

.header-inner {
  min-height: 86px;
}

.site-nav {
  gap: 0.42rem;
  padding: 0.36rem;
  border-radius: 999px;
  background: linear-gradient(170deg, rgba(17, 35, 52, 0.82), rgba(8, 18, 29, 0.76));
  border: 1px solid rgba(140, 212, 246, 0.26);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.site-nav a {
  padding: 0.4rem 0.62rem;
  border-radius: 999px;
}

.site-nav a:not(.btn)::after {
  bottom: 0.22rem;
  left: 0.6rem;
  width: calc(100% - 1.2rem);
}

.site-nav a.is-current:not(.btn) {
  background: rgba(87, 175, 225, 0.14);
}

.hero {
  padding-top: clamp(3.7rem, 9vw, 6.6rem);
}

.hero-layout {
  align-items: stretch;
}

.hero-copy {
  border: 1px solid var(--panel-ring);
  border-radius: var(--radius-xl);
  padding: clamp(1.05rem, 2vw, 1.5rem);
  background:
    radial-gradient(500px 260px at 20% -10%, rgba(92, 190, 241, 0.16), transparent 60%),
    linear-gradient(180deg, rgba(13, 28, 42, 0.82), rgba(8, 18, 29, 0.9));
  box-shadow: var(--panel-shadow);
}

.hero-copy h1 {
  max-width: 15.5ch;
}

.hero-copy .lead {
  margin-bottom: 1rem;
}

.hero-signal-grid {
  margin-top: 0.96rem;
  margin-bottom: 1rem;
  display: grid;
  gap: 0.58rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.hero-signal-card {
  border: 1px solid rgba(163, 226, 255, 0.24);
  border-radius: 14px;
  padding: 0.68rem 0.72rem;
  background: rgba(8, 18, 29, 0.58);
}

.hero-signal-card p {
  margin: 0;
  color: #8fd9ff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.66rem;
}

.hero-signal-card strong {
  display: block;
  margin-top: 0.26rem;
  font-size: 0.84rem;
  line-height: 1.35;
  color: #e7f5ff;
}

.hero-visual {
  padding: 0.45rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--panel-ring);
  background: linear-gradient(180deg, rgba(13, 29, 43, 0.78), rgba(7, 16, 27, 0.86));
  box-shadow: var(--panel-shadow);
}

.metric-card {
  border-color: rgba(170, 229, 255, 0.26);
  background: linear-gradient(180deg, rgba(22, 46, 66, 0.74), rgba(10, 23, 34, 0.82));
}

.trust-strip {
  padding-top: 1rem;
}

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

.trust-item {
  border-radius: 16px;
  border: 1px solid var(--panel-ring);
  padding: 1rem;
  background:
    radial-gradient(420px 200px at 5% -20%, rgba(255, 201, 122, 0.14), transparent 60%),
    linear-gradient(180deg, rgba(16, 37, 55, 0.8), rgba(8, 19, 31, 0.86));
  box-shadow: var(--panel-shadow);
}

.trust-kicker {
  margin: 0;
  color: #9bdcff;
  font-size: 0.71rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.trust-item h3 {
  margin-top: 0.35rem;
  font-size: 1.12rem;
}

.trust-item span {
  display: block;
  margin-top: 0.4rem;
  color: #b8cde0;
  font-size: 0.9rem;
}

.brands .container,
.services .container,
.showcase .container {
  padding: clamp(1rem, 2.3vw, 1.45rem);
  border-radius: var(--radius-xl);
  border: 1px solid var(--panel-ring);
  background: linear-gradient(180deg, rgba(11, 25, 38, 0.74), rgba(8, 18, 29, 0.86));
  box-shadow: var(--panel-shadow);
}

.section-head {
  margin-bottom: 1.2rem;
}

.section-head h2 {
  max-width: 22ch;
}

.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li,
.integration-layout,
.contact-layout {
  border-color: rgba(160, 227, 255, 0.2);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.22);
}

.card:hover,
.mini-card:hover,
.feature-item:hover,
.service-card:hover,
.issue-grid li:hover,
.showcase-card:hover {
  transform: translateY(-4px);
}

.service-card img {
  height: 190px;
}

.integration-layout,
.contact-layout {
  border-radius: var(--radius-xl);
}

.contact-layout {
  background:
    radial-gradient(600px 260px at 100% -30%, rgba(98, 201, 241, 0.16), transparent 64%),
    linear-gradient(180deg, rgba(12, 30, 45, 0.84), rgba(8, 18, 29, 0.88));
}

.footer-inner {
  padding-top: 0.4rem;
}

@media (max-width: 1080px) {
  .hero-signal-grid,
  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 840px) {
  .site-nav {
    top: 86px;
    border-radius: 0;
    border-left: 0;
    border-right: 0;
    padding: 1rem 4vw 1rem;
    gap: 0.4rem;
  }

  .site-nav a {
    padding: 0.52rem 0.32rem;
  }
}

@media (max-width: 640px) {
  .hero-copy {
    padding: 0.92rem 0.9rem;
  }

  .hero-signal-grid,
  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .brands .container,
  .services .container,
  .showcase .container {
    padding: 0.92rem;
  }
}

/* Alignment Fix Pass */
.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.hero-copy .lead {
  margin: 0;
}

.hero-cta {
  margin-top: 0.12rem;
}

.hero-signal-grid {
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.metric-grid {
  margin-top: 0.15rem;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.metric-card {
  min-height: 94px;
}

.hero-support {
  grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1.1fr);
}

.support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-layout {
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.contact-actions {
  max-width: none;
}

@media (max-width: 1080px) {
  .hero-signal-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .hero-signal-grid,
  .metric-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 0.78rem;
  }

  .contact-actions {
    max-width: 520px;
  }
}

/* First-load fit for shorter desktop viewports at 100% zoom */
@media (min-width: 1180px) and (max-height: 900px) {
  .hero {
    padding-top: 1.2rem;
  }

  .hero.section {
    padding-bottom: 2rem;
  }

  .hero-layout {
    gap: 1rem;
  }

  .hero-copy {
    padding: 0.9rem 0.95rem;
    gap: 0.5rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.1rem, 3.2vw, 2.9rem);
    line-height: 1.08;
    max-width: 13.2ch;
  }

  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-badges {
    margin-bottom: 0.4rem;
  }

  .hero-badges span {
    font-size: 0.66rem;
    padding: 0.34rem 0.54rem;
  }

  .hero-signal-grid {
    display: none;
  }

  .metric-grid {
    margin-top: 0.3rem;
    gap: 0.5rem;
  }

  .metric-card {
    min-height: 0;
    padding: 0.64rem 0.68rem;
  }

  .metric-value {
    font-size: 1.14rem;
  }

  .metric-label {
    margin-top: 0.08rem;
    font-size: 0.76rem;
  }

  .hero-main-photo {
    aspect-ratio: 16 / 8.6;
  }

  .hero-support {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 0.62rem;
  }

  .support-card {
    padding: 0.8rem;
  }

  .support-card h2 {
    font-size: 1.02rem;
    margin-bottom: 0.38rem;
  }

  .support-card ul {
    gap: 0.32rem;
  }

  .support-card li {
    font-size: 0.82rem;
  }

  .support-card p {
    margin-top: 0.42rem;
    font-size: 0.78rem;
  }
}

/* Mobile-first fit safeguard (kept last to override desktop patches) */
@media (max-width: 980px) {
  .hero-layout,
  .hero-support,
  .hero-visual,
  .edge-layout,
  .integration-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-support {
    gap: 0.7rem;
  }
}

@media (max-width: 700px) {
  .header-inner {
    min-height: 72px;
  }

  .site-nav {
    top: 72px;
    padding: 0.82rem 1rem 0.92rem;
    gap: 0.32rem;
  }

  .site-nav a {
    font-size: 0.92rem;
    padding: 0.52rem 0.2rem;
  }

  .hero {
    padding-top: 1.2rem;
  }

  .hero.section {
    padding-bottom: 1.6rem;
  }

  .hero-layout {
    gap: 0.85rem;
  }

  .hero-copy {
    padding: 0.88rem 0.84rem;
    gap: 0.58rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 9vw, 2.65rem);
    line-height: 1.08;
    max-width: 13ch;
  }

  .hero-copy .lead {
    font-size: 1rem;
    line-height: 1.42;
  }

  .hero-badges {
    margin-bottom: 0.32rem;
    gap: 0.38rem;
  }

  .hero-badges span {
    font-size: 0.67rem;
    padding: 0.3rem 0.5rem;
  }

  .hero-cta {
    gap: 0.52rem;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .hero-signal-grid {
    display: none;
  }

  .metric-grid {
    grid-template-columns: 1fr;
    gap: 0.52rem;
  }

  .metric-card {
    min-height: 0;
    padding: 0.68rem 0.72rem;
  }

  .hero-visual {
    padding: 0.3rem;
    gap: 0.62rem;
  }

  .hero-main-photo {
    aspect-ratio: 16 / 10.8;
  }

  .support-photo {
    aspect-ratio: 4 / 3;
  }

  .support-card {
    padding: 0.78rem;
  }

  .support-card h2 {
    font-size: 1.02rem;
    margin-bottom: 0.42rem;
  }

  .support-card li {
    font-size: 0.84rem;
  }

  .support-card p {
    font-size: 0.8rem;
  }

  .brands .container,
  .services .container,
  .showcase .container {
    padding: 0.8rem;
  }

  .service-card img {
    height: 180px;
  }

  .showcase-card {
    aspect-ratio: 16 / 10;
  }

  .contact-layout {
    gap: 0.66rem;
    padding: 0.92rem;
  }

  .contact-actions {
    max-width: 100%;
  }

  .contact-actions .btn {
    width: 100%;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

@media (max-width: 420px) {
  .container {
    width: min(1160px, 94vw);
  }

  .hero-copy h1 {
    font-size: clamp(1.72rem, 10.6vw, 2.26rem);
  }

  .lead {
    font-size: 0.97rem;
  }

  .btn {
    padding: 0.68rem 0.9rem;
  }

  .brand small {
    font-size: 0.7rem;
  }
}

/* White + Light Blue Palette / Rectangular UI */
:root {
  --bg: #f4f9ff;
  --bg-soft: #edf5ff;
  --surface: #ffffff;
  --surface-soft: #f2f8ff;
  --ink: #12385f;
  --muted: #4f6f8d;
  --brand: #3b9cf3;
  --brand-strong: #1f72c6;
  --accent: #7fbef7;
  --line: rgba(59, 156, 243, 0.24);
  --glow: 0 14px 30px rgba(37, 103, 163, 0.14);
  --radius-md: 10px;
  --radius-lg: 12px;
  --radius-xl: 14px;
  --panel-ring: rgba(95, 166, 233, 0.34);
  --panel-shadow: 0 12px 28px rgba(38, 109, 173, 0.12);
}

body {
  color: var(--ink);
  background:
    radial-gradient(1200px 720px at 12% -12%, rgba(116, 188, 255, 0.24), transparent 60%),
    radial-gradient(1200px 720px at 92% 2%, rgba(171, 220, 255, 0.22), transparent 56%),
    linear-gradient(180deg, #ffffff 0%, #f5f9ff 46%, #ecf5ff 100%);
}

body::before {
  background:
    radial-gradient(560px 560px at var(--mx) var(--my), rgba(127, 190, 247, 0.16), transparent 62%),
    radial-gradient(360px 360px at calc(var(--mx) + 15%) calc(var(--my) + 12%), rgba(189, 227, 255, 0.16), transparent 72%);
}

.bg-layer-1 {
  background-image:
    linear-gradient(rgba(27, 95, 155, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(27, 95, 155, 0.07) 1px, transparent 1px);
}

.bg-layer-2 {
  background:
    radial-gradient(circle at 18% 80%, rgba(120, 185, 244, 0.2), transparent 34%),
    radial-gradient(circle at 84% 68%, rgba(157, 212, 255, 0.18), transparent 36%);
}

.site-header,
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(58, 145, 219, 0.22);
  box-shadow: 0 10px 22px rgba(34, 99, 159, 0.12);
}

.site-header::after {
  background: linear-gradient(90deg, transparent, rgba(88, 169, 235, 0.56), transparent);
}

.brand strong {
  color: #143a61;
}

.brand small {
  color: #6285a7;
}

.brand-mark {
  color: #0f4678;
  background: linear-gradient(140deg, #84d0ff, #d5efff);
  box-shadow: 0 8px 20px rgba(78, 157, 224, 0.24);
}

.site-nav {
  border-radius: 10px;
  background: linear-gradient(170deg, rgba(244, 250, 255, 0.95), rgba(231, 243, 255, 0.94));
  border-color: rgba(109, 179, 239, 0.35);
}

.site-nav a {
  color: #184a79;
  border-radius: 6px;
}

.site-nav a.is-current:not(.btn) {
  background: rgba(155, 210, 251, 0.35);
}

.btn {
  border-radius: 8px;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(130deg, #3b9cf3 0%, #61b2f7 100%);
  box-shadow: 0 10px 24px rgba(53, 139, 211, 0.28);
}

.btn-ghost {
  color: #1d588c;
  border-color: rgba(78, 151, 216, 0.38);
  background: #ffffff;
}

.btn-nav {
  color: #1f5f95;
  background: linear-gradient(140deg, #f6fbff, #e4f1fd);
  border-color: rgba(96, 164, 224, 0.44);
}

.eyebrow,
.hero-badges span,
.trust-kicker {
  color: #2e79b9;
}

.hero-badges span {
  border-radius: 6px;
  border-color: rgba(101, 171, 233, 0.4);
  background: rgba(236, 246, 255, 0.95);
}

.hero-copy,
.hero-visual,
.support-card,
.integration-layout,
.contact-layout,
.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li,
.trust-item,
.brands .container,
.services .container,
.showcase .container,
.metric-card,
.hero-signal-card {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border-color: rgba(101, 170, 231, 0.3);
  box-shadow: var(--panel-shadow);
}

.support-card p,
.lead,
.card p,
.service-card p,
.integration-copy p,
.edge-copy p,
.contact-lead,
.contact-actions p,
.trust-item span,
.metric-label {
  color: #577798;
}

.support-card li,
.issue-grid li,
.feature-item p,
.service-card,
.card,
.mini-card figcaption,
.marquee-track span {
  color: #1f4f7d;
}

.metric-value,
.brand-grid .card h3,
.feature-item h3,
.support-card h2,
.contact-layout h2,
.showcase-card figcaption {
  color: #143b61;
}

.metric-card::after {
  background: linear-gradient(120deg, transparent 30%, rgba(120, 188, 247, 0.2), transparent 70%);
}

.marquee {
  border-radius: 8px;
  border-color: rgba(93, 163, 225, 0.34);
  background: #f6fbff;
}

.marquee-track span {
  border-radius: 6px;
  border-color: rgba(104, 173, 234, 0.34);
  background: #ffffff;
}

.showcase-card {
  border-radius: 10px;
  border-color: rgba(93, 163, 225, 0.34);
}

.showcase-card::after {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 40%, rgba(230, 244, 255, 0.92) 100%);
}

.issue-grid strong {
  color: #2b75b5;
}

.site-footer {
  border-top: 1px solid rgba(95, 164, 225, 0.25);
  background: rgba(241, 248, 255, 0.72);
}

.footer-inner a {
  color: #2a7abc;
}

.scroll-progress {
  background: rgba(97, 170, 234, 0.2);
}

.scroll-progress span {
  background: linear-gradient(90deg, #73bcf6, #3b9cf3, #9fd4fb);
  box-shadow: 0 0 10px rgba(84, 161, 225, 0.42);
}

/* Light Corporate UI Polish v2 */
:root {
  --radius-md: 12px;
  --radius-lg: 14px;
  --radius-xl: 16px;
  --ink: #0f3558;
  --muted: #547390;
  --brand: #2f8fe4;
  --brand-strong: #206fb4;
  --line: rgba(77, 148, 211, 0.25);
  --panel-shadow: 0 14px 30px rgba(33, 95, 149, 0.11);
}

body {
  background:
    radial-gradient(900px 560px at 8% -10%, rgba(111, 184, 248, 0.23), transparent 64%),
    radial-gradient(900px 560px at 94% 0%, rgba(173, 220, 255, 0.2), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f4f9ff 52%, #ecf4ff 100%);
}

.site-header,
.site-header.scrolled {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(87, 156, 216, 0.25);
}

.site-nav {
  border-radius: 8px;
  border-color: rgba(96, 166, 226, 0.34);
  background: linear-gradient(180deg, #ffffff, #f2f8ff);
}

.site-nav a {
  color: #184a79;
  font-weight: 700;
  border-radius: 6px;
}

.site-nav a:not(.btn)::after {
  height: 3px;
  border-radius: 2px;
}

.site-nav a.is-current:not(.btn) {
  background: #e9f5ff;
}

.btn {
  border-radius: 8px;
  font-weight: 700;
}

.btn-primary {
  background: linear-gradient(140deg, #2f8fe4 0%, #61b2f7 100%);
  color: #ffffff;
}

.btn-ghost {
  background: #ffffff;
}

.hero {
  padding-top: clamp(2.8rem, 6vw, 5.2rem);
}

.hero-copy,
.hero-visual {
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
  border: 1px solid rgba(102, 171, 231, 0.3);
  box-shadow: var(--panel-shadow);
}

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

.hero-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  background: linear-gradient(180deg, #70bbf8, #2f8fe4);
}

.hero-copy h1 {
  color: #123d64;
  text-shadow: none;
}

.lead,
.hero-copy .lead {
  color: #4f6f8c;
}

.hero-badges span,
.hero-signal-card,
.metric-card,
.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li,
.trust-item,
.support-card,
.integration-layout,
.contact-layout,
.brands .container,
.services .container,
.showcase .container {
  border-radius: 10px;
}

.hero-badges span {
  background: #eff7ff;
  color: #2c77b7;
}

.hero-main-photo,
.support-photo,
.edge-photo,
.showcase-card {
  border-color: rgba(101, 170, 231, 0.34);
  border-radius: 10px;
}

.hero-main-photo img,
.support-photo img,
.edge-photo img,
.showcase-card img,
.service-card img {
  filter: saturate(1.01) contrast(1.01);
}

.metric-card {
  border: 1px solid rgba(99, 169, 230, 0.32);
  background: linear-gradient(180deg, #fafdff, #edf6ff);
  box-shadow: 0 8px 20px rgba(54, 124, 187, 0.09);
}

.metric-value {
  color: #13446f;
}

.metric-label {
  color: #587997;
}

.support-card ul li::before {
  border-radius: 2px;
}

.section-head h2,
.card h3,
.feature-item h3,
.contact-layout h2 {
  color: #143f67;
}

.card,
.mini-card,
.feature-item,
.service-card,
.issue-grid li,
.trust-item,
.support-card {
  border-color: rgba(101, 170, 231, 0.29);
  background: linear-gradient(180deg, #ffffff, #f4f9ff);
}

.card:hover,
.mini-card:hover,
.feature-item:hover,
.service-card:hover,
.issue-grid li:hover,
.showcase-card:hover,
.trust-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 26px rgba(51, 118, 178, 0.14);
}

.marquee {
  border-radius: 8px;
  background: #f6fbff;
}

.marquee-track span {
  border-radius: 6px;
  background: #ffffff;
  color: #205482;
}

.issue-grid strong {
  color: #2a76b5;
}

.contact-layout {
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
}

.contact-actions .btn {
  min-height: 48px;
}

.footer-inner {
  color: #52708b;
}

@media (max-width: 840px) {
  .site-nav {
    background: #ffffff;
    border: 1px solid rgba(107, 175, 233, 0.34);
  }
}

@media (max-width: 700px) {
  .hero-copy::before {
    width: 4px;
  }

  .hero-copy h1 {
    font-size: clamp(1.84rem, 8.7vw, 2.5rem);
  }
}
