:root {
  --hub-bg: #040913;
  --hub-bg-deep: #02060d;
  --hub-surface: rgba(9, 18, 35, 0.82);
  --hub-surface-strong: rgba(12, 23, 43, 0.96);
  --hub-line: rgba(105, 166, 255, 0.16);
  --hub-line-soft: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.94);
  --muted: rgba(255, 255, 255, 0.56);
  --muted-soft: rgba(255, 255, 255, 0.34);
  --accent: #59a6ff;
  --accent-soft: rgba(89, 166, 255, 0.14);
  --accent-strong: rgba(89, 166, 255, 0.9);
  --shadow-soft: 0 18px 42px rgba(0, 0, 0, 0.28);
  /* Hero app preview panel */
  --app-panel-navy: #0a1424;
  --app-panel-navy-deep: #060d18;
  --app-panel-navy-a: rgba(10, 20, 36, 0.88);
  --app-panel-navy-deep-a: rgba(6, 13, 24, 0.55);
  --app-panel-line: rgba(120, 160, 220, 0.14);
  --frame: min(1320px, calc(100% - 72px));
  --frame-wide: min(1440px, calc(100% - 72px));
  --font-ui: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --leading-prose: 1.7;
  /* Space for fixed footer so content isn’t hidden underneath */
  --footer-bar-space: max(5.5rem, calc(4.75rem + env(safe-area-inset-bottom, 0px)));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  /* Reserve scrollbar width so centered layouts don’t jump when page height crosses the fold */
  scrollbar-gutter: stable;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  color: var(--text);
  font-family: var(--font-ui);
  font-size: 16px;
  line-height: 1.65;
  background:
    radial-gradient(circle at top center, rgba(89, 166, 255, 0.12), transparent 36%),
    linear-gradient(180deg, #07101f 0%, var(--hub-bg) 36%, var(--hub-bg-deep) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 0%, rgba(89, 166, 255, 0.07), transparent 32%),
    radial-gradient(circle at 80% 10%, rgba(89, 166, 255, 0.04), transparent 28%);
}

a {
  color: inherit;
}

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

[hidden] {
  display: none !important;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
  min-height: 0;
  padding-top: clamp(18px, 3vw, 36px);
  padding-bottom: var(--footer-bar-space);
}

.hero,
.section {
  width: var(--frame);
  margin: 0 auto;
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  padding: 0;
  /* Match body gradient top (#07101f) so the bar doesn’t read as a separate slab */
  background: linear-gradient(
    180deg,
    rgba(7, 16, 31, 0.78) 0%,
    rgba(7, 16, 31, 0.35) 52%,
    rgba(4, 9, 19, 0) 100%
  );
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
}

.site-nav__inner {
  width: var(--frame);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px 0 18px;
}

.nav-left,
.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-left {
  justify-content: flex-start;
}

.nav-links {
  justify-content: flex-end;
}

.brand {
  justify-self: center;
  text-decoration: none;
  font-family: var(--font-ui);
  font-size: 1.5rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  font-weight: 700;
}

.nav-left a,
.nav-links a,
.nav-cart,
.brand,
.btn,
.text-link,
.cart-checkout,
.cart-remove {
  transition:
    color 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease,
    transform 180ms ease;
}

.nav-left a,
.nav-links a,
.nav-cart {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-left a[aria-current="page"],
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"],
.nav-left a:hover,
.nav-left a:focus-visible,
.nav-cart:hover,
.nav-cart:focus-visible,
.brand:hover,
.brand:focus-visible {
  color: var(--text);
}

.nav-cta {
  padding: 0.48rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--hub-line);
  background: rgba(89, 166, 255, 0.08);
  color: var(--text) !important;
}

.nav-cart {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.nav-count {
  min-width: 1.45rem;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

/* Empty cart: still show “0” so the badge reads consistently on every page (e.g. home). */
.nav-count--empty {
  opacity: 0.5;
  color: var(--muted-soft);
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero,
.section {
  padding: 56px 0;
  text-align: left;
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 52px;
  align-items: start;
  justify-items: stretch;
}

.page-intro {
  padding-top: 40px;
  padding-bottom: 36px;
  text-align: left;
}

.hero__copy {
  text-align: left;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: left;
}

/* Primary title on each page (home hero, Tools, Cart) */
h1.page-heading {
  font-family: var(--font-ui);
  font-size: clamp(2.75rem, 5.2vw, 4.65rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  font-weight: 700;
}

h2 {
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1.12;
  font-weight: 650;
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 620;
  letter-spacing: -0.02em;
}

.hero__text,
.section-copy,
.tool-panel__description,
.tool-panel__note,
.footer span,
.cart-empty p {
  color: var(--muted);
}

.hero__text,
.section-copy {
  max-width: 62ch;
  margin-top: 28px;
  font-size: 1.05rem;
  line-height: var(--leading-prose);
}

.tool-panel__description,
.tool-panel__note,
.cart-empty p,
.cart-note,
.noscript-copy {
  line-height: var(--leading-prose);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
}

.btn {
  cursor: pointer;
}

.btn:hover,
.btn:focus-visible,
.text-link:hover,
.text-link:focus-visible {
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 10px 28px rgba(89, 166, 255, 0.18);
}

button.btn--primary[data-add-to-cart] {
  min-width: 34px;
  min-height: 34px;
  padding-inline: 10px;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1;
}

.btn--secondary {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--hub-line-soft);
  color: var(--text);
}

.btn--inline {
  min-height: 32px;
  min-width: 32px;
  padding: 0 10px;
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1;
}

.text-link {
  padding-left: 0;
  padding-right: 0;
  min-height: auto;
  border: 0;
  color: var(--muted);
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--text);
}

.hero__visual {
  display: flex;
  justify-content: center;
  width: 100%;
}

/* Home hero: headline stays in the frame; preview band is full viewport width. */
main:has(.quiet-visual) .hero {
  width: var(--frame);
  margin: 0 auto;
  padding: 40px 0 28px;
  gap: 44px;
}

main:has(.quiet-visual) .hero__copy {
  width: var(--frame);
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

main:has(.quiet-visual) .hero__visual {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: center;
}

main:has(.quiet-visual) .quiet-visual {
  width: min(100%, 980px);
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px;
  border-left: 1px solid var(--app-panel-line);
  border-right: 1px solid var(--app-panel-line);
  box-shadow: var(--shadow-soft);
  padding-top: clamp(18px, 3vw, 28px);
  padding-bottom: clamp(18px, 3vw, 28px);
  padding-left: clamp(14px, 4vw, 40px);
  padding-right: clamp(14px, 4vw, 40px);
  border-top: 1px solid var(--app-panel-line);
  border-bottom: 1px solid var(--app-panel-line);
}

main:has(.quiet-visual) .quiet-visual__row {
  border-radius: 14px;
}

main:has(.quiet-visual) .hero__copy h1.page-heading {
  text-align: center;
}

main:has(.quiet-visual) .hero__copy .hero__text {
  text-align: center;
  margin-inline: auto;
}

main:has(.quiet-visual) .hero__copy .cta-row {
  justify-content: center;
}

.quiet-visual {
  --qv-dur: 240ms;
  --qv-ease: cubic-bezier(0.33, 0.1, 0.34, 1);
  position: relative;
  width: 100%;
  max-width: none;
  padding: 28px;
  border: 1px solid var(--app-panel-line);
  border-radius: 16px;
  background: linear-gradient(
    180deg,
    var(--app-panel-navy) 0%,
    var(--app-panel-navy-deep) 26%,
    var(--app-panel-navy-a) 48%,
    var(--app-panel-navy-deep-a) 68%,
    rgba(6, 13, 24, 0.12) 88%,
    transparent 100%
  );
  box-shadow: var(--shadow-soft);
}

.quiet-visual__defs {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.quiet-visual__rows {
  display: grid;
  gap: 20px;
  padding-top: 0;
  align-items: stretch;
}

.quiet-visual__rows--grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.quiet-visual__row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 0;
  gap: 24px;
  padding: 20px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  min-width: 0;
  overflow: hidden;
  transition:
    background-color var(--qv-dur) var(--qv-ease),
    border-color var(--qv-dur) var(--qv-ease),
    color var(--qv-dur) var(--qv-ease),
    opacity var(--qv-dur) var(--qv-ease);
}

.quiet-visual__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  min-width: 0;
}

.quiet-visual__row-head strong {
  font-size: 1.05rem;
  font-weight: 650;
  line-height: 1.2;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color var(--qv-dur) var(--qv-ease);
}

.quiet-visual__power {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  background: none;
  transition:
    color var(--qv-dur) var(--qv-ease),
    opacity var(--qv-dur) var(--qv-ease);
}

.quiet-visual__power svg {
  display: block;
  width: 25px;
  height: 25px;
}

.quiet-visual__row--active .quiet-visual__power {
  color: var(--accent-strong);
}

.quiet-visual__row--off {
  background: rgba(255, 255, 255, 0.03);
}

.quiet-visual__row--off .quiet-visual__row-head strong {
  color: rgba(255, 255, 255, 0.38);
}

.quiet-visual__row--off .quiet-visual__desc {
  color: rgba(255, 255, 255, 0.26);
}

.quiet-visual__row--off .quiet-visual__power {
  color: rgba(255, 255, 255, 0.28);
}

.quiet-visual__row--off .quiet-visual__power svg {
  opacity: 0.65;
}

.quiet-visual__row--off .quiet-visual__customize {
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.35);
}

.quiet-visual__row--off .quiet-visual__remove {
  color: rgba(255, 255, 255, 0.32);
}

.quiet-visual__desc {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
  color: var(--muted-soft);
  transition: color var(--qv-dur) var(--qv-ease);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  min-width: 0;
  min-height: 0;
}

.quiet-visual__row-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  min-width: 0;
  margin-top: auto;
}

.quiet-visual__customize {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  min-width: 0;
  max-width: 100%;
  flex: 0 1 auto;
  padding: 0 14px;
  border-radius: 10px;
  border: none;
  background: rgba(89, 166, 255, 0.2);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 650;
  white-space: nowrap;
  cursor: default;
  user-select: none;
  transition:
    background-color var(--qv-dur) var(--qv-ease),
    color var(--qv-dur) var(--qv-ease);
}

.quiet-visual__remove {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 650;
  color: #7eb8ff;
  white-space: nowrap;
  transition: color var(--qv-dur) var(--qv-ease);
}

.quiet-visual__row--active {
  background: rgba(89, 166, 255, 0.09);
  border: 1px solid rgba(89, 166, 255, 0.24);
}

@media (max-width: 640px) {
  .quiet-visual__rows--grid-2 {
    grid-template-columns: minmax(0, 1fr);
  }
}

.section-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.tool-shell {
  max-width: 980px;
  margin: 0 auto;
  padding: 22px 24px 28px;
  border: 1px solid var(--hub-line);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(89, 166, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--hub-surface);
  box-shadow: var(--shadow-soft);
}

.tool-shell--carousel {
  padding: 16px 0 8px;
  border: none;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
}

.tool-carousel {
  /* Arrows can sit in screen gutters; slide padding clears them when they overlap (narrow viewports) */
  --carousel-arrow-size: 56px;
  --carousel-arrow-inset: clamp(32px, 6vw, 96px);
  --carousel-arrow-clearance: 18px;
  outline: none;
}

.tool-carousel:focus-visible {
  box-shadow: 0 0 0 2px var(--hub-bg-deep), 0 0 0 4px var(--accent-strong);
  border-radius: 12px;
}

.tool-carousel__arrow {
  position: absolute;
  /* Vertical center tracks the active slide’s .tool-carousel__showcase (set via --carousel-arrow-align-y in JS) */
  top: var(--carousel-arrow-align-y, 50%);
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  padding: 4px 6px;
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(2.35rem, 6vw, 3.35rem);
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color 180ms ease, opacity 180ms ease;
  -webkit-tap-highlight-color: transparent;
}

.tool-carousel__arrow--prev {
  left: max(var(--carousel-arrow-inset), env(safe-area-inset-left, 0px));
}

.tool-carousel__arrow--next {
  right: max(var(--carousel-arrow-inset), env(safe-area-inset-right, 0px));
}

/* Screen-edge arrows; cards stay in the content column (viewport stays frame width) */
main:has(.tool-browser) .tool-carousel__arrow--prev {
  left: calc(
    max(var(--carousel-arrow-inset), env(safe-area-inset-left, 0px)) + 50% - 50vw
  );
}

main:has(.tool-browser) .tool-carousel__arrow--next {
  right: calc(
    max(var(--carousel-arrow-inset), env(safe-area-inset-right, 0px)) + 50% - 50vw
  );
}

.tool-carousel__arrow:hover {
  color: #fff;
}

.tool-carousel__arrow:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 6px;
  border-radius: 4px;
}

.tool-carousel__viewport {
  position: relative;
  overflow: visible;
  width: 100%;
  border-radius: 0;
}

/* Clip slide transitions only; arrows can sit in the viewport gutters */
.tool-carousel__clip {
  overflow: hidden;
  width: 100%;
}

.tool-carousel__track {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  transition: transform 0.45s cubic-bezier(0.25, 0.85, 0.25, 1);
  will-change: transform;
}

.tool-carousel__slide {
  flex: 0 0 100%;
  width: 100%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  /* When arrows sit in the gutter (50% ≪ 50vw), min wins; when arrows overlap the track, expand padding */
  padding: 4px
    max(
      clamp(16px, 3.2vw, 32px),
      calc(
        max(var(--carousel-arrow-inset), env(safe-area-inset-right, 0px)) + 50% - 50vw +
          var(--carousel-arrow-size) + var(--carousel-arrow-clearance)
      )
    )
    8px
    max(
      clamp(16px, 3.2vw, 32px),
      calc(
        max(var(--carousel-arrow-inset), env(safe-area-inset-left, 0px)) + 50% - 50vw +
          var(--carousel-arrow-size) + var(--carousel-arrow-clearance)
      )
    );
}

.tool-carousel__slide-inner {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin: 0 auto;
  max-width: 100%;
  width: 100%;
  padding: clamp(28px, 4.8vw, 48px) clamp(22px, 3.5vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--app-panel-line);
  background: linear-gradient(
    180deg,
    var(--app-panel-navy) 0%,
    var(--app-panel-navy-deep) 26%,
    var(--app-panel-navy-a) 48%,
    var(--app-panel-navy-deep-a) 68%,
    rgba(6, 13, 24, 0.12) 88%,
    transparent 100%
  );
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.tool-carousel__slide-top {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 20px;
  margin-bottom: clamp(12px, 2vw, 18px);
  text-align: left;
  flex: 0 0 auto;
}

.tool-carousel__slide-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  /* Grow across the row so description can use space next to the price column */
  flex: 1 1 auto;
  min-width: 0;
  max-width: 100%;
  margin: 0;
}

.tool-carousel__slide-commerce {
  display: flex;
  justify-content: flex-end;
  flex: 0 0 auto;
  min-width: 0;
}

/* Price block (no framed chip, layout wrapper only) */
.tool-carousel__price-row {
  max-width: 100%;
}

.tool-carousel__price-row--paid {
  display: inline-flex;
}

.tool-carousel__price-primary {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 0;
}

.tool-carousel__price-line {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.tool-carousel__price-line .tool-carousel__slide-actions {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

button.tool-carousel__price-action,
a.tool-carousel__price-action {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 8px;
  border-radius: 999px;
  border: 1px solid rgba(89, 166, 255, 0.38);
  background: rgba(89, 166, 255, 0.12);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: var(--accent);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background-color 160ms ease,
    border-color 160ms ease;
}

a.tool-carousel__price-action:hover,
button.tool-carousel__price-action:hover {
  color: #fff;
  background: rgba(89, 166, 255, 0.32);
  border-color: rgba(89, 166, 255, 0.55);
}

a.tool-carousel__price-action:focus-visible,
button.tool-carousel__price-action:focus-visible {
  color: #fff;
  background: rgba(89, 166, 255, 0.28);
  border-color: var(--accent-strong);
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

/* Motion / demo region, 1080p frame (16:9); mount Lottie, Rive, canvas, or video in [data-tool-showcase-stage] */
.tool-carousel__showcase {
  flex: 0 0 auto;
  width: 100%;
  margin: 0 auto clamp(14px, 2.2vw, 20px);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(120, 160, 220, 0.12);
  background: rgba(255, 255, 255, 0.045);
  aspect-ratio: var(--tool-showcase-ratio, 16 / 9);
  position: relative;
  contain: layout style paint;
}

.tool-carousel__showcase-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tool-carousel__showcase-media {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tool-carousel__showcase--placeholder .tool-carousel__showcase-stage {
  background:
    radial-gradient(ellipse 80% 70% at 50% 42%, rgba(89, 166, 255, 0.1), transparent 62%),
    repeating-linear-gradient(
      -12deg,
      transparent,
      transparent 11px,
      rgba(255, 255, 255, 0.028) 11px,
      rgba(255, 255, 255, 0.028) 12px
    ),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(6, 13, 24, 0.35));
}

.tool-carousel__showcase--lottie .tool-carousel__showcase-stage {
  padding: clamp(8px, 2vw, 16px);
}

.tool-carousel__showcase--solid .tool-carousel__showcase-stage {
  background: linear-gradient(180deg, rgba(8, 14, 26, 0.96), rgba(4, 9, 18, 0.98));
}

.tool-carousel__solid-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(120, 160, 220, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.tool-carousel__slide-title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: clamp(1.85rem, 4.5vw, 2.45rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: rgba(255, 255, 255, 0.96);
}

.tool-carousel__price-badge {
  font-size: 1.08rem;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.tool-carousel__price-caption {
  font-size: 0.68rem;
  font-weight: 500;
  color: var(--muted-soft);
  letter-spacing: 0.02em;
}

.tool-carousel__price-caption--layout {
  visibility: hidden;
}

.tool-carousel__slide-actions:empty {
  display: none;
}

.tool-carousel__slide-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.tool-carousel__description {
  margin: 0;
  width: 100%;
  max-width: 100%;
  font-size: 0.92rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--muted);
  text-align: left;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
}

.tool-carousel__footnote {
  margin: 10px 0 0;
  max-width: 36ch;
  font-size: 0.8rem;
  line-height: 1.35;
  color: var(--muted-soft);
  text-align: center;
}

.tool-carousel__dots {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: clamp(20px, 3vw, 28px);
  padding: 4px 0;
}

.tool-carousel__dot {
  width: 8px;
  height: 8px;
  min-width: 8px;
  min-height: 8px;
  padding: 6px;
  box-sizing: content-box;
  border: none;
  border-radius: 999px;
  background-clip: content-box;
  background-color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    background-color 200ms ease,
    transform 200ms ease;
}

.tool-carousel__dot:hover,
.tool-carousel__dot:focus-visible {
  background-color: rgba(255, 255, 255, 0.38);
}

.tool-carousel__dot:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.tool-carousel__dot--active {
  background-color: var(--accent-strong);
  transform: scale(1.35);
}

@media (prefers-reduced-motion: reduce) {
  .tool-carousel__track {
    transition: none;
  }
}

.tool-panel__price {
  margin: 10px 0 0;
  font-size: 1.2rem;
  font-weight: 650;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.tool-panel__price-note {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--muted);
  margin-left: 0.35rem;
}

.tool-panel__price--free {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.tool-panel__subtitle {
  margin-top: 14px;
  font-size: 1.04rem;
  color: rgba(255, 255, 255, 0.82);
}

.tool-panel__description {
  max-width: 58ch;
  margin-top: 22px;
}

.tool-panel__actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
}

.tool-panel__actions:empty {
  display: none;
  margin-top: 0;
}

.tool-panel__note {
  margin-top: 20px;
  font-size: 0.95rem;
}

/* Tools page: center-aligned intro + browser */
main:has(.tool-browser) .page-intro {
  text-align: center;
  padding-bottom: 12px;
}

main:has(.tool-browser) .page-intro h1.page-heading {
  text-align: center;
}

main:has(.tool-browser) .page-intro .section-copy {
  margin-inline: auto;
  text-align: center;
}

main:has(.tool-browser) .tool-shell {
  max-width: var(--frame);
  text-align: center;
}

main:has(.tool-browser) .page-intro + .section {
  padding-top: 16px;
}

main:has(.tool-browser) .tool-carousel__slide-inner {
  text-align: center;
}

main:has(.tool-browser) .noscript-copy {
  text-align: center;
}

/* Cart page: same intro + primary block alignment as Tools */
main:has([data-cart-block]) .page-intro {
  text-align: center;
}

main:has([data-cart-block]) .page-intro h1.page-heading {
  text-align: center;
}

main:has([data-cart-block]) .page-intro .section-copy {
  margin-inline: auto;
  text-align: center;
}

main:has([data-cart-block]) .cart-block {
  margin-inline: auto;
}

main:has([data-cart-block]) .cart-empty {
  margin-inline: auto;
  text-align: center;
}

main:has([data-cart-block]) .cart-empty .cta-row {
  justify-content: center;
}

main:has([data-cart-block]) .cart-content .cart-note {
  text-align: center;
}

.cart-block {
  max-width: 920px;
}

.cart-panel {
  width: 100%;
  border: 1px solid var(--hub-line);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(89, 166, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--hub-surface);
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.cart-panel__intro {
  display: grid;
  gap: 8px;
  padding: 24px 26px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0));
  text-align: center;
  justify-items: center;
}

.cart-panel__kicker {
  color: var(--muted-soft);
  font-size: 0.76rem;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cart-panel__title {
  font-size: 1.32rem;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cart-panel__subtitle {
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.5;
}

.cart-list {
  display: grid;
}

.cart-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 44px;
  align-items: center;
  padding: 24px 26px;
  text-align: left;
}

.cart-row + .cart-row {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.cart-row__name {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 620;
  letter-spacing: -0.02em;
  min-width: 0;
}

.cart-row__price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(89, 166, 255, 0.18);
  background: rgba(89, 166, 255, 0.08);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 650;
  white-space: nowrap;
}

.cart-note {
  margin: 14px 0 0;
  color: var(--muted-soft);
  font-size: 0.88rem;
  line-height: var(--leading-prose);
}

.cart-row__actions,
.cart-footer__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-end;
}

.cart-checkout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  border: 1px solid var(--hub-line-soft);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}

.cart-checkout:hover,
.cart-checkout:focus-visible {
  color: var(--text);
  border-color: rgba(105, 166, 255, 0.35);
  background: rgba(255, 255, 255, 0.07);
}

.cart-checkout:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 2px;
}

.cart-content {
  display: grid;
  gap: 12px;
  width: 100%;
  justify-items: center;
}

.cart-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px 24px;
  align-items: center;
  padding: 22px 26px 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.14));
  text-align: left;
}

.cart-summary {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.cart-total {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}

.cart-total__label {
  color: var(--muted);
  font-size: 0.88rem;
}

.cart-total strong {
  font-size: 1.45rem;
  font-weight: 650;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.cart-footer__note {
  color: var(--muted-soft);
  font-size: 0.86rem;
  line-height: 1.45;
}

.cart-remove {
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  cursor: pointer;
}

.cart-remove:hover,
.cart-remove:focus-visible {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-remove:focus-visible {
  outline: 2px solid var(--accent-strong);
  outline-offset: 3px;
  border-radius: 2px;
}

.cart-empty {
  max-width: 640px;
  text-align: center;
}

.cart-empty h2 {
  max-width: none;
  text-align: center;
  font-size: clamp(1.1rem, 3vw, 1.45rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.cart-empty .section-copy {
  margin-inline: auto;
  text-align: center;
}

.noscript-copy,
.footer span {
  color: var(--muted-soft);
}

.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 15;
  width: 100%;
  margin: 0;
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  /* Mirror the nav: frosted bar anchored to the viewport edge */
  background: linear-gradient(
    0deg,
    rgba(3, 8, 16, 0.96) 0%,
    rgba(5, 11, 21, 0.78) 46%,
    rgba(4, 9, 19, 0) 100%
  );
  backdrop-filter: blur(16px) saturate(1.05);
  -webkit-backdrop-filter: blur(16px) saturate(1.05);
}

.footer__inner {
  width: var(--frame);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 18px 0 20px;
  text-align: center;
}

.footer-actions {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
}

.footer p {
  font-family: var(--font-ui);
  font-size: 0.88rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  font-weight: 700;
  color: var(--muted);
}

.footer span {
  line-height: 1.3;
  font-size: 0.88rem;
}

.footer-link,
.footer-download {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  white-space: nowrap;
  font-size: 0.88rem;
  line-height: 1.2;
  color: var(--muted) !important;
}

.footer-link {
  color: var(--muted) !important;
}

.footer-download {
  color: var(--muted) !important;
}

.contact-intro,
.contact-section {
  text-align: center;
}

.contact-intro h1.page-heading {
  text-align: center;
}

.contact-intro .section-copy {
  margin-inline: auto;
  text-align: center;
}

.contact-card {
  width: min(100%, 760px);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 34px);
  border-radius: 28px;
  border: 1px solid var(--app-panel-line);
  background: linear-gradient(
    180deg,
    var(--app-panel-navy) 0%,
    var(--app-panel-navy-deep) 26%,
    var(--app-panel-navy-a) 48%,
    var(--app-panel-navy-deep-a) 68%,
    rgba(6, 13, 24, 0.12) 88%,
    transparent 100%
  );
  box-shadow: var(--shadow-soft);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  text-align: left;
}

.contact-field__label {
  font-size: 0.86rem;
  line-height: 1.2;
  color: var(--muted);
}

.contact-field__control {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  outline: none;
}

.contact-field__control::placeholder {
  color: var(--muted-soft);
}

.contact-field__control:focus {
  border-color: rgba(89, 166, 255, 0.38);
  background: rgba(255, 255, 255, 0.05);
}

.contact-field__control--textarea {
  min-height: 180px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

.contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 4px;
}

.contact-field--hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.contact-form__status {
  min-height: 1.2rem;
  margin: 4px 0 0;
  text-align: center;
}

.contact-form__status[data-tone="error"] {
  color: #ff9d9d !important;
}

.contact-form__status[data-tone="success"] {
  color: #9be7b7 !important;
}

.success-section {
  display: flex;
  justify-content: center;
  padding-top: clamp(28px, 6vw, 64px) !important;
  padding-bottom: clamp(28px, 6vw, 64px) !important;
}

.success-card {
  width: min(100%, 620px);
  margin: 0 auto;
  padding: clamp(28px, 5vw, 44px);
  display: flex;
  flex-direction: column;
  gap: clamp(22px, 3vw, 28px);
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% -10%, rgba(89, 166, 255, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(12, 23, 43, 0.96) 0%, rgba(6, 13, 24, 0.95) 100%);
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.success-card__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.success-check {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
}

.success-check svg {
  width: 100%;
  height: 100%;
}

.success-check__circle {
  stroke: rgba(116, 217, 159, 0.85);
  stroke-width: 2.4;
  fill: rgba(116, 217, 159, 0.12);
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
  animation: successCircle 600ms ease forwards;
}

.success-check__tick {
  stroke: #74d99f;
  stroke-width: 3.2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: successTick 380ms ease 420ms forwards;
}

.success-check--cancelled .success-check__circle {
  stroke: rgba(255, 168, 168, 0.85);
  fill: rgba(255, 99, 99, 0.12);
}

.success-check__cross {
  stroke: #ff8b8b;
  stroke-width: 3.2;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: successTick 380ms ease 420ms forwards;
}

.success-card--cancelled {
  background:
    radial-gradient(circle at 50% -10%, rgba(255, 99, 99, 0.16), transparent 55%),
    linear-gradient(180deg, rgba(28, 14, 18, 0.96) 0%, rgba(12, 8, 12, 0.95) 100%);
}

.success-card__badge--cancelled {
  border-color: rgba(255, 168, 168, 0.32);
  background: rgba(255, 99, 99, 0.12);
  color: #ffd0d0;
}

@keyframes successCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes successTick {
  to { stroke-dashoffset: 0; }
}

.success-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.36rem 0.7rem;
  border: 1px solid rgba(116, 217, 159, 0.28);
  border-radius: 999px;
  background: rgba(116, 217, 159, 0.1);
  color: rgba(186, 240, 209, 0.96);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.success-card__title {
  margin: 4px 0 0;
  color: var(--text);
  font-size: clamp(1.7rem, 4.4vw, 2.4rem);
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.success-card__subtitle {
  margin: 0;
  max-width: 480px;
  color: var(--muted);
  line-height: 1.55;
}

.success-card__receipt {
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.025);
  overflow: hidden;
}

.receipt-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  min-height: 56px;
}

.receipt-row + .receipt-row {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.receipt-row__label {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.receipt-row__value {
  justify-self: end;
  min-width: 0;
  max-width: 100%;
  color: var(--text);
  text-align: right;
  overflow-wrap: anywhere;
}

.receipt-row__value--key {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.receipt-row__value--key code {
  display: inline-block;
  padding: 0.32rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.35rem 0.65rem;
  border: 1px solid rgba(89, 166, 255, 0.28);
  border-radius: 10px;
  background: rgba(89, 166, 255, 0.1);
  color: rgba(187, 219, 255, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 120ms ease;
}

.copy-btn:hover,
.copy-btn:focus-visible {
  background: rgba(89, 166, 255, 0.18);
  border-color: rgba(89, 166, 255, 0.45);
  color: #fff;
  outline: none;
}

.copy-btn:active {
  transform: scale(0.97);
}

.copy-btn svg {
  width: 14px;
  height: 14px;
}

.copy-btn.is-copied {
  background: rgba(116, 217, 159, 0.18);
  border-color: rgba(116, 217, 159, 0.5);
  color: #d6f5e3;
}

.success-card__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.success-card__actions .btn {
  min-width: 160px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--hub-line-soft);
  color: var(--text);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.22);
}

.success-card__hint {
  margin: 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.success-card__hint a {
  color: var(--accent);
  text-decoration: none;
}

.success-card__hint a:hover {
  text-decoration: underline;
}

@media (max-width: 560px) {
  .receipt-row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: left;
  }

  .receipt-row__value,
  .receipt-row__value--key {
    justify-self: start;
    justify-content: flex-start;
    text-align: left;
  }

  .success-card__actions .btn {
    min-width: 0;
    width: 100%;
  }
}

.privacy-copy {
  width: min(100%, 760px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
}

.privacy-copy p {
  color: var(--muted);
  line-height: var(--leading-prose);
  text-align: center;
}

.license-result {
  gap: 10px;
}

.payment-license-result {
  width: 100%;
  align-self: center;
  padding: 8px;
  border: 1px solid var(--hub-line-soft);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(3, 8, 17, 0.34);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.license-result__row {
  display: grid;
  grid-template-columns: minmax(110px, 0.42fr) minmax(0, 1fr);
  align-items: center;
  gap: 16px;
  padding: 0.8rem 0.9rem;
  border-radius: 14px;
  color: var(--text) !important;
  text-align: left !important;
}

.license-result__row + .license-result__row {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 0;
}

.license-result__row strong {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 650;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.license-result__row span,
.license-result__row code {
  justify-self: end;
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: right;
}

.license-result code {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border: 1px solid var(--hub-line-soft);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  :root {
    --frame: min(100%, calc(100% - 40px));
    --frame-wide: min(100%, calc(100% - 40px));
  }

  .cart-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero {
    gap: 40px;
    padding-top: 36px;
  }

  .page-intro {
    padding-top: 36px;
  }

}

@media (max-width: 820px) {
  .site-nav__inner {
    grid-template-columns: 1fr auto;
    grid-template-areas:
      "cart brand"
      "links links";
    row-gap: 14px;
  }

  .nav-left {
    grid-area: cart;
  }

  .brand {
    grid-area: brand;
    justify-self: end;
  }

  .nav-links {
    grid-area: links;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 14px;
  }

}

@media (max-width: 640px) {
  :root {
    --frame: min(100%, calc(100% - 28px));
    --frame-wide: min(100%, calc(100% - 28px));
    --footer-bar-space: max(6.75rem, calc(6rem + env(safe-area-inset-bottom, 0px)));
  }

  body {
    font-size: 15px;
  }

  .site-nav__inner {
    padding-top: 18px;
    padding-bottom: 14px;
  }

  .brand {
    justify-self: center;
    font-size: 1.35rem;
  }

  .nav-links {
    gap: 12px;
  }

  h1.page-heading {
    font-size: clamp(2.5rem, 15vw, 4.2rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.4rem);
  }

  .hero,
  .section {
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .contact-form__grid {
    grid-template-columns: 1fr;
  }

  .license-result__row {
    grid-template-columns: 1fr;
    gap: 6px;
    text-align: center !important;
  }

  .license-result__row span,
  .license-result__row code {
    justify-self: center;
    text-align: center;
  }

  .page-intro {
    padding-top: 32px;
  }

  .cta-row,
  .tool-panel__actions,
  .cart-row__actions,
  .cart-footer__actions {
    align-items: stretch;
  }

  .cart-row {
    grid-template-columns: 1fr;
  }

  .cart-footer {
    grid-template-columns: 1fr;
    align-items: stretch;
    text-align: center;
  }

  .cart-footer__actions {
    justify-content: flex-start;
  }

  .cart-summary,
  .cart-total {
    justify-content: center;
  }

  .footer__inner {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .footer-actions {
    flex-wrap: wrap;
    justify-content: center;
  }
}
