:root {
  --ink: #11151b;
  --cyan: #43b9d7;
  --cyan-deep: #128baa;
  --white: #f8fbfc;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
  background: #e9eef1;
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

body { overflow-x: hidden; }
a { color: inherit; text-decoration: none; }

.landing-shell {
  position: relative;
  width: 100%;
  min-height: 100svh;
  height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #edf2f4;
}

.brand-header {
  position: absolute;
  z-index: 20;
  top: clamp(28px, 4vh, 52px);
  left: 50%;
  display: flex;
  width: min(90%, 1740px);
  transform: translateX(-50%);
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.brand-header a { pointer-events: auto; display: inline-flex; border-radius: 8px; }
.brand-header a:focus-visible { outline: 3px solid rgba(67, 185, 215, .8); outline-offset: 8px; }
.brand-logo { display: block; width: clamp(185px, 12.5vw, 250px); height: auto; }
.download-link {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid rgba(248, 251, 252, .34);
  border-radius: 999px !important;
  color: rgba(248, 251, 252, .72);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .25s ease, color .25s ease;
}
.download-link:hover { background: rgba(255,255,255,.14); color: #fff; }

.gateway { display: grid; grid-template-columns: 1fr 1fr; width: 100%; height: 100%; }
.gateway-panel {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  transition: filter .35s ease;
}
.gateway-panel:focus-visible { z-index: 30; outline: 4px solid #fff; outline-offset: -8px; }

.products-panel {
  background:
    radial-gradient(circle at 75% 44%, rgba(67, 185, 215, .2), transparent 27%),
    linear-gradient(135deg, #f9fbfc 0%, #eef3f5 63%, #dfe8ec 100%);
}
.products-panel::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 0;
  right: -1px;
  width: 4vw;
  height: 100%;
  background: var(--cyan);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  transform: scaleX(.18);
  transform-origin: right;
  transition: transform .55s cubic-bezier(.2,.8,.2,1);
}
.products-panel:hover::before { transform: scaleX(1); }

.panel-copy { position: absolute; z-index: 8; }
.products-copy {
  top: 44%;
  left: clamp(48px, 4.4vw, 86px);
  width: 44%;
  transform: translateY(-50%);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan-deep);
  font-size: clamp(10px, .68vw, 13px);
  font-weight: 700;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow span { width: 24px; height: 2px; background: currentColor; }

.panel-copy h1, .panel-copy h2 {
  margin: 18px 0 18px;
  max-width: 560px;
  color: var(--ink);
  font-size: clamp(34px, 2.9vw, 56px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.045em;
}
.panel-copy h1 em, .panel-copy h2 em { color: var(--cyan); font-style: normal; }
.panel-copy p {
  max-width: 390px;
  margin: 0 0 26px;
  color: #66717b;
  font-size: clamp(13px, .82vw, 16px);
  font-weight: 400;
  line-height: 1.55;
}

.action-pill {
  display: inline-flex;
  min-width: 176px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 6px 7px 6px 18px;
  border: 1px solid rgba(17, 21, 27, .16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: color .3s ease, background .3s ease, transform .3s ease;
}
.action-pill svg {
  width: 34px;
  height: 34px;
  padding: 8px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  transition: transform .35s ease;
}
.action-pill b {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 17px;
  font-weight: 400;
  transition: transform .35s ease;
}
.light-pill b { background: #fff; color: var(--cyan-deep); }
.gateway-panel:hover .action-pill b { transform: rotate(45deg); }
.gateway-panel:hover .action-pill { transform: translateX(5px); }
.gateway-panel:hover .action-pill svg { transform: rotate(45deg); }

.product-stage {
  position: absolute;
  z-index: 5;
  right: 3%;
  bottom: 5%;
  width: 44%;
  height: 68%;
  pointer-events: none;
}
.product-stage::after {
  content: "";
  position: absolute;
  right: 2%;
  bottom: 0;
  width: 88%;
  height: 7%;
  border-radius: 50%;
  background: rgba(8, 14, 18, .2);
  filter: blur(26px);
}
.orbit { position: absolute; border: 1px solid rgba(67, 185, 215, .33); border-radius: 50%; }
.orbit-one { top: 10%; right: 0; width: 90%; aspect-ratio: 1; }
.orbit-two { top: 22%; right: 12%; width: 64%; aspect-ratio: 1; }
.product {
  position: absolute;
  z-index: 3;
  display: block;
  height: auto;
  transform-origin: 50% 90%;
  filter: drop-shadow(0 30px 26px rgba(10, 17, 21, .19));
  transition: transform .6s cubic-bezier(.16,1,.3,1), filter .6s ease;
}
.product-kiosk { right: 0; bottom: 0; width: 70%; transform: rotate(-1deg); }
.product-white { right: 40%; bottom: 0; width: auto; height: 52%; transform: rotate(-4deg); }
.product-black { right: 68%; bottom: 0; width: auto; height: 52%; transform: rotate(3deg); }
.products-panel:hover .product-kiosk { transform: translateY(-8px) rotate(0deg); }
.products-panel:hover .product-white { transform: translate(-5px, -6px) rotate(-3deg); }
.products-panel:hover .product-black { transform: translate(-7px, -3px) rotate(2deg); }
.products-panel:hover .product { filter: drop-shadow(0 40px 34px rgba(10, 17, 21, .25)); }

.support-panel {
  background:
    linear-gradient(135deg, rgba(255,255,255,.1), transparent 35%),
    linear-gradient(145deg, #45bddb 0%, #25a7c7 53%, #1285a3 100%);
  color: var(--white);
}
.support-panel::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 42%;
  background: linear-gradient(to top, rgba(0, 78, 99, .12), transparent);
}
.support-glow {
  position: absolute;
  top: -20%;
  left: -20%;
  width: 65%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255,255,255,.16);
  filter: blur(100px);
}
.support-copy {
  top: 58%;
  left: clamp(48px, 5vw, 96px);
  width: 74%;
  transform: translateY(-12%);
}
.eyebrow.light { color: rgba(255,255,255,.82); }
.support-copy h2 { color: #fff; font-size: clamp(34px, 2.9vw, 56px); }
.support-copy h2 em { color: #15222b; }
.support-copy p { max-width: 410px; color: rgba(255,255,255,.78); }
.light-pill { border-color: rgba(255,255,255,.34); color: #fff; }
.light-pill svg { background: #fff; color: var(--cyan-deep); }

.support-visual {
  position: absolute;
  z-index: 4;
  top: 10%;
  right: 8%;
  left: auto;
  width: min(18vw, 330px);
  aspect-ratio: 1;
  transform: none;
}
.pulse {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 50%;
  transition: transform .7s cubic-bezier(.16,1,.3,1), opacity .7s ease;
}
.pulse-two { inset: 10%; border-color: rgba(255,255,255,.22); }
.support-icon {
  position: absolute;
  inset: 22%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.34), 0 30px 70px rgba(0,61,79,.18);
  color: #fff;
  backdrop-filter: blur(12px);
}
.status-dot {
  position: absolute;
  right: 23%;
  bottom: 25%;
  width: 18px;
  aspect-ratio: 1;
  border: 5px solid #32a9c7;
  border-radius: 50%;
  background: #55f09c;
  box-shadow: 0 0 0 7px rgba(85,240,156,.16);
}
.support-panel:hover .pulse-one { transform: scale(1.09); opacity: .42; }
.support-panel:hover .pulse-two { transform: scale(.93); }

@media (max-width: 1280px) {
  .products-copy { width: 46%; }
  .product-stage { right: 1.5%; width: 43%; height: 64%; }
  .support-copy { left: 5vw; width: 80%; }
  .support-visual { right: 6%; width: min(20vw, 280px); }
}

@media (max-width: 900px) {
  .landing-shell { height: auto; min-height: 100svh; overflow: visible; }
  .brand-header { top: 24px; }
  .brand-logo { width: 156px; }
  .download-link { padding: 8px 11px; font-size: 9px; }
  .gateway { grid-template-columns: 1fr; height: auto; }
  .gateway-panel { min-height: 720px; }
  .products-copy, .support-copy { top: 130px; left: 7vw; width: 86vw; transform: none; }
  .panel-copy h1, .panel-copy h2 { margin-top: 18px; font-size: clamp(40px, 10vw, 58px); font-weight: 600; }
  .panel-copy p { max-width: 370px; margin-bottom: 24px; }
  .product-stage { right: 3vw; bottom: 4vh; width: 72vw; height: 50%; }
  .product-kiosk { width: 56%; }
  .product-white, .product-black { width: auto; height: 52%; }
  .support-panel { min-height: 680px; }
  .support-visual { top: 8%; right: 7vw; width: 45vw; opacity: .6; }
  .support-copy { top: 48%; z-index: 9; }
}

@media (max-width: 520px) {
  .gateway-panel { min-height: 650px; }
  .products-copy, .support-copy { top: 112px; }
  .panel-copy h1, .panel-copy h2 { font-size: 45px; }
  .panel-copy p { max-width: 315px; font-size: 15px; }
  .action-pill { min-width: 170px; }
  .product-stage { width: 78vw; right: 2vw; height: 45%; }
  .support-panel { min-height: 610px; }
  .support-copy { top: 46%; }
  .support-visual { top: 8%; right: 5vw; width: 58vw; }
}

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