:root {
  --red: #df000b;
  --red-dark: #b80008;
  --ink: #171717;
  --muted: #626773;
  --line: #e5e7eb;
  --soft: #f6f7f9;
  --white: #fff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
}

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

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

.brand img {
  display: block;
  width: min(390px, 52vw);
  height: auto;
}

nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 15px;
  font-weight: 800;
}

nav a[aria-current="page"] {
  color: var(--red);
}

.nav-button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 6px;
  font-weight: 900;
}

.nav-button,
.button.secondary {
  color: var(--ink);
  border: 1px solid var(--line);
  background: var(--white);
}

.button.primary {
  color: var(--white);
  border: 1px solid var(--red);
  background: var(--red);
  box-shadow: 0 14px 30px rgba(223, 0, 11, .18);
}

.full {
  width: 100%;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 390px);
  align-items: center;
  gap: 54px;
  max-width: 1200px;
  min-height: 68vh;
  margin: 0 auto;
  padding: 40px 24px 72px;
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

h1 {
  margin: 0;
  font-size: clamp(44px, 7vw, 82px);
  line-height: .98;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

h3 {
  margin: 0;
  font-size: 24px;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 24px 0 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.hero-copy .tagline {
  margin-top: -12px;
  color: var(--ink);
  font-weight: 900;
}

.page-hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 70px 24px 56px;
}

.page-hero h1 {
  max-width: 880px;
}

.page-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
}

.page-hero .hero-actions {
  margin-top: 28px;
}

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

.hero-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(17, 17, 17, .08);
}

.hero-panel img {
  width: 96px;
  height: 96px;
}

.hero-panel div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 14px;
  margin: 24px 0;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel span {
  color: var(--muted);
  font-weight: 800;
}

.hero-panel strong {
  font-size: 36px;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

li {
  position: relative;
  padding: 9px 0 9px 24px;
  color: var(--muted);
  line-height: 1.35;
}

li::before {
  position: absolute;
  left: 0;
  color: var(--red);
  content: "+";
  font-weight: 900;
}

.plans-section,
.automation-section,
.split-section,
.support-section {
  padding: 72px 24px;
}

.page-section {
  padding-top: 56px;
}

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

.section-heading,
.plans,
.automation-section,
.split-section,
.support-section {
  max-width: 1200px;
  margin: 0 auto;
}

.section-heading {
  margin-bottom: 28px;
}

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

.plan {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 500px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.plan.featured {
  border-color: rgba(223, 0, 11, .5);
  box-shadow: 0 22px 50px rgba(223, 0, 11, .12);
}

.badge {
  align-self: flex-start;
  padding: 7px 10px;
  color: var(--white);
  background: var(--red);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price {
  margin: 0;
  font-size: 48px;
  font-weight: 900;
}

.price span {
  color: var(--muted);
  font-size: 18px;
}

.plan-note {
  min-height: 52px;
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.plan ul {
  flex: 1;
}

.automation-section {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 34px;
  border-top: 1px solid var(--line);
}

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

.steps article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

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

.steps p {
  color: var(--muted);
  line-height: 1.55;
}

.split-section {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 42px;
}

.launch-grid {
  display: grid;
  gap: 16px;
}

.launch-grid article {
  padding: 24px;
  border-left: 5px solid var(--red);
  background: var(--soft);
}

.launch-grid p,
.support-section p {
  color: var(--muted);
  line-height: 1.6;
}

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

.support-section p {
  max-width: 680px;
  margin: 20px 0 28px;
  font-size: 19px;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 34px 24px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
}

.site-footer p {
  margin: 6px 0 0;
  line-height: 1.5;
}

.site-footer address {
  display: grid;
  gap: 6px;
  font-style: normal;
  font-weight: 800;
}

.site-footer a:hover {
  color: var(--red);
}

@media (max-width: 900px) {
  .site-header,
  .hero,
  .automation-section,
  .split-section {
    grid-template-columns: 1fr;
  }

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

  nav {
    width: 100%;
    flex-wrap: wrap;
  }

  .brand img {
    width: min(390px, 86vw);
  }

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

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

  .plan {
    min-height: auto;
  }

  .site-footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
  }
}
