:root {
  color-scheme: only light;
  --ink: #1f2731;
  --ink-deep: #111820;
  --slate: #4f5d6c;
  --blue: #4d91dc;
  --blue-dark: #2d6fb8;
  --blue-soft: #eaf3fd;
  --blue-pale: #f5f9fe;
  --paper: #fbfcfe;
  --white: #ffffff;
  --warm: #f1eee5;
  --line: rgba(31, 39, 49, 0.13);
  --line-blue: rgba(77, 145, 220, 0.24);
  --shadow: 0 30px 80px rgba(24, 43, 68, 0.16);
  --display: "Fraunces", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --mono: "IBM Plex Mono", "SFMono-Regular", monospace;
  --wrap: 1220px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  color-scheme: only light;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

button,
input,
select,
textarea {
  color-scheme: only light;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
  padding: 0;
  margin: 0;
}
p {
  margin: 0 0 1em;
}
h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 470;
  line-height: 1.04;
  letter-spacing: -0.03em;
}
em {
  font-weight: 340;
}
.wrap {
  width: min(calc(100% - 64px), var(--wrap));
  margin-inline: auto;
}
.wrap--narrow {
  max-width: 760px;
}
.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;
}
.honeypot {
  position: absolute;
  left: -9999px;
}
:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--blue-dark);
  font: 600 11px/1.4 var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.section-heading {
  max-width: 760px;
}
.section-heading--center {
  margin-inline: auto;
  text-align: center;
}
.section-heading h2 {
  font-size: clamp(45px, 5.5vw, 72px);
}
.section-heading > p:last-child {
  max-width: 610px;
  margin: 25px auto 0;
  color: var(--slate);
  font-size: 18px;
}
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6cc48a;
  box-shadow: 0 0 0 5px rgba(108, 196, 138, 0.14);
  flex: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 14px 25px;
  font: 650 14px/1 var(--sans);
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  box-shadow: 0 10px 28px rgba(45, 111, 184, 0.22);
}
.btn--primary:hover {
  box-shadow: 0 14px 34px rgba(45, 111, 184, 0.3);
}
.btn--light {
  color: var(--ink);
  background: var(--white);
}
.btn--large {
  padding: 17px 29px;
  font-size: 15px;
}
.btn--small {
  padding: 11px 18px;
}
.btn--text {
  padding-inline: 0;
  border-radius: 0;
  border-bottom-color: var(--line);
}
.inline-link {
  display: inline-block;
  border-bottom: 1px solid currentColor;
  color: var(--blue-dark);
  font-weight: 650;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(251, 252, 254, 0.91);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: 88px;
}
.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 7px;
  height: 75px;
}
.brand__symbol {
  width: 41px;
  height: 51px;
  object-fit: contain;
}
.brand__wordmark {
  width: 91px;
  height: auto;
}
.site-nav__menu {
  display: flex;
  gap: 32px;
}
.site-nav__menu a {
  color: var(--slate);
  font-size: 13px;
  font-weight: 550;
}
.site-nav__menu a:hover {
  color: var(--blue-dark);
}
.site-header__cta {
  justify-self: end;
}
.site-nav__toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.site-nav__toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  margin: 5px;
  background: var(--ink);
}

.beta-bar {
  color: #dfeeff;
  background: var(--ink-deep);
}
.beta-bar__inner {
  display: flex;
  align-items: center;
  min-height: 44px;
  gap: 13px;
  font-size: 12px;
}
.beta-bar__inner strong {
  color: var(--white);
}
.beta-bar__inner > span:not(.status-dot) {
  color: #91a4b8;
}
.beta-bar__inner a {
  margin-left: auto;
  border-bottom: 1px solid #69809a;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 105px;
  background:
    radial-gradient(circle at 83% 31%, #e6f2ff 0, transparent 35%),
    linear-gradient(180deg, #fff 0%, #f7faff 100%);
}
.hero::before {
  content: "";
  position: absolute;
  right: -150px;
  top: -250px;
  width: 680px;
  height: 680px;
  border: 1px solid rgba(77, 145, 220, 0.14);
  border-radius: 50%;
}
.hero::after {
  content: "";
  position: absolute;
  right: 75px;
  top: -34px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(77, 145, 220, 0.12);
  border-radius: 50%;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  align-items: center;
  gap: 80px;
}
.hero h1 {
  max-width: 10ch;
  font-size: clamp(60px, 7vw, 98px);
}
.hero h1 em {
  color: var(--blue-dark);
}
.hero__sub {
  max-width: 630px;
  margin-top: 28px;
  color: var(--slate);
  font-size: 19px;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 35px;
}
.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}
.hero__meta span {
  border: 1px solid var(--line-blue);
  border-radius: 999px;
  padding: 6px 10px;
  color: #5d6d7e;
  background: rgba(255, 255, 255, 0.72);
  font: 500 9px var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero__brand {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__brand img {
  position: relative;
  z-index: 1;
  width: min(100%, 370px);
  filter: drop-shadow(0 26px 35px rgba(34, 66, 104, 0.16));
}
.hero__glow {
  position: absolute;
  top: 11%;
  left: 9%;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 30px 80px rgba(45, 111, 184, 0.16);
}

.software-showcase {
  padding: 135px 0 145px;
  background: var(--white);
}
.software-showcase__heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 90px;
  align-items: end;
  margin-bottom: 65px;
}
.software-showcase__heading h2 {
  font-size: clamp(46px, 5.7vw, 73px);
}
.software-showcase__heading > p {
  color: var(--slate);
  font-size: 18px;
}
.software-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid #87929e;
  border-radius: 15px;
  background: #1f2023;
  box-shadow: var(--shadow);
}
.software-frame__top {
  display: flex;
  align-items: center;
  height: 44px;
  padding: 0 17px;
  gap: 7px;
  color: #afb7c0;
  font-size: 10px;
}
.software-frame__top i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #616870;
}
.software-frame__top span {
  margin-left: 12px;
}
.software-frame__top b {
  margin-left: auto;
  color: #7db4ef;
  font: 500 9px var(--mono);
  letter-spacing: 0.12em;
}
.software-frame img {
  width: 100%;
}
.software-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  border-block: 1px solid var(--line);
}
.software-notes article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  padding: 28px 30px;
  border-right: 1px solid var(--line);
}
.software-notes article:first-child {
  padding-left: 0;
}
.software-notes article:last-child {
  border-right: 0;
}
.software-notes article > span {
  padding-top: 5px;
  color: var(--blue);
  font: 500 10px var(--mono);
}
.software-notes h3 {
  margin-bottom: 8px;
  font-size: 22px;
}
.software-notes p {
  margin: 0;
  color: var(--slate);
  font-size: 13px;
}

.styles {
  padding: 140px 0 150px;
  overflow: hidden;
  color: #f5f8fb;
  background: var(--ink-deep);
}
.styles .eyebrow {
  color: #7eb6f0;
}
.styles .section-heading > p:last-child {
  color: #91a0af;
}
.template-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  gap: 24px;
  margin-top: 75px;
}
.template-card {
  margin: 0;
}
.template-card:nth-child(even) {
  margin-top: 42px;
}
.template-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  background: #f3f0e7;
  box-shadow: 0 25px 48px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease;
}
.template-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
}
.template-card:hover .template-card__image {
  transform: translateY(-9px);
}
.template-card img {
  width: 100%;
  aspect-ratio: 0.76;
  object-fit: cover;
  object-position: top;
}
.template-card figcaption {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
}
.template-card figcaption span {
  font: 450 18px var(--display);
}
.template-card figcaption small {
  color: #788898;
  font: 400 8px var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.feature-band {
  padding: 145px 0;
  background: var(--blue-pale);
}
.feature-band__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 105px;
  align-items: start;
}
.feature-band__intro {
  position: sticky;
  top: 135px;
}
.feature-band__intro h2 {
  font-size: clamp(44px, 5vw, 66px);
}
.feature-band__intro > p:last-child {
  margin-top: 25px;
  color: var(--slate);
  font-size: 17px;
}
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-blue);
}
.feature-list article {
  display: grid;
  grid-template-columns: 53px 1fr;
  gap: 18px;
  min-height: 210px;
  padding: 37px 26px;
  border-bottom: 1px solid var(--line-blue);
}
.feature-list article:nth-child(odd) {
  border-right: 1px solid var(--line-blue);
  padding-left: 0;
}
.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-blue);
  border-radius: 12px;
  color: var(--blue-dark);
  background: var(--white);
  font: 600 13px var(--mono);
}
.feature-list h3 {
  margin: 6px 0 12px;
  font-size: 25px;
}
.feature-list p {
  margin: 0;
  color: var(--slate);
  font-size: 14px;
}

.beta-explainer {
  padding: 130px 0;
  border-block: 1px solid var(--line);
  background: var(--white);
}
.beta-explainer__grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 110px;
}
.beta-explainer h2 {
  font-size: clamp(45px, 5vw, 67px);
}
.beta-explainer__body {
  padding-top: 35px;
  color: var(--slate);
  font-size: 18px;
}
.beta-explainer__body .inline-link {
  margin-top: 15px;
  font-size: 15px;
}

.beta-signup {
  padding: 140px 0;
  background: linear-gradient(145deg, #e9f3fe 0%, #f8fbff 52%, #edf6ff 100%);
}
.beta-signup__grid,
.feedback__grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 100px;
  align-items: start;
}
.beta-signup__intro {
  position: sticky;
  top: 135px;
}
.beta-signup h2,
.feedback h2 {
  font-size: clamp(46px, 5.2vw, 70px);
}
.beta-signup__intro > p:nth-of-type(2),
.feedback__intro > p:last-child {
  margin-top: 25px;
  color: var(--slate);
  font-size: 17px;
}
.beta-signup__intro ul {
  display: grid;
  gap: 11px;
  margin-top: 30px;
  color: #4e6278;
  font-size: 14px;
}
.beta-signup__intro li::before {
  content: "✓";
  margin-right: 10px;
  color: var(--blue-dark);
  font-weight: 800;
}

.quill-form {
  position: relative;
  padding: 46px;
  border: 1px solid var(--line-blue);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 60px rgba(50, 91, 139, 0.11);
}
.quill-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 21px;
  color: #3a4a5b;
  font-size: 12px;
  font-weight: 650;
}
.quill-form input,
.quill-form select,
.quill-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cbd9e7;
  border-radius: 7px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  font: 400 14px/1.45 var(--sans);
}
.quill-form textarea {
  resize: vertical;
}
.quill-form input:focus,
.quill-form select:focus,
.quill-form textarea:focus {
  outline: 0;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(77, 145, 220, 0.13);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.quill-form .check {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 11px;
  font-weight: 450;
  line-height: 1.5;
}
.quill-form .check input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}
.quill-form .btn {
  width: 100%;
}
.form-fine {
  margin: 13px 0 0;
  color: #77889a;
  font-size: 10px;
  line-height: 1.5;
}

.feedback {
  padding: 140px 0;
  color: #eef5fc;
  background: linear-gradient(145deg, #17212c, #0f161e);
}
.feedback .eyebrow {
  color: #7eb6f0;
}
.feedback__intro > p:last-child {
  color: #98a8b8;
}
.quill-form--dark {
  border-color: #344556;
  color: #edf5fd;
  background: rgba(27, 38, 50, 0.82);
  box-shadow: none;
}
.quill-form--dark label {
  color: #c2ceda;
}
.quill-form--dark input,
.quill-form--dark select,
.quill-form--dark textarea {
  border-color: #415365;
  color: #eef5fc;
  background: #101923;
}
.quill-form--dark input[type="file"] {
  padding: 10px;
}
.quill-form--dark .form-fine {
  color: #77899b;
}

.faq {
  padding: 140px 0;
  background: var(--white);
}
.faq__grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 100px;
  align-items: start;
}
.faq h2 {
  font-size: clamp(44px, 5vw, 66px);
}
.faq__list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  position: relative;
  padding: 28px 45px 28px 0;
  font: 500 22px var(--display);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary::after {
  content: "+";
  position: absolute;
  right: 3px;
  top: 27px;
  color: var(--blue-dark);
  font: 400 24px var(--sans);
}
.faq details[open] summary::after {
  content: "−";
}
.faq details p {
  max-width: 650px;
  padding: 0 45px 27px 0;
  color: var(--slate);
}

.page-header {
  padding: 95px 0 40px;
  background: linear-gradient(180deg, #fff, var(--blue-pale));
}
.page-header h1 {
  font-size: clamp(46px, 6vw, 72px);
}
.page-header__intro {
  max-width: 680px;
  color: var(--slate);
  font-size: 18px;
}
.page-body,
.post__content {
  padding: 35px 0 110px;
}
.page-body .wrap,
.post__content {
  max-width: 760px;
}
.page-body a,
.post__content a {
  color: var(--blue-dark);
  text-decoration: underline;
}
.post-list {
  padding: 55px 0 110px;
}
.post-list .wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
.post-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.post-card__image {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.post-card__body {
  padding: 28px;
}
.post-card__date {
  color: var(--blue-dark);
  font: 500 10px var(--mono);
}
.post-card h2 {
  margin: 10px 0;
  font-size: 28px;
}
.post-card p {
  color: var(--slate);
}
.simple-list-item {
  padding: 25px 0;
  border-top: 1px solid var(--line);
}
.simple-list-item h3 {
  font-size: 25px;
}
.post__content {
  margin-inline: auto;
  font-size: 17px;
}
.post__content h2 {
  margin: 1.7em 0 0.5em;
  font-size: 32px;
}
.post__content ul {
  list-style: disc;
  padding-left: 22px;
}

.site-footer {
  padding-top: 85px;
  color: #dbe6f1;
  background: #0c1218;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.55fr 0.7fr 0.7fr 1.25fr;
  gap: 50px;
  padding-bottom: 70px;
  border-bottom: 1px solid #27323e;
}
.site-footer__brand img {
  width: 116px;
  margin-bottom: 17px;
  filter: brightness(1.6);
}
.site-footer__brand p {
  color: #788899;
  font: 400 18px/1.4 var(--display);
}
.site-footer h4 {
  margin-bottom: 19px;
  color: #7eb6f0;
  font: 600 10px var(--mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.site-footer__top > div > a {
  display: block;
  margin: 9px 0;
  color: #9eabba;
  font-size: 13px;
}
.site-footer__top > div > a:hover {
  color: #fff;
}
.site-footer__note {
  position: relative;
  padding-left: 23px;
}
.site-footer__note .status-dot {
  position: absolute;
  left: 0;
  top: 3px;
}
.site-footer__note p {
  color: #788899;
  font-size: 13px;
}
.site-footer__note .inline-link {
  display: inline-block;
  color: #9fc9f4;
}
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  color: #596777;
  font-size: 10px;
}
.site-footer__bottom p {
  margin: 0;
}

@media (max-width: 1000px) {
  .hero__inner,
  .software-showcase__heading,
  .feature-band__grid,
  .beta-explainer__grid,
  .beta-signup__grid,
  .feedback__grid,
  .faq__grid {
    grid-template-columns: 1fr;
    gap: 58px;
  }
  .hero h1 {
    max-width: none;
  }
  .hero__brand {
    max-width: 400px;
    margin-inline: auto;
  }
  .software-notes {
    grid-template-columns: 1fr;
  }
  .software-notes article,
  .software-notes article:first-child {
    padding: 25px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .software-notes article:last-child {
    border-bottom: 0;
  }
  .template-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .feature-band__intro,
  .beta-signup__intro {
    position: static;
  }
  .site-footer__top {
    grid-template-columns: 1.3fr 1fr 1fr;
  }
  .site-footer__note {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .wrap {
    width: min(calc(100% - 40px), var(--wrap));
  }
  .site-header__inner {
    grid-template-columns: 1fr auto;
    height: 74px;
  }
  .brand {
    height: 64px;
    gap: 5px;
  }
  .brand__symbol {
    width: 34px;
    height: 44px;
  }
  .brand__wordmark {
    width: 75px;
  }
  .site-nav {
    justify-self: end;
  }
  .site-nav__toggle {
    display: block;
  }
  .site-nav__menu {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 14px 20px 20px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }
  .site-nav__menu.is-open {
    display: flex;
  }
  .site-nav__menu li {
    padding: 10px 0;
  }
  .site-header__cta {
    display: none;
  }
  .beta-bar__inner > span:not(.status-dot) {
    display: none;
  }
  .beta-bar__inner {
    font-size: 10px;
  }
  .hero {
    padding: 65px 0 80px;
  }
  .hero__inner {
    gap: 40px;
  }
  .hero h1 {
    font-size: 53px;
  }
  .hero__sub {
    font-size: 17px;
  }
  .hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero__brand img {
    width: 260px;
  }
  .software-showcase,
  .styles,
  .feature-band,
  .beta-signup,
  .feedback,
  .faq {
    padding: 90px 0;
  }
  .software-showcase__heading {
    margin-bottom: 40px;
  }
  .software-frame {
    border-radius: 7px;
  }
  .software-frame__top {
    height: 32px;
  }
  .software-frame__top b {
    display: none;
  }
  .template-grid {
    grid-template-columns: 1fr;
    max-width: 390px;
    margin-inline: auto;
  }
  .template-card:nth-child(even) {
    margin-top: 8px;
  }
  .template-card {
    margin-bottom: 25px;
  }
  .feature-list {
    grid-template-columns: 1fr;
  }
  .feature-list article,
  .feature-list article:nth-child(odd) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }
  .feature-band__grid,
  .beta-explainer__grid,
  .beta-signup__grid,
  .feedback__grid,
  .faq__grid {
    gap: 45px;
  }
  .quill-form {
    padding: 28px 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .post-list .wrap {
    grid-template-columns: 1fr;
  }
  .site-footer__top {
    grid-template-columns: 1fr 1fr;
  }
  .site-footer__brand,
  .site-footer__note {
    grid-column: 1 / -1;
  }
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 5px;
  }
}

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