:root {
  --ink: #172126;
  --muted: #5c6c74;
  --line: #dbe4e7;
  --soft: #f4f7f5;
  --night: #172126;
  --blue: #0d4f85;
  --teal: #19aeb2;
  --orange: #f26a21;
  --sky: #2f8bd4;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff;
  overflow-x: hidden;
}

img,
svg,
input,
select,
button {
  max-width: 100%;
}

h1,
h2,
h3,
p,
a,
button,
label,
input,
select {
  overflow-wrap: anywhere;
}

.site-header {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 0 42px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 10;
}

.logo {
  min-width: 0;
}

.logo img {
  width: 292px;
  max-width: 48vw;
  display: block;
}

nav {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

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

nav a {
  color: var(--muted);
  font-weight: 700;
}

main {
  overflow: hidden;
}

.hero,
.band,
.split,
.early-access {
  padding: 72px 42px;
}

.hero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(420px, 1.08fr);
  align-items: center;
  gap: 44px;
  background: linear-gradient(180deg, #fff 0%, #edf7f5 100%);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 780px;
  margin-bottom: 18px;
  color: var(--night);
  font-size: clamp(34px, 6vw, 78px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.05;
}

.lede {
  max-width: 650px;
  color: var(--muted);
  font-size: 21px;
  line-height: 1.45;
}

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

.button,
form button {
  min-height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
}

.primary,
form button {
  color: #fff;
  background: var(--night);
}

.secondary {
  color: var(--blue);
  background: #fff;
  border: 1px solid var(--line);
}

.product-shot {
  border: 1px solid rgba(23, 33, 38, 0.14);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 26px 60px rgba(13, 79, 133, 0.16);
}

.mock-toolbar {
  height: 44px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border-bottom: 1px solid var(--line);
}

.mock-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--line);
}

.mock-body {
  min-height: 430px;
  display: grid;
  grid-template-columns: 150px 1fr;
}

.mock-body aside {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 20px;
  color: #cbd8dc;
  background: var(--night);
}

.mock-body aside strong {
  color: #fff;
}

.mock-body section {
  padding: 22px;
  background: var(--soft);
}

.plan-grid {
  height: 310px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
}

.room {
  display: grid;
  place-items: center;
  border: 2px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 800;
  background: #fff;
}

.room.three {
  grid-column: 1 / -1;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 16px;
}

.metric-row div {
  padding: 14px;
  border-radius: 6px;
  background: #fff;
}

.metric-row strong,
.metric-row span {
  display: block;
}

.metric-row span {
  color: var(--muted);
}

.band {
  background: var(--soft);
}

.section-head {
  max-width: 780px;
  margin-bottom: 28px;
}

.workflow,
.pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.workflow article,
.pricing article,
.feature-list div,
form {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.workflow article,
.pricing article {
  padding: 20px;
}

.workflow article span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 6px;
  color: #fff;
  background: var(--blue);
  font-weight: 800;
}

.workflow p,
.pricing p,
.split p,
.early-access p {
  color: var(--muted);
  line-height: 1.55;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.feature-list div {
  padding: 16px;
  color: var(--blue);
  font-weight: 800;
}

.pricing {
  grid-template-columns: repeat(3, 1fr);
}

.pricing strong {
  display: block;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 32px;
}

.pricing .featured {
  border-color: rgba(25, 174, 178, 0.55);
  box-shadow: 0 18px 44px rgba(25, 174, 178, 0.14);
}

.early-access {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: start;
}

form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 20px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-weight: 800;
}

input,
select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  font: inherit;
}

form button {
  border: 0;
  cursor: pointer;
}

footer {
  min-height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 20px 42px;
  color: #cbd8dc;
  background: var(--night);
}

@media (max-width: 940px) {
  .site-header,
  nav,
  .hero,
  .split,
  .early-access,
  footer {
    display: grid;
  }

  .site-header {
    height: auto;
    padding: 18px 22px;
    justify-items: start;
  }

  .logo img {
    width: min(292px, 86vw);
    max-width: 86vw;
  }

  nav {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
    justify-content: start;
  }

  nav a {
    min-width: 0;
  }

  .hero,
  .band,
  .split,
  .early-access {
    padding: 42px 22px;
  }

  .hero,
  .split,
  .early-access,
  .workflow,
  .pricing,
  .feature-list,
  form {
    grid-template-columns: 1fr;
  }

  .mock-body {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .product-shot {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .site-header,
  .hero,
  .band,
  .split,
  .early-access,
  footer {
    padding-left: 16px;
    padding-right: 16px;
  }

  h1 {
    font-size: 36px;
    line-height: 1.02;
  }

  h2 {
    font-size: 28px;
  }

  .lede {
    font-size: 18px;
  }

  .hero-actions,
  .button,
  form button {
    width: 100%;
  }

  .metric-row {
    grid-template-columns: 1fr;
  }
}
