/* ==========================================================================
   WebSyite — AI Website Builder landing page
   Palette, scale and section proportions modelled on a modern SaaS
   conversion page: purple brand, Source Sans 3, 1140px container.
   ========================================================================== */

:root {
  /* Brand purple ramp */
  --purple-700: #550cca;
  --purple-600: #6a2bf3;
  --purple-500: #814bf5;
  --purple-400: #9b5eff;

  /* Deep ink purples (hero card, dark bands) */
  --ink-900: #15083f;
  --ink-800: #280658;
  --ink-700: #2e0665;

  /* Purple tints */
  --tint-50: #f9f5ff;
  --tint-100: #f8f5fe;
  --tint-200: #efe8ff;
  --tint-300: #e6d8fe;

  /* Accents */
  --red: #fb4e4e;
  --pink: #ff2052;
  --green: #12a150;

  /* Neutrals */
  --text: #212529;
  --text-2: #1e2022;
  --muted: #5c6169;
  --gray-50: #fafafa;
  --gray-100: #f3f5f7;
  --gray-200: #e9ebed;
  --gray-300: #dfe1e3;
  --white: #fff;

  /* Radii */
  --r-xs: 4px;
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 24px;
  --r-pill: 60px;

  /* Shadows */
  --sh-sm: 0 2px 8px rgba(21, 8, 63, .06);
  --sh-md: 0 8px 28px rgba(21, 8, 63, .10);
  --sh-lg: 0 20px 60px rgba(21, 8, 63, .16);

  --nav-h: 86px;
  --container: 1140px;
}

/* ── Reset ─────────────────────────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 12px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  display: block;
}

/* The `hidden` attribute only sets display:none at UA level, so any author
   display rule (.gen-overlay{display:grid}, .preview-overlay{display:flex})
   silently beats it. Keep this above those rules. */
[hidden] {
  display: none !important;
}

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

ul {
  padding: 0;
  list-style: none;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
  color: inherit;
}

s {
  color: var(--muted);
  text-decoration-color: var(--red);
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 20px;
}

/* ── Shared type ───────────────────────────────────────────────────────── */
.section-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -.5px;
  text-align: center;
  color: var(--ink-900);
}

.section-sub {
  margin-top: 12px;
  font-size: 17px;
  color: var(--muted);
  text-align: center;
}

.section-title-light {
  color: var(--white);
}

.section-sub-light {
  color: rgba(255, 255, 255, .78);
}

/* ── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--r-pill);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, opacity .18s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--purple-600);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(106, 43, 243, .28);
}

.btn-primary:hover {
  background: var(--purple-700);
  box-shadow: 0 10px 26px rgba(85, 12, 202, .34);
}

.btn-white {
  background: var(--white);
  color: var(--purple-700);
  box-shadow: 0 6px 18px rgba(0, 0, 0, .18);
}

.btn-white:hover {
  background: var(--tint-100);
}

.btn-ghost {
  background: transparent;
  color: var(--purple-700);
  border: 1.5px solid var(--tint-300);
  padding: 9px 18px;
  font-size: 15px;
}

.btn-ghost:hover {
  background: var(--tint-50);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

.btn-sm {
  padding: 8px 18px;
  font-size: 14px;
}

.btn-block {
  width: 100%;
}

.btn[disabled] {
  opacity: .6;
  pointer-events: none;
}

/* ══════════════════════ NAVBAR ══════════════════════ */
.navbar {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 1px solid var(--gray-200);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.navbar-brand img {
  height: 37px;
  width: auto;
}

.nav-pills {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--ink-900);
  background: var(--tint-100);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-pill);
  padding: 5px 13px;
}

.nav-pill-free {
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  border-color: transparent;
  color: var(--white);
}

.nav-price {
  text-align: right;
  line-height: 1.15;
}

.nav-price-amt {
  font-size: 26px;
  font-weight: 800;
  color: var(--purple-700);
}

.nav-price-per {
  font-size: 14px;
  color: var(--muted);
}

.nav-price-save {
  font-size: 12px;
  color: var(--red);
  font-weight: 600;
}

/* ══════════════════════ HERO ══════════════════════ */
.hero-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 464px;
  background:
    radial-gradient(1100px 460px at 78% 12%, rgba(129, 75, 245, .35), transparent 62%),
    radial-gradient(760px 420px at 8% 88%, rgba(85, 12, 202, .30), transparent 60%),
    linear-gradient(115deg, #1b0a4a 0%, #2e0665 46%, #4a10a8 100%);
  overflow: hidden;
}

.gradient-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(21, 8, 63, .10), rgba(21, 8, 63, .42));
  pointer-events: none;
}

/* subtle grid texture */
.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(60% 60% at 50% 40%, #000, transparent 78%);
  pointer-events: none;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 56px 0;
}

.hero-col {
  flex: 1 1 50%;
  min-width: 0;
}

.hero-col-right {
  display: flex;
  justify-content: center;
}

.hero-copy {
  max-width: 470px;
}

.banner-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3px;
  color: var(--tint-300);
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .18);
  padding: 5px 14px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.banner-heading {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -1px;
  color: var(--white);
}

.banner-heading .hl {
  background: linear-gradient(90deg, #ffd25e, #ff9d4d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.banner-save {
  margin-top: 14px;
  font-size: 19px;
  color: rgba(255, 255, 255, .90);
}

.banner-save b {
  color: #ffd25e;
}

.hero-store-row {
  margin-top: 22px;
}

.store-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255, 255, 255, .10);
  border: 1px solid rgba(255, 255, 255, .20);
  color: var(--white);
  padding: 9px 16px;
  border-radius: var(--r-pill);
  font-size: 15px;
  font-weight: 600;
}

.store-chip-price {
  color: #ffd25e;
  font-weight: 700;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 20px;
  font-size: 15px;
  color: rgba(255, 255, 255, .85);
}

.hero-trust b {
  color: var(--white);
}

.hero-trust-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #35d07f;
  box-shadow: 0 0 0 4px rgba(53, 208, 127, .22);
  flex: none;
}

.hero-annual {
  margin-top: 10px;
  font-size: 14px;
  color: rgba(255, 255, 255, .68);
}

/* ── Hero form card ────────────────────────────────────────────────────── */
.formCardStyl {
  width: 100%;
  max-width: 417px;
  background: var(--ink-800);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--r-lg);
  padding: 26px 25px 22px;
  box-shadow: var(--sh-lg);
}

.formCardTitle {
  font-size: 24px;
  font-weight: 600;
  color: var(--white);
  text-align: center;
}

.formCardSubtitle {
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  text-align: center;
  margin-top: 4px;
  margin-bottom: 18px;
}

.form-floating {
  position: relative;
  margin-bottom: 14px;
}

.form-control {
  width: 100%;
  font: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--white);
  border: 1.5px solid transparent;
  border-radius: var(--r-sm);
  padding: 20px 14px 7px;
  outline: none;
  transition: border-color .16s ease, box-shadow .16s ease;
}

.form-control::placeholder {
  color: transparent;
}

.form-control:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 4px rgba(155, 94, 255, .25);
}

.business-desc {
  min-height: 156px;
  resize: vertical;
  line-height: 1.45;
}

.form-floating label {
  position: absolute;
  left: 14px;
  top: 14px;
  font-size: 15px;
  color: #8d93a1;
  pointer-events: none;
  transform-origin: left top;
  transition: transform .14s ease, color .14s ease;
  max-width: calc(100% - 28px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.business-desc+label {
  top: 12px;
  white-space: normal;
  line-height: 1.35;
}

.form-control:focus+label,
.form-control:not(:placeholder-shown)+label {
  transform: scale(.75) translateY(-9px);
  color: var(--purple-600);
  white-space: nowrap;
}

.business-desc:focus+label,
.business-desc:not(:placeholder-shown)+label {
  transform: scale(.75) translateY(-7px);
}

.form-control.is-invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 4px rgba(251, 78, 78, .18);
}

.form-error {
  font-size: 13.5px;
  color: #ffb4b4;
  background: rgba(251, 78, 78, .14);
  border: 1px solid rgba(251, 78, 78, .32);
  border-radius: var(--r-sm);
  padding: 8px 12px;
  margin-bottom: 12px;
}

.form-submit-wrap {
  margin-top: 4px;
}

.formCardBtn {
  width: 100%;
  height: 48px;
  background: linear-gradient(90deg, var(--purple-500), var(--purple-400));
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  border-radius: var(--r-sm);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 22px rgba(129, 75, 245, .38);
}

.formCardBtn:hover {
  filter: brightness(1.06);
}

/* shine sweep */
.btn-anim::after {
  content: "";
  position: absolute;
  top: 0;
  left: -120%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .42), transparent);
  transform: skewX(-20deg);
  animation: shine 3.2s ease-in-out infinite;
}

@keyframes shine {

  0%,
  62% {
    left: -120%;
  }

  100% {
    left: 140%;
  }
}

.form-foot {
  margin-top: 12px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

/* ══════════════════════ PRICE COMPARISON ══════════════════════ */
.form-price-sec {
  background: linear-gradient(180deg, #fff 0%, var(--tint-200) 50%, #fff 100%);
  padding: 60px 20px;
}

.price-wrap {
  max-width: 900px;
  margin-inline: auto;
}

.save-badge {
  display: block;
  width: fit-content;
  margin: 20px auto 30px;
  background: linear-gradient(90deg, var(--red), var(--pink));
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  padding: 9px 26px;
  border-radius: var(--r-pill);
  box-shadow: 0 8px 22px rgba(255, 32, 82, .28);
}

.price-table {
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  overflow: hidden;
  border: 1px solid var(--tint-300);
}

.pt-head,
.pt-row {
  display: grid;
  grid-template-columns: 1fr 150px 170px;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
}

.pt-head {
  background: var(--ink-900);
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  padding-block: 16px;
}

.pt-head .pt-c3 {
  color: #ffd25e;
}

.pt-row {
  border-top: 1px solid var(--gray-200);
  font-size: 15.5px;
}

.pt-row:nth-of-type(even) {
  background: var(--gray-50);
}

.pt-group {
  background: var(--tint-100);
  color: var(--purple-700);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-top: 1px solid var(--tint-300);
}

.pt-c2,
.pt-c3 {
  text-align: center;
  font-weight: 600;
}

.pt-free {
  color: var(--green);
  font-weight: 800;
}

.pt-inc {
  color: var(--purple-700);
  font-weight: 800;
}

.pt-total {
  background: var(--ink-900) !important;
  color: var(--white);
  font-size: 18px;
  font-weight: 800;
  padding-block: 18px;
}

.pt-total s {
  color: rgba(255, 255, 255, .55);
}

.pt-total .pt-c3 {
  color: #ffd25e;
  font-size: 19px;
}

.price-cta {
  margin-top: 30px;
  text-align: center;
}

.price-cta-note {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--muted);
}

/* ══════════════════════ TESTIMONIALS ══════════════════════ */
.aboutsection {
  padding: 64px 0 56px;
}

.tt-sub {
  color: var(--purple-600);
}

.testi-viewport {
  position: relative;
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 3 * 18px) / 4);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 6px 2px 14px;
  flex: 1;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-lg);
  padding: 20px 18px;
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 196px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}

.testi-stars {
  color: #f5a623;
  font-size: 14px;
  letter-spacing: 2px;
}

.testi-quote {
  font-size: 16px;
  line-height: 1.45;
  color: var(--text);
  flex: 1;
}

.testi-who {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--gray-200);
  padding-top: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--purple-600), var(--purple-400));
  flex: none;
}

.testi-name {
  font-weight: 700;
  font-size: 14.5px;
  line-height: 1.25;
}

.testi-biz {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.25;
}

.arrowcss {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--tint-300);
  color: var(--purple-700);
  display: grid;
  place-items: center;
  box-shadow: var(--sh-sm);
  flex: none;
  transition: background .16s ease, transform .16s ease;
}

.arrowcss:hover {
  background: var(--tint-50);
  transform: scale(1.06);
}

.testi-dots {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin-top: 6px;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--tint-300);
  transition: width .2s ease, background .2s ease;
}

.testi-dot.is-active {
  width: 24px;
  border-radius: var(--r-pill);
  background: var(--purple-600);
}

.testi-cta {
  text-align: center;
  margin-top: 32px;
}

.testi-cta-line {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 14px;
}

/* ══════════════════════ LOGO MARQUEE ══════════════════════ */
.logolistcarsel {
  padding: 8px 0 40px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.dmarquee {
  height: 104px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.dmarquee-track {
  display: flex;
  gap: 14px;
  width: max-content;
  will-change: transform;
}

.css-left .dmarquee-track {
  animation: scroll-left 42s linear infinite;
}

.css-right .dmarquee-track {
  animation: scroll-right 46s linear infinite;
}

.dmarquee:hover .dmarquee-track {
  animation-play-state: paused;
}

@keyframes scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes scroll-right {
  from {
    transform: translateX(-50%);
  }

  to {
    transform: translateX(0);
  }
}

.mq-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--r-md);
  padding: 12px 18px;
  box-shadow: var(--sh-sm);
  white-space: nowrap;
  flex: none;
}

.mq-mark {
  width: 30px;
  height: 30px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  color: var(--white);
  flex: none;
}

.mq-name {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-2);
}

.mq-cat {
  font-size: 12.5px;
  color: var(--muted);
}

/* ══════════════════════ HOW IT WORKS ══════════════════════ */
.howitworkssctn {
  padding: 56px 0 64px;
}

.hiw-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.hiw-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-lg);
  padding: 26px 20px 22px;
  box-shadow: var(--sh-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.hiw-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-md);
  border-color: var(--purple-400);
}

.hiw-num {
  position: absolute;
  top: -14px;
  left: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--purple-600);
  color: var(--white);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(106, 43, 243, .35);
}

.hiw-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--r-md);
  background: var(--tint-100);
  color: var(--purple-700);
  display: grid;
  place-items: center;
  margin-bottom: 14px;
}

.hiw-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink-900);
  margin-bottom: 8px;
}

.hiw-card p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.hiw-cta {
  text-align: center;
  margin-top: 40px;
}

/* ══════════════════════ CREDIBILITY BAND ══════════════════════ */
.launchgrwsectn {
  padding: 56px 0;
  background:
    radial-gradient(700px 320px at 20% 0%, rgba(155, 94, 255, .40), transparent 60%),
    linear-gradient(120deg, var(--ink-900), var(--ink-700) 55%, #4a10a8);
}

.cred-grid {
  display: grid;
  /* auto-fit, not a fixed 4, because stats flagged as not-real are filtered
     out — the band has to look right with 2, 3 or 4 cards. */
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.cred-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--r-lg);
  padding: 26px 20px;
  text-align: center;
  backdrop-filter: blur(6px);
}

.cred-stat {
  font-size: 40px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(90deg, #ffd25e, #ff9d4d);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.cred-label {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .80);
  line-height: 1.4;
}

.cred-cta {
  text-align: center;
  margin-top: 36px;
}

/* ══════════════════════ ADVANTAGE ══════════════════════ */
.allinclusivesctn {
  padding: 60px 20px;
  background: linear-gradient(180deg, #fff 0%, #f3ecff 50%, #fff 100%);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  margin-top: 40px;
}

.adv-card {
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-xl);
  padding: 28px 26px;
  box-shadow: var(--sh-sm);
}

.adv-title {
  font-size: 21px;
  font-weight: 700;
  color: var(--purple-700);
  margin-bottom: 14px;
}

.adv-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
  font-size: 15.5px;
  color: var(--text);
}

.adv-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--tint-200) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236a2bf3' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center/11px no-repeat;
}

.adv-foot {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed var(--tint-300);
  font-size: 14.5px;
  color: var(--muted);
  font-style: italic;
}

/* ══════════════════════ FEATURE BANNERS ══════════════════════ */
.bannersectin {
  background: var(--tint-50);
  padding: 60px 0 50px;
  border-top: 1px solid var(--tint-200);
}

.banner-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 48px;
  max-width: 1180px;
}

.banner-reverse .banner-copy {
  order: 2;
}

.banner-reverse .banner-visual {
  order: 1;
}

.banner-badge {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--pink));
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: var(--r-pill);
  margin-bottom: 16px;
}

.banner-badge-alt {
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
}

.banner-title {
  font-size: 34px;
  font-weight: 800;
  line-height: 1.16;
  letter-spacing: -.5px;
  color: var(--ink-900);
  margin-bottom: 18px;
}

.banner-list {
  margin-bottom: 26px;
}

.banner-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16.5px;
}

.banner-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center/11px no-repeat;
}

/* Mock visuals */
.banner-visual {
  display: flex;
  justify-content: center;
}

.mock-window {
  width: 100%;
  max-width: 460px;
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-md);
  box-shadow: var(--sh-lg);
  overflow: hidden;
}

.mock-bar {
  display: flex;
  gap: 6px;
  padding: 11px 14px;
  background: var(--gray-100);
  border-bottom: 1px solid var(--gray-200);
}

.mock-bar i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
}

.mock-bar i:first-child {
  background: #ff5f57;
}

.mock-bar i:nth-child(2) {
  background: #febc2e;
}

.mock-bar i:nth-child(3) {
  background: #28c840;
}

.mock-body {
  padding: 20px 18px;
}

.mock-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.mock-kpi {
  background: var(--tint-50);
  border: 1px solid var(--tint-200);
  border-radius: var(--r-sm);
  padding: 12px 10px;
  text-align: center;
}

.mk-n {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--purple-700);
}

.mk-l {
  display: block;
  font-size: 12px;
  color: var(--muted);
}

.mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 110px;
}

.mock-chart span {
  flex: 1;
  border-radius: 4px 4px 0 0;
  background: linear-gradient(180deg, var(--purple-400), var(--purple-600));
  animation: growbar 1.4s ease both;
}

@keyframes growbar {
  from {
    transform: scaleY(.15);
    transform-origin: bottom;
  }
}

.mock-phone {
  width: 260px;
  background: var(--ink-900);
  border-radius: 30px;
  padding: 12px;
  box-shadow: var(--sh-lg);
  position: relative;
}

.mock-phone-notch {
  width: 90px;
  height: 6px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, .28);
  margin: 2px auto 10px;
}

.mock-phone-screen {
  background: var(--white);
  border-radius: 20px;
  padding: 14px;
}

.mp-hero {
  height: 74px;
  border-radius: var(--r-sm);
  background: linear-gradient(120deg, var(--purple-600), var(--purple-400));
  margin-bottom: 12px;
}

.mp-line {
  height: 9px;
  border-radius: var(--r-pill);
  background: var(--gray-200);
  margin-bottom: 8px;
}

.mp-line.w80 {
  width: 80%;
}

.mp-line.w70 {
  width: 70%;
}

.mp-line.w60 {
  width: 60%;
}

.mp-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin: 12px 0;
}

.mp-card {
  height: 52px;
  border-radius: var(--r-sm);
  background: var(--tint-100);
  border: 1px solid var(--tint-200);
}

.mp-btn {
  margin-top: 12px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  color: var(--white);
  background: var(--purple-600);
  border-radius: var(--r-pill);
  padding: 9px;
}

.mock-shop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ms-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--r-sm);
  padding: 10px;
  display: block;
}

.ms-img {
  display: block;
  height: 56px;
  border-radius: var(--r-xs);
  background: linear-gradient(120deg, var(--tint-200), var(--tint-300));
  margin-bottom: 8px;
}

.ms-line {
  display: block;
  height: 8px;
  width: 72%;
  border-radius: var(--r-pill);
  background: var(--gray-200);
  margin-bottom: 6px;
}

.ms-price {
  font-size: 14px;
  font-weight: 700;
  color: var(--purple-700);
}

.mock-cart {
  margin-top: 14px;
  text-align: center;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--white);
  background: var(--ink-900);
  border-radius: var(--r-pill);
  padding: 10px;
}

/* ══════════════════════ ZERO RISK ══════════════════════ */
#zerorisk {
  padding: 60px 16px;
}

.riskpromise {
  max-width: 1180px;
  margin-inline: auto;
}

.risk-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 36px;
}

.risk-item {
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-lg);
  padding: 22px 18px;
  text-align: center;
  box-shadow: var(--sh-sm);
}

.risk-check {
  width: 38px;
  height: 38px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: rgba(18, 161, 80, .12);
  color: var(--green);
  display: grid;
  place-items: center;
  font-size: 19px;
  font-weight: 800;
}

.risk-item p {
  font-size: 15.5px;
  color: var(--text);
  line-height: 1.45;
}

.risk-cta {
  text-align: center;
  margin-top: 34px;
}

/* ══════════════════════ PARTNERSHIPS ══════════════════════ */
.partnershipsection {
  background: var(--tint-100);
  padding: 60px 16px;
}

.partnership-card {
  max-width: 1180px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-md);
  padding: 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
}

.partnership-card .section-title {
  text-align: left;
}

.pc-lead {
  margin: 14px 0 20px;
  font-size: 17px;
  color: var(--muted);
}

.pc-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 10px;
  font-size: 16px;
}

.pc-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--purple-600) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12.5 9.5 18 20 6.5'/%3E%3C/svg%3E") center/11px no-repeat;
}

.pc-box {
  background: linear-gradient(140deg, var(--ink-900), var(--ink-700));
  border-radius: var(--r-lg);
  padding: 30px 26px;
  text-align: center;
}

.pc-box-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 18px;
}

.pc-contact {
  margin-top: 18px;
  font-size: 14px;
  color: rgba(255, 255, 255, .70);
}

.pc-contact a {
  display: block;
  color: #ffd25e;
  font-weight: 600;
  margin-top: 2px;
  word-break: break-all;
}

/* ══════════════════════ FAQ ══════════════════════ */
.faqsection {
  background: var(--tint-50);
  padding: 56px 0 90px;
}

.accordion {
  max-width: 860px;
  margin: 36px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--tint-300);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: box-shadow .18s ease, border-color .18s ease;
}

.accordion-item.is-open {
  border-color: var(--purple-400);
  box-shadow: var(--sh-md);
}

.accordion-button {
  width: 100%;
  text-align: left;
  padding: 17px 52px 17px 20px;
  font-size: 16.5px;
  font-weight: 600;
  color: var(--ink-900);
  position: relative;
}

.accordion-button::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 11px;
  height: 11px;
  border-right: 2.4px solid var(--purple-600);
  border-bottom: 2.4px solid var(--purple-600);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .22s ease;
}

.accordion-item.is-open .accordion-button::after {
  transform: translateY(-30%) rotate(-135deg);
}

.accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .26s ease;
}

.accordion-item.is-open .accordion-panel {
  grid-template-rows: 1fr;
}

.accordion-panel>div {
  overflow: hidden;
}

.accordion-body {
  padding: 0 20px 18px;
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.55;
}

/* ══════════════════════ FOOTER ══════════════════════ */
.site-footer {
  background: var(--ink-900);
  color: rgba(255, 255, 255, .75);
  padding-top: 52px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 32px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 14.5px;
  max-width: 320px;
  line-height: 1.55;
}

.footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .8px;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  font-size: 15px;
  margin-bottom: 9px;
  transition: color .16s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-base {
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0 78px;
  font-size: 14px;
  color: rgba(255, 255, 255, .55);
  text-align: center;
}

/* ══════════════════════ STICKY CTA ══════════════════════ */
.footerbg {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  height: 60px;
  background: var(--purple-400);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 850;
  transform: translateY(100%);
  transition: transform .3s ease;
  box-shadow: 0 -6px 24px rgba(21, 8, 63, .22);
}

.footerbg.visible {
  transform: translateY(0);
}

.footerbg:hover {
  background: var(--purple-500);
}

/* ══════════════════════ GENERATION OVERLAY ══════════════════════ */
.gen-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(21, 8, 63, .72);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 24px;
  animation: fadein .2s ease;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
}

.gen-panel {
  position: relative;
  width: 100%;
  max-width: 1120px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--white);
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
  padding: 36px 32px;
}

.gen-close {
  position: absolute;
  top: 14px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 26px;
  line-height: 1;
  color: var(--muted);
  display: grid;
  place-items: center;
}

.gen-close:hover {
  background: var(--gray-100);
  color: var(--text);
}

.gen-title {
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
  text-align: center;
}

.gen-sub {
  font-size: 15.5px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
}

/* loading */
.gen-loading {
  padding: 20px 0 10px;
}

.gen-spinner {
  width: 54px;
  height: 54px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 4px solid var(--tint-200);
  border-top-color: var(--purple-600);
  animation: spin .85s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.gen-progress {
  max-width: 460px;
  height: 8px;
  margin: 22px auto 0;
  background: var(--tint-200);
  border-radius: var(--r-pill);
  overflow: hidden;
}

.gen-progress-bar {
  height: 100%;
  width: 4%;
  border-radius: var(--r-pill);
  background: linear-gradient(90deg, var(--purple-600), var(--purple-400));
  transition: width .5s ease;
}

.gen-steps {
  max-width: 460px;
  margin: 20px auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gen-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  color: var(--muted);
  opacity: .55;
  transition: opacity .25s ease, color .25s ease;
}

.gen-step.is-active {
  opacity: 1;
  color: var(--purple-700);
  font-weight: 600;
}

.gen-step.is-done {
  opacity: 1;
  color: var(--green);
}

.gen-step-mark {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid currentColor;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 800;
  flex: none;
}

/* results */
.gen-hint {
  max-width: 460px;
  margin: 20px auto 0;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--muted);
  text-align: center;
}

.gen-results-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.gen-results-head .gen-title,
.gen-results-head .gen-sub {
  text-align: left;
}

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

.gen-card {
  border: 1px solid var(--tint-300);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--sh-sm);
  display: flex;
  flex-direction: column;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.gen-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--purple-400);
}

.gen-card-thumb {
  position: relative;
  height: 220px;
  background: var(--gray-100);
  overflow: hidden;
  border-bottom: 1px solid var(--gray-200);
}

.gen-card-thumb iframe {
  width: 1280px;
  height: 900px;
  border: 0;
  transform: scale(.28);
  transform-origin: top left;
  pointer-events: none;
}

.gen-card-thumb.is-pending {
  display: grid;
  place-items: center;
}

/* Live-writing state — the iframe is being streamed into. */
.gen-card.is-streaming {
  border-color: var(--purple-400);
}

.gen-card.is-streaming .gen-card-thumb {
  background: var(--white);
}

.gen-card-writing {
  position: absolute;
  left: 10px;
  bottom: 10px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: rgba(21, 8, 63, .82);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  padding: 5px 11px;
  border-radius: var(--r-pill);
  backdrop-filter: blur(4px);
  pointer-events: none;
}

.gen-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #35d07f;
  animation: pulse 1.1s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .35;
    transform: scale(.7);
  }
}

.gen-card-actions:empty {
  display: none;
}

.gen-thumb-skeleton {
  width: 100%;
  height: 100%;
  background: linear-gradient(100deg, var(--gray-100) 30%, var(--gray-200) 50%, var(--gray-100) 70%);
  background-size: 220% 100%;
  animation: shimmer 1.3s linear infinite;
}

@keyframes shimmer {
  from {
    background-position: 120% 0;
  }

  to {
    background-position: -120% 0;
  }
}

.gen-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.gen-card-style {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink-900);
}

.gen-card-desc {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.4;
  flex: 1;
}

.gen-card-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.gen-card-actions .btn {
  flex: 1;
  padding: 9px 12px;
  font-size: 14px;
}

.gen-card-failed {
  display: grid;
  place-items: center;
  height: 100%;
  font-size: 14px;
  color: var(--red);
  padding: 16px;
  text-align: center;
}

/* ══════════════════════ FULLSCREEN PREVIEW ══════════════════════ */
.preview-overlay {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--ink-900);
  display: flex;
  flex-direction: column;
}

.preview-bar {
  height: 58px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 18px;
  background: rgba(255, 255, 255, .06);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.preview-name {
  color: var(--white);
  font-weight: 700;
  font-size: 16px;
}

.preview-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-size {
  color: rgba(255, 255, 255, .70);
  font-size: 14px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  border: 1px solid rgba(255, 255, 255, .18);
}

.preview-size:hover {
  color: var(--white);
}

.preview-size.is-active {
  background: rgba(255, 255, 255, .16);
  color: var(--white);
}

.preview-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
  display: grid;
  place-items: center;
}

.preview-close:hover {
  background: rgba(255, 255, 255, .14);
}

.preview-stage {
  flex: 1;
  display: grid;
  place-items: start center;
  overflow: auto;
  padding: 16px;
}

#previewFrame {
  width: 100%;
  height: 100%;
  min-height: 100%;
  border: 0;
  background: var(--white);
  border-radius: var(--r-sm);
  box-shadow: var(--sh-lg);
  transition: width .25s ease;
}

/* ══════════════════════ PRICE FOOTNOTE ══════════════════════ */
.price-footnote {
  margin-top: 12px;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
  font-style: italic;
}

.price-table.no-comparison .pt-head,
.price-table.no-comparison .pt-row {
  grid-template-columns: 1fr 170px;
}

/* ══════════════════════ LEGAL PAGES ══════════════════════ */
.legal-hero {
  background: linear-gradient(120deg, var(--ink-900), var(--ink-700) 60%, #4a10a8);
  padding: 54px 0 46px;
  text-align: center;
}

.legal-hero h1 {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.6px;
}

.legal-updated {
  margin-top: 10px;
  font-size: 14.5px;
  color: rgba(255, 255, 255, .72);
}

.legal-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 48px 20px 80px;
}

.legal-body h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 36px 0 12px;
}

.legal-body h2:first-child {
  margin-top: 0;
}

.legal-body p,
.legal-body li {
  font-size: 16.5px;
  line-height: 1.65;
  color: #3d434b;
  margin-bottom: 12px;
}

.legal-body ul {
  padding-left: 0;
  margin-bottom: 18px;
}

.legal-body li {
  position: relative;
  padding-left: 24px;
}

.legal-body li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 11px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple-500);
}

.legal-body a {
  color: var(--purple-700);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-note {
  background: #fff8e6;
  border: 1px solid #f3d68a;
  border-left: 4px solid #e0a800;
  border-radius: var(--r-sm);
  padding: 14px 18px;
  margin-bottom: 30px;
  font-size: 15px;
  color: #6b5200;
}

.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 26px;
  font-size: 15px;
  font-weight: 600;
  color: var(--purple-700);
}

.legal-back:hover {
  text-decoration: underline;
}

/* ══════════════════════ RESPONSIVE ══════════════════════ */
@media (max-width: 1100px) {

  .hiw-grid,
  .risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gen-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testi-track {
    grid-auto-columns: calc((100% - 2 * 18px) / 3);
  }

  .nav-pills {
    display: none;
  }
}

@media (max-width: 900px) {
  .hero-row {
    flex-direction: column;
    gap: 32px;
    padding: 44px 0;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .hero-trust,
  .hero-store-row {
    justify-content: center;
    display: flex;
  }

  .banner-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .banner-reverse .banner-copy,
  .banner-reverse .banner-visual {
    order: initial;
  }

  .adv-grid {
    grid-template-columns: 1fr;
  }

  .partnership-card {
    grid-template-columns: 1fr;
    padding: 30px 24px;
  }

  .partnership-card .section-title {
    text-align: center;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .testi-track {
    grid-auto-columns: calc((100% - 18px) / 2);
  }
}

@media (max-width: 640px) {
  .section-title {
    font-size: 29px;
  }

  .banner-heading {
    font-size: 33px;
  }

  .banner-title {
    font-size: 27px;
  }

  .navbar-brand img {
    height: 30px;
  }

  .nav-price-amt {
    font-size: 21px;
  }

  .hiw-grid,
  .risk-grid,
  .gen-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .testi-track {
    grid-auto-columns: 84%;
  }

  .arrowcss {
    display: none;
  }

  /* Price table collapses to a stacked card list */
  .pt-head {
    display: none;
  }

  .pt-row {
    grid-template-columns: 1fr auto auto;
    gap: 10px;
    padding: 12px 16px;
    font-size: 14.5px;
  }

  .pt-c2 {
    font-size: 13px;
  }

  .pt-group {
    padding: 9px 16px;
  }

  .pt-total {
    font-size: 16px;
  }

  .pt-total .pt-c3 {
    font-size: 16px;
  }

  .gen-panel {
    padding: 28px 18px;
  }

  .gen-results-head {
    flex-direction: column;
  }

  .preview-size {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
}
