/* Page styles for index.html (landing). Shared tokens/reset/base navbar/footer
   live in base.css; this file holds the landing-specific layout, the fixed
   translucent navbar, hero/glow, ticker, stats, product showcase mock, FAQ and
   feature cards. */

/* Uniform vertical rhythm between landing sections. */
:root {
  --sec-y: 84px;
}
@media (max-width: 640px) {
  :root {
    --sec-y: 56px;
  }
}

.nav-shell,
main,
footer {
  position: relative;
  z-index: 1;
}

/* ── Navbar: fixed full-width translucent dark bar (landing pins it). ── */
.nav-shell {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 0;
  display: flex;
  justify-content: center;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.site-nav {
  max-width: var(--page-width);
  width: 100%;
  height: 64px;
  padding: 0 24px;
  border-radius: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}
.site-nav .brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  gap: 9px;
  color: var(--text);
}
.site-nav .brand-orb {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--grad-brand);
  background-size: 200% 200%;
  box-shadow: none;
  animation:
    brand-pulse 1.6s ease-out 0.4s 1 both,
    orb-shift 9s ease-in-out infinite;
}
@keyframes brand-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(99, 102, 241, 0.55);
  }
  100% {
    box-shadow: 0 0 0 12px rgb(99, 102, 241, 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .site-nav .brand-orb {
    animation: none;
  }
}
.site-nav .brand-orb::before {
  display: none;
}
.site-nav .brand-orb::after {
  content: 'P';
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  color: var(--text-on-accent);
  -webkit-text-fill-color: var(--text-on-accent);
  text-shadow: none;
  background: none;
}
.site-links {
  gap: 4px;
  align-items: center;
}
.site-links a {
  color: var(--text-sub);
  font-weight: 400;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.site-links a:hover {
  color: var(--text);
  background: var(--ov-hover);
  border-color: transparent;
}
/* Right-side dark CTA. */
.nav-account {
  margin-left: 6px;
}
.site-links .nav-account-signin {
  color: var(--btn-dark-text);
  background: var(--btn-dark-bg);
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--r-btn);
  border: 1px solid var(--btn-dark-border);
  box-shadow: var(--btn-shadow);
}
.site-links .nav-account-signin:hover {
  color: var(--btn-dark-text);
  background: var(--btn-dark-bg-hover);
  border-color: var(--btn-dark-border-hover);
}

/* ── Hero wrap holds the signature mesh gradient + content + showcase.
   (.hero-wrap / .hero-mesh base styles live in base.css — shared.) ── */
.hero-wrap {
  padding-bottom: 0;
}
.hero {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  padding: 160px 24px 64px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
/* Staggered entrance: each hero element rises in sequence on load. */
.hero > * {
  animation: rise 0.62s cubic-bezier(0.2, 0.75, 0.2, 1) both;
}
.hero > *:nth-child(1) {
  animation-delay: 0.04s;
}
.hero > *:nth-child(2) {
  animation-delay: 0.12s;
}
.hero > *:nth-child(3) {
  animation-delay: 0.2s;
}
.hero > *:nth-child(4) {
  animation-delay: 0.28s;
}
.hero > *:nth-child(5) {
  animation-delay: 0.36s;
}
@media (prefers-reduced-motion: reduce) {
  .hero > * {
    animation: none;
  }
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  color: var(--text-sub);
  font-weight: 500;
  text-decoration: none;
  padding: 5px 13px 5px 5px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--ov-hover);
  backdrop-filter: blur(6px);
  transition:
    border-color 0.16s,
    background 0.16s;
}
.eyebrow:hover {
  border-color: var(--border-hover);
  color: var(--text);
}
.eyebrow-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-on-accent);
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 999px;
}
.eyebrow-arrow {
  width: 14px;
  height: 14px;
  margin-left: -2px;
  color: var(--text-muted);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}
.eyebrow:hover .eyebrow-arrow {
  transform: translateX(3px);
}

.hero h1 {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(38px, 5.6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  color: var(--text);
  max-width: 15ch;
}
.hero h1 .accent {
  background: linear-gradient(105deg, #6366f1 0%, #8b5cf6 52%, #a78bfa 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.hero .sub {
  max-width: 580px;
  color: var(--text-sub);
  font-size: clamp(16px, 2.1vw, 18.5px);
  line-height: 1.6;
}

.cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--r-btn);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.15s,
    border-color 0.15s,
    transform 0.12s,
    box-shadow 0.15s;
}
.btn-arrow {
  width: 16px;
  height: 16px;
  margin-right: -2px;
  will-change: transform;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  position: relative;
  overflow: visible;
  color: var(--btn-green-text);
  background: var(--btn-green-bg);
  background-size: 200% 200%;
  border: 1px solid var(--btn-green-border);
  box-shadow: var(--btn-green-shadow);
  animation: orb-shift 9s ease-in-out infinite;
}
.btn-primary:hover {
  box-shadow: var(--btn-green-shadow-hover);
  transform: translateY(-1px);
}
@media (prefers-reduced-motion: reduce) {
  .btn-primary {
    animation: none;
  }
}
.btn-ghost {
  color: var(--btn-dark-text);
  background: var(--btn-dark-bg);
  border: 1px solid var(--btn-dark-border);
  box-shadow: var(--btn-shadow);
}
.btn-ghost:hover {
  background: var(--btn-dark-bg-hover);
  border-color: var(--btn-dark-border-hover);
}

.trust {
  display: flex;
  gap: 8px 18px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 12px;
  font-size: 13px;
  color: var(--text-muted);
}
.trust span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.trust .tick {
  width: 14px;
  height: 14px;
  color: var(--accent-bright);
  flex: none;
}

/* ── Platform ticker (infinite marquee, clipped to the content column). ── */
.ticker {
  position: relative;
  z-index: 1;
  margin-top: 48px;
  padding: 0;
}
.ticker-cap {
  margin: 38px auto 0;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-muted);
  letter-spacing: 0.01em;
}
.ticker-viewport {
  position: relative;
  width: min(720px, calc(100% - 48px));
  margin: 0 auto;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  animation: tickerscroll 52s linear infinite;
}
.ticker:hover .ticker-track {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: 64px;
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 0.2s;
}
.ticker-item:hover {
  color: var(--text-sub);
}
.ticker-item svg {
  width: 22px;
  height: 22px;
  flex: none;
}
@keyframes tickerscroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .ticker-track {
    animation: none;
  }
}

/* ── Stats band: animated counters ── */
.stats {
  position: relative;
  z-index: 1;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 46px 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  border-bottom: 1px solid var(--guide);
}
.stat {
  text-align: center;
}
.stat-num {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--accent-bright);
  font-variant-numeric: tabular-nums;
}
.stat-label {
  margin-top: 9px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 18px;
    padding: 36px 24px;
  }
}

/* ── Product showcase: copy beside the floating mock ── */
.showcase {
  position: relative;
  z-index: 1;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--sec-y) 24px var(--sec-y);
  background: var(--sec-alt);
  box-shadow: 0 0 0 100vmax var(--sec-alt);
  clip-path: inset(0 -100vmax);
  display: grid;
  grid-template-columns: 1fr 1.04fr;
  gap: 56px;
  align-items: center;
}
.showcase-copy {
  text-align: left;
  animation: rise 0.6s 0.05s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.sc-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 14px;
}
.sc-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.2vw, 38px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
}
.sc-sub {
  margin-top: 14px;
  color: var(--text-sub);
  font-size: 16px;
  line-height: 1.62;
  max-width: 460px;
}
.sc-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  list-style: none;
}
.sc-item {
  display: flex;
  gap: 13px;
  align-items: flex-start;
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 1.5;
}
.sc-item .ic {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: var(--accent-weak);
  border: 1px solid var(--accent-ring);
  color: var(--accent);
  flex: none;
  margin-top: 1px;
}
.sc-item .ic svg {
  width: 13px;
  height: 13px;
}
.sc-item b {
  color: var(--text);
  font-weight: 600;
}
.mock {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
  animation: rise 0.7s 0.1s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.mock-panel {
  border-radius: 18px;
  padding: 20px;
  text-align: left;
  background: linear-gradient(180deg, var(--panel-grad-top), var(--panel-grad-bot));
  border: 1px solid var(--border);
  box-shadow:
    0 1px 0 var(--ov-hover) inset,
    0 50px 100px rgb(0, 0, 0, 0.62),
    0 0 0 1px var(--ov-soft);
}
.mock-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.mock-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--text);
}
.mock-balance {
  font-size: 12.5px;
  color: var(--text-muted);
}
.mock-balance b {
  color: var(--accent-bright);
  font-weight: 600;
  display: inline-block;
}
@keyframes baltick {
  0% {
    transform: translateY(-2px);
    color: #fff;
  }
  100% {
    transform: none;
    color: var(--accent-bright);
  }
}
.mock-balance b.tick {
  animation: baltick 0.5s ease;
}
.mock-pills {
  display: flex;
  gap: 7px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.mp {
  font-size: 12.5px;
  color: var(--text-sub);
  padding: 6px 12px;
  border-radius: 9px;
  border: 1px solid var(--border);
  background: var(--ov-soft);
  cursor: pointer;
  transition:
    color 0.15s,
    background 0.15s,
    border-color 0.15s;
}
.mp:hover {
  color: var(--text);
  border-color: var(--border-hover);
}
.mp.active {
  color: var(--text-on-accent);
  background: var(--accent);
  border-color: transparent;
  font-weight: 600;
}
.mp.active:hover {
  color: var(--text-on-accent);
  background: var(--accent-hover);
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 0;
  border-top: 1px solid var(--border);
}
.mr-title {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
}
.mr-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 3px;
}
.mr-price {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
}
.mr-price span {
  font-size: 11px;
  color: var(--text-muted);
  font-family: var(--font-sans);
  margin-left: 1px;
}
.mock-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 14px 0;
}
.mf {
  display: block;
  border: 1px solid var(--border);
  border-radius: 11px;
  padding: 11px 13px;
  background: var(--ov-soft);
  transition:
    border-color 0.15s,
    box-shadow 0.15s;
}
.mf:focus-within,
.mf.demo-focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-weak);
}
.mf-label {
  display: block;
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 5px;
}
.mf-val {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}
.mf-val.accent {
  color: var(--accent-bright);
}
.mock-qty-input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  caret-color: var(--accent-bright);
  -moz-appearance: textfield;
  appearance: textfield;
}
.mock-qty-input::-webkit-outer-spin-button,
.mock-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.mock-cta {
  width: 100%;
  padding: 12px;
  border-radius: var(--r-btn);
  cursor: pointer;
  color: var(--btn-green-text);
  background: var(--btn-green-bg);
  border: 1px solid var(--btn-green-border);
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 14.5px;
  box-shadow: var(--btn-shadow);
  transition:
    background 0.15s,
    color 0.15s,
    border-color 0.15s;
}
.mock-cta:hover:not(:disabled, .done) {
  background: var(--btn-green-bg-hover);
}
.mock-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.mock-cta.done {
  background: var(--accent-weak);
  color: var(--accent-bright);
  border-color: var(--accent-ring);
  box-shadow: none;
  cursor: default;
}

.mock-float {
  position: absolute;
  bottom: -20px;
  right: -16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border-radius: 13px;
  background: rgb(22, 24, 28, 0.97);
  border: 1px solid var(--ov-strong);
  box-shadow: 0 26px 56px rgb(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  animation: rise 0.7s 0.35s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.mock-float .ok {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-weak);
  border: 1px solid var(--accent-ring);
  color: var(--accent-bright);
  flex: none;
}
.mock-float .ok svg {
  width: 15px;
  height: 15px;
}
.mock-float .ft-wrap {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.mock-float .ft {
  font-size: 13px;
  color: var(--text);
  font-weight: 600;
}
.mock-float .fs {
  font-size: 11.5px;
  color: var(--text-muted);
  margin-top: 2px;
}
/* Light: the float has a hardcoded dark glass bg (fine on dark); flip it to a
   white card with a soft shadow so its text (var(--text)) stays readable. */
:root[data-theme='light'] .mock-float {
  background: rgb(255, 255, 255, 0.97);
  box-shadow: 0 20px 44px rgb(15, 23, 42, 0.14);
}

/* ── FAQ ── */
.faq {
  position: relative;
  z-index: 1;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--sec-y) 24px var(--sec-y);
  background: var(--sec-alt);
  box-shadow: 0 0 0 100vmax var(--sec-alt);
  clip-path: inset(0 -100vmax);
}
.faq-inner {
  max-width: var(--page-width);
  margin: 0 auto;
}
.faq-head {
  text-align: center;
  margin-bottom: 38px;
}
.faq-eyebrow {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.faq-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 34px);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--text);
  margin-top: 12px;
}
.faq-sub {
  margin-top: 11px;
  color: var(--text-muted);
  font-size: 14.5px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  transition:
    border-color 0.15s ease,
    background 0.15s ease;
}
.faq-item:hover {
  border-color: var(--border-hover);
}
.faq-item[open] {
  border-color: var(--accent-ring);
  background: var(--surface-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 20px;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--text);
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary:focus-visible {
  color: var(--accent-bright);
}
.faq-chev {
  width: 18px;
  height: 18px;
  flex: none;
  color: var(--text-muted);
  transition:
    transform 0.25s ease,
    color 0.2s ease;
}
.faq-item[open] .faq-chev {
  transform: rotate(180deg);
  color: var(--accent-bright);
}
.faq-a {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-sub);
  animation: faq-in 0.22s ease both;
}
.faq-a a {
  color: var(--accent-bright);
  font-weight: 500;
}
.faq-a a:hover {
  text-decoration: underline;
}
@keyframes faq-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 580px) {
  .faq {
    padding: 24px 20px 12px;
  }
  .faq-head {
    margin-bottom: 28px;
  }
}

/* ── Feature cards ── */
.cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 48px 24px 100px;
}
.card-link {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 30px;
  border-radius: var(--r-card);
  border: 1px solid var(--border);
  background: var(--surface);
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}
.card-link::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: radial-gradient(
    460px circle at var(--mx, 50%) var(--my, 0%),
    rgb(26, 168, 107, 0.16),
    transparent 55%
  );
  transition: opacity 0.25s ease;
}
.card-link:hover::before {
  opacity: 1;
}
.card-link:hover {
  transform: translateY(-4px);
  border-color: var(--accent-ring);
  background: var(--surface-2);
  box-shadow:
    0 24px 60px rgb(0, 0, 0, 0.45),
    0 0 0 1px rgb(26, 168, 107, 0.16);
}
.card-link > * {
  position: relative;
  z-index: 1;
}
.card-ico {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--accent-bright);
  background: linear-gradient(180deg, rgb(26, 168, 107, 0.22), rgb(26, 168, 107, 0.07));
  border: 1px solid var(--accent-ring);
  box-shadow: 0 0 0 5px rgb(26, 168, 107, 0.05);
  transition: transform 0.2s ease;
}
.card-link:hover .card-ico {
  transform: scale(1.06);
}
.card-ico svg {
  width: 22px;
  height: 22px;
}
.card-link h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--text);
}
.card-link p {
  color: var(--text-sub);
  font-size: 14.5px;
  line-height: 1.6;
}
.card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.card-meta span {
  font-size: 12px;
  color: var(--text-sub);
  padding: 4px 11px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--ov-soft);
}
.card-go {
  margin-top: 4px;
  color: var(--accent-bright);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-go svg {
  width: 15px;
  height: 15px;
  transition: transform 0.18s ease;
}
.card-link:hover .card-go svg {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .hero {
    padding: 156px 20px 68px;
  }
  .guides::before {
    left: 16px;
  }
  .guides::after {
    right: 16px;
  }
  .mock-float {
    display: none;
  }
  .cards {
    grid-template-columns: 1fr;
    padding-top: 28px;
  }
  .ticker-item {
    font-size: 15px;
    margin-right: 44px;
  }
  .showcase {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 44px 28px 20px;
  }
  .mock {
    justify-self: center;
    max-width: 520px;
  }
  .sc-title {
    font-size: 28px;
  }
}

/* ════════════════════════════════════════════════════════════
   TRUST BAND — "Why people choose Purina" (factual reassurance).
   ════════════════════════════════════════════════════════════ */
.trust-band {
  position: relative;
  z-index: 1;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--sec-y) 24px var(--sec-y);
  text-align: center;
}
.trust-band-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 8px 0 36px;
  color: var(--text);
}
.trust-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: left;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
}
.trust-ic {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--accent-weak);
  color: var(--accent);
  margin-bottom: 14px;
}
.trust-ic svg {
  width: 21px;
  height: 21px;
}
.trust-card h3 {
  font-size: 16px;
  font-weight: 650;
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  color: var(--text);
}
.trust-card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--text-sub);
  margin: 0;
}
@media (max-width: 880px) {
  .trust-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .trust-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Reviews (real testimonials only — markup commented in index.html
      until provided). ── */
.reviews {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--sec-y) 24px var(--sec-y);
  text-align: center;
}
.reviews-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 8px 0 32px;
  color: var(--text);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  text-align: left;
}
.review {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  margin: 0;
}
.review-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 15px;
  margin-bottom: 10px;
}
.review blockquote {
  font-size: 15px;
  line-height: 1.55;
  color: var(--text);
  margin: 0 0 14px;
}
.review figcaption {
  font-size: 13.5px;
  color: var(--text-muted);
}
@media (max-width: 820px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

.reviews-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-sub);
  margin-top: -18px;
  margin-bottom: 4px;
}
.reviews-rating .review-stars {
  margin: 0;
  font-size: 16px;
}
.review figcaption span {
  color: var(--accent);
  font-weight: 600;
}

/* ── About block (mission + human support) ── */
.about {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 8px;
  text-align: center;
}
.about-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 38px);
  letter-spacing: -0.02em;
  margin: 8px 0 18px;
  color: var(--text);
}
.about-text {
  font-size: 16px;
  line-height: 1.65;
  color: var(--text-sub);
  margin: 0 auto 14px;
  max-width: 620px;
}
.about-text a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.about-text a:hover {
  text-decoration: underline;
}

/* ── Final conclusion CTA ── */
.final-cta {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: var(--sec-y) 24px calc(var(--sec-y) + 16px);
}
.final-cta-inner {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-card);
  box-shadow: var(--shadow-card);
  padding: 56px 32px;
}
.final-cta-title {
  font-family: var(--font-hero);
  font-weight: 600;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: -0.03em;
  color: var(--text);
  margin: 0 0 14px;
}
.final-cta-sub {
  max-width: 560px;
  margin: 0 auto 26px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-sub);
}
.final-cta-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}
.final-cta .trust {
  margin-top: 24px;
}
