:root {
  color-scheme: light;
  --ink: #111315;
  --paper: #f8faf6;
  --muted: #61695f;
  --line: #d9dfd5;
  --red: #eb3b46;
  --blue: #2b7fff;
  --lime: #d7ff42;
  --gold: #ffcb45;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 21, 0.045) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--paper);
  color: var(--ink);
}
a { color: inherit; text-decoration: none; }
h1, h2, p { margin: 0; letter-spacing: 0; }
.top {
  display: flex;
  max-width: 1160px;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin: 0 auto;
  padding: 0 20px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 900; }
.brand img { width: 28px; height: 28px; border-radius: 6px; }
nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; font-weight: 800; }
.hero {
  display: grid;
  min-height: min(720px, 78svh);
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: 40px;
  align-items: center;
  max-width: 1160px;
  margin: 0 auto;
  padding: 48px 20px 72px;
}
.eyebrow { margin-bottom: 14px; color: var(--red); font-size: 13px; font-weight: 950; text-transform: uppercase; }
h1 { max-width: 660px; font-size: clamp(46px, 7vw, 86px); line-height: 0.93; }
.lede, .section-copy, .dark p { max-width: 600px; color: var(--muted); font-size: 20px; font-weight: 650; line-height: 1.45; }
.lede { margin-top: 24px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--ink);
  border-radius: 8px;
  padding: 0 18px;
  background: var(--ink);
  color: white;
  font-weight: 900;
}
.button.ghost { background: white; color: var(--ink); }
.mockup {
  position: relative;
  min-height: 430px;
  border: 1px solid rgba(17, 19, 21, 0.18);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(138deg, rgba(235, 59, 70, 0.96) 0 38%, rgba(255, 203, 69, 0.98) 38% 56%, rgba(43, 127, 255, 0.96) 56%);
  box-shadow: rgba(17, 19, 21, 0.22) 0 30px 70px;
}
.player {
  position: absolute;
  inset: 38px 86px 128px 34px;
  border: 8px solid var(--ink);
  border-radius: 8px;
  background:
    linear-gradient(90deg, transparent 0 46%, white 46% 54%, transparent 54%),
    linear-gradient(150deg, #111315, #353d45);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}
.player::after {
  position: absolute;
  left: calc(50% - 23px);
  top: calc(50% - 30px);
  width: 0;
  height: 0;
  border-block: 30px solid transparent;
  border-left: 50px solid var(--red);
  content: "";
}
.panel {
  position: absolute;
  right: 32px;
  bottom: 34px;
  width: min(330px, calc(100% - 64px));
  border: 1px solid rgba(17, 19, 21, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: rgba(17, 19, 21, 0.2) 0 22px 54px;
}
.panel span { color: var(--red); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.panel strong { display: block; margin-top: 8px; font-size: 34px; line-height: 1; }
.panel p { margin-top: 12px; color: var(--muted); font-weight: 700; line-height: 1.35; }
.panel b { display: inline-flex; margin-top: 16px; border-radius: 6px; background: var(--lime); padding: 7px 10px; }
.proof-row { display: grid; grid-template-columns: repeat(4, 1fr); border-block: 1px solid var(--line); background: white; }
.proof-row div { min-height: 118px; border-right: 1px solid var(--line); padding: 22px; }
.proof-row div:last-child { border-right: 0; }
.proof-row strong { display: block; font-size: 28px; line-height: 1; }
.proof-row span { display: block; margin-top: 10px; color: var(--muted); font-size: 15px; line-height: 1.42; }
.section { max-width: 1160px; margin: 0 auto; padding: 78px 20px; }
.split { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 54px; }
h2 { max-width: 680px; font-size: clamp(32px, 5vw, 58px); line-height: 0.98; }
.section-copy { margin-top: 18px; }
.steps { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.steps li { display: grid; grid-template-columns: 44px 1fr; gap: 6px 16px; border: 1px solid var(--line); border-radius: 8px; background: white; padding: 18px; }
.steps span { grid-row: span 2; display: grid; width: 44px; height: 44px; place-items: center; border-radius: 8px; background: var(--ink); color: white; font-weight: 950; }
.steps strong { font-size: 20px; }
.steps p { color: var(--muted); line-height: 1.42; }
.dark {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
  max-width: none;
  padding-inline: max(20px, calc((100vw - 1160px) / 2));
  background: var(--ink);
  color: white;
}
.dark .eyebrow { color: var(--lime); }
.dark p { color: #dce3d8; }
footer { display: flex; max-width: 1160px; justify-content: space-between; gap: 18px; margin: 0 auto; padding: 28px 20px; color: var(--muted); font-weight: 760; }
@media (max-width: 820px) {
  nav { display: none; }
  .hero, .split, .dark { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 28px; }
  .mockup { min-height: 360px; }
  .proof-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 540px) {
  h1 { font-size: 44px; }
  .proof-row { grid-template-columns: 1fr; }
  footer { flex-direction: column; }
}
