:root {
  --blue-soft: #809ba5;
  --blue-deep: #284972;
  --yellow: #ffd200;
  --black: #111111;
  --white: #ffffff;
  --slate: #eef3f5;
  --text: #1b2128;
  --muted: #5c6772;
  --line: rgba(40, 73, 114, 0.12);
  --shadow: 0 22px 60px rgba(15, 27, 41, 0.16);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Barlow, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(128, 155, 165, 0.22), transparent 24%),
    linear-gradient(180deg, #f7fafb 0%, #ffffff 32%, #edf3f6 100%);
}

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

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(40, 73, 114, 0.08);
}

.topbar-inner {
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 104px;
  padding: 10px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

.brand img {
  display: block;
}

.brand-logo-full {
  width: clamp(260px, 32vw, 420px);
  height: auto;
}

.ticker {
  position: sticky;
  top: 92px;
  z-index: 25;
  overflow: hidden;
  background: linear-gradient(90deg, #f2c400 0%, #ffd200 45%, #f2c400 100%);
  border-top: 1px solid rgba(17, 17, 17, 0.08);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow: 0 10px 24px rgba(255, 210, 0, 0.22);
}

.ticker-track {
  display: inline-flex;
  width: max-content;
  animation: ticker-loop 28s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 34px;
  font-family: Teko, Arial, sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--blue-deep);
}

.ticker span::after {
  content: "•";
  margin-left: 24px;
  color: rgba(40, 73, 114, 0.6);
}

.ticker-group span:last-child::after {
  content: "•";
}

@keyframes ticker-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
}

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

.btn-primary {
  color: var(--black);
  background: var(--yellow);
  border: 2px solid var(--yellow);
  box-shadow: 0 12px 30px rgba(255, 210, 0, 0.28);
}

.btn-primary:hover {
  background: #ffe15f;
  border-color: #ffe15f;
}

.btn-secondary {
  color: var(--white);
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--yellow);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 78px;
  background:
    linear-gradient(140deg, #284972 0%, #355e91 58%, #5f7f99 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.12), transparent 22%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.9;
}

.hero-grid {
  position: relative;
  display: grid;
  gap: 32px;
  align-items: center;
}

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

.hero-benefit {
  width: min(100%, 950px);
  margin: 0 auto;
  padding: 44px 46px;
  border-radius: 40px;
  color: var(--white);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-align: center;
}

.hero-benefit strong {
  display: block;
  font-family: Teko, Arial, sans-serif;
  font-size: clamp(3.6rem, 7vw, 6.4rem);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.hero-benefit p {
  margin: 10px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.84);
}

.hero-benefit-cta {
  margin-top: 22px;
}

.products,
.specs,
.benefits,
.about {
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
}

.section-heading h2 {
  margin: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: clamp(2.3rem, 4.3vw, 3.8rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.section-heading p:last-child {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.products-heading {
  margin-bottom: 24px;
  padding: 0 6px;
  text-align: center;
}

.products-heading h2 {
  margin: 0;
  max-width: none;
  font-family: Teko, Arial, sans-serif;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  line-height: 1;
  text-transform: uppercase;
  color: var(--blue-deep);
  white-space: nowrap;
}

.carousel {
  position: relative;
}

.carousel-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  display: grid;
  gap: 0;
  min-height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(40, 73, 114, 0.08);
  box-shadow: var(--shadow);
  transform: translateY(0);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}

.product-card:hover,
.product-card.is-active {
  transform: translateY(-5px);
  box-shadow: 0 26px 60px rgba(14, 24, 36, 0.18);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
}

.product-card-body {
  padding: 20px 22px 22px;
  text-align: center;
}

.product-card-body h3 {
  margin: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 1.9rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  background: var(--blue-deep);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 18px 30px rgba(40, 73, 114, 0.24);
  transform: translateY(-50%);
}

.carousel-control.prev {
  left: -18px;
}

.carousel-control.next {
  right: -18px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 2px;
  margin-top: 8px;
}

.carousel-dots button {
  position: relative;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button::before {
  content: "";
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: rgba(40, 73, 114, 0.2);
  transition: width 0.2s ease, background 0.2s ease;
}

.carousel-dots button.is-active::before {
  width: 34px;
  background: var(--yellow);
}

.specs {
  background: linear-gradient(180deg, #f7fafb 0%, #eef4f7 100%);
}

.specs-heading {
  max-width: 860px;
  margin: 0 auto 30px;
  text-align: center;
}

.specs-toggle {
  display: none;
  margin: 16px auto 0;
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  color: var(--blue-deep);
  background: rgba(40, 73, 114, 0.08);
  cursor: pointer;
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
}

.spec-card {
  padding: 26px 22px 22px;
  border-radius: 24px;
  background: var(--white);
  border: 1px solid rgba(40, 73, 114, 0.1);
  box-shadow: var(--shadow);
}

.spec-card-featured {
  transform: translateY(-6px);
}

.spec-card h3 {
  margin: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 2rem;
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--blue-deep);
  text-align: center;
}

.spec-card p {
  margin: 14px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 14px;
  font-size: 0.94rem;
}

.spec-table th,
.spec-table td {
  padding: 9px 10px;
  text-align: left;
}

.spec-table thead th {
  color: var(--black);
  background: #e8edf1;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.spec-table tbody tr:nth-child(odd) td {
  background: #f8fafb;
}

.spec-table tbody tr:nth-child(even) td {
  background: #edf3f6;
}

.spec-table tbody td:last-child {
  font-weight: 700;
}

.benefits-grid {
  display: grid;
  gap: 30px;
}

.benefits-heading-simple {
  max-width: 100%;
  text-align: center;
}

.benefit-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.benefit-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 175px;
  padding: 30px 20px 24px;
  border-radius: 24px;
  color: var(--white);
  background:
    linear-gradient(160deg, #284972 0%, #355d8d 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 46px rgba(20, 38, 59, 0.18);
  overflow: hidden;
}

.benefit-card::before {
  content: "";
  position: absolute;
  right: -30px;
  top: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.benefit-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  font-family: Teko, Arial, sans-serif;
  font-size: 1.9rem;
  color: var(--blue-deep);
  background: #fff1b8;
}

.benefit-card h3 {
  margin: 18px 0 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 1.55rem;
  line-height: 0.92;
  text-transform: uppercase;
  color: var(--white);
  max-width: 9ch;
}

.benefit-card p {
  display: none;
}

.benefits-actions {
  display: flex;
  justify-content: center;
}

.benefits-cta {
  align-self: center;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 28px;
  align-items: start;
}

.about-copy,
.about-highlight {
  padding: 34px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.about-copy {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f8fa 100%);
  border: 1px solid rgba(40, 73, 114, 0.08);
  overflow: hidden;
}

.about-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 110px;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--yellow), rgba(255, 210, 0, 0));
}

.about-copy h2 {
  margin: 0;
  font-family: Teko, Arial, sans-serif;
  font-size: clamp(3rem, 5.6vw, 4.6rem);
  line-height: 0.95;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.about-copy p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 58ch;
}

.about-highlight {
  color: var(--white);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 28%),
    linear-gradient(180deg, var(--blue-deep) 0%, #1a2e48 100%);
}

.about-image-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--white);
  min-height: 100%;
  border: 1px solid rgba(40, 73, 114, 0.08);
}

.about-image-card img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.about-badge {
  display: inline-flex;
  padding: 10px 18px;
  border-radius: 999px;
  font-family: Teko, Arial, sans-serif;
  font-size: 1.7rem;
  letter-spacing: 0.04em;
  color: var(--black);
  background: var(--yellow);
}

.about-highlight h3 {
  margin: 24px 0 0;
  font-family: Teko, Arial, sans-serif;
  font-size: 2.35rem;
  line-height: 0.95;
  text-transform: uppercase;
}

.about-highlight p {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.82);
}

.footer {
  color: var(--white);
  background: #0f1822;
}

.footer-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
  padding: 46px 0 38px;
}

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 86px;
}

.footer-logo-image {
  width: 180px;
  height: auto;
  filter: drop-shadow(0 12px 22px rgba(255, 255, 255, 0.08));
}

.footer-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--yellow);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.footer-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.footer-item {
  text-align: center;
}

.footer-bar {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bar p {
  margin: 0;
  padding: 16px 0 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 1120px) {
  .carousel-track,
  .specs-grid,
  .about-grid,
  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .topbar-inner {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    justify-items: center;
    padding: 18px 0;
  }

  .ticker {
    top: 128px;
  }

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

  .spec-card-featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  :root {
    --mobile-header-offset: 154px;
    --mobile-ticker-height: 48px;
  }

  .topbar {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 40;
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 24px rgba(15, 27, 41, 0.08);
  }

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

  .topbar-inner {
    gap: 14px;
    min-height: auto;
    padding: 12px 0 14px;
  }

  .brand {
    justify-content: center;
  }

  .brand-logo-full {
    width: min(66vw, 276px);
  }

  .topbar .btn {
    width: 100%;
    min-height: 44px;
    padding-inline: 18px;
    font-size: 0.84rem;
  }

  .ticker {
    position: fixed;
    left: 0;
    right: 0;
    top: var(--mobile-header-offset);
    margin-top: 0;
    z-index: 39;
    box-shadow: 0 12px 28px rgba(255, 210, 0, 0.34);
    border-top: 0;
    border-bottom: 0;
    min-height: var(--mobile-ticker-height);
  }

  main {
    padding-top: calc(var(--mobile-header-offset) + var(--mobile-ticker-height));
  }

  .hero {
    padding: 28px 0 42px;
  }

  .hero-grid,
  .benefit-list,
  .specs-grid,
  .about-grid,
  .footer-main,
  .carousel-track {
    grid-template-columns: 1fr;
  }

  .carousel-control {
    display: none;
  }

  .product-card {
    display: none;
  }

  .product-card.is-active {
    display: grid;
  }

  .products-heading,
  .footer-brand {
    text-align: center;
  }

  .hero-benefit {
    width: 100%;
    padding: 26px 20px 28px;
    border-radius: 26px;
  }

  .hero-benefit strong {
    font-size: clamp(2.7rem, 13vw, 4rem);
    line-height: 0.94;
    letter-spacing: 0.01em;
  }

  .hero-benefit p {
    margin-top: 8px;
    font-size: 1rem;
    line-height: 1.35;
  }

  .hero-benefit-cta {
    margin-top: 18px;
  }

  .products,
  .specs,
  .benefits,
  .about {
    padding: 58px 0;
  }

  .products-heading {
    margin-bottom: 18px;
    padding-inline: 4px;
  }

  .products-heading h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    line-height: 0.96;
  }

  .ticker span {
    padding: 12px 18px;
    font-size: 0.98rem;
    letter-spacing: 0.04em;
  }

  .carousel {
    margin-top: 8px;
    overflow: hidden;
  }

  .carousel-track {
    display: flex;
    gap: 14px;
    width: max-content;
  }

  .carousel.is-mobile-loop .carousel-track {
    animation: mobile-carousel-loop 22s linear infinite;
  }

  .carousel-dots {
    display: none;
  }

  .product-card {
    display: grid;
    width: min(74vw, 290px);
    flex: 0 0 auto;
    border-radius: 22px;
    transform: none;
  }

  .product-card.is-active {
    display: grid;
  }

  .product-card img {
    aspect-ratio: 1 / 0.92;
  }

  .product-card-body {
    padding: 16px 16px 18px;
  }

  .product-card-body h3 {
    font-size: 1.55rem;
  }

  .section-heading h2,
  .about-copy h2 {
    font-size: clamp(2.35rem, 10vw, 3.2rem);
  }

  .specs-heading {
    margin-bottom: 20px;
  }

  .specs-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .specs-grid {
    display: none;
    margin-top: 4px;
  }

  .specs.is-open .specs-grid {
    display: grid;
  }

  .spec-card {
    padding: 22px 18px 18px;
    border-radius: 20px;
  }

  .spec-card h3 {
    font-size: 1.6rem;
  }

  .spec-card p {
    margin: 12px 0 14px;
    font-size: 0.9rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 8px 8px;
    font-size: 0.84rem;
  }

  .benefits-heading-simple h2 {
    font-size: clamp(1.65rem, 7vw, 2rem);
    line-height: 0.96;
  }

  .benefits-grid {
    gap: 18px;
  }

  .benefit-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card {
    min-height: 138px;
    width: 100%;
    padding: 18px 18px 18px;
    border-radius: 22px;
    justify-content: center;
  }

  .benefit-card span {
    width: 42px;
    height: 42px;
    font-size: 1.35rem;
    border-radius: 12px;
  }

  .benefit-card h3 {
    margin-top: 12px;
    font-size: 1rem;
    line-height: 1;
    max-width: none;
    white-space: nowrap;
    letter-spacing: 0.01em;
  }

  .benefits-actions {
    margin-top: 4px;
  }

  .about-grid {
    gap: 18px;
  }

  .about-copy {
    padding: 24px 20px 22px;
    border-radius: 22px;
  }

  .about-copy p {
    margin-top: 16px;
    font-size: 0.98rem;
    line-height: 1.7;
  }

  .about-image-card {
    border-radius: 22px;
  }

  .about-image-card img {
    min-height: 320px;
  }

  .footer-main {
    gap: 18px;
    padding: 34px 0 26px;
  }

  .footer-logo-image {
    width: 150px;
  }

  .footer-item span {
    margin-bottom: 6px;
    font-size: 0.72rem;
  }

  .footer-item p {
    font-size: 0.94rem;
    line-height: 1.45;
  }

  .topbar .btn,
  .hero-benefit-cta,
  .benefits-cta {
    width: auto;
    min-width: 0;
    max-width: 100%;
    padding-inline: 20px;
    min-height: 46px;
    font-size: 0.88rem;
  }

  .topbar .btn,
  .benefits-actions,
  .hero-benefit {
    text-align: center;
  }

  .benefits-actions .btn,
  .hero-benefit-cta {
    margin-inline: auto;
  }

  .products-heading h2 {
    white-space: normal;
  }
}

@media (max-width: 520px) {
  :root {
    --mobile-header-offset: 148px;
    --mobile-ticker-height: 44px;
  }

  .container {
    width: min(calc(100% - 22px), var(--container));
  }

  .ticker {
    top: var(--mobile-header-offset);
    margin-top: 0;
    min-height: var(--mobile-ticker-height);
  }

  main {
    padding-top: calc(var(--mobile-header-offset) + var(--mobile-ticker-height));
  }

  .ticker span {
    padding: 11px 14px;
    font-size: 0.88rem;
    letter-spacing: 0.03em;
  }

  .hero-benefit {
    padding: 22px 16px 24px;
  }

  .spec-card h3 {
    font-size: 1.45rem;
  }

  .spec-table th,
  .spec-table td {
    padding: 7px 7px;
    font-size: 0.8rem;
  }

  .hero-benefit strong {
    font-size: clamp(2.35rem, 12vw, 3.3rem);
  }

  .hero-benefit p {
    font-size: 0.95rem;
  }

  .product-card-body h3 {
    font-size: 1.4rem;
  }

  .benefit-card {
    min-height: 128px;
    padding: 16px 16px 16px;
  }

  .benefit-card h3 {
    font-size: 0.96rem;
  }

  .about-copy {
    padding: 22px 16px 20px;
  }

  .about-copy h2 {
    font-size: clamp(2.1rem, 11vw, 2.8rem);
  }

  .about-copy p {
    font-size: 0.95rem;
  }

  .about-image-card img {
    min-height: 280px;
  }
}

@keyframes mobile-carousel-loop {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-50%, 0, 0);
  }
}
