:root {
  --canvas: #faf8f3;
  --surface: #fff;
  --ink: #111827;
  --muted: #4b5563;
  --primary: #2563eb;
  --hover: #1d4ed8;
  --sky: #eaf2ff;
  --border: #d7dee8;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  margin: 0;
  background: var(--canvas);
  color: var(--ink);
  font: 16px/1.5 Inter, system-ui, sans-serif;
}
h1,
h2,
h3,
.brand {
  font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.025em;
}
h1 {
  font-size: 64px;
  line-height: 1.0625;
  font-weight: 800;
  margin: 0 0 24px;
}
h2 {
  font-size: 36px;
  line-height: 44px;
  font-weight: 700;
  margin: 0 0 24px;
}
h3 {
  font-size: 22px;
  line-height: 30px;
  margin: 12px 0;
}
p {
  margin: 0 0 24px;
  color: var(--muted);
  max-width: 65ch;
}
a {
  color: var(--primary);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
button,
input {
  font: inherit;
}
button,
a,
input {
  touch-action: manipulation;
}
:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 4px;
  box-shadow: 0 0 0 2px white;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.wrap {
  max-width: 1264px;
  padding-left: 32px;
  padding-right: 32px;
  margin: auto;
}
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  padding-bottom: 24px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
}
.brand img {
  object-fit: contain;
}
.header nav,
.footer nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header nav > a:not(.button),
.footer a {
  color: var(--ink);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 14px 22px;
  background: var(--primary);
  color: white;
  border: 1px solid var(--primary);
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  line-height: 20px;
  text-align: center;
  transition: background 150ms;
}
.button:hover {
  background: var(--hover);
  color: white;
  text-decoration: none;
}
.button.small {
  font-size: 14px;
  min-height: 44px;
  padding: 11px 16px;
}
.secondary {
  background: white;
  color: var(--ink);
  border-color: #6b7280;
}
.secondary:hover {
  background: var(--sky);
  color: var(--ink);
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  align-items: center;
  padding-top: 64px;
  padding-bottom: 80px;
  gap: 0;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.hero-copy > p {
  max-width: 44ch;
}
.hero-art {
  width: 112%;
  max-width: 112%;
  margin-left: -5%;
  mix-blend-mode: multiply;
}
.lead {
  font-size: 18px;
  line-height: 28px;
  color: var(--ink);
}
.trial-note {
  font-size: 13px;
  margin: 16px 0 0;
}
.section {
  padding-top: 88px;
  padding-bottom: 88px;
}
.white {
  background: var(--surface);
}
.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 36px;
}
.section-intro p {
  margin-left: auto;
  margin-right: auto;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 64px;
  text-align: center;
}
.feature-grid p {
  max-width: 30ch;
  margin: 0 auto;
}
.spot {
  width: 230px;
  height: 178px;
  max-width: 100%;
}
.split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split > div > p {
  max-width: 45ch;
}
.checks {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}
.checks li {
  position: relative;
  padding-left: 34px;
  margin: 14px 0;
}
.checks li:before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 1px;
  width: 22px;
  height: 22px;
  background: var(--primary);
  color: white;
  text-align: center;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 600;
}
.product {
  margin: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
}
.product img {
  width: 100%;
  object-fit: contain;
}
.product figcaption {
  text-align: center;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.notification > div:first-child {
  grid-column: 2;
  grid-row: 1;
}
.notification-art {
  grid-column: 1;
  grid-row: 1;
  max-width: 480px;
  width: 100%;
  justify-self: center;
}
.notification-art svg {
  width: 100%;
  display: block;
}
.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 96px;
  max-width: 1100px;
  align-items: center;
}
.price-panel {
  background: var(--canvas);
  border: 1px solid var(--border);
  padding: 48px;
  border-radius: 16px;
}
.price {
  color: var(--ink);
}
.price strong {
  font: 800 64px/1.1 'Plus Jakarta Sans', system-ui, sans-serif;
  letter-spacing: -0.04em;
}
.price span {
  white-space: nowrap;
}
.closing {
  background: var(--sky);
  text-align: center;
  border-radius: 16px;
  margin: 48px auto 0;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: 1200px;
}
.closing p {
  margin-left: auto;
  margin-right: auto;
}
.actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}
.newsletter h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.newsletter p {
  margin: 0;
}
.newsletter label {
  display: block;
  font-weight: 500;
  font-size: 14px;
  margin-bottom: 8px;
}
.subscribe-row {
  display: flex;
  gap: 12px;
}
input[type='email'] {
  min-width: 0;
  flex: 1;
  width: 100%;
  min-height: 48px;
  border: 1px solid #6b7280;
  border-radius: 8px;
  padding: 12px;
  background: white;
  color: var(--ink);
}
.w-form-fail {
  margin-top: 12px;
  color: #b91c1c;
}
.footer {
  border-top: 1px solid var(--border);
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.footer .brand {
  font-size: 20px;
}
.footer p {
  font-size: 13px;
  margin: 0;
  flex: 1;
}
.footer nav {
  font-size: 14px;
  gap: 24px;
}
.skip {
  position: absolute;
  left: 20px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 10;
}
.skip:focus {
  top: 16px;
}
@media (max-width: 1100px) {
  h1 {
    font-size: 54px;
  }
  .split {
    gap: 40px;
  }
  .hero-art {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .feature-grid {
    gap: 32px;
  }
  .closing {
    margin-left: 32px;
    margin-right: 32px;
  }
}
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 24px;
  }
  .hero-copy {
    max-width: 620px;
  }
  .hero-art {
    max-width: 680px;
    justify-self: center;
  }
  .split {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .split > div > p {
    max-width: 65ch;
  }
  .notification > div:first-child,
  .notification-art {
    grid-column: auto;
    grid-row: auto;
  }
  .product {
    max-width: 680px;
    width: 100%;
    justify-self: center;
  }
  .pricing {
    gap: 40px;
  }
  .price-panel {
    padding: 32px;
  }
  .newsletter {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}
@media (max-width: 600px) {
  .wrap {
    padding-left: 20px;
    padding-right: 20px;
  }
  .header {
    flex-wrap: wrap;
    gap: 16px;
    padding-top: 16px;
    padding-bottom: 16px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    width: 40px;
    height: 40px;
  }
  .header nav {
    width: 100%;
    justify-content: space-between;
    gap: 16px;
    font-size: 14px;
  }
  h1 {
    font-size: 40px;
    line-height: 44px;
  }
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
  h3 {
    font-size: 20px;
    line-height: 28px;
  }
  .hero {
    padding-top: 32px;
    padding-bottom: 48px;
  }
  .feature-grid,
  .pricing {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .spot {
    height: 146px;
  }
  .section {
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .section-intro {
    margin-bottom: 20px;
  }
  .price-panel {
    padding: 32px 24px;
  }
  .closing {
    margin: 24px 20px 0;
    padding-top: 48px;
    padding-bottom: 48px;
  }
  .subscribe-row {
    flex-wrap: wrap;
  }
  .subscribe-row input {
    flex-basis: 100%;
  }
  .footer {
    gap: 20px;
  }
  .footer p {
    flex-basis: 100%;
  }
  .footer nav {
    flex-wrap: wrap;
  }
  .actions {
    flex-direction: column;
    align-items: center;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
/* Keep the existing white brand mark legible on the new light canvas. */
.brand img {
  background: var(--ink);
  border-radius: 50%;
  padding: 4px;
}
/* The supplied illustration has a warm raster background; soften its edges. */
.hero-art {
  mask-image: linear-gradient(
      to right,
      transparent,
      #000 6%,
      #000 94%,
      transparent
    ),
    linear-gradient(to bottom, transparent, #000 7%, #000 91%, transparent);
  mask-composite: intersect;
}
