﻿:root {
  color-scheme: light;
  --navy: #041a44;
  --blue: #0677f9;
  --cyan: #19d0ff;
  --ink: #08214d;
  --glass: rgba(255, 255, 255, 0.12);
  --line: rgba(7, 71, 155, 0.16);
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  overflow: hidden;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f7fbff;
  color: var(--ink);
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
  display: flex;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 64px) 0;
}

.brand {
  display: inline-flex;
  align-items: flex-start;
  width: clamp(300px, 26vw, 430px);
  height: clamp(118px, 10.5vw, 166px);
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  filter: none;
}

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

.top-nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 28px);
  padding: 10px 12px;
  border: 1px solid rgba(7, 71, 155, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 52px rgba(14, 72, 145, 0.12);
  color: #06245a;
  backdrop-filter: blur(18px);
}

.top-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0;
  white-space: nowrap;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  background: rgba(6, 119, 249, 0.1);
  outline: none;
  transform: translateY(-1px);
}

.carousel {
  position: relative;
  width: 100vw;
  height: 100vh;
  min-height: 620px;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 44%, rgba(25, 208, 255, 0.28), transparent 34%),
    radial-gradient(circle at 18% 82%, rgba(6, 119, 249, 0.12), transparent 28%),
    linear-gradient(135deg, #ffffff 0%, #f7fbff 45%, #edf7ff 100%);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition: opacity 900ms ease, transform 1400ms ease, visibility 900ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  filter: brightness(1.42) saturate(0.82) contrast(0.76);
  mix-blend-mode: multiply;
}

.shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.78) 42%, rgba(255, 255, 255, 0.44) 74%, rgba(255, 255, 255, 0.7) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(240, 249, 255, 0.18) 46%, rgba(255, 255, 255, 0.9) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  width: min(720px, calc(100vw - 36px));
  margin-left: clamp(18px, 7vw, 104px);
  padding-top: 110px;
}


.suite-label {
  display: none;
}
.product-logo {
  display: block;
  width: min(720px, 78vw);
  height: clamp(170px, 20vw, 270px);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  filter: drop-shadow(0 24px 46px rgba(8, 33, 77, 0.16));
  object-fit: cover;
  object-position: center;
}

.slide-content p {
  max-width: 640px;
  margin: 26px 0 30px;
  color: #08214d;
  font-size: clamp(1.4rem, 3vw, 3.25rem);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
  text-shadow: 0 12px 34px rgba(255, 255, 255, 0.86);
}

.product-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 22px 46px rgba(0, 119, 255, 0.3);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-link:hover,
.product-link:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 26px 58px rgba(0, 119, 255, 0.42);
}

.controls {
  position: fixed;
  right: clamp(18px, 4vw, 64px);
  bottom: clamp(22px, 5vw, 54px);
  z-index: 22;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dot {
  width: 46px;
  height: 6px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(6, 119, 249, 0.24);
  cursor: pointer;
  transition: width 220ms ease, background 220ms ease;
}

.dot.is-active {
  width: 74px;
  background: #0677f9;
}

.dot:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 5px;
}

@media (max-width: 760px) {
  body {
    overflow: auto;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    padding: 12px 14px 0;
  }

  .brand {
    width: min(270px, calc(100vw - 28px));
    height: 108px;
    margin: 0;
  }

  .top-nav {
    width: 100%;
    max-width: 100%;
    gap: 2px;
    overflow-x: auto;
    border-radius: 8px;
  }

  .top-nav::-webkit-scrollbar {
    display: none;
  }

  .top-nav a {
    min-height: 31px;
    padding: 0 9px;
    font-size: 0.74rem;
  }

  .carousel {
    min-height: 100svh;
  }

  .slide-bg {
    opacity: 0.46;
    filter: brightness(1.5) saturate(0.78) contrast(0.72);
  }

  .shade {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 255, 255, 0.38) 42%, rgba(255, 255, 255, 0.94) 100%),
      linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.4));
  }

  .slide-content {
    align-self: end;
    width: calc(100vw - 28px);
    margin: 0 14px 86px;
    padding-top: 190px;
  }

  .product-logo {
    width: min(100%, 480px);
    height: 170px;
  }

  .slide-content p {
    margin: 18px 0 20px;
    font-size: clamp(1.55rem, 9vw, 2.65rem);
    line-height: 1.02;
  }

  .product-link {
    width: 100%;
  }

  .controls {
    right: 14px;
    bottom: 24px;
    left: 14px;
    justify-content: center;
  }

  .dot {
    width: 36px;
  }

  .dot.is-active {
    width: 56px;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}










