:root {
  --ink: #101827;
  --muted: #516173;
  --soft: #f5fbff;
  --paper: #ffffff;
  --line: #dcebf5;
  --blue: #1677d2;
  --teal: #00a990;
  --coral: #ff6b5f;
  --amber: #f6c742;
  --shadow: 0 22px 60px rgba(29, 60, 93, 0.14);
  --radius: 16px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(245, 251, 255, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(220, 235, 245, 0.8);
}

.nav {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--coral), var(--blue));
  box-shadow: 0 10px 24px rgba(22, 119, 210, 0.22);
}

.brand-logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  box-shadow: 0 12px 28px rgba(22, 119, 210, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a:hover {
  color: var(--ink);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  font-weight: 760;
  box-shadow: 0 12px 32px rgba(29, 60, 93, 0.08);
}

.button.primary {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}

.button.subtle {
  background: transparent;
  box-shadow: none;
}

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

.section {
  max-width: 1120px;
  margin: 0 auto;
  padding: 88px 24px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: 52px;
  align-items: center;
  min-height: calc(100vh - 68px);
  padding-top: 64px;
  padding-bottom: 64px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  max-width: 760px;
  font-size: clamp(46px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: 0;
}

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

.lede {
  max-width: 640px;
  color: var(--muted);
  font-size: 20px;
}

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

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.showcase {
  position: relative;
  min-height: 480px;
}

.shottray-demo {
  min-height: 500px;
}

.desktop-window {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: #f9fdff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.window-bar {
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  background: #eef8ff;
  border-bottom: 1px solid var(--line);
}

.dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--coral);
}

.dot:nth-child(2) {
  background: var(--amber);
}

.dot:nth-child(3) {
  background: var(--teal);
}

.window-body {
  padding: 28px;
}

.screen-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
}

.fake-sidebar,
.fake-content {
  min-height: 280px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--line);
}

.fake-sidebar {
  padding: 18px;
}

.fake-content {
  padding: 22px;
}

.line {
  height: 12px;
  margin-bottom: 12px;
  border-radius: 999px;
  background: #dfeef8;
}

.line.short {
  width: 58%;
}

.line.medium {
  width: 76%;
}

.comparison-window {
  width: 100%;
}

.comparison-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.comparison-pane {
  min-width: 0;
}

.demo-label {
  margin-bottom: 16px;
  color: var(--coral);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.demo-label.success {
  color: var(--teal);
}

.finder-list {
  display: grid;
  gap: 10px;
}

.finder-row {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 12px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 13px;
  font-weight: 720;
}

.muted-file {
  color: #6c7a8b;
  background: #f3f8fc;
  border: 1px solid #e0edf6;
}

.highlighted-file {
  color: #65302b;
  background: #fff1ef;
  border: 1px solid rgba(255, 107, 95, 0.34);
}

.clean-file {
  color: #103a35;
  background: #effbf8;
  border: 1px solid rgba(0, 169, 144, 0.25);
}

.file-icon {
  width: 20px;
  height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, #d7e9f6, #f8fdff);
  border: 1px solid #c9dce9;
}

.file-icon.warning {
  background: linear-gradient(135deg, #ffd6d1, #fff8f6);
  border-color: rgba(255, 107, 95, 0.38);
}

.file-icon.fixed {
  background: linear-gradient(135deg, #b9f1e7, #f5fffd);
  border-color: rgba(0, 169, 144, 0.34);
}

.rename-arrow {
  display: grid;
  place-items: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: #fff;
  background: var(--blue);
  box-shadow: 0 16px 38px rgba(22, 119, 210, 0.24);
  font-size: 30px;
  font-weight: 850;
}

.tray-card {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: min(94%, 520px);
  padding: 14px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid #bfe2f8;
  box-shadow: 0 24px 70px rgba(22, 119, 210, 0.18);
}

.tray-row {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.thumb {
  width: 64px;
  height: 48px;
  border-radius: 9px;
  background: linear-gradient(135deg, #19324f, #8ad9ff);
}

.badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 6px;
  padding: 4px 9px;
  border-radius: 999px;
  color: var(--coral);
  background: rgba(255, 107, 95, 0.13);
  font-size: 12px;
  font-weight: 850;
}

.filename {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--ink);
  font-size: 18px;
  font-weight: 820;
}

.demo-tray-card {
  left: 48px;
  right: 48px;
  bottom: 16px;
  z-index: 4;
  width: auto;
}

.microcopy {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 650;
}

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

.card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: 0 14px 42px rgba(29, 60, 93, 0.08);
}

.card p,
.feature p,
.product-copy p {
  color: var(--muted);
}

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

.feature {
  padding: 22px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
}

.product-card {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin-top: 30px;
  padding: 22px;
  border-radius: 20px;
  background: var(--paper);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.app-icon {
  width: 86px;
  height: 86px;
  border-radius: 20px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 42px;
  align-items: start;
}

.panel {
  padding: 26px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 44px rgba(29, 60, 93, 0.08);
}

.secondary-panel {
  margin-top: 34px;
}

.price {
  font-size: 42px;
  font-weight: 850;
  letter-spacing: 0;
}

.list {
  padding-left: 20px;
  color: var(--muted);
}

.list li {
  margin-bottom: 8px;
}

.footer {
  border-top: 1px solid var(--line);
  background: #ffffff;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
}

.content-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 78px 24px;
}

.content-page p,
.content-page li {
  color: var(--muted);
}

.notice {
  padding: 18px;
  border-radius: 14px;
  background: #fff8dc;
  border: 1px solid rgba(246, 199, 66, 0.45);
  color: #57440b;
}

@media (max-width: 860px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero,
  .split,
  .product-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .showcase {
    min-height: 420px;
  }

  .shottray-demo {
    min-height: 690px;
  }

  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .rename-arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }

  .demo-tray-card {
    left: 18px;
    right: 18px;
  }

  .cards,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    align-items: start;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: 44px;
  }

  .section {
    padding: 64px 18px;
  }

  .window-body {
    padding: 18px;
  }

  .screen-grid {
    grid-template-columns: 1fr;
  }

  .fake-sidebar {
    min-height: 120px;
  }

  .fake-content {
    min-height: 210px;
  }

  .tray-card {
    left: 10px;
    right: 10px;
    width: auto;
  }

  .finder-row {
    font-size: 12px;
  }
}
