:root {
  --bg: #121212;
  --panel: #17181b;
  --panel-soft: #1c1d21;
  --panel-strong: #23252b;
  --text: #f1ece8;
  --headline: #f1ece8;
  --body-text: #bcc5da;
  --label-text: #8e95a6;
  --muted: #a0a5b3;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(0, 122, 255, 0.42);
  --accent: #9fb8ff;
  --accent-strong: #007aff;
  --accent-deep: #005fcc;
  --green: #28cd41;
  --shadow: 0 30px 60px rgba(0, 0, 0, 0.35);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  /* GSAP ScrollToPlugin handles smooth scrolling when JS is available.
     This fallback covers no-JS and reduced-motion gracefully. */
  scroll-padding-top: 72px;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

body {
  margin: 0;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top center, rgba(88, 112, 168, 0.12), transparent 28%),
    linear-gradient(180deg, #101113 0%, #0c0d0f 100%);
}

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

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

svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-shell {
  min-height: 100vh;
}

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

.section {
  padding: 88px 0;
}

.section-bordered {
  border-top: 1px solid var(--line);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background: rgba(12, 13, 15, 0.86);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.brand-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow:
    0 5px 14px rgba(0, 0, 0, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.footer-brand {
  gap: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.site-nav a,
.footer-grid a,
.footer-meta,
.footer-copy,
.section-heading p,
.lead,
.feature-card p,
.workflow-step p,
.report-copy p,
.detail-card p,
.pricing-copy,
.faq-item p {
  color: var(--body-text);
}

.site-nav a {
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color 180ms ease;
}

.site-nav a:hover,
.footer-grid a:hover {
  color: var(--text);
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.icon-button {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #d7dae3;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 30px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  color: #0b1328;
  background: linear-gradient(180deg, #a9befd 0%, #89aaf9 100%);
  box-shadow: 0 18px 36px rgba(73, 121, 255, 0.18);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.button-small {
  min-height: 44px;
  padding: 0 18px;
  border-radius: 12px;
  font-size: 0.92rem;
}

.button-large {
  min-width: min(100%, 320px);
}

.button-notices {
  min-width: min(100%, 260px);
  padding-inline: 28px;
}

.button-icon {
  width: 1.05em;
  height: 1.05em;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero {
  padding-top: 62px;
}

.hero-grid,
.showcase-grid {
  display: grid;
  gap: 56px;
  align-items: start;
}

.hero-grid {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.12fr);
  gap: 48px;
}

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

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

h1 {
  font-size: clamp(3rem, 7vw, 5.25rem);
  line-height: 0.96;
  letter-spacing: -0.06em;
  max-width: 10ch;
  color: var(--headline);
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -0.05em;
  color: var(--headline);
  font-weight: 650;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  line-height: 1.14;
  letter-spacing: -0.03em;
  color: var(--headline);
  font-weight: 600;
}

.lead,
.section-heading p,
.report-copy p,
.pricing-copy,
.faq-item p {
  font-size: 1.04rem;
  line-height: 1.72;
  letter-spacing: -0.01em;
}

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

.hero-copy .lead {
  margin-top: 24px;
}

.hero-visual {
  align-self: start;
  padding-top: 6px;
}

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

.window-frame,
.device-frame {
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 30px;
  background: linear-gradient(180deg, #191b20 0%, #111215 100%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.window-frame img,
.device-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.window-frame {
  position: relative;
}

.window-frame img {
  aspect-ratio: 1.35 / 1;
}

.hero-frame {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.hero-shot {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transform: none;
}

.window-chrome {
  position: absolute;
  top: 14px;
  left: 18px;
  display: flex;
  gap: 8px;
  z-index: 1;
}

.window-chrome span {
  width: 11px;
  height: 11px;
  border-radius: 50%;
}

.window-chrome span:nth-child(1) {
  background: #ff5f57;
}

.window-chrome span:nth-child(2) {
  background: #febc2e;
}

.window-chrome span:nth-child(3) {
  background: #28c840;
}

.section-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 40px;
}

.section-heading-centered {
  text-align: center;
  justify-items: center;
}

.section-heading p {
  max-width: 760px;
}

.feature-grid,
.workflow-grid,
.detail-grid,
.faq-grid,
.footer-grid {
  display: grid;
  gap: 24px;
}

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

.feature-showcase {
  margin-top: 34px;
}

.feature-showcase-frame {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.feature-showcase-shot,
.feature-showcase-video {
  display: block;
  width: 100%;
  height: auto;
}

.feature-showcase-video {
  border-radius: 24px;
  background: #0a0b0d;
  box-shadow: var(--shadow);
}

.feature-card,
.detail-card,
.faq-item,
.pricing-card,
.banner-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(31, 33, 38, 0.9) 0%, rgba(23, 24, 27, 0.95) 100%);
}

.feature-card,
.detail-card,
.faq-item {
  padding: 30px;
}

.feature-card {
  min-height: 250px;
  overflow: hidden;
  isolation: isolate;
}

.feature-card h3,
.detail-card h3 {
  margin-top: 22px;
  margin-bottom: 16px;
}

.feature-card p,
.detail-card p,
.workflow-step p {
  line-height: 1.7;
}

.feature-icon {
  width: 32px;
  height: 32px;
  color: var(--accent);
}

.feature-icon-green {
  color: var(--green);
}

.feature-card::before,
.feature-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.feature-card::before {
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 12%, rgba(120, 158, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(38, 48, 72, 0.55), rgba(18, 20, 25, 0.05) 62%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.feature-card::after {
  top: -35%;
  left: -75%;
  width: 46%;
  height: 170%;
  z-index: 0;
  background: linear-gradient(
    105deg,
    transparent,
    rgba(255, 255, 255, 0.08),
    transparent
  );
  transform: rotate(12deg);
  transition: left 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-card .feature-icon,
.feature-card h3 {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    color 0.35s ease,
    filter 0.35s ease;
}

.workflow-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 24%);
}

.workflow-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  margin-bottom: 64px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(28, 29, 33, 0.9), rgba(20, 21, 24, 0.96));
}

.workflow-step {
  padding-right: 24px;
}

.workflow-number {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: #3b4357;
}

.workflow-step h3 {
  margin-bottom: 12px;
}

.showcase-grid {
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1.08fr);
  gap: 72px;
  align-items: center;
  margin-bottom: 42px;
}

.report-copy h2 {
  max-width: 8ch;
  font-size: clamp(2.8rem, 4.8vw, 4.6rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
}

.report-copy p {
  max-width: 34ch;
  margin-top: 28px;
}

.report-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.report-highlight {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.79rem;
  font-weight: 600;
  white-space: nowrap;
}

.report-highlight svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.report-highlight-success {
  color: #43e45f;
}

.report-highlight-doc {
  color: #a9baf0;
}

.pricing-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.52em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(180deg, #53e270, #359b46);
  box-shadow: 0 0 0 3px rgba(83, 226, 112, 0.08);
}

.report-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.28);
}

.report-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 26px;
}

.meter,
.tag-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.meter {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 8px 12px;
  width: 100%;
  padding: 14px 30px 0;
  border-top: 0;
  font-size: 0.82rem;
  color: #c4c8d5;
}

.meter span {
  line-height: 1.2;
}

.meter span:last-child {
  text-align: right;
  white-space: nowrap;
}

.meter {
  --meter-fill: 72%;
}

.meter::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    #b8cbff 0%,
    #ea9f84 var(--meter-fill),
    rgba(255, 255, 255, 0.1) var(--meter-fill)
  );
}

.tag-row span {
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #c6c9d4;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
}

.cta-panel {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 18px;
  padding: 76px 20px 8px;
}

.cta-panel p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.pricing-section {
  padding-bottom: 110px;
}

.pricing-card {
  padding: 42px;
  max-width: 920px;
  margin: 0 auto 56px;
  border-color: var(--line-strong);
}

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  padding: 14px 22px;
  border-radius: 0 var(--radius) 0 var(--radius-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: linear-gradient(180deg, #73a2ff 0%, #4e88ff 100%);
  color: #102149;
}

.pricing-tier {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 600;
  text-align: center;
}

.pricing-card h3,
.pricing-copy,
.pricing-amount {
  text-align: center;
}

.pricing-card h3 {
  margin-top: 10px;
}

.pricing-amount {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 18px;
}

.price {
  font-size: clamp(3.5rem, 8vw, 5rem);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.price-term {
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
}

.pricing-copy {
  max-width: 680px;
  margin: 0 auto;
}

.pricing-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 34px;
  list-style: none;
  padding: 0;
  margin: 34px 0 0;
}

.pricing-list li {
  position: relative;
  padding-left: 22px;
  line-height: 1.6;
  color: #d8dbe3;
}

.pricing-button {
  width: 100%;
  margin-top: 34px;
}

.compact-heading {
  margin-bottom: 30px;
}

.table-wrap {
  margin-bottom: 56px;
}

.feature-table {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.02);
}

.table-row {
  display: grid;
  grid-template-columns: 0.95fr 2fr 0.4fr;
  gap: 18px;
  align-items: center;
  padding: 22px 24px;
  border-top: 1px solid var(--line);
}

.table-row:first-child {
  border-top: 0;
}

.table-head {
  color: #d6dae6;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.04);
}

.table-row span:nth-child(1) {
  font-weight: 700;
}

.table-check {
  justify-self: center;
  font-size: 1.6rem;
  color: var(--green);
}

.faq-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 56px;
}

.faq-item h3 {
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 1.28rem;
  letter-spacing: -0.025em;
}

.banner-card {
  overflow: visible;
  min-height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(103, 134, 205, 0.08), transparent);
}

.banner-content {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 24px 8px;
}

.banner-content p {
  color: #d0d5e2;
  line-height: 1.7;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 48px 0 72px;
}

.legal-main {
  padding-top: 12px;
}

.legal-intro {
  display: grid;
  gap: 16px;
  margin-bottom: 34px;
}

.legal-intro h1 {
  max-width: none;
}

.legal-intro .lead {
  max-width: 860px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-meta span:not(.legal-pill) {
  position: relative;
  top: 1px;
}

.legal-pill {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(159, 184, 255, 0.22);
  background: rgba(159, 184, 255, 0.08);
  color: #d8e3ff;
  font-weight: 600;
}

.legal-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(25, 27, 32, 0.96), rgba(16, 17, 20, 0.96));
  box-shadow: var(--shadow);
}

.legal-block + .legal-block {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}

.legal-block h2 {
  margin: 0 0 14px;
  font-size: 1.26rem;
  line-height: 1.3;
  letter-spacing: -0.03em;
}

.legal-block h3 {
  margin: 24px 0 10px;
  font-size: 1rem;
  line-height: 1.4;
  font-weight: 700;
  color: var(--text);
}

.legal-card p,
.legal-card li {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.76;
}

.legal-card p {
  margin: 0;
}

.legal-card p + p {
  margin-top: 14px;
}

.legal-list {
  margin: 18px 0 0;
  padding-left: 20px;
  display: grid;
  gap: 10px;
}

.legal-card a {
  color: var(--accent);
}

.changelog-intro h1 {
  max-width: 11ch;
}

.changelog-list {
  display: grid;
  gap: 24px;
}

.release-card {
  display: grid;
  grid-template-columns: minmax(140px, 0.28fr) minmax(0, 1fr);
  gap: 44px;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(25, 27, 32, 0.96), rgba(16, 17, 20, 0.96));
  box-shadow: var(--shadow);
}

.release-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

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

.release-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(159, 184, 255, 0.2);
  border-radius: 999px;
  color: #d8e3ff;
  background: rgba(159, 184, 255, 0.08);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.release-content h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.release-summary {
  max-width: 720px;
  margin-top: 18px;
  color: var(--body-text);
  font-size: 1.04rem;
  line-height: 1.72;
}

.change-group {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.change-group h3 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 1.12rem;
}

.change-label {
  display: inline-flex;
  padding: 6px 9px;
  border-radius: 8px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.change-label-new {
  color: #bff7c8;
  background: rgba(40, 205, 65, 0.12);
  border: 1px solid rgba(40, 205, 65, 0.2);
}

.change-list {
  display: grid;
  gap: 14px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.change-list li {
  position: relative;
  padding-left: 22px;
  color: var(--body-text);
  line-height: 1.7;
}

.change-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(159, 184, 255, 0.08);
}

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

.release-actions .button {
  min-height: 50px;
  padding-inline: 22px;
}

.download-stack {
  display: grid;
  gap: 28px;
}

.download-card {
  min-height: 330px;
  padding-bottom: 54px;
}

.download-card h2,
.notice-card h2 {
  margin: 0 0 14px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.download-card p,
.notice-card p,
.notice-card li {
  color: var(--body-text);
  font-size: 1rem;
  line-height: 1.76;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 22px;
}

.download-card .button-primary {
  color: #ffffff;
}

.download-card .download-note {
  display: block;
  margin-top: 80px;
  padding-top: 6px;
  font-size: 0.96rem;
  line-height: 1.45;
  color: var(--muted);
}

.notice-callout {
  margin-top: 18px;
  padding: 18px 20px;
  border: 1px solid rgba(159, 184, 255, 0.16);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(21, 27, 40, 0.82), rgba(16, 18, 23, 0.82));
}

.notice-links {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.notice-links a {
  color: var(--accent);
}

.download-stack .notice-card {
  width: min(100%, 646px);
  justify-self: start;
  padding: 20px 24px;
}

.download-stack .notice-card h2 {
  margin-bottom: 8px;
  font-size: clamp(1.02rem, 1.7vw, 1.24rem);
  line-height: 1.16;
}

.download-stack .notice-card p,
.download-stack .notice-card li,
.download-stack .notice-card a {
  font-size: 0.82rem;
  line-height: 1.55;
}

.download-stack .notice-card .download-note {
  margin-top: 10px;
  padding-top: 0;
}

.download-stack .notice-card .notice-links {
  gap: 8px;
  margin-top: 14px;
}

.inline-code {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #dfe7ff;
  font-size: 0.92em;
}

.footer-grid {
  grid-template-columns: 1.25fr repeat(3, minmax(0, 0.7fr));
  align-items: start;
}

.footer-grid h3 {
  margin-bottom: 18px;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--label-text);
  font-weight: 600;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.footer-copy {
  max-width: 240px;
  margin: 12px 0 18px;
  line-height: 1.7;
}

.footer-meta {
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .feature-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .hero-copy,
  .report-copy {
    max-width: none;
  }

}

@media (max-width: 820px) {
  .container {
    width: min(var(--container), calc(100% - 28px));
  }

  .section {
    padding: 72px 0;
  }

  .site-nav {
    display: none;
  }

  .header-row {
    min-height: 66px;
  }

  .brand {
    font-size: 2.1rem;
  }

  h1 {
    max-width: 7ch;
  }

  .feature-grid,
  .workflow-grid,
  .detail-grid,
  .faq-grid,
  .pricing-list,
  .table-row {
    grid-template-columns: 1fr;
  }

  .workflow-step {
    padding-right: 0;
  }

  .workflow-grid {
    padding: 24px;
  }

  .pricing-card {
    padding: 26px 20px;
  }

  .legal-card {
    padding: 26px 20px;
  }

  .release-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 26px 20px;
  }

  .release-meta {
    flex-direction: row;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }

  .notice-callout {
    padding: 16px 18px;
  }

  .pricing-badge {
    position: static;
    width: fit-content;
    margin: -6px auto 18px;
    border-radius: 999px;
  }

  .table-row {
    gap: 8px;
    justify-items: start;
  }

  .table-row span:nth-child(3) {
    justify-self: start;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 560px) {
  .icon-button:nth-child(2) {
    display: none;
  }

  .header-actions {
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero-actions {
    flex-direction: column;
  }

  .feature-card,
  .detail-card,
  .faq-item {
    padding: 24px;
  }

  .window-frame,
  .device-frame,
  .feature-showcase-frame,
  .feature-card,
  .detail-card,
  .faq-item,
  .legal-card,
  .release-card,
  .pricing-card,
  .banner-card {
    border-radius: 22px;
  }

  .meter::before {
    left: 24px;
    right: 24px;
  }

  .meter {
    padding: 14px 24px 0;
  }
}

/* =================================================================
   Motion layer
   Used by animations.js (GSAP). All hover transitions are CSS-only
   so they work without JS; reveal states are handled entirely by
   GSAP `from` tweens so nothing is hidden if the script fails.
================================================================= */

/* Header sharpens slightly once the page is scrolled */
.site-header {
  transition: background 0.4s ease, border-color 0.4s ease,
    backdrop-filter 0.3s ease;
}

.site-header.is-scrolled {
  background: rgba(12, 13, 15, 0.94);
  border-bottom-color: rgba(255, 255, 255, 0.14);
}

/* During GSAP nav scroll: kill the expensive backdrop-filter and
   swap in an opaque background. The header sits over dark content
   during fast movement so the swap is invisible. The blur
   transitions back on when the scroll completes. */
.is-nav-scrolling .site-header {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  background: rgba(12, 13, 15, 0.98);
  transition: none;
}

/* Promote the page shell as a GPU layer during animated scroll
   so the compositor doesn't have to re-rasterise on every frame */
.is-nav-scrolling .site-shell {
  will-change: transform;
}

/* Freeze the hero glow during nav scroll: animated blur is
   expensive and invisible at scroll velocity */
.is-nav-scrolling .hero-visual::before {
  animation-play-state: paused;
}

/* Buttons: lift + sheen sweep on the primary action */
.button {
  transition: translate 0.25s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) {
  .button:hover {
    translate: 0 -2px;
  }
}

.button:active {
  translate: 0 0;
  transition-duration: 0.08s;
}

.button-primary {
  position: relative;
  overflow: hidden;
}

.button-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.22) 50%,
    transparent 100%
  );
  transform: skewX(-20deg);
  transition: left 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

@media (hover: hover) {
  .button-primary:hover::after {
    left: 130%;
  }
}

/* Cards: quiet lift on hover */
.feature-card,
.detail-card,
.faq-item {
  transition: translate 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.4s ease,
    background-color 0.35s ease;
}

@media (hover: hover) {
  .feature-card:hover {
    translate: 0 -8px;
    border-color: rgba(126, 164, 255, 0.58);
    box-shadow:
      0 24px 46px rgba(0, 0, 0, 0.32),
      0 0 0 1px rgba(126, 164, 255, 0.08),
      0 0 34px rgba(0, 122, 255, 0.12);
  }

  .feature-card:hover::before {
    opacity: 1;
  }

  .feature-card:hover::after {
    left: 135%;
  }

  .feature-card:hover .feature-icon {
    transform: translateY(-3px) scale(1.12) rotate(-4deg);
    filter: drop-shadow(0 0 10px currentColor);
  }

  .feature-card:hover h3 {
    transform: translateY(-2px);
    color: #ffffff;
  }

  .detail-card:hover,
  .faq-item:hover {
    translate: 0 -4px;
    border-color: rgba(255, 255, 255, 0.16);
  }
}

/* Hero shot: soft accent glow that breathes behind the frame */
.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -6%;
  border-radius: 40px;
  background: radial-gradient(
    60% 60% at 50% 45%,
    rgba(0, 122, 255, 0.16),
    transparent 70%
  );
  filter: blur(30px);
  z-index: -1;
  animation: hero-glow 7s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes hero-glow {
  from {
    opacity: 0.55;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1.03);
  }
}

/* Signature: the transfer beam across the workflow grid.
   Injected by animations.js; invisible without JS. */
.workflow-grid {
  position: relative;
}

.transfer-beam {
  position: absolute;
  top: 18px;
  left: 32px;
  right: 32px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  overflow: hidden;
  pointer-events: none;
}

.transfer-beam-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  transform-origin: left center;
  transform: scaleX(0);
  background: linear-gradient(90deg, #005fcc, #9fb8ff);
  box-shadow: 0 0 12px rgba(0, 122, 255, 0.55);
}

.workflow-number {
  transition: color 0.3s ease;
}

/* Respect reduced motion: stop ambient loops, keep hovers instant */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .hero-visual::before {
    animation: none;
  }

  .button,
  .feature-card,
  .detail-card,
  .faq-item,
  .button-primary::after {
    transition: none;
  }
}

@media (max-width: 900px) {
  .transfer-beam {
    display: none;
  }

  /* Animated blur is a constant GPU cost on phones.
     Keep the glow, freeze the breathing. */
  .hero-visual::before {
    animation: none;
    opacity: 0.8;
  }
}
