:root {
  color-scheme: light;
  --ink: #182026;
  --muted: #65717a;
  --soft: #eef2f5;
  --line: #d8e0e6;
  --panel: rgba(255, 255, 255, 0.82);
  --panel-solid: #ffffff;
  --blue: #1768ac;
  --blue-dark: #0f4f86;
  --teal: #1f9b8e;
  --green: #4f8f4f;
  --amber: #d99a2b;
  --rose: #c45f71;
  --shadow: 0 24px 70px rgba(28, 45, 60, 0.18);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f9fb 0%, #ffffff 44%, #f4f7f4 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
  padding: 0 40px;
  border-bottom: 1px solid rgba(216, 224, 230, 0.72);
  background: rgba(247, 249, 251, 0.86);
  backdrop-filter: blur(18px);
}

.brand,
.main-nav,
.hero-actions,
.site-footer {
  display: flex;
  align-items: center;
}

.brand {
  justify-self: start;
  gap: 10px;
  font-weight: 720;
}

.brand-mark {
  display: grid;
  grid-template-columns: repeat(2, 9px);
  grid-template-rows: repeat(2, 9px);
  gap: 3px;
  width: 24px;
  height: 24px;
}

.brand-mark span {
  border-radius: 3px;
}

.brand-mark span:nth-child(1) {
  background: var(--blue);
}

.brand-mark span:nth-child(2) {
  background: var(--teal);
}

.brand-mark span:nth-child(3) {
  background: var(--amber);
}

.brand-mark span:nth-child(4) {
  background: var(--green);
}

.main-nav {
  justify-self: center;
  gap: 28px;
  color: #4f5f68;
  font-size: 14px;
  font-weight: 640;
}

.main-nav a:hover,
.brand:hover {
  color: var(--blue-dark);
}

.header-download {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border: 1px solid rgba(23, 104, 172, 0.28);
  border-radius: 8px;
  background: #ffffff;
  color: var(--blue-dark);
  font-size: 14px;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 720px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 96px 40px 132px;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 26%, rgba(31, 155, 142, 0.2), transparent 28%),
    radial-gradient(circle at 74% 20%, rgba(217, 154, 43, 0.16), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 245, 0.74));
}

.hero-visual {
  position: absolute;
  inset: 98px 4vw auto auto;
  width: min(760px, 58vw);
  opacity: 0.96;
}

.desktop-frame {
  overflow: hidden;
  border: 1px solid rgba(125, 143, 155, 0.34);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow);
  transform: rotate(-1.2deg);
}

.window-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 42px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(216, 224, 230, 0.78);
  background: rgba(251, 252, 253, 0.92);
}

.window-bar span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.window-bar span:nth-child(1) {
  background: var(--rose);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.app-shell {
  display: grid;
  grid-template-columns: 156px 1fr;
  min-height: 438px;
}

.sidebar {
  padding: 24px 20px;
  border-right: 1px solid rgba(216, 224, 230, 0.8);
  background: rgba(247, 249, 251, 0.76);
}

.sidebar-logo {
  width: 42px;
  height: 42px;
  margin-bottom: 30px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
}

.sidebar-line,
.mock-label,
.mock-title,
.widget-kicker,
.metric,
.trend,
.task-row,
.timeline span {
  border-radius: 99px;
  background: #dce5eb;
}

.sidebar-line {
  width: 102px;
  height: 12px;
  margin: 14px 0;
}

.sidebar-line.active {
  background: rgba(23, 104, 172, 0.22);
}

.sidebar-line.short {
  width: 70px;
}

.sidebar-gap {
  height: 48px;
}

.dashboard {
  padding: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.dashboard-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.mock-label {
  width: 96px;
  height: 10px;
  margin-bottom: 10px;
  background: rgba(31, 155, 142, 0.28);
}

.mock-title {
  width: 214px;
  height: 24px;
  border-radius: 8px;
  background: #26333d;
}

.segmented {
  display: flex;
  gap: 7px;
  height: 36px;
  padding: 6px;
  border: 1px solid rgba(216, 224, 230, 0.92);
  border-radius: 9px;
  background: #f7f9fb;
}

.segmented span {
  width: 34px;
  border-radius: 6px;
  background: #e4ebef;
}

.segmented span:first-child {
  background: #ffffff;
  box-shadow: 0 1px 4px rgba(24, 32, 38, 0.12);
}

.widget-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 16px;
}

.widget {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(216, 224, 230, 0.9);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 12px 24px rgba(28, 45, 60, 0.06);
}

.widget.large {
  min-height: 214px;
  grid-row: span 2;
}

.widget.wide {
  grid-column: 1 / -1;
}

.widget-kicker {
  width: 82px;
  height: 10px;
  margin-bottom: 24px;
}

.chart-bars {
  display: flex;
  align-items: end;
  gap: 12px;
  height: 124px;
}

.chart-bars span {
  flex: 1;
  min-width: 20px;
  border-radius: 8px 8px 3px 3px;
  background: linear-gradient(180deg, rgba(31, 155, 142, 0.82), rgba(23, 104, 172, 0.82));
}

.chart-bars span:nth-child(1) {
  height: 52%;
}

.chart-bars span:nth-child(2) {
  height: 72%;
}

.chart-bars span:nth-child(3) {
  height: 44%;
}

.chart-bars span:nth-child(4) {
  height: 86%;
}

.chart-bars span:nth-child(5) {
  height: 64%;
}

.metric {
  width: 118px;
  height: 34px;
  margin-bottom: 16px;
  border-radius: 8px;
  background: #26333d;
}

.trend {
  width: 142px;
  height: 12px;
  background: rgba(79, 143, 79, 0.24);
}

.task-row {
  width: 100%;
  height: 11px;
  margin: 13px 0;
}

.task-row.short {
  width: 68%;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

.timeline span {
  height: 36px;
  border-radius: 8px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  padding-top: 38px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-dark);
  font-size: 13px;
  font-weight: 760;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 16px;
  font-size: 76px;
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 560px;
  margin-bottom: 16px;
  font-size: 28px;
  line-height: 1.25;
  font-weight: 680;
}

.hero-copy {
  max-width: 520px;
  color: #4f5f68;
  font-size: 18px;
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 760;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button.primary {
  background: var(--blue);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 104, 172, 0.24);
}

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

.button.secondary {
  border: 1px solid rgba(101, 113, 122, 0.24);
  background: rgba(255, 255, 255, 0.78);
  color: #26333d;
}

.button-icon {
  font-size: 20px;
  line-height: 1;
}

.download-note {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
  padding: 88px 0;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading.compact {
  margin-bottom: 24px;
}

.section-heading h2,
.download-section h2 {
  margin-bottom: 16px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-heading p,
.download-section p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature-card,
.steps article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-solid);
  box-shadow: 0 12px 34px rgba(28, 45, 60, 0.06);
}

.feature-card {
  min-height: 198px;
  padding: 24px;
}

.feature-card:last-child {
  grid-column: 1 / -1;
  min-height: 156px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 22px;
  border-radius: 8px;
  background: #eef5f4;
  color: var(--teal);
  font-weight: 800;
}

.feature-card h3,
.steps h3 {
  margin-bottom: 10px;
  font-size: 18px;
}

.feature-card p,
.steps p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.honesty-section {
  padding-top: 42px;
}

.not-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.not-list div,
.roadmap-list div {
  border: 1px solid rgba(101, 113, 122, 0.2);
  border-radius: 8px;
  background: #ffffff;
  color: #44515a;
  font-weight: 650;
}

.not-list div {
  padding: 13px 16px;
}

.how-section {
  width: 100%;
  padding-right: max(24px, calc((100vw - 1120px) / 2));
  padding-left: max(24px, calc((100vw - 1120px) / 2));
  background: #f0f5f4;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.steps article {
  min-height: 216px;
  padding: 26px;
}

.steps span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  margin-bottom: 34px;
  border-radius: 50%;
  background: var(--ink);
  color: #ffffff;
  font-weight: 760;
}

.roadmap-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.roadmap-list div {
  min-height: 96px;
  display: flex;
  align-items: center;
  padding: 18px;
}

.download-section {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto 42px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 34px;
  padding: 42px;
  border: 1px solid rgba(23, 104, 172, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(238, 245, 244, 0.92)),
    #ffffff;
  box-shadow: var(--shadow);
}

.download-section p {
  max-width: 650px;
  margin-bottom: 0;
}

.large-button {
  min-width: 228px;
  min-height: 58px;
}

.site-footer {
  justify-content: space-between;
  gap: 18px;
  padding: 28px 40px 42px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer span:first-child {
  color: var(--ink);
  font-weight: 760;
}

.site-footer a {
  color: var(--blue-dark);
  font-weight: 650;
}

.site-footer a + a {
  margin-left: 16px;
}

.site-footer a:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 24px;
  }

  .main-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 72px 24px 96px;
  }

  .hero-visual {
    position: relative;
    inset: auto;
    order: 2;
    width: 100%;
    margin-top: 42px;
  }

  .hero {
    flex-direction: column;
    align-items: flex-start;
  }

  .desktop-frame {
    transform: none;
  }

  .feature-grid,
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .roadmap-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .download-section {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 680px) {
  .site-header {
    min-height: 64px;
    gap: 12px;
    padding: 0 18px;
  }

  .brand {
    font-size: 15px;
  }

  .header-download {
    min-height: 36px;
    padding: 0 12px;
    font-size: 13px;
  }

  .hero {
    padding: 54px 18px 78px;
  }

  h1 {
    font-size: 54px;
  }

  .hero-subtitle {
    font-size: 23px;
  }

  .button {
    width: 100%;
  }

  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    display: none;
  }

  .dashboard {
    padding: 20px;
  }

  .dashboard-top {
    align-items: flex-start;
  }

  .segmented {
    display: none;
  }

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

  .widget.large,
  .widget.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .section,
  .download-section {
    width: calc(100% - 36px);
  }

  .section {
    padding: 64px 0;
  }

  .section-heading h2,
  .download-section h2 {
    font-size: 32px;
  }

  .feature-grid,
  .steps,
  .roadmap-list {
    grid-template-columns: 1fr;
  }

  .feature-card:last-child {
    grid-column: auto;
  }

  .how-section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .download-section {
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px 18px 36px;
  }
}
