:root {
  color-scheme: light;
  --primary: #0066cc;
  --primary-focus: #0071e3;
  --primary-dark-surface: #2997ff;
  --ink: #1d1d1f;
  --ink-muted: #6e6e73;
  --ink-muted-strong: #333333;
  --body-on-dark: #ffffff;
  --body-muted-on-dark: #cccccc;
  --canvas: #ffffff;
  --parchment: #f5f5f7;
  --surface-dark: #272729;
  --surface-dark-2: #252527;
  --hairline: #e0e0e0;
  --divider-soft: #f0f0f0;
  --shadow-product: 3px 5px 30px rgba(0, 0, 0, 0.18);
  --nav-height: 44px;
  --content-width: 1200px;
  --section-padding: 80px;
  --ease-standard: cubic-bezier(0.28, 0.11, 0.32, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "SF Pro Text", "PingFang SC", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--canvas);
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

.site {
  min-height: 100vh;
}

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

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  max-width: none;
  margin: 0;
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-left: max(20px, calc((100vw - var(--content-width)) / 2));
  padding-right: max(20px, calc((100vw - var(--content-width)) / 2));
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(180%) blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  color: var(--ink);
}

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

.brand-mark {
  display: grid;
  width: 28px;
  height: 22px;
  place-items: center;
  border-radius: 6px;
  background: linear-gradient(135deg, #49b8ff 0%, #005bcc 100%);
  color: #ffffff;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
}

.brand-text {
  min-width: 0;
  white-space: nowrap;
}

.brand-text strong,
.brand-text span {
  display: block;
}

.brand-text strong {
  font-size: 12px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -0.12px;
}

.brand-text span {
  display: none;
}

.nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.nav a {
  font-size: 12px;
  line-height: 1;
  letter-spacing: -0.12px;
  color: var(--ink-muted);
  transition: color 180ms var(--ease-standard);
}

.nav a:hover,
.nav a:focus-visible,
.nav a[aria-current="page"] {
  color: var(--primary);
}

main {
  background: var(--canvas);
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height) - 24px);
  padding: 84px 0 40px;
  overflow: hidden;
}

.hero-copy,
.page-hero {
  animation: fade-up 600ms var(--ease-standard) both;
}

.hero-product {
  background: #edf4fb;
}

.hero-background {
  position: absolute;
  inset: 0;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(1.02) contrast(1.01);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(244, 248, 252, 0.94) 0%, rgba(244, 248, 252, 0.72) 30%, rgba(244, 248, 252, 0.48) 56%, rgba(244, 248, 252, 0.82) 100%),
    linear-gradient(90deg, rgba(244, 248, 252, 0.98) 0%, rgba(244, 248, 252, 0.86) 28%, rgba(244, 248, 252, 0.38) 62%, rgba(244, 248, 252, 0.14) 100%);
}

.hero-shell,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  max-width: 720px;
}

.hero-shell h1,
.hero-shell p,
.hero-shell .eyebrow {
  color: var(--ink);
}

.hero-eyebrow {
  color: var(--primary);
}

.hero-lead {
  color: #415164;
}

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

.fact-pill {
  padding: 18px 18px 17px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.fact-pill strong,
.fact-pill span {
  display: block;
}

.fact-pill strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.fact-pill span {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.hero-showcase {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
  align-items: start;
}

.hero-panel {
  margin: 0;
  min-width: 0;
}

.hero-panel-wide {
  grid-column: 1 / -1;
}

.hero-panel figcaption {
  margin-top: 14px;
}

.hero-panel figcaption strong,
.hero-panel figcaption span {
  display: block;
}

.hero-panel figcaption strong {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.35;
}

.hero-panel figcaption span {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.5;
}

.shot-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #dbe8f4;
  box-shadow: 0 24px 50px rgba(7, 15, 23, 0.18);
}

.hero-panel .shot-frame {
  border-color: rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 22px 46px rgba(7, 15, 23, 0.16);
}

.shot-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-panel-wide .shot-frame,
.shot-frame-large,
.hero-panel .shot-frame {
  aspect-ratio: 16 / 10;
}

.button-ghost {
  background: rgba(255, 255, 255, 0.84);
  color: var(--ink);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

.button-ghost:hover {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
}

.hero-stage {
  position: relative;
  min-height: 520px;
  animation: fade-up 720ms var(--ease-standard) both;
}

.stage-device {
  position: absolute;
  border-radius: 30px;
  background: linear-gradient(180deg, #fdfdfd 0%, #ececef 100%);
  box-shadow: var(--shadow-product);
}

.stage-device-main {
  right: 36px;
  top: 22px;
  width: min(100%, 520px);
  aspect-ratio: 1.02;
}

.stage-device-side {
  left: 20px;
  bottom: 18px;
  width: min(58%, 270px);
  aspect-ratio: 0.72;
  background: linear-gradient(180deg, #2f2f31 0%, #1c1c1e 100%);
}

.stage-screen {
  position: absolute;
  inset: 14px;
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f6f6f7 100%);
  overflow: hidden;
}

.stage-screen-dark {
  background: linear-gradient(180deg, #101012 0%, #1f1f21 100%);
}

.screen-bar {
  height: 72px;
  background: var(--parchment);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.screen-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 22px;
}

.screen-grid span,
.screen-list span {
  display: block;
  border-radius: 18px;
}

.screen-grid span:nth-child(1) {
  height: 120px;
  background: #111111;
}

.screen-grid span:nth-child(2) {
  height: 120px;
  background: #f5f5f7;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.screen-grid span:nth-child(3) {
  height: 158px;
  background: linear-gradient(180deg, #0066cc 0%, #4ba0ff 100%);
}

.screen-grid span:nth-child(4) {
  height: 158px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.screen-chart {
  height: 150px;
  margin: 26px 20px 16px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(41, 151, 255, 0.4) 0%, rgba(41, 151, 255, 0) 100%),
    linear-gradient(135deg, #2997ff 0%, #0f4fa3 100%);
}

.screen-list {
  display: grid;
  gap: 12px;
  padding: 0 20px 20px;
}

.screen-list span {
  height: 56px;
  background: rgba(255, 255, 255, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 21px;
  line-height: 1.19;
  font-weight: 600;
  letter-spacing: 0.23px;
  color: var(--ink);
}

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

h1,
h2,
h3 {
  font-family: "SF Pro Display", "PingFang SC", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  font-weight: 600;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(38px, 6vw, 56px);
  line-height: 1.07;
  letter-spacing: -0.28px;
  max-width: 11ch;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.3px;
}

h3 {
  margin-bottom: 0;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.22px;
}

.lead,
.section-head p,
.content p,
.aside-box p,
.notice,
.meta {
  font-size: 17px;
  letter-spacing: -0.37px;
  color: var(--ink-muted);
}

.lead {
  max-width: 620px;
  margin: 18px 0 0;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 22px;
  border: 0;
  border-radius: 9999px;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.37px;
  transition: transform 180ms var(--ease-standard), background-color 180ms var(--ease-standard), color 180ms var(--ease-standard);
}

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

.button:active {
  transform: scale(0.95);
}

.button:focus-visible,
.nav a:focus-visible,
a:focus-visible {
  outline: 2px solid var(--primary-focus);
  outline-offset: 2px;
}

.button-primary {
  background: var(--primary);
  color: #ffffff;
}

.button-primary:hover {
  background: var(--primary-focus);
}

.button-secondary {
  background: var(--canvas);
  color: var(--primary);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.button-secondary:hover {
  color: var(--primary-focus);
}

.band {
  padding: var(--section-padding) 0;
}

.band-tight {
  padding-top: 48px;
}

#local {
  background: var(--parchment);
}

.band-surface {
  background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
}

.band-dark {
  background: linear-gradient(180deg, #0d1827 0%, #122338 100%);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 42px;
  margin-bottom: 54px;
}

.section-head p {
  margin-bottom: 0;
  max-width: 760px;
}

.section-head-light h2,
.section-head-light p,
.section-head-light .eyebrow {
  color: #ffffff;
}

.section-head-light p,
.section-head-light .eyebrow {
  color: rgba(255, 255, 255, 0.72);
}

.grid {
  display: grid;
}

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

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

.feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.95fr);
  gap: 28px;
  align-items: stretch;
}

.feature-copy {
  min-width: 0;
}

.feature-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 22px 24px;
  border: 1px solid var(--hairline);
  border-radius: 18px;
  background: #ffffff;
}

.feature-list strong,
.feature-list span {
  display: block;
}

.feature-list strong {
  margin-bottom: 8px;
  font-size: 20px;
  line-height: 1.35;
}

.feature-list span {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

.card {
  min-width: 0;
  padding: 32px;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  animation: fade-up 520ms var(--ease-standard) both;
}

.card h3 {
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: -0.37px;
}

.card p {
  margin: 14px 0 0;
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.37px;
  color: var(--ink-muted);
}

.card-link {
  margin-top: 18px;
  margin-bottom: 0;
}

.card-link a,
.aside-box a,
.content a,
.footer a {
  color: var(--primary);
}

.card-dark {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.1);
}

.card-dark h3 {
  color: #ffffff;
}

.card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.card-dark .card-link a {
  color: #8dc9ff;
}

.support-note {
  margin-top: 14px;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 14px;
  border-radius: 9999px;
  background: var(--parchment);
  color: var(--ink-muted-strong);
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: -0.22px;
}

.tag-dark {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.86);
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
  gap: 20px;
}

.gallery-card {
  min-width: 0;
}

.gallery-card .shot-frame {
  aspect-ratio: 16 / 10;
}

.gallery-card h3 {
  margin-top: 14px;
  font-size: 22px;
  line-height: 1.28;
  letter-spacing: -0.24px;
}

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

.workspace {
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  overflow: hidden;
  background: var(--canvas);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.workspace-side {
  padding: 32px 28px;
  background: #ebebef;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.workspace-side strong {
  display: block;
  margin-bottom: 22px;
  font-size: 21px;
  line-height: 1.19;
  letter-spacing: 0.23px;
}

.side-list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.side-list li {
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--ink-muted-strong);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.37px;
}

.side-list li:first-child {
  color: var(--ink);
  font-weight: 600;
}

.side-list li:last-child {
  border-bottom: 0;
}

.workspace-main {
  padding: 36px 32px;
}

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

.note-card {
  min-height: 164px;
  padding: 24px;
  background: #f5f5f7;
  border-radius: 18px;
}

.note-card:nth-child(2n) {
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.note-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 28px;
  line-height: 1.14;
  letter-spacing: -0.22px;
}

.note-card span {
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.37px;
}

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

.principle {
  min-width: 0;
  min-height: 220px;
  padding: 28px 24px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(12px);
}

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

.principle strong {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: -0.24px;
}

.principle span {
  color: var(--ink-muted);
  font-size: 16px;
  line-height: 1.6;
}

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

.page-hero h1 {
  max-width: 14ch;
  margin-top: 0;
}

.page-hero p {
  max-width: 760px;
  margin: 18px 0 0;
}

.meta {
  font-size: 14px;
  line-height: 1.43;
  letter-spacing: -0.22px;
}

.content-page {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 42px;
  align-items: start;
  padding: 12px 0 72px;
}

.content {
  display: grid;
  gap: 0;
}

.content section {
  padding: 26px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.content section:last-child {
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.content h2 {
  margin-bottom: 12px;
  font-size: 32px;
  line-height: 1.1;
  letter-spacing: -0.3px;
}

.content p:last-child,
.card p:last-child,
.aside-box p:last-child {
  margin-bottom: 0;
}

.content ul {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--ink-muted);
  font-size: 17px;
  line-height: 1.47;
  letter-spacing: -0.37px;
}

.content li + li {
  margin-top: 8px;
}

.aside {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
  display: grid;
  gap: 18px;
}

.aside-box {
  padding: 28px;
  background: var(--parchment);
  border-radius: 18px;
  animation: fade-up 560ms var(--ease-standard) both;
}

.aside-box strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink-muted-strong);
  font-size: 14px;
  line-height: 1.29;
  letter-spacing: -0.22px;
}

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

.contact-grid .card {
  padding: 28px;
}

.notice {
  margin-top: 18px;
  padding: 22px 24px;
  background: var(--parchment);
  border-radius: 18px;
}

.footer {
  background: var(--parchment);
  padding: 38px 0 24px;
  color: var(--ink-muted-strong);
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.12px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: -0.12px;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1023px) {
  :root {
    --section-padding: 64px;
  }

  .workspace,
  .content-page,
  .hero-shell,
  .feature-row {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-showcase,
  .principles {
    grid-template-columns: 1fr;
  }

  .hero-showcase {
    margin-top: 32px;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .grid-3,
  .grid-2,
  .note-board,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .workspace-side {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .aside {
    position: static;
  }
}

@media (max-width: 767px) {
  .wrap {
    width: min(calc(100% - 32px), var(--content-width));
  }

  .topbar {
    gap: 12px;
    flex-wrap: wrap;
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav {
    gap: 16px;
  }

  .hero {
    padding-top: 48px;
  }

  .hero-shell {
    gap: 20px;
  }

  .hero-showcase {
    gap: 16px;
  }

  .fact-pill,
  .feature-list li,
  .principle,
  .card,
  .contact-grid .card,
  .aside-box,
  .notice {
    padding: 22px 20px;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .eyebrow {
    font-size: 18px;
  }

  h1 {
    font-size: 38px;
    max-width: none;
  }

  h2,
  .content h2 {
    font-size: 30px;
  }

  h3,
  .card h3,
  .note-card strong {
    font-size: 24px;
  }

  .lead,
  .section-head p,
  .content p,
  .content ul,
  .note-card span,
  .aside-box p,
  .notice,
  .feature-list span,
  .principle span,
  .gallery-card p {
    font-size: 16px;
  }

  .workspace-main {
    padding: 28px 24px;
  }

  .page-hero {
    padding-top: 56px;
  }

  .page-hero h1 {
    font-size: 38px;
  }
}
