:root {
  --ink: #222222;
  --muted: #536371;
  --paper: #fcfdff;
  --line: #dce4ec;
  --light-blue: #d6edfa;
  --blue: #81c2e9;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button,
a,
summary {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid #368ac3;
  outline-offset: 5px;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2 {
  font-family: "Instrument Serif", Georgia, serif;
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.035em;
}
h2 {
  font-size: 64px;
}
h3 {
  font-size: 24px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}
em {
  font-weight: 400;
  color: #327ca8;
}
p {
  color: var(--muted);
}
.wrap {
  width: calc(100% - 96px);
  max-width: 1240px;
  margin: auto;
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.16em;
  font-weight: 700;
  display: block;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  background: var(--ink);
  color: white;
  padding: 15px 24px;
  border-radius: 6px;
  font-weight: 600;
  line-height: 1.5;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #245c7e;
  transform: translateY(-2px);
}
.button span {
  font-size: 22px;
  line-height: 1;
}
.text-link {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
}
.skip {
  position: fixed;
  left: 16px;
  top: -100px;
  background: white;
  padding: 12px;
  z-index: 100;
}
.skip:focus {
  top: 16px;
}
.header {
  background: rgba(252, 253, 255, 0.96);
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}
.nav {
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  width: 160px;
  display: block;
}
.brand img {
  width: 160px;
  height: auto;
}
.nav nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
  font-weight: 600;
}
.nav .login {
  margin-left: 32px;
}
.nav .button {
  padding: 11px 19px;
  gap: 30px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  padding-top: 64px;
  padding-bottom: 60px;
}
.launch-label {
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 25px;
}
.launch-label > span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #327ca8;
  box-shadow: 0 0 0 4px #e3f1fb;
}
.hero h1 {
  font-size: clamp(64px, 7.1vw, 98px);
}
.hero-description {
  max-width: 510px;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 25px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 27px;
}
.micro {
  font-size: 11px;
  margin-top: 13px;
}
.hero-side {
  overflow: clip;
  position: relative;
  align-self: center;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px 35px;
}
.side-note {
  font-family: "Instrument Serif", serif;
  font-size: 27px;
  font-style: italic;
  transform: rotate(-7deg);
  align-self: center;
}
.hero-orbit {
  position: absolute;
  width: 340px;
  height: 340px;
  border: 1px solid #bed7e8;
  border-radius: 50%;
  right: 0;
  top: 15px;
  transform: rotate(-25deg);
}
.hero-orbit:before {
  content: "";
  position: absolute;
  inset: 36px -12px;
  border: 1px solid #dcebf5;
  border-radius: 50%;
  transform: rotate(55deg);
}
.orbit-dot {
  position: absolute;
  width: 33px;
  height: 33px;
  border-radius: 50%;
  background: var(--blue);
  top: 78px;
  right: 10px;
}
.orbit-dot.two {
  width: 15px;
  height: 15px;
  left: 26px;
  top: 253px;
  background: #add4ee;
}
.hero-caption {
  position: relative;
  margin-top: 95px;
  padding: 25px;
  background: var(--paper);
  max-width: 300px;
}
.hero-caption > span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
}
.hero-caption p {
  font-size: 24px;
  line-height: 1.4;
  margin-top: 10px;
  font-family: "Instrument Serif", serif;
}
.hero-caption strong {
  font-weight: 400;
  color: var(--ink);
}
.product-peek {
  background: #e6f2fb;
  border-radius: 12px;
  padding: 32px 32px 18px;
}
.launch-player video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: #edf7fb;
}
#launch-video {
  scroll-margin-top: 100px;
}
.screen-frame {
  overflow: hidden;
  border: 1px solid #cfdfeb;
  border-radius: 9px;
  background: white;
  box-shadow: 0 20px 40px #22222212;
}
.browser-bar {
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: #f5f9fc;
  font-size: 10px;
  color: #607482;
  border-bottom: 1px solid #e1eaf1;
}
.browser-dots {
  color: #bfceda;
  letter-spacing: 4px;
}
.browser-live {
  font-size: 9px;
}
.product-image {
  width: 100%;
  height: auto;
}
.image-caption {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 16px;
  font-size: 9px;
  letter-spacing: 0.07em;
}
.image-caption span:last-child {
  color: var(--muted);
  letter-spacing: 0;
}
.workflow {
  padding-top: 100px;
  padding-bottom: 105px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
}
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 44px;
  margin-top: 50px;
}
.steps article {
  border-top: 1px solid #c8d9e6;
  padding-top: 22px;
}
.step-number {
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: #526d82;
}
.steps h3 {
  margin-top: 18px;
}
.steps p {
  font-size: 14px;
  margin-top: 15px;
  max-width: 325px;
}
.tour {
  background: #edf5fb;
  padding: 90px 0 82px;
}
.tour-top {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 50px;
}
.tour-top h2 {
  margin-top: 20px;
}
.tour-top > p {
  font-size: 14px;
  padding-bottom: 6px;
}
.tour-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 42px;
  align-items: start;
}
.tour-controls {
  display: flex;
  flex-direction: column;
}
.tour-controls button {
  border: 0;
  border-top: 1px solid #cddde9;
  background: transparent;
  text-align: left;
  padding: 16px 8px;
  display: flex;
  gap: 15px;
  cursor: pointer;
}
.tour-controls button[aria-selected="true"] {
  background: #dcecf8;
  border-radius: 4px;
  border-color: transparent;
}
.tour-controls button > span {
  font-size: 10px;
  padding-top: 3px;
  color: #526d82;
}
.tour-controls strong {
  font-size: 14px;
  line-height: 1.3;
  display: block;
}
.tour-controls p {
  font-size: 12px;
  line-height: 1.65;
  margin-top: 9px;
}
.tour-controls b {
  font-weight: 400;
}
.tour-panels {
  min-width: 0;
}
.tour-panels img {
  width: 100%;
  border-radius: 7px;
  border: 1px solid #d0e0ec;
  box-shadow: 0 12px 35px #22222210;
}
.panel-caption {
  font-size: 10px;
  padding-top: 12px;
}
.founder {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 100px;
  align-items: center;
  padding-top: 110px;
  padding-bottom: 110px;
}
.founder-photo {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #e0e8ef;
}
.founder-photo img {
  width: 100%;
  height: auto;
}
.founder-photo > span {
  display: block;
  padding: 18px 24px;
  background: var(--light-blue);
  color: var(--ink);
  font-size: 14px;
}
.founder-photo small {
  font-size: 11px;
  opacity: 0.85;
}
.founder-copy h2 {
  font-size: 60px;
  margin: 20px 0 26px;
}
.founder-copy p {
  max-width: 570px;
  font-size: 15px;
  margin-top: 18px;
}
.founder-copy .founder-statement {
  padding-top: 20px;
  color: var(--ink);
  font-weight: 600;
}
.pricing-section {
  background: #222222;
  color: #fff;
  padding: 88px 0 35px;
}
.pricing-layout {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 100px;
  align-items: center;
}
.pricing-intro h2 {
  font-size: 79px;
  margin: 24px 0;
}
.pricing-intro em {
  color: #81c2e9;
}
.pricing-intro > p {
  color: #d0dce5;
  max-width: 375px;
  font-size: 17px;
}
.pricing-intro .small {
  font-size: 11px;
  line-height: 1.8;
  margin-top: 24px;
  max-width: 330px;
}
.pricing-card {
  background: var(--paper);
  color: var(--ink);
  border-radius: 8px;
  padding: 35px 36px;
}
.price-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.trial-tag {
  font-size: 10px;
  border: 1px solid #d3e2ed;
  border-radius: 20px;
  padding: 4px 10px;
}
.price {
  color: var(--ink);
  font-size: 70px;
  line-height: 1.2;
  letter-spacing: -0.07em;
  margin-top: 20px;
}
.price > span {
  font-size: 16px;
  letter-spacing: 0;
  color: var(--muted);
  margin-left: 8px;
}
.price-description {
  font-size: 12px;
  margin-top: 4px;
}
.included {
  padding: 22px 0 20px;
  margin: 18px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
  font-size: 12px;
}
.included li {
  padding: 7px 0;
}
.included li:before {
  content: "✓";
  margin-right: 10px;
  color: #327ca8;
}
.pricing-card > .button {
  display: flex;
  width: 100%;
  font-size: 13px;
}
.annual {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 25px;
  font-size: 12px;
}
.annual p {
  margin-top: 5px;
  font-size: 11px;
}
.pricing-note {
  margin-top: 38px;
  font-size: 10px;
  color: #bdcfdd;
  line-height: 1.8;
}
.pricing-note a {
  color: white;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.resources-preview {
  padding-top: 105px;
  padding-bottom: 90px;
}
.resource-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 40px;
}
.resource-heading h2 {
  margin-top: 20px;
}
.resource-row {
  display: grid;
  grid-template-columns: 60px 1fr 150px;
  gap: 25px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 30px 0;
}
.resource-row:last-child {
  border-bottom: 1px solid var(--line);
}
.resource-number {
  font-family: "Instrument Serif", serif;
  font-size: 35px;
  align-self: start;
  color: #56778e;
  padding-top: 16px;
}
.resource-row .eyebrow {
  font-size: 9px;
  color: #526d82;
}
.resource-row h3 {
  font-size: 21px;
  margin-top: 9px;
}
.resource-row p {
  font-size: 12px;
  margin-top: 9px;
  max-width: 650px;
}
.source-link {
  font-size: 10px;
  display: inline-block;
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
  color: #526d82;
}
.download {
  font-size: 12px;
  border: 1px solid #bed3e3;
  padding: 13px 18px;
  border-radius: 5px;
  text-align: center;
}
.download > span {
  margin-right: 5px;
  font-size: 18px;
}
.download small {
  display: block;
  font-size: 9px;
  color: var(--muted);
}
.download:hover {
  background: #edf5fb;
}
.faq {
  padding-top: 105px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 100px;
  padding-bottom: 105px;
}
.faq h2 {
  margin-top: 20px;
}
.faq > div > p {
  font-size: 12px;
  margin-top: 25px;
}
.faq > div > p a {
  color: var(--ink);
  text-decoration: underline;
}
.faq-list details {
  border-top: 1px solid var(--line);
  padding: 20px 0;
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
  font-weight: 600;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary > span {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}
.faq-list details[open] summary > span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 13px;
  line-height: 1.8;
  padding: 14px 25px 0 0;
}
.closing {
  background: #dceffa;
  text-align: center;
  padding: 75px 0 80px;
}
.closing h2 {
  font-size: 73px;
  margin: 23px 0;
}
.closing p {
  font-size: 14px;
  margin-bottom: 23px;
}
.closing small {
  display: block;
  margin-top: 12px;
  font-size: 10px;
  color: var(--muted);
}
.footer {
  padding-top: 48px;
  padding-bottom: 25px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 40px;
}
.footer-top p {
  font-size: 13px;
}
.footer-top > a:last-child {
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  font-size: 10px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 22px;
}
.resource-hero {
  padding-top: 80px;
  padding-bottom: 70px;
}
.resource-hero h1 {
  font-size: 84px;
  margin: 24px 0;
}
.resource-hero > p {
  font-size: 17px;
  max-width: 600px;
}
.resource-library + .resource-library {
  margin-top: 56px;
}
.library-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  letter-spacing: 0.14em;
  padding-bottom: 22px;
}
.resource-note {
  font-size: 11px;
  line-height: 1.8;
  max-width: 900px;
  margin-top: 25px;
}
.official {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 30px;
  padding: 45px;
  background: #edf5fb;
  border-radius: 8px;
  margin-top: 60px;
}
.official-icon {
  font-size: 60px;
  line-height: 1;
  color: #327ca8;
}
.official h2 {
  font-size: 47px;
  margin: 15px 0;
}
.official p {
  font-size: 14px;
  max-width: 740px;
  margin-bottom: 25px;
}
.secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid #a6c4da;
}
.secondary:hover {
  background: #dcebf5;
}
.coming {
  padding-top: 70px;
  padding-bottom: 85px;
}
.coming h2 {
  font-size: 50px;
  margin: 20px 0;
}
.coming p {
  max-width: 700px;
  font-size: 14px;
}
.legal {
  padding-top: 60px;
  padding-bottom: 80px;
}
.legal h1 {
  font-size: 72px;
  margin: 20px 0 40px;
}
.policy-content {
  font-size: 14px;
}
.policy-content a {
  text-decoration: underline;
}
.policy-content h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 26px;
  letter-spacing: 0;
  margin: 30px 0 15px;
}
.policy-content h3 {
  font-size: 20px;
  margin-top: 20px;
}
.policy-content p {
  margin-top: 12px;
}
[hidden] {
  display: none !important;
}
@media (min-width: 1500px) {
  .hero-side {
    padding-left: 70px;
  }
  .hero-orbit {
    right: 20px;
  }
}
@media (max-width: 1000px) {
  .wrap {
    width: calc(100% - 56px);
  }
  .nav nav {
    gap: 18px;
  }
  .nav .login {
    margin-left: 5px;
  }
  .hero {
    grid-template-columns: 1.5fr 1fr;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-side {
    padding: 15px 0;
  }
  .hero-orbit {
    width: 260px;
    height: 300px;
  }
  .hero-caption {
    padding: 18px;
    max-width: 240px;
  }
  .side-note {
    font-size: 23px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    font-size: 13px;
    padding: 14px 18px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .founder {
    grid-template-columns: 300px 1fr;
    gap: 50px;
  }
  .founder-copy h2 {
    font-size: 49px;
  }
  .pricing-layout {
    grid-template-columns: 1fr 420px;
    gap: 45px;
  }
  .pricing-intro h2 {
    font-size: 68px;
  }
  .tour-layout {
    grid-template-columns: 255px 1fr;
    gap: 24px;
  }
  .faq {
    gap: 50px;
  }
  h2 {
    font-size: 56px;
  }
}
@media (max-width: 800px) {
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    height: 78px;
  }
  .brand,
  .brand img {
    width: 135px;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid var(--line);
    border-radius: 5px;
    padding: 7px 12px;
    font-size: 12px;
    background: transparent;
  }
  .nav nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 20px;
    align-items: stretch;
  }
  .nav nav.is-open {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .nav nav > a {
    padding: 13px;
  }
  .nav .login {
    margin: 0;
  }
  .nav nav > .button {
    margin-top: 10px;
  }
  .hero {
    padding-top: 42px;
    grid-template-columns: 1fr;
    padding-bottom: 38px;
  }
  .hero h1 {
    font-size: 76px;
  }
  .hero-side {
    display: none;
  }
  .hero-description {
    font-size: 16px;
    max-width: 540px;
  }
  .product-peek {
    padding: 15px 15px 12px;
  }
  .image-caption {
    font-size: 8px;
    gap: 12px;
  }
  .browser-bar {
    height: 28px;
    font-size: 8px;
  }
  .browser-live {
    font-size: 8px;
  }
  .workflow {
    padding: 65px 0;
  }
  .steps {
    gap: 25px;
    margin-top: 35px;
  }
  .steps h3 {
    font-size: 21px;
  }
  .steps p {
    font-size: 12px;
  }
  .tour {
    padding: 60px 0;
  }
  .tour-top {
    gap: 25px;
  }
  .tour-top > p {
    font-size: 12px;
  }
  .tour-layout {
    grid-template-columns: 1fr;
  }
  .tour-controls {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    flex-direction: row;
    gap: 10px;
  }
  .tour-controls button {
    flex: 1;
    padding: 15px 10px;
    gap: 9px;
  }
  .tour-controls strong {
    font-size: 12px;
  }
  .tour-controls p {
    font-size: 10px;
  }
  .tour-controls b {
    display: none;
  }
  .founder {
    grid-template-columns: 250px 1fr;
    gap: 30px;
    padding: 70px 0;
  }
  .founder-copy h2 {
    font-size: 42px;
  }
  .founder-copy p {
    font-size: 12px;
  }
  .founder-copy .eyebrow {
    font-size: 9px;
  }
  .pricing-layout {
    gap: 35px;
    grid-template-columns: 1fr 360px;
  }
  .pricing-card {
    padding: 26px;
  }
  .pricing-intro h2 {
    font-size: 60px;
  }
  .pricing-intro > p {
    font-size: 14px;
  }
  .pricing-intro .small {
    font-size: 10px;
  }
  .resources-preview {
    padding: 65px 0;
  }
  .resource-row {
    grid-template-columns: 36px 1fr 130px;
    gap: 14px;
  }
  .resource-row h3 {
    font-size: 18px;
  }
  .faq {
    gap: 30px;
    grid-template-columns: 1fr 1.5fr;
    padding-bottom: 65px;
  }
  .faq .eyebrow {
    font-size: 9px;
  }
  .closing h2 {
    font-size: 62px;
  }
  .footer-top {
    gap: 20px;
    flex-wrap: wrap;
  }
  .resource-hero h1 {
    font-size: 70px;
  }
  .official {
    grid-template-columns: 60px 1fr;
    padding: 30px;
  }
  .official h2 {
    font-size: 41px;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: calc(100% - 36px);
  }
  .launch-label {
    font-size: 10px;
    margin-bottom: 23px;
  }
  .hero h1 {
    font-size: clamp(44px, 13.3vw, 65px);
  }
  .hero-description {
    font-size: 14px;
    margin-top: 22px;
    max-width: 335px;
  }
  .hero-actions {
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 24px;
  }
  .hero-actions .button {
    font-size: 12px;
    gap: 25px;
    padding: 14px 18px;
  }
  .hero-actions .text-link {
    font-size: 11px;
    gap: 10px;
  }
  .micro {
    font-size: 9px;
  }
  .product-peek {
    padding: 10px 10px 9px;
    width: calc(100% - 20px);
    border-radius: 8px;
  }
  .screen-frame {
    border-radius: 5px;
  }
  .browser-bar {
    height: 23px;
    padding: 0 8px;
    font-size: 7px;
  }
  .browser-dots {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .browser-live {
    display: none;
  }
  .image-caption {
    flex-direction: column;
    gap: 3px;
    margin-top: 9px;
    font-size: 7px;
  }
  .workflow {
    padding: 55px 0;
  }
  .eyebrow {
    font-size: 9px;
  }
  h2 {
    font-size: 46px;
  }
  .steps {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .steps article {
    padding-top: 15px;
  }
  .steps h3 {
    margin-top: 10px;
    font-size: 23px;
  }
  .steps p {
    margin-top: 10px;
    font-size: 13px;
    max-width: none;
  }
  .tour-top {
    display: block;
    margin-bottom: 28px;
  }
  .tour-top > p {
    margin-top: 22px;
    font-size: 13px;
  }
  .tour-controls {
    gap: 5px;
  }
  .tour-controls button {
    display: block;
    padding: 12px 9px;
  }
  .tour-controls button > span {
    display: block;
    margin-bottom: 8px;
  }
  .tour-controls strong {
    font-size: 11px;
  }
  .tour-controls p {
    display: none;
  }
  .tour-layout {
    gap: 18px;
  }
  .panel-caption {
    font-size: 9px;
  }
  .founder {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 60px 0;
  }
  .founder-photo {
    width: 75%;
    max-width: 300px;
  }
  .founder-copy h2 {
    font-size: 47px;
  }
  .founder-copy p {
    font-size: 14px;
  }
  .pricing-section {
    padding: 60px 0 28px;
  }
  .pricing-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-intro h2 {
    font-size: 67px;
  }
  .pricing-intro > p {
    font-size: 15px;
  }
  .pricing-intro .small {
    font-size: 11px;
    max-width: 100%;
  }
  .pricing-card {
    padding: 28px;
  }
  .price {
    font-size: 73px;
  }
  .pricing-note {
    font-size: 9px;
    margin-top: 25px;
  }
  .resource-heading {
    display: block;
    margin-bottom: 30px;
  }
  .resource-heading > .text-link {
    margin-top: 24px;
    font-size: 12px;
  }
  .resource-row {
    grid-template-columns: 25px 1fr;
    gap: 12px;
    padding: 24px 0;
  }
  .resource-number {
    font-size: 25px;
    padding-top: 14px;
  }
  .resource-row h3 {
    font-size: 20px;
  }
  .resource-row p {
    font-size: 12px;
  }
  .download {
    grid-column: 2;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 11px;
  }
  .download small {
    border-left: 1px solid var(--line);
    padding-left: 10px;
    margin-left: 3px;
    font-size: 9px;
  }
  .download > span {
    margin: 0;
  }
  .faq {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .faq h2 br {
    display: none;
  }
  .faq h2 {
    font-size: 47px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .closing {
    padding: 57px 0;
  }
  .closing h2 {
    font-size: 49px;
  }
  .closing p {
    font-size: 12px;
  }
  .closing .button {
    font-size: 13px;
  }
  .footer {
    padding-top: 30px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    padding-bottom: 28px;
  }
  .footer-top p {
    font-size: 11px;
  }
  .footer-top > a:last-child {
    grid-column: 1/-1;
    font-size: 11px;
  }
  .footer-bottom {
    display: block;
    font-size: 9px;
  }
  .footer-bottom nav {
    margin-top: 15px;
    gap: 23px;
  }
  .resource-hero {
    padding: 55px 0 45px;
  }
  .resource-hero h1 {
    font-size: 59px;
  }
  .resource-hero > p {
    font-size: 14px;
  }
  .library-label {
    font-size: 8px;
  }
  .resource-note {
    font-size: 10px;
  }
  .official {
    display: block;
    padding: 24px;
    margin-top: 40px;
  }
  .official-icon {
    font-size: 40px;
    margin-bottom: 20px;
  }
  .official h2 {
    font-size: 39px;
  }
  .official p {
    font-size: 13px;
  }
  .official .button {
    font-size: 11px;
    gap: 18px;
    padding: 12px 16px;
  }
  .coming {
    padding: 50px 0;
  }
  .coming h2 {
    font-size: 42px;
  }
  .coming p {
    font-size: 13px;
  }
  .legal h1 {
    font-size: 53px;
  }
  .policy-content {
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
  .button:hover {
    transform: none;
  }
}

.autofill-visual {
  background: #fff;
  border: 1px solid #d0e0ec;
  border-radius: 7px;
  overflow: hidden;
}
.autofill-source {
  padding: 24px;
  background: #f4f9fc;
}
.autofill-source h3 {
  font-size: 28px;
  margin: 9px 0 18px;
}
.autofill-source dl {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  margin: 0;
}
.autofill-source dt {
  font-size: 11px;
  color: #526d82;
  margin-bottom: 5px;
}
.autofill-source dd {
  font-size: 14px;
  margin: 0;
  font-weight: 600;
}
.autofill-flow {
  font-size: 13px;
  color: #287899;
  margin: 20px 0 0;
}
.autofill-flow span {
  margin-right: 8px;
}
.autofill-result {
  padding: 20px;
}
.autofill-result-heading {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}
.autofill-result-heading > span:last-child {
  font-size: 11px;
  color: #287899;
}
.autofill-result p {
  font-size: 12px;
  margin: 14px 0 0;
}
.bill-list-link {
  margin-top: 15px;
  font-size: 13px;
}
@media (max-width: 480px) {
  .autofill-source,
  .autofill-result {
    padding: 16px;
  }
  .autofill-source dl {
    gap: 15px;
  }
  .autofill-source dd {
    font-size: 12px;
    overflow-wrap: anywhere;
  }
}
