: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;
  --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 {
  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.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: 92px;
}

.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 > *,
.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: flex;
  align-items: center;
  gap: 14px;
  color: #27364f;
  font-size: 14px;
  font-weight: 650;
}

.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 {
  padding: 60px 0 72px;
  background:
    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);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.feature-card {
  min-height: 190px;
  padding: 30px 24px 24px;
  text-align: center;
  background: rgba(255, 255, 255, 0.58);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.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: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  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);
}

.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: 84%;
  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;
}

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

.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;
}

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

.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: 18px;
    font-size: 13px;
  }

  .header-cta {
    min-width: 184px;
    padding-inline: 18px;
  }

  .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: column;
    justify-content: center;
  }

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

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

  .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: 80px;
  }

  .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);
  }

  .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: 74px;
  }

  .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;
  }

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

  .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-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;
  }
}
