:root {
  --blue: #204ce5;
  --ink: #17254b;
  --muted: #606a80;
  --paper: #fff;
  --wash: #f1f5ff;
  --line: #dce3f1;
  --green: #167153;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Avenir Next", Avenir, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}
.wrap {
  max-width: 1180px;
  margin: auto;
  padding-left: 36px;
  padding-right: 36px;
}
.nav {
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  font-size: 23px;
  font-weight: 750;
  letter-spacing: -1px;
}
.brand img {
  border-radius: 9px;
  margin-right: 10px;
}
.brand-dot {
  color: var(--blue);
}
nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 13px;
  font-weight: 600;
}
.nav-cta {
  border: 1px solid var(--line);
  padding: 12px 18px;
  border-radius: 8px;
}
.nav-cta span {
  margin-left: 16px;
}
.hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 42px;
  align-items: center;
  padding-top: 70px;
  padding-bottom: 100px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 1.8px;
  display: flex;
  gap: 9px;
  align-items: center;
  margin: 0 0 25px;
}
.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: clamp(52px, 5.8vw, 76px);
  line-height: 1.08;
  letter-spacing: -4px;
  font-weight: 600;
  margin-bottom: 30px;
}
.better {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
  position: relative;
}
.better svg {
  position: absolute;
  left: 0;
  bottom: -13px;
  width: 100%;
  height: 22px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 3;
  stroke-linecap: round;
}
.intro {
  font-size: 17px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 440px;
  margin-bottom: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  border-radius: 8px;
  padding: 17px 21px;
  font-size: 13px;
  font-weight: 650;
  transition:
    transform 0.2s,
    background 0.2s;
}
.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 4px 8px #204ce512;
}
.button:hover {
  background: #193bb6;
  transform: translateY(-2px);
}
.hero-note {
  font-size: 11px;
  color: var(--muted);
  margin: 15px 0 0;
}
.demo-scene {
  padding: 36px 0 12px;
  position: relative;
}
.demo-scene:before {
  content: "";
  position: absolute;
  inset: -12px -30px -12px 0;
  background: radial-gradient(
    ellipse,
    #e5edff 0%,
    #f7f9ff 55%,
    transparent 72%
  );
  z-index: -1;
}
.demo-caption {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 25px;
}
.tiny-star {
  font-size: 26px;
  color: var(--blue);
}
.editor {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 18px 50px #1a3f8110;
  transform: rotate(-2deg);
  overflow: hidden;
}
.editor-top {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 23px;
  border-bottom: 1px solid #eff1f7;
}
.avatar {
  display: grid;
  place-items: center;
  background: #eef0fe;
  color: var(--blue);
  border-radius: 50%;
  height: 35px;
  width: 35px;
  font-family: Georgia, serif;
  font-style: italic;
}
.editor-top strong {
  font-size: 12px;
  display: block;
}
.editor-top div > span {
  font-size: 10px;
  color: var(--muted);
  display: block;
  margin-top: 4px;
}
.editor-dots {
  margin-left: auto;
  letter-spacing: 3px;
  color: #949bb0;
}
.message {
  font-size: 23px;
  line-height: 1.8;
  padding: 26px 26px 32px;
  min-height: 192px;
  letter-spacing: -0.5px;
}
.mistake {
  text-decoration: underline wavy #d88762;
  text-decoration-thickness: 1.5px;
  text-underline-offset: 6px;
}
.corrected {
  color: var(--green);
  background: #e8f7ef;
  border-radius: 3px;
}
.editor-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #fafbfe;
  gap: 12px;
}
.editor-toolbar > span {
  font-size: 10px;
  color: var(--muted);
}
.editor-toolbar button {
  border: 0;
  background: var(--blue);
  color: white;
  padding: 12px 15px;
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 600;
}
.style-strip {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 25px;
  transform: rotate(1deg);
}
.style-strip span {
  font-size: 10px;
  background: white;
  border: 1px solid var(--line);
  padding: 10px 13px;
  border-radius: 20px;
  white-space: nowrap;
}
.style-strip .selected {
  background: var(--ink);
  color: white;
  border-color: var(--ink);
}
.demo-footnote {
  text-align: center;
  font-size: 10px;
  color: var(--muted);
  margin: 20px 0 0;
}
.promise-bar {
  border-block: 1px solid var(--line);
}
.promise-bar > div {
  display: flex;
  justify-content: space-between;
  padding-block: 22px;
  font-size: 12px;
  font-weight: 600;
}
.promise-bar span:before {
  content: "✦";
  color: var(--blue);
  margin-right: 13px;
}
.products {
  padding-top: 87px;
  padding-bottom: 80px;
}
.section-heading {
  text-align: center;
}
.section-heading .eyebrow {
  justify-content: center;
}
h2 {
  font-size: 40px;
  font-weight: 550;
  line-height: 1.2;
  letter-spacing: -1.8px;
  margin-bottom: 18px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 14px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.product-card {
  border-radius: 16px;
  background: var(--wash);
  padding: 30px 30px 0;
  overflow: hidden;
}
.chrome {
  background: #f2f6f5;
}
.product-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 9px;
  letter-spacing: 1.3px;
  font-weight: 700;
  margin-bottom: 32px;
}
.availability {
  margin-left: auto;
  font-size: 9px;
  letter-spacing: 0;
  border: 1px solid #cdd7e6;
  padding: 5px 8px;
  border-radius: 12px;
  color: var(--muted);
}
.platform-icon {
  font-size: 23px;
}
.chrome-icon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: conic-gradient(
    #e77769 0 120deg,
    #e9c961 120deg 240deg,
    #78ac8c 240deg
  );
  position: relative;
}
.chrome-icon:after {
  content: "";
  position: absolute;
  inset: 6px;
  background: #5486c8;
  border: 2px solid #fff;
  border-radius: 50%;
}
h3 {
  font-size: 26px;
  line-height: 1.25;
  letter-spacing: -0.8px;
  font-weight: 600;
  margin-bottom: 16px;
}
.product-card > p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 370px;
  min-height: 74px;
}
.keyboard-preview,
.browser-preview {
  height: 179px;
  border: 1px solid #d7deeb;
  border-radius: 11px 11px 0 0;
  margin: 28px 12px 0;
  background: #e5eaf2;
  padding: 10px 8px 0;
  overflow: hidden;
}
.keyboard-tools {
  display: flex;
  justify-content: space-around;
  font-size: 10px;
  align-items: center;
  margin-bottom: 12px;
  height: 27px;
}
.keyboard-tools b {
  background: white;
  color: var(--blue);
  padding: 7px 10px;
  border-radius: 5px;
}
.keys {
  display: flex;
  gap: 5px;
  margin-bottom: 6px;
}
.keys span {
  flex: 1;
  background: white;
  box-shadow: 0 1px 1px #8791a4;
  border-radius: 4px;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
}
.keys.middle {
  margin-inline: 15px;
}
.keys.last {
  margin-inline: 6px;
}
.browser-preview {
  background: white;
  padding: 0;
  position: relative;
}
.browser-top {
  background: #e7eeea;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px;
}
.browser-top i {
  height: 5px;
  width: 5px;
  border-radius: 50%;
  background: #a3b2aa;
}
.browser-top > span {
  font-size: 8px;
  margin: auto;
  color: #6c7a73;
}
.browser-text {
  font-size: 13px;
  line-height: 1.9;
  padding: 21px;
}
.browser-text > span {
  color: var(--green);
  background: #edf8f1;
}
.floating-fix {
  background: white;
  box-shadow: 0 3px 18px #193b2b1f;
  border: 1px solid #e0e8e3;
  border-radius: 7px;
  padding: 7px 11px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-size: 11px;
}
.floating-fix > span {
  background: var(--blue);
  padding: 4px 7px;
  color: white;
  border-radius: 4px;
  font-size: 9px;
}
.product-bottom {
  border-top: 1px solid #d7deeb;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  gap: 12px;
  font-size: 9px;
  color: var(--muted);
  position: relative;
}
.store-status {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.how {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding-top: 42px;
  padding-bottom: 80px;
}
.feature-list article {
  display: flex;
  gap: 22px;
  margin-bottom: 28px;
}
.feature-list article > span {
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  border-radius: 9px;
  background: var(--wash);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-family: Georgia, serif;
  font-size: 19px;
}
.feature-list h3 {
  font-size: 17px;
  letter-spacing: -0.3px;
  margin: 3px 0 10px;
}
.feature-list p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 0;
}
.faq {
  border-top: 1px solid var(--line);
  padding-top: 65px;
  padding-bottom: 65px;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  column-gap: 50px;
}
.faq > .eyebrow {
  grid-column: 1;
  margin-bottom: 15px;
}
.faq > h2 {
  grid-column: 1;
  font-size: 33px;
}
.faq-list {
  grid-column: 2;
  grid-row: 1/4;
}
details {
  border-bottom: 1px solid var(--line);
  padding: 19px 0;
}
details:first-child {
  padding-top: 0;
}
summary {
  cursor: pointer;
  list-style: none;
  font-size: 14px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
summary::-webkit-details-marker {
  display: none;
}
summary:after {
  content: "+";
  color: var(--blue);
}
details[open] summary:after {
  content: "-";
}
details p {
  font-size: 13px;
  line-height: 1.9;
  color: var(--muted);
  margin: 15px 20px 0 0;
}
.closing {
  background: var(--wash);
  text-align: center;
  border-radius: 18px;
  padding-top: 42px;
  padding-bottom: 45px;
}
.closing h2 {
  margin-top: 15px;
  font-size: 35px;
}
.closing .button {
  margin-top: 9px;
}
footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 35px;
  padding-bottom: 35px;
  font-size: 11px;
  color: var(--muted);
}
footer .brand {
  color: var(--ink);
  font-size: 19px;
}
footer p {
  margin: 0;
}
footer > div {
  display: flex;
  gap: 24px;
}
footer a:hover,
nav > a:hover {
  color: var(--blue);
}
@media (min-width: 1400px) {
  .hero {
    padding-top: 95px;
    padding-bottom: 120px;
  }
}
@media (max-width: 800px) {
  .wrap {
    padding-left: 24px;
    padding-right: 24px;
  }
  .nav {
    height: 80px;
  }
  nav {
    gap: 20px;
  }
  nav > a:not(.nav-cta) {
    display: none;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 40px;
    padding-bottom: 55px;
  }
  .hero-copy {
    max-width: 550px;
  }
  h1 {
    font-size: 64px;
  }
  .demo-scene {
    max-width: 520px;
    width: 100%;
    margin: auto;
    padding-top: 20px;
  }
  .demo-scene:before {
    inset: 0;
  }
  .message {
    min-height: 175px;
  }
  .promise-bar > div {
    gap: 16px;
    font-size: 10px;
  }
  .promise-bar span:before {
    margin-right: 6px;
  }
  .products {
    padding-top: 55px;
    padding-bottom: 55px;
  }
  .product-grid {
    gap: 16px;
  }
  .product-card {
    padding: 22px 20px 0;
  }
  .product-label {
    flex-wrap: wrap;
    gap: 8px;
  }
  .availability {
    margin-left: 0;
  }
  .product-card h3 {
    font-size: 23px;
  }
  .product-card > p {
    min-height: 100px;
  }
  .keyboard-preview,
  .browser-preview {
    margin-inline: 0;
  }
  .product-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .how {
    gap: 30px;
  }
  .faq {
    column-gap: 30px;
  }
  .closing {
    margin-inline: 24px;
  }
  h2 {
    font-size: 34px;
  }
}
@media (max-width: 580px) {
  .brand {
    font-size: 21px;
  }
  .nav-cta {
    font-size: 11px;
    padding: 11px 12px;
  }
  .nav-cta span {
    margin-left: 5px;
  }
  h1 {
    font-size: 58px;
    letter-spacing: -3px;
  }
  .intro {
    font-size: 15px;
  }
  .hero {
    padding-top: 28px;
  }
  .message {
    font-size: 21px;
    padding: 22px;
    min-height: 185px;
  }
  .editor-toolbar {
    padding: 13px;
  }
  .editor-toolbar > span {
    font-size: 9px;
  }
  .style-strip {
    gap: 5px;
  }
  .style-strip span {
    padding: 8px 10px;
    font-size: 9px;
  }
  .promise-bar > div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 20px;
    font-size: 10px;
  }
  .product-grid {
    grid-template-columns: 1fr;
  }
  .product-card {
    padding: 24px 24px 0;
  }
  .product-label {
    flex-wrap: nowrap;
  }
  .availability {
    margin-left: auto;
  }
  .product-card h3 {
    font-size: 28px;
  }
  .product-card > p {
    min-height: 0;
  }
  .keyboard-preview,
  .browser-preview {
    margin-inline: 12px;
  }
  .product-bottom {
    flex-direction: row;
    align-items: center;
  }
  .how {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 10px;
    padding-bottom: 40px;
  }
  .faq {
    display: block;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .faq-list {
    margin-top: 30px;
  }
  .closing h2 {
    font-size: 29px;
  }
  .closing {
    padding-inline: 18px;
  }
  footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  footer p {
    order: 3;
    width: 100%;
    font-size: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
  }
}
.store-link {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.faq-list p a {
  color: var(--blue);
  text-decoration: underline;
}
@media (max-width: 360px) {
  h1 {
    font-size: 48px;
  }
  .nav-cta {
    white-space: nowrap;
    font-size: 10px;
    padding: 10px;
  }
  .brand {
    font-size: 19px;
  }
  .brand img {
    width: 28px;
    height: 28px;
    margin-right: 7px;
  }
  .product-label {
    font-size: 8px;
    letter-spacing: 0.8px;
  }
}

.icon {
  width: 22px;
  height: 22px;
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}
.nav-cta .icon {
  margin-left: 16px;
}
@media (max-width: 580px) {
  .nav-cta .icon {
    margin-left: 5px;
  }
}

.store-link .icon {
  width: 20px;
  height: 20px;
  margin-left: 4px;
}
.floating-fix .icon {
  width: 16px;
  height: 16px;
  margin-left: 3px;
}
