:root {
  color: #111111;
  background: #f7f7f4;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
}

body {
  min-width: 320px;
  margin: 0;
}

a {
  color: inherit;
}

.site-header,
footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  min-height: 78px;
  border-bottom: 1px solid #ddddda;
}

.brand,
nav,
footer {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-decoration: none;
}

.brand img,
.app-icon img {
  width: 34px;
  height: 34px;
  border-radius: 8px;
}

nav {
  gap: 18px;
  font-weight: 800;
}

nav a,
footer a {
  text-decoration: none;
}

main {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 1.05fr);
  gap: 44px;
  align-items: center;
  min-height: calc(100vh - 78px);
  padding: 52px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #696969;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(42px, 8vw, 74px);
  line-height: 0.98;
}

h2 {
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  color: #4f4f4f;
  font-size: 19px;
  line-height: 1.55;
}

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

.primary-link,
.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 8px;
  font-weight: 900;
  text-decoration: none;
}

.primary-link {
  color: #ffffff;
  background: #111111;
}

.secondary-link {
  border: 1px solid #cfcfca;
  background: #ffffff;
}

.product-panel {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  min-height: 460px;
  overflow: hidden;
  border: 1px solid #d7d7d2;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 20px 60px rgb(0 0 0 / 8%);
}

.panel-sidebar {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 22px;
  color: #ffffff;
  background: #0b0b0b;
}

.panel-sidebar span {
  color: #bfbfbf;
  font-size: 13px;
  font-weight: 800;
}

.panel-main {
  display: grid;
  align-content: start;
  gap: 18px;
  padding: 24px;
}

.panel-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.panel-topline span {
  padding: 7px 10px;
  border: 1px solid #ddddda;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.drop-preview {
  display: grid;
  min-height: 118px;
  place-items: center;
  border: 1px dashed #cacac4;
  border-radius: 8px;
  color: #555555;
  font-weight: 900;
}

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

.metric-grid span {
  display: grid;
  gap: 8px;
  min-height: 88px;
  padding: 14px;
  border: 1px solid #ddddda;
  border-radius: 8px;
  color: #666666;
  font-size: 13px;
  font-weight: 900;
}

.metric-grid strong {
  color: #111111;
  font-size: 34px;
}

.feature-section {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 36px 0 28px;
}

.feature-section article {
  min-height: 170px;
  padding: 22px;
  border: 1px solid #d7d7d2;
  border-radius: 8px;
  background: #ffffff;
}

.feature-section p,
.document-page p {
  color: #555555;
  line-height: 1.6;
}

.pro-section {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 42px 0 60px;
  border-top: 1px solid #ddddda;
}

.pro-section ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(150px, 1fr));
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.pro-section li {
  padding: 10px 12px;
  border: 1px solid #d7d7d2;
  border-radius: 8px;
  font-weight: 900;
  background: #ffffff;
}

.document-page {
  max-width: 760px;
  padding: 64px 0 90px;
}

.document-page h1 {
  font-size: 48px;
}

.document-page h2 {
  margin-top: 34px;
}

footer {
  min-height: 76px;
  border-top: 1px solid #ddddda;
  color: #555555;
  font-size: 14px;
  font-weight: 800;
}

footer {
  justify-content: flex-start;
}

@media (max-width: 900px) {
  .hero,
  .feature-section,
  .pro-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-panel {
    grid-template-columns: 1fr;
  }

  .pro-section {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header,
  footer {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  .metric-grid,
  .pro-section ul {
    grid-template-columns: 1fr;
  }
}
