:root {
  --ink: #102a35;
  --navy: #0b2b3c;
  --navy-soft: #163f4e;
  --teal: #19766f;
  --teal-deep: #0d5d59;
  --mint: #bfeee7;
  --mint-soft: #e9f8f4;
  --gold: #dfa748;
  --gold-soft: #f7e4bb;
  --cream: #fbf7ef;
  --paper: #fffdf9;
  --white: #ffffff;
  --muted: #5d6d72;
  --line: #d9e4e1;
  --shadow: 0 24px 70px rgba(11, 43, 60, 0.13);
  --shadow-soft: 0 14px 35px rgba(11, 43, 60, 0.09);
  --radius-large: 38px;
  --radius-medium: 24px;
  --radius-small: 15px;
  --shell: min(1180px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.announcement {
  position: relative;
  z-index: 20;
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.01em;
}

.announcement-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.announcement a {
  color: var(--gold-soft);
  font-weight: 700;
  text-decoration: none;
}

.announcement a:hover {
  text-decoration: underline;
}

.pulse-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 8px;
  background: #7ce1c5;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(124, 225, 197, 0.13);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 15;
  background: rgba(255, 253, 249, 0.93);
  border-bottom: 1px solid rgba(16, 42, 53, 0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.03em;
}

.brand img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  background: var(--white);
  border-radius: 14px;
}

.brand strong {
  color: var(--teal);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.site-nav > a:not(.button) {
  position: relative;
  color: var(--navy-soft);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 23px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before,
.menu-lines::after {
  content: "";
  position: absolute;
  left: 0;
}

.menu-lines::before { top: -7px; }
.menu-lines::after { top: 7px; }

.menu-button[aria-expanded="true"] .menu-lines {
  background: transparent;
}

.menu-button[aria-expanded="true"] .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-button[aria-expanded="true"] .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  padding: 0 24px;
  color: var(--white);
  background: var(--teal-deep);
  border: 1px solid var(--teal-deep);
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(13, 93, 89, 0.18);
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover {
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: 0 14px 30px rgba(11, 43, 60, 0.2);
  transform: translateY(-2px);
}

.button-small {
  min-height: 44px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.button-light {
  color: var(--navy);
  background: var(--white);
  border-color: var(--white);
  box-shadow: none;
}

.button-light:hover {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.button-gold {
  color: var(--navy);
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: none;
}

.button-gold:hover {
  color: var(--navy);
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 86px 0 102px;
  background: var(--cream);
}

.hero::before {
  content: "";
  position: absolute;
  right: -8%;
  bottom: -280px;
  width: 690px;
  height: 690px;
  background: var(--mint-soft);
  border-radius: 50%;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  opacity: 0.65;
}

.hero-glow-one {
  top: 80px;
  left: -110px;
  width: 220px;
  height: 220px;
  border: 48px solid var(--gold-soft);
}

.hero-glow-two {
  right: 36%;
  bottom: 22px;
  width: 40px;
  height: 40px;
  background: var(--gold);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: center;
  gap: clamp(54px, 7vw, 105px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--teal-deep);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: #94e1d3;
}

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

h1,
h2 {
  color: var(--navy);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1 {
  max-width: 640px;
  margin-bottom: 28px;
  font-size: clamp(3.65rem, 6.5vw, 6.6rem);
  font-weight: 700;
}

h1 em,
h2 em {
  color: var(--teal);
  font-family: "Newsreader", Georgia, serif;
  font-weight: 500;
}

.hero-lede {
  max-width: 590px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.text-link {
  color: var(--navy);
  font-weight: 700;
  text-underline-offset: 5px;
  text-decoration-color: var(--gold);
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin-top: 38px;
  color: var(--navy-soft);
  font-size: 0.82rem;
  font-weight: 600;
}

.trust-row span:not(:last-child)::after {
  content: "•";
  margin-left: 22px;
  color: var(--gold);
}

.hero-visual {
  position: relative;
  min-width: 0;
}

.hero-photo-frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 4.25;
  background: var(--mint);
  border: 12px solid var(--white);
  border-radius: 52% 48% 44% 56% / 38% 48% 52% 62%;
  box-shadow: var(--shadow);
}

.hero-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.photo-wash {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.65);
  border-radius: inherit;
  box-shadow: inset 0 -80px 100px rgba(11,43,60,0.12);
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 260px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.96);
  border: 1px solid rgba(255,255,255,0.85);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.floating-card-top {
  top: 8%;
  left: -7%;
}

.floating-card-bottom {
  right: -5%;
  bottom: 8%;
}

.floating-card img {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
}

.floating-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border-radius: 50%;
  font-weight: 700;
}

.floating-card strong,
.floating-card small {
  display: block;
  line-height: 1.3;
}

.floating-card strong {
  color: var(--navy);
  font-size: 0.83rem;
}

.floating-card small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.7rem;
}

.paw-pattern {
  position: absolute;
  right: -43px;
  top: 1%;
  z-index: -1;
  color: var(--gold-soft);
  font-size: 1.8rem;
  line-height: 0.75;
  letter-spacing: 0.18em;
  transform: rotate(24deg);
}

.purpose-strip {
  color: var(--white);
  background: var(--teal-deep);
}

.purpose-grid {
  min-height: 154px;
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  align-items: center;
  gap: 70px;
}

.purpose-grid > p {
  margin: 0;
  color: #aee6db;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.purpose-grid blockquote {
  margin: 0;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}

.section {
  padding: 118px 0;
}

.section-heading {
  max-width: 770px;
  margin: 0 auto 58px;
}

.centered {
  text-align: center;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  font-weight: 700;
}

.section-heading > p:last-child,
.features-intro > p,
.faq-heading > p,
.mission-copy > p {
  color: var(--muted);
}

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

.step-card {
  position: relative;
  min-height: 330px;
  padding: 34px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
}

.step-card.featured {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(24px);
}

.step-number {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.featured .step-number {
  color: #96dfd2;
}

.step-symbol {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 46px 0 24px;
  place-items: center;
  color: var(--teal-deep);
  background: var(--mint-soft);
  border-radius: 18px;
  font-size: 1.75rem;
  font-weight: 600;
}

.featured .step-symbol {
  color: var(--navy);
  background: var(--gold);
}

.step-card h3,
.feature-item h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.featured h3 {
  color: var(--white);
}

.step-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.featured p {
  color: #c7d7dc;
}

.features-section {
  background: var(--mint-soft);
}

.features-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(60px, 8vw, 120px);
}

.features-intro {
  position: sticky;
  top: 126px;
  align-self: start;
}

.features-intro h2 {
  font-size: clamp(2.65rem, 4.3vw, 4.5rem);
}

.cat-card {
  position: relative;
  overflow: hidden;
  width: 84%;
  margin-top: 44px;
  aspect-ratio: 4 / 3.6;
  border: 8px solid var(--white);
  border-radius: 48% 52% 18px 18px;
  box-shadow: var(--shadow-soft);
}

.cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 43%;
}

.cat-card span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(11,43,60,0.88);
  border-radius: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.feature-list {
  border-top: 1px solid rgba(16,42,53,0.15);
}

.feature-item {
  padding: 40px 0 42px;
  border-bottom: 1px solid rgba(16,42,53,0.15);
}

.feature-kicker {
  color: var(--teal-deep);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.feature-item h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.35rem, 2.3vw, 2rem);
}

.feature-item p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
}

.security-section {
  background: var(--paper);
}

.security-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 70px;
  padding: clamp(46px, 7vw, 84px);
  color: var(--white);
  background: var(--navy);
  border-radius: var(--radius-large);
  box-shadow: var(--shadow);
}

.security-card::after {
  content: "";
  position: absolute;
  right: -140px;
  bottom: -150px;
  width: 390px;
  height: 390px;
  border: 70px solid rgba(191, 238, 231, 0.08);
  border-radius: 50%;
}

.security-copy,
.security-stack {
  position: relative;
  z-index: 1;
}

.security-copy h2 {
  color: var(--white);
  font-size: clamp(2.7rem, 4.6vw, 4.6rem);
}

.security-copy > p:not(.eyebrow) {
  margin-bottom: 32px;
  color: #c8d8dc;
}

.security-stack {
  display: grid;
  align-content: center;
  gap: 12px;
}

.security-pill {
  padding: 18px 20px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 16px;
}

.security-pill strong,
.security-pill span {
  display: block;
}

.security-pill strong {
  color: var(--white);
  font-size: 0.96rem;
}

.security-pill span {
  margin-top: 3px;
  color: #b9cdd2;
  font-size: 0.8rem;
}

.mission-section {
  background: var(--cream);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.mission-photo {
  position: relative;
}

.mission-photo img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
  object-position: 64% center;
  border-radius: 34px 34px 150px 34px;
  box-shadow: var(--shadow);
}

.mission-stamp {
  position: absolute;
  right: -42px;
  bottom: 28px;
  display: grid;
  width: 150px;
  height: 150px;
  place-content: center;
  color: var(--navy);
  background: var(--gold);
  border: 8px solid var(--cream);
  border-radius: 50%;
  text-align: center;
  transform: rotate(-8deg);
}

.mission-stamp span,
.mission-stamp strong {
  display: block;
  line-height: 1.15;
}

.mission-stamp span {
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-stamp strong {
  margin-top: 5px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.5rem;
}

.mission-copy h2 {
  font-size: clamp(2.8rem, 4.8vw, 5rem);
}

.mission-note {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  margin-top: 32px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}

.mission-note strong {
  color: var(--teal-deep);
}

.mission-note span {
  color: var(--navy-soft);
}

.faq-section {
  background: var(--white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(55px, 8vw, 120px);
}

.faq-heading h2 {
  font-size: clamp(2.8rem, 4vw, 4.2rem);
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 25px 42px 25px 0;
  color: var(--navy);
  font-size: 1.06rem;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  top: 20px;
  right: 0;
  color: var(--teal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list details p {
  max-width: 650px;
  padding: 0 30px 24px 0;
  color: var(--muted);
}

.final-cta {
  padding: 100px 0;
  color: var(--white);
  background: var(--teal-deep);
  text-align: center;
}

.final-cta-inner {
  max-width: 820px;
}

.final-cta img {
  width: 84px;
  height: 84px;
  margin: 0 auto 24px;
  background: var(--white);
  border: 5px solid rgba(255,255,255,0.2);
  border-radius: 24px;
}

.final-cta h2 {
  color: var(--white);
}

.final-cta p:not(.eyebrow) {
  max-width: 650px;
  margin: 0 auto 28px;
  color: #d6e9e6;
}

.site-footer {
  padding: 72px 0 26px;
  color: #bed0d5;
  background: #071f2b;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  padding-bottom: 52px;
}

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

.brand-light strong {
  color: #8ed9cc;
}

.footer-brand p {
  max-width: 410px;
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.footer-links div {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-links strong {
  margin-bottom: 6px;
  color: var(--white);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a {
  color: #bed0d5;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.76rem;
}

/* Interior pages */
.inner-page {
  min-height: 100vh;
  background: var(--cream);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 74px;
  color: var(--white);
  background: var(--navy);
}

.inner-hero::after {
  content: "";
  position: absolute;
  right: -95px;
  bottom: -130px;
  width: 330px;
  height: 330px;
  border: 66px solid rgba(223,167,72,0.13);
  border-radius: 50%;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}

.inner-hero h1 {
  max-width: none;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(3rem, 6vw, 5.8rem);
}

.inner-hero p:not(.eyebrow) {
  max-width: 680px;
  margin-bottom: 0;
  color: #cbdadd;
  font-size: 1.1rem;
}

.inner-content {
  padding: 80px 0 110px;
}

.content-card {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(30px, 6vw, 70px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.content-card h2 {
  margin-top: 48px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.content-card h2:first-child {
  margin-top: 0;
}

.content-card h3 {
  margin-top: 34px;
  margin-bottom: 8px;
  color: var(--navy);
}

.content-card p,
.content-card li {
  color: var(--muted);
}

.content-card a:not(.button) {
  color: var(--teal-deep);
  font-weight: 700;
  text-underline-offset: 3px;
}

.content-card li + li {
  margin-top: 8px;
}

.content-card .updated {
  margin-bottom: 38px;
  color: var(--teal-deep);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 34px 0 42px;
}

.support-option {
  padding: 28px;
  background: var(--mint-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
}

.support-option strong,
.support-option span {
  display: block;
}

.support-option strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.support-option span {
  color: var(--muted);
  font-size: 0.9rem;
}

.status-panel {
  max-width: 680px;
  margin: 0 auto;
  padding: clamp(34px, 7vw, 72px);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.status-mark {
  display: grid;
  width: 82px;
  height: 82px;
  margin: 0 auto 28px;
  place-items: center;
  color: var(--white);
  background: var(--teal);
  border: 8px solid var(--mint-soft);
  border-radius: 50%;
  font-size: 2rem;
  font-weight: 700;
}

.status-panel h1 {
  margin-bottom: 20px;
  font-size: clamp(2.45rem, 5vw, 4rem);
}

.status-panel > p {
  color: var(--muted);
}

.status-panel .button {
  margin-top: 16px;
}

.reset-form {
  display: grid;
  gap: 18px;
  margin-top: 30px;
  text-align: left;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 700;
}

.field input {
  width: 100%;
  min-height: 54px;
  padding: 12px 15px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid #b9cbc7;
  border-radius: 12px;
}

.field-hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.75rem;
}

.form-status {
  padding: 12px 14px;
  color: var(--navy-soft);
  background: var(--mint-soft);
  border-radius: 10px;
  font-size: 0.86rem;
}

.form-status.error {
  color: #7e2828;
  background: #fff0ec;
}

.form-status.success {
  color: #0b5a47;
  background: #e7f8ef;
}

.credit-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.credit-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  gap: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.credit-item img {
  width: 150px;
  height: 110px;
  object-fit: cover;
  border-radius: 10px;
}

.credit-item strong,
.credit-item span {
  display: block;
}

.credit-item span {
  color: var(--muted);
  font-size: 0.86rem;
}

.credit-item a {
  display: inline-block;
  margin-top: 6px;
  font-size: 0.84rem;
}

.not-found {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 40px 20px;
  background: var(--cream);
}

.not-found .status-panel img {
  width: 94px;
  height: 94px;
  margin: 0 auto 20px;
  border-radius: 24px;
}

@media (prefers-reduced-motion: no-preference) {
  .motion-ready .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 650ms ease, transform 650ms ease;
  }

  .motion-ready .reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }

  .motion-ready .reveal-delay {
    transition-delay: 100ms;
  }

  .motion-ready .reveal-delay-more {
    transition-delay: 190ms;
  }
}

@media (max-width: 1000px) {
  .site-nav {
    gap: 18px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.84rem;
  }

  .hero {
    padding-top: 70px;
  }

  .hero-grid,
  .mission-grid {
    gap: 50px;
  }

  .hero-grid {
    grid-template-columns: 1fr 0.92fr;
  }

  .floating-card-bottom {
    right: -2%;
  }

  .security-card {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
  }

  .announcement-inner {
    justify-content: center;
  }

  .announcement a {
    display: none;
  }

  .menu-button {
    display: flex;
  }

  .site-nav {
    position: fixed;
    top: 120px;
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    padding: 24px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 20px;
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: grid;
    gap: 8px;
  }

  .site-nav > a:not(.button) {
    padding: 10px 4px;
    font-size: 1rem;
  }

  .hero-grid,
  .features-layout,
  .security-card,
  .mission-grid,
  .faq-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-lede {
    margin-inline: auto;
  }

  .hero-actions,
  .trust-row {
    justify-content: center;
  }

  .hero-visual {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .purpose-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 32px;
    text-align: center;
  }

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

  .step-card,
  .step-card.featured {
    min-height: 0;
    transform: none;
  }

  .step-symbol {
    margin-top: 30px;
  }

  .features-intro {
    position: static;
  }

  .cat-card {
    width: min(100%, 480px);
  }

  .security-card {
    gap: 46px;
  }

  .mission-photo {
    width: calc(100% - 24px);
  }

  .mission-stamp {
    right: -24px;
  }

  .footer-links {
    max-width: 560px;
  }
}

@media (max-width: 560px) {
  body {
    font-size: 16px;
  }

  .announcement-inner {
    min-height: 42px;
  }

  .header-inner {
    min-height: 72px;
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .menu-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .site-nav {
    top: 124px;
  }

  .hero {
    padding: 58px 0 80px;
  }

  h1 {
    font-size: clamp(3.2rem, 16vw, 4.6rem);
  }

  .hero-actions {
    display: grid;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    display: grid;
    gap: 5px;
  }

  .trust-row span:not(:last-child)::after {
    display: none;
  }

  .hero-photo-frame {
    border-width: 7px;
  }

  .floating-card {
    max-width: 235px;
    padding: 11px 12px;
  }

  .floating-card-top {
    left: -2%;
  }

  .floating-card-bottom {
    right: -2%;
    bottom: 4%;
  }

  .section {
    padding: 82px 0;
  }

  h2 {
    font-size: clamp(2.55rem, 13vw, 3.7rem);
  }

  .step-card {
    padding: 26px;
  }

  .security-card {
    padding: 34px 24px;
    border-radius: 26px;
  }

  .mission-photo img {
    border-radius: 24px 24px 100px 24px;
  }

  .mission-stamp {
    width: 118px;
    height: 118px;
    border-width: 6px;
  }

  .mission-stamp strong {
    font-size: 1.2rem;
  }

  .mission-note {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .final-cta {
    padding: 82px 0;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
    row-gap: 38px;
  }

  .footer-bottom {
    display: grid;
  }

  .support-grid,
  .credit-item {
    grid-template-columns: 1fr;
  }

  .credit-item img {
    width: 100%;
    height: 180px;
  }
}

/* Search-focused product and audience pages */
.detail-page {
  background: var(--paper);
}

.detail-hero {
  position: relative;
  overflow: hidden;
  padding: 54px 0 94px;
  color: var(--white);
  background: var(--navy);
}

.detail-hero::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -250px;
  width: 520px;
  height: 520px;
  border: 95px solid rgba(191, 238, 231, 0.07);
  border-radius: 50%;
}

.audience-detail-hero::before,
.inventory-hero::before,
.resource-hero::before {
  content: "";
  position: absolute;
  top: 70px;
  right: 17%;
  width: 46px;
  height: 46px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.8;
}

.breadcrumb {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 56px;
  color: #a8c1c6;
  font-size: 0.78rem;
}

.breadcrumb a {
  color: #d5e6e5;
  text-underline-offset: 3px;
}

.detail-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  align-items: end;
  gap: clamp(50px, 8vw, 110px);
}

.detail-hero h1 {
  max-width: 850px;
  margin-bottom: 28px;
  color: var(--white);
  font-size: clamp(3.35rem, 6vw, 6.4rem);
}

.detail-hero-grid > div:first-child > p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: #c7d9dc;
  font-size: 1.08rem;
}

.detail-hero-card {
  display: grid;
  gap: 9px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
}

.detail-hero-card strong {
  margin-bottom: 8px;
  color: var(--gold-soft);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.45rem;
}

.detail-hero-card span {
  position: relative;
  padding-left: 20px;
  color: #d0e0e2;
  font-size: 0.85rem;
}

.detail-hero-card span::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #8bdccd;
  font-weight: 700;
}

.detail-content {
  padding: 90px 0 120px;
}

.detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  align-items: start;
  gap: clamp(45px, 7vw, 90px);
}

.detail-main {
  min-width: 0;
}

.detail-section + .detail-section {
  margin-top: 78px;
}

.detail-section > h2,
.inline-cta h2 {
  margin-bottom: 24px;
  font-size: clamp(2.35rem, 4.3vw, 4.35rem);
}

.detail-section > p:not(.eyebrow),
.detail-section li,
.inline-cta p,
.sidebar-card p {
  color: var(--muted);
}

.detail-section > p:not(.eyebrow) {
  max-width: 790px;
}

.detail-section > p + p {
  margin-top: 18px;
}

.prose-lede {
  color: var(--navy) !important;
  font-family: "Newsreader", Georgia, serif;
  font-size: clamp(1.6rem, 2.7vw, 2.25rem);
  line-height: 1.36;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.mini-card {
  min-height: 210px;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

.mini-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.25;
}

.mini-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.mission-callout {
  position: relative;
  overflow: hidden;
  padding: clamp(36px, 6vw, 64px);
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 28px 28px 90px 28px;
  box-shadow: var(--shadow);
}

.mission-callout::after {
  content: "";
  position: absolute;
  right: -55px;
  bottom: -70px;
  width: 190px;
  height: 190px;
  border: 38px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.mission-callout h2 {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.mission-callout > p:not(.eyebrow) {
  position: relative;
  z-index: 1;
  color: #d2e7e3 !important;
}

.inline-cta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 35px;
  margin-top: 82px;
  padding: 34px;
  background: var(--mint-soft);
  border: 1px solid var(--line);
  border-radius: 20px;
}

.inline-cta h2 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.inline-cta p {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.inline-cta .button {
  white-space: nowrap;
}

.detail-sidebar {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
}

.sidebar-card {
  display: grid;
  gap: 8px;
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 17px;
  box-shadow: var(--shadow-soft);
}

.sidebar-card > strong {
  margin-bottom: 8px;
  color: var(--navy);
}

.sidebar-card a {
  padding: 8px 9px;
  color: var(--teal-deep);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
}

.sidebar-card a:hover,
.sidebar-card a[aria-current="page"] {
  background: var(--mint-soft);
}

.sidebar-card p {
  margin-bottom: 8px;
  font-size: 0.82rem;
}

.sidebar-mission {
  background: var(--cream);
}

.status-chip {
  display: inline-block;
  width: fit-content;
  margin-bottom: 10px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--gold-soft);
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.workflow-list {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: workflow;
}

.workflow-list li {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 26px;
  padding: 28px 0 28px 68px;
  border-bottom: 1px solid var(--line);
  counter-increment: workflow;
}

.workflow-list li:first-child {
  border-top: 1px solid var(--line);
}

.workflow-list li::before {
  content: counter(workflow, decimal-leading-zero);
  position: absolute;
  top: 27px;
  left: 8px;
  color: var(--teal);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.35rem;
}

.workflow-list strong {
  color: var(--navy);
}

.workflow-list span {
  color: var(--muted);
}

.article-main .detail-section {
  scroll-margin-top: 120px;
}

.article-sidebar .sidebar-card:first-child {
  gap: 2px;
}

@media (max-width: 900px) {
  .detail-hero-grid,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .detail-hero-grid {
    align-items: start;
  }

  .detail-hero-card {
    max-width: 620px;
  }

  .detail-sidebar {
    position: static;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 620px) {
  .detail-hero {
    padding: 35px 0 68px;
  }

  .breadcrumb {
    margin-bottom: 38px;
  }

  .detail-hero h1 {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .detail-content {
    padding: 70px 0 88px;
  }

  .detail-grid,
  .detail-sidebar,
  .inline-cta {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: 0;
  }

  .detail-section + .detail-section {
    margin-top: 62px;
  }

  .mission-callout {
    padding: 32px 24px 56px;
    border-radius: 22px 22px 66px 22px;
  }

  .workflow-list li {
    grid-template-columns: 1fr;
    gap: 7px;
    padding-left: 56px;
  }

  .inline-cta .button {
    width: 100%;
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Product-story homepage */
.product-hero {
  padding-block: 92px 112px;
}

.product-hero-grid {
  grid-template-columns: 0.88fr 1.12fr;
  gap: clamp(44px, 5vw, 82px);
}

.product-hero h1 {
  max-width: 700px;
  font-size: clamp(3.25rem, 5.7vw, 5.8rem);
}

.hero-mission-line {
  max-width: 590px;
  margin: -12px 0 30px;
  color: var(--teal-deep);
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.16rem;
  line-height: 1.45;
}

.trust-row span:not(:last-child)::after {
  content: "•";
}

.product-window-wrap {
  padding-block: 34px;
}

.product-window {
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(16, 42, 53, 0.14);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.product-window-bar {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 0 15px;
  color: #d8e7e5;
  background: var(--navy);
}

.product-window-bar strong {
  position: absolute;
  left: 50%;
  color: #d8e7e5;
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  transform: translateX(-50%);
}

.window-dot {
  width: 8px;
  height: 8px;
  background: rgba(255, 255, 255, 0.33);
  border-radius: 50%;
}

.window-dot:first-child {
  background: var(--gold);
}

.hero-product-window {
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
}

.hero-product-window img,
.compact-product-window img {
  width: 100%;
  height: auto;
}

.product-badge {
  z-index: 2;
}

.product-badge.floating-card-top {
  top: 1%;
  left: -4%;
}

.product-badge.floating-card-bottom {
  right: -3%;
  bottom: 0;
}

.product-tour-section {
  background: var(--white);
}

.product-tour-section .section-heading > p:last-child {
  max-width: 760px;
  margin-inline: auto;
}

.product-tour-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.product-feature-card {
  position: relative;
  min-height: 290px;
  display: flex;
  flex-direction: column;
  padding: 34px;
  color: inherit;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-feature-card:nth-child(2),
.product-feature-card:nth-child(3) {
  background: var(--mint-soft);
}

.product-feature-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
  transform: translateY(-5px);
}

.feature-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 28px;
  place-items: center;
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 15px;
  font-family: "Newsreader", Georgia, serif;
  font-size: 1.1rem;
}

.product-feature-card h3 {
  margin-bottom: 12px;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.035em;
}

.product-feature-card p {
  margin-bottom: 28px;
  color: var(--muted);
}

.product-feature-card > strong {
  margin-top: auto;
  color: var(--teal-deep);
  font-size: 0.86rem;
}

.software-showcase {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: clamp(42px, 6vw, 78px);
  margin-top: 78px;
  padding: clamp(34px, 6vw, 68px);
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
}

.software-showcase-copy h3 {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  letter-spacing: -0.05em;
  line-height: 1.03;
}

.software-showcase-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.check-list {
  padding: 0;
  margin: 25px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--navy-soft);
  font-size: 0.9rem;
}

.check-list li + li {
  margin-top: 10px;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 700;
}

.compact-product-window {
  border-radius: 18px;
  box-shadow: 0 18px 46px rgba(11, 43, 60, 0.17);
}

.how-section {
  background: var(--mint-soft);
}

.audience-section {
  background: var(--navy);
}

.audience-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 52px;
}

.audience-heading h2 {
  max-width: 760px;
  margin-bottom: 0;
  color: var(--white);
  font-size: clamp(2.8rem, 4.6vw, 4.7rem);
}

.audience-heading > p {
  margin-bottom: 10px;
  color: #c5d6da;
}

.audience-section .eyebrow {
  color: #92ddd0;
}

.audience-section h2 em {
  color: var(--gold);
}

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

.audience-card {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  text-decoration: none;
}

a.audience-card {
  transition: background 180ms ease, transform 180ms ease;
}

a.audience-card:hover {
  background: rgba(255, 255, 255, 0.13);
  transform: translateY(-4px);
}

.audience-card strong,
.audience-card span {
  display: block;
}

.audience-card strong {
  font-size: 1.15rem;
}

.audience-card span {
  margin-top: 5px;
  color: #abc3c8;
  font-size: 0.8rem;
}

.comparison-section {
  background: var(--white);
}

.comparison-table-wrap {
  overflow-x: auto;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.comparison-table th,
.comparison-table td {
  padding: 22px 25px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.comparison-table thead th {
  color: var(--white);
  background: var(--navy);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.comparison-table thead th:last-child {
  background: var(--teal-deep);
}

.comparison-table tbody th {
  width: 23%;
  color: var(--navy);
  font-size: 0.92rem;
}

.comparison-table td {
  color: var(--muted);
  font-size: 0.88rem;
}

.comparison-table td:last-child {
  color: var(--teal-deep);
  background: rgba(191, 238, 231, 0.22);
}

.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td {
  border-bottom: 0;
}

.roadmap-section {
  background: var(--mint-soft);
}

.roadmap-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
}

.roadmap-copy h2 {
  font-size: clamp(2.8rem, 4.7vw, 4.8rem);
}

.roadmap-copy > p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--muted);
}

.inventory-card {
  padding: clamp(35px, 5vw, 60px);
  color: var(--white);
  background: var(--teal-deep);
  border-radius: 28px 28px 100px 28px;
  box-shadow: var(--shadow);
}

.roadmap-label {
  display: inline-block;
  margin-bottom: 25px;
  padding: 7px 11px;
  color: var(--navy);
  background: var(--gold);
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.inventory-card h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.inventory-card p {
  color: #cce2df;
}

.inventory-card a {
  color: var(--gold-soft);
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 1000px) {
  .product-hero-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 38px;
  }

  .product-hero h1 {
    font-size: clamp(3rem, 5.5vw, 4.7rem);
  }

  .software-showcase {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
  }
}

@media (max-width: 820px) {
  .product-hero-grid,
  .software-showcase,
  .audience-heading,
  .roadmap-grid {
    grid-template-columns: 1fr;
  }

  .product-hero .hero-copy {
    text-align: center;
  }

  .hero-mission-line {
    margin-inline: auto;
  }

  .product-window-wrap {
    width: min(100%, 700px);
    margin-inline: auto;
  }

  .software-showcase-copy {
    text-align: center;
  }

  .check-list {
    display: inline-block;
    text-align: left;
  }

  .audience-heading {
    gap: 20px;
  }

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

@media (max-width: 560px) {
  .product-hero {
    padding-block: 62px 78px;
  }

  .product-hero h1 {
    font-size: clamp(3rem, 14vw, 4.2rem);
  }

  .product-window-wrap {
    padding-block: 18px 54px;
  }

  .product-window-bar {
    min-height: 32px;
  }

  .product-feature-card {
    min-height: 0;
    padding: 27px;
  }

  .product-tour-grid,
  .audience-grid {
    grid-template-columns: 1fr;
  }

  .software-showcase {
    margin-top: 50px;
    padding: 28px 20px;
    border-radius: 24px;
  }

  .product-badge.floating-card-top {
    top: -1%;
    left: 1%;
  }

  .product-badge.floating-card-bottom {
    right: 1%;
  }

  .audience-card {
    min-height: 125px;
  }

  .comparison-table-wrap {
    border-radius: 18px;
  }

  .inventory-card {
    padding: 32px 24px 52px;
    border-radius: 24px 24px 70px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
