:root {
  --ink: #111111;
  --muted: #4a4a4a;
  --page: #eeeeee;
  --hero: #e8f6ff;
  --nav: #eadcf4;
  --yellow: #ffe300;
  --green: #00b800;
  --purple: #a000ff;
  --cream: #fff6d8;
  --pale-green: #edf8e6;
  --pale-lavender: #f3e8ff;
  --pale-blue: #e6f6ff;
  --pink: #ffe8ef;
  --border: rgba(0, 0, 0, 0.16);
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --comic-font: "Comic Sans MS", "Comic Sans", "Comic Neue", "Trebuchet MS", "Arial Rounded MT Bold",
    "Nimbus Sans", "Liberation Sans", "Noto Sans", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top left, rgba(255, 227, 0, 0.18), transparent 20rem),
    radial-gradient(circle at bottom right, rgba(0, 184, 0, 0.12), transparent 22rem),
    var(--page);
  color: var(--ink);
  font-family: var(--comic-font);
  line-height: 1.35;
}

button,
input,
a {
  font: inherit;
}

a {
  color: inherit;
}

button {
  cursor: pointer;
}

.page-shell {
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto;
  padding: 18px 0 28px;
}

.site-header {
  display: grid;
  grid-template-columns: 94px minmax(0, 1fr) max-content;
  align-items: center;
  gap: 22px;
  min-height: 122px;
}

.brand-block h1 {
  margin: 0;
  font-size: 4.4rem;
  line-height: 0.9;
  text-transform: uppercase;
  overflow-wrap: break-word;
}

.brand-block sup {
  font-size: 1.2rem;
  vertical-align: top;
}

.brand-block p {
  margin: 8px 0 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.mascot {
  position: relative;
  width: 78px;
  height: 96px;
  border: 3px solid var(--ink);
  border-right-color: transparent;
  border-radius: 54% 30% 52% 45%;
  transform: rotate(-5deg);
  background: #f8f8f8;
}

.mascot::after {
  content: "";
  position: absolute;
  right: 11px;
  bottom: 18px;
  width: 29px;
  height: 21px;
  border-right: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
  border-radius: 50%;
}

.mascot-eye {
  position: absolute;
  top: -12px;
  width: 23px;
  height: 34px;
  background: #ffffff;
  border: 2px solid var(--ink);
  border-radius: 50%;
}

.mascot-eye::after {
  content: "";
  position: absolute;
  right: 6px;
  bottom: 8px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.eye-left {
  left: 16px;
}

.eye-right {
  left: 36px;
}

.mascot-smile {
  position: absolute;
  right: 16px;
  top: 45px;
  width: 20px;
  height: 14px;
  border-bottom: 3px solid var(--ink);
  border-radius: 50%;
}

.mascot-dot {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--ink);
  border-radius: 50%;
}

.dot-one {
  right: 20px;
  top: 34px;
}

.dot-two {
  right: 11px;
  top: 42px;
}

.dot-three {
  right: 21px;
  top: 55px;
}

.partner-badge {
  display: grid;
  grid-template-columns: 76px max-content;
  align-items: center;
  gap: 14px;
}

.partner-badge p {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.05;
}

.partner-badge strong {
  font-size: 1.7rem;
}

.fake-windows {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5px;
  width: 72px;
  height: 72px;
}

.fake-windows span {
  border: 1px solid rgba(0, 0, 0, 0.12);
}

.win-red {
  background: #ff4b12;
}

.win-green {
  background: #5eda09;
}

.win-blue {
  background: #00a2ff;
}

.win-yellow {
  background: #ffd629;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 8px;
  background: var(--nav);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.main-nav a,
.nav-download {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.6);
  transform: rotate(-1deg) translateY(-1px);
}

.nav-download {
  margin-left: auto;
  background: var(--yellow);
  border: 2px solid var(--ink);
  box-shadow: inset 0 -3px 0 rgba(0, 0, 0, 0.12);
}

.nav-download:hover,
.nav-download:focus-visible,
.primary-cta:hover,
.primary-cta:focus-visible,
.newsletter-form button:hover,
.newsletter-form button:focus-visible,
.modal-action:hover,
.modal-action:focus-visible {
  transform: rotate(1deg) translateY(-2px);
  filter: saturate(1.15);
}

.panel,
.card {
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 28px;
  align-items: center;
  padding: 30px 32px 20px;
  background: linear-gradient(135deg, #eefbff 0%, var(--hero) 57%, #dceef7 100%);
  overflow: hidden;
}

.brand-block,
.hero-copy,
.hero-product,
.card,
.testimonial blockquote,
.claim-list li,
.main-nav a,
.nav-download {
  min-width: 0;
}

.hero h2,
.hero p,
.card h2,
.card h3,
.card p,
.card li,
.testimonial p,
.testimonial cite,
.claim-list,
.faq-list,
.ad-card {
  overflow-wrap: break-word;
}

.blink-tag {
  width: max-content;
  margin: 0 0 8px;
  padding: 5px 13px;
  background: var(--yellow);
  border: 2px dashed #ff1c1c;
  border-radius: 999px;
  font-size: 1.05rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: softBlink 1.1s steps(2, jump-none) infinite;
}

@keyframes softBlink {
  50% {
    color: #e70000;
    transform: rotate(-1deg);
  }
}

.hero h2 {
  max-width: 720px;
  margin: 0 0 16px;
  font-size: 2.35rem;
  line-height: 1.05;
  text-transform: uppercase;
}

.hero-copy > p:not(.platforms):not(.blink-tag) {
  margin: 0 0 10px;
  font-size: 1.23rem;
  font-weight: 650;
}

.quote-list {
  margin: 8px 0 18px;
  padding-left: 25px;
  font-size: 1.16rem;
  font-weight: 700;
}

.quote-list li + li {
  margin-top: 5px;
}

.primary-cta {
  width: min(100%, 520px);
  min-height: 62px;
  padding: 14px 18px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: linear-gradient(#19dd22, #009b08);
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  text-shadow: 1px 2px 0 rgba(0, 0, 0, 0.28);
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16), 0 4px 8px rgba(0, 0, 0, 0.16);
  transition: transform 140ms ease, filter 140ms ease;
}

.platforms {
  width: min(100%, 520px);
  margin: 8px 0 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
}

.hero-product {
  display: grid;
  grid-template-columns: minmax(230px, 1fr) minmax(190px, 0.7fr);
  align-items: center;
  gap: 24px;
}

.software-stage {
  position: relative;
  width: min(100%, 390px);
  height: 330px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.software-box-art {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
  font-family: var(--comic-font);
}

.svg-box-shadow {
  fill: rgba(0, 0, 0, 0.15);
}

.svg-spine {
  fill: url("#spineFill");
  stroke: #087ab7;
  stroke-linejoin: round;
  stroke-width: 4;
}

.svg-front {
  fill: url("#frontFill");
  stroke: #087ab7;
  stroke-linejoin: round;
  stroke-width: 4;
}

.svg-front-inner {
  fill: none;
  stroke: rgba(0, 0, 0, 0.06);
  stroke-width: 1;
}

.svg-spine-title,
.svg-title,
.svg-edition,
.svg-tm,
.svg-burst text {
  fill: var(--ink);
  font-weight: 900;
}

.svg-spine-title {
  font-size: 17px;
}

.svg-title {
  font-size: 40px;
}

.svg-edition {
  font-size: 15px;
}

.svg-tm {
  font-size: 12px;
}

.svg-smiley circle {
  fill: #ffd91f;
  stroke: var(--ink);
  stroke-width: 4;
}

.svg-smiley ellipse {
  fill: var(--ink);
}

.svg-smiley path {
  fill: none;
  stroke: var(--ink);
  stroke-linecap: round;
  stroke-width: 4;
}

.svg-burst polygon {
  fill: var(--yellow);
  stroke: #d40000;
  stroke-linejoin: round;
  stroke-width: 3;
}

.svg-burst text {
  fill: #ef1717;
  font-size: 18px;
  text-anchor: middle;
  text-transform: uppercase;
}

.software-side {
  position: absolute;
  left: 20px;
  top: 44px;
  z-index: 1;
  width: 96px;
  height: 248px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 0;
  background: #087ab7;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
  box-shadow: -8px 14px 24px rgba(0, 0, 0, 0.16);
}

.software-side::before {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: 0;
  background: linear-gradient(90deg, #d4d4d4 0%, #f5f5f5 68%, #dcecf4 100%);
  clip-path: polygon(0 15%, 100% 0, 100% 100%, 0 85%);
}

.software-side span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 190px;
  white-space: nowrap;
  line-height: 1;
  writing-mode: vertical-rl;
}

.software-box {
  position: absolute;
  left: 100px;
  top: 28px;
  z-index: 2;
  width: 236px;
  height: 270px;
  padding: 28px 24px 20px;
  border: 4px solid #087ab7;
  background: linear-gradient(160deg, #ffffff 0%, #f5f5f5 65%, #d9edf7 100%);
  transform: rotate(1.5deg);
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.software-box::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.burst {
  position: absolute;
  right: -18px;
  top: -21px;
  width: 86px;
  height: 86px;
  display: grid;
  place-items: center;
  background: var(--yellow);
  border: 3px solid #d40000;
  color: #ef1717;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
  text-transform: uppercase;
  clip-path: polygon(
    50% 0%,
    58% 16%,
    73% 7%,
    75% 25%,
    93% 25%,
    84% 40%,
    100% 50%,
    84% 60%,
    93% 75%,
    75% 75%,
    73% 93%,
    58% 84%,
    50% 100%,
    42% 84%,
    27% 93%,
    25% 75%,
    7% 75%,
    16% 60%,
    0% 50%,
    16% 40%,
    7% 25%,
    25% 25%,
    27% 7%,
    42% 16%
  );
}

.box-comic,
.box-sans,
.box-edition {
  position: relative;
  z-index: 1;
  margin: 0;
}

.box-comic,
.box-sans {
  font-size: 2.42rem;
  font-weight: 900;
  line-height: 0.95;
  text-transform: uppercase;
}

.box-sans sup {
  font-size: 0.85rem;
}

.box-edition {
  max-width: 150px;
  margin-top: 18px;
  font-size: 0.95rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
}

.box-smiley,
.mini-smiley,
.footer-smiley {
  position: absolute;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background: #ffd91f;
}

.box-smiley {
  right: 18px;
  bottom: 20px;
  width: 54px;
  height: 54px;
}

.smiley-eye {
  position: absolute;
  top: 28%;
  width: 12%;
  height: 22%;
  background: var(--ink);
  border-radius: 50%;
}

.smiley-eye.left {
  left: 31%;
}

.smiley-eye.right {
  right: 31%;
}

.smiley-mouth {
  position: absolute;
  left: 50%;
  bottom: 20%;
  width: 44%;
  height: 25%;
  border-bottom: 3px solid var(--ink);
  border-radius: 50%;
  transform: translateX(-50%);
}

.claim-list {
  display: grid;
  gap: 25px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 1.18rem;
  font-weight: 900;
}

.claim-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
}

.claim-list li > span:last-child {
  min-width: 0;
  overflow-wrap: break-word;
}

.checkmark {
  position: relative;
  width: 24px;
  height: 24px;
  display: inline-block;
}

.checkmark::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 11px;
  height: 21px;
  border-right: 6px solid #33bd24;
  border-bottom: 6px solid #33bd24;
  transform: rotate(40deg);
}

.feature-grid,
.lower-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.card {
  position: relative;
  min-height: 284px;
  padding: 19px 22px;
  overflow: hidden;
}

.feature-card {
  padding-bottom: 90px;
}

.card-yellow {
  background: var(--cream);
}

.card-green {
  background: var(--pale-green);
}

.card-lavender {
  background: var(--pale-lavender);
}

.card-blue {
  background: var(--pale-blue);
}

.card h2,
.card h3 {
  margin: 0;
  line-height: 1.12;
  text-transform: uppercase;
}

.card h2 {
  font-size: 1.8rem;
  text-align: center;
}

.card h3 {
  font-size: 1.45rem;
}

.card p {
  margin: 11px 0;
  font-size: 1.06rem;
  font-weight: 650;
}

.card ul {
  margin: 8px 0 0;
  padding-left: 21px;
  font-size: 1.04rem;
  font-weight: 700;
}

.card li + li {
  margin-top: 7px;
}

.card-title-row {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
  align-items: center;
}

.feature-emoji {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.card-footer {
  position: absolute;
  left: 22px;
  right: 92px;
  bottom: 23px;
}

.star-icon {
  position: relative;
  width: 34px;
  height: 34px;
  background: #ffef55;
  border: 2px solid #d7af16;
  clip-path: polygon(50% 0%, 61% 32%, 95% 32%, 68% 52%, 80% 86%, 50% 65%, 20% 86%, 32% 52%, 5% 32%, 39% 32%);
}

.brain-icon {
  position: relative;
  width: 34px;
  height: 29px;
  border: 2px solid var(--ink);
  border-radius: 45% 55% 48% 52%;
  background:
    radial-gradient(circle at 30% 35%, transparent 0 5px, #c55378 6px 7px, transparent 8px),
    radial-gradient(circle at 65% 40%, transparent 0 5px, #c55378 6px 7px, transparent 8px),
    #ffb7cb;
}

.brain-icon::before,
.brain-icon::after {
  content: "";
  position: absolute;
  border: 2px solid #c55378;
  border-color: #c55378 transparent transparent transparent;
  border-radius: 50%;
}

.brain-icon::before {
  inset: 8px 14px 7px 5px;
}

.brain-icon::after {
  inset: 7px 5px 8px 14px;
}

.briefcase-icon {
  position: relative;
  width: 36px;
  height: 27px;
  display: block;
  border: 3px solid var(--ink);
  border-radius: 5px;
  background: linear-gradient(#9b694c, #5b321f);
}

.briefcase-icon::before {
  content: "";
  position: absolute;
  left: 10px;
  top: -11px;
  width: 12px;
  height: 8px;
  border: 3px solid var(--ink);
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
  background: #8b5638;
}

.briefcase-icon span {
  position: absolute;
  left: 13px;
  top: 10px;
  width: 7px;
  height: 5px;
  background: #dcb894;
  border: 1px solid var(--ink);
}

.party-graphic {
  position: absolute;
  right: 20px;
  bottom: 18px;
  width: 96px;
  height: 92px;
}

.cake-base,
.cake-top,
.candle,
.flame,
.balloon {
  position: absolute;
  display: block;
}

.cake-base {
  left: 12px;
  bottom: 9px;
  width: 48px;
  height: 22px;
  border: 2px solid var(--ink);
  border-radius: 4px 4px 9px 9px;
  background: #f6b166;
}

.cake-top {
  left: 16px;
  bottom: 29px;
  width: 39px;
  height: 16px;
  border: 2px solid var(--ink);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #ff8fba;
}

.candle {
  left: 34px;
  bottom: 45px;
  width: 7px;
  height: 24px;
  border: 1px solid var(--ink);
  background: repeating-linear-gradient(90deg, #ffffff 0 3px, #a000ff 3px 6px);
}

.flame {
  left: 32px;
  bottom: 67px;
  width: 12px;
  height: 17px;
  border: 1px solid #9f5700;
  border-radius: 50% 50% 50% 0;
  background: #ffd633;
  transform: rotate(-45deg);
}

.balloon {
  border: 2px solid var(--ink);
  border-radius: 50% 50% 47% 47%;
}

.balloon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  height: 42px;
  border-left: 1px solid var(--ink);
  transform: rotate(11deg);
}

.balloon-red {
  right: 23px;
  top: 4px;
  width: 30px;
  height: 42px;
  background: #ff443e;
  transform: rotate(-11deg);
}

.balloon-blue {
  right: 0;
  top: 18px;
  width: 31px;
  height: 39px;
  background: #2eb6ff;
  transform: rotate(9deg);
}

.example-label {
  margin-bottom: 5px;
}

.kerning-demo {
  display: grid;
  gap: 4px;
  max-width: 100%;
  margin-top: 4px;
  font-size: 1.38rem;
  font-weight: 900;
  line-height: 1.05;
}

.kerned-row {
  display: flex;
  gap: 18px;
  white-space: nowrap;
}

.kerned-row.narrow {
  gap: 28px;
}

.kerned-row.wide {
  gap: 22px;
}

.kerned-row.medium {
  gap: 14px;
  font-size: 1.22rem;
}

.globe-icon {
  position: absolute;
  right: 28px;
  bottom: 25px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--ink);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(0, 0, 0, 0.24) 48% 51%, transparent 52%),
    linear-gradient(0deg, transparent 47%, rgba(0, 0, 0, 0.18) 48% 51%, transparent 52%),
    #4cc7ff;
  overflow: hidden;
}

.globe-icon::before,
.globe-icon::after {
  content: "";
  position: absolute;
  inset: 8px 21px;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
}

.globe-icon::after {
  inset: 21px 8px;
}

.land {
  position: absolute;
  display: block;
  background: #4fc34b;
  border: 1px solid #167d23;
}

.land-one {
  left: 16px;
  top: 16px;
  width: 25px;
  height: 18px;
  border-radius: 54% 35% 45% 40%;
}

.land-two {
  right: 11px;
  top: 23px;
  width: 23px;
  height: 28px;
  border-radius: 46% 40% 55% 34%;
}

.land-three {
  left: 29px;
  bottom: 12px;
  width: 21px;
  height: 15px;
  border-radius: 34% 59% 38% 56%;
}

.testimonials {
  margin-top: 18px;
  padding: 18px 20px 16px;
  background: var(--pink);
}

.testimonials h2,
.ad-strip h2 {
  margin: 0 0 12px;
  text-align: center;
  font-size: 1.75rem;
  line-height: 1;
  text-transform: uppercase;
}

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

.testimonial {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  min-height: 132px;
  padding: 8px 18px 8px 8px;
  border-right: 2px solid rgba(199, 74, 103, 0.22);
}

.testimonial:last-child {
  border-right: 0;
}

.testimonial blockquote {
  margin: 0;
}

.testimonial p {
  margin: 0 0 9px;
  font-size: 1.02rem;
  font-weight: 800;
}

.testimonial cite {
  font-style: normal;
  font-weight: 900;
}

.avatar {
  position: relative;
  width: 82px;
  height: 98px;
  overflow: hidden;
}

.avatar::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: -12px;
  width: 68px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 40% 40% 0 0;
  background: var(--shirt);
}

.avatar .face {
  position: absolute;
  left: 18px;
  top: 25px;
  z-index: 2;
  width: 48px;
  height: 57px;
  border: 2px solid var(--ink);
  border-radius: 47% 45% 50% 48%;
  background: #ffd3a2;
}

.avatar .face::before,
.avatar .face::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 12px;
  height: 15px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #ffffff;
}

.avatar .face::before {
  left: 10px;
}

.avatar .face::after {
  right: 7px;
}

.avatar .hair {
  position: absolute;
  left: 11px;
  top: 14px;
  z-index: 3;
  width: 61px;
  height: 28px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 45% 45%;
  background: #6f321c;
}

.avatar .hair::before {
  content: "";
  position: absolute;
  left: -6px;
  top: 14px;
  width: 17px;
  height: 38px;
  border-radius: 50%;
  background: inherit;
}

.avatar .hair.blond {
  background: #ffe248;
}

.mouth {
  position: absolute;
  left: 36px;
  top: 63px;
  z-index: 4;
  width: 20px;
  height: 12px;
  border: 2px solid var(--ink);
  background: #ffffff;
}

.mouth.worried {
  border-radius: 50% 50% 10px 10px;
}

.mouth.flat {
  height: 4px;
  border: 0;
  border-top: 3px solid var(--ink);
  background: transparent;
}

.beanie {
  position: absolute;
  left: 14px;
  top: 6px;
  z-index: 4;
  width: 56px;
  height: 35px;
  border: 2px solid var(--ink);
  border-radius: 50% 50% 20% 20%;
  background: #24a13d;
}

.beanie::after {
  content: "";
  position: absolute;
  left: -5px;
  right: -5px;
  bottom: -5px;
  height: 11px;
  border: 2px solid var(--ink);
  background: #1f8b35;
}

.avatar-blue {
  --shirt: #5ab3de;
}

.avatar-pink {
  --shirt: #ff8ba7;
}

.avatar-green {
  --shirt: #9bcf8a;
}

.info-card {
  min-height: 340px;
}

.faq-list {
  margin: 17px 0 0;
  font-size: 1rem;
  font-weight: 800;
}

.faq-list dt {
  margin-top: 14px;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  margin: 2px 0 0;
}

.mini-smiley {
  right: 22px;
  bottom: 20px;
  width: 60px;
  height: 60px;
  background:
    radial-gradient(ellipse at 50% 65%, transparent 0 13px, var(--ink) 14px 16px, transparent 17px),
    #ffd91f;
}

.mini-smiley::before,
.mini-smiley::after,
.footer-smiley::before,
.footer-smiley::after {
  content: "";
  position: absolute;
  top: 15px;
  width: 8px;
  height: 14px;
  background: var(--ink);
  border-radius: 50%;
}

.mini-smiley::before,
.footer-smiley::before {
  left: 16px;
}

.mini-smiley::after,
.footer-smiley::after {
  right: 16px;
}

.pricing-card {
  background: #fff9df;
}

.pricing-table {
  display: grid;
  margin-top: 16px;
  border: 2px solid rgba(0, 0, 0, 0.42);
  background: rgba(255, 255, 255, 0.6);
}

.pricing-row {
  display: grid;
  grid-template-columns: 1.75fr 1.35fr 0.85fr;
  min-height: 55px;
  border: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.34);
  background: transparent;
  color: inherit;
  text-align: left;
}

button.pricing-row {
  transition: background-color 140ms ease, transform 140ms ease;
}

button.pricing-row:hover,
button.pricing-row:focus-visible {
  background: rgba(255, 227, 0, 0.28);
}

.pricing-row:last-child {
  border-bottom: 0;
}

.pricing-row > span {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 9px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.34);
  font-weight: 800;
}

.pricing-row > span:first-child {
  white-space: nowrap;
}

.pricing-row > span:last-child {
  border-right: 0;
}

.pricing-head {
  min-height: 36px;
  text-align: center;
  text-transform: uppercase;
}

.pricing-head > span {
  justify-content: center;
}

.green-price {
  color: #07880d;
}

.red-price {
  color: #d81717;
}

.purple-price {
  color: #8400cc;
}

.plan-face {
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-left: 0;
  padding: 0;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--yellow);
}

.plan-face::before,
.plan-face::after {
  content: "";
  position: absolute;
}

.plan-face.happy::before {
  left: 6px;
  top: 6px;
  width: 3px;
  height: 5px;
  background: var(--ink);
  box-shadow: 8px 0 0 var(--ink);
  border-radius: 50%;
}

.plan-face.happy::after {
  left: 6px;
  bottom: 5px;
  width: 10px;
  height: 7px;
  border-bottom: 2px solid var(--ink);
  border-radius: 50%;
}

.plan-face.shades::before {
  left: 3px;
  top: 6px;
  width: 6px;
  height: 5px;
  background: var(--ink);
  box-shadow: 9px 0 0 var(--ink);
}

.plan-face.shades::after {
  left: 6px;
  bottom: 5px;
  width: 10px;
  border-bottom: 2px solid var(--ink);
}

.plan-tie {
  position: relative;
  flex: 0 0 auto;
  width: 19px;
  height: 30px;
  margin-left: 0;
  padding: 0;
}

.plan-tie::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0;
  width: 11px;
  height: 11px;
  background: #4125a4;
  border: 2px solid var(--ink);
  transform: rotate(45deg);
}

.plan-tie::after {
  content: "";
  position: absolute;
  left: 2px;
  top: 11px;
  width: 15px;
  height: 18px;
  background: #4125a4;
  border: 2px solid var(--ink);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.guarantee {
  position: relative;
  width: min(100%, 330px);
  margin: 20px auto 8px;
  padding: 7px 12px;
  background: #e52720;
  color: #ffffff;
  border: 2px solid #aa0909;
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.guarantee::before,
.guarantee::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 31px;
  background: #e52720;
  transform: translateY(-50%);
  clip-path: polygon(0 50%, 100% 0, 76% 50%, 100% 100%);
}

.guarantee::before {
  left: -31px;
}

.guarantee::after {
  right: -31px;
  transform: translateY(-50%) rotate(180deg);
}

.guarantee-copy {
  max-width: 390px;
  margin: 0 auto;
  text-align: center;
  font-weight: 900;
}

.newsletter-form {
  display: grid;
  gap: 10px;
  margin-top: 15px;
}

.newsletter-form input {
  min-height: 52px;
  width: 100%;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 10px 13px;
  background: #ffffff;
  font-size: 1rem;
}

.newsletter-form button,
.modal-action {
  min-height: 60px;
  border: 2px solid #5e0096;
  border-radius: 8px;
  background: linear-gradient(180deg, #c940ff, var(--purple));
  color: #ffffff;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: inset 0 -5px 0 rgba(0, 0, 0, 0.16);
  transition: transform 140ms ease, filter 140ms ease;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #0a6d0e;
  font-weight: 900;
}

.form-status.error {
  color: #b60000;
}

.ad-strip {
  margin-top: 18px;
  padding: 0 0 6px;
}

.ads-scroll {
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 12px;
  padding: 0 8px;
}

.ad-card {
  position: relative;
  min-height: 94px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 10px 12px 10px 72px;
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
  overflow: hidden;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 140ms ease;
}

.ad-card:hover,
.ad-card:focus-visible {
  transform: rotate(-1deg) translateY(-2px);
}

.ad-card strong {
  font-size: 1.05rem;
  line-height: 1.05;
}

.windows-ad {
  background: #62b7ff;
  color: #ffffff;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.22);
}

.macaw-ad {
  background: #ffd6e1;
}

.fontpack-ad {
  padding-left: 16px;
  padding-right: 66px;
  background: #e9ffd0;
  text-align: center;
}

.fontpack-ad b {
  position: absolute;
  right: 8px;
  top: 18px;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  background: var(--yellow);
  border: 2px dashed #ff4a00;
  border-radius: 50%;
  color: #000000;
  line-height: 1;
  transform: rotate(-7deg);
}

.adobe-ad {
  background: #ffe6e9;
}

.download-ad {
  background: #f2fbff;
}

.ad-windows {
  position: absolute;
  left: 18px;
  top: 22px;
  width: 39px;
  height: 42px;
  background:
    linear-gradient(90deg, transparent 46%, #62b7ff 47% 53%, transparent 54%),
    linear-gradient(0deg, transparent 46%, #62b7ff 47% 53%, transparent 54%),
    #ffffff;
  transform: perspective(90px) rotateY(-18deg);
}

.macaw-bird {
  position: absolute;
  left: 16px;
  bottom: 8px;
  width: 46px;
  height: 72px;
  border: 2px solid var(--ink);
  border-radius: 56% 45% 50% 45%;
  background: linear-gradient(145deg, #ff3b31 0 35%, #ffd122 36% 58%, #1dbb74 59% 100%);
}

.macaw-bird::before {
  content: "";
  position: absolute;
  right: -15px;
  top: 9px;
  border-left: 17px solid #ffbf14;
  border-top: 7px solid transparent;
  border-bottom: 7px solid transparent;
}

.macaw-bird::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 13px;
  width: 7px;
  height: 7px;
  background: var(--ink);
  border-radius: 50%;
}

.fake-adobe {
  position: absolute;
  left: 18px;
  top: 18px;
  width: 41px;
  height: 52px;
  display: grid;
  place-items: center;
  background: #ed1717;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}

.download-arrow {
  position: absolute;
  left: 26px;
  top: 18px;
  width: 28px;
  height: 41px;
  background: #26bd20;
  border: 2px solid #12810d;
}

.download-arrow::after {
  content: "";
  position: absolute;
  left: -14px;
  bottom: -25px;
  border-left: 28px solid transparent;
  border-right: 28px solid transparent;
  border-top: 28px solid #26bd20;
}

.globe-asset {
  position: absolute;
  right: 24px;
  bottom: 21px;
  width: 86px;
  height: 86px;
  object-fit: contain;
}

.plan-emoji {
  flex: 0 0 auto;
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.2rem;
  line-height: 1;
}

.macaw-img {
  position: absolute;
  right: 10px;
  bottom: 7px;
  width: 70px;
  height: auto;
  object-fit: contain;
}

.macaw-ad {
  padding-left: 12px;
  padding-right: 82px;
  text-align: center;
}

.svg-smiley-img {
  transform-box: fill-box;
  transform-origin: center;
}

.smiley-asset {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
  object-fit: contain;
}

.mini-smiley.smiley-asset {
  position: absolute;
  right: 22px;
  bottom: 20px;
  width: 60px;
  height: 60px;
}

.footer-smiley.smiley-asset {
  position: relative;
  left: 5px;
  width: 70px;
  height: 70px;
  margin-top: 3px;
  overflow: visible;
  box-shadow: none;
}

.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  margin-top: 12px;
  padding: 12px 18px 0;
  text-align: center;
}

.site-footer p {
  margin: 0 0 6px;
  font-weight: 900;
}

.footer-smiley {
  position: relative;
  left: 5px;
  width: 70px;
  height: 70px;
  margin-top: 3px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 66%, transparent 0 15px, var(--ink) 16px 18px, transparent 19px),
    #ffd91f;
  box-shadow: var(--shadow);
}

.footer-smiley::before,
.footer-smiley::after {
  top: 19px;
  width: 9px;
  height: 15px;
}

.footer-smiley + div {
  min-width: 0;
  text-align: center;
}

.footer-smiley + div > p:first-child {
  margin-top: 0;
}

.footer-smiley + div > p:last-child {
  margin-bottom: 0;
}

.footer-smiley::before {
  left: 19px;
}

.footer-smiley::after {
  right: 19px;
}

.footer-smiley + div .support-link {
  display: inline-block;
  margin-top: 4px;
  font-weight: 900;
  text-decoration: none;
}

.footer-smiley + div .support-link:hover,
.footer-smiley + div .support-link:focus-visible {
  text-decoration: underline;
}

.footer-smiley + div .disclaimer {
  max-width: 850px;
  margin: 8px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
}

.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
}

.socials a {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 6px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.socials a:nth-child(1) {
  background: #2463d3;
}

.socials a:nth-child(2) {
  background: #111111;
}

.socials a:nth-child(3) {
  background: #db287c;
}

.socials a:nth-child(4) {
  background: #00a9b8;
}

.socials a:nth-child(5) {
  background: #e80000;
}

.fake-modal {
  width: min(420px, calc(100% - 28px));
  padding: 24px;
  border: 3px solid var(--ink);
  border-radius: 8px;
  background: #fff6d8;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.fake-modal::backdrop {
  background: rgba(0, 0, 0, 0.42);
}

.fake-modal h2 {
  margin: 8px 0 15px;
  font-size: 1.65rem;
  text-transform: uppercase;
}

.fake-modal p {
  margin: 14px 0 20px;
  font-size: 1.1rem;
  font-weight: 800;
}

.modal-close {
  position: absolute;
  right: 8px;
  top: 7px;
  width: 34px;
  height: 34px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #ff5b5b;
  color: #ffffff;
  font-weight: 900;
}

.progress-frame {
  height: 25px;
  padding: 3px;
  border: 2px solid var(--ink);
  background: #ffffff;
}

.progress-bar {
  display: block;
  width: 77%;
  height: 100%;
  background: repeating-linear-gradient(45deg, #26bd20 0 12px, #51e84d 12px 24px);
  animation: loadingJoke 900ms ease-in-out infinite alternate;
}

@keyframes loadingJoke {
  to {
    width: 43%;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .partner-badge {
    grid-column: 2;
    justify-self: start;
  }

  .brand-block h1 {
    font-size: 3.35rem;
  }

  .main-nav {
    flex-wrap: wrap;
  }

  .nav-download {
    margin-left: 0;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
  }

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

  .feature-grid,
  .lower-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial:last-child,
  .lower-grid .info-card:last-child {
    grid-column: 1 / -1;
  }

  .testimonial {
    border-right: 0;
  }

  .ads-scroll {
    grid-template-columns: repeat(5, minmax(190px, 1fr));
    overflow-x: auto;
    padding-bottom: 8px;
  }
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 16px, 680px);
    padding-top: 10px;
  }

  .site-header {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 13px;
  }

  .mascot {
    width: 58px;
    height: 75px;
  }

  .mascot-eye {
    width: 18px;
    height: 27px;
  }

  .eye-left {
    left: 11px;
  }

  .eye-right {
    left: 26px;
  }

  .brand-block h1 {
    font-size: 2rem;
  }

  .brand-block p {
    font-size: 1rem;
  }

  .partner-badge {
    grid-template-columns: 50px minmax(0, 1fr);
    gap: 10px;
  }

  .fake-windows {
    width: 48px;
    height: 48px;
  }

  .partner-badge p,
  .partner-badge strong {
    font-size: 1rem;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .main-nav a,
  .nav-download {
    padding: 8px 9px;
    font-size: 0.9rem;
  }

  .nav-download {
    grid-column: 1 / -1;
  }

  .hero {
    padding: 20px 17px 18px;
    gap: 20px;
  }

  .hero h2 {
    font-size: 1.78rem;
    overflow-wrap: anywhere;
  }

  .hero-copy > p:not(.platforms):not(.blink-tag),
  .quote-list,
  .claim-list {
    font-size: 0.98rem;
  }

  .primary-cta {
    min-height: 58px;
    font-size: 1.05rem;
  }

  .hero-product {
    grid-template-columns: minmax(0, 1fr);
    gap: 14px;
  }

  .software-stage {
    height: 285px;
    width: min(100%, 310px);
    margin: 0 auto;
  }

  .software-side {
    left: 19px;
    top: 48px;
    width: 72px;
    height: 205px;
    font-size: 0.78rem;
  }

  .software-side span {
    height: 160px;
  }

  .software-box {
    left: 80px;
    top: 34px;
    width: 205px;
    height: 230px;
    padding: 23px 17px 17px;
  }

  .box-comic,
  .box-sans {
    font-size: 1.86rem;
  }

  .box-edition {
    max-width: 128px;
    margin-top: 14px;
    font-size: 0.74rem;
  }

  .burst {
    right: -16px;
    top: -18px;
    width: 68px;
    height: 68px;
    font-size: 0.76rem;
  }

  .box-smiley {
    right: 14px;
    bottom: 16px;
    width: 42px;
    height: 42px;
  }

  .claim-list {
    width: min(100%, 360px);
    margin: 0 auto;
    gap: 13px;
  }

  .feature-grid,
  .lower-grid,
  .testimonial-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .testimonial:last-child,
  .lower-grid .info-card:last-child {
    grid-column: auto;
  }

  .card {
    min-height: 0;
  }

  .feature-card {
    min-height: 300px;
  }

  .testimonial {
    min-height: 120px;
    padding-right: 8px;
  }

  .pricing-row {
    grid-template-columns: 1.55fr 1.35fr 0.8fr;
    font-size: 0.86rem;
  }

  .pricing-row > span {
    padding: 8px 7px;
  }

  .guarantee::before,
  .guarantee::after {
    display: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding-inline: 8px;
  }
}

@media (max-width: 420px) {
  .main-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .brand-block h1 {
    font-size: 1.72rem;
  }

  .hero h2 {
    font-size: 1.48rem;
  }

  .software-stage {
    height: 285px;
    transform: none;
  }

  .card-title-row {
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 8px;
  }

  .feature-emoji {
    width: 30px;
    height: 30px;
    font-size: 1.35rem;
  }

  .card h3 {
    font-size: 1.22rem;
  }

  .kerning-demo {
    font-size: 1.1rem;
  }

  .kerned-row,
  .kerned-row.wide {
    gap: 12px;
  }

  .kerned-row.medium {
    gap: 7px;
    font-size: 1rem;
  }
}
