@charset "UTF-8";
:root {
  --ink:#24312c;
  --muted:#727f7b;
  --accent:#237867;
  --accent-dark:#1b5f51;
  --line:#eae7ee;
  --mint:#f1fbf9;
  --white:#fff;
  --radius:18px;
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:30px;
}

body {
  margin:0;
  background:#fdfcfe;
  color:var(--ink);
  font-family:Inter,"Segoe UI",Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a {
  color:inherit;
  text-decoration:none;
}

button,a,summary {
  -webkit-tap-highlight-color:transparent;
}

a:focus-visible,summary:focus-visible {
  outline:3px solid var(--accent);
  outline-offset:5px;
}

::selection {
  background:#d2faf0;
}

h1,h2,h3,p {
  margin:0;
}

svg {
  display:block;
}

.wrap {
  width:min(1180px,calc(100% - 96px));
  margin-inline:auto;
}

.skip-link {
  position:fixed;
  top:-80px;
  left:16px;
  padding:12px 18px;
  background:white;
  z-index:20;
}

.skip-link:focus {
  top:12px;
}

.site-header {
  height:104px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}

.brand {
  display:inline-flex;
  align-items:center;
  font-size:29px;
  font-weight:780;
  letter-spacing:-1.5px;
}

.brand-period {
  color:var(--accent);
}

.brand-icon {
  position:relative;
  width:31px;
  height:32px;
  display:inline-block;
  margin-right:12px;
  background:var(--accent);
  color:#fff;
  border-radius:9px;
  font-size:27px;
  line-height:31px;
  text-align:center;
  letter-spacing:-2px;
  font-weight:600;
}

.brand-icon span {
  font-size:14px;
  position:absolute;
  right:-6px;
  top:-11px;
  color:var(--accent);
  text-shadow:0 0 3px white;
}

.site-header nav {
  display:flex;
  gap:32px;
  font-size:13px;
  color:#64716e;
}

.site-header nav a:hover,.text-link:hover {
  color:var(--accent);
}

.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:25px;
  padding:17px 24px;
  border:1px solid transparent;
  border-radius:7px;
  font-size:14px;
  font-weight:650;
  line-height:1.3;
  transition:background .18s,transform .18s,box-shadow .18s;
}

.button:hover {
  transform:translateY(-2px);
}

.button span {
  font-size:20px;
  line-height:14px;
  font-weight:400;
}

.button-small {
  font-size:12px;
  padding:12px 17px;
  gap:22px;
}

.button-outline {
  border-color:#d4e9e5;
  background:transparent;
}

.button-outline:hover {
  background:var(--mint);
}

.button-primary {
  background:var(--accent);
  color:white;
  box-shadow:0 5px 14px #52d7ad1a;
}

.button-primary:hover {
  background:var(--accent-dark);
  box-shadow:0 7px 20px #52d7ad33;
}

.eyebrow {
  font-size:10px;
  font-weight:700;
  letter-spacing:1.65px;
  color:var(--accent);
  display:flex;
  align-items:center;
  gap:9px;
  line-height:1.7;
}

.status-dot {
  height:6px;
  width:6px;
  background:var(--accent);
  border-radius:50%;
  box-shadow:0 0 0 4px #e6f8f4;
}

.hero {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  align-items:center;
  padding-top:72px;
  padding-bottom:91px;
}

.hero-copy {
  position:relative;
  z-index:2;
}

h1 {
  font-size:clamp(42px,4.45vw,62px);
  letter-spacing:-2.7px;
  line-height:1.15;
  font-weight:750;
  margin-top:24px;
}

.accent-word {
  color:var(--accent);
  position:relative;
  display:inline-block;
}

.accent-word svg {
  position:absolute;
  width:100%;
  height:16px;
  bottom:-14px;
  left:0;
  fill:none;
  stroke:#9bddd0;
  stroke-width:2.5;
  stroke-linecap:round;
}

.hero-description {
  font-size:15px;
  line-height:1.9;
  color:var(--muted);
  max-width:430px;
  margin-top:34px;
}

.hero-description strong {
  font-weight:600;
  color:#455f5c;
}

.hero-actions {
  display:flex;
  align-items:center;
  gap:26px;
  margin-top:28px;
}

.text-link {
  display:inline-flex;
  gap:13px;
  align-items:center;
  font-size:12px;
  font-weight:600;
}

.hero-note {
  display:flex;
  align-items:center;
  gap:9px;
  margin-top:22px;
  font-size:10px;
  color:#85918f;
}

.hero-note>span:first-child {
  color:var(--accent);
  font-size:13px;
}

.note-divider {
  margin:0 6px;
  color:#c2cecd;
}

.hero-art {
  position:relative;
  min-height:430px;
  display:flex;
  align-items:center;
  isolation:isolate;
}

.hero-art:before {
  content:"";
  position:absolute;
  inset:5px -24px 0 -18px;
  background:radial-gradient(ellipse,#e0f8f4 0,#eef9f8 55%,transparent 73%);
  z-index:-2;
}

.art-orbit {
  position:absolute;
  width:420px;
  height:420px;
  border:1px solid #ddefee;
  border-radius:50%;
  top:0;
  left:54px;
  z-index:-1;
}

.art-orbit:after {
  content:"";
  position:absolute;
  inset:28px;
  border:1px dashed #d0ede9;
  border-radius:50%;
}

.discovery-window {
  width:100%;
  border:1px solid #e1efed;
  border-radius:13px;
  background:#fff;
  box-shadow:0 20px 50px -25px #588f8c55;
  transform:rotate(-2deg);
  overflow:hidden;
}

.window-top {
  padding:14px 21px;
  border-bottom:1px solid #eaf3f2;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.window-logo {
  color:var(--accent);
  font-weight:700;
  font-size:21px;
  letter-spacing:-.6px;
}

.window-logo>span {
  font-size:9px;
  vertical-align:super;
  margin-left:2px;
}

.window-dots {
  letter-spacing:3px;
  color:#bdd4d1;
}

.window-content {
  padding:22px;
}

.window-heading {
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.micro-label {
  font-size:7px;
  letter-spacing:1.2px;
  color:#849e9c;
  font-weight:600;
}

.window-heading h2 {
  font-size:22px;
  letter-spacing:-.6px;
  margin-top:6px;
}

.window-heading>span {
  font-size:36px;
  color:var(--accent);
  line-height:1;
}

.category-tags {
  display:flex;
  gap:8px;
  margin:17px 0 15px;
}

.category-tags span {
  padding:6px 10px;
  border:1px solid #eaf2f1;
  border-radius:5px;
  color:#8b9e9e;
  font-size:8px;
}

.category-tags .selected {
  background:#e9fbf8;
  color:var(--accent);
  border-color:#e9fbf8;
}

.product-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:13px;
}

.product-card {
  border:1px solid #eaf2f1;
  border-radius:7px;
  overflow:hidden;
}

.product-art {
  position:relative;
  height:150px;
  display:grid;
  place-items:center;
}

.product-art svg {
  width:100%;
  height:100%;
}

.shoe-art {
  background:#f3f0e8;
}

.lamp-art {
  background:#e7f4f3;
}

.product-heart {
  position:absolute;
  top:9px;
  right:10px;
  width:21px;
  height:21px;
  background:#fff9;
  border-radius:50%;
  display:grid;
  place-items:center;
  font-size:17px;
  line-height:1;
  color:#677e7d;
}

.product-info {
  padding:12px;
}

.product-info>span {
  font-size:6px;
  letter-spacing:1.2px;
  color:#8ca7a5;
}

.product-info h3 {
  font-size:11px;
  font-weight:600;
  margin-top:4px;
}

.product-info p {
  font-size:7px;
  color:#91a5a4;
  margin-top:8px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}

.product-info p span {
  font-size:12px;
}

.window-bottom {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
  margin-top:15px;
  font-size:7px;
  color:#9aaeac;
}

.window-bottom>span:first-child {
  display:flex;
  align-items:center;
  gap:5px;
}

.window-bottom>span:last-child {
  font-size:5.5px;
  letter-spacing:.65px;
}

.tiny-dot {
  width:4px;
  height:4px;
  border-radius:50%;
  background:#8aad96;
}

.floating-label {
  position:absolute;
  z-index:2;
  display:flex;
  align-items:center;
  gap:10px;
  background:#fff;
  border:1px solid #e8f4f3;
  box-shadow:0 9px 28px #37645c0d;
  border-radius:10px;
  padding:13px 17px;
  font-size:9px;
  line-height:1.7;
  color:#8fa4a3;
}

.floating-label strong {
  color:#4f6765;
  font-weight:600;
  font-size:11px;
}

.supplier-label {
  right:-17px;
  top:-3px;
  transform:rotate(3deg);
}

.round-icon {
  width:32px;
  height:32px;
  border-radius:50%;
  background:#eafbf8;
  color:var(--accent);
  font-size:24px;
  display:grid;
  place-items:center;
}

.store-label {
  bottom:-7px;
  left:29px;
  transform:rotate(2deg);
}

.check-icon {
  background:#eaf3ed;
  color:#619574;
  font-size:16px;
}

.mini-spark {
  color:#96d3c9;
  margin-left:12px;
  font-size:25px;
}

.art-spark {
  position:absolute;
  z-index:1;
  color:#89cec3;
}

.spark-one {
  font-size:42px;
  left:7px;
  top:-11px;
}

.spark-two {
  font-size:45px;
  right:-18px;
  bottom:0;
}

.integrations {
  border-block:1px solid var(--line);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:30px;
  padding-block:29px;
}

.integrations>p {
  font-size:10px;
  line-height:1.8;
  color:#859694;
}

.integrations strong {
  font-weight:500;
  color:#556564;
}

.platform-list {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  color:#6b7d7c;
}

.shopify {
  font-size:23px;
  font-weight:750;
  font-style:italic;
  letter-spacing:-1px;
}

.woocommerce {
  font-size:17px;
  font-weight:750;
  letter-spacing:-.9px;
}

.wix {
  font-size:25px;
  font-weight:600;
  letter-spacing:-1.5px;
}

.squarespace {
  font-size:11px;
  letter-spacing:1.2px;
  font-weight:650;
}

.integration-note {
  text-align:right;
}

.section {
  padding-block:90px;
}

.section-heading {
  display:flex;
  justify-content:space-between;
  align-items:end;
  margin-bottom:35px;
  gap:30px;
}

h2 {
  font-size:36px;
  line-height:1.25;
  letter-spacing:-1.2px;
  font-weight:650;
}

.section-heading h2,.how-intro h2,.faq-section h2 {
  margin-top:14px;
}

.section-heading>p,.how-intro>p:not(.eyebrow),.faq-section>div>p:not(.eyebrow) {
  font-size:13px;
  line-height:1.85;
  color:var(--muted);
}

.section-heading>p {
  padding-bottom:4px;
}

.benefit-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.benefit-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px;
  position:relative;
}

.feature-icon {
  width:43px;
  height:43px;
  border-radius:12px;
  display:grid;
  place-items:center;
  background:#ebfaf7;
  color:var(--accent);
}

.feature-icon svg {
  width:25px;
  height:25px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.4;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.card-index {
  position:absolute;
  right:28px;
  top:35px;
  font-size:11px;
  color:#aabdbd;
}

.benefit-card h3 {
  font-size:20px;
  line-height:1.4;
  letter-spacing:-.45px;
  margin-top:23px;
  font-weight:600;
}

.benefit-card p {
  font-size:12px;
  color:var(--muted);
  line-height:1.9;
  margin-top:13px;
}

.feature-tag {
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid #ebf4f3;
  margin-top:23px;
  padding-top:18px;
  color:#76a6a0;
  font-size:10px;
}

.feature-tag>span {
  font-size:17px;
}

.how-section {
  background:#f1faf9;
  border-block:1px solid #e7f6f4;
  padding-block:64px;
  overflow:hidden;
}

.how-layout {
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:90px;
}

.how-intro {
  position:relative;
}

.how-intro>p:not(.eyebrow) {
  margin-top:21px;
}

.how-intro .text-link {
  margin-top:24px;
  color:var(--accent);
}

.how-decoration {
  font-size:130px;
  color:#daf3f0;
  position:absolute;
  right:5px;
  bottom:-40px;
  line-height:1;
  transform:rotate(12deg);
}

.steps {
  margin:0;
  padding:0;
  list-style:none;
  display:flex;
  flex-direction:column;
  gap:27px;
}

.steps li {
  display:flex;
  gap:22px;
  position:relative;
}

.steps li:not(:last-child):before {
  content:"";
  position:absolute;
  left:21px;
  top:50px;
  bottom:-21px;
  width:1px;
  background:#d0e9e6;
}

.step-number {
  display:grid;
  place-items:center;
  flex:none;
  width:44px;
  height:44px;
  background:#fff;
  border:1px solid #def2f0;
  border-radius:50%;
  font-size:12px;
  color:var(--accent);
}

.steps h3 {
  font-size:17px;
  font-weight:600;
  letter-spacing:-.3px;
  margin-top:2px;
}

.steps p {
  margin-top:8px;
  font-size:12px;
  color:var(--muted);
  line-height:1.85;
  max-width:380px;
}

.faq-section {
  display:grid;
  grid-template-columns:1fr 1.2fr;
  gap:65px;
}

.faq-section>div>p:not(.eyebrow) {
  margin-top:18px;
}

.faq-list {
  border-top:1px solid var(--line);
}

details {
  border-bottom:1px solid var(--line);
}

summary {
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:22px;
  cursor:pointer;
  font-size:13px;
  font-weight:550;
  padding:22px 0;
}

summary::-webkit-details-marker {
  display:none;
}

summary>span {
  font-size:21px;
  line-height:1;
  color:#89b0ab;
  font-weight:400;
  transition:transform .2s;
}

details[open] summary>span {
  transform:rotate(45deg);
}

details>p {
  font-size:12px;
  line-height:1.9;
  color:var(--muted);
  padding:0 24px 22px 0;
}

details a {
  color:var(--accent);
  text-decoration:underline;
  text-underline-offset:3px;
}

.cta-section {
  padding-bottom:63px;
}

.cta-inner {
  position:relative;
  isolation:isolate;
  overflow:hidden;
  text-align:center;
  background:#236c5d;
  border-radius:20px;
  padding:52px 24px 48px;
  color:#fff;
}

.cta-inner .eyebrow {
  justify-content:center;
  color:#d6f6ef;
  font-size:9px;
}

.cta-inner h2 {
  font-size:40px;
  line-height:1.22;
  margin-top:14px;
  letter-spacing:-1.2px;
}

.cta-inner>p:not(.eyebrow) {
  font-size:12px;
  color:#d9f5f0;
  margin-top:17px;
}

.button-white {
  background:#fff;
  color:#236c5d;
  margin-top:25px;
  font-size:12px;
  padding:15px 20px;
}

.button-white:hover {
  background:#eafaf9;
}

.cta-spark {
  position:absolute;
  font-size:72px;
  color:#8fead4;
  left:10%;
  top:39%;
  transform:rotate(-10deg);
  z-index:-1;
}

.cta-orbit {
  position:absolute;
  width:360px;
  height:360px;
  border:1px solid #81dcc8;
  border-radius:50%;
  right:-186px;
  top:-21px;
  z-index:-1;
}

.cta-orbit:before,.cta-orbit:after {
  content:"";
  position:absolute;
  border:1px solid #81dcc8;
  border-radius:50%;
  inset:28px;
}

.cta-orbit:after {
  inset:56px;
}

.site-footer {
  padding-bottom:27px;
}

.footer-top {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding-bottom:24px;
}

.footer-top .brand {
  font-size:25px;
}

.footer-top>p {
  font-size:11px;
  color:#829392;
}

.footer-top .text-link {
  font-size:11px;
}

.footer-bottom {
  border-top:1px solid var(--line);
  padding-top:23px;
  display:flex;
  justify-content:space-between;
  align-items:start;
  gap:30px;
  font-size:9px;
  line-height:1.8;
  color:#909e9d;
}

.footer-bottom>p:last-child {
  text-align:right;
}

@media(min-width:1450px) {
  .hero {
    gap:55px;
    padding-top:82px;
    padding-bottom:105px;
  }
  .hero-art {
    min-height:440px;
  }
}

@media(max-width:1100px) {
  .wrap {
    width:calc(100% - 64px);
  }
  .hero {
    gap:25px;
  }
  .hero-actions {
    gap:16px;
  }
  .hero-actions .button {
    padding:15px 18px;
    font-size:12px;
  }
  .hero-actions .text-link {
    font-size:11px;
  }
  .hero-art {
    min-height:400px;
  }
  .product-art {
    height:130px;
  }
  .window-content {
    padding:18px;
  }
  .art-orbit {
    width:340px;
    height:340px;
    top:30px;
    left:15px;
  }
  .supplier-label {
    right:-7px;
    top:0;
  }
  .store-label {
    bottom:1px;
    left:15px;
  }
  .platform-list {
    gap:23px;
  }
  .integration-note {
    display:none;
  }
  .benefit-card {
    padding:22px;
  }
  .benefit-card h3 {
    font-size:18px;
  }
  .how-layout {
    gap:55px;
  }
  .faq-section {
    gap:40px;
  }
}

@media(max-width:800px) {
  .site-header {
    height:85px;
    gap:20px;
  }
  .site-header nav {
    gap:19px;
    font-size:11px;
  }
  .site-header .button-small {
    padding:11px 13px;
    font-size:11px;
    gap:12px;
  }
  .brand {
    font-size:26px;
  }
  .brand-icon {
    display:none;
  }
  .hero {
    grid-template-columns:1fr;
    padding-top:40px;
    padding-bottom:63px;
    gap:45px;
  }
  .hero-copy {
    max-width:570px;
    margin:auto;
    text-align:center;
  }
  .hero .eyebrow {
    justify-content:center;
  }
  h1 {
    font-size:58px;
  }
  .hero-description {
    max-width:480px;
    margin-inline:auto;
  }
  .hero-actions,.hero-note {
    justify-content:center;
  }
  .hero-art {
    width:min(510px,95%);
    min-height:450px;
    margin:auto;
  }
  .product-art {
    height:160px;
  }
  .window-content {
    padding:23px;
  }
  .art-orbit {
    width:420px;
    height:420px;
    left:40px;
    top:10px;
  }
  .supplier-label {
    top:0;
  }
  .store-label {
    bottom:0;
  }
  .integrations {
    flex-direction:column;
    gap:20px;
    padding-block:26px;
  }
  .integrations>p {
    text-align:center;
  }
  .integrations>p br {
    display:none;
  }
  .integrations strong {
    margin-left:4px;
  }
  .platform-list {
    width:100%;
    justify-content:space-evenly;
  }
  .section {
    padding-block:64px;
  }
  .section-heading {
    align-items:start;
    flex-direction:column;
    gap:18px;
  }
  h2 {
    font-size:32px;
  }
  .benefit-grid {
    gap:12px;
  }
  .benefit-card {
    padding:19px;
  }
  .benefit-card h3 {
    font-size:16px;
  }
  .benefit-card p {
    font-size:11px;
  }
  .feature-tag {
    font-size:9px;
    line-height:1.7;
    gap:10px;
  }
  .card-index {
    right:18px;
  }
  .how-layout {
    gap:34px;
    grid-template-columns:.85fr 1.15fr;
  }
  .how-decoration {
    right:0;
    font-size:100px;
  }
  .steps li {
    gap:14px;
  }
  .steps h3 {
    font-size:15px;
  }
  .steps p {
    font-size:11px;
  }
  .faq-section {
    grid-template-columns:1fr;
    gap:28px;
  }
  .faq-section h2 br {
    display:none;
  }
  .cta-spark {
    left:5%;
    font-size:50px;
  }
  .footer-bottom {
    font-size:8px;
  }
}

@media(max-width:540px) {
  .wrap {
    width:calc(100% - 40px);
  }
  .site-header {
    height:auto;
    min-height:80px;
    flex-wrap:wrap;
    gap:16px;
    padding-top:21px;
    padding-bottom:17px;
  }
  .site-header .brand {
    font-size:27px;
  }
  .site-header .button {
    margin-left:auto;
  }
  .site-header nav {
    order:3;
    justify-content:center;
    width:100%;
    border-top:1px solid var(--line);
    padding-top:15px;
    gap:34px;
    font-size:12px;
  }
  .hero {
    padding-top:37px;
    gap:36px;
    padding-bottom:42px;
  }
  .eyebrow {
    font-size:8px;
    letter-spacing:1.25px;
  }
  h1 {
    font-size:clamp(35px,10.5vw,55px);
    letter-spacing:-1.9px;
    margin-top:20px;
  }
  .accent-word svg {
    bottom:-12px;
  }
  .hero-description {
    font-size:13px;
    line-height:1.9;
    margin-top:30px;
  }
  .hero-actions {
    gap:20px;
    margin-top:23px;
  }
  .hero-actions .button {
    font-size:11px;
    padding:15px 17px;
    gap:14px;
  }
  .hero-actions .text-link {
    font-size:10px;
    gap:8px;
  }
  .hero-note {
    font-size:9px;
    margin-top:18px;
  }
  .hero-art {
    width:calc(100% - 10px);
    min-height:370px;
  }
  .hero-art:before {
    inset:0 -14px;
  }
  .discovery-window {
    border-radius:10px;
  }
  .window-top {
    padding:12px 15px;
  }
  .window-logo {
    font-size:18px;
  }
  .window-content {
    padding:16px;
  }
  .window-heading h2 {
    font-size:19px;
  }
  .micro-label {
    font-size:6px;
  }
  .window-heading>span {
    font-size:28px;
  }
  .category-tags {
    margin:14px 0 12px;
    gap:6px;
  }
  .category-tags span {
    font-size:7px;
    padding:5px 8px;
  }
  .product-grid {
    gap:9px;
  }
  .product-art {
    height:115px;
  }
  .product-info {
    padding:10px 8px;
  }
  .product-info h3 {
    font-size:9px;
  }
  .product-info p {
    font-size:6px;
  }
  .product-info>span {
    font-size:5px;
  }
  .product-info p span {
    font-size:9px;
  }
  .window-bottom {
    font-size:5.5px;
    gap:5px;
  }
  .window-bottom>span:last-child {
    font-size:4.5px;
    letter-spacing:.2px;
  }
  .floating-label {
    padding:9px 12px;
    font-size:7px;
    gap:8px;
    border-radius:8px;
  }
  .floating-label strong {
    font-size:9px;
  }
  .round-icon {
    width:27px;
    height:27px;
    font-size:20px;
  }
  .check-icon {
    font-size:14px;
  }
  .supplier-label {
    right:-8px;
    top:-1px;
  }
  .store-label {
    left:9px;
    bottom:-2px;
  }
  .mini-spark {
    font-size:19px;
    margin-left:7px;
  }
  .art-orbit {
    width:calc(100% - 24px);
    height:auto;
    aspect-ratio:1;
    left:12px;
    top:29px;
  }
  .spark-one {
    font-size:30px;
    top:0;
    left:5px;
  }
  .spark-two {
    font-size:32px;
    right:-9px;
    bottom:0;
  }
  .platform-list {
    flex-wrap:wrap;
    gap:20px 35px;
    justify-content:center;
  }
  .shopify {
    font-size:22px;
  }
  .woocommerce {
    font-size:16px;
  }
  .wix {
    font-size:22px;
  }
  .squarespace {
    font-size:10px;
  }
  .integrations>p {
    font-size:9px;
  }
  .section {
    padding-block:49px;
  }
  h2 {
    font-size:29px;
    letter-spacing:-.9px;
  }
  .section-heading {
    margin-bottom:26px;
    gap:15px;
  }
  .section-heading>p {
    font-size:12px;
  }
  .desktop-break {
    display:none;
  }
  .benefit-grid {
    grid-template-columns:1fr;
    gap:14px;
  }
  .benefit-card {
    padding:24px;
  }
  .benefit-card h3 {
    font-size:20px;
    margin-top:19px;
  }
  .benefit-card h3 br {
    display:none;
  }
  .benefit-card p {
    font-size:12px;
  }
  .feature-tag {
    font-size:10px;
    margin-top:18px;
    padding-top:14px;
  }
  .card-index {
    right:25px;
    top:37px;
  }
  .how-section {
    padding-block:44px;
  }
  .how-layout {
    grid-template-columns:1fr;
    gap:34px;
  }
  .how-intro>p:not(.eyebrow) {
    font-size:12px;
    margin-top:16px;
  }
  .how-intro .text-link {
    margin-top:18px;
  }
  .how-decoration {
    right:15px;
    bottom:-8px;
    font-size:115px;
  }
  .steps {
    gap:25px;
  }
  .steps li {
    gap:17px;
  }
  .steps h3 {
    font-size:16px;
  }
  .steps p {
    font-size:12px;
  }
  .faq-section h2 br {
    display:block;
  }
  .faq-section>div>p:not(.eyebrow) {
    font-size:12px;
    margin-top:13px;
  }
  summary {
    font-size:12px;
    padding:20px 0;
    line-height:1.6;
  }
  .cta-section {
    padding-bottom:37px;
  }
  .cta-inner {
    padding:40px 19px;
    border-radius:14px;
  }
  .cta-inner h2 {
    font-size:29px;
    letter-spacing:-.7px;
  }
  .cta-inner>p:not(.eyebrow) {
    font-size:11px;
    line-height:1.8;
    max-width:235px;
    margin-inline:auto;
  }
  .cta-spark {
    font-size:30px;
    left:11px;
    top:22px;
  }
  .cta-orbit {
    right:-286px;
  }
  .footer-top {
    flex-wrap:wrap;
    gap:15px;
  }
  .footer-top .brand {
    font-size:25px;
  }
  .footer-top>p {
    order:3;
    flex-basis:100%;
    font-size:10px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:10px;
    font-size:8px;
  }
  .footer-bottom>p:last-child {
    text-align:left;
  }
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
  }
}

