:root {
  color-scheme: light dark;
  --bg-top: #f3f8ff;
  --bg-bottom: #f8fbff;
  --surface: rgba(255, 255, 255, 0.86);
  --surface-strong: rgba(255, 255, 255, 0.96);
  --border: rgba(36, 91, 164, 0.12);
  --text: #162033;
  --muted: #64708a;
  --accent: #1473e6;
  --accent-strong: #0d5ed3;
  --accent-soft: rgba(20, 115, 230, 0.12);
  --shadow: 0 28px 80px rgba(34, 72, 138, 0.12);
  --hero-glow: radial-gradient(circle at top right, rgba(24, 119, 242, 0.25), transparent 42%);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg-top: #07111f;
    --bg-bottom: #0d1727;
    --surface: rgba(15, 24, 39, 0.8);
    --surface-strong: rgba(12, 21, 35, 0.94);
    --border: rgba(129, 170, 255, 0.14);
    --text: #eff5ff;
    --muted: #a2b1cb;
    --accent: #5da8ff;
    --accent-strong: #8bc2ff;
    --accent-soft: rgba(93, 168, 255, 0.15);
    --shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
    --hero-glow: radial-gradient(circle at top right, rgba(70, 144, 255, 0.24), transparent 42%);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    var(--hero-glow),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

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

a:hover {
  text-decoration: underline;
}

.site-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 24px 0 56px;
}

.site-header,
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.site-header {
  padding: 12px 4px 24px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}

.brand:hover {
  text-decoration: none;
}

.site-nav,
.footer-links,
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-nav a,
.footer-links a {
  color: var(--muted);
  font-weight: 600;
}

.site-nav a[aria-current="page"] {
  color: var(--text);
}

.hero,
.product-card,
.content-card,
.media-stage,
.media-shot,
.info-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 28px;
  padding: 40px;
  border-radius: 34px;
}

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

.eyebrow,
.product-kicker,
.meta-label,
.window-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

h1,
h2,
h3 {
  margin: 0;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

h1 {
  margin-top: 14px;
  font-size: clamp(2.8rem, 6vw, 5.6rem);
}

h2 {
  font-size: clamp(2rem, 3vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.lede {
  margin: 20px 0 0;
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.14rem;
  line-height: 1.75;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button:hover {
  text-decoration: none;
}

.button-primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: white;
}

.button-secondary {
  background: var(--accent-soft);
  color: var(--accent);
}

.hero-panel {
  display: flex;
  align-items: stretch;
}

.hero-panel-window {
  width: 100%;
  min-height: 320px;
  padding: 18px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(61, 133, 255, 0.14), transparent 55%),
    var(--surface-strong);
  border: 1px solid var(--border);
}

.window-dots {
  display: flex;
  gap: 8px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(128, 149, 183, 0.42);
}

.window-card {
  margin-top: 20px;
  display: grid;
  gap: 14px;
}

.window-stat {
  padding: 16px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--border);
}

.window-stat strong {
  display: block;
  margin-top: 8px;
  font-size: 1.2rem;
}

.media-showcase {
  display: grid;
  gap: 18px;
}

.media-stage {
  padding: 30px;
  border-radius: 28px;
}

.media-stage-window {
  min-height: 300px;
  padding: 22px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background:
    linear-gradient(160deg, rgba(20, 115, 230, 0.14), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 58%),
    var(--surface-strong);
}

.media-stage-body {
  margin-top: 22px;
  max-width: 56ch;
}

.media-stage-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.media-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
}

.media-badge-muted {
  background: rgba(128, 149, 183, 0.14);
  color: var(--muted);
}

.media-stage-body h3 {
  margin-top: 16px;
}

.media-stage-body p,
.media-shot p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.75;
}

.media-checklist {
  max-width: 60ch;
}

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

.screenshot-spotlight {
  align-items: start;
}

.screenshot-feature,
.screenshot-card {
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.screenshot-feature {
  border-radius: 24px;
  overflow: hidden;
}

.screenshot-feature img,
.screenshot-frame img {
  width: 100%;
  display: block;
}

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

.screenshot-card {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
}

.screenshot-frame {
  width: 100%;
  overflow: hidden;
  background: rgba(128, 149, 183, 0.08);
}

.screenshot-frame img {
  object-fit: cover;
  object-position: center top;
}

.screenshot-card figcaption {
  padding: 18px 20px 22px;
}

.screenshot-card figcaption p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.72;
}

.media-shot {
  padding: 22px;
  border-radius: 24px;
}

.media-shot-frame {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: 190px;
  padding: 18px;
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
}

.media-shot-frame strong {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  letter-spacing: -0.03em;
}

.media-shot-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  opacity: 0.8;
}

.media-shot-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 20px 18px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  filter: blur(14px);
}

.media-shot-frame-setup {
  background:
    linear-gradient(135deg, rgba(20, 115, 230, 0.28), rgba(20, 115, 230, 0.06)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.media-shot-frame-console {
  background:
    linear-gradient(135deg, rgba(55, 180, 118, 0.24), rgba(20, 115, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.media-shot-frame-tools {
  background:
    linear-gradient(135deg, rgba(157, 92, 255, 0.24), rgba(20, 115, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.media-shot-frame-storage {
  background:
    linear-gradient(135deg, rgba(255, 164, 58, 0.24), rgba(20, 115, 230, 0.08)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), transparent 50%);
}

.media-shot-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: #10213c;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section,
.content-page {
  margin-top: 32px;
}

.section-heading,
.page-hero {
  margin-bottom: 20px;
}

.section-heading p {
  margin: 0 0 10px;
}

.section-heading h2 {
  max-width: 18ch;
}

.product-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  padding: 30px;
  border-radius: 28px;
}

.product-copy p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.75;
}

.feature-list {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.product-meta {
  display: grid;
  gap: 14px;
}

.meta-card,
.info-card {
  padding: 20px;
  border-radius: 22px;
}

.meta-card a {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.info-grid,
.page-grid {
  display: grid;
  gap: 18px;
}

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

.info-card {
  color: var(--text);
}

.info-card p {
  color: var(--muted);
}

.info-card h3 {
  font-size: 1.5rem;
}

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

.page-grid-single {
  grid-template-columns: 1fr;
}

.content-card {
  padding: 24px;
  border-radius: 24px;
}

.content-card h2 {
  font-size: 1.5rem;
}

.content-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.doc-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 12px;
  color: var(--text);
}

.doc-table th,
.doc-table td {
  padding: 14px 12px;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
  text-align: left;
}

.doc-table th {
  color: var(--text);
  font-size: 0.92rem;
  letter-spacing: -0.01em;
}

.doc-table td {
  color: var(--muted);
  line-height: 1.65;
}

.site-footer {
  margin-top: 36px;
  padding: 8px 4px 0;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.photo-card {
  margin: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-radius: 28px;
  overflow: hidden;
}

.photo-frame {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.photo-card figcaption {
  padding: 20px 24px 24px;
}

.photo-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.photo-card figcaption p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

.badge-intro {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
}

.badge-intro p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  max-width: 60ch;
}

.badge-disclaimer {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
  font-style: italic;
}

.badge-section {
  margin-top: 24px;
}

.badge-category-label {
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
}

.badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge-card {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(34, 72, 138, 0.07);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

@media (max-width: 980px) {
  .hero,
  .product-card,
  .page-grid,
  .info-grid,
  .media-grid,
  .screenshot-grid,
  .photo-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 16px;
  }

  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero,
  .product-card,
  .content-card,
  .media-stage,
  .media-shot {
    padding: 24px;
    border-radius: 24px;
  }

  h1 {
    font-size: clamp(2.4rem, 15vw, 4rem);
  }
}
