@font-face {
  font-family:Alumni;
  src:url('/assets/fonts/alumni-sans-latin.woff2') format('woff2');
  font-weight:400 900;
  font-display:swap
}

@font-face {
  font-family:Atkinson;
  src:url('/assets/fonts/atkinson-hyperlegible-next-latin.woff2') format('woff2');
  font-weight:400 700;
  font-display:swap
}

:root {
  color-scheme:dark;
  --ink:oklch(22% .018 267);
  --deep:oklch(17% .015 267);
  --paper:oklch(96% .008 100);
  --muted:oklch(76% .015 270);
  --line:oklch(43% .02 270);
  --lime:oklch(89% .17 125);
  --violet:oklch(77% .12 300);
  --violet-dark:oklch(38% .14 300);
  --display:Alumni,'Arial Narrow',sans-serif;
  --body:Atkinson,'Segoe UI',sans-serif
}

* {
  box-sizing:border-box
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:28px;
  background:var(--ink)
}

body {
  margin:0;
  color:var(--paper);
  background:var(--ink);
  font:17px/1.55 var(--body);
  -webkit-font-smoothing:antialiased
}

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

button {
  font:inherit
}

img {
  display:block;
  max-width:100%;
  height:auto
}

svg {
  display:block
}

button,a,summary {
  -webkit-tap-highlight-color:transparent
}

button {
  cursor:pointer
}

button:disabled {
  cursor:default;
  opacity:.55
}

:focus-visible {
  outline:3px solid var(--lime);
  outline-offset:5px
}

::selection {
  background:var(--violet);
  color:var(--deep)
}

.wrap {
  width:min(1280px,calc(100% - 96px));
  margin-inline:auto
}

.skip-link {
  position:fixed;
  top:10px;
  left:10px;
  z-index:99;
  background:var(--lime);
  color:var(--deep);
  padding:12px 18px;
  transform:translateY(-180%)
}

.skip-link:focus {
  transform:none
}

.site-header {
  min-height:100px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  border-bottom:1px solid var(--line)
}

.brand {
  display:inline-flex;
  align-items:center;
  gap:12px;
  white-space:nowrap
}

.brand span {
  font:750 31px/1 var(--display);
  letter-spacing:.02em
}

.brand img {
  flex-shrink:0
}

.site-header nav {
  display:flex;
  align-items:center;
  gap:36px;
  font-size:15px;
  font-weight:600
}

.site-header nav>a {
  min-height:44px;
  display:flex;
  align-items:center
}

.site-header nav>a:hover {
  color:var(--lime)
}

.nav-cta {
  gap:25px
}

.nav-cta>span {
  font-size:23px
}

h1,h2,h3,h4,p {
  margin:0
}

h1,h2,h3 {
  font-family:var(--display);
  font-weight:800;
  line-height:.9;
  letter-spacing:-.018em
}

h1 {
  font-size:clamp(75px,7.8vw,112px)
}

h2 {
  font-size:clamp(52px,5.5vw,78px)
}

h3 {
  font-size:clamp(43px,4.4vw,62px)
}

.lime-text {
  color:var(--lime)
}

.violet-text {
  color:var(--violet)
}

p {
  max-width:65ch
}

.hero {
  display:grid;
  grid-template-columns:1.05fr 1fr;
  gap:12px;
  align-items:center;
  padding-block:72px 78px;
  min-height:675px
}

.hero-copy {
  z-index:1
}

.hero-context {
  font-size:14px;
  margin-bottom:28px;
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted)
}

.small-circuit {
  width:18px;
  height:18px;
  border:2px solid var(--lime);
  border-radius:5px;
  display:inline-block;
  transform:rotate(-10deg)
}

.lede {
  font-size:20px;
  line-height:1.45;
  margin-top:28px;
  max-width:440px
}

.hero-description {
  color:var(--muted);
  font-size:16px;
  margin:14px 0 28px;
  max-width:390px
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  min-height:54px;
  padding:14px 22px;
  font-size:15px;
  font-weight:700;
  border:1px solid transparent;
  border-radius:5px;
  transition:transform .2s cubic-bezier(.22,1,.36,1),background .2s
}

.button:hover {
  transform:translateY(-3px)
}

.button>span {
  font-size:22px;
  line-height:1
}

.button-lime {
  background:var(--lime);
  color:var(--deep)
}

.button-lime:hover {
  background:oklch(94% .11 125)
}

.button-violet {
  background:var(--violet);
  color:var(--deep)
}

.button-violet:hover {
  background:oklch(85% .08 300)
}

.button-outline {
  border-color:var(--line)
}

.button-outline:hover {
  background:oklch(32% .025 267)
}

.circuit-scene {
  position:relative;
  aspect-ratio:1;
  isolation:isolate;
  min-width:0;
  margin-right:-10px
}

.circuit-lines {
  position:absolute;
  width:100%;
  height:100%;
  overflow:visible
}

.circuit-lines path {
  fill:none;
  stroke-width:11
}

.track-base {
  stroke:oklch(34% .025 267)
}

.circuit-lines .track-accent {
  stroke:var(--lime)
}

.circuit-lines .track-violet {
  stroke:var(--violet)
}

.circuit-lines circle {
  fill:var(--lime)
}

.circuit-lines .violet-node {
  fill:var(--violet)
}

.circuit-lines .track-dash {
  stroke:var(--line);
  stroke-width:2;
  stroke-dasharray:7 8
}

.scene-board {
  position:absolute;
  left:8%;
  top:0;
  width:56%;
  background:var(--deep);
  border:1px solid var(--line);
  padding:8px;
  transform:rotate(-6deg);
  box-shadow:10px 12px 0 oklch(12% .01 267 / .3)
}

.scene-title {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  min-height:34px;
  padding:0 3px 5px
}

.scene-title strong {
  font-weight:600
}

.scene-caption {
  margin-left:auto;
  color:var(--muted);
  font-size:9px
}

.scene-title .tile-mark {
  width:17px;
  gap:2px
}

.scene-prediction {
  position:absolute;
  right:0;
  top:48%;
  width:63%;
  padding:15px 19px 18px;
  background:oklch(28% .05 293);
  border:1px solid oklch(48% .06 293);
  transform:rotate(5deg);
  box-shadow:10px 12px 0 oklch(12% .01 267 / .3)
}

.scene-prediction .scene-title {
  border-bottom:1px solid oklch(45% .055 293);
  padding-bottom:11px;
  margin-bottom:12px
}

.scene-prediction>p {
  font:700 29px/1.1 var(--display);
  margin-bottom:14px
}

.scene-title .clout-mark {
  width:23px;
  height:23px;
  font-size:20px
}

.mini-result {
  display:flex;
  justify-content:space-between;
  gap:10px;
  font-size:11px;
  margin-bottom:5px
}

.mini-result strong {
  color:var(--violet)
}

.mini-bar {
  height:6px;
  background:oklch(37% .055 293);
  margin-bottom:11px;
  border-radius:2px
}

.mini-bar i {
  display:block;
  background:var(--violet);
  height:100%;
  width:72%;
  border-radius:2px
}

.mini-bar.second i {
  width:28%;
  background:var(--paper)
}

.scene-footnote {
  font-size:9px;
  color:var(--muted);
  display:block;
  margin-top:15px
}

.roll-stamp {
  position:absolute;
  right:1%;
  top:14%;
  width:85px;
  transform:rotate(12deg);
  color:var(--lime);
  text-align:center
}

.roll-stamp>span {
  font:700 15px var(--display);
  letter-spacing:.08em
}

.roll-stamp svg {
  width:66px;
  margin:5px auto
}

.roll-stamp rect {
  fill:var(--lime)
}

.roll-stamp circle {
  fill:var(--deep)
}

.tile-mark {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:4px;
  width:30px;
  aspect-ratio:1;
  transform:rotate(-5deg);
  flex-shrink:0
}

.tile-mark i {
  background:var(--lime);
  border-radius:2px
}

.tile-mark i:nth-child(2),.tile-mark i:nth-child(3) {
  background:var(--paper)
}

.clout-mark {
  display:inline-flex;
  width:33px;
  height:33px;
  align-items:center;
  justify-content:center;
  background:var(--violet);
  color:var(--deep);
  font:850 30px/1 var(--display);
  border-radius:8px 3px 8px 3px;
  flex-shrink:0
}

.rally-strip {
  background:var(--lime);
  color:var(--deep);
  padding-block:13px
}

.rally-strip>.wrap {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  font:750 clamp(18px,2.1vw,28px)/1.1 var(--display);
  letter-spacing:.025em
}

.rally-strip b {
  font:400 27px var(--body)
}

.bot-lineup {
  padding-block:96px 104px
}

.section-intro {
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:70px;
  margin-bottom:50px
}

.section-intro>p {
  max-width:365px;
  color:var(--muted);
  font-size:18px;
  padding-bottom:5px
}

.product {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  padding:54px;
  align-items:center;
  position:relative;
  overflow:hidden;
  border-radius:10px
}

.product+.product {
  margin-top:28px
}

.snakes-product {
  background:oklch(26% .027 125)
}

.clout-product {
  background:oklch(25% .037 293)
}

.product-name {
  display:flex;
  align-items:center;
  gap:13px;
  font-size:18px;
  font-weight:700;
  margin-bottom:32px
}

.product-copy>p {
  color:var(--muted);
  margin-top:24px;
  font-size:17px;
  max-width:420px
}

.feature-list {
  padding:0;
  margin:25px 0 32px;
  list-style:none;
  font-size:14px
}

.feature-list li {
  padding:7px 0 7px 23px;
  position:relative
}

.feature-list li:before {
  content:'↗';
  position:absolute;
  left:0;
  top:7px;
  color:var(--lime)
}

.clout-product .feature-list li:before {
  color:var(--violet)
}

.board-feature {
  margin:0;
  min-width:0;
  justify-self:center;
  max-width:380px
}

.board-feature>a {
  display:block;
  transform:rotate(3deg);
  transition:transform .3s cubic-bezier(.22,1,.36,1)
}

.board-feature>a:hover {
  transform:rotate(0deg)
}

.board-feature img {
  width:100%;
  box-shadow:12px 14px 0 oklch(15% .018 125 / .45)
}

figcaption {
  font-size:11px;
  color:var(--muted);
  text-align:center;
  margin-top:25px
}

.demo-wrap {
  min-width:0
}

.demo-heading {
  display:flex;
  justify-content:space-between;
  gap:15px;
  margin-bottom:15px;
  align-items:center
}

.demo-heading>span:first-child {
  font:700 19px var(--display);
  letter-spacing:.05em;
  color:var(--violet)
}

.demo-heading>span:last-child {
  font-size:11px;
  color:var(--muted)
}

.prediction-demo {
  padding:28px;
  background:var(--deep);
  border:1px solid oklch(42% .055 293);
  border-radius:10px
}

.prediction-top {
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:28px
}

.prediction-top>div {
  display:flex;
  flex-direction:column;
  font-size:14px;
  line-height:1.4
}

.prediction-top>div>span {
  font-size:11px;
  color:var(--muted)
}

.demo-tag {
  font-size:10px;
  color:var(--violet);
  margin-left:auto;
  border:1px solid var(--violet-dark);
  border-radius:3px;
  padding:3px 7px
}

.prediction-demo h4 {
  font-size:20px;
  line-height:1.3
}

.prediction-hint {
  font-size:12px;
  color:var(--muted);
  margin-block:9px 28px
}

.prediction-option {
  margin-block:21px
}

.prediction-option>div:first-child {
  display:flex;
  justify-content:space-between;
  gap:20px;
  font-size:14px;
  margin-bottom:10px
}

.prediction-option strong {
  color:var(--violet);
  font-variant-numeric:tabular-nums
}

.prediction-option>span {
  font-size:11px;
  color:var(--muted)
}

.pool-bar {
  height:9px;
  border-radius:2px;
  background:oklch(29% .035 293);
  overflow:hidden;
  margin-bottom:6px
}

.pool-bar>i {
  display:block;
  width:100%;
  height:100%;
  background:var(--violet);
  transform-origin:left;
  transition:transform .35s cubic-bezier(.22,1,.36,1)
}

.option-b strong {
  color:var(--paper)
}

.option-b .pool-bar>i {
  background:var(--paper)
}

.prediction-actions {
  display:flex;
  gap:10px;
  margin-top:25px
}

.prediction-actions button {
  flex:1;
  min-height:44px;
  background:var(--violet);
  color:var(--deep);
  border:1px solid var(--violet);
  border-radius:4px;
  font-size:12px;
  font-weight:700;
  padding:10px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:7px
}

.prediction-actions button+button {
  background:transparent;
  color:var(--paper);
  border-color:var(--line)
}

.prediction-actions button:not(:disabled):hover {
  background:oklch(85% .08 300);
  color:var(--deep)
}

.prediction-total {
  margin-top:24px;
  padding-top:17px;
  border-top:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:15px;
  font-size:11px;
  color:var(--muted)
}

.prediction-total strong {
  color:var(--paper);
  margin-left:5px;
  font-variant-numeric:tabular-nums
}

.reset-demo {
  font-size:11px;
  color:var(--muted);
  padding:12px 0 12px 8px;
  background:transparent;
  border:0;
  text-decoration:underline;
  text-underline-offset:4px
}

.reset-demo:hover {
  color:var(--paper)
}

.demo-status {
  font-size:11px;
  color:var(--muted);
  margin-top:12px;
  min-height:2.8em
}

.about-section {
  background:var(--violet);
  color:var(--deep);
  padding-block:86px
}

.about-layout {
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:90px
}

.about-mark {
  margin-bottom:28px
}

.about-section h2 {
  font-size:clamp(65px,7.4vw,100px);
  line-height:.9
}

.about-section h2 span {
  color:oklch(39% .12 300)
}

.about-copy>p:first-child {
  font-size:27px;
  line-height:1.35;
  font-weight:600;
  margin-bottom:24px
}

.about-copy>p {
  max-width:470px;
  font-size:18px;
  margin-bottom:18px
}

.text-link {
  display:inline-flex;
  align-items:center;
  gap:25px;
  border-bottom:1px solid currentColor;
  min-height:44px;
  font-size:15px;
  font-weight:700;
  margin-top:14px
}

.text-link:hover {
  opacity:.75
}

.choose-section {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center;
  padding-block:100px 70px
}

.choose-section p {
  color:var(--muted);
  margin-top:20px
}

.choose-links>a {
  display:flex;
  gap:20px;
  align-items:center;
  padding:25px 0;
  border-bottom:1px solid var(--line)
}

.choose-links>a:first-child {
  border-top:1px solid var(--line)
}

.choose-links>a>span:nth-child(2) {
  display:flex;
  flex-direction:column;
  gap:4px
}

.choose-links strong {
  font-size:22px
}

.choose-links small {
  color:var(--muted);
  font-size:13px
}

.choose-links b {
  font-weight:400;
  font-size:27px;
  margin-left:auto;
  color:var(--lime)
}

.choose-links>a:last-child b {
  color:var(--violet)
}

.choose-links>a:hover strong {
  color:var(--lime)
}

.choose-links>a:last-child:hover strong {
  color:var(--violet)
}

.faq {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  padding-bottom:90px
}

.faq h2 {
  font-size:35px;
  padding-top:20px
}

.faq details {
  border-bottom:1px solid var(--line);
  font-size:15px
}

.faq summary {
  padding:20px 25px 20px 0;
  cursor:pointer
}

.faq summary::marker {
  color:var(--violet)
}

.faq details p {
  padding:0 0 23px;
  color:var(--muted);
  font-size:14px
}

.site-footer {
  border-top:1px solid var(--line);
  padding-block:30px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:25px
}

.site-footer .brand span {
  font-size:27px
}

.site-footer>p {
  font-size:13px;
  color:var(--muted)
}

.site-footer>div {
  margin-left:auto;
  display:flex;
  gap:24px;
  font-size:13px
}

.site-footer>div>a:hover {
  color:var(--lime)
}

.site-footer>small {
  width:100%;
  font-size:11px;
  color:var(--muted)
}

/* Clout's product page uses the same family, with violet as its lead colour. */
.clout-hero {
  padding-block:80px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:90px;
  align-items:center
}

.clout-hero h1 {
  font-size:clamp(72px,7.5vw,104px)
}

.clout-hero .lede {
  margin-bottom:28px
}

.clout-hero .product-name {
  color:var(--violet)
}

.clout-install {
  font-size:13px;
  color:var(--muted);
  margin-top:17px
}

.clout-install a {
  color:var(--violet);
  text-decoration:underline
}

.clout-hero .button[hidden] {
  display:none
}

.clout-steps {
  background:oklch(25% .037 293);
  padding-block:75px
}

.clout-steps .section-intro {
  margin-bottom:35px
}

.steps-list {
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:45px
}

.steps-list li {
  border-top:1px solid var(--line);
  padding-top:25px
}

.steps-list h3 {
  font-size:37px;
  margin-block:14px
}

.steps-list p {
  color:var(--muted);
  font-size:15px
}

.steps-list code {
  font:700 14px var(--body);
  color:var(--violet)
}

.clout-commands {
  padding-block:75px
}

.clout-commands dl {
  margin:30px 0 0;
  display:grid;
  grid-template-columns:repeat(2,1fr);
  column-gap:65px
}

.clout-commands dl>div {
  border-top:1px solid var(--line);
  padding:20px 0
}

.clout-commands dt {
  font-weight:700;
  color:var(--violet)
}

.clout-commands dd {
  margin:7px 0 0;
  color:var(--muted);
  font-size:15px
}

.clout-family {
  padding-block:40px 70px
}

.clout-family p {
  color:var(--muted);
  margin-top:16px
}

@media(min-width:1600px) {
  .hero {
    padding-block:90px;
    min-height:730px
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px)
  }
  .hero {
    padding-top:55px;
    min-height:600px
  }
  .hero h1 {
    font-size:clamp(65px,8vw,92px)
  }
  .hero-context {
    font-size:12px
  }
  .lede {
    font-size:18px
  }
  .scene-title {
    font-size:10px
  }
  .scene-caption {
    display:none
  }
  .scene-footnote {
    font-size:8px
  }
  .scene-prediction {
    padding:12px 14px
  }
  .product {
    padding:38px;
    gap:35px
  }
  .prediction-demo {
    padding:22px
  }
  .product-copy>p {
    font-size:16px
  }
  .product .button {
    font-size:13px;
    gap:18px
  }
  .section-intro {
    gap:35px
  }
  .about-layout,.choose-section,.faq,.clout-hero {
    gap:45px
  }
}

@media(max-width:800px) {
  .site-header {
    min-height:86px
  }
  .site-header nav {
    gap:20px;
    font-size:13px
  }
  .site-header .brand span {
    font-size:28px
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:44px;
    gap:15px;
    padding-bottom:40px
  }
  .hero h1 {
    font-size:clamp(76px,12vw,103px)
  }
  .hero-copy {
    max-width:620px
  }
  .hero-context {
    font-size:14px
  }
  .hero .lede {
    max-width:470px
  }
  .hero-description {
    max-width:470px
  }
  .circuit-scene {
    width:min(520px,100%);
    justify-self:center;
    margin-top:20px;
    margin-right:0
  }
  .scene-title {
    font-size:12px
  }
  .scene-caption {
    display:block
  }
  .scene-footnote {
    font-size:10px
  }
  .scene-prediction {
    padding:15px 19px
  }
  .rally-strip>.wrap {
    gap:12px;
    font-size:19px;
    flex-wrap:wrap
  }
  .rally-strip>.wrap>span:last-child {
    display:none
  }
  .rally-strip>.wrap>b:nth-last-child(2) {
    display:none
  }
  .section-intro {
    align-items:start;
    flex-direction:column;
    gap:24px
  }
  .section-intro>p {
    max-width:480px
  }
  .bot-lineup {
    padding-block:65px
  }
  .product {
    grid-template-columns:1fr;
    gap:45px;
    padding:38px
  }
  .product-copy>p {
    max-width:100%
  }
  .product h3 {
    font-size:56px
  }
  .board-feature {
    max-width:380px;
    width:85%
  }
  .demo-wrap {
    width:100%;
    max-width:480px;
    justify-self:center
  }
  .about-layout {
    gap:35px
  }
  .about-section h2 {
    font-size:70px
  }
  .about-copy>p:first-child {
    font-size:22px
  }
  .about-copy>p {
    font-size:16px
  }
  .choose-section,.faq {
    grid-template-columns:1fr;
    gap:35px
  }
  .choose-section {
    padding-block:65px 40px
  }
  .faq {
    padding-bottom:65px
  }
  .clout-hero {
    grid-template-columns:1fr;
    gap:55px
  }
  .clout-hero .demo-wrap {
    max-width:520px
  }
  .steps-list {
    gap:25px
  }
  .steps-list h3 {
    font-size:31px
  }
  .clout-commands dl {
    column-gap:30px
  }
}

@media(max-width:520px) {
  .wrap {
    width:calc(100% - 36px)
  }
  .site-header {
    flex-wrap:wrap;
    gap:0;
    padding-top:15px;
    padding-bottom:10px
  }
  .site-header .brand {
    gap:8px
  }
  .site-header .brand img {
    width:32px
  }
  .site-header nav {
    width:100%;
    justify-content:space-between;
    gap:12px;
    font-size:12px;
    margin-top:6px
  }
  .nav-cta {
    gap:8px
  }
  .hero {
    padding-top:35px
  }
  .hero h1 {
    font-size:clamp(65px,16vw,84px)
  }
  .hero-context {
    font-size:11px;
    gap:8px;
    margin-bottom:24px
  }
  .small-circuit {
    width:14px;
    height:14px
  }
  .lede {
    font-size:18px;
    margin-top:24px
  }
  .hero-description {
    font-size:15px
  }
  .hero .button {
    font-size:13px;
    gap:24px
  }
  .circuit-scene {
    margin-top:20px;
    margin-bottom:5px
  }
  .scene-board {
    left:4%;
    width:58%;
    padding:5px
  }
  .scene-title {
    font-size:9px;
    min-height:28px;
    gap:5px
  }
  .scene-title .tile-mark {
    width:14px
  }
  .scene-caption {
    font-size:7px
  }
  .scene-prediction {
    right:1%;
    top:46%;
    width:65%;
    padding:11px 12px
  }
  .scene-prediction>p {
    font-size:23px;
    margin-bottom:10px
  }
  .mini-result {
    font-size:9px
  }
  .scene-prediction .scene-title {
    padding-bottom:7px;
    margin-bottom:8px
  }
  .scene-footnote {
    font-size:8px;
    margin-top:10px
  }
  .mini-bar {
    height:5px;
    margin-bottom:9px
  }
  .roll-stamp {
    right:1%;
    top:10%;
    width:64px
  }
  .roll-stamp svg {
    width:50px
  }
  .roll-stamp>span {
    font-size:12px
  }
  .rally-strip>.wrap {
    font-size:17px;
    justify-content:space-between;
    gap:8px
  }
  .rally-strip>.wrap>span:nth-of-type(3) {
    display:none
  }
  .rally-strip>.wrap>b:nth-of-type(2) {
    display:none
  }
  .rally-strip b {
    font-size:23px
  }
  .bot-lineup {
    padding-block:48px 55px
  }
  .section-intro h2 {
    font-size:55px
  }
  .section-intro>p {
    font-size:16px
  }
  .section-intro {
    margin-bottom:30px;
    gap:20px
  }
  .product {
    padding:27px 21px;
    gap:30px
  }
  .product-name {
    font-size:16px;
    margin-bottom:25px
  }
  .product h3 {
    font-size:46px
  }
  .product-copy>p {
    font-size:15px;
    margin-top:20px
  }
  .feature-list {
    font-size:12px;
    margin-block:20px 24px
  }
  .product .button {
    width:100%;
    font-size:12px;
    padding:13px 15px;
    gap:12px
  }
  .board-feature {
    width:95%
  }
  .board-feature>a {
    transform:rotate(2deg)
  }
  figcaption {
    font-size:9px
  }
  .prediction-demo {
    padding:19px 16px
  }
  .prediction-demo h4 {
    font-size:17px
  }
  .prediction-actions button {
    font-size:11px;
    padding:10px 8px
  }
  .prediction-option>div:first-child {
    font-size:12px
  }
  .prediction-total {
    gap:6px;
    font-size:10px
  }
  .reset-demo {
    font-size:10px
  }
  .demo-heading>span:first-child {
    font-size:17px
  }
  .demo-heading>span:last-child {
    font-size:10px
  }
  .about-section {
    padding-block:55px
  }
  .about-layout {
    grid-template-columns:1fr;
    gap:32px
  }
  .about-section h2 {
    font-size:76px
  }
  .about-mark {
    width:52px;
    margin-bottom:24px
  }
  .about-copy>p:first-child {
    font-size:24px
  }
  .choose-section h2 {
    font-size:62px
  }
  .choose-section p {
    font-size:15px
  }
  .choose-links strong {
    font-size:20px
  }
  .choose-links small {
    font-size:11px
  }
  .choose-links>a {
    gap:15px
  }
  .faq h2 {
    font-size:33px
  }
  .faq summary {
    font-size:14px
  }
  .site-footer {
    gap:20px
  }
  .site-footer>div {
    margin-left:0;
    width:100%;
    font-size:12px
  }
  .site-footer>p {
    font-size:11px
  }
  .site-footer .brand span {
    font-size:25px
  }
  .site-footer>small {
    font-size:10px
  }
  .clout-hero {
    padding-block:40px 55px
  }
  .clout-hero h1 {
    font-size:78px
  }
  .clout-steps {
    padding-block:50px
  }
  .steps-list {
    grid-template-columns:1fr;
    gap:25px
  }
  .steps-list h3 {
    font-size:38px
  }
  .clout-commands {
    padding-block:50px
  }
  .clout-commands dl {
    grid-template-columns:1fr
  }
  .clout-commands h2 {
    font-size:52px
  }
}

.prediction-demo .prediction-question {
  font:700 20px/1.3 var(--body);
  letter-spacing:normal
}

@media(max-width:520px) {
  .clout-hero h1 {
    font-size:clamp(52px,15vw,68px)
  }
  .prediction-demo .prediction-question {
    font-size:17px
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto
  }
  *,*:before,*:after {
    animation:none!important;
    transition:none!important
  }
}
