:root {
  --bg: #12161c;
  --bg-elevated: #1a212b;
  --ink: #f2eee6;
  --muted: #b7b0a4;
  --line: rgba(242, 238, 230, 0.14);
  --accent: #d7a14a;
  --accent-strong: #f0c36d;
  --steel: #8ea0b5;
  --ok: #9fcdb0;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
  --font-display: "Syne", sans-serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 80% -10%, rgba(215, 161, 74, 0.16), transparent 55%),
    radial-gradient(900px 500px at 0% 20%, rgba(142, 160, 181, 0.12), transparent 50%),
    linear-gradient(180deg, #0f1318 0%, var(--bg) 40%, #0d1116 100%);
  line-height: 1.55;
  min-height: 100vh;
}

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

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

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--accent);
  color: #111;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.85rem 1.5rem;
  backdrop-filter: blur(14px);
  background: rgba(15, 19, 24, 0.78);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(12, 15, 20, 0.92);
}

.logo {
  display: flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}

.logo-img {
  display: block;
  height: 44px;
  width: auto;
  max-width: min(220px, 42vw);
  object-fit: contain;
  background: #fff;
  padding: 0.28rem 0.45rem;
  border-radius: 4px;
}

.nav {
  display: none;
  gap: 1.15rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.nav a:hover,
.mobile-nav a:hover,
.text-link:hover,
.footer-links a:hover {
  color: var(--accent-strong);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.7rem 1.15rem;
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 550;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.header-cta,
.btn-primary {
  background: var(--accent);
  color: #17120a;
}

.header-cta:hover,
.btn-primary:hover {
  background: var(--accent-strong);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--accent);
  color: var(--accent-strong);
}

.menu-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  background: transparent;
  padding: 0 12px;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: var(--ink);
}

.mobile-nav {
  position: sticky;
  top: var(--header-h);
  z-index: 40;
  display: grid;
  gap: 0.35rem;
  padding: 1rem 1.5rem 1.25rem;
  background: rgba(12, 15, 20, 0.96);
  border-bottom: 1px solid var(--line);
}

.mobile-nav[hidden] {
  display: none;
}

.mobile-nav a {
  padding: 0.65rem 0;
  color: var(--muted);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 2rem 1.5rem 3.5rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  background: #10141a;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 10%;
  filter: saturate(0.8) contrast(1.08) brightness(0.55);
  animation: photoDrift 18s ease-in-out infinite alternate;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 12, 16, 0.96) 0%, rgba(10, 12, 16, 0.88) 34%, rgba(10, 12, 16, 0.45) 62%, rgba(10, 12, 16, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 12, 16, 0.35) 0%, rgba(10, 12, 16, 0.9) 100%);
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(242, 238, 230, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(242, 238, 230, 0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 72% 42%, black 8%, transparent 68%);
  animation: gridDrift 18s linear infinite;
  opacity: 0.55;
}

.hero-robot {
  position: absolute;
  right: clamp(0.5rem, 3vw, 2.5rem);
  bottom: 0;
  z-index: 2;
  width: min(42vw, 380px);
  height: min(78vh, 720px);
  max-width: 46%;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 18px 40px rgba(0, 0, 0, 0.45));
  animation: figureRise 1.4s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  pointer-events: none;
}

@media (max-width: 819px) {
  .hero-robot {
    width: min(58vw, 260px);
    height: min(52vh, 420px);
    right: 0.25rem;
    opacity: 0.95;
  }

  .hero-copy {
    max-width: min(100%, 34rem);
  }
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 640px;
  animation: copyIn 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s both;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.brand-line {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-size: 0.92rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}

.brand-name {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.2rem, 14vw, 8.5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
}

.hero-lead {
  margin: 1.25rem 0 1.75rem;
  max-width: 34rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
}

.hero-actions,
.buy-actions,
.download-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.download-row {
  margin-top: 1.75rem;
}

.section {
  padding: 5.5rem 1.5rem;
  border-top: 1px solid var(--line);
}

.section-inner {
  max-width: var(--max);
  margin: 0 auto;
}

.section-inner.split {
  display: grid;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 0.75rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 600;
}

h2 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
}

.section-lead {
  margin: 0 0 1.75rem;
  max-width: 40rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.plain-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.85rem;
  max-width: 40rem;
}

.plain-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--ink);
}

.plain-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.45rem;
  height: 0.45rem;
  background: var(--accent);
}

.platform-grid,
.cap-grid {
  display: grid;
  gap: 1.25rem;
}

.platform,
.cap-grid > div,
.commands {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.media-frame,
.banner-frame {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg-elevated);
  width: 100%;
}

.media-frame {
  aspect-ratio: 3 / 4;
  max-height: min(70vh, 560px);
  display: grid;
  place-items: center;
}

.banner-frame {
  aspect-ratio: 16 / 9;
  max-height: min(52vh, 440px);
  margin: 0 0 2rem;
  display: grid;
  place-items: center;
}

.media-frame img,
.banner-frame img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
}

.platform-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: 320px;
  margin-bottom: 1.1rem;
  border: 1px solid var(--line);
  object-fit: contain;
  object-position: center;
  background: #10151c;
}

.cap-visuals {
  display: grid;
  gap: 1rem;
  margin: 0 0 2rem;
}

.cap-visuals .banner-frame {
  margin: 0;
}

@media (min-width: 820px) {
  .cap-visuals {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: stretch;
  }

  .cap-visuals .media-frame,
  .cap-visuals .banner-frame {
    max-height: min(48vh, 420px);
    height: 100%;
  }
}

.platform-meta {
  margin: 0 0 0.75rem;
  color: var(--steel);
  font-size: 0.92rem;
}

.platform p,
.cap-grid p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ink) !important;
  margin-bottom: 0.75rem !important;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.note,
.copyright {
  color: var(--muted);
  font-size: 0.9rem;
}

.note {
  margin-top: 1.75rem;
}

.commands {
  margin-top: 2.5rem;
}

.command-line {
  margin: 0;
  color: var(--steel);
  letter-spacing: 0.02em;
  line-height: 1.8;
}

.spec-list {
  margin: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.spec-list > div {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.spec-list dt {
  margin: 0;
  color: var(--accent);
  font-weight: 600;
}

.spec-list dd {
  margin: 0;
  color: var(--muted);
}

.buy {
  background:
    radial-gradient(700px 280px at 20% 0%, rgba(215, 161, 74, 0.14), transparent 70%),
    transparent;
}

.video-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.video-card {
  border: 1px solid var(--line);
  background: #0f1318;
  padding: 0.85rem;
}

.video-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border: 1px solid rgba(242, 238, 230, 0.08);
  margin-bottom: 0.85rem;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.video-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 820px) {
  .video-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.customer-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.customer-card {
  border: 1px solid var(--line);
  background: #0f1318;
  padding: 1.25rem;
  display: grid;
  gap: 0.75rem;
  align-content: start;
}

.customer-card img {
  width: 100%;
  height: 88px;
  object-fit: contain;
  object-position: center;
  background: #000;
  border: 1px solid rgba(242, 238, 230, 0.08);
  padding: 0.65rem;
}

.customer-card h3 {
  margin: 0;
  font-size: 1.15rem;
}

.customer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (min-width: 700px) {
  .customer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1000px) {
  .customer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .customer-card img {
    height: 96px;
  }
}

.page-hero {
  padding: 4.5rem 1.5rem 2rem;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.2rem);
  line-height: 1.02;
  letter-spacing: -0.03em;
}

.partner-logo-wrap {
  display: grid;
  place-items: center;
  min-height: 140px;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: #0f1318;
}

.partner-logo {
  width: min(100%, 420px);
  height: auto;
  max-height: 120px;
  object-fit: contain;
}

.team-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}

.person-card {
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.person-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-height: 360px;
  object-fit: cover;
  object-position: center top;
  border: 1px solid var(--line);
  background: #10151c;
  margin-bottom: 0.9rem;
}

.person-card h3 {
  margin-bottom: 0.25rem;
}

.person-card .role {
  margin: 0;
  color: var(--muted);
}

@media (min-width: 700px) {
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
  }
}

@media (min-width: 1000px) {
  .page-hero,
  .partners-section,
  .team-section {
    padding-inline: 2rem;
  }

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

.contact-line {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.contact-line a {
  color: var(--accent-strong);
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 2rem 1.5rem 2.5rem;
}

.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.footer-brand-block {
  display: grid;
  gap: 0.65rem;
}

.footer-logo {
  display: block;
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  background: #fff;
  padding: 0.35rem 0.5rem;
  border-radius: 4px;
}

.footer-brand {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-links {
  display: flex;
  gap: 1rem;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes gridDrift {
  from { transform: translateY(0); }
  to { transform: translateY(64px); }
}

@keyframes photoDrift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.05) translate3d(-1%, -0.5%, 0); }
}

@keyframes figureRise {
  from { opacity: 0; transform: translateY(36px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes copyIn {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 820px) {
  .nav {
    display: flex;
  }

  .menu-btn,
  .mobile-nav {
    display: none !important;
  }

  .header-cta {
    display: inline-flex;
  }

  .site-header {
    padding-inline: 2rem;
  }

  .hero,
  .section,
  .site-footer {
    padding-inline: 2rem;
  }

  .hero {
    align-items: center;
    padding-bottom: 4rem;
  }

  .hero-robot {
    right: 3%;
    width: min(40vw, 400px);
    height: min(82vh, 760px);
    max-width: 44%;
  }

  .platform-grid,
  .cap-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem 2.5rem;
  }

  .section-inner.split {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 3rem;
  }

  .media-frame {
    max-height: min(72vh, 580px);
  }

  .platform-photo {
    max-height: 360px;
  }

  .spec-list > div {
    grid-template-columns: 11rem 1fr;
  }

  .footer-inner {
    grid-template-columns: 1.2fr 1fr auto;
    align-items: end;
  }
}

@media (min-width: 1100px) {
  .hero-copy {
    max-width: 680px;
  }

  .cap-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
