:root {
  color-scheme: dark;
  --bg: #050608;
  --bg-soft: #090d13;
  --surface: #0d121a;
  --surface-2: #121923;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f7fb;
  --muted: #9aa7b8;
  --soft: #c5d0de;
  --cyan: #52dbff;
  --blue: #6388ff;
  --green: #72f1cf;
  --max: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 50% -16%, rgba(82, 219, 255, 0.22), transparent 30rem),
    linear-gradient(180deg, #071018 0%, var(--bg) 34rem);
  color: var(--text);
  letter-spacing: 0;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 6, 8, 0.82);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(var(--max), calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 720;
  font-size: 16px;
}

.brand img {
  width: 32px;
  height: 32px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--soft);
  font-size: 14px;
}

.nav-pill {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  padding: 8px 13px !important;
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover {
  color: var(--text);
}

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

.hero {
  display: grid;
  align-items: center;
  padding: 74px 0 54px;
}

.hero-photo {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.98) 0%, rgba(5, 6, 8, 0.9) 30%, rgba(5, 6, 8, 0.32) 66%, rgba(5, 6, 8, 0.1) 100%),
    url("/assets/hero-media.jpg") center right / cover no-repeat;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, var(--bg));
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.9fr);
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 600px;
}

.eyebrow {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 760;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  margin-top: 18px;
  max-width: 780px;
  font-size: clamp(36px, 4.3vw, 56px);
  line-height: 1.02;
  font-weight: 780;
}

.hero-copy {
  max-width: 560px;
  margin-top: 20px;
  color: #cbd5e2;
  font-size: 17px;
  line-height: 1.62;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
}

.button.primary {
  border-color: transparent;
  background: linear-gradient(135deg, #53f0d0, var(--cyan));
  color: #041016;
}

.button:hover {
  transform: translateY(-1px);
}

.media-panel {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 6, 8, 0.95), rgba(5, 6, 8, 0.28)),
    radial-gradient(circle at 72% 32%, rgba(82, 219, 255, 0.28), transparent 14rem),
    linear-gradient(135deg, #101826, #050608 70%);
}

.player-top {
  position: absolute;
  inset: 20px 20px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #d8e4f2;
  font-size: 12px;
}

.screen {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 72px;
  height: 210px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(140deg, rgba(82, 219, 255, 0.15), transparent 34%),
    linear-gradient(35deg, rgba(99, 136, 255, 0.22), transparent 48%),
    #0a0d12;
}

.play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 58px;
  height: 58px;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  background: rgba(255, 255, 255, 0.88);
}

.play::after {
  content: "";
  position: absolute;
  left: 23px;
  top: 17px;
  border-left: 18px solid #071018;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.caption-strip {
  position: absolute;
  left: 44px;
  right: 44px;
  bottom: 18px;
  padding: 10px 14px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: white;
  text-align: center;
  font-size: 13px;
}

.poster-row {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.poster {
  min-height: 68px;
  border-radius: 7px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(135deg, rgba(82, 219, 255, 0.28), rgba(99, 136, 255, 0.12));
}

.section {
  padding: 70px 0;
}

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

.section-head {
  max-width: 700px;
  margin-bottom: 28px;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 34px;
}

.section-title-row h2 {
  max-width: 720px;
}

.text-link {
  color: #58f0d5;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

h2 {
  margin-top: 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.05;
}

.section-head p,
.page-intro p,
.text-page p {
  margin-top: 18px;
  color: var(--soft);
  line-height: 1.7;
  font-size: 16px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.product {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025));
  border-radius: 8px;
  padding: 24px;
}

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

.rich-product {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(260px, 1fr);
  align-items: center;
  gap: 22px;
  overflow: hidden;
  min-height: 330px;
}

.product-visual {
  width: 100%;
  height: 230px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-icon {
  width: 62px;
  height: 62px;
  margin-bottom: 20px;
  border-radius: 15px;
}

.product-title-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.product-title-lockup .product-icon {
  width: 58px;
  height: 58px;
  margin-bottom: 0;
  flex: 0 0 auto;
}

.product-title-lockup h2 {
  margin-top: 0;
}

.product-title-lockup.compact {
  gap: 14px;
  margin-bottom: 14px;
}

.product-title-lockup.compact .product-icon {
  width: 58px;
  height: 58px;
}

h3 {
  font-size: 22px;
}

.product p,
.mini p,
.contact-row p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.62;
  font-size: 15px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
}

.feature-strip div {
  border-top: 1px solid rgba(255, 255, 255, 0.13);
  padding-top: 18px;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 0.66fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: center;
  padding: 46px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.product-detail.reverse {
  direction: rtl;
}

.product-detail.reverse > * {
  direction: ltr;
}

.detail-copy h2 {
  font-size: clamp(30px, 3.5vw, 48px);
}

.detail-copy p {
  margin-top: 12px;
  color: var(--soft);
  line-height: 1.62;
  font-size: 16px;
}

.detail-copy ul,
.product ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: #d5dee9;
  line-height: 1.65;
}

.feature-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 0 0 48px;
}

.feature-card-grid.last-grid {
  padding-bottom: 84px;
}

.feature-card {
  min-height: 150px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.048), rgba(255, 255, 255, 0.02));
}

.feature-card h3 {
  font-size: 18px;
}

.feature-card p {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px;
}

.detail-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0 88px;
}

.support-card {
  min-height: 210px;
  padding: 24px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.025));
  border-radius: 8px;
}

.support-card p {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.65;
}

.mini {
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-hero {
  padding: 72px 0 44px;
}

.page-intro {
  max-width: 760px;
}

.text-page {
  max-width: 760px;
  padding: 44px 0 88px;
}

.text-page h2 {
  margin-top: 42px;
  font-size: 28px;
}

.text-page ul {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--soft);
  line-height: 1.75;
}

.contact-list {
  display: grid;
  gap: 16px;
  max-width: 760px;
  padding: 34px 0 88px;
}

.contact-row {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 18px;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  padding: 32px 0;
  color: var(--muted);
  font-size: 13px;
}

.footer-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  gap: 18px;
}

@media (max-width: 860px) {
  .nav {
    width: min(100% - 28px, var(--max));
    min-height: auto;
    padding: 16px 0;
    align-items: flex-start;
  }

  .nav,
  .footer-inner {
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 2px;
  }

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

  .hero {
    min-height: auto;
    padding: 56px 0 64px;
  }

  .hero-photo {
    background:
      linear-gradient(180deg, rgba(5, 6, 8, 0.82), rgba(5, 6, 8, 0.96) 46%, var(--bg) 100%),
      url("/assets/hero-media.jpg") center top / auto 360px no-repeat;
    padding-top: 250px;
  }

  .hero-grid,
  .product-grid,
  .feature-list,
  .feature-strip,
  .support-grid,
  .feature-card-grid,
  .product-detail,
  .rich-product {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 36px;
  }

  .section {
    padding: 64px 0;
  }

  .section-title-row {
    align-items: start;
    flex-direction: column;
  }

  .product-visual {
    height: 210px;
  }

  .product-detail.reverse {
    direction: ltr;
  }

  .product-title-lockup {
    gap: 14px;
  }

  .footer-links {
    flex-wrap: wrap;
  }
}
