:root {
  --blue: #1f6bff;
  --blue-light: #69a0ff;
  --dark: #080a0e;
  --surface: #11141a;
  --surface-light: #171b22;
  --white: #ffffff;
  --gray: #aeb4bf;
  --border: rgba(255, 255, 255, 0.10);
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: radial-gradient(circle at 70% 8%, rgba(31,107,255,.12), transparent 28%), var(--dark);
  color: var(--white);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(calc(100% - 40px), var(--container)); margin-inline: auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(8,10,14,.82);
  backdrop-filter: blur(18px);
}
.navigation { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 30px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand-logo { width: 56px; height: 56px; object-fit: contain; }
.brand-name { font-size: 16px; font-weight: 800; line-height: 1.1; }
.brand-name small { display: block; margin-top: 5px; color: var(--blue-light); font-size: 9px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { color: var(--gray); font-size: 14px; font-weight: 600; text-decoration: none; }
.nav-links a:hover { color: var(--white); }
.navigation-actions { display: flex; align-items: center; gap: 22px; }
.language-switcher { display: inline-flex; padding: 4px; border: 1px solid var(--border); border-radius: 999px; background: rgba(255,255,255,.04); }
.language-switcher a, .language-switcher span { min-width: 35px; padding: 5px 8px; border-radius: 999px; color: var(--gray); font-size: 11px; font-weight: 800; text-align: center; text-decoration: none; }
.language-switcher .is-active { background: var(--blue); color: var(--white); }

.hero { position: relative; min-height: 820px; display: flex; align-items: center; overflow: hidden; }
.hero-layout { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 90px; padding-block: 110px 125px; }
.hero-content { max-width: 720px; }
.eyebrow { margin: 0 0 18px; color: var(--blue-light); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1 { margin: 0; font-size: clamp(72px, 7vw, 112px); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { display: block; color: var(--blue-light); }
.hero-description { max-width: 650px; margin: 30px 0 0; color: var(--gray); font-size: 20px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
.button { min-height: 52px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; border: 0; border-radius: 12px; font-size: 14px; font-weight: 800; text-decoration: none; transition: .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--blue); color: var(--white); box-shadow: 0 16px 40px rgba(31,107,255,.28); }
.button-secondary { border: 1px solid var(--border); background: rgba(255,255,255,.04); }
.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.hero-points span, .feature-chips span { padding: 7px 11px; border: 1px solid var(--border); border-radius: 100px; color: var(--gray); font-size: 12px; }
.hero-visual { display: flex; justify-content: center; }
.hero-watch-stack { position: relative; width: min(100%, 555px); min-height: 555px; }
.hero-watch { position: absolute; width: 78%; filter: drop-shadow(0 38px 55px rgba(0,0,0,.55)); }
.hero-watch-back { top: 2%; left: 0; opacity: .52; transform: rotate(-9deg) scale(.86); }
.hero-watch-front { right: 0; bottom: 0; z-index: 2; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(120px); pointer-events: none; }
.hero-glow-one { top: 8%; right: 2%; width: 420px; height: 420px; background: rgba(31,107,255,.18); }
.hero-glow-two { bottom: -20%; left: -10%; width: 420px; height: 420px; background: rgba(31,107,255,.08); }

.section { padding-block: 105px; }
.section-heading { max-width: 760px; margin-bottom: 50px; }
.section-heading h2, .support-card h2, .cv02-copy h2 { margin: 0; font-size: clamp(36px,5vw,58px); line-height: 1.08; letter-spacing: -.04em; }
.section-heading > p:last-child, .support-card > p, .cv02-copy > p { color: var(--gray); font-size: 17px; }

.product-section { border-block: 1px solid var(--border); background: rgba(255,255,255,.015); }
.products-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.watch-card { position: relative; overflow: hidden; display: grid; grid-template-rows: auto 1fr; border: 1px solid var(--border); border-radius: 30px; background: linear-gradient(145deg,#151922,#0d0f14); }
.watch-card-featured { border-color: rgba(93,149,255,.45); box-shadow: 0 28px 80px rgba(31,107,255,.12); }
.watch-card-image { min-height: 430px; display: grid; place-items: center; padding: 34px; background: radial-gradient(circle,rgba(31,107,255,.15),transparent 58%); }
.watch-card-image img {
  width: 100%;
  max-width: 390px;
  height: auto;
  border: 0;
  outline: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition: .3s ease;
}
.watch-card:hover .watch-card-image img { transform: scale(1.035); }

.watch-card-content { display: flex; flex-direction: column; padding: 34px; border-top: 1px solid var(--border); }
.watch-card-meta { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.product-label { margin: 0; color: var(--blue-light); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.status-badge { display: inline-flex; padding: 8px 12px; border: 1px solid rgba(93,149,255,.34); border-radius: 100px; color: var(--blue-light); font-size: 11px; font-weight: 700; }
.watch-card h3 { margin: 18px 0 0; font-size: clamp(35px,4vw,52px); line-height: 1; letter-spacing: -.035em; }
.watch-card-content > p { color: var(--gray); font-size: 16px; }
.product-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 11px 22px; margin: 23px 0 30px; padding: 0; list-style: none; }
.product-features li { position: relative; padding-left: 20px; color: #dce1e9; font-size: 13px; }
.product-features li::before { content: ""; position: absolute; top: .66em; left: 0; width: 7px; height: 7px; border-radius: 50%; background: var(--blue); }
.card-button { align-self: flex-start; margin-top: auto; }

.cv02-section { background: radial-gradient(circle at 15% 50%,rgba(31,107,255,.12),transparent 30%); }
.cv02-layout { display: grid; grid-template-columns: 1.15fr .85fr; gap: 70px; align-items: center; }
.cv02-feature-image { overflow: hidden; border: 1px solid rgba(93,149,255,.3); border-radius: 28px; box-shadow: 0 30px 80px rgba(0,0,0,.42); }
.cv02-feature-image img { width: 100%; }
#cv03 .cv02-feature-image img, #cv04 .cv02-feature-image img, #cv05 .cv02-feature-image img { aspect-ratio: auto; object-fit: contain !important; }
.cv02-lead { color: var(--white) !important; font-size: 21px !important; font-weight: 600; }
.feature-chips { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 28px; }

.feature-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; }
.feature-card, .support-card { border: 1px solid var(--border); border-radius: 22px; background: linear-gradient(145deg,var(--surface-light),var(--surface)); }
.feature-card { min-height: 245px; padding: 34px 28px; display: flex; flex-direction: column; justify-content: center; }
.feature-card h3 { margin: 0 0 14px; font-size: 20px; }
.feature-card p { margin: 0; color: var(--gray); font-size: 14px; }

.screenshots-section { border-block: 1px solid var(--border); background: rgba(255,255,255,.012); }
.gallery-group + .gallery-group { margin-top: 64px; }
.gallery-group-heading { display: flex; align-items: baseline; gap: 14px; margin-bottom: 22px; }
.gallery-group-heading h3 { margin: 0; font-size: 28px; }
.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: max-content;
  align-items: start;
  gap: 22px;
}

.screenshot-card {
  position: relative;
  align-self: start;
  width: 100%;
  height: auto;
  min-height: 0;
  display: block;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
  transition: .3s ease;
  line-height: 0;
}

.screenshot-aod-label {
  position: absolute;
  top: 7%;
  left: 6%;
  color: var(--blue);
  font-size: clamp(20px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: .02em;
  pointer-events: none;
}

.screenshot-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,.42);
}

.screenshot-card img {
  display: block;
  width: 100%;
  height: auto;
  max-width: none;
  object-fit: initial;
}

.screenshot-card-wide {
  grid-column: span 2;
}
.button-disabled { opacity: .65; cursor: default; pointer-events: none; }
.button-disabled:hover { transform: none; }

.collection-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(190px,1fr)); gap: 18px; }
.collection-card { min-height: 170px; padding: 24px; display: flex; flex-direction: column; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,.035); transition: .25s ease; }
.collection-card:hover { transform: translateY(-4px); border-color: var(--blue); background: rgba(255,255,255,.055); }
.collection-card-current { border-color: rgba(79,140,255,.58); }
.collection-card-more { border-style: dashed; }
.collection-number { display: inline-flex; align-items: center; justify-content: center; width: fit-content; min-width: 52px; height: 30px; margin-bottom: 20px; padding: 0 10px; border-radius: 999px; background: rgba(79,140,255,.14); font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.collection-card h3 { margin: 0 0 8px; font-size: 20px; }
.collection-card p { margin: 0; color: var(--gray); font-size: 14px; }

.support-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }
.support-card { padding: 42px; }
.support-card h2 { font-size: 38px; }
.text-link { display: inline-block; margin-top: 15px; color: var(--blue-light); font-weight: 800; text-decoration: none; }

.site-footer { border-top: 1px solid var(--border); padding-block: 50px; }
.footer-layout { display: grid; grid-template-columns: 1fr auto; gap: 25px; align-items: start; }
.site-footer strong { font-size: 18px; }
.site-footer p { margin: 5px 0 0; color: var(--gray); font-size: 13px; }
.footer-links { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-links a { color: var(--gray); font-size: 13px; text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.copyright { grid-column: 1 / -1; padding-top: 24px; border-top: 1px solid var(--border); }

.image-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 30px; background: rgba(0,0,0,.9); backdrop-filter: blur(12px); }
.image-modal.is-open { display: flex; }
.image-modal img { max-width: min(90vw,1100px); max-height: 88vh; border-radius: 24px; box-shadow: 0 30px 100px rgba(0,0,0,.7); }
.image-modal-close, .image-modal-arrow { position: fixed; z-index: 2; border: 1px solid rgba(255,255,255,.2); background: rgba(17,20,26,.86); color: white; cursor: pointer; }
.image-modal-close { top: 24px; right: 28px; width: 48px; height: 48px; border-radius: 50%; font-size: 28px; }
.image-modal-arrow { top: 50%; width: 52px; height: 70px; border-radius: 14px; font-size: 38px; transform: translateY(-50%); }
.image-modal-prev { left: 24px; }
.image-modal-next { right: 24px; }


@media (max-width: 980px) {
  .hero-layout, .cv02-layout { grid-template-columns: 1fr; }
  .hero-content { text-align: center; margin-inline: auto; }
  .hero-description { margin-inline: auto; }
  .hero-actions, .hero-points { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-watch-stack { min-height: 500px; }
  .products-grid { grid-template-columns: 1fr; }
  .feature-grid, .collection-grid { grid-template-columns: repeat(2,1fr); }
  .screenshots-grid { grid-template-columns: repeat(2,1fr); }
}

@media (max-width: 650px) {
  .container { width: min(calc(100% - 28px),var(--container)); }
  .nav-links { display: none; }
  .navigation { gap: 12px; }
  .navigation-actions { gap: 8px; }
  .brand-name { display: none; }
  .hero { min-height: auto; }
  .hero-layout { gap: 25px; padding-block: 55px 80px; }
  .hero h1 { font-size: 56px; }
  .hero-description { font-size: 17px; }
  .hero-watch-stack { width: 100%; min-height: 350px; }
  .hero-watch { width: 78%; }
  .button { width: 100%; }
  .section { padding-block: 75px; }
  .section-heading { margin-bottom: 34px; }
  .feature-grid, .collection-grid, .support-grid, .screenshots-grid { grid-template-columns: 1fr; }
  .watch-card-image { min-height: 310px; padding: 22px; }
  .watch-card-content { padding: 25px; }
  .product-features { grid-template-columns: 1fr; }
  .screenshot-card-wide { grid-column: auto; }
  .footer-layout { grid-template-columns: 1fr; }
  .copyright { grid-column: auto; }
  .image-modal-arrow { display: none; }
}


/* =========================================================
   FINAL FULL-WIDTH HERO BANNER
   Replaces the previous text + two-watch hero layout.
========================================================= */
.hero-banner {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background: #02050b;
  border-bottom: 1px solid rgba(79, 140, 255, 0.18);
}

.hero-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 1920px;
  margin: 0 auto;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

@media (min-width: 1921px) {
  .hero-banner {
    background: #02050b;
  }
}

@media (max-width: 650px) {
  .hero-banner img {
    width: 100%;
    height: auto;
  }
}


/* =========================================================
   CV02 PROMOTIONAL IMAGE — KEEP ORIGINAL PROPORTIONS
========================================================= */
.cv02-feature-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto !important;
  min-height: 0 !important;
}

.cv02-feature-image img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100%;
  aspect-ratio: 1639 / 891;
  object-fit: contain !important;
  object-position: center;
  flex: 0 0 auto;
}


.cv01-play-button {
    margin-top: 1.25rem;
    width: fit-content;
}
