:root {
  color-scheme: light;
  --black: #050505;
  --ink: #151515;
  --paper: #fbfaf6;
  --muted: #5e6363;
  --line: #dfe2dd;
  --orange: #ff9d00;
  --orange-dark: #bb6100;
  --teal: #0c8d78;
  --blue: #2f6fbb;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(5, 5, 5, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  line-height: 1.5;
}

::selection {
  background: var(--orange);
  color: var(--black);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 5, 5, 0.88);
  padding: 0 32px;
  color: var(--white);
  backdrop-filter: blur(14px);
}

.header-actions {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 900;
  text-decoration: none;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.brand span {
  white-space: nowrap;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 750;
}

.nav-links a,
.language-switch a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--orange);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  padding: 4px;
}

.language-switch a {
  gap: 6px;
  border-radius: 999px;
  padding: 0 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.84rem;
  font-weight: 850;
}

.language-switch a.active {
  background: var(--orange);
  color: var(--black);
}

.language-switch a:not(.active):hover,
.language-switch a:not(.active):focus-visible {
  color: var(--white);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 82vh;
  display: grid;
  align-items: center;
  background: var(--black);
  color: var(--white);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.82) 44%, rgba(5, 5, 5, 0.48) 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("./icon-1024.png");
  background-position: right 6vw center;
  background-repeat: no-repeat;
  background-size: min(50vw, 620px);
  opacity: 0.7;
}

.hero-content {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 72px 0 56px;
}

.eyebrow,
.section-label {
  margin: 0 0 14px;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p,
ol {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 24px;
  font-size: 6.6rem;
  line-height: 0.95;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 2.9rem;
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.18rem;
  line-height: 1.2;
  letter-spacing: 0;
}

.lead {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.2rem;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid currentColor;
  padding: 0 18px;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 160ms ease;
}

.button.primary {
  border-color: var(--orange);
  background: var(--orange);
  color: var(--black);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
}

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

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 760px;
  margin: 44px 0 0;
}

.hero-stats div {
  min-height: 118px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
}

.hero-stats strong {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-weight: 900;
}

.hero-stats span {
  display: block;
  color: rgba(255, 255, 255, 0.75);
}

.intro-band {
  background: var(--orange);
  color: var(--black);
  padding: 42px 32px;
}

.intro-band p {
  width: min(1000px, 100%);
  margin: 0 auto;
  font-size: 1.28rem;
  font-weight: 760;
}

.section-shell {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 0.62fr 1fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 34px;
}

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

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

.feature-card {
  min-height: 280px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(5, 5, 5, 0.05);
}

.feature-card:nth-child(2) {
  background: #f4f8fc;
}

.feature-card:nth-child(3) {
  background: #f4fbf8;
}

.feature-card:nth-child(4) {
  background: #fff8ea;
}

.feature-card:nth-child(5) {
  background: #f7f4fc;
}

.feature-card:nth-child(6) {
  background: #f7fbf0;
}

.feature-card p,
.privacy-copy p,
.privacy-list p,
.manual-band p,
.timeline span {
  color: var(--muted);
}

.feature-icon {
  display: inline-flex;
  width: 54px;
  height: 54px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--black);
  color: var(--orange);
  font-size: 0.72rem;
  font-weight: 950;
  margin-bottom: 24px;
}

.privacy-band {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 52px;
  background: var(--black);
  color: var(--white);
  padding: 86px max(32px, calc((100vw - 1120px) / 2));
}

.privacy-copy p {
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.06rem;
}

.privacy-list {
  display: grid;
  gap: 14px;
}

.privacy-list div {
  border-left: 4px solid var(--orange);
  border-radius: 0 8px 8px 0;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.privacy-list p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin: 36px 0 0;
  padding: 0;
  list-style: none;
}

.timeline li {
  min-height: 170px;
  border-top: 6px solid var(--orange);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 12px;
  font-size: 1.12rem;
}

.manual-band {
  display: grid;
  grid-template-columns: 0.7fr 1fr auto;
  gap: 28px;
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #eef6f4;
  padding: 46px max(32px, calc((100vw - 1120px) / 2));
}

.manual-band p {
  margin-bottom: 0;
}

.site-footer {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.7);
  padding: 0 32px;
}

.site-footer span {
  color: var(--white);
  font-weight: 900;
}

.site-footer a {
  color: var(--orange);
  font-weight: 750;
  text-decoration: none;
}

.legal-page {
  width: min(900px, calc(100% - 64px));
  margin: 0 auto;
  padding: 78px 0;
}

.legal-hero {
  border-bottom: 1px solid var(--line);
  padding-bottom: 34px;
}

.legal-hero h1 {
  max-width: none;
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 4.5rem;
}

.legal-hero p {
  max-width: 64ch;
  color: var(--muted);
  font-size: 1.15rem;
}

.legal-content {
  display: grid;
  gap: 34px;
  padding-top: 40px;
}

.legal-section {
  border-bottom: 1px solid var(--line);
  padding-bottom: 30px;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 1.65rem;
}

.legal-section p,
.legal-section li,
.legal-updated {
  color: var(--muted);
  font-size: 1.02rem;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.25rem;
}

.legal-section li + li {
  margin-top: 10px;
}

.legal-section a {
  color: var(--orange-dark);
  font-weight: 800;
}

.legal-updated {
  margin-bottom: 0;
  font-weight: 800;
}

.support-page {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto;
  padding: 78px 0;
}

.support-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.6fr);
  gap: 44px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding-bottom: 54px;
}

.support-hero h1 {
  max-width: 10ch;
  color: var(--ink);
  font-size: 5.3rem;
}

.support-hero p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.support-actions .button.secondary {
  border-color: var(--black);
  color: var(--black);
}

.support-shot {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 12px;
  box-shadow: var(--shadow);
}

.support-shot img {
  display: block;
  width: 100%;
  height: clamp(360px, 58vw, 620px);
  border-radius: 6px;
  object-fit: cover;
  object-position: center bottom;
}

.support-shot figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.support-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--line);
}

.support-section h2 {
  max-width: 760px;
  margin-bottom: 24px;
}

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

.support-card,
.support-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 36px rgba(5, 5, 5, 0.05);
}

.support-card h3,
.support-panel h3 {
  margin-bottom: 10px;
}

.support-card p,
.support-panel p,
.support-panel li {
  color: var(--muted);
}

.support-card p,
.support-panel p {
  margin-bottom: 0;
}

.support-panel {
  display: grid;
  gap: 20px;
}

.support-panel ul,
.support-panel ol {
  margin: 0;
  padding-left: 1.25rem;
}

.support-panel li + li {
  margin-top: 10px;
}

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

.support-note {
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.98rem;
  font-weight: 750;
}

/* ── Ecosystem ─────────────────────────────────────────────────── */

.ecosystem-band {
  background: var(--ink);
  color: var(--white);
  padding: 88px 0 72px;
}

.ecosystem-intro {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto 64px;
}

.ecosystem-intro h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.ecosystem-intro-lead {
  max-width: 64ch;
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.1rem;
  margin-bottom: 0;
}

.ecosystem-product {
  padding: 48px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ecosystem-product-meta {
  width: min(1120px, calc(100% - 64px));
  margin: 0 auto 28px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255, 157, 0, 0.45);
  border-radius: 999px;
  padding: 4px 14px;
  color: var(--orange);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ecosystem-product h3 {
  color: var(--white);
  font-size: 1.65rem;
  margin-bottom: 10px;
}

.ecosystem-product p {
  max-width: 62ch;
  color: rgba(255, 255, 255, 0.62);
  font-size: 1.05rem;
  margin-bottom: 0;
}

.ecosystem-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.18) transparent;
  padding-left: max(32px, calc((100vw - 1120px) / 2));
  padding-right: max(32px, calc((100vw - 1120px) / 2));
  padding-bottom: 16px;
}

.ecosystem-scroll::-webkit-scrollbar {
  height: 3px;
}

.ecosystem-scroll::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

.ecosystem-scroll img {
  scroll-snap-align: start;
  flex-shrink: 0;
  height: 480px;
  width: auto;
  border-radius: 20px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.55);
}

.ecosystem-scroll--watch img {
  height: 300px;
  border-radius: 16px;
}

.ecosystem-scroll--web img {
  height: 380px;
  width: 640px;
  border-radius: 10px;
  object-fit: cover;
  object-position: top center;
}

@media (max-width: 980px) {
  .hero-media {
    background-position: right -120px center;
    background-size: 560px;
    opacity: 0.42;
  }

  h1 {
    font-size: 5rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .privacy-band,
  .manual-band,
  .support-hero,
  .support-columns {
    grid-template-columns: 1fr;
  }

  .ecosystem-scroll img {
    height: 400px;
  }

  .ecosystem-scroll--watch img {
    height: 240px;
  }

  .ecosystem-scroll--web img {
    height: 300px;
    width: 500px;
  }

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

  .manual-band .button {
    width: fit-content;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .header-actions {
    width: 100%;
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    justify-content: flex-start;
    gap: 12px;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    background: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(5, 5, 5, 0.84) 72%, rgba(5, 5, 5, 0.76) 100%);
  }

  .hero-media {
    background-position: center 26px;
    background-size: 330px;
    opacity: 0.26;
  }

  .hero-content,
  .section-shell,
  .support-page {
    width: min(100% - 32px, 660px);
  }

  .hero-content {
    padding: 88px 0 44px;
  }

  h1 {
    font-size: 3.7rem;
  }

  h2 {
    font-size: 2rem;
  }

  .lead,
  .intro-band p {
    font-size: 1.05rem;
  }

  .hero-stats,
  .feature-grid,
  .support-grid,
  .timeline,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading {
    gap: 18px;
  }

  .section-shell {
    padding: 58px 0;
  }

  .intro-band,
  .privacy-band,
  .manual-band {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ecosystem-band {
    padding: 58px 0 48px;
  }

  .ecosystem-intro {
    width: min(100% - 32px, 660px);
    margin-bottom: 44px;
  }

  .ecosystem-product-meta {
    width: min(100% - 32px, 660px);
  }

  .ecosystem-scroll {
    padding-left: 16px;
    padding-right: 16px;
  }

  .ecosystem-scroll img {
    height: 340px;
  }

  .ecosystem-scroll--watch img {
    height: 200px;
  }

  .ecosystem-scroll--web img {
    height: 220px;
    width: 360px;
  }

  .feature-card,
  .timeline li {
    min-height: auto;
  }

  .site-footer {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 16px;
  }

  .legal-page {
    width: min(100% - 32px, 660px);
    padding: 52px 0;
  }

  .legal-hero h1 {
    font-size: 3rem;
  }

  .support-page {
    padding: 52px 0;
  }

  .support-hero {
    gap: 28px;
    padding-bottom: 42px;
  }

  .support-hero h1 {
    font-size: 3.3rem;
  }

  .support-section {
    padding: 48px 0;
  }
}

@media (max-width: 420px) {
  .brand span {
    white-space: normal;
  }

  h1 {
    font-size: 3.15rem;
  }

  .hero-actions,
  .support-actions,
  .support-actions .button,
  .hero-actions .button,
  .manual-band .button {
    width: 100%;
  }
}
