@charset "UTF-8" ;

:root {
  color-scheme: light;
  --ink: #122b49;
  --muted: #51657b;
  --blue: #1654f0;
  --blue-dark: #1042c5;
  --line: #dbe3ed;
  --wash: #f3f7fc;
  --radius: 18px;
  --font: Inter,"Avenir Next",Avenir,"Segoe UI",sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

button,input,textarea,select {
  font: inherit;
}

button,a,input,textarea,select,summary {
  -webkit-tap-highlight-color: transparent;
}

button,a,summary {
  touch-action: manipulation;
}

a:focus-visible,button:focus-visible,input:focus-visible,textarea:focus-visible,select:focus-visible,summary:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 5px;
}

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

p {
  color: var(--muted);
}

button {
  cursor: pointer;
}

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

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  background: var(--ink);
  color: #fff;
  padding: 12px 20px;
  z-index: 100;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  height: 100px;
  max-width: 1392px;
  margin: auto;
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-size: 27px;
  font-weight: 750;
  letter-spacing: -1.2px;
  line-height: 1;
}

.brand-icon {
  display: grid;
  place-items: center;
  background: var(--blue);
  color: white;
  border-radius: 10px;
  width: 34px;
  height: 34px;
  margin-right: 10px;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -2px;
  padding-right: 2px;
}

.brand-dot {
  color: var(--blue);
}

.site-header nav {
  display: flex;
  gap: 34px;
  font-size: 14px;
  font-weight: 550;
}

.site-header nav a:hover,.text-link:hover {
  color: var(--blue);
}

.button {
  border: 1px solid var(--blue);
  border-radius: 7px;
  background: var(--blue);
  color: #fff;
  min-height: 52px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  transition: background .18s,transform .18s;
}

.button:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

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

.button-small {
  min-height: 42px;
  padding: 11px 17px;
  gap: 27px;
}

.button-outline {
  background: transparent;
  color: var(--blue);
  border-color: #b5c9f8;
}

.button-outline:hover {
  background: #edf3ff;
}

.button:disabled {
  cursor: not-allowed;
  background: #d9e3f5;
  border-color: #d9e3f5;
  color: #53647d;
  transform: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2.1px;
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
}

.little-line {
  height: 2px;
  width: 25px;
  background: var(--blue);
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}

.hero {
  padding-top: 80px;
  padding-bottom: 85px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: center;
  gap: 60px;
}

.hero h1 {
  font-size: clamp(45px,4.5vw,65px);
  line-height: 1.08;
  font-weight: 600;
  letter-spacing: -3px;
  margin: 24px 0;
}

.hero h1 span {
  color: var(--blue);
}

.hero-description {
  font-size: 17px;
  line-height: 1.8;
  max-width: 500px;
}

.hero-actions {
  display: flex;
  gap: 25px;
  align-items: center;
  margin-top: 31px;
}

.text-link {
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  gap: 15px;
  align-items: center;
}

.hero-note {
  font-size: 11px;
  margin-top: 25px;
  line-height: 1.6;
}

.workflow-art {
  position: relative;
  padding: 23px 25px 26px;
  background: linear-gradient(140deg,#f3f7ff,#eef4ff 70%,#f8fbff);
  border: 1px solid #e2eaf8;
  border-radius: 24px;
  min-width: 0;
  box-shadow: 0 20px 60px -45px #2762b7;
}

.art-grid {
  position: absolute;
  inset: 0;
  opacity: .35;
  background-image: radial-gradient(#bbcce9 1px,transparent 1px);
  background-size: 16px 16px;
  border-radius: inherit;
  pointer-events: none;
}

.workflow-art>*:not(.art-grid) {
  position: relative;
}

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

.art-heading .eyebrow {
  letter-spacing: 1px;
  font-size: 9px;
}

.art-caption {
  font-size: 9px;
  color: #657a96;
}

.art-company {
  margin-left: 17px;
  margin-right: 35px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid #dfe7f5;
  border-radius: 12px;
  background: white;
  padding: 16px 18px;
  box-shadow: 0 5px 15px #264e8110;
}

.company-icon {
  display: grid;
  grid-template-columns: repeat(2,5px);
  gap: 4px;
  border: 1.5px solid #6b96ee;
  border-radius: 4px;
  padding: 7px;
}

.company-icon i {
  width: 5px;
  height: 5px;
  background: #6b96ee;
  border-radius: 1px;
}

.art-micro {
  display: block;
  text-transform: uppercase;
  font-size: 9px;
  letter-spacing: 1.2px;
  color: #6b7f96;
  margin-bottom: 3px;
}

.art-company strong {
  font-size: 15px;
  font-weight: 600;
}

.art-plus {
  margin-left: auto;
  font-size: 24px;
  color: #6c8ccc;
}

.art-path {
  height: 31px;
  width: 1px;
  background: #adc2e5;
  margin-left: 71px;
}

.art-path:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2px;
  width: 5px;
  height: 5px;
  border-right: 1px solid #82a2d8;
  border-bottom: 1px solid #82a2d8;
  transform: rotate(45deg);
}

.art-middle {
  display: flex;
  align-items: center;
  gap: 10px;
}

.art-mini {
  background: white;
  border: 1px solid #dce6f6;
  border-radius: 11px;
  padding: 16px 12px;
  flex: 1;
  min-width: 0;
}

.stage-icon {
  display: grid;
  place-items: center;
  background: #eef4ff;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  margin-bottom: 11px;
}

.art-mini strong {
  display: block;
  font-size: 12px;
  font-weight: 600;
}

.art-mini small {
  display: block;
  font-size: 9px;
  color: #607794;
  margin-top: 3px;
}

.art-arrow {
  color: #779cd5;
  font-size: 21px;
}

.art-path-right {
  margin-left: 75%;
}

.art-reply {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  border: 1px solid #dce6f6;
  border-radius: 11px;
  padding: 16px 18px;
  margin-inline: 25px 0;
}

.reply-icon {
  color: var(--blue);
  background: #edf4ff;
  font-size: 22px;
  width: 34px;
  height: 34px;
  text-align: center;
  border-radius: 50%;
}

.art-reply strong {
  font-size: 13px;
  display: block;
}

.art-reply small {
  font-size: 10px;
  color: #607794;
  display: block;
  margin-top: 2px;
}

.art-handoff {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 22px;
  background: var(--blue);
  color: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 25px -14px #1654f0;
}

.art-handoff .art-micro {
  color: #c5d7ff;
}

.art-handoff strong {
  font-size: 23px;
  letter-spacing: -.6px;
  font-weight: 600;
}

.art-handoff p {
  color: #d6e2ff;
  font-size: 10px;
  margin-top: 8px;
}

.handoff-arrow {
  font-size: 39px;
  font-weight: 300;
}

.principles {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 23px;
  gap: 15px;
}

.principles p {
  font-size: 12px;
  color: var(--ink);
  font-weight: 500;
}

.principles span {
  color: var(--blue);
  font-size: 19px;
  margin-right: 12px;
  vertical-align: middle;
}

.workflow-section {
  padding-block: 110px 100px;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 80px;
  margin-bottom: 49px;
}

.section-heading h2,h2 {
  font-size: clamp(31px,3vw,43px);
  line-height: 1.18;
  font-weight: 550;
  letter-spacing: -1.6px;
}

.section-heading .eyebrow {
  margin-bottom: 18px;
}

.section-heading>p {
  font-size: 15px;
  line-height: 1.8;
  max-width: 340px;
  padding-bottom: 3px;
}

.workflow-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.workflow-list li {
  display: flex;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
  padding: 26px 6px;
}

.workflow-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.step-number {
  font-size: 12px;
  color: #7489a3;
  width: 30px;
  align-self: flex-start;
  margin-top: 6px;
  flex-shrink: 0;
}

.workflow-list h3 {
  font-size: 19px;
  letter-spacing: -.3px;
  font-weight: 550;
}

.workflow-list p {
  font-size: 13px;
  max-width: 680px;
  margin-top: 6px;
  line-height: 1.8;
}

.step-label {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 11px;
  background: var(--wash);
  color: #5a718c;
  padding: 6px 11px;
  border-radius: 6px;
}

.last-step .step-label {
  color: var(--blue);
  background: #eaf1ff;
}

.team-section {
  background: var(--wash);
  padding-block: 95px 100px;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.team-card {
  padding: 39px 41px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.card-kicker {
  font-size: 10px;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 650;
}

.team-card h3 {
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -1px;
  font-weight: 550;
  margin: 25px 0 19px;
}

.team-card>p {
  font-size: 14px;
  max-width: 380px;
}

.check-list {
  list-style: none;
  margin: 27px 0;
  padding: 0;
}

.check-list li {
  font-size: 13px;
  display: flex;
  gap: 10px;
  margin-block: 12px;
}

.check-list li:before {
  content: "↗";
  color: var(--blue);
}

.team-card .card-footnote {
  font-size: 11px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.leader-card {
  background: #eaf1ff;
  border-color: #d1def4;
}

.direction-section {
  text-align: center;
  padding-block: 115px;
}

.direction-section h2 {
  margin: 23px 0;
}

.direction-section h2 span {
  color: #7c8fa7;
}

.direction-section>p:not(.eyebrow) {
  max-width: 690px;
  margin-inline: auto;
  font-size: 15px;
  line-height: 1.9;
}

.direction-section .text-link {
  margin-top: 27px;
  color: var(--blue);
}

.plans-section {
  padding-block: 50px 100px;
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
}

.plan-card.featured {
  background: #f2f6ff;
  border-color: #a6bef4;
}

.plan-index {
  font-size: 10px;
  letter-spacing: 1.1px;
  color: #6b7f97;
  text-transform: uppercase;
}

.plan-card h3 {
  font-size: 29px;
  letter-spacing: -.8px;
  font-weight: 550;
  margin: 15px 0 13px;
}

.plan-card>p {
  font-size: 13px;
  line-height: 1.8;
  min-height: 72px;
}

.price {
  font-size: 17px;
  font-weight: 600;
  border-bottom: 1px solid var(--line);
  padding: 27px 0 21px;
  letter-spacing: -.3px;
}

.plan-card ul {
  padding-left: 17px;
  margin: 22px 0 30px;
  flex: 1;
}

.plan-card li {
  font-size: 12px;
  line-height: 1.75;
  margin-bottom: 8px;
  color: var(--muted);
}

.plan-card li::marker {
  color: #8aa2c1;
}

.plan-card .button {
  font-size: 12px;
  justify-content: space-between;
  padding: 13px 15px;
  min-height: 45px;
}

.questions-section {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  gap: 90px;
  padding-block: 35px 110px;
}

.questions-section h2 {
  margin: 18px 0;
}

.questions-section>div>p:not(.eyebrow) {
  font-size: 14px;
  max-width: 270px;
}

.questions details {
  border-bottom: 1px solid var(--line);
}

.questions details:first-child {
  border-top: 1px solid var(--line);
}

summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 550;
  padding: 23px 0;
}

summary::-webkit-details-marker {
  display: none;
}

summary span {
  font-size: 23px;
  line-height: 1;
  font-weight: 400;
  color: #738baa;
  transition: transform .15s;
}

details[open] summary span {
  transform: rotate(45deg);
}

.questions details p {
  font-size: 13px;
  line-height: 1.9;
  margin: 0 26px 22px 0;
}

.contact-section {
  background: #edf3ff;
  border-top: 1px solid #e0e9f8;
  padding-block: 90px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 95px;
}

.contact-copy h2 {
  font-size: 48px;
  margin: 22px 0;
  letter-spacing: -2px;
}

.contact-copy>p:not(.eyebrow) {
  font-size: 15px;
  line-height: 1.9;
  max-width: 340px;
}

.contact-line {
  font-size: 64px;
  color: var(--blue);
  font-weight: 300;
  line-height: 1;
  margin: 29px 0;
}

.contact-copy .contact-small {
  font-size: 11px;
}

form {
  background: #fff;
  border: 1px solid #dce6f5;
  padding: 31px;
  border-radius: var(--radius);
  min-width: 0;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
}

input,select,textarea {
  width: 100%;
  display: block;
  border: 1px solid #cbd7e8;
  background: #fff;
  border-radius: 5px;
  padding: 11px 12px;
  min-height: 44px;
  font-size: 14px;
  color: var(--ink);
  margin-top: 7px;
  min-width: 0;
}

textarea {
  resize: vertical;
  min-height: 115px;
}

textarea::placeholder {
  color: #738297;
  font-size: 12px;
  line-height: 1.7;
}

form .form-privacy {
  font-size: 10px;
  line-height: 1.8;
  margin-top: -2px;
  color: #63748a;
}

form .form-privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-status {
  font-size: 12px;
  color: #425978;
  line-height: 1.65;
  margin-block: 13px;
  min-height: 0;
}

.form-status:empty {
  display: none;
}

.form-status[data-state="error"] {
  color: #922e25;
}

.form-status[data-state="success"] {
  color: #1e684e;
}

#contact-challenge {
  margin-top: 18px;
  overflow: hidden;
}

form>.button {
  width: 100%;
  justify-content: space-between;
  margin-top: 15px;
}

.site-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-block: 35px;
}

.site-footer .brand {
  font-size: 21px;
}

.site-footer .brand-icon {
  width: 28px;
  height: 28px;
  font-size: 22px;
  border-radius: 8px;
}

.site-footer p {
  font-size: 10px;
  margin-right: auto;
}

.site-footer>a:not(.brand),.site-footer>span {
  font-size: 10px;
  color: #65768c;
}

@media(min-width:1600px) {
  .hero {
    padding-top: 95px;
    padding-bottom: 105px;
  }
}

@media(max-width:1050px) {
  .section-wrap {
    width: calc(100% - 64px);
  }
  .site-header {
    padding-inline: 32px;
  }
  .hero {
    gap: 30px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-actions {
    gap: 16px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .workflow-art {
    padding: 20px 15px;
  }
  .art-heading {
    display: block;
  }
  .art-caption {
    display: block;
    margin-top: 3px;
  }
  .section-heading {
    gap: 35px;
  }
  .workflow-list p {
    max-width: 570px;
  }
  .team-card {
    padding: 30px;
  }
  .plan-card {
    padding: 25px 22px;
  }
  .contact-grid,.questions-section {
    gap: 50px;
  }
  .contact-copy h2 {
    font-size: 42px;
  }
}

@media(max-width:780px) {
  html {
    scroll-padding-top: 20px;
  }
  .section-wrap {
    width: calc(100% - 40px);
  }
  .site-header {
    height: 82px;
    padding-inline: 20px;
  }
  .site-header nav {
    gap: 18px;
    font-size: 12px;
  }
  .site-header nav a:nth-child(2) {
    display: none;
  }
  .site-header>.button {
    font-size: 12px;
    gap: 12px;
    min-height: 39px;
  }
  .brand {
    font-size: 23px;
  }
  .brand-icon {
    width: 29px;
    height: 29px;
    font-size: 24px;
  }
  .hero {
    padding-top: 38px;
    padding-bottom: 50px;
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .hero h1 {
    font-size: 56px;
    letter-spacing: -2.5px;
  }
  .hero-description {
    font-size: 16px;
    max-width: 570px;
  }
  .hero-note {
    font-size: 11px;
  }
  .workflow-art {
    max-width: 550px;
    width: 100%;
    justify-self: center;
    padding: 23px;
  }
  .art-heading {
    display: flex;
  }
  .art-mini {
    padding: 19px;
  }
  .art-mini strong {
    font-size: 14px;
  }
  .art-mini small {
    font-size: 11px;
  }
  .art-caption {
    margin: 0;
  }
  .principles {
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    padding-block: 20px;
  }
  .principles p {
    font-size: 11px;
  }
  .workflow-section {
    padding-block: 65px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading>p {
    margin-top: 23px;
    max-width: 550px;
  }
  .section-heading h2,h2 {
    font-size: 35px;
  }
  .workflow-list li {
    gap: 15px;
    flex-wrap: wrap;
    padding-block: 24px;
  }
  .workflow-list li>div {
    flex: 1;
    min-width: 70%;
  }
  .workflow-list h3 {
    font-size: 17px;
  }
  .workflow-list p {
    font-size: 13px;
  }
  .step-label {
    margin-left: 45px;
    margin-top: -1px;
  }
  .team-section {
    padding-block: 60px;
  }
  .team-grid {
    gap: 16px;
  }
  .team-card {
    padding: 25px;
  }
  .team-card h3 {
    font-size: 25px;
  }
  .team-card p {
    font-size: 13px;
  }
  .check-list li {
    font-size: 12px;
  }
  .direction-section {
    padding-block: 70px;
  }
  .plans-section {
    padding-block: 30px 65px;
  }
  .plans-grid {
    gap: 13px;
  }
  .plan-card {
    padding: 23px 17px;
  }
  .plan-card h3 {
    font-size: 26px;
  }
  .plan-card>p {
    font-size: 12px;
    min-height: 95px;
  }
  .price {
    font-size: 15px;
  }
  .plan-card ul {
    padding-left: 13px;
  }
  .plan-card li {
    font-size: 11px;
  }
  .plan-card .button {
    font-size: 11px;
    padding-inline: 10px;
    gap: 9px;
  }
  .questions-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 15px 65px;
  }
  .questions-section>div>p:not(.eyebrow) {
    max-width: 400px;
  }
  .contact-section {
    padding-block: 60px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-copy>p:not(.eyebrow) {
    max-width: 520px;
  }
  .contact-line {
    display: none;
  }
  .contact-copy .contact-small {
    margin-top: 20px;
  }
  .site-footer {
    flex-wrap: wrap;
    gap: 20px;
  }
  .site-footer p {
    flex-basis: 55%;
  }
}

@media(max-width:520px) {
  .site-header nav {
    display: none;
  }
  .hero {
    padding-top: 32px;
  }
  .hero h1 {
    font-size: 48px;
  }
  .hero .eyebrow {
    font-size: 9px;
    letter-spacing: 1.5px;
  }
  .hero-actions {
    gap: 21px;
  }
  .hero-actions .button {
    padding-inline: 17px;
    gap: 18px;
  }
  .hero-description {
    font-size: 15px;
  }
  .hero-note {
    max-width: 275px;
  }
  .workflow-art {
    padding: 20px 14px;
    border-radius: 16px;
  }
  .art-heading {
    margin-bottom: 20px;
    display: block;
  }
  .art-caption {
    margin-top: 3px;
  }
  .art-company {
    margin-inline: 10px;
    padding: 15px;
  }
  .art-mini {
    padding: 13px 10px;
  }
  .art-mini strong {
    font-size: 11px;
  }
  .art-mini small {
    font-size: 9px;
  }
  .art-reply {
    margin-left: 10px;
  }
  .art-reply small {
    font-size: 9px;
  }
  .art-handoff {
    padding: 18px;
  }
  .art-handoff strong {
    font-size: 21px;
  }
  .principles {
    display: grid;
    gap: 9px;
  }
  .section-heading h2,h2 {
    font-size: 31px;
    letter-spacing: -1.2px;
  }
  .workflow-list h3 {
    font-size: 16px;
  }
  .workflow-list li {
    padding-left: 0;
    padding-right: 0;
  }
  .step-number {
    width: 22px;
  }
  .step-label {
    margin-left: 37px;
  }
  .team-grid,.plans-grid {
    grid-template-columns: 1fr;
  }
  .team-card {
    padding: 30px;
  }
  .team-card h3 {
    font-size: 29px;
  }
  .team-card>p {
    font-size: 14px;
  }
  .check-list li {
    font-size: 13px;
  }
  .team-grid {
    gap: 20px;
  }
  .plan-card {
    padding: 29px;
  }
  .plan-card>p {
    min-height: 0;
    font-size: 14px;
  }
  .plan-card h3 {
    font-size: 31px;
  }
  .price {
    font-size: 18px;
  }
  .plan-card li {
    font-size: 13px;
  }
  .plan-card .button {
    font-size: 13px;
    padding-inline: 17px;
  }
  .plans-grid {
    gap: 20px;
  }
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  form {
    padding: 23px 20px;
  }
  .contact-copy h2 {
    font-size: 39px;
  }
  .contact-grid {
    gap: 28px;
  }
  .site-footer {
    gap: 18px;
  }
  .site-footer p {
    flex-basis: 100%;
    order: 4;
    font-size: 11px;
  }
  .site-footer>a:not(.brand) {
    margin-left: auto;
  }
  .site-footer>span {
    font-size: 9px;
  }
  .questions summary {
    font-size: 13px;
  }
}

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