:root {
  color-scheme: light;
  --blue: #0d63dc;
  --blue-strong: #0752bd;
  --blue-soft: #eaf3ff;
  --ink: #08152f;
  --ink-soft: #34435f;
  --muted: #667085;
  --line: #dce5f2;
  --panel: rgba(255, 255, 255, 0.86);
  --white: #ffffff;
  --ice: #f4f8fd;
  --navy: #061325;
  --navy-2: #0b1d35;
  --beige: #cda986;
  --steel: #eef3f8;
  --steel-2: #d7e1ec;
  --steel-line: rgba(120, 148, 180, 0.34);
  --metal-edge: rgba(255, 255, 255, 0.72);
  --chamfer: 18px;
  --shadow-soft: 0 24px 80px rgba(24, 52, 92, 0.14);
  --shadow-card: 0 14px 44px rgba(18, 49, 89, 0.12);
  --radius: 8px;
  --max: 1440px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  position: relative;
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 5% 10%, rgba(13, 99, 220, 0.08), transparent 28rem),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 42%, #eef5fc 100%);
  letter-spacing: 0;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    repeating-linear-gradient(90deg, rgba(8, 21, 47, 0.025) 0 1px, transparent 1px 76px),
    repeating-linear-gradient(0deg, rgba(8, 21, 47, 0.02) 0 1px, transparent 1px 76px),
    linear-gradient(135deg, transparent 0 48%, rgba(13, 99, 220, 0.035) 48% 49%, transparent 49% 100%);
  opacity: 0.65;
}

body > :not(script) {
  position: relative;
  z-index: 1;
}

body.menu-open {
  overflow: hidden;
}

img,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

.lucide {
  width: 1em;
  height: 1em;
  stroke-width: 2;
}

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

button {
  font: inherit;
}

.page-shell {
  width: min(calc(100% - 64px), var(--max));
  margin-inline: auto;
}

section,
footer {
  scroll-margin-top: 0;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 86px;
  padding: 16px clamp(24px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(219, 230, 244, 0.8);
  backdrop-filter: blur(18px);
  transition:
    min-height 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.site-header.is-scrolled {
  min-height: 72px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 50px rgba(13, 38, 71, 0.12);
}

.brand {
  width: 210px;
  height: 54px;
  display: flex;
  align-items: center;
}

.brand img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.site-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.7vw, 46px);
  font-size: 14px;
  font-weight: 650;
  color: #17233a;
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta,
.primary-button,
.ghost-button,
.pill-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
}

.header-cta .lucide,
.primary-button .lucide,
.text-link .lucide,
.pill-link .lucide {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
}

.header-cta,
.primary-button {
  color: #fff;
  background: linear-gradient(135deg, var(--blue) 0%, #0051ca 100%);
  box-shadow: 0 14px 30px rgba(13, 99, 220, 0.27);
}

.header-cta {
  min-width: 214px;
  padding: 0 24px;
}

.primary-button {
  padding: 0 22px;
}

.ghost-button,
.pill-link {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(124, 148, 181, 0.35);
}

.ghost-button {
  padding: 0 22px;
}

.nav-toggle {
  display: none;
  justify-self: end;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(112, 135, 166, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transform-origin: center;
  transition: transform 200ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  isolation: isolate;
}

.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: -3;
  background-image: url("./hero.png");
  background-position: center top;
  background-size: cover;
  transform: scale(1.012);
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(248, 252, 255, 0.96) 0%, rgba(248, 252, 255, 0.84) 25%, rgba(248, 252, 255, 0.28) 52%, rgba(248, 252, 255, 0.06) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.04) 18%, rgba(5, 15, 30, 0.14) 100%);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  z-index: -1;
  height: 190px;
  content: "";
  background: linear-gradient(180deg, transparent, rgba(248, 251, 255, 0.9) 68%, #fff 100%);
}

.hero-content {
  display: flex;
  align-items: center;
  min-height: 900px;
  padding-top: 120px;
}

.hero-copy {
  max-width: 610px;
  padding-bottom: 130px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.2;
  text-transform: uppercase;
}

.centered {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
  overflow-wrap: break-word;
}

h1,
h2 {
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(44px, 5.8vw, 86px);
  font-weight: 850;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(32px, 3.5vw, 56px);
  font-weight: 820;
}

h3 {
  color: var(--ink);
}

.hero-lead {
  max-width: 520px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
  font-weight: 520;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

[data-reveal],
[data-motion] {
  opacity: 0;
}

.product-section {
  position: relative;
  padding: 74px 0 78px;
  background:
    radial-gradient(circle at 50% 42%, rgba(13, 99, 220, 0.09), transparent 34rem),
    linear-gradient(180deg, #fff 0%, #f7fbff 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.86fr) minmax(430px, 1.34fr) minmax(210px, 0.54fr);
  align-items: center;
  gap: clamp(32px, 5vw, 84px);
}

.product-grid > *,
.shipping-grid > *,
.ceo-grid > *,
.resellers-layout > *,
.support-region-grid > *,
.footer-grid > *,
.product-points div,
.product-points strong,
.product-points small {
  min-width: 0;
}

.product-copy p:not(.eyebrow) {
  max-width: 450px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
}

.product-points {
  display: grid;
  gap: 18px;
  margin-bottom: 34px;
}

.product-points div {
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-areas:
    "icon title"
    "icon sub";
  align-items: center;
  column-gap: 15px;
}

.mini-icon {
  grid-area: icon;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--blue);
}

.mini-icon svg,
.feature-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-points strong {
  grid-area: title;
  color: var(--ink);
  font-size: 14px;
}

.product-points small {
  grid-area: sub;
  color: var(--muted);
  font-size: 13px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding-block: 10px;
  color: var(--blue-strong);
  font-size: 14px;
  font-weight: 850;
}

.product-stage {
  position: relative;
  min-height: 600px;
}

.product-stage::before {
  position: absolute;
  left: 50%;
  bottom: 46px;
  width: min(480px, 78%);
  height: 92px;
  content: "";
  background: radial-gradient(ellipse at center, rgba(18, 44, 77, 0.18), rgba(18, 44, 77, 0.04) 54%, transparent 70%);
  transform: translateX(-50%);
  filter: blur(12px);
}

.canvas-wrap {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 620px;
}

#chair-canvas {
  width: 100%;
  height: 100%;
}

.canvas-status {
  position: absolute;
  left: 50%;
  bottom: 28px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(205, 218, 233, 0.84);
  border-radius: 999px;
  transform: translateX(-50%);
  pointer-events: none;
}

.canvas-status.is-hidden {
  opacity: 0;
  transform: translateX(-50%) translateY(8px);
  transition:
    opacity 250ms ease,
    transform 250ms ease;
}

.color-panel {
  align-self: center;
  display: grid;
  gap: 24px;
  justify-items: start;
}

.color-panel p {
  margin: 0;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.color-panel ul {
  display: grid;
  gap: 22px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.color-panel li {
  display: grid;
  grid-template-columns: 24px 1fr;
  grid-template-areas:
    "swatch name"
    "swatch status";
  align-items: center;
  column-gap: 14px;
  color: #27364f;
  font-size: 14px;
  font-weight: 650;
}

.color-name {
  grid-area: name;
}

.color-panel li small {
  grid-area: status;
  color: var(--muted);
  font-size: 11px;
  font-weight: 760;
  text-transform: uppercase;
}

.swatch {
  grid-area: swatch;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(17, 32, 52, 0.12);
  border-radius: 50%;
  box-shadow: 0 8px 22px rgba(19, 38, 67, 0.1);
}

.swatch.beige {
  background: #caa886;
}

.swatch.black {
  background: #0b0d10;
}

.swatch.white {
  background: #f7f7f4;
}

.swatch.brown {
  background: #6e3f24;
}

.pill-link {
  min-height: 44px;
  padding: 0 18px;
  color: #2d3a51;
  font-size: 13px;
}

.features-section {
  position: relative;
  overflow: hidden;
  padding: 60px 0 72px;
  background:
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.035) 0 1px, transparent 1px 12px),
    linear-gradient(180deg, #ffffff 0%, #f6faff 100%);
  border-top: 1px solid rgba(218, 228, 241, 0.7);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(150, 170, 195, 0.55), rgba(220, 231, 244, 0.32));
  border: 1px solid rgba(214, 226, 240, 0.86);
  box-shadow: 0 18px 52px rgba(20, 50, 86, 0.08);
}

.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  padding: 30px 24px 24px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(235, 242, 249, 0.76)),
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.48) 0 1px, transparent 1px 10px);
  transition:
    transform 220ms ease,
    background 220ms ease,
    box-shadow 220ms ease;
}

.feature-card::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 42px;
  height: 42px;
  content: "";
  background: linear-gradient(135deg, transparent 49%, rgba(13, 99, 220, 0.16) 50%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.feature-card:hover {
  z-index: 1;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(229, 239, 249, 0.88)),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.04) 0 1px, transparent 1px 10px);
  box-shadow: 0 20px 46px rgba(18, 49, 89, 0.12);
  transform: translateY(-3px);
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: 0 auto 16px;
  color: var(--blue);
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 850;
}

.feature-card p {
  margin: 0;
  color: #536178;
  font-size: 13px;
  line-height: 1.55;
}

.shipping-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0;
  background: #ddeaf6;
  isolation: isolate;
}

.ship-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(90deg, rgba(247, 251, 255, 0.24), rgba(247, 251, 255, 0.72) 68%),
    url("./ship.png");
  background-position: center;
  background-size: cover;
}

.shipping-section::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(247, 251, 255, 0.2)),
    radial-gradient(circle at 76% 36%, rgba(255, 255, 255, 0.75), transparent 38rem);
}

.shipping-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  align-items: center;
  gap: clamp(36px, 7vw, 96px);
}

.shipping-copy {
  max-width: 520px;
}

.shipping-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(34px, 4.6vw, 60px);
}

.shipping-copy p:not(.eyebrow) {
  margin-bottom: 28px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.68;
}

.light-link {
  color: #064ca9;
}

.brazil-card {
  padding: clamp(28px, 4vw, 46px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(232, 240, 249, 0.78)),
    repeating-linear-gradient(135deg, rgba(16, 56, 105, 0.04) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.brazil-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 28px;
}

.brazil-grid article {
  text-align: center;
}

.brazil-grid .mini-icon {
  margin-inline: auto;
}

.brazil-grid h3 {
  min-height: 44px;
  margin: 12px 0 10px;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.25;
}

.brazil-grid p {
  margin: 0;
  color: #5c6778;
  font-size: 13px;
  line-height: 1.55;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 34px;
  padding-top: 22px;
  color: #3b465a;
  font-size: 13px;
  font-weight: 750;
  border-top: 1px solid rgba(198, 214, 234, 0.76);
}

.card-footer a {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  color: var(--blue-strong);
}

.resellers-section {
  position: relative;
  overflow: hidden;
  padding: 96px 0;
  background:
    linear-gradient(112deg, rgba(231, 239, 248, 0.62) 0 24%, transparent 24% 100%),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.035) 0 1px, transparent 1px 14px),
    linear-gradient(180deg, #ffffff 0%, #f4f8fd 100%);
  border-top: 1px solid rgba(216, 228, 242, 0.74);
  isolation: isolate;
}

.resellers-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(8, 21, 47, 0.04) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(8, 21, 47, 0.035) 0 1px, transparent 1px 100%);
  background-size: 86px 86px;
  mask-image: linear-gradient(90deg, transparent, #000 18%, #000 76%, transparent);
}

.resellers-section::after {
  position: absolute;
  top: 46px;
  right: -9vw;
  z-index: -1;
  width: min(620px, 48vw);
  height: 72%;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(202, 217, 234, 0.34)),
    repeating-linear-gradient(90deg, rgba(8, 21, 47, 0.045) 0 1px, transparent 1px 18px);
  clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  opacity: 0.58;
}

.resellers-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(460px, 1.12fr);
  align-items: start;
  gap: clamp(34px, 6vw, 82px);
}

.resellers-copy h2,
.support-head h2 {
  max-width: 720px;
  font-size: clamp(32px, 4vw, 58px);
}

.resellers-copy > p:not(.eyebrow),
.support-head p {
  max-width: 660px;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.reseller-summary {
  display: grid;
  gap: 16px;
  margin: 30px 0 18px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.84), rgba(229, 237, 247, 0.72)),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.045) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(202, 216, 234, 0.92);
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: 0 18px 48px rgba(18, 49, 89, 0.09);
}

.reseller-summary > span {
  color: #1d2d49;
  font-size: clamp(20px, 2.2vw, 32px);
  font-weight: 860;
  line-height: 1.15;
}

.reseller-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reseller-tabs button {
  min-height: 44px;
  padding: 0 20px;
  color: #4d5c73;
  font-weight: 850;
  background: linear-gradient(145deg, #f8fbff, #dbe4ee);
  border: 1px solid rgba(159, 178, 202, 0.58);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.reseller-tabs button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0051ca);
  box-shadow: 0 14px 28px rgba(13, 99, 220, 0.25);
}

.reseller-tabs button:disabled {
  opacity: 0.72;
}

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

.reseller-card {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  padding: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(236, 244, 252, 0.82)),
    repeating-linear-gradient(135deg, rgba(8, 21, 47, 0.03) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(195, 213, 234, 0.94);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
  box-shadow: var(--shadow-card);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.reseller-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 92px;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(13, 99, 220, 0));
}

.reseller-card:hover {
  border-color: rgba(13, 99, 220, 0.26);
  box-shadow: 0 24px 60px rgba(18, 49, 89, 0.16);
  transform: translateY(-3px);
}

.reseller-card h3 {
  margin: 0;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.12;
}

.reseller-type,
.reseller-meta,
.reseller-address {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.reseller-type {
  color: #243650;
  font-weight: 780;
}

.reseller-address strong {
  color: #243650;
}

.reseller-line {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  color: #13243e;
  font-size: 17px;
  font-weight: 800;
}

.reseller-line .mini-icon {
  width: 30px;
  height: 30px;
}

.inline-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 19px;
  height: 19px;
}

.inline-icon svg {
  width: 100%;
  height: 100%;
}

.website-line {
  color: var(--blue-strong);
}

.map-card {
  position: sticky;
  top: 106px;
  overflow: hidden;
  padding: 14px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(225, 235, 246, 0.82)),
    repeating-linear-gradient(135deg, rgba(15, 45, 88, 0.04) 0 1px, transparent 1px 10px);
  border: 1px solid rgba(191, 211, 234, 0.94);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - var(--chamfer)) 0, 100% var(--chamfer), 100% 100%, var(--chamfer) 100%, 0 calc(100% - var(--chamfer)));
  box-shadow: var(--shadow-soft);
}

.map-frame {
  position: relative;
  overflow: hidden;
  height: clamp(340px, 36vw, 510px);
  background:
    linear-gradient(90deg, rgba(109, 137, 170, 0.14) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(109, 137, 170, 0.12) 0 1px, transparent 1px 100%),
    linear-gradient(145deg, #edf3f9, #d8e2ec);
  background-size:
    auto,
    82px 82px,
    82px 82px,
    auto;
  border: 1px solid rgba(152, 174, 200, 0.38);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.map-frame::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(8, 21, 47, 0.08));
  pointer-events: none;
}

.map-frame iframe {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border: 0;
  opacity: 0.94;
}

.map-details {
  display: grid;
  gap: 8px 16px;
  padding: 17px 4px 2px;
}

.map-details strong {
  color: var(--ink);
  font-size: 15px;
}

.map-details span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.map-details a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  background: linear-gradient(135deg, var(--blue), #0455c8);
  border: 1px solid rgba(255, 255, 255, 0.42);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  box-shadow: 0 14px 32px rgba(13, 99, 220, 0.24);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.map-details a:hover {
  box-shadow: 0 18px 40px rgba(13, 99, 220, 0.3);
  transform: translateY(-2px);
}

.map-details a .inline-icon {
  width: 16px;
  height: 16px;
  color: currentColor;
}

.support-section {
  position: relative;
  overflow: hidden;
  padding: 92px 0 100px;
  color: var(--ink);
  background:
    linear-gradient(112deg, rgba(231, 239, 248, 0.72) 0 28%, transparent 28% 100%),
    linear-gradient(180deg, #f7fbff 0%, #eef5fb 100%);
  border-top: 1px solid rgba(211, 224, 239, 0.92);
  isolation: isolate;
}

.support-section::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(90deg, rgba(93, 121, 154, 0.055) 0 1px, transparent 1px 100%),
    linear-gradient(0deg, rgba(93, 121, 154, 0.045) 0 1px, transparent 1px 100%);
  background-size: 112px 112px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 14%, #000 84%, transparent 100%);
}

.support-section::after {
  position: absolute;
  right: -18vw;
  top: 44px;
  z-index: -1;
  width: min(720px, 56vw);
  height: 62%;
  content: "";
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(195, 211, 229, 0.38)),
    repeating-linear-gradient(90deg, rgba(8, 21, 47, 0.035) 0 1px, transparent 1px 18px);
  clip-path: polygon(16% 0, 100% 0, 88% 100%, 0 100%);
  opacity: 0.62;
}

.support-head {
  display: grid;
  justify-items: center;
  margin: 0 auto 34px;
  text-align: center;
}

.support-section .eyebrow {
  color: var(--blue);
}

.support-head h2 {
  color: var(--ink);
}

.support-head p {
  color: var(--ink-soft);
}

.support-operations {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.support-operations::before {
  position: absolute;
  top: 39px;
  right: 8%;
  left: 8%;
  height: 1px;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(13, 99, 220, 0.34), transparent);
}

.support-operation {
  position: relative;
  overflow: hidden;
  padding: 24px 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(234, 242, 249, 0.86)),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.025) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(193, 211, 232, 0.94);
  border-radius: 8px;
  box-shadow: 0 16px 40px rgba(18, 49, 89, 0.09);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.support-operation::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, var(--blue), rgba(13, 99, 220, 0));
}

.support-operation:hover,
.support-stat:hover,
.support-region-card:hover {
  border-color: rgba(13, 99, 220, 0.28);
  transform: translateY(-3px);
}

.support-operation span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), #0752bd);
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(13, 99, 220, 0.2);
}

.support-operation strong {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.22;
}

.support-operation p {
  margin: 0;
  color: #536178;
  font-size: 13px;
  line-height: 1.55;
}

.support-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.support-stat {
  position: relative;
  overflow: hidden;
  padding: 24px 24px 24px 26px;
  text-align: left;
  background:
    linear-gradient(145deg, #fff, #edf4fb),
    linear-gradient(90deg, rgba(13, 99, 220, 0.08), transparent);
  border: 1px solid rgba(193, 211, 232, 0.94);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 49, 89, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease;
}

.support-stat::after {
  position: absolute;
  top: 0;
  right: 0;
  width: 52px;
  height: 52px;
  content: "";
  background: linear-gradient(135deg, rgba(13, 99, 220, 0.08), rgba(13, 99, 220, 0.01));
  clip-path: polygon(100% 0, 0 0, 100% 100%);
}

.support-stat strong {
  display: block;
  color: var(--blue);
  font-size: clamp(34px, 4vw, 50px);
  line-height: 1;
}

.support-stat span {
  display: block;
  margin-top: 10px;
  color: #33445e;
  font-size: 14px;
  font-weight: 820;
}

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

.support-region-card {
  position: relative;
  overflow: hidden;
  grid-column: span 2;
  padding: 22px 20px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 251, 0.9)),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.018) 0 1px, transparent 1px 14px);
  border: 1px solid rgba(193, 211, 232, 0.88);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(18, 49, 89, 0.075);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.support-region-card:nth-child(4),
.support-region-card:nth-child(5) {
  grid-column: span 3;
}

.support-region-card h3 {
  margin: 0 0 16px;
  color: var(--ink);
  font-size: 17px;
  font-weight: 860;
}

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

.support-state {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: start;
  padding: 10px 0;
  background: transparent;
  border-top: 1px solid rgba(210, 224, 241, 0.82);
}

.support-state:first-child {
  border-top: 0;
}

.support-state > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--blue-strong);
  font-size: 12px;
  font-weight: 900;
  background: #eef6ff;
  border: 1px solid rgba(149, 191, 242, 0.58);
  border-radius: 50%;
}

.support-state p {
  display: grid;
  gap: 3px;
  margin: 0;
}

.support-state strong {
  color: #1d2d49;
  font-size: 13px;
  line-height: 1.28;
}

.support-state small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.42;
}

.ceo-section {
  padding: 0;
  background: linear-gradient(180deg, #ffffff 0%, #eef6fd 100%);
}

.ceo-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
  gap: 0;
  min-height: 430px;
}

.ceo-image {
  overflow: hidden;
  min-height: 430px;
}

.ceo-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 44% center;
}

.ceo-copy {
  padding: clamp(42px, 5vw, 72px) clamp(34px, 4vw, 64px);
  background: rgba(255, 255, 255, 0.76);
}

.ceo-copy h2 {
  font-size: clamp(30px, 3vw, 46px);
}

.ceo-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.75;
}

.signature {
  display: inline-block;
  margin: 6px 0 32px;
  color: #1b2c47;
  font-size: 14px;
  font-weight: 750;
}

.stats-list {
  display: grid;
  gap: 18px;
}

.stats-list div {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 14px;
  align-items: baseline;
}

.stats-list strong {
  color: var(--ink);
  font-size: 16px;
}

.stats-list span {
  color: var(--muted);
  font-size: 13px;
}

.video-section {
  padding: 88px 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(13, 99, 220, 0.14), transparent 34rem),
    linear-gradient(180deg, #eef6fd 0%, #ffffff 100%);
}

.video-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(36px, 6vw, 88px);
}

.video-copy {
  max-width: 520px;
}

.video-copy h2 {
  font-size: clamp(32px, 3.8vw, 56px);
}

.video-copy p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.72;
}

.custom-player {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 50% 20%, rgba(56, 143, 255, 0.14), transparent 30rem),
    #071321;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 28px 72px rgba(6, 19, 37, 0.28);
}

.custom-player video {
  width: 100%;
  aspect-ratio: 169 / 72;
  object-fit: cover;
  background: #071321;
}

.player-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 0;
  color: #fff;
  background: linear-gradient(180deg, rgba(3, 10, 20, 0.08), rgba(3, 10, 20, 0.24));
  border: 0;
  cursor: pointer;
  transition: opacity 180ms ease;
}

.custom-player.is-playing .player-overlay {
  opacity: 0;
  pointer-events: none;
}

.player-overlay-icon {
  display: grid;
  place-items: center;
  width: clamp(64px, 8vw, 92px);
  height: clamp(64px, 8vw, 92px);
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0051ca);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
  box-shadow: 0 24px 54px rgba(13, 99, 220, 0.42);
}

.player-overlay-icon .lucide {
  width: 32px;
  height: 32px;
  margin-left: 3px;
  fill: currentColor;
  stroke-width: 1.6;
}

.player-controls {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: 44px auto 1fr auto 44px 44px;
  align-items: center;
  gap: 12px;
  padding: 34px 24px 20px;
  background: linear-gradient(180deg, transparent 0%, rgba(4, 13, 26, 0.88) 42%, rgba(4, 13, 26, 0.96) 100%);
}

.player-button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  cursor: pointer;
}

.player-button .lucide {
  width: 19px;
  height: 19px;
}

.player-time {
  min-width: 44px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-variant-numeric: tabular-nums;
  font-weight: 800;
}

.player-progress {
  --progress: 0%;
  width: 100%;
  height: 44px;
  margin: 0;
  appearance: none;
  background: linear-gradient(90deg, #56a6ff var(--progress), rgba(255, 255, 255, 0.24) var(--progress)) center / 100% 6px no-repeat;
  border-radius: 999px;
  cursor: pointer;
}

.player-progress::-webkit-slider-thumb {
  width: 16px;
  height: 16px;
  appearance: none;
  background: #fff;
  border: 3px solid #56a6ff;
  border-radius: 50%;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);
}

.player-progress::-moz-range-thumb {
  width: 16px;
  height: 16px;
  background: #fff;
  border: 3px solid #56a6ff;
  border-radius: 50%;
}

.custom-player .icon-pause,
.custom-player.is-playing .icon-play,
.custom-player .icon-muted,
.custom-player.is-muted .icon-volume {
  display: none;
}

.custom-player.is-playing .icon-pause,
.custom-player.is-muted .icon-muted {
  display: block;
}

.chat-root {
  position: fixed;
  inset: 0;
  z-index: 80;
  pointer-events: none;
}

.chat-launcher,
.chat-widget {
  pointer-events: auto;
}

.chat-launcher {
  position: absolute;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(18px, 2.2vw, 32px);
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  transition:
    opacity 180ms ease,
    filter 180ms ease;
}

.chat-launcher:hover,
.chat-launcher:focus-visible {
  filter: saturate(1.08) brightness(1.03);
}

.chat-launcher img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(4, 24, 55, 0.22));
}

.chat-root.is-open .chat-launcher {
  opacity: 0;
  pointer-events: none;
}

.chat-widget {
  position: absolute;
  right: clamp(18px, 2.2vw, 32px);
  bottom: clamp(110px, 8.6vw, 122px);
  width: min(430px, calc(100vw - 32px));
  height: min(690px, calc(100svh - 142px));
  min-height: min(500px, calc(100svh - 142px));
  color: var(--ink);
}

.chat-widget[hidden] {
  display: none;
}

.chat-shell {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  height: 100%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(245, 249, 254, 0.98)),
    radial-gradient(circle at 74% 0%, rgba(13, 99, 220, 0.14), transparent 20rem);
  border: 1px solid rgba(205, 218, 236, 0.92);
  border-radius: var(--radius);
  box-shadow:
    0 30px 80px rgba(8, 27, 56, 0.22),
    0 12px 32px rgba(13, 99, 220, 0.12);
  backdrop-filter: blur(20px);
}

.chat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px;
  color: #fff;
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.24), transparent 20rem),
    linear-gradient(135deg, #07264e 0%, #075ed1 100%);
}

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

.chat-avatar {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 48px;
  height: 48px;
  background: transparent;
  border-radius: 50%;
}

.chat-avatar img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 10px 16px rgba(0, 22, 62, 0.22));
}

.chat-brand p {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 900;
}

.chat-brand span {
  display: block;
  overflow: hidden;
  max-width: 260px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.chat-close,
.chat-send {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 8px;
  cursor: pointer;
}

.chat-close {
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.chat-close .lucide,
.chat-send .lucide {
  width: 19px;
  height: 19px;
}

.chat-messages {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  min-height: 0;
  padding: 18px;
  scroll-behavior: smooth;
}

.chat-message {
  max-width: 88%;
  padding: 12px 15px;
  font-size: 14px;
  line-height: 1.5;
  box-shadow: 0 10px 26px rgba(16, 43, 78, 0.08);
}

.chat-message p {
  margin: 0;
  white-space: pre-wrap;
}

.chat-message.assistant {
  align-self: flex-start;
  color: #1a2b46;
  background: #fff;
  border: 1px solid rgba(218, 228, 242, 0.96);
  border-radius: 0 14px 14px 14px;
}

.chat-message.user {
  align-self: flex-end;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #064db4);
  border-radius: 14px 0 14px 14px;
}

.chat-info-card {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  background:
    linear-gradient(145deg, #f9fcff, #edf5fc),
    repeating-linear-gradient(135deg, rgba(13, 99, 220, 0.025) 0 1px, transparent 1px 12px);
  border: 1px solid rgba(193, 211, 232, 0.94);
  border-radius: 8px;
}

.chat-info-card-head {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 10px;
  align-items: center;
}

.chat-info-card-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0752bd);
  border-radius: 8px;
  line-height: 0;
  box-shadow: 0 12px 22px rgba(13, 99, 220, 0.18);
}

.chat-info-card-icon .lucide {
  width: 20px;
  height: 20px;
  color: #fff;
  stroke: #fff;
  stroke-width: 2.2;
}

.chat-info-actions .lucide {
  width: 17px;
  height: 17px;
}

.chat-info-card-head strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}

.chat-info-card-head > div > span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 760;
}

.chat-info-list {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 7px 10px;
  margin: 0;
}

.chat-info-list dt {
  color: #6a7486;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.chat-info-list dd {
  min-width: 0;
  margin: 0;
  color: #263650;
  font-size: 12px;
  line-height: 1.35;
}

.chat-info-actions {
  display: grid;
  gap: 8px;
}

.chat-info-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, var(--blue), #0752bd);
  border-radius: 8px;
  box-shadow: 0 14px 28px rgba(13, 99, 220, 0.18);
}

.chat-info-actions a + a {
  color: var(--blue-strong);
  background: #fff;
  border: 1px solid rgba(149, 191, 242, 0.58);
  box-shadow: none;
}

.chat-message.is-loading {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 62px;
  min-height: 42px;
}

.chat-message.is-loading span {
  width: 7px;
  height: 7px;
  background: #4f8ee9;
  border-radius: 50%;
  animation: chat-dot 900ms ease-in-out infinite;
}

.chat-message.is-loading span:nth-child(2) {
  animation-delay: 120ms;
}

.chat-message.is-loading span:nth-child(3) {
  animation-delay: 240ms;
}

.chat-suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 16px 14px;
}

.chat-suggestions button {
  min-height: 38px;
  padding: 0 12px;
  color: #0a4fb9;
  font-size: 12px;
  font-weight: 850;
  background: #eef6ff;
  border: 1px solid rgba(151, 190, 240, 0.6);
  border-radius: 999px;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}

.chat-suggestions button:hover,
.chat-suggestions button:focus-visible {
  transform: translateY(-1px);
}

.chat-suggestions button.is-active {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0752bd);
  border-color: rgba(13, 99, 220, 0.18);
}

.chat-suggestions button:disabled,
.chat-send:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.chat-guided-note {
  padding: 0 16px 16px;
  color: #6b778a;
  font-size: 11px;
  font-weight: 760;
  text-align: center;
}

.chat-form {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.82);
  border-top: 1px solid rgba(216, 228, 242, 0.94);
}

.chat-form [data-chat-input] {
  width: 100%;
  min-height: 48px;
  padding: 13px 14px;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  line-height: 1.42;
  background: #fff;
  border: 1px solid rgba(194, 209, 228, 0.96);
  border-radius: 8px;
  outline: 0;
}

.chat-form [data-chat-input]:focus {
  border-color: rgba(13, 99, 220, 0.72);
  box-shadow: 0 0 0 4px rgba(13, 99, 220, 0.12);
}

.chat-send {
  align-self: end;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), #0051ca);
  border: 0;
  box-shadow: 0 14px 26px rgba(13, 99, 220, 0.26);
}

@keyframes chat-dot {
  0%,
  80%,
  100% {
    transform: translateY(0);
    opacity: 0.5;
  }

  40% {
    transform: translateY(-5px);
    opacity: 1;
  }
}

.promo-panel {
  display: grid;
  align-content: center;
  gap: 18px;
  padding: clamp(32px, 4vw, 52px);
  background:
    linear-gradient(180deg, rgba(7, 20, 38, 0.9), rgba(6, 19, 37, 0.96)),
    radial-gradient(circle at 78% 10%, rgba(13, 99, 220, 0.22), transparent 20rem);
}

.promo-panel video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #071321;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  box-shadow: 0 28px 58px rgba(0, 0, 0, 0.32);
}

.promo-caption {
  display: grid;
  gap: 8px;
}

.promo-caption span {
  color: #78b7ff;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.promo-caption strong {
  color: #fff;
  font-size: 20px;
  line-height: 1.3;
}

.site-footer {
  color: #dbe7f5;
  background:
    radial-gradient(circle at 86% 42%, rgba(13, 99, 220, 0.18), transparent 25rem),
    linear-gradient(180deg, var(--navy-2), var(--navy));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.55fr 0.6fr 0.72fr 0.94fr 1.12fr;
  gap: clamp(28px, 4vw, 56px);
  padding: 58px 0 44px;
}

.footer-brand img {
  width: 214px;
  height: 78px;
  object-fit: cover;
  object-position: center;
  margin-bottom: 14px;
  filter: drop-shadow(0 8px 22px rgba(0, 0, 0, 0.28));
}

.footer-brand p,
.footer-column p,
.footer-global p {
  color: #b2c2d6;
  font-size: 14px;
  line-height: 1.7;
}

.socials {
  display: flex;
  gap: 18px;
  margin-top: 22px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.footer-column,
.footer-global {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-column h2,
.footer-global h2 {
  margin: 0 0 10px;
  color: #fff;
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.footer-column a,
.footer-column p {
  margin: 0;
  color: #b8c7d9;
  font-size: 14px;
}

.footer-column a,
.footer-bottom a {
  display: flex;
  align-items: center;
  min-height: 44px;
}

.footer-global img {
  width: 100%;
  margin-top: 12px;
  opacity: 0.42;
  filter: grayscale(1) brightness(1.7);
}

.footer-bottom {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: 70px;
  color: #9fb0c5;
  font-size: 13px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom span {
  flex: 1;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 190px auto auto;
    gap: 16px;
  }

  .brand {
    width: 180px;
  }

  .site-nav {
    gap: 14px;
    font-size: 12px;
  }

  .header-cta {
    min-width: 176px;
    padding-inline: 16px;
  }

  .hero,
  .hero-content {
    min-height: 780px;
  }

  .product-grid {
    grid-template-columns: 1fr 1.15fr;
  }

  .color-panel {
    grid-column: 1 / -1;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: 100%;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--line);
    border-radius: var(--radius);
  }

  .color-panel ul {
    grid-auto-flow: row;
    grid-template-columns: repeat(4, minmax(120px, 1fr));
    justify-self: stretch;
  }

  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shipping-grid,
  .ceo-grid,
  .video-layout,
  .resellers-layout {
    grid-template-columns: 1fr;
  }

  .map-card {
    position: relative;
    top: auto;
  }

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

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

  .support-region-card,
  .support-region-card:nth-child(4),
  .support-region-card:nth-child(5) {
    grid-column: auto;
  }

  .ceo-grid {
    width: 100%;
  }

  .ceo-image {
    max-height: 460px;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.8fr 0.8fr;
  }

  .footer-global {
    grid-column: span 2;
  }
}

@media (max-width: 880px) {
  html {
    scroll-padding-top: 80px;
  }

  section,
  footer {
    scroll-margin-top: 0;
  }

  .page-shell {
    width: min(calc(100% - 40px), var(--max));
  }

  .site-header {
    grid-template-columns: 170px 1fr auto;
    min-height: 76px;
    padding: 12px 20px;
  }

  .nav-toggle {
    display: block;
    grid-column: 3;
    grid-row: 1;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    min-width: 0;
    min-height: 44px;
    padding: 0 16px;
    font-size: 12px;
  }

  .site-nav {
    position: fixed;
    grid-column: 1 / -1;
    grid-row: 1;
    top: 76px;
    right: 16px;
    left: 16px;
    justify-self: stretch;
    display: grid;
    gap: 0;
    width: auto;
    padding: 12px;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid rgba(212, 224, 239, 0.96);
    border-radius: var(--radius);
    box-shadow: var(--shadow-card);
    transform: translateY(-14px);
    opacity: 0;
    pointer-events: none;
    transition:
      transform 180ms ease,
      opacity 180ms ease;
  }

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

  .site-nav a {
    padding: 15px 10px;
    border-bottom: 1px solid #eef3f8;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-bg {
    background-position: 58% top;
  }

  .hero-shade {
    background:
      linear-gradient(180deg, rgba(248, 252, 255, 0.97) 0%, rgba(248, 252, 255, 0.8) 42%, rgba(5, 15, 30, 0.38) 100%),
      linear-gradient(90deg, rgba(248, 252, 255, 0.94), rgba(248, 252, 255, 0.24));
  }

  .hero-content {
    align-items: flex-start;
    min-height: 760px;
    padding-top: 122px;
  }

  .hero-copy {
    max-width: 620px;
    padding-bottom: 320px;
  }

  h1 {
    font-size: clamp(38px, 10vw, 66px);
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-stage {
    min-height: clamp(390px, 62vw, 500px);
    order: -1;
  }

  .canvas-wrap {
    height: clamp(390px, 62vw, 500px);
  }

  .color-panel {
    grid-template-columns: 1fr;
  }

  .color-panel ul {
    grid-auto-flow: row;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    justify-self: stretch;
  }

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

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

  .support-region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .support-operations::before {
    display: none;
  }

  .card-footer {
    display: grid;
  }

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

  .footer-brand,
  .footer-global,
  .footer-contact {
    grid-column: span 2;
  }

  .footer-bottom {
    display: grid;
    gap: 12px;
    padding-block: 20px;
  }
}

@media (max-width: 560px) {
  html {
    scroll-padding-top: 74px;
  }

  section,
  footer {
    scroll-margin-top: 0;
  }

  .page-shell {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    grid-template-columns: 132px 1fr 44px;
  }

  .brand {
    width: 132px;
    height: 42px;
  }

  .header-cta {
    width: 44px;
    height: 44px;
    padding: 0;
    font-size: 0;
  }

  .header-cta span {
    font-size: 16px;
  }

  .hero-content {
    min-height: min(820px, 100svh);
    padding-top: 108px;
  }

  .hero-copy {
    padding-bottom: clamp(190px, 31svh, 270px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.62;
  }

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

  .primary-button,
  .ghost-button {
    width: 100%;
  }

  .product-section {
    padding: 28px 0 52px;
  }

  .product-stage {
    min-height: clamp(330px, 92vw, 390px);
  }

  .canvas-wrap {
    height: clamp(330px, 92vw, 390px);
  }

  .product-stage::before {
    bottom: 20px;
    width: min(320px, 86%);
    height: 64px;
    filter: blur(10px);
  }

  .product-copy p:not(.eyebrow),
  .shipping-copy p:not(.eyebrow),
  .ceo-copy p:not(.eyebrow) {
    font-size: 15px;
  }

  .features-section {
    padding: 42px 0 48px;
  }

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

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: center;
    column-gap: 14px;
    min-height: 0;
    padding: 18px 16px;
    text-align: left;
  }

  .feature-icon {
    grid-area: icon;
    width: 38px;
    height: 38px;
    margin: 0;
  }

  .feature-card h3 {
    grid-area: title;
    margin-bottom: 4px;
    font-size: 14px;
  }

  .feature-card p {
    grid-area: text;
    font-size: 12.5px;
    line-height: 1.42;
  }

  .shipping-section {
    padding: 54px 0;
  }

  .resellers-section,
  .support-section {
    padding: 54px 0;
  }

  .shipping-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .resellers-copy h2,
  .support-head h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .resellers-copy > p:not(.eyebrow),
  .support-head p {
    font-size: 15px;
    line-height: 1.62;
  }

  .reseller-summary > span {
    font-size: clamp(24px, 8vw, 32px);
  }

  .reseller-tabs {
    gap: 8px;
  }

  .reseller-tabs button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 13px;
  }

  .reseller-card {
    padding: 20px 16px;
  }

  .reseller-line {
    font-size: 15px;
  }

  .map-frame {
    height: 330px;
  }

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

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

  .support-region-card {
    padding: 18px 16px;
  }

  .support-operation {
    padding: 20px 16px;
  }

  .brazil-card {
    padding: 22px 18px;
  }

  .brazil-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 22px;
  }

  .brazil-grid article {
    display: grid;
    grid-template-columns: 42px 1fr;
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: start;
    column-gap: 12px;
    text-align: left;
  }

  .brazil-grid .mini-icon {
    grid-area: icon;
    margin-inline: 0;
  }

  .brazil-grid h3 {
    grid-area: title;
    min-height: 0;
    margin: 0 0 5px;
    font-size: 14px;
  }

  .brazil-grid p {
    grid-area: text;
    font-size: 12.5px;
  }

  .card-footer {
    gap: 10px;
    margin-top: 22px;
    padding-top: 18px;
  }

  .ceo-image {
    min-height: 300px;
  }

  .ceo-copy {
    padding: 36px 22px;
  }

  .stats-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .video-section {
    padding: 56px 0;
  }

  .video-copy h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .video-copy p:not(.eyebrow) {
    font-size: 15px;
    line-height: 1.62;
  }

  .custom-player video {
    aspect-ratio: 16 / 10;
  }

  .player-controls {
    grid-template-columns: 44px auto 1fr 44px;
    gap: 8px;
    padding: 46px 12px 12px;
  }

  .player-controls .player-time[data-video-duration],
  .player-controls [data-video-fullscreen] {
    display: none;
  }

  .player-button {
    width: 44px;
    height: 44px;
  }

  .footer-grid {
    gap: 22px;
    padding: 42px 0 28px;
  }

  .footer-brand img {
    width: 188px;
    height: 68px;
  }

  .footer-column,
  .footer-global {
    gap: 2px;
  }

  .footer-column h2,
  .footer-global h2 {
    margin-top: 4px;
    margin-bottom: 4px;
  }

  .footer-bottom {
    gap: 4px;
  }

  .footer-brand,
  .footer-global,
  .footer-contact {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  body.chat-open {
    overflow: hidden;
  }

  .chat-launcher {
    right: 16px;
    bottom: 16px;
    width: 66px;
    height: 66px;
  }

  .chat-launcher img {
    width: 66px;
    height: 66px;
  }

  .chat-widget {
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    min-height: 0;
  }

  .chat-shell {
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .chat-header {
    padding: max(14px, env(safe-area-inset-top)) 14px 14px;
  }

  .chat-avatar {
    width: 44px;
    height: 44px;
  }

  .chat-avatar img {
    width: 44px;
    height: 44px;
  }

  .chat-brand p {
    font-size: 14px;
  }

  .chat-brand span {
    max-width: min(220px, calc(100vw - 142px));
  }

  .chat-messages {
    padding: 16px 14px;
  }

  .chat-message {
    max-width: 90%;
    font-size: 13.5px;
  }

  .chat-message.assistant {
    max-width: 94%;
  }

  .chat-info-list {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .chat-info-list dd {
    margin-bottom: 6px;
  }

  .chat-suggestions {
    display: grid;
    grid-template-columns: 1fr;
    padding: 0 14px 12px;
  }

  .chat-suggestions button {
    justify-content: center;
    min-height: 42px;
    width: 100%;
  }

  .chat-form {
    grid-template-columns: 1fr 48px;
    padding: 12px 14px max(12px, env(safe-area-inset-bottom));
  }

  .chat-form [data-chat-input] {
    min-height: 48px;
    font-size: 16px;
  }
}

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