/* ==========================================================================
   Secretary42 — GA product page styles
   --------------------------------------------------------------------------
   ALL rules are scoped under `.s42-page` so this can be dropped into a
   WordPress site without touching the theme. Do NOT add global selectors
   (body, h1, a, button, section, *) outside of `.s42-page`.
   This file is identical to `wordpress-css.css` — keep them in sync.
   ========================================================================== */

.s42-page,
.s42-page *,
.s42-page *::before,
.s42-page *::after {
  box-sizing: border-box;
}

.s42-page {
  /* Brand palette — derived from the Secretary42 blue/white app icon */
  --s42-blue-900: #102a8a;
  --s42-blue-800: #15349f;
  --s42-blue-700: #1b3fb8;
  --s42-blue-600: #2456d8;
  --s42-blue-500: #3b6df5;
  --s42-blue-100: #e7eefe;
  --s42-blue-050: #f2f6ff;

  --s42-ink: #0d1424;
  --s42-ink-700: #2b3550;
  --s42-ink-500: #5a6480;
  --s42-line: #e2e8f4;
  --s42-surface: #ffffff;
  --s42-surface-soft: #f6f8fd;

  --s42-radius: 16px;
  --s42-radius-sm: 11px;
  --s42-radius-lg: 24px;
  --s42-shadow-sm: 0 1px 2px rgba(13, 20, 36, 0.06), 0 1px 1px rgba(13, 20, 36, 0.04);
  --s42-shadow: 0 18px 40px -22px rgba(20, 40, 110, 0.35);
  --s42-shadow-lg: 0 40px 80px -36px rgba(20, 40, 110, 0.45);

  --s42-gradient: linear-gradient(158deg, #3b6df5 0%, #1b3fb8 62%, #15349f 100%);

  --s42-maxw: 1120px;

  color: var(--s42-ink);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica,
    Arial, "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  background: var(--s42-surface);
}

/* Minimal, scoped reset (specificity 0 via :where) */
.s42-page :where(h1, h2, h3, h4, p, ul, ol, figure, blockquote) {
  margin: 0;
}
.s42-page :where(ul) {
  padding: 0;
  list-style: none;
}
.s42-page :where(img, svg) {
  display: block;
  max-width: 100%;
}
.s42-page :where(a) {
  color: var(--s42-blue-700);
  text-decoration: none;
}
.s42-page :where(a:hover) {
  text-decoration: underline;
}
.s42-page :where(section) {
  scroll-margin-top: 84px;
}
.s42-page :where(:focus-visible) {
  outline: 3px solid var(--s42-blue-500);
  outline-offset: 2px;
  border-radius: 6px;
}

/* Layout helpers ---------------------------------------------------------- */
.s42-page .s42-container {
  width: 100%;
  max-width: var(--s42-maxw);
  margin-inline: auto;
  padding-inline: 24px;
}
.s42-page .s42-section {
  padding-block: clamp(56px, 8vw, 104px);
}
.s42-page .s42-section--tint {
  background: var(--s42-surface-soft);
  border-block: 1px solid var(--s42-line);
}
.s42-page .s42-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--s42-blue-700);
}
.s42-page .s42-section__head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.s42-page .s42-section__head--center {
  margin-inline: auto;
  text-align: center;
}
.s42-page .s42-h2 {
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
  font-weight: 760;
}
.s42-page .s42-lede {
  margin-top: 14px;
  font-size: clamp(1.02rem, 1.6vw, 1.18rem);
  color: var(--s42-ink-700);
}
.s42-page .s42-muted {
  color: var(--s42-ink-500);
}

/* Buttons ----------------------------------------------------------------- */
.s42-page .s42-btn {
  --_bg: var(--s42-blue-700);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 22px;
  border-radius: 12px;
  border: 1px solid transparent;
  font: inherit;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.18s ease, background 0.18s ease,
    border-color 0.18s ease, color 0.18s ease;
}
.s42-page .s42-btn:hover {
  text-decoration: none;
  transform: translateY(-1px);
}
.s42-page .s42-btn:active {
  transform: translateY(0);
}
.s42-page .s42-btn--primary {
  background: var(--s42-gradient);
  color: #fff;
  box-shadow: var(--s42-shadow);
}
.s42-page .s42-btn--primary:hover {
  box-shadow: var(--s42-shadow-lg);
}
.s42-page .s42-btn--ghost {
  background: #fff;
  color: var(--s42-blue-800);
  border-color: var(--s42-line);
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-btn--ghost:hover {
  border-color: var(--s42-blue-500);
  color: var(--s42-blue-700);
}
.s42-page .s42-btn--on-dark {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.4);
}
.s42-page .s42-btn--on-dark:hover {
  background: rgba(255, 255, 255, 0.2);
}
.s42-page .s42-btn--block {
  width: 100%;
}
.s42-page .s42-btn__icon {
  width: 18px;
  height: 18px;
  flex: none;
}

/* Hero -------------------------------------------------------------------- */
.s42-page .s42-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      1100px 540px at 78% -8%,
      var(--s42-blue-050),
      transparent 60%
    ),
    var(--s42-surface);
  border-bottom: 1px solid var(--s42-line);
}
.s42-page .s42-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  padding-block: clamp(52px, 7vw, 92px);
}
.s42-page .s42-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
}
.s42-page .s42-brand__icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-brand__name {
  font-weight: 720;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
}
.s42-page .s42-hero h1 {
  font-size: clamp(2.3rem, 5.2vw, 3.6rem);
  line-height: 1.04;
  letter-spacing: -0.032em;
  font-weight: 800;
}
.s42-page .s42-hero h1 .s42-accent {
  background: var(--s42-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.s42-page .s42-hero__sub {
  margin-top: 20px;
  max-width: 30em;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  color: var(--s42-ink-700);
}
.s42-page .s42-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}
.s42-page .s42-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 24px;
  font-size: 0.93rem;
  color: var(--s42-ink-500);
}
.s42-page .s42-hero__meta strong {
  color: var(--s42-ink-700);
  font-weight: 650;
}
.s42-page .s42-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--s42-blue-500);
  display: inline-block;
}

/* Hero illustration (decorative — not a product screenshot) */
.s42-page .s42-hero__art {
  justify-self: center;
  width: 100%;
  max-width: 420px;
}
.s42-page .s42-overlay {
  background: var(--s42-gradient);
  border-radius: var(--s42-radius-lg);
  padding: 26px;
  color: #fff;
  box-shadow: var(--s42-shadow-lg);
}
.s42-page .s42-overlay__bar {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  padding: 14px 16px;
}
.s42-page .s42-overlay__hotkey {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 5px 9px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.s42-page .s42-wave {
  display: flex;
  align-items: center;
  gap: 5px;
  height: 30px;
  flex: 1;
}
.s42-page .s42-wave span {
  width: 5px;
  border-radius: 4px;
  background: #fff;
  opacity: 0.92;
  animation: s42-wave 1.1s ease-in-out infinite;
}
.s42-page .s42-wave span:nth-child(1) { height: 36%; animation-delay: 0s; }
.s42-page .s42-wave span:nth-child(2) { height: 70%; animation-delay: 0.08s; }
.s42-page .s42-wave span:nth-child(3) { height: 100%; animation-delay: 0.16s; }
.s42-page .s42-wave span:nth-child(4) { height: 58%; animation-delay: 0.24s; }
.s42-page .s42-wave span:nth-child(5) { height: 84%; animation-delay: 0.32s; }
.s42-page .s42-wave span:nth-child(6) { height: 40%; animation-delay: 0.4s; }
.s42-page .s42-wave span:nth-child(7) { height: 66%; animation-delay: 0.48s; }
@keyframes s42-wave {
  0%, 100% { transform: scaleY(0.5); }
  50% { transform: scaleY(1); }
}
@media (prefers-reduced-motion: reduce) {
  .s42-page .s42-wave span { animation: none; }
}
.s42-page .s42-overlay__caption {
  margin-top: 16px;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.85);
}
.s42-page .s42-overlay__paste {
  margin-top: 14px;
  background: #fff;
  color: var(--s42-ink);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 0.95rem;
  box-shadow: 0 10px 24px -16px rgba(0, 0, 0, 0.5);
}
.s42-page .s42-overlay__paste b { color: var(--s42-blue-700); }
.s42-page .s42-overlay__status {
  margin-top: 8px;
  font-size: 0.82rem;
  color: var(--s42-ink-500);
}
.s42-page .s42-caret {
  display: inline-block;
  width: 2px;
  height: 1.05em;
  vertical-align: -0.18em;
  background: var(--s42-blue-600);
  margin-left: 1px;
  animation: s42-blink 1s step-end infinite;
}
@keyframes s42-blink { 50% { opacity: 0; } }

/* Promise band ------------------------------------------------------------ */
.s42-page .s42-promise {
  background: var(--s42-gradient);
  color: #fff;
}
.s42-page .s42-promise .s42-container {
  text-align: center;
  padding-block: clamp(46px, 6vw, 72px);
}
.s42-page .s42-promise h2 {
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 800;
}
.s42-page .s42-promise p {
  margin-top: 14px;
  max-width: 40em;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
}

/* Steps ------------------------------------------------------------------- */
.s42-page .s42-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.s42-page .s42-step {
  position: relative;
  background: var(--s42-surface);
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius);
  padding: 26px 22px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-step__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--s42-blue-100);
  color: var(--s42-blue-800);
  font-weight: 760;
  margin-bottom: 16px;
}
.s42-page .s42-step h3 {
  font-size: 1.08rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.s42-page .s42-step p {
  margin-top: 8px;
  font-size: 0.97rem;
  color: var(--s42-ink-500);
}

/* Pricing ----------------------------------------------------------------- */
.s42-page .s42-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 880px;
  margin-inline: auto;
}
.s42-page .s42-plan {
  position: relative;
  background: var(--s42-surface);
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius-lg);
  padding: 32px;
  box-shadow: var(--s42-shadow-sm);
  display: flex;
  flex-direction: column;
}
.s42-page .s42-plan--featured {
  border-color: var(--s42-blue-500);
  box-shadow: var(--s42-shadow);
}
.s42-page .s42-plan__badge {
  position: absolute;
  top: -13px;
  right: 24px;
  background: var(--s42-gradient);
  color: #fff;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-plan__name {
  font-size: 1.15rem;
  font-weight: 720;
}
.s42-page .s42-plan__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-top: 14px;
}
.s42-page .s42-plan__amount {
  font-size: clamp(2.4rem, 5vw, 3rem);
  font-weight: 820;
  letter-spacing: -0.03em;
  line-height: 1;
}
.s42-page .s42-plan__per {
  color: var(--s42-ink-500);
  font-weight: 600;
}
.s42-page .s42-plan__note {
  margin-top: 8px;
  font-size: 0.92rem;
  color: var(--s42-ink-500);
  min-height: 1.4em;
}
.s42-page .s42-plan__save {
  color: var(--s42-blue-700);
  font-weight: 700;
}
.s42-page .s42-plan__list {
  margin-top: 22px;
  display: grid;
  gap: 11px;
}
.s42-page .s42-plan__list li {
  position: relative;
  padding-left: 28px;
  font-size: 0.97rem;
  color: var(--s42-ink-700);
}
.s42-page .s42-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--s42-blue-100)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231b3fb8' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E")
    center / 12px no-repeat;
}
.s42-page .s42-plan__cta {
  margin-top: 26px;
}
.s42-page .s42-store {
  margin-top: 30px;
  text-align: center;
  max-width: 880px;
  margin-inline: auto;
}
.s42-page .s42-store p {
  color: var(--s42-ink-700);
}
.s42-page .s42-store__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.s42-page .s42-store__fine {
  margin-top: 16px;
  font-size: 0.88rem;
  color: var(--s42-ink-500);
}

/* Privacy ----------------------------------------------------------------- */
.s42-page .s42-privacy__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 8px;
}
.s42-page .s42-pcard {
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius);
  padding: 26px;
  background: var(--s42-surface);
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-pcard h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
}
.s42-page .s42-pcard__tag {
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 999px;
}
.s42-page .s42-pcard__tag--local {
  background: #e6f6ec;
  color: #1c7a40;
}
.s42-page .s42-pcard__tag--net {
  background: var(--s42-blue-100);
  color: var(--s42-blue-800);
}
.s42-page .s42-pcard ul {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.s42-page .s42-pcard li {
  position: relative;
  padding-left: 22px;
  color: var(--s42-ink-700);
  font-size: 0.97rem;
}
.s42-page .s42-pcard li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.s42-page .s42-pcard--local li::before { background: #2aa45a; }
.s42-page .s42-pcard--net li::before { background: var(--s42-blue-500); }
.s42-page .s42-privacy__note {
  margin-top: 22px;
  font-size: 0.97rem;
  color: var(--s42-ink-500);
  max-width: 60em;
}

/* Feature grid ------------------------------------------------------------ */
.s42-page .s42-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.s42-page .s42-feature {
  background: var(--s42-surface);
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius);
  padding: 24px 22px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-feature__icon {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--s42-blue-050);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  color: var(--s42-blue-700);
}
.s42-page .s42-feature__icon svg { width: 22px; height: 22px; }
.s42-page .s42-feature h3 {
  font-size: 1.02rem;
  font-weight: 700;
}
.s42-page .s42-feature p {
  margin-top: 7px;
  font-size: 0.94rem;
  color: var(--s42-ink-500);
}

/* Models ------------------------------------------------------------------ */
.s42-page .s42-models {
  display: grid;
  gap: 12px;
}
.s42-page .s42-model {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  align-items: center;
  gap: 18px;
  background: var(--s42-surface);
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius-sm);
  padding: 16px 22px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-model--rec {
  border-color: var(--s42-blue-500);
  background: var(--s42-blue-050);
}
.s42-page .s42-model__tier {
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--s42-blue-800);
  text-align: center;
}
.s42-page .s42-model__name {
  font-weight: 700;
}
.s42-page .s42-model__name .s42-rec {
  margin-left: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--s42-gradient);
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: 1px;
}
.s42-page .s42-model__desc {
  font-size: 0.92rem;
  color: var(--s42-ink-500);
}
.s42-page .s42-model__size {
  font-variant-numeric: tabular-nums;
  font-weight: 650;
  color: var(--s42-ink-700);
  white-space: nowrap;
}
.s42-page .s42-models__fine {
  margin-top: 16px;
  font-size: 0.9rem;
  color: var(--s42-ink-500);
}

/* Use cases --------------------------------------------------------------- */
.s42-page .s42-uses {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.s42-page .s42-use {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--s42-surface);
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius-sm);
  padding: 20px;
  box-shadow: var(--s42-shadow-sm);
}
.s42-page .s42-use__icon {
  flex: none;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: var(--s42-blue-050);
  color: var(--s42-blue-700);
  display: flex;
  align-items: center;
  justify-content: center;
}
.s42-page .s42-use__icon svg { width: 19px; height: 19px; }
.s42-page .s42-use h3 { font-size: 1rem; font-weight: 700; }
.s42-page .s42-use p { margin-top: 4px; font-size: 0.92rem; color: var(--s42-ink-500); }

/* FAQ --------------------------------------------------------------------- */
.s42-page .s42-faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 12px;
}
.s42-page .s42-faq__item {
  border: 1px solid var(--s42-line);
  border-radius: var(--s42-radius-sm);
  background: var(--s42-surface);
  box-shadow: var(--s42-shadow-sm);
  overflow: hidden;
}
.s42-page .s42-faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-weight: 660;
  font-size: 1.03rem;
}
.s42-page .s42-faq__item summary::-webkit-details-marker { display: none; }
.s42-page .s42-faq__item summary::after {
  content: "";
  flex: none;
  width: 18px;
  height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235a6480' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E")
    center / contain no-repeat;
  transition: transform 0.2s ease;
}
.s42-page .s42-faq__item[open] summary::after { transform: rotate(180deg); }
.s42-page .s42-faq__item summary:hover { color: var(--s42-blue-700); }
.s42-page .s42-faq__answer {
  padding: 0 22px 20px;
  color: var(--s42-ink-700);
  font-size: 0.98rem;
}

/* Resources strip --------------------------------------------------------- */
.s42-page .s42-resources {
  border-top: 1px solid var(--s42-line);
  background: var(--s42-surface-soft);
}
.s42-page .s42-resources .s42-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-block: 28px;
}
.s42-page .s42-resources__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  font-size: 0.94rem;
}
.s42-page .s42-resources__links a { color: var(--s42-ink-700); font-weight: 550; }
.s42-page .s42-resources__links a:hover { color: var(--s42-blue-700); }
.s42-page .s42-soon {
  color: var(--s42-ink-500);
  font-weight: 550;
}
.s42-page .s42-soon::after {
  content: " · coming soon";
  color: var(--s42-ink-500);
  font-weight: 400;
  font-size: 0.85em;
}
.s42-page .s42-resources__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--s42-ink-500);
  font-size: 0.9rem;
}
.s42-page .s42-resources__brand img { width: 26px; height: 26px; border-radius: 7px; }

/* Responsive -------------------------------------------------------------- */
@media (max-width: 980px) {
  .s42-page .s42-hero__grid { grid-template-columns: 1fr; }
  .s42-page .s42-hero__art { order: -1; max-width: 360px; }
  .s42-page .s42-steps { grid-template-columns: repeat(2, 1fr); }
  .s42-page .s42-features { grid-template-columns: repeat(2, 1fr); }
  .s42-page .s42-uses { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  .s42-page { font-size: 16px; }
  .s42-page .s42-plans { grid-template-columns: 1fr; }
  .s42-page .s42-privacy__grid { grid-template-columns: 1fr; }
  .s42-page .s42-uses { grid-template-columns: 1fr; }
  .s42-page .s42-hero__cta .s42-btn { width: 100%; }
  .s42-page .s42-model {
    grid-template-columns: 48px 1fr;
    grid-template-areas: "tier name" "tier desc" ". size";
    row-gap: 4px;
  }
  .s42-page .s42-model__tier { grid-area: tier; align-self: start; }
  .s42-page .s42-model__name { grid-area: name; }
  .s42-page .s42-model__desc { grid-area: desc; }
  .s42-page .s42-model__size { grid-area: size; }
}
@media (max-width: 520px) {
  .s42-page .s42-steps { grid-template-columns: 1fr; }
  .s42-page .s42-features { grid-template-columns: 1fr; }
}
