:root {
  color-scheme: light;
  --ink: #17151f;
  --muted: #625e6c;
  --subtle: #f6f4f8;
  --paper: #ffffff;
  --line: #e5e0eb;
  --brand: #3b168f;
  --brand-2: #c2187a;
  --accent: #0f766e;
  --amber: #d97706;
  --shadow: 0 20px 60px rgba(35, 22, 82, .12);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--subtle);
  color: var(--ink);
  line-height: 1.58;
}

a { color: inherit; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 12px clamp(18px, 5vw, 72px);
  background: rgba(255, 255, 255, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(59, 22, 143, .18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2.2vw, 26px);
  color: var(--muted);
  font-size: 14px;
}

nav a {
  text-decoration: none;
}

nav a:hover {
  color: var(--brand-2);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(30px, 4.7vw, 56px);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.eyebrow {
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero {
  padding: clamp(42px, 7vw, 96px) clamp(18px, 6vw, 86px);
}

.corporate-hero {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  min-height: calc(100vh - 72px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, .86)),
    url("assets/brand-visual.png") right center / min(52vw, 760px) auto no-repeat;
}

.hero-copy {
  max-width: 760px;
}

.lead {
  max-width: 650px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 23px);
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-weight: 760;
  text-decoration: none;
}

.button.primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 14px 30px rgba(59, 22, 143, .2);
}

.button.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--brand);
}

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

.trust-list div {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .92);
}

.trust-list dt {
  font-weight: 800;
}

.trust-list dd {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 14px;
}

.hero-visual {
  display: grid;
  gap: 16px;
  align-content: center;
}

.hero-art {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, .6);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

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

.device-row img {
  width: 100%;
  max-height: 430px;
  object-fit: cover;
  object-position: top;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(35, 22, 82, .16);
}

.metric-band {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 clamp(18px, 6vw, 86px);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
  transform: translateY(-28px);
  box-shadow: var(--shadow);
}

.metric-band article {
  display: grid;
  gap: 4px;
  padding: 20px;
  background: var(--paper);
}

.metric-band strong {
  color: var(--brand);
  font-size: 20px;
}

.metric-band span,
.section-heading p,
.feature-grid p,
.assurance-copy p,
.assurance-card p,
.resource-panel p,
.resource-links span,
.content-page p,
.content-page li {
  color: var(--muted);
}

.section {
  padding: clamp(58px, 8vw, 104px) clamp(18px, 6vw, 86px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 28px;
}

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

.feature-grid article,
.assurance-card,
.resource-panel,
.resource-links a,
.content-page {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 12px 34px rgba(35, 22, 82, .08);
}

.feature-grid article {
  padding: 24px;
}

.feature-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: var(--radius);
  background: #f1eef8;
  font-size: 23px;
}

.assurance {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: 28px;
  align-items: center;
  background: #fff;
}

.assurance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.assurance-links a {
  color: var(--brand);
  font-weight: 800;
}

.assurance-card {
  overflow: hidden;
}

.assurance-card img {
  display: block;
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: top;
  background: var(--subtle);
}

.assurance-card div {
  padding: 20px;
}

.screens {
  background: var(--subtle);
}

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

figure {
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 10px 28px rgba(35, 22, 82, .08);
}

figure img {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 18;
  object-fit: cover;
  object-position: top;
  background: #f0eef4;
}

figcaption {
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 800;
}

.resources {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 18px;
  align-items: stretch;
}

.resource-panel,
.resource-links a {
  padding: 24px;
}

.resource-links {
  display: grid;
  gap: 12px;
}

.resource-links a {
  display: grid;
  gap: 4px;
  text-decoration: none;
}

.resource-links strong {
  color: var(--brand);
  font-size: 18px;
}

.page {
  padding: clamp(28px, 6vw, 72px) clamp(18px, 6vw, 86px);
}

.content-page {
  max-width: 880px;
  padding: clamp(24px, 5vw, 54px);
}

.content-page h1 {
  color: var(--ink);
  font-size: clamp(36px, 6vw, 64px);
}

.content-page h2 {
  margin-top: 30px;
  font-size: 24px;
}

.content-page ul {
  padding-left: 20px;
}

.release-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.release-card {
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 34px rgba(35, 22, 82, .08);
}

.release-card h2 {
  font-size: clamp(24px, 3vw, 36px);
}

.release-meta {
  margin-bottom: 8px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 800;
}

.play-note {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid #dbeafe;
  border-radius: var(--radius);
  background: #eff6ff;
}

.play-note h3,
.release-section h3 {
  font-size: 18px;
}

.release-section {
  margin-top: 22px;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px clamp(18px, 6vw, 86px);
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
}

footer div {
  display: grid;
  gap: 2px;
}

.footer-identity span:last-child {
  margin-top: 4px;
  font-size: 13px;
}

footer a {
  color: var(--muted);
  text-decoration: none;
}

@media (max-width: 1040px) {
  .corporate-hero,
  .assurance,
  .resources {
    grid-template-columns: 1fr;
  }

  .corporate-hero {
    background: #fff;
  }

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

@media (max-width: 700px) {
  .topbar,
  footer {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    flex-wrap: wrap;
  }

  .hero {
    padding-top: 38px;
  }

  .trust-list,
  .metric-band,
  .feature-grid,
  .screen-showcase,
  .device-row {
    grid-template-columns: 1fr;
  }

  .metric-band {
    transform: none;
    margin-top: 0;
  }

  .device-row img {
    max-height: 520px;
  }
}
