:root {
  --charcoal: #2C2A2D;
  --header: #232125;
  --charcoal-soft: #37333B;

  --purple: #734DBC;
  --purple-dark: #5B3A98;
  --purple-soft: #EAE3F4;
  --purple-pale: #F5F1FA;

  --white: #FFFFFF;
  --off-white: #F7F6F8;
  --soft-white: #FCFBFD;

  --ink: #1B181D;
  --body: #554F59;
  --muted: #766F7A;
  --line: #DED9E2;

  --site-width: 1380px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-sm: 14px;
}

/* ------------------------------------------------------------
   RESET / FOUNDATION
   ------------------------------------------------------------ */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.62;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid rgba(115,77,188,.42);
  outline-offset: 4px;
}

.site-shell {
  width: min(88vw, var(--site-width));
  margin-inline: auto;
}

.section {
  padding: clamp(72px, 5.4vw, 98px) 0;
}

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

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

.section-soft {
  background: var(--purple-pale);
}

.section-dark {
  background: var(--charcoal);
  color: var(--white);
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  transform: translateY(-160%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--white);
  color: var(--ink);
  font-weight: 800;
}

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

/* ------------------------------------------------------------
   TYPE
   ------------------------------------------------------------ */

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", sans-serif;
  letter-spacing: -.045em;
}

h1 {
  font-size: clamp(3.45rem, 4.2vw, 5.2rem);
  line-height: .97;
}

h2 {
  font-size: clamp(2.55rem, 3.6vw, 4.45rem);
  line-height: .99;
}

h3 {
  font-size: clamp(1.35rem, 1.6vw, 1.9rem);
  line-height: 1.08;
}

p {
  margin: 0;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--purple);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-light {
  color: #CDB8E8;
}

/* ------------------------------------------------------------
   HEADER
   ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 3000;
  background: rgba(35,33,37,.97);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 92px;
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-rule {
  height: 2px;
  background: var(--purple-dark);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.brand-logo {
  width: 76px;
  height: 76px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand span {
  font-size: 1.02rem;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: clamp(20px, 2vw, 34px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.76);
  font-size: .92rem;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--white);
}

.desktop-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -15px;
  height: 3px;
  border-radius: 999px;
  background: var(--purple);
}

.header-secondary-cta {
  min-height: 44px;
  padding: 0 17px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 999px;
  color: var(--white);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: background .18s ease, border-color .18s ease;
}

.header-secondary-cta:hover {
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.06);
}

.menu-button,
.mobile-nav {
  display: none;
}

/* ------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------ */

.button {
  min-height: 50px;
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: .92rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--purple);
  color: var(--white);
}

.button-primary:hover {
  background: var(--purple-dark);
}

.button-ghost {
  border-color: rgba(255,255,255,.44);
  color: var(--white);
}

.button-ghost:hover {
  background: rgba(255,255,255,.07);
}

/* ------------------------------------------------------------
   PHONE
   ------------------------------------------------------------ */

.phone {
  position: relative;
  padding: 7px;
  border: 2px solid rgba(255,255,255,.10);
  border-radius: 38px;
  background: linear-gradient(180deg, #19181D, #111116);
  box-shadow:
    0 24px 60px rgba(0,0,0,.24),
    0 8px 20px rgba(91,58,152,.09),
    inset 0 1px 0 rgba(255,255,255,.09);
  line-height: 0;
}

.app-screen {
  width: 100%;
  height: auto;
  border-radius: 30px;
  image-rendering: auto;
}

/* ------------------------------------------------------------
   HERO
   ------------------------------------------------------------ */

.hero {
  padding: clamp(44px, 4vw, 66px) 0 clamp(54px, 4.5vw, 74px);
}

.hero-layout {
  min-height: 560px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, .76fr);
  gap: clamp(56px, 7vw, 110px);
  align-items: center;
}

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

.hero h1 {
  max-width: 10.5ch;
}

.hero h1 span {
  display: block;
  color: var(--purple-soft);
}

.hero-subtitle {
  margin-top: 24px;
  max-width: 650px;
  color: rgba(255,255,255,.76);
  font-size: clamp(1.06rem, 1rem + .18vw, 1.25rem);
}

.hero-actions {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.beta-note {
  margin-top: 26px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.54);
  font-size: .76rem;
}

.beta-note i {
  color: #BDA4DF;
}

.hero-visual {
  min-height: 510px;
  position: relative;
  display: grid;
  place-items: center;
}

.hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 390px;
  height: 390px;
  transform: translate(-50%, -50%);
  border: 54px solid rgba(115,77,188,.13);
  border-radius: 50%;
}

.phone-hero {
  width: 292px;
  z-index: 2;
}

/* ------------------------------------------------------------
   STORY
   ------------------------------------------------------------ */

.story-layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 8vw, 130px);
  align-items: end;
}

.story-heading h2 {
  max-width: 11ch;
}

.story-copy {
  max-width: 620px;
}

.story-copy p {
  color: var(--body);
}

.story-lead {
  font-size: clamp(1.15rem, 1.08rem + .2vw, 1.34rem);
  line-height: 1.62;
}

.story-copy > p:nth-child(2) {
  margin-top: 22px;
  font-size: 1rem;
}

.story-signature {
  margin-top: 26px;
  color: var(--purple-dark) !important;
  font-weight: 800;
}

/* ------------------------------------------------------------
   FEATURE SECTIONS
   ------------------------------------------------------------ */

.feature-layout {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: clamp(64px, 8vw, 125px);
  align-items: center;
}

.feature-layout-reverse {
  grid-template-columns: .92fr 1.08fr;
}

.feature-copy {
  max-width: 660px;
}

.feature-copy h2 {
  max-width: 11ch;
}

.feature-lead {
  margin-top: 24px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1.07rem, 1rem + .16vw, 1.22rem);
}

.feature-copy-light .feature-lead {
  color: var(--body);
}

.feature-list {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
}

.feature-list > div {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  color: rgba(255,255,255,.86);
  font-size: .91rem;
}

.feature-list i {
  width: 18px;
  margin-top: 3px;
  color: #CDB8E8;
}

.feature-visual {
  min-height: 560px;
  position: relative;
  display: grid;
  place-items: center;
}

.visual-backdrop {
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
}

.visual-backdrop-purple {
  background: rgba(115,77,188,.13);
}

.visual-backdrop-soft {
  background: #EEE8F5;
}

.phone-feature {
  width: 310px;
  z-index: 2;
}

.principle-line {
  margin-top: 34px;
  padding-top: 22px;
  display: flex;
  gap: 15px;
  border-top: 1px solid var(--line);
}

.principle-line i {
  margin-top: 3px;
  color: var(--purple);
}

.principle-line strong,
.principle-line span {
  display: block;
}

.principle-line strong {
  color: var(--ink);
}

.principle-line span {
  margin-top: 4px;
  color: var(--body);
}

/* ------------------------------------------------------------
   ADOPTION + COMMUNITY
   ------------------------------------------------------------ */

.section-heading {
  max-width: 820px;
}

.section-heading-wide h2 {
  max-width: 12ch;
}

.editorial-pair {
  margin-top: clamp(52px, 6vw, 84px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.editorial-panel {
  min-height: 580px;
  padding: clamp(32px, 3vw, 44px);
  overflow: hidden;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  gap: 26px;
  align-items: center;
  border: 1px solid #D9D2E0;
  border-radius: var(--radius-lg);
  background: var(--white);
}

.editorial-panel-dark {
  border-color: rgba(255,255,255,.07);
  background: var(--charcoal);
  color: var(--white);
}

.editorial-copy h3 {
  max-width: 9ch;
}

.editorial-copy p:last-child {
  margin-top: 18px;
  color: var(--body);
}

.editorial-panel-dark .editorial-copy p:last-child {
  color: rgba(255,255,255,.68);
}

.editorial-phone {
  display: grid;
  place-items: center;
}

.phone-editorial {
  width: 235px;
}

/* ------------------------------------------------------------
   FLOW
   ------------------------------------------------------------ */

.flow-section {
  padding: clamp(72px, 5.4vw, 98px) 0;
  background:
    radial-gradient(circle at top center, rgba(115,77,188,.08), transparent 30%),
    linear-gradient(180deg, #FCFBFD 0%, #F7F4FA 100%);
}

.section-heading-center {
  max-width: 980px;
  margin-inline: auto;
  text-align: center;
}

.flow-intro {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--body);
  font-size: 1.06rem;
}

.flow-board {
  position: relative;
  margin-top: 52px;
  padding: 30px;
  border: 1px solid #E5DDED;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(250,247,252,.98) 100%);
  box-shadow:
    0 20px 50px rgba(32, 22, 45, .06),
    inset 0 1px 0 rgba(255,255,255,.8);
}

.flow-board-line {
  position: absolute;
  top: 115px;
  left: clamp(44px, 4vw, 70px);
  right: clamp(44px, 4vw, 70px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(115,77,188,.18) 0%,
    rgba(115,77,188,.55) 45%,
    rgba(115,77,188,.18) 100%
  );
}

.flow-line {
  position: relative;
  z-index: 2;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
  list-style: none;
}

.flow-step {
  min-height: 255px;
  padding: 20px 18px 18px;
  display: grid;
  justify-items: center;
  align-content: start;
  text-align: center;
  border: 1px solid rgba(115,77,188,.12);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98) 0%, rgba(246,242,250,.92) 100%);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.flow-step:hover {
  transform: translateY(-4px);
  border-color: rgba(115,77,188,.28);
  box-shadow: 0 18px 34px rgba(91,58,152,.10);
}

.flow-step-number {
  margin-bottom: 12px;
  color: var(--purple);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.flow-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115,77,188,.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.95) 0%, rgba(244,238,250,.96) 100%);
  color: var(--purple);
  box-shadow:
    0 10px 24px rgba(115,77,188,.10),
    inset 0 1px 0 rgba(255,255,255,.9);
}

.flow-line strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
  line-height: 1.1;
}

.flow-step p {
  margin-top: 10px;
  color: var(--body);
  font-size: .84rem;
  line-height: 1.55;
}

/* ------------------------------------------------------------
   APP SHOWCASE
   ------------------------------------------------------------ */

.app-heading {
  display: grid;
  grid-template-columns: 1fr .8fr;
  gap: 70px;
  align-items: end;
}

.app-heading h2 {
  max-width: 10ch;
}

.app-heading > p {
  max-width: 580px;
  color: var(--body);
  font-size: 1.05rem;
}

.app-showcase {
  min-height: 720px;
  margin-top: 56px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.showcase-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(760px, 68vw);
  height: 410px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,77,188,.12) 0%, rgba(115,77,188,.04) 46%, transparent 72%);
}

.showcase-phone {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.showcase-phone span {
  font-weight: 800;
}

.showcase-phone-left {
  transform: translateX(54px) rotate(-3deg) scale(.92);
}

.showcase-phone-center {
  z-index: 4;
}

.showcase-phone-right {
  transform: translateX(-54px) rotate(3deg) scale(.92);
}

.phone-showcase-main {
  width: 330px;
}

.phone-showcase-side {
  width: 275px;
}

.app-mini-gallery {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.mini-shot {
  padding: 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--off-white);
}

.mini-shot img {
  width: 100%;
  max-height: 300px;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
}

.mini-shot span {
  margin-top: 12px;
  display: block;
  font-weight: 800;
}

.mini-shot-dark {
  background: var(--charcoal);
  color: var(--white);
  border-color: transparent;
}

/* ------------------------------------------------------------
   VISION
   ------------------------------------------------------------ */

.vision-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(70px, 9vw, 145px);
}

.vision-copy {
  max-width: 580px;
}

.vision-copy h2 {
  max-width: 8ch;
}

.vision-copy > p:last-child {
  margin-top: 24px;
  color: rgba(255,255,255,.70);
  font-size: 1.06rem;
}

.roadmap-label {
  color: #CDB8E8;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.roadmap-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 28px;
}

.roadmap-grid span {
  padding: 17px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
  color: rgba(255,255,255,.84);
}

.roadmap-grid i {
  width: 18px;
  color: #CDB8E8;
}

/* ------------------------------------------------------------
   TEAM
   ------------------------------------------------------------ */

.team-heading {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(60px, 8vw, 125px);
  align-items: end;
}

.team-heading h2 {
  max-width: 11ch;
}

.team-heading > p {
  max-width: 570px;
  color: var(--body);
  font-size: 1.05rem;
}

.team-grid {
  margin-top: 62px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line);
}

.team-profile {
  min-height: 250px;
  padding: 34px;
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-profile:nth-child(even) {
  border-right: 0;
}

.team-avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
}

.team-role {
  margin-bottom: 8px;
  color: var(--purple);
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.team-profile h3 {
  font-size: 1.45rem;
}

.team-profile p:last-child {
  margin-top: 12px;
  color: var(--body);
  font-size: .92rem;
}

/* ------------------------------------------------------------
   SUPPORT
   ------------------------------------------------------------ */

.support-section {
  background: var(--purple-pale);
}

.support-layout {
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  gap: clamp(70px, 8vw, 125px);
  align-items: start;
}

.support-copy h2 {
  max-width: 8ch;
}

.support-copy > p {
  margin-top: 22px;
  max-width: 580px;
  color: var(--body);
}

.text-link {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--purple-dark);
  font-weight: 800;
  text-decoration: none;
}

.support-options {
  border-top: 1px solid #D8D0E3;
}

.support-option {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  border-bottom: 1px solid #D8D0E3;
}

.support-option > i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--purple);
  color: var(--white);
}

.support-option h3 {
  font-size: 1.3rem;
}

.support-option p {
  margin-top: 5px;
  color: var(--body);
}

/* ------------------------------------------------------------
   CONTACT
   ------------------------------------------------------------ */

.contact-heading {
  max-width: 840px;
}

.contact-heading h2 {
  max-width: 10ch;
}

.contact-heading > p {
  margin-top: 20px;
  max-width: 650px;
  color: var(--body);
}

.contact-layout {
  margin-top: 52px;
  display: grid;
  grid-template-columns: .78fr 1.22fr;
  gap: 22px;
}

.contact-card {
  min-height: 520px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  background: var(--charcoal);
  color: var(--white);
}

.contact-logo {
  width: 74px;
  height: 74px;
  object-fit: contain;
  border-radius: 14px;
}

.contact-card h3 {
  margin-top: 32px;
  color: var(--white);
}

.contact-card > p {
  margin-top: 12px;
  max-width: 34ch;
  color: rgba(255,255,255,.65);
}

.contact-details {
  margin-top: auto;
  display: grid;
  gap: 12px;
}

.contact-details > div {
  padding-top: 16px;
  display: flex;
  gap: 13px;
  border-top: 1px solid rgba(255,255,255,.10);
}

.contact-details i {
  margin-top: 4px;
  color: #CDB8E8;
}

.contact-details small,
.contact-details strong {
  display: block;
}

.contact-details small {
  color: rgba(255,255,255,.45);
}

.contact-details strong {
  margin-top: 2px;
  font-size: .90rem;
}

.contact-form {
  padding: 40px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--off-white);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form label > span {
  font-size: .84rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid #CFC9D3;
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
}

.contact-form textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(115,77,188,.12);
}

.form-footer {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-footer p {
  color: var(--muted);
  font-size: .74rem;
}

.map-row {
  margin-top: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: .4fr 1.6fr;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.map-copy {
  padding: 36px;
  background: var(--purple-pale);
}

.map-copy h3 {
  font-size: 2rem;
}

.map-copy > p:last-child {
  margin-top: 12px;
  color: var(--body);
}

.map-frame {
  min-height: 330px;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 330px;
  display: block;
  border: 0;
}

/* ------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------ */

.site-footer {
  background: var(--header);
  color: var(--white);
  border-top: 3px solid var(--purple-dark);
}

.footer-main {
  padding: 56px 0 46px;
  display: grid;
  grid-template-columns: 1.5fr .7fr .7fr .8fr;
  gap: 46px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 13px;
}

.footer-brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 12px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand span {
  margin-top: 4px;
  color: rgba(255,255,255,.55);
  font-size: .78rem;
}

.footer-brand-block > p {
  margin-top: 20px;
  max-width: 36ch;
  color: rgba(255,255,255,.54);
  font-size: .84rem;
}

.footer-column {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.footer-column > strong {
  margin-bottom: 4px;
  color: #CDB8E8;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.footer-column a,
.footer-column span {
  color: rgba(255,255,255,.66);
  font-size: .82rem;
  text-decoration: none;
}

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

.footer-bottom {
  min-height: 66px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.42);
  font-size: .72rem;
}

/* ------------------------------------------------------------
   UTILITIES
   ------------------------------------------------------------ */

.to-top {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 2000;
  width: 46px;
  height: 46px;
  display: none;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--purple);
  color: var(--white);
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}

.reveal.active {
  opacity: 1;
  transform: none;
}

/* ------------------------------------------------------------
   LARGE DESKTOP
   ------------------------------------------------------------ */

@media (min-width: 1600px) {
  body {
    font-size: 1.05rem;
  }

  .site-shell {
    width: min(86vw, var(--site-width));
  }

  .desktop-nav a {
    font-size: .96rem;
  }

  .hero-layout {
    min-height: 590px;
  }
}

/* ------------------------------------------------------------
   TABLET
   ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .header-secondary-cta {
    display: none;
  }

  .editorial-pair {
    grid-template-columns: 1fr;
  }

  .app-showcase {
    min-height: 650px;
  }

  .showcase-phone-left {
    transform: translateX(28px) rotate(-2deg) scale(.9);
  }

  .showcase-phone-right {
    transform: translateX(-28px) rotate(2deg) scale(.9);
  }

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

  .footer-column:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 980px) {
  .site-shell {
    width: min(92vw, var(--site-width));
  }

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

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .desktop-nav {
    display: none;
  }

  .menu-button {
    margin-left: auto;
    width: 46px;
    height: 46px;
    padding: 9px;
    border: 0;
    display: block;
    background: transparent;
  }

  .menu-button span {
    height: 2px;
    margin: 6px 0;
    display: block;
    border-radius: 99px;
    background: #CDB8E8;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-nav.open {
    display: block;
    background: var(--header);
  }

  .mobile-nav-inner {
    padding: 8px 0 22px;
    display: grid;
  }

  .mobile-nav a {
    min-height: 50px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a.active {
    color: #CDB8E8;
  }

  .mobile-launch-link {
    margin-top: 12px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22) !important;
    border-radius: 999px;
  }

  .hero-layout,
  .story-layout,
  .feature-layout,
  .feature-layout-reverse,
  .app-heading,
  .vision-layout,
  .team-heading,
  .support-layout,
  .contact-layout,
  .map-row {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    min-height: auto;
  }

  .hero-visual {
    min-height: 520px;
  }

  .feature-visual {
    min-height: 520px;
  }

  .story-layout,
  .feature-layout,
  .feature-layout-reverse,
  .vision-layout,
  .team-heading,
  .support-layout {
    gap: 42px;
  }

  .feature-layout-reverse .feature-visual {
    order: 2;
  }

  .feature-layout-reverse .feature-copy {
    order: 1;
  }

  .editorial-panel {
    min-height: 520px;
  }

  .flow-board {
    padding: 24px;
  }

  .flow-board-line {
    display: none;
  }

  .flow-line {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .flow-step {
    min-height: 230px;
  }

  .app-showcase {
    min-height: 560px;
  }

  .showcase-phone-left,
  .showcase-phone-right {
    transform: none;
  }

  .phone-showcase-main {
    width: 290px;
  }

  .phone-showcase-side {
    width: 240px;
  }

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

  .team-profile {
    border-right: 0;
  }

  .map-frame,
  .map-frame iframe {
    min-height: 300px;
  }
}

/* ------------------------------------------------------------
   MOBILE
   ------------------------------------------------------------ */

@media (max-width: 680px) {
  .section {
    padding: 76px 0;
  }

  h1 {
    font-size: clamp(3rem, 12.5vw, 4rem);
  }

  h2 {
    font-size: clamp(2.35rem, 10vw, 3.15rem);
  }

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

  .brand-logo {
    width: 60px;
    height: 60px;
  }

  .brand span {
    font-size: .92rem;
  }

  .hero {
    padding-top: 44px;
  }

  .hero h1 {
    max-width: 10ch;
  }

  .hero-actions {
    display: grid;
  }

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

  .beta-note {
    align-items: flex-start;
    font-size: .72rem;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-orbit {
    width: 330px;
    height: 330px;
    border-width: 44px;
  }

  .phone-hero {
    width: min(270px, 74vw);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .feature-visual {
    min-height: 460px;
  }

  .visual-backdrop {
    width: 330px;
    height: 330px;
  }

  .phone-feature {
    width: min(280px, 76vw);
  }

  .editorial-panel {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .editorial-phone {
    margin-top: 16px;
  }

  .phone-editorial {
    width: min(235px, 70vw);
  }

  .flow-board {
    padding: 18px;
    border-radius: 24px;
  }

  .flow-line {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .flow-step {
    min-height: auto;
    padding: 18px 16px;
  }

  .flow-step p {
    max-width: 34ch;
  }

  .app-showcase {
    min-height: auto;
    margin-top: 46px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .showcase-glow {
    display: none;
  }

  .showcase-phone-left,
  .showcase-phone-right,
  .showcase-phone-center {
    transform: none;
  }

  .phone-showcase-main,
  .phone-showcase-side {
    width: min(260px, 72vw);
  }

  .app-mini-gallery {
    grid-template-columns: 1fr;
  }

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

  .team-profile {
    min-height: auto;
    padding: 26px 0;
    grid-template-columns: 56px 1fr;
  }

  .team-avatar {
    width: 54px;
    height: 54px;
  }

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

  .contact-card,
  .contact-form {
    padding: 28px;
  }

  .form-footer {
    align-items: stretch;
    flex-direction: column;
  }

  .form-footer .button {
    width: 100%;
  }

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

  .footer-column:last-child {
    grid-column: auto;
  }

  .footer-bottom {
    padding: 18px 0;
    min-height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* ------------------------------------------------------------
   REDUCED MOTION
   ------------------------------------------------------------ */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}


/* ------------------------------------------------------------
   V7.3 POLISH
   ------------------------------------------------------------ */
.flow-board {
  margin-top: 56px;
  padding: 34px 28px;
  border-color: #D8CCE6;
  box-shadow:
    0 20px 46px rgba(32,22,45,.06),
    inset 0 1px 0 rgba(255,255,255,.88);
}

.flow-board-line {
  top: 104px;
  left: clamp(50px, 4vw, 76px);
  right: clamp(50px, 4vw, 76px);
  height: 3px;
  background: linear-gradient(90deg, rgba(115,77,188,.28) 0%, rgba(115,77,188,.52) 50%, rgba(115,77,188,.28) 100%);
}

.flow-step {
  min-height: 268px;
  padding: 24px 18px 20px;
  border: 1.5px solid rgba(115,77,188,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(248,244,252,.98) 100%);
}

.flow-step-number { display: none; }

.flow-icon {
  width: 72px;
  height: 72px;
  margin-bottom: 18px;
  border: 1.5px solid rgba(115,77,188,.30);
  color: var(--purple-dark);
}

.flow-icon i {
  font-size: 1.36rem;
}

.flow-line strong {
  font-size: 1.22rem;
}

.flow-step p {
  margin-top: 12px;
  font-size: .92rem;
  line-height: 1.6;
}

.app-mini-gallery {
  margin-top: 26px;
  gap: 22px;
}

.mini-shot {
  padding: 14px;
  display: grid;
  gap: 14px;
  border: 1px solid #D8D0E3;
  background: linear-gradient(180deg, #FFFFFF 0%, #FBF8FD 100%);
  box-shadow: 0 14px 28px rgba(31,22,41,.04);
}

.mini-shot img {
  max-height: 420px;
  min-height: 340px;
  padding: 12px;
  object-fit: contain;
  border: 1px solid rgba(115,77,188,.08);
}

.mini-shot-copy span,
.mini-shot > span {
  display: block;
  font-size: 1.18rem;
  font-weight: 800;
  color: var(--ink);
}

.mini-shot-copy p {
  margin-top: 6px;
  color: var(--body);
  font-size: .92rem;
}

.team-section {
  background: linear-gradient(180deg, #FCFBFD 0%, #F6F2FA 100%);
}

.team-grid {
  position: relative;
  margin-top: 52px;
  gap: 20px;
  border-top: 0;
}

.team-background-glow {
  position: absolute;
  inset: -18px;
  border-radius: 36px;
  background: radial-gradient(circle at top left, rgba(115,77,188,.08), transparent 40%), radial-gradient(circle at bottom right, rgba(166,124,157,.10), transparent 42%);
  pointer-events: none;
}

.team-profile {
  position: relative;
  min-height: 220px;
  padding: 32px;
  border: 1px solid #DDD4E7;
  border-radius: 28px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(4px);
  box-shadow: 0 16px 34px rgba(36,26,49,.04);
}

.team-profile:nth-child(even),
.team-profile {
  border-right: 1px solid #DDD4E7;
}

.team-avatar {
  width: 68px;
  height: 68px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  box-shadow: 0 10px 22px rgba(115,77,188,.18);
}

.contact-card {
  position: relative;
  overflow: hidden;
  min-height: 560px;
  background: linear-gradient(180deg, #2D2931 0%, #262228 100%);
}

.contact-card-glow {
  position: absolute;
  right: -70px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(115,77,188,.28) 0%, rgba(115,77,188,.08) 45%, transparent 72%);
}

.contact-logo {
  width: 94px;
  height: 94px;
  border-radius: 0;
  position: relative;
  z-index: 1;
}

.contact-card h3,
.contact-card > p,
.contact-highlights,
.contact-note,
.contact-details {
  position: relative;
  z-index: 1;
}

.contact-card > p {
  max-width: 30ch;
  color: rgba(255,255,255,.74);
}

.contact-highlights {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-highlights span {
  padding: 10px 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 700;
}

.contact-note {
  margin-top: 22px;
  padding: 18px;
  border: 1px solid rgba(205,184,232,.16);
  border-radius: 18px;
  background: rgba(255,255,255,.05);
}

.contact-note strong {
  display: block;
  color: var(--white);
  font-size: .96rem;
}

.contact-note p {
  margin-top: 8px;
  color: rgba(255,255,255,.66);
  font-size: .88rem;
  line-height: 1.55;
}

.contact-details {
  gap: 14px;
}

.contact-details > div {
  padding-top: 18px;
}

.contact-details strong {
  font-size: .96rem;
}

@media (max-width: 1100px) {
  .flow-board-line { display: none; }
  .flow-step { min-height: 0; }
  .mini-shot img { min-height: 280px; max-height: 340px; }
}

@media (max-width: 820px) {
  .contact-highlights { gap: 8px; }
  .contact-highlights span { width: 100%; justify-content: flex-start; }
  .mini-shot img { min-height: 240px; max-height: 320px; }
}


/* ------------------------------------------------------------
   V7.4 — WHY SECTION POLISH
   Less text, more hierarchy and brand colour.
   ------------------------------------------------------------ */

.story-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(115,77,188,.08), transparent 28%),
    linear-gradient(180deg, #FAF9FB 0%, #F5F2F8 100%);
}

.story-section::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, var(--purple), var(--purple-dark));
  opacity: .9;
}

.story-layout {
  align-items: center;
}

.story-heading h2 {
  max-width: 10.5ch;
}

.story-heading h2 span {
  display: block;
  color: var(--purple-dark);
}

.story-small-line {
  margin-top: 26px;
  color: var(--body);
  font-size: .90rem;
  font-weight: 700;
}

.story-copy {
  max-width: 620px;
}

.story-mini-label {
  color: var(--purple);
  font-size: .69rem;
  font-weight: 800;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.fragmented-block {
  padding: 26px 28px;
  border: 1px solid #DED8E3;
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  box-shadow: 0 12px 30px rgba(34,24,42,.035);
}

.fragmented-tags {
  margin-top: 17px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.fragmented-tags span {
  min-height: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D9D3DE;
  border-radius: 999px;
  background: #FFFFFF;
  color: #615A65;
  font-size: .84rem;
  font-weight: 700;
}

.fragmented-tags i {
  width: 15px;
  color: #9C8DA8;
  text-align: center;
}

.story-transition {
  height: 44px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 13px;
  align-items: center;
  color: var(--purple);
}

.story-transition span {
  height: 1px;
  background: linear-gradient(90deg, transparent, #D7CBE5);
}

.story-transition span:last-child {
  background: linear-gradient(90deg, #D7CBE5, transparent);
}

.story-transition i {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border: 1px solid #D9CCE8;
  border-radius: 50%;
  background: #FFFFFF;
  font-size: .70rem;
}

.connected-block {
  padding: 27px 30px;
  display: flex;
  align-items: center;
  gap: 19px;
  border: 1px solid rgba(91,58,152,.20);
  border-radius: 24px;
  background:
    linear-gradient(135deg, #5B3A98 0%, #734DBC 100%);
  color: #FFFFFF;
  box-shadow: 0 18px 38px rgba(91,58,152,.16);
}

.connected-block .story-mini-label {
  color: rgba(255,255,255,.68);
}

.connected-icon {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 18px;
  background: rgba(255,255,255,.10);
  font-size: 1.35rem;
}

.connected-block strong {
  margin-top: 4px;
  display: block;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.15rem);
  line-height: 1;
  letter-spacing: -.035em;
}

.connected-block > div:last-child > p:last-child {
  margin-top: 8px;
  color: rgba(255,255,255,.82);
  font-size: .96rem;
  font-weight: 700;
  letter-spacing: .02em;
}

/* The old paragraph-specific story styles no longer drive this section */
.story-lead,
.story-signature {
  display: none;
}

@media (max-width: 980px) {
  .story-heading h2 {
    max-width: 12ch;
  }

  .story-small-line {
    margin-top: 20px;
  }

  .story-copy {
    max-width: none;
  }
}

@media (max-width: 680px) {
  .story-section::before {
    width: 3px;
  }

  .fragmented-block,
  .connected-block {
    padding: 22px;
    border-radius: 20px;
  }

  .fragmented-tags {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fragmented-tags span {
    width: 100%;
  }

  .connected-icon {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
    border-radius: 15px;
  }
}


/* ------------------------------------------------------------
   V7.5 — BETA TESTING CTA
   ------------------------------------------------------------ */

.header-secondary-cta {
  border-color: rgba(205,184,232,.48);
  background: rgba(115,77,188,.12);
}

.header-secondary-cta:hover {
  border-color: rgba(205,184,232,.76);
  background: rgba(115,77,188,.22);
}

.beta-note {
  color: rgba(255,255,255,.62);
}

.app-beta-cta {
  margin-top: 34px;
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border: 1px solid #D9CEE7;
  border-radius: 24px;
  background:
    linear-gradient(135deg, #F7F2FB 0%, #FFFFFF 62%);
}

.app-beta-cta .eyebrow {
  margin-bottom: 7px;
}

.app-beta-cta h3 {
  font-size: 1.65rem;
}

.app-beta-cta p:last-child {
  margin-top: 7px;
  color: var(--body);
}

.app-beta-cta .button {
  flex: 0 0 auto;
}

@media (max-width: 680px) {
  .app-beta-cta {
    padding: 24px;
    align-items: stretch;
    flex-direction: column;
  }

  .app-beta-cta .button {
    width: 100%;
  }
}


/* ------------------------------------------------------------
   V7.6 — BRINGING PETS HOME + COSIER TEAM
   ------------------------------------------------------------ */

/* App identity in the hero */
.hero-app-identity {
  width: fit-content;
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.hero-app-mark {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.hero-app-identity span,
.hero-app-identity strong {
  display: block;
}

.hero-app-label {
  margin-bottom: 2px;
  color: #BFA7DE;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.hero-app-identity strong {
  color: #FFFFFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -.025em;
}

/* Team: one shared surface, warm and connected */
.team-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(115,77,188,.08), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(166,124,157,.09), transparent 30%),
    linear-gradient(180deg, #FBF9FC 0%, #F3EEF7 100%);
}

.team-heading-unified {
  max-width: 760px;
}

.team-heading-unified h2 {
  max-width: 15ch;
}

.team-unified {
  margin-top: 42px;
  padding: 34px 38px 38px;
  border: 1px solid #D4C8DF;
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 0%, rgba(115,77,188,.09), transparent 34%),
    rgba(255,255,255,.72);
  box-shadow:
    0 22px 48px rgba(42,29,54,.06),
    inset 0 1px 0 rgba(255,255,255,.82);
}

.team-unified-intro {
  max-width: 670px;
  margin: 0 auto 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  text-align: center;
}

.team-unified-intro i {
  color: var(--purple);
  font-size: .92rem;
}

.team-unified-intro p {
  color: var(--body);
  font-size: .90rem;
  font-weight: 700;
}

.team-unified-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(24px, 3vw, 46px);
  align-items: start;
}

.team-person {
  min-width: 0;
  text-align: center;
}

.team-pet-photo {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  margin-inline: auto;
  border-radius: 50%;
  background: linear-gradient(135deg, #734DBC, #5B3A98);
  color: #FFFFFF;
  box-shadow:
    0 12px 28px rgba(91,58,152,.16),
    0 0 0 5px rgba(255,255,255,.82);
}

.team-pet-photo-large {
  width: 108px;
  height: 108px;
}

.team-pet-photo span {
  position: relative;
  z-index: 1;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.team-pet-photo img {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-person .team-role {
  min-height: 2.4em;
  margin: 20px auto 6px;
  color: var(--purple);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.team-person h3 {
  font-size: 1.42rem;
}

.team-person-focus {
  margin-top: 6px;
  color: var(--body);
  font-size: .84rem;
  font-weight: 700;
}

@media (max-width: 980px) {
  .team-unified {
    padding: 32px;
  }

  .team-unified-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 42px 32px;
  }
}

@media (max-width: 620px) {
  .team-unified {
    margin-top: 32px;
    padding: 28px 22px 30px;
    border-radius: 26px;
  }

  .team-unified-intro {
    margin-bottom: 28px;
    align-items: flex-start;
    text-align: left;
  }

  .team-unified-grid {
    grid-template-columns: 1fr 1fr;
    gap: 34px 16px;
  }

  .team-pet-photo-large {
    width: 88px;
    height: 88px;
  }

  .team-person .team-role {
    min-height: 3.4em;
    margin-top: 16px;
    font-size: .60rem;
  }

  .team-person h3 {
    font-size: 1.22rem;
  }

  .team-person-focus {
    font-size: .76rem;
  }
}

/* ------------------------------------------------------------
   V7.7 — SAME-PAGE BETA + SUPPORT EXPERIENCES
   ------------------------------------------------------------ */

/* Support section */
.support-section {
  background:
    radial-gradient(circle at 16% 12%, rgba(115,77,188,.08), transparent 26%),
    linear-gradient(180deg, #F7F3FA 0%, #F1EBF6 100%);
}

.support-heading {
  display: grid;
  grid-template-columns: 1fr .85fr;
  gap: clamp(54px, 8vw, 120px);
  align-items: end;
}

.support-heading h2 {
  max-width: 11ch;
}

.support-heading > p {
  max-width: 560px;
  color: var(--body);
  font-size: 1rem;
}

.support-paths {
  margin-top: 52px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 22px;
}

.support-path {
  min-height: 430px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
}

.support-path-primary {
  border: 1px solid rgba(115,77,188,.24);
  background:
    linear-gradient(145deg, #FFFFFF 0%, #F7F1FB 100%);
  box-shadow: 0 20px 45px rgba(51,35,67,.06);
}

.support-path-partner {
  border: 1px solid rgba(255,255,255,.10);
  background:
    radial-gradient(circle at 90% 5%, rgba(115,77,188,.28), transparent 28%),
    var(--charcoal);
  color: #FFFFFF;
}

.support-path-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 17px;
  background: var(--purple);
  color: #FFFFFF;
  font-size: 1.12rem;
}

.support-path-icon-light {
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  color: #D7C4EF;
}

.support-path-label {
  margin-top: 24px;
  color: var(--purple);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.support-path-partner .support-path-label {
  color: #CDB8E8;
}

.support-path h3 {
  margin-top: 7px;
  font-size: clamp(1.65rem, 2vw, 2.1rem);
}

.support-path > p:not(.support-path-label) {
  margin-top: 13px;
  max-width: 52ch;
  color: var(--body);
}

.support-path-partner > p:not(.support-path-label) {
  color: rgba(255,255,255,.68);
}

.support-impact-list,
.partner-tags {
  margin: 24px 0 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.support-impact-list span,
.partner-tags span {
  padding: 9px 11px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  font-size: .78rem;
  font-weight: 800;
}

.support-impact-list span {
  border: 1px solid #DDD2E8;
  background: #FFFFFF;
  color: var(--purple-dark);
}

.support-impact-list i {
  color: var(--purple);
}

.partner-tags span {
  border: 1px solid rgba(255,255,255,.11);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.78);
}

.support-path .button {
  width: fit-content;
  margin-top: auto;
}

.support-partner-button {
  border-color: rgba(255,255,255,.28);
  color: #FFFFFF;
}

.support-partner-button:hover {
  border-color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.06);
}

/* Shared modal shell */
body.modal-open {
  overflow: hidden;
}

.site-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  place-items: center;
  padding: 24px;
}

.site-modal.open {
  display: grid;
}

.site-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24,20,27,.72);
  backdrop-filter: blur(8px);
}

.site-modal-panel {
  width: min(920px, 100%);
  max-height: min(88vh, 920px);
  position: relative;
  z-index: 1;
  overflow-y: auto;
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(115,77,188,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 4%, rgba(115,77,188,.09), transparent 28%),
    #FFFFFF;
  color: var(--ink);
  box-shadow: 0 30px 80px rgba(16,12,20,.28);
}

.site-modal-close {
  width: 44px;
  height: 44px;
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  border: 1px solid #DED8E3;
  border-radius: 50%;
  background: #FFFFFF;
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
}

.site-modal-close:hover {
  background: var(--purple-pale);
  border-color: #D2C2E5;
}

.modal-brand-line {
  padding-right: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.modal-brand-line img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.modal-brand-line span,
.modal-brand-line strong {
  display: block;
}

.modal-brand-line span {
  color: var(--purple);
  font-size: .63rem;
  font-weight: 800;
  letter-spacing: .11em;
}

.modal-brand-line strong {
  margin-top: 2px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.04rem;
}

.modal-intro {
  margin-top: 34px;
  max-width: 740px;
}

.modal-intro h2 {
  margin-top: 8px;
  max-width: 13ch;
  font-size: clamp(2.1rem, 4vw, 3.65rem);
}

.modal-intro > p:last-child {
  margin-top: 18px;
  max-width: 68ch;
  color: var(--body);
  font-size: .98rem;
}

.beta-test-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.beta-test-grid article {
  min-height: 155px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  border: 1px solid #DED7E5;
  border-radius: 20px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7FC 100%);
}

.beta-test-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--purple-pale);
  color: var(--purple);
}

.beta-test-grid strong {
  margin-top: 17px;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.05rem;
}

.beta-test-grid span {
  margin-top: 5px;
  color: var(--body);
  font-size: .81rem;
  line-height: 1.45;
}

.beta-feedback-band {
  margin-top: 18px;
  padding: 22px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  border: 1px solid #D8CBE7;
  border-radius: 20px;
  background: var(--purple-pale);
}

.modal-small-label {
  color: var(--purple);
  font-size: .66rem;
  font-weight: 800;
  letter-spacing: .10em;
}

.beta-feedback-band p {
  margin-top: 7px;
  color: var(--body);
  font-size: .86rem;
}

.beta-time-note {
  margin-top: 19px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--body);
  font-size: .83rem;
  font-weight: 700;
}

.beta-time-note i {
  color: var(--purple);
}

.modal-actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.modal-actions .button {
  gap: 9px;
}

.modal-secondary-button {
  border-color: #CCC3D2;
  background: #FFFFFF;
  color: var(--ink);
  cursor: pointer;
}

.modal-secondary-button:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
}

.modal-status {
  min-height: 1.2em;
  margin-top: 12px;
  color: var(--purple-dark);
  font-size: .78rem;
  font-weight: 700;
}

/* Support modal */
.support-modal-panel {
  width: min(850px, 100%);
}

.support-modal-intro h2 {
  max-width: 14ch;
}

.support-use-grid {
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.support-use-grid article {
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 13px;
  align-items: start;
  border: 1px solid #DDD5E4;
  border-radius: 18px;
  background: #FBF9FC;
}

.support-use-grid i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--purple);
  color: #FFFFFF;
}

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

.support-use-grid strong {
  font-size: .94rem;
}

.support-use-grid span {
  margin-top: 4px;
  color: var(--body);
  font-size: .80rem;
}

.support-modal-note {
  margin-top: 18px;
  padding: 18px 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 18px;
  background: linear-gradient(135deg, #5B3A98 0%, #734DBC 100%);
  color: #FFFFFF;
}

.support-modal-note i {
  margin-top: 3px;
}

.support-modal-note p {
  color: rgba(255,255,255,.86);
  font-size: .87rem;
}

/* Responsiveness */
@media (max-width: 900px) {
  .support-heading,
  .support-paths {
    grid-template-columns: 1fr;
  }

  .support-heading {
    gap: 22px;
  }

  .support-path {
    min-height: 0;
  }

  .beta-test-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .site-modal {
    padding: 10px;
    align-items: end;
  }

  .site-modal-panel {
    max-height: 94vh;
    padding: 26px 20px 30px;
    border-radius: 26px 26px 18px 18px;
  }

  .site-modal-close {
    top: 14px;
    right: 14px;
  }

  .modal-brand-line {
    padding-right: 46px;
  }

  .beta-test-grid,
  .beta-feedback-band,
  .support-use-grid {
    grid-template-columns: 1fr;
  }

  .modal-actions {
    align-items: stretch;
    flex-direction: column;
  }

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


/* ------------------------------------------------------------
   V7.8 — BRAND BALANCE
   Bringing Pets Home is introduced inside Lost & Found,
   while All For All Pets remains the website/company identity.
   ------------------------------------------------------------ */

.lost-product-intro {
  width: fit-content;
  margin-bottom: 26px;
  padding: 12px 16px;
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 10px;
  align-items: baseline;
  border: 1px solid rgba(205,184,232,.22);
  border-radius: 16px;
  background: rgba(255,255,255,.055);
}

.lost-product-label {
  color: #BFA7DE;
  font-size: .60rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.lost-product-intro strong {
  color: #FFFFFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.06rem;
}

.lost-product-sub {
  grid-column: 1 / -1;
  margin-top: 3px;
  color: rgba(255,255,255,.58);
  font-size: .74rem;
}

@media (max-width: 620px) {
  .lost-product-intro {
    grid-template-columns: 1fr;
    gap: 3px;
  }

  .lost-product-sub {
    grid-column: auto;
  }
}


/* ------------------------------------------------------------
   V7.9 — BETA + SUPPORT CTAs
   ------------------------------------------------------------ */

.header-action-group {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-support-cta {
  min-height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--purple);
  border-radius: 999px;
  background: var(--purple);
  color: #FFFFFF;
  font: inherit;
  font-size: .80rem;
  font-weight: 800;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}

.header-support-cta:hover {
  transform: translateY(-1px);
  border-color: var(--purple-dark);
  background: var(--purple-dark);
}

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

.button-support-hero {
  gap: 9px;
  border-color: rgba(205,184,232,.46);
  background: rgba(115,77,188,.16);
  color: #FFFFFF;
  cursor: pointer;
}

.button-support-hero:hover {
  border-color: rgba(205,184,232,.74);
  background: rgba(115,77,188,.28);
}

.button-support-hero i {
  color: #D8C1F0;
}

.hero-explore-link {
  min-height: 46px;
  padding: 0 7px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.72);
  font-size: .84rem;
  font-weight: 800;
  text-decoration: none;
  transition: color .18s ease;
}

.hero-explore-link:hover {
  color: #FFFFFF;
}

.hero-explore-link i {
  font-size: .70rem;
  color: #CDB8E8;
}

.mobile-support-link {
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  background: var(--purple);
  color: #FFFFFF;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

@media (max-width: 1180px) {
  .header-support-cta {
    padding-inline: 13px;
    font-size: .75rem;
  }
}

@media (max-width: 980px) {
  .header-action-group {
    display: none;
  }
}

@media (max-width: 680px) {
  .hero-actions-expanded {
    align-items: stretch;
    flex-direction: column;
  }

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

  .hero-explore-link {
    width: 100%;
    justify-content: center;
  }
}


/* ------------------------------------------------------------
   V7.10 — FAQ RESTORED
   ------------------------------------------------------------ */

.faq-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(115,77,188,.07), transparent 28%),
    #FFFFFF;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
}

.faq-heading {
  position: sticky;
  top: 120px;
}

.faq-heading h2 {
  max-width: 9ch;
}

.faq-heading > p:last-child {
  margin-top: 18px;
  max-width: 38ch;
  color: var(--body);
}

.faq-list {
  border-top: 1px solid #D8D0E0;
}

.faq-item {
  border-bottom: 1px solid #D8D0E0;
}

.faq-question {
  width: 100%;
  min-height: 82px;
  padding: 20px 4px;
  display: grid;
  grid-template-columns: 1fr 42px;
  gap: 20px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.faq-question span {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.02rem, 1.5vw, 1.28rem);
  font-weight: 700;
  line-height: 1.3;
}

.faq-question i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #D8CDE4;
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: .78rem;
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.faq-item.open .faq-question i {
  transform: rotate(45deg);
  background: var(--purple);
  color: #FFFFFF;
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .24s ease;
}

.faq-answer > p {
  min-height: 0;
  overflow: hidden;
  max-width: 68ch;
  color: var(--body);
  font-size: .94rem;
  line-height: 1.65;
}

.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.open .faq-answer > p {
  padding: 0 60px 24px 4px;
}

.faq-question:hover span {
  color: var(--purple-dark);
}

@media (max-width: 900px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .faq-heading {
    position: static;
  }

  .faq-heading h2 {
    max-width: none;
  }
}

@media (max-width: 620px) {
  .faq-question {
    min-height: 72px;
    grid-template-columns: 1fr 38px;
  }

  .faq-question i {
    width: 34px;
    height: 34px;
  }

  .faq-item.open .faq-answer > p {
    padding-right: 8px;
  }
}


/* ------------------------------------------------------------
   V7.11 — FRAGMENTED PET-LIFE BLOCK COLOUR POLISH
   ------------------------------------------------------------ */

.fragmented-block {
  position: relative;
  overflow: hidden;
  padding: 28px 30px 30px;
  border: 1px solid #CFC1DE;
  background:
    radial-gradient(circle at 94% 8%, rgba(115,77,188,.12), transparent 28%),
    linear-gradient(145deg, #FBF9FD 0%, #F1EBF7 100%);
  box-shadow:
    0 18px 38px rgba(60,42,78,.07),
    inset 0 1px 0 rgba(255,255,255,.92);
}

.fragmented-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(
    90deg,
    var(--purple-dark) 0%,
    var(--purple) 52%,
    #A98BCD 100%
  );
}

.fragmented-label {
  color: #514A56;
  font-size: .72rem;
  letter-spacing: .10em;
}

.fragmented-label strong {
  color: var(--purple-dark);
  font-weight: 900;
}

.fragmented-tags {
  margin-top: 19px;
  gap: 11px;
}

.fragmented-tags .fragmented-tag {
  min-height: 44px;
  padding: 5px 14px 5px 7px;
  gap: 9px;
  border-width: 1px;
  border-style: solid;
  color: #403A44;
  font-size: .86rem;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(40,28,52,.035);
}

.fragmented-tag i {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-size: .76rem;
}

/* Same brand family, with enough variation to avoid four identical pills. */
.fragmented-tag-social {
  border-color: #CDBDE0;
  background: #FFFFFF;
}

.fragmented-tag-social i {
  background: #E9DFF4;
  color: #6845A8;
}

.fragmented-tag-messages {
  border-color: #D6C9E5;
  background: #F8F4FC;
}

.fragmented-tag-messages i {
  background: #DCCEF0;
  color: #5B3A98;
}

.fragmented-tag-maps {
  border-color: #BFAAD8;
  background: #F1E9F8;
}

.fragmented-tag-maps i {
  background: var(--purple);
  color: #FFFFFF;
}

.fragmented-tag-reports {
  border-color: #D2C4DC;
  background: #FFFFFF;
}

.fragmented-tag-reports i {
  background: #E7DDEA;
  color: #765B78;
}

.fragmented-tags .fragmented-tag:hover {
  transform: translateY(-1px);
  border-color: #BDA7D3;
  box-shadow: 0 8px 18px rgba(75,51,98,.07);
}

@media (max-width: 680px) {
  .fragmented-block {
    padding: 24px 22px;
  }

  .fragmented-block::before {
    left: 22px;
    right: 22px;
  }

  .fragmented-tags .fragmented-tag {
    min-height: 46px;
  }
}


/* ------------------------------------------------------------
   V7.12 — LOST & FOUND / BRINGING PETS HOME TITLE
   ------------------------------------------------------------ */

/* Hide the older detached intro treatment if legacy CSS remains. */
.lost-product-intro {
  display: none;
}

.lost-found-titleline {
  width: fit-content;
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.lost-found-category {
  color: #CDB8E8;
  font-size: .70rem;
  font-weight: 800;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.lost-found-divider {
  width: 26px;
  height: 1px;
  background: rgba(205,184,232,.48);
}

.lost-found-titleline strong {
  position: relative;
  color: #FFFFFF;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.18rem;
  font-weight: 700;
  letter-spacing: -.02em;
}

.lost-found-titleline strong::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--purple) 0%,
    #BFA7DE 70%,
    transparent 100%
  );
}

.lost-found-titleline small {
  color: rgba(255,255,255,.46);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .02em;
}

@media (max-width: 680px) {
  .lost-found-titleline {
    gap: 8px;
  }

  .lost-found-divider {
    width: 18px;
  }

  .lost-found-titleline strong {
    font-size: 1.08rem;
  }

  .lost-found-titleline small {
    flex-basis: 100%;
    padding-left: 0;
  }
}


/* ------------------------------------------------------------
   V7.14 — LOST & FOUND TITLE POLISH
   Bigger app name, no underline, stronger colour hierarchy.
   ------------------------------------------------------------ */

.lost-found-titleline {
  margin-bottom: 28px;
  gap: 12px;
}

.lost-found-category {
  color: rgba(255,255,255,.62);
  font-size: .66rem;
  letter-spacing: .15em;
}

.lost-found-divider {
  width: 32px;
  background: rgba(255,255,255,.18);
}

.lost-found-titleline strong {
  color: #D9C3F0;
  font-size: clamp(1.55rem, 2.1vw, 2.05rem);
  font-weight: 700;
  letter-spacing: -.035em;
  line-height: 1;
}

/* remove old underline */
.lost-found-titleline strong::after {
  display: none;
}

.lost-found-titleline small {
  margin-left: 2px;
  color: rgba(255,255,255,.50);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
}

@media (max-width: 680px) {
  .lost-found-titleline {
    gap: 9px;
  }

  .lost-found-divider {
    width: 22px;
  }

  .lost-found-titleline strong {
    font-size: 1.45rem;
  }

  .lost-found-titleline small {
    flex-basis: 100%;
    margin-top: 2px;
  }
}


/* ------------------------------------------------------------
   V7.15 — LOST & FOUND INTRODUCTION
   ------------------------------------------------------------ */

.lost-found-titleline {
  display: none;
}

.lost-found-introduction {
  margin-bottom: 28px;
}

.lost-found-intro-label {
  margin-bottom: 8px;
  color: rgba(255,255,255,.58);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.lost-found-app-name {
  max-width: none;
  color: #5B3A98;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(2.15rem, 3.2vw, 3.45rem);
  line-height: 1;
  letter-spacing: -.045em;
}

.lost-found-app-type {
  margin-top: 9px;
  color: #BFA7DE;
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .01em;
}

.lost-found-main-heading {
  margin-top: 0;
}

@media (max-width: 680px) {
  .lost-found-introduction {
    margin-bottom: 24px;
  }

  .lost-found-app-name {
    font-size: 2rem;
  }

  .lost-found-app-type {
    font-size: .86rem;
  }
}


/* ------------------------------------------------------------
   V7.16 — LOST & FOUND TITLE BLEND
   ------------------------------------------------------------ */

.lost-found-intro-label {
  display: none;
}

.lost-found-app-name {
  color: #CDB8E8;
}

.lost-found-app-type {
  color: rgba(255,255,255,.66);
  font-weight: 700;
}

.lost-found-introduction {
  margin-bottom: 26px;
}


/* V7.17 — keep the final phrase together */
.lost-found-main-heading .keep-together {
  white-space: nowrap;
}


/* V7.18 — Lost & Found headline wording */
.lost-found-main-heading .keep-together {
  white-space: normal;
}

.lost-found-main-heading .headline-break {
  display: block;
}


/* ------------------------------------------------------------
   V7.19 — PRIVATE BETA + LARGER NAV LOGO
   ------------------------------------------------------------ */

/* Compact beta modal designed to fit without desktop scrolling */
.beta-modal-compact {
  width: min(820px, 96vw);
  max-height: none;
  overflow: visible;
  padding: 30px 34px 28px;
}

.beta-brand-line {
  margin-bottom: 18px;
}

.beta-brand-line img {
  width: 42px;
  height: 42px;
}

.beta-compact-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.beta-compact-header .eyebrow {
  margin-bottom: 5px;
}

.beta-compact-header h2 {
  max-width: 12ch;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: .98;
}

.beta-private-badge {
  flex: 0 0 auto;
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D8CBE7;
  border-radius: 999px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: .76rem;
  font-weight: 800;
}

.beta-compact-intro {
  margin-top: 14px;
  max-width: 70ch;
  color: var(--body);
  font-size: .90rem;
  line-height: 1.5;
}

.beta-compact-grid {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.beta-compact-grid article {
  min-height: 122px;
  padding: 16px;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 11px;
  align-items: start;
  border: 1px solid #DED6E5;
  border-radius: 17px;
  background: linear-gradient(180deg, #FFFFFF 0%, #FAF7FC 100%);
}

.beta-compact-grid i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: .82rem;
}

.beta-compact-grid strong,
.beta-compact-grid span {
  display: block;
}

.beta-compact-grid strong {
  font-size: .86rem;
  line-height: 1.25;
}

.beta-compact-grid span {
  margin-top: 5px;
  color: var(--body);
  font-size: .74rem;
  line-height: 1.42;
}

.beta-access-note {
  margin-top: 12px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 11px;
  align-items: start;
  border: 1px solid rgba(115,77,188,.18);
  border-radius: 16px;
  background: linear-gradient(135deg, #F3ECF8 0%, #FAF7FC 100%);
}

.beta-access-note > i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: var(--purple);
  color: #FFFFFF;
  font-size: .76rem;
}

.beta-access-note strong {
  display: block;
  color: var(--purple-dark);
  font-size: .85rem;
}

.beta-access-note p {
  margin-top: 3px;
  color: var(--body);
  font-size: .76rem;
  line-height: 1.4;
}

.beta-compact-actions {
  margin-top: 18px;
}

.beta-compact-actions .button {
  min-height: 46px;
}

/* Retire the larger beta-only layouts from V7.7 */
.beta-test-grid,
.beta-feedback-band,
.beta-time-note,
#beta-link-status {
  display: none !important;
}

@media (max-width: 720px) {
  .beta-modal-compact {
    width: 100%;
    max-height: 92vh;
    overflow-y: auto;
    padding: 24px 20px 26px;
  }

  .beta-compact-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .beta-compact-grid {
    grid-template-columns: 1fr;
  }

  .beta-compact-grid article {
    min-height: 0;
  }
}


/* ------------------------------------------------------------
   V7.20 — PRIVATE BETA SCREENING
   ------------------------------------------------------------ */

.beta-screening-modal {
  width: min(850px, 96vw);
  padding: 28px 32px 26px;
}

.beta-screening-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.beta-screening-head h2 {
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.2vw, 2.8rem);
  line-height: 1;
}

.beta-screening-intro {
  margin-top: 10px;
  max-width: 70ch;
  color: var(--body);
  font-size: .86rem;
  line-height: 1.45;
}

.beta-request-form {
  margin-top: 18px;
  display: grid;
  gap: 12px;
}

.beta-form-grid {
  display: grid;
  gap: 12px;
}

.beta-form-grid-two {
  grid-template-columns: 1fr 1fr;
}

.beta-request-form label {
  display: grid;
  gap: 6px;
}

.beta-request-form label > span {
  color: var(--ink);
  font-size: .76rem;
  font-weight: 800;
}

.beta-request-form label small {
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
}

.beta-request-form input,
.beta-request-form select,
.beta-request-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid #CEC6D3;
  border-radius: 11px;
  background: #FFFFFF;
  color: var(--ink);
  font: inherit;
  font-size: .84rem;
}

.beta-request-form textarea {
  min-height: 76px;
  resize: vertical;
}

.beta-request-form input:focus,
.beta-request-form select:focus,
.beta-request-form textarea:focus {
  border-color: var(--purple);
  outline: 3px solid rgba(115,77,188,.10);
}

.beta-review-note {
  padding: 12px 14px;
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  align-items: start;
  border: 1px solid #D7CAE5;
  border-radius: 14px;
  background: var(--purple-pale);
}

.beta-review-note i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--purple);
  color: #FFFFFF;
  font-size: .70rem;
}

.beta-review-note p {
  color: var(--body);
  font-size: .74rem;
  line-height: 1.4;
}

#beta-request-status {
  min-height: 1em;
  margin-top: 0;
}

@media (max-width: 720px) {
  .beta-screening-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }

  .beta-form-grid-two {
    grid-template-columns: 1fr;
  }
}




/* ------------------------------------------------------------
   V7.21 — CONTENT + SPACING REFINEMENT
   ------------------------------------------------------------ */

/* AI-assisted matching: give the screenshot more visual weight. */
.ai-match-section .feature-visual {
  min-height: 590px;
}

.phone-feature-match {
  width: 370px;
}

.ai-match-section .visual-backdrop-soft {
  width: 485px;
  height: 485px;
}

.ai-match-section .feature-lead {
  max-width: 46ch;
}

/* Second row in Inside the App now follows the same phone language
   as the first row — no cards, no descriptive paragraphs. */
.app-secondary-showcase {
  min-height: 575px;
  margin-top: 12px;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
}

.showcase-glow-secondary {
  width: min(680px, 62vw);
  height: 330px;
  opacity: .72;
}

.phone-showcase-secondary {
  width: 250px;
}

.phone-showcase-secondary-main {
  width: 275px;
}

.app-secondary-left {
  transform: translateX(32px) rotate(-2deg) scale(.96);
}

.app-secondary-center {
  z-index: 4;
}

.app-secondary-right {
  transform: translateX(-32px) rotate(2deg) scale(.96);
}

.app-secondary-phone span {
  margin-top: 2px;
}

/* Pull the beta CTA a little closer to the screenshots. */
.app-beta-cta {
  margin-top: 12px;
}

/* Section-anchor content should feel deliberate rather than padded away. */
section[id] > .site-shell {
  scroll-margin-top: 0;
}

@media (max-width: 1180px) {
  .phone-feature-match {
    width: 340px;
  }

  .app-secondary-showcase {
    min-height: 520px;
  }

  .phone-showcase-secondary {
    width: 225px;
  }

  .phone-showcase-secondary-main {
    width: 250px;
  }

  .app-secondary-left,
  .app-secondary-right {
    transform: none;
  }
}

@media (max-width: 980px) {
  .ai-match-section .feature-visual {
    min-height: 530px;
  }

  .phone-feature-match {
    width: 325px;
  }

  .app-secondary-showcase {
    min-height: auto;
    margin-top: 38px;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .phone-showcase-secondary,
  .phone-showcase-secondary-main {
    width: min(220px, 27vw);
  }
}

@media (max-width: 680px) {
  .section {
    padding: 64px 0;
  }

  .flow-section {
    padding: 64px 0;
  }

  .ai-match-section .feature-visual {
    min-height: 465px;
  }

  .phone-feature-match {
    width: min(300px, 80vw);
  }

  .ai-match-section .visual-backdrop-soft {
    width: 340px;
    height: 340px;
  }

  .app-secondary-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .phone-showcase-secondary,
  .phone-showcase-secondary-main {
    width: min(270px, 72vw);
  }

  .app-secondary-left,
  .app-secondary-center,
  .app-secondary-right {
    transform: none;
  }
}


/* ------------------------------------------------------------
   V7.23 — DARKER HOW IT HELPS CONTAINER
   ------------------------------------------------------------ */

.flow-board {
  border-color: #C3B3D4;
  background:
    linear-gradient(
      180deg,
      #E9E1F0 0%,
      #E1D6EA 100%
    );
  box-shadow:
    0 22px 48px rgba(45,31,58,.10),
    inset 0 1px 0 rgba(255,255,255,.60);
}

.flow-step {
  border-color: rgba(91,58,152,.22);
  background:
    linear-gradient(
      180deg,
      rgba(255,255,255,.96) 0%,
      rgba(247,243,250,.96) 100%
    );
}

.flow-board-line {
  background:
    linear-gradient(
      90deg,
      rgba(91,58,152,.34) 0%,
      rgba(91,58,152,.62) 50%,
      rgba(91,58,152,.34) 100%
    );
}


/* ------------------------------------------------------------
   V7.25 — OPPOSITE ROTATION FOR LOWER APP ROW
   The second row mirrors the visual direction of the first.
   ------------------------------------------------------------ */

.app-secondary-left {
  transform: translateX(32px) rotate(3deg) scale(.96);
}

.app-secondary-right {
  transform: translateX(-32px) rotate(-3deg) scale(.96);
}


/* ------------------------------------------------------------
   V7.26 — REUNITED MATCHES MAIN PHONE SIZE
   ------------------------------------------------------------ */

.phone-showcase-secondary-main {
  width: 330px;
}

@media (max-width: 1180px) {
  .phone-showcase-secondary-main {
    width: 300px;
  }
}

@media (max-width: 980px) {
  .phone-showcase-secondary-main {
    width: min(250px, 30vw);
  }
}

@media (max-width: 680px) {
  .phone-showcase-secondary-main {
    width: min(300px, 80vw);
  }
}


/* ------------------------------------------------------------
   V7.27 — STRONGER ANDROID BETA CTA
   ------------------------------------------------------------ */

.app-beta-cta {
  border: 2px solid #B79ED3;
  background:
    linear-gradient(
      135deg,
      #F4EEF9 0%,
      #FFFFFF 68%
    );
  box-shadow:
    0 16px 34px rgba(91,58,152,.08),
    inset 0 1px 0 rgba(255,255,255,.85);
}

.app-beta-cta h3 {
  color: var(--purple-dark);
}

.app-beta-cta .eyebrow {
  color: var(--purple);
}

.app-beta-cta .button-primary {
  box-shadow: 0 8px 18px rgba(91,58,152,.14);
}


/* V7.29 — Contact heading is intentionally concise */
.contact-heading {
  max-width: 760px;
}

.contact-heading h2 {
  margin-bottom: 0;
}


/* ------------------------------------------------------------
   V7.30 — TEAM HEADING FIX
   Override the old two-column Team heading layout.
   ------------------------------------------------------------ */

.team-heading.team-heading-unified {
  display: block;
  width: min(100%, 980px);
  max-width: none;
  margin: 0 auto;
  text-align: center;
}

.team-heading.team-heading-unified .eyebrow {
  margin-bottom: 12px;
}

.team-heading.team-heading-unified h2 {
  max-width: none;
  margin: 0 auto;
  font-size: clamp(2.7rem, 4.6vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.055em;
}

.team-heading.team-heading-unified h2 span {
  display: block;
  color: var(--purple-dark);
}

.team-unified {
  margin-top: 38px;
}

@media (max-width: 680px) {
  .team-heading.team-heading-unified {
    text-align: left;
  }

  .team-heading.team-heading-unified h2 {
    font-size: clamp(2.35rem, 11vw, 3.3rem);
  }
}


/* ------------------------------------------------------------
   V7.32 — TEAM HEADING LEFT ALIGNMENT
   ------------------------------------------------------------ */

.team-heading.team-heading-unified {
  width: 100%;
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.team-heading.team-heading-unified h2 {
  max-width: 12ch;
  margin: 0;
}

.team-heading.team-heading-unified h2 span {
  display: block;
}

@media (max-width: 680px) {
  .team-heading.team-heading-unified {
    max-width: none;
  }
}


/* ------------------------------------------------------------
   V7.34 — APP-STYLE PURPLE SELECTION UI
   ------------------------------------------------------------ */

/* FAQ controls: solid purple circle, white plus */
.faq-question i {
  border-color: var(--purple);
  background: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 5px 12px rgba(91,58,152,.14);
}

.faq-question:hover i {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  color: #FFFFFF;
}

.faq-item.open .faq-question i {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  color: #FFFFFF;
  transform: rotate(45deg);
}

/* Desktop navigation: selected section becomes a filled purple pill */
.desktop-nav a {
  min-height: 40px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  transition:
    color .18s ease,
    background .18s ease,
    transform .18s ease;
}

.desktop-nav a:hover {
  color: #FFFFFF;
  background: rgba(115,77,188,.14);
}

.desktop-nav a.active {
  color: #FFFFFF;
  background: var(--purple);
  box-shadow: 0 7px 16px rgba(91,58,152,.18);
}

/* Remove the old underline selection treatment */
.desktop-nav a.active::after {
  display: none;
}

/* Mobile navigation: same selected state */
.mobile-nav a[data-nav-section] {
  border-radius: 14px;
}

.mobile-nav a[data-nav-section].active {
  background: var(--purple);
  color: #FFFFFF;
}


/* ------------------------------------------------------------
   V7.35 — TEAM CONTENT ORDER
   Photo → Name → Role → Short text
   ------------------------------------------------------------ */

.team-person h3 {
  margin-top: 20px;
  font-size: 1.48rem;
}

.team-person .team-role {
  min-height: 2.4em;
  margin: 7px auto 0;
  color: var(--purple);
  font-size: .67rem;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: .075em;
  text-transform: uppercase;
}

.team-person-focus {
  margin-top: 7px;
  color: var(--body);
  font-size: .84rem;
  font-weight: 700;
}

@media (max-width: 620px) {
  .team-person h3 {
    margin-top: 16px;
    font-size: 1.24rem;
  }

  .team-person .team-role {
    min-height: 3.2em;
    margin-top: 6px;
    font-size: .60rem;
  }

  .team-person-focus {
    margin-top: 5px;
    font-size: .76rem;
  }
}


/* ------------------------------------------------------------
   V7.36 — TEAM TITLE LINE WRAP
   Keep "One shared purpose." together on one line.
   ------------------------------------------------------------ */

.team-heading.team-heading-unified {
  max-width: 1100px;
}

.team-heading.team-heading-unified h2 {
  max-width: none;
}

.team-heading.team-heading-unified h2 span {
  display: block;
  width: max-content;
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 680px) {
  .team-heading.team-heading-unified h2 span {
    width: auto;
    white-space: normal;
  }
}


/* ------------------------------------------------------------
   V7.37 — APP SHOWCASE CENTER PHONE SIZING
   Possible Matches + Reunited remain featured, but less oversized.
   ------------------------------------------------------------ */

.phone-showcase-main {
  width: 305px;
}

.phone-showcase-secondary-main {
  width: 305px;
}

@media (max-width: 1180px) {
  .phone-showcase-main,
  .phone-showcase-secondary-main {
    width: 285px;
  }
}

@media (max-width: 980px) {
  .phone-showcase-main,
  .phone-showcase-secondary-main {
    width: min(245px, 29vw);
  }
}

@media (max-width: 680px) {
  .phone-showcase-main,
  .phone-showcase-secondary-main {
    width: min(285px, 76vw);
  }
}


/* ------------------------------------------------------------
   V7.38 — HOW IT HELPS: STRONGER SECTION
   Left heading + dark connected process board.
   ------------------------------------------------------------ */

.flow-section {
  background:
    radial-gradient(circle at 12% 10%, rgba(115,77,188,.07), transparent 25%),
    linear-gradient(180deg, #F8F6FA 0%, #F4F1F7 100%);
}

.flow-heading {
  max-width: 920px;
  margin: 0;
  text-align: left;
}

.flow-heading h2 {
  max-width: 12ch;
  margin: 0;
}

.flow-heading h2 span {
  display: block;
  color: var(--purple);
}

.flow-board {
  overflow: hidden;
  margin-top: 44px;
  padding: 34px 30px;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% -10%, rgba(115,77,188,.30), transparent 34%),
    linear-gradient(145deg, #302D32 0%, #252327 58%, #2C292F 100%);
  box-shadow:
    0 30px 70px rgba(25,20,30,.20),
    inset 0 1px 0 rgba(255,255,255,.07);
}

.flow-board::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      rgba(255,255,255,.035) 0%,
      transparent 28%,
      transparent 72%,
      rgba(115,77,188,.05) 100%
    );
}

.flow-board-line {
  top: 117px;
  height: 3px;
  background:
    linear-gradient(
      90deg,
      rgba(176,147,229,.18) 0%,
      rgba(176,147,229,.82) 46%,
      rgba(176,147,229,.82) 54%,
      rgba(176,147,229,.18) 100%
    );
  box-shadow: 0 0 16px rgba(115,77,188,.28);
}

.flow-step {
  border: 1px solid rgba(255,255,255,.14);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F7F4FA 100%);
  box-shadow:
    0 18px 34px rgba(9,7,11,.18),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.flow-icon {
  border: 1.5px solid rgba(115,77,188,.34);
  background: #F3ECFB;
  color: var(--purple-dark);
  box-shadow:
    0 10px 24px rgba(91,58,152,.10),
    0 0 0 5px rgba(255,255,255,.70);
}

.flow-line strong {
  color: var(--ink);
}

.flow-step p {
  color: #625D66;
}

@media (max-width: 1100px) {
  .flow-board {
    padding: 28px;
  }
}

@media (max-width: 680px) {
  .flow-heading h2 {
    max-width: 10ch;
  }

  .flow-board {
    margin-top: 34px;
    padding: 22px;
    border-radius: 28px;
  }
}


/* ------------------------------------------------------------
   V7.39 — CORRECT APP FLOW
   Actual report hierarchy: report creation first, matching after publish.
   ------------------------------------------------------------ */

.flow-board-line {
  display: none;
}

.flow-line.flow-line-actual {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.flow-line.flow-line-actual .flow-step {
  min-height: 238px;
  padding: 22px 20px 20px;
}

.flow-line.flow-line-actual .flow-step:nth-child(n+5) {
  position: relative;
}

.flow-line.flow-line-actual .flow-step:nth-child(n+5)::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 54px;
  height: 3px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(176,147,229,.72);
}

.flow-line.flow-line-actual .flow-step p b {
  color: var(--purple-dark);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .flow-line.flow-line-actual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-line.flow-line-actual .flow-step:nth-child(n+5)::before {
    display: none;
  }
}

@media (max-width: 620px) {
  .flow-line.flow-line-actual {
    grid-template-columns: 1fr;
  }

  .flow-line.flow-line-actual .flow-step {
    min-height: 0;
  }
}


/* ------------------------------------------------------------
   V7.40 — HOW IT WORKS CARD GRID
   Inspired by the provided reference structure:
   dark section + two rows of large process cards.
   ------------------------------------------------------------ */

.flow-section {
  background:
    radial-gradient(circle at 12% 8%, rgba(115,77,188,.20), transparent 24%),
    linear-gradient(180deg, #222024 0%, #1D1B1F 100%);
}

.flow-section .flow-heading .eyebrow {
  color: #C9B5F3;
}

.flow-section .flow-heading h2 {
  color: #FFFFFF;
  max-width: 11ch;
}

.flow-section .flow-heading h2 span {
  color: #B89AEF;
}

.how-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.how-card {
  min-height: 320px;
  padding: 24px 24px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #2B292D;
  box-shadow:
    0 16px 34px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.how-card-copy {
  text-align: center;
}

.how-step {
  margin: 0 0 8px;
  color: #B89AEF;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.how-card h3 {
  color: #FFFFFF;
  font-size: 1.18rem;
  line-height: 1.2;
}

.how-card-copy > p:last-child {
  max-width: 31ch;
  margin: 16px auto 0;
  color: #D8D3DB;
  font-size: .84rem;
  line-height: 1.55;
}

.how-card-copy strong {
  color: #FFFFFF;
  font-weight: 750;
}

.how-card-icon {
  min-height: 128px;
  display: grid;
  place-items: center;
  margin-top: 20px;
  color: #FFFFFF;
  font-size: 4.2rem;
  opacity: .92;
}

.how-card:nth-child(6) .how-card-icon,
.how-card:nth-child(7) .how-card-icon {
  color: #CDBAF1;
}

@media (max-width: 1180px) {
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .how-card {
    min-height: 300px;
  }
}

@media (max-width: 680px) {
  .how-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .how-card {
    min-height: 0;
    padding: 24px 22px;
  }

  .how-card-icon {
    min-height: 100px;
    font-size: 3.5rem;
  }
}


/* ------------------------------------------------------------
   V7.41 — HOW IT WORKS: SIX KEY STEPS
   Keep the V7.40 visual style, simplify to the essential journey.
   ------------------------------------------------------------ */

.how-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how-card {
  min-height: 330px;
}

.how-card:nth-child(2) .how-card-icon,
.how-card:nth-child(4) .how-card-icon,
.how-card:nth-child(5) .how-card-icon {
  color: #CDBAF1;
}

@media (max-width: 980px) {
  .how-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .how-grid {
    grid-template-columns: 1fr;
  }

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


/* ------------------------------------------------------------
   V7.43 — MEET ALL FOR ALL PETS
   Three-card brand introduction, matching the stronger dark visual
   language established in How It Works.
   ------------------------------------------------------------ */

.meet-brand-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 6%, rgba(115,77,188,.18), transparent 26%),
    radial-gradient(circle at 90% 88%, rgba(115,77,188,.10), transparent 28%),
    linear-gradient(180deg, #211F23 0%, #1C1A1E 100%);
}

.meet-brand-heading {
  max-width: 980px;
}

.meet-brand-heading .eyebrow {
  color: #C9B5F3;
}

.meet-brand-heading h2 {
  max-width: 16ch;
  color: #FFFFFF;
}

.meet-brand-grid {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.meet-brand-card {
  min-height: 390px;
  padding: 34px 32px 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #2B292D;
  box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
}

.meet-brand-icon {
  min-height: 62px;
  display: grid;
  place-items: center;
  color: #B89AEF;
  font-size: 2.3rem;
}

.meet-brand-rule {
  width: 44px;
  height: 3px;
  margin: 10px 0 16px;
  border-radius: 999px;
  background: var(--purple);
}

.meet-brand-label {
  margin: 0 0 10px;
  color: #CDBAF1;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.meet-brand-card h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  line-height: 1.15;
}

.meet-brand-card > p:last-child {
  max-width: 38ch;
  margin-top: 20px;
  color: #DDD8E0;
  font-size: .94rem;
  line-height: 1.65;
}

@media (max-width: 980px) {
  .meet-brand-grid {
    grid-template-columns: 1fr;
  }

  .meet-brand-card {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .meet-brand-grid {
    margin-top: 32px;
    gap: 14px;
  }

  .meet-brand-card {
    padding: 28px 22px 30px;
  }

  .meet-brand-heading h2 {
    max-width: none;
  }
}


/* ------------------------------------------------------------
   V7.45 — MEET ALL FOR ALL PETS: WHITE SECTION BACKGROUND
   Keep the three feature cards dark for contrast.
   ------------------------------------------------------------ */

.meet-brand-section {
  background: #FFFFFF;
}

.meet-brand-heading .eyebrow {
  color: var(--purple);
}

.meet-brand-heading h2 {
  color: var(--ink);
}


/* ------------------------------------------------------------
   V7.46 — ABOUT GROUP
   Meet All For All Pets + Meet the Team are one navigation section.
   ------------------------------------------------------------ */

.about-group {
  display: block;
}


/* ------------------------------------------------------------
   V7.47 — CONTACT CLEANUP
   Reduce repeated copy and let the map use the full content width.
   ------------------------------------------------------------ */

.contact-layout {
  grid-template-columns: .68fr 1.32fr;
  align-items: stretch;
}

.contact-card.contact-card-compact {
  min-height: 0;
  padding: 34px;
  justify-content: space-between;
}

.contact-brand-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-card .contact-brand-row h3 {
  margin: 0;
  color: #FFFFFF;
  font-size: clamp(1.45rem, 2vw, 2rem);
  line-height: 1.05;
}

.contact-card-compact .contact-logo {
  width: 76px;
  height: 76px;
  flex: 0 0 76px;
}

.contact-details.contact-details-compact {
  position: relative;
  z-index: 1;
  margin-top: 40px;
}

.contact-details.contact-details-compact > div {
  padding-top: 18px;
}

#contact-form-status:empty {
  display: none;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.form-turnstile {
  min-height: 1px;
}

.form-turnstile:empty {
  display: none;
}

.contact-form [aria-busy="true"] {
  cursor: wait;
}

.contact-form .button.is-submitting {
  opacity: .72;
  pointer-events: none;
}

#contact-form-status.is-success,
.form-inline-status.is-success {
  color: #2E6B45;
}

#contact-form-status.is-error,
.form-inline-status.is-error {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid #DCAAAA;
  border-radius: 12px;
  background: #FFF3F3;
  color: #8B2424;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form input.field-invalid,
.contact-form select.field-invalid,
.contact-form textarea.field-invalid {
  border-color: #D05A5A;
  background: #FFFAFA;
  box-shadow: 0 0 0 2px rgba(185,64,64,.08);
}

.contact-form input[type="checkbox"].field-invalid {
  outline: 3px solid rgba(185,64,64,.18);
  outline-offset: 2px;
}

.contact-form .field-error-message {
  display: block;
  width: 100%;
  margin: 1px 0 0;
  color: #A23C3C;
  font-size: .74rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: left;
}

.contact-form .field-error-message[hidden] {
  display: none;
}

.contact-form .legal-check .field-error-message {
  width: 100%;
  margin: 5px 0 0;
  text-align: left;
}

.contact-form button[type="submit"].is-form-incomplete:not(:disabled),
.contact-form button[type="submit"].is-form-incomplete:not(:disabled):hover,
.contact-form button[type="submit"].is-form-incomplete:not(:disabled):focus-visible {
  border-color: #C8C1CE;
  background: #C8C1CE;
  color: #625C66;
  box-shadow: none;
  transform: none;
}

.map-row.map-row-full {
  width: 100%;
  grid-template-columns: 1fr;
  margin-top: 22px;
  border-radius: var(--radius-lg);
}

.map-row-full .map-frame,
.map-row-full .map-frame iframe {
  width: 100%;
  min-height: 360px;
}

@media (max-width: 980px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-card.contact-card-compact {
    min-height: 210px;
  }
}

@media (max-width: 680px) {
  .contact-card.contact-card-compact {
    min-height: 0;
    padding: 26px;
  }

  .contact-card-compact .contact-logo {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .contact-details.contact-details-compact {
    margin-top: 30px;
  }

  .map-row-full .map-frame,
  .map-row-full .map-frame iframe {
    min-height: 300px;
  }
}


/* ------------------------------------------------------------
   V7.48 — CONTACT LEFT BOX RESTORE
   Restore useful content that was not requested for removal.
   ------------------------------------------------------------ */

.contact-highlights.contact-highlights-compact {
  position: relative;
  z-index: 1;
  margin-top: 30px;
}

.contact-card-compact .contact-details.contact-details-compact {
  margin-top: 26px;
}


/* ------------------------------------------------------------
   V7.49 — NAV + SUPPORT + CLOSING VISION
   ------------------------------------------------------------ */

.support-payment-link {
  gap: 9px;
}

.support-payment-link i {
  font-size: .78em;
}

.support-external-note {
  border-color: rgba(115,77,188,.20);
  background: var(--purple-pale);
}

.support-external-note i {
  color: var(--purple);
}

/* Bigger Vision now acts as the closing statement before Contact. */
.faq-section + .vision-section {
  margin-top: 0;
}

.vision-section + .contact-section {
  border-top: 0;
}


/* ------------------------------------------------------------
   V7.50 — RESPONSIVE AUDIT
   Desktop design unchanged. Improvements target small laptops,
   tablets, phones and very narrow phones.
   ------------------------------------------------------------ */

body {
  overflow-x: clip;
}

/* ------------------------------------------------------------
   SMALL LAPTOP / LARGE TABLET HEADER
   The longer "Bringing Pets Home" nav label plus two actions can
   become crowded before the old 980px hamburger breakpoint.
   Move only the HEADER to mobile navigation earlier.
   ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .header-inner {
    min-height: 82px;
  }

  .brand-logo {
    width: 64px;
    height: 64px;
  }

  .desktop-nav,
  .header-action-group {
    display: none;
  }

  .menu-button {
    margin-left: auto;
    width: 46px;
    height: 46px;
    padding: 9px;
    border: 0;
    display: block;
    background: transparent;
  }

  .menu-button span {
    height: 2px;
    margin: 6px 0;
    display: block;
    border-radius: 99px;
    background: #CDB8E8;
    transition: transform .2s ease, opacity .2s ease;
  }

  .menu-button.open span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-button.open span:nth-child(2) {
    opacity: 0;
  }

  .menu-button.open span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .mobile-nav.open {
    display: block;
    background: var(--header);
  }

  .mobile-nav-inner {
    padding: 8px 0 22px;
    display: grid;
  }

  .mobile-nav a {
    min-height: 50px;
    padding-inline: 14px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,.08);
    color: var(--white);
    font-weight: 700;
    text-decoration: none;
  }

  .mobile-nav a[data-nav-section].active {
    border-bottom-color: transparent;
  }

  .mobile-launch-link {
    margin-top: 12px;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.22) !important;
    border-radius: 999px;
  }

  .mobile-support-link {
    margin-top: 10px;
  }
}

/* ------------------------------------------------------------
   TABLET APP SHOWCASES
   Keep all three phones visible without horizontal crowding.
   ------------------------------------------------------------ */

@media (min-width: 681px) and (max-width: 820px) {
  .app-showcase {
    min-height: 510px;
  }

  .phone-showcase-side {
    width: min(205px, 29vw);
  }

  .phone-showcase-main {
    width: min(220px, 30vw);
  }

  .app-secondary-showcase {
    min-height: 470px;
    gap: 10px;
  }

  .phone-showcase-secondary {
    width: min(195px, 27vw);
  }

  .phone-showcase-secondary-main {
    width: min(215px, 29vw);
  }

  .showcase-phone {
    gap: 13px;
  }

  .showcase-phone span {
    font-size: .88rem;
  }
}

/* ------------------------------------------------------------
   TABLET / MOBILE CONTENT POLISH
   ------------------------------------------------------------ */

@media (max-width: 900px) {
  .support-paths {
    gap: 16px;
  }

  .support-path {
    padding: 30px;
  }

  .meet-brand-card {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 680px) {
  .section,
  .flow-section {
    padding: 60px 0;
  }

  .eyebrow {
    margin-bottom: 12px;
  }

  /* How It Works */
  .how-grid {
    margin-top: 30px;
  }

  .how-card {
    padding: 22px 20px 24px;
  }

  .how-card-icon {
    min-height: 88px;
    margin-top: 15px;
    font-size: 3.15rem;
  }

  /* Meet All For All Pets */
  .meet-brand-card {
    min-height: 0;
  }

  .meet-brand-card > p:last-child {
    font-size: .90rem;
    line-height: 1.6;
  }

  /* Support */
  .support-path {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .support-impact-list,
  .partner-tags {
    margin: 20px 0 24px;
    gap: 8px;
  }

  .support-impact-list span,
  .partner-tags span {
    padding: 8px 10px;
    font-size: .73rem;
  }

  .support-path .button {
    width: 100%;
  }

  /* FAQ */
  .faq-question {
    gap: 12px;
  }

  /* Contact */
  .contact-layout {
    margin-top: 36px;
    gap: 16px;
  }

  .contact-form {
    gap: 17px;
  }

  .contact-details strong {
    overflow-wrap: anywhere;
  }

  .map-row.map-row-full {
    margin-top: 16px;
  }
}

/* ------------------------------------------------------------
   NARROW PHONES
   ------------------------------------------------------------ */

@media (max-width: 460px) {
  .site-shell {
    width: 90vw;
  }

  h1 {
    font-size: clamp(2.65rem, 12vw, 3.35rem);
  }

  h2 {
    font-size: clamp(2.08rem, 9.6vw, 2.75rem);
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }

  .brand span {
    font-size: .86rem;
  }

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

  /* Team becomes one readable profile per row on narrow phones. */
  .team-unified {
    padding: 26px 20px 28px;
  }

  .team-unified-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .team-pet-photo-large {
    width: 100px;
    height: 100px;
  }

  .team-person .team-role {
    min-height: 0;
    max-width: 30ch;
    margin-inline: auto;
  }

  .team-person-focus {
    max-width: 34ch;
    margin-inline: auto;
  }

  /* Contact keeps comfortable internal width. */
  .contact-card.contact-card-compact,
  .contact-form {
    padding: 22px 20px;
  }

  .contact-brand-row {
    gap: 13px;
  }

  .contact-card-compact .contact-logo {
    width: 58px;
    height: 58px;
    flex-basis: 58px;
  }

  .contact-card .contact-brand-row h3 {
    font-size: 1.35rem;
  }

  .contact-highlights.contact-highlights-compact {
    margin-top: 24px;
  }

  .map-row-full .map-frame,
  .map-row-full .map-frame iframe {
    min-height: 260px;
  }

  /* Modals */
  .site-modal-panel {
    padding: 24px 18px 26px;
  }

  .modal-intro h2 {
    font-size: clamp(1.9rem, 9vw, 2.5rem);
  }

  .support-use-grid article {
    padding: 15px;
    grid-template-columns: 40px 1fr;
  }

  .support-use-grid i {
    width: 38px;
    height: 38px;
  }

  .support-payment-link {
    white-space: normal;
    text-align: center;
  }

  /* FAQ control stays circular and doesn't shrink. */
  .faq-question {
    grid-template-columns: minmax(0, 1fr) 36px;
  }

  .faq-question i {
    flex: 0 0 auto;
  }
}


/* ------------------------------------------------------------
   V7.51 — UNIFIED DARK BACKGROUND
   Use the Bringing Pets Home charcoal as the master dark surface.
   ------------------------------------------------------------ */

/* Major dark page sections */
.section-dark,
.flow-section,
.site-footer {
  background: var(--charcoal);
}

/* Keep How It Works text hierarchy designed for a dark section. */
.flow-section {
  color: var(--white);
}

/*
  Dark cards intentionally remain a slightly lifted surface.
  This preserves depth while the page-level dark background stays consistent.
*/
.how-card,
.meet-brand-card {
  background:
    linear-gradient(145deg, rgba(255,255,255,.045), rgba(255,255,255,.018)),
    #343136;
}


/* ------------------------------------------------------------
   V7.52 — HOW IT WORKS ON WHITE
   Keep the dark process cards, but return the full section to white.
   ------------------------------------------------------------ */

.flow-section {
  background: #FFFFFF;
  color: var(--ink);
}

.flow-section .flow-heading .eyebrow {
  color: var(--purple);
}

.flow-section .flow-heading h2 {
  color: var(--ink);
}

.flow-section .flow-heading h2 span {
  color: var(--purple);
}


/* ------------------------------------------------------------
   V7.53 — HOW IT WORKS: DARK SECTION + WHITE CARDS
   ------------------------------------------------------------ */

.flow-section {
  background: var(--charcoal);
  color: var(--white);
}

.flow-section .flow-heading .eyebrow {
  color: #C9B5F3;
}

.flow-section .flow-heading h2 {
  color: #FFFFFF;
}

.flow-section .flow-heading h2 span {
  color: #C9B5F3;
}

.how-card {
  border-color: rgba(255,255,255,.12);
  background:
    linear-gradient(180deg, #FFFFFF 0%, #F7F5F9 100%);
  box-shadow:
    0 18px 36px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.95);
}

.how-step {
  color: var(--purple);
}

.how-card h3 {
  color: var(--ink);
}

.how-card-copy > p:last-child {
  color: #625D66;
}

.how-card-copy strong {
  color: var(--purple-dark);
}

.how-card-icon,
.how-card:nth-child(2) .how-card-icon,
.how-card:nth-child(4) .how-card-icon,
.how-card:nth-child(5) .how-card-icon {
  color: var(--purple-dark);
}


/* ------------------------------------------------------------
   V7.54 — HOW IT WORKS: SHORTER CARDS
   Reduce card height while keeping the approved visual style.
   ------------------------------------------------------------ */

.how-card {
  min-height: 255px;
  padding: 22px 22px 20px;
}

.how-card-copy > p:last-child {
  margin-top: 12px;
  line-height: 1.48;
}

.how-card-icon {
  min-height: 78px;
  margin-top: 12px;
  font-size: 3.25rem;
}

@media (max-width: 980px) {
  .how-card {
    min-height: 235px;
  }
}

@media (max-width: 680px) {
  .how-card {
    min-height: 0;
  }

  .how-card-icon {
    min-height: 70px;
    font-size: 3rem;
  }
}


/* ------------------------------------------------------------
   V7.55 — REUNITE ICON + CONSISTENT ICON COLOUR
   ------------------------------------------------------------ */

.how-card .how-card-icon,
.how-card:nth-child(1) .how-card-icon,
.how-card:nth-child(2) .how-card-icon,
.how-card:nth-child(3) .how-card-icon,
.how-card:nth-child(4) .how-card-icon,
.how-card:nth-child(5) .how-card-icon,
.how-card:nth-child(6) .how-card-icon {
  color: var(--purple-dark);
}


/* ------------------------------------------------------------
   V7.56 — SUPPORT PARTNER CARD CONSISTENCY
   Match the Partner card to the light Support card treatment.
   ------------------------------------------------------------ */

.support-path-partner {
  border: 1px solid rgba(115,77,188,.24);
  background:
    linear-gradient(145deg, #FFFFFF 0%, #F7F1FB 100%);
  color: var(--ink);
  box-shadow: 0 20px 45px rgba(51,35,67,.06);
}

.support-path-partner .support-path-label {
  color: var(--purple);
}

.support-path-partner > p:not(.support-path-label) {
  color: var(--body);
}

.support-path-partner .support-path-icon-light {
  border: 1px solid rgba(115,77,188,.26);
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.support-path-partner .partner-tags span {
  border: 1px solid rgba(115,77,188,.18);
  background: #FFFFFF;
  color: var(--purple-dark);
}

.support-path-partner .support-partner-button {
  border-color: rgba(115,77,188,.34);
  background: transparent;
  color: var(--purple-dark);
}

.support-path-partner .support-partner-button:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
  color: var(--purple-dark);
}


/* ------------------------------------------------------------
   V7.57 — SUPPORT: SIMPLE TWO-PATH VERSION
   ------------------------------------------------------------ */

.support-paths.support-paths-simple {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.support-path-simple {
  min-height: 330px;
  padding: 34px;
}

.support-path-simple > p:not(.support-path-label) {
  max-width: 40ch;
  margin-top: 14px;
}

.support-path-simple .button {
  margin-top: auto;
  align-self: flex-start;
}

.support-path-simple .support-path-icon {
  margin-bottom: 22px;
}

.support-path-simple .support-path-label {
  margin-bottom: 10px;
}

.support-path-simple h3 {
  max-width: 18ch;
}

@media (max-width: 900px) {
  .support-paths.support-paths-simple {
    grid-template-columns: 1fr;
  }

  .support-path-simple {
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .support-path-simple {
    padding: 26px 22px;
  }

  .support-path-simple .button {
    width: 100%;
  }
}


/* ------------------------------------------------------------
   V7.58 — INTERNAL PAGES / BETA / SUPPORT / LEGAL
   ------------------------------------------------------------ */

.footer-main-clean {
  align-items: start;
}

.footer-brand-clean {
  align-items: center;
}

.footer-brand-clean img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.footer-brand-clean strong {
  font-size: 1.05rem;
}

.footer-bottom-clean {
  justify-content: flex-end;
}

.header-support-cta,
.mobile-support-link,
.button-support-hero {
  text-decoration: none;
}

.internal-page {
  background: #FFFFFF;
}

.internal-hero {
  padding: clamp(92px, 8vw, 128px) 0 clamp(74px, 6vw, 96px);
}

.internal-hero-dark {
  background: var(--charcoal);
  color: #FFFFFF;
}

.internal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 60px;
  align-items: center;
}

.internal-hero h1 {
  max-width: 12ch;
}

.internal-hero-copy {
  max-width: 720px;
  margin-top: 22px;
  color: rgba(255,255,255,.72);
  font-size: clamp(1rem, 1.3vw, 1.18rem);
  line-height: 1.7;
}

.internal-hero-mark {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 34px;
  background: rgba(255,255,255,.05);
  color: #C9B5F3;
  font-size: 4.4rem;
}

.request-page-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: start;
}

.request-page-intro {
  position: sticky;
  top: 120px;
}

.request-page-intro h2,
.support-page-heading h2 {
  max-width: 13ch;
}

.request-page-intro > p:not(.eyebrow) {
  max-width: 48ch;
  margin-top: 20px;
  color: var(--body);
  line-height: 1.7;
}

.request-note,
.request-submit-note {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.request-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(115,77,188,.18);
  border-radius: 18px;
  background: var(--purple-pale);
}

.request-note i,
.request-submit-note i {
  margin-top: 3px;
  color: var(--purple);
}

.request-note p {
  color: var(--body);
  font-size: .87rem;
  line-height: 1.55;
}

.beta-page-form {
  padding: clamp(26px, 4vw, 42px);
  display: grid;
  gap: 20px;
  border: 1px solid #DDD5E5;
  border-radius: 30px;
  background: #FFFFFF;
  box-shadow: 0 24px 54px rgba(40,30,48,.07);
}

.beta-page-form label:not(.legal-check) {
  display: grid;
  gap: 8px;
}

.beta-page-form label > span {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.beta-page-form label small {
  color: #7C7680;
  font-weight: 600;
}

.legal-check {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: var(--body);
  font-size: .82rem;
  line-height: 1.5;
}

.legal-check input {
  margin-top: 3px;
}

.legal-check a {
  color: var(--purple-dark);
  font-weight: 800;
}

.request-submit-note {
  color: #716B74;
  font-size: .78rem;
}

.form-inline-status {
  min-height: 1.3em;
  color: var(--purple-dark);
  font-size: .80rem;
  line-height: 1.5;
}

.support-page-section {
  background: #FFFFFF;
}

.support-page-heading {
  max-width: 850px;
}

.support-use-grid-page {
  margin-top: 38px;
}

.support-payment-options {
  margin-top: 30px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.support-payment-card {
  min-height: 330px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(115,77,188,.20);
  border-radius: 28px;
  background: linear-gradient(145deg, #FFFFFF 0%, #F7F1FB 100%);
  box-shadow: 0 18px 42px rgba(51,35,67,.06);
}

.support-payment-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115,77,188,.24);
  border-radius: 16px;
  background: var(--purple-soft);
  color: var(--purple-dark);
  font-size: 1.35rem;
}

.support-payment-card h3 {
  font-size: 1.55rem;
}

.support-payment-card > p:not(.support-path-label) {
  max-width: 46ch;
  margin-top: 14px;
  color: var(--body);
  line-height: 1.65;
}

.support-payment-card .button {
  margin-top: auto;
  align-self: flex-start;
}

.third-party-note {
  max-width: 760px;
  margin: 20px 0 0;
  color: #777178;
  font-size: .78rem;
  line-height: 1.55;
}

.legal-hero {
  padding: 88px 0 54px;
  background: var(--purple-pale);
}

.legal-hero-inner {
  max-width: 980px;
}

.legal-hero h1 {
  color: var(--ink);
}

.legal-hero-inner > p:last-child {
  margin-top: 14px;
  color: #6B656E;
}

.legal-page-section {
  padding: 70px 0 100px;
  background: #FFFFFF;
}

.legal-layout {
  display: grid;
  grid-template-columns: 260px minmax(0, 820px);
  gap: clamp(46px, 7vw, 100px);
  justify-content: center;
  align-items: start;
}

.legal-summary {
  position: sticky;
  top: 120px;
  padding: 22px;
  border: 1px solid #E1DAE7;
  border-radius: 20px;
  background: #FAF8FC;
}

.legal-summary strong {
  color: var(--ink);
}

.legal-summary p {
  margin-top: 10px;
  color: var(--body);
  font-size: .86rem;
  line-height: 1.6;
}

.legal-summary a {
  margin-top: 16px;
  display: inline-block;
  color: var(--purple-dark);
  font-size: .82rem;
  font-weight: 800;
}

.legal-content {
  color: var(--body);
  line-height: 1.72;
}

.legal-content h2 {
  margin-top: 42px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  letter-spacing: -.025em;
}

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

.legal-content p,
.legal-content ul {
  margin-top: 14px;
}

.legal-content ul {
  padding-left: 22px;
}

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

.legal-content a {
  color: var(--purple-dark);
  font-weight: 700;
}

@media (max-width: 980px) {
  .internal-hero-grid {
    grid-template-columns: 1fr;
  }

  .internal-hero-mark {
    display: none;
  }

  .request-page-layout,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .request-page-intro,
  .legal-summary {
    position: static;
  }

  .support-payment-options {
    grid-template-columns: 1fr;
  }

  .legal-summary {
    max-width: 680px;
  }
}

@media (max-width: 680px) {
  .internal-hero {
    padding: 72px 0 58px;
  }

  .request-page-section,
  .support-page-section {
    padding: 60px 0;
  }

  .beta-page-form,
  .support-payment-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .beta-page-form .form-row {
    grid-template-columns: 1fr;
  }

  .support-payment-card {
    min-height: 0;
  }

  .support-payment-card .button {
    width: 100%;
  }

  .legal-hero {
    padding: 66px 0 42px;
  }

  .legal-page-section {
    padding: 54px 0 72px;
  }

  .legal-content h2 {
    margin-top: 34px;
  }

  .footer-bottom-clean {
    justify-content: flex-start;
  }
}


/* ------------------------------------------------------------
   V7.59 — SUPPORT PAGE: APP-STYLE DIRECT SUPPORT
   ------------------------------------------------------------ */

.direct-support-panel {
  margin-top: 34px;
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid rgba(115,77,188,.18);
  border-radius: 30px;
  background:
    radial-gradient(circle at 92% 8%, rgba(115,77,188,.08), transparent 26%),
    linear-gradient(145deg, #FFFFFF 0%, #F8F4FB 100%);
  box-shadow: 0 24px 54px rgba(51,35,67,.07);
}

.direct-support-heading {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: flex-end;
}

.direct-support-heading h2 {
  max-width: 13ch;
}

.support-frequency {
  padding: 5px;
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(115,77,188,.18);
  border-radius: 999px;
  background: #FFFFFF;
}

.support-frequency-button {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--body);
  font: inherit;
  font-size: .78rem;
  font-weight: 800;
  cursor: pointer;
}

.support-frequency-button.active {
  background: var(--purple);
  color: #FFFFFF;
}

.support-amount-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.support-amount {
  min-height: 76px;
  border: 1.5px solid #D7CFDF;
  border-radius: 20px;
  background: #FFFFFF;
  color: var(--ink);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  cursor: pointer;
  transition:
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.support-amount:hover {
  border-color: var(--purple);
  transform: translateY(-1px);
}

.support-amount.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 10px 24px rgba(91,58,152,.16);
}

.support-custom-amount {
  margin-top: 24px;
  display: grid;
  gap: 9px;
}

.support-custom-amount > span {
  color: var(--ink);
  font-size: .78rem;
  font-weight: 800;
}

.support-custom-input {
  max-width: 340px;
  height: 56px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #D9D2DF;
  border-radius: 16px;
  background: #FFFFFF;
}

.support-custom-input > span {
  color: var(--purple-dark);
  font-size: 1.05rem;
  font-weight: 800;
}

.support-custom-input input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-weight: 700;
}

.direct-support-summary {
  margin-top: 28px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: center;
  border: 1px solid rgba(115,77,188,.16);
  border-radius: 20px;
  background: rgba(255,255,255,.76);
}

.direct-support-summary > div {
  flex: 0 0 auto;
  display: grid;
  gap: 4px;
}

.direct-support-summary span {
  color: #746D77;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.direct-support-summary strong {
  color: var(--purple-dark);
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.35rem;
}

.direct-support-summary p {
  max-width: 53ch;
  color: var(--body);
  font-size: .88rem;
  line-height: 1.55;
}

.direct-support-action {
  margin-top: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.direct-support-status {
  max-width: 520px;
  color: #746D77;
  font-size: .78rem;
  line-height: 1.5;
}

.direct-support-trust {
  margin-top: 20px;
  padding-top: 18px;
  display: flex;
  gap: 10px;
  align-items: flex-start;
  border-top: 1px solid rgba(115,77,188,.12);
  color: #746D77;
  font-size: .76rem;
  line-height: 1.5;
}

.direct-support-trust i {
  margin-top: 2px;
  color: var(--purple);
}

.support-alternative {
  margin-top: 24px;
  padding: 28px 30px;
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
  border: 1px solid #DDD5E5;
  border-radius: 24px;
  background: #FFFFFF;
}

.support-alternative h3 {
  margin-top: 6px;
  font-size: 1.28rem;
}

.support-alternative p:not(.support-path-label) {
  margin-top: 8px;
  color: var(--body);
  font-size: .86rem;
}

.support-4fund-button {
  flex: 0 0 auto;
  border-color: rgba(115,77,188,.34);
  color: var(--purple-dark);
}

.support-4fund-button:hover {
  border-color: var(--purple);
  background: var(--purple-pale);
  color: var(--purple-dark);
}

@media (max-width: 820px) {
  .direct-support-heading,
  .direct-support-summary,
  .support-alternative {
    align-items: flex-start;
    flex-direction: column;
  }

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

@media (max-width: 520px) {
  .direct-support-panel {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .support-frequency {
    width: 100%;
  }

  .support-frequency-button {
    flex: 1;
  }

  .support-amount {
    min-height: 66px;
  }

  .support-custom-input {
    max-width: none;
  }

  .direct-support-action .button,
  .support-4fund-button {
    width: 100%;
  }

  .support-alternative {
    padding: 24px 20px;
  }
}


/* ------------------------------------------------------------
   V7.62 — CONTACT CARD ONLY
   Do not change the Contact section, form or map.
   ------------------------------------------------------------ */

/* Stop the left card from stretching to the full form height. */
.contact-layout {
  align-items: start;
}

/* Only the left Contact card uses the site's main charcoal. */
.contact-card.contact-card-compact {
  min-height: 0;
  align-self: start;
  padding: 24px 26px;
  background: var(--charcoal);
}

/* Tighten only the left card. */
.contact-card-compact .contact-logo {
  width: 60px;
  height: 60px;
  flex-basis: 60px;
}

.contact-card .contact-brand-row h3 {
  font-size: clamp(1.3rem, 1.7vw, 1.65rem);
}

.contact-highlights.contact-highlights-compact {
  margin-top: 18px;
}

.contact-card-compact .contact-details.contact-details-compact {
  margin-top: 16px;
}

.contact-details.contact-details-compact > div {
  padding-top: 14px;
}

@media (max-width: 680px) {
  .contact-card.contact-card-compact {
    padding: 22px 20px;
  }
}


/* ------------------------------------------------------------
   V7.63 — CONTACT: FLAT CARD + BALANCED HEIGHTS
   ------------------------------------------------------------ */

/* Left card and form should match in height again. */
.contact-layout {
  align-items: stretch;
}

/* Flat charcoal only — no purple gradient/glow. */
.contact-card.contact-card-compact {
  height: 100%;
  min-height: 0;
  align-self: stretch;
  padding: 26px 28px;
  justify-content: flex-start;
  background: var(--charcoal);
  background-image: none;
}

/* Safety: hide any legacy glow rule if older markup is ever restored. */
.contact-card-glow {
  display: none;
}

/* Keep contact details anchored toward the bottom without creating huge gaps. */
.contact-card-compact .contact-details.contact-details-compact {
  margin-top: auto;
  padding-top: 20px;
}

/* Slightly tighter left-card content. */
.contact-highlights.contact-highlights-compact {
  margin-top: 20px;
}

.contact-details.contact-details-compact > div {
  padding-top: 13px;
}

/* Reduce the FORM height instead of stretching the card. */
.contact-form {
  padding: 27px 28px;
  gap: 13px;
}

.contact-form .form-row {
  gap: 14px;
}

.contact-form label {
  gap: 6px;
}

.contact-form label > span {
  font-size: .80rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  min-height: 46px;
  padding: 10px 13px;
}

.contact-form textarea {
  min-height: 88px;
  resize: vertical;
}

.contact-form .form-footer {
  margin-top: 0;
}

/* Keep the pair balanced on tablet/mobile too. */
@media (max-width: 980px) {
  .contact-layout {
    align-items: stretch;
  }

  .contact-card.contact-card-compact {
    height: auto;
    min-height: 0;
  }
}

@media (max-width: 680px) {
  .contact-form {
    padding: 22px 20px;
    gap: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
  }

  .contact-form textarea {
    min-height: 82px;
  }

  .contact-card.contact-card-compact {
    padding: 22px 20px;
  }
}


/* ------------------------------------------------------------
   V7.64 — BETA REQUEST FORM = CONTACT FORM STYLE
   Same form component, with Beta-only field structure preserved.
   ------------------------------------------------------------ */

.beta-page-form.contact-form {
  padding: 27px 28px;
  gap: 13px;
  border: 1px solid #DDD5E5;
  border-radius: var(--radius-lg);
  background: #FFFFFF;
  box-shadow: none;
}

.beta-page-form.contact-form .form-row {
  gap: 14px;
}

.beta-page-form.contact-form label:not(.legal-check) {
  display: grid;
  gap: 6px;
}

.beta-page-form.contact-form label > span {
  color: var(--ink);
  font-size: .80rem;
  font-weight: 800;
}

.beta-page-form.contact-form input,
.beta-page-form.contact-form select,
.beta-page-form.contact-form textarea {
  min-height: 46px;
  padding: 10px 13px;
}

.beta-page-form.contact-form textarea {
  min-height: 88px;
  resize: vertical;
}

/* Keep Beta-only legal/help elements visually quiet inside the shared form. */
.beta-page-form.contact-form .legal-check {
  margin-top: 2px;
  padding-top: 2px;
}

.beta-page-form.contact-form .request-submit-note {
  margin-top: 0;
}

.beta-page-form.contact-form .button {
  justify-self: start;
}

@media (max-width: 680px) {
  .beta-page-form.contact-form {
    padding: 22px 20px;
    gap: 12px;
  }

  .beta-page-form.contact-form input,
  .beta-page-form.contact-form select,
  .beta-page-form.contact-form textarea {
    min-height: 44px;
  }

  .beta-page-form.contact-form textarea {
    min-height: 82px;
  }

  .beta-page-form.contact-form .button {
    width: 100%;
  }
}


/* ------------------------------------------------------------
   V7.65 — BETA PRIVACY CHECKBOX + SUBMIT VALIDATION
   ------------------------------------------------------------ */

.beta-page-form.contact-form .legal-check {
  margin: 2px 0 0;
  padding: 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.beta-page-form.contact-form .legal-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 2px 0 0;
  padding: 0;
  accent-color: var(--purple);
}

.beta-page-form.contact-form .legal-check > span {
  display: block;
  color: var(--body);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.5;
}

.beta-page-form.contact-form button[type="submit"]:disabled {
  border-color: #D7D1DC;
  background: #D7D1DC;
  color: #8A848D;
  box-shadow: none;
  cursor: not-allowed;
  transform: none;
  opacity: 1;
}

.beta-page-form.contact-form button[type="submit"]:not(:disabled) {
  cursor: pointer;
}


/* ------------------------------------------------------------
   V7.66 — BETA REQUEST BACK IN NAVIGATION
   ------------------------------------------------------------ */

.desktop-nav .nav-beta-link {
  white-space: nowrap;
}

.mobile-nav .mobile-beta-link {
  color: #DCCCF0;
}

.mobile-nav .mobile-beta-link:hover {
  color: #FFFFFF;
}


/* ------------------------------------------------------------
   V7.67 — ACTIVE BETA NAV STATE
   Dedicated-page links need their own active state rather than
   the homepage section scroll-spy.
   ------------------------------------------------------------ */

.desktop-nav .nav-beta-link.active {
  background: var(--purple);
  color: #FFFFFF;
  box-shadow: 0 7px 16px rgba(91,58,152,.18);
}

.mobile-nav .mobile-beta-link.active {
  background: var(--purple);
  color: #FFFFFF;
  border-bottom-color: transparent;
}


/* ------------------------------------------------------------
   V7.68 — HOW IT WORKS MATCHES MEET ALL FOR ALL PETS
   White section + identical dark-card colour language.
   ------------------------------------------------------------ */

.flow-section {
  background: #FFFFFF;
  color: var(--ink);
}

.flow-section .flow-heading .eyebrow {
  color: var(--purple);
}

.flow-section .flow-heading h2 {
  color: var(--ink);
}

.flow-section .flow-heading h2 span {
  color: var(--purple);
}

/* Match Meet All For All Pets card surface */
.how-card {
  border: 1px solid rgba(255,255,255,.08);
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.025)),
    #2B292D;
  box-shadow:
    0 18px 40px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.04);
}

/* Match Meet All For All Pets typography/accent palette */
.how-step {
  color: #CDBAF1;
}

.how-card h3 {
  color: #FFFFFF;
}

.how-card-copy > p:last-child {
  color: #DDD8E0;
}

.how-card-copy strong {
  color: #FFFFFF;
}

.how-card-icon,
.how-card:nth-child(1) .how-card-icon,
.how-card:nth-child(2) .how-card-icon,
.how-card:nth-child(3) .how-card-icon,
.how-card:nth-child(4) .how-card-icon,
.how-card:nth-child(5) .how-card-icon,
.how-card:nth-child(6) .how-card-icon {
  color: #B89AEF;
}


/* ------------------------------------------------------------
   V7.69 — HOW IT WORKS TYPOGRAPHY MATCH
   Use the exact same card typography scale as Meet All For All Pets.
   ------------------------------------------------------------ */

.how-step {
  margin: 0 0 10px;
  color: #CDBAF1;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.how-card h3 {
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: normal;
}

.how-card-copy > p:last-child {
  max-width: 38ch;
  margin: 20px auto 0;
  color: #DDD8E0;
  font-size: .94rem;
  font-weight: 400;
  line-height: 1.65;
}

.how-card-copy strong {
  color: #FFFFFF;
  font-weight: 700;
}

/* Keep the process cards compact without shrinking the typography. */
.how-card {
  min-height: 275px;
  padding: 28px 28px 24px;
}

.how-card-icon {
  min-height: 74px;
  margin-top: 14px;
  font-size: 3.1rem;
}

@media (max-width: 680px) {
  .how-card {
    min-height: 0;
    padding: 26px 22px;
  }

  .how-card h3 {
    font-size: 1.5rem;
  }

  .how-card-copy > p:last-child {
    font-size: .94rem;
    line-height: 1.65;
  }
}


/* ------------------------------------------------------------
   V7.71 — INSIDE THE APP: NO LOWER-ROW ROTATION ON SMALL SCREENS
   V7.25's later desktop rotation rule was overriding the earlier
   tablet/mobile reset. Keep the editorial tilt only on desktop.
   ------------------------------------------------------------ */

@media (max-width: 980px) {
  .app-secondary-left,
  .app-secondary-right {
    transform: none !important;
  }
}


/* ------------------------------------------------------------
   V7.72 — INSIDE THE APP: CLEAN TABLET BREAKPOINT
   At 1180px and below both screenshot rows use the same clean,
   non-rotated presentation. Desktop keeps the editorial tilt.
   ------------------------------------------------------------ */

@media (max-width: 1180px) {
  .showcase-phone-left,
  .showcase-phone-right,
  .app-secondary-left,
  .app-secondary-right {
    transform: none !important;
  }

  .app-showcase,
  .app-secondary-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }
}


/* ------------------------------------------------------------
   V7.73 — APP SHOWCASE ROTATION STRUCTURE
   Straight is now the DEFAULT at every width.
   Editorial rotation is opt-in only on true desktop (>1180px).
   This prevents older/base transform rules leaking into tablet.
   ------------------------------------------------------------ */

.showcase-phone-left,
.showcase-phone-right,
.app-secondary-left,
.app-secondary-right {
  transform: none !important;
}

/* True desktop only */
@media (min-width: 1181px) {
  .showcase-phone-left {
    transform: translateX(54px) rotate(-3deg) scale(.92) !important;
  }

  .showcase-phone-right {
    transform: translateX(-54px) rotate(3deg) scale(.92) !important;
  }

  .app-secondary-left {
    transform: translateX(32px) rotate(3deg) scale(.96) !important;
  }

  .app-secondary-right {
    transform: translateX(-32px) rotate(-3deg) scale(.96) !important;
  }
}

/* At tablet/laptop widths make both rows use the same geometry. */
@media (min-width: 821px) and (max-width: 1180px) {
  .app-showcase,
  .app-secondary-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
  }

  .phone-showcase-side {
    width: min(240px, 25vw);
  }

  .phone-showcase-main {
    width: min(265px, 27vw);
  }

  .showcase-phone {
    gap: 14px;
  }
}


/* ------------------------------------------------------------
   V7.74 — INSIDE THE APP: REAL MOBILE LAYOUT AT <=680PX
   A later tablet rule was overriding the original one-column
   mobile layout. Keep this final so mobile always wins.
   ------------------------------------------------------------ */

@media (max-width: 680px) {
  .app-showcase,
  .app-secondary-showcase {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .app-showcase {
    margin-top: 46px;
  }

  .app-secondary-showcase {
    margin-top: 34px;
  }

  .showcase-phone,
  .app-secondary-left,
  .app-secondary-center,
  .app-secondary-right {
    width: 100%;
    justify-items: center;
    transform: none !important;
  }

  .phone-showcase-side,
  .phone-showcase-main {
    width: min(285px, 76vw);
    max-width: 100%;
  }

  .showcase-glow,
  .showcase-glow-secondary {
    display: none;
  }
}


/* ------------------------------------------------------------
   V7.75 — MOBILE FOOTER: TWO-COLUMN + READABLE TYPE
   The old <=680px rule collapsed every footer block into one
   long column and retained desktop-small footer typography.
   ------------------------------------------------------------ */

@media (max-width: 680px) {
  .footer-main,
  .footer-main-clean {
    padding: 38px 0 30px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 24px;
    align-items: start;
  }

  /* Brand gets the full width, then Explore + Connect share a row. */
  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-brand-clean img {
    width: 60px;
    height: 60px;
  }

  .footer-brand-clean strong {
    font-size: 1.08rem;
  }

  .footer-brand-block > p {
    margin-top: 14px;
    max-width: 42ch;
    font-size: .90rem;
    line-height: 1.55;
  }

  .footer-column {
    gap: 10px;
  }

  .footer-column > strong {
    margin-bottom: 3px;
    font-size: .78rem;
    line-height: 1.3;
    letter-spacing: .075em;
  }

  .footer-column a,
  .footer-column span {
    font-size: .92rem;
    line-height: 1.45;
  }

  /* Legal stays compact rather than becoming a third tall column. */
  .footer-column:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(3, max-content);
    gap: 9px 24px;
    align-items: center;
  }

  .footer-column:last-child > strong {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .footer-bottom-clean {
    min-height: 0;
    padding: 14px 0 18px;
    font-size: .78rem;
    line-height: 1.4;
  }
}

@media (max-width: 420px) {
  .footer-main,
  .footer-main-clean {
    gap: 28px 18px;
  }

  .footer-column a,
  .footer-column span {
    font-size: .89rem;
  }

  .footer-column:last-child {
    grid-template-columns: repeat(2, max-content);
    gap: 8px 20px;
  }

  .footer-column:last-child > strong,
  .footer-column:last-child > span:last-child {
    grid-column: 1 / -1;
  }
}


/* ------------------------------------------------------------
   V7.76 — 320PX HARD FLOOR: REMOVE REAL HORIZONTAL OVERFLOW
   Decorative circles were 330–340px wide on a 320px viewport.
   Scale them inside the viewport instead of hiding the overflow.
   ------------------------------------------------------------ */

@media (max-width: 340px) {
  .hero-orbit,
  .visual-backdrop,
  .ai-match-section .visual-backdrop-soft {
    width: min(282px, 88vw);
    height: min(282px, 88vw);
  }

  .hero-orbit {
    border-width: 38px;
  }
}


/* ------------------------------------------------------------
   V7.77 — MOBILE POLISH PASS
   Header brand, FAQ, Support, Contact forms and Footer.
   ------------------------------------------------------------ */

/* FAQ: one clear heading only. */
.faq-heading h2 {
  max-width: 12ch;
}

@media (max-width: 900px) {
  .faq-heading h2 {
    max-width: none;
  }
}

/* Contact + Beta forms: slightly more readable typography. */
.contact-form label > span,
.beta-page-form.contact-form label > span {
  font-size: .85rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  font-size: 1.02rem;
}

/* Support cards: tighter icon-to-label relationship,
   slightly larger purple labels and more breathing room
   before each action button. */
.support-path-simple .support-path-icon {
  margin-bottom: 12px;
}

.support-path-simple .support-path-label {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: .75rem;
  line-height: 1.35;
  letter-spacing: .105em;
}

.support-path-simple > p:not(.support-path-label) {
  margin-bottom: 24px;
}

.support-path-simple .button {
  margin-top: auto;
}

/* Mobile header brand: slightly larger wordmark beside the logo. */
@media (max-width: 680px) {
  .brand span {
    font-size: 1.02rem;
    white-space: nowrap;
  }
}

@media (max-width: 460px) {
  .brand span {
    font-size: 1rem;
  }
}

/* Mobile footer: keep readable type but reduce vertical bulk. */
@media (max-width: 680px) {
  .footer-main,
  .footer-main-clean {
    padding: 28px 0 22px;
    gap: 22px 22px;
  }

  .footer-brand-clean img {
    width: 56px;
    height: 56px;
  }

  .footer-brand-clean strong {
    font-size: 1.10rem;
  }

  .footer-brand-block > p {
    margin-top: 10px;
    max-width: none;
    font-size: .92rem;
    line-height: 1.48;
  }

  .footer-column {
    gap: 7px;
  }

  .footer-column > strong {
    margin-bottom: 2px;
    font-size: .80rem;
  }

  .footer-column a,
  .footer-column span {
    font-size: .94rem;
    line-height: 1.38;
  }

  .footer-column:last-child {
    gap: 7px 22px;
  }

  .footer-bottom,
  .footer-bottom-clean {
    padding: 11px 0 14px;
    font-size: .80rem;
  }
}

@media (max-width: 420px) {
  .footer-main,
  .footer-main-clean {
    gap: 20px 18px;
  }

  .footer-column a,
  .footer-column span {
    font-size: .92rem;
  }

  .footer-column:last-child {
    gap: 7px 18px;
  }
}


/* ------------------------------------------------------------
   V7.79 — FOOTER COMPACTION + LOCATION BELOW COPYRIGHT
   ------------------------------------------------------------ */

/* More compact at all viewport sizes. */
.footer-main,
.footer-main-clean {
  padding-top: 44px;
  padding-bottom: 34px;
  gap: 34px;
}

.footer-column {
  gap: 7px;
}

.footer-column > strong {
  margin-bottom: 2px;
}

.footer-bottom,
.footer-bottom-clean {
  min-height: 0;
  padding: 15px 0 17px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.footer-location {
  color: rgba(255,255,255,.48);
}

/* Tablet / phone: reduce the space between footer groups further. */
@media (max-width: 680px) {
  .footer-main,
  .footer-main-clean {
    padding: 24px 0 18px;
    gap: 16px 20px;
  }

  .footer-brand-block > p {
    margin-top: 8px;
  }

  .footer-column {
    gap: 5px;
  }

  .footer-column > strong {
    margin-bottom: 1px;
  }

  /* Legal now contains only Privacy + Terms. */
  .footer-column:last-child {
    grid-template-columns: repeat(2, max-content);
    gap: 5px 24px;
  }

  .footer-column:last-child > strong {
    grid-column: 1 / -1;
  }

  .footer-bottom,
  .footer-bottom-clean {
    padding: 10px 0 13px;
    gap: 3px;
  }
}

@media (max-width: 420px) {
  .footer-main,
  .footer-main-clean {
    padding: 22px 0 16px;
    gap: 15px 16px;
  }

  .footer-column {
    gap: 4px;
  }

  .footer-column:last-child {
    gap: 4px 20px;
  }
}


/* ------------------------------------------------------------
   V7.80 — SHORTER HEADER NAV LABELS
   ------------------------------------------------------------ */

.desktop-nav .nav-beta-link,
.header-actions .button,
.header-cta,
.mobile-nav .mobile-beta-link,
.mobile-nav .mobile-support-link {
  white-space: nowrap;
}


/* ------------------------------------------------------------
   V7.81 — SUPPORT SECTION: DARK RHYTHM
   Match the Bringing Pets Home section's dark page-level treatment
   so the visual style changes deliberately as the user scrolls.
   ------------------------------------------------------------ */

.support-section {
  background: var(--charcoal);
  color: #FFFFFF;
}

.support-heading .eyebrow {
  color: #CDB8E8;
}

.support-heading h2 {
  color: #FFFFFF;
}

/* Light cards against the dark section for strong contrast. */
.support-path-primary,
.support-path-partner {
  border: 1px solid rgba(255,255,255,.12);
  background: #FFFFFF;
  color: var(--ink);
  box-shadow: 0 20px 46px rgba(0,0,0,.20);
}

/* Keep the second path subtly different without using a gradient. */
.support-path-partner {
  background: var(--purple-pale);
}

.support-path-primary .support-path-label,
.support-path-partner .support-path-label {
  color: var(--purple);
}

.support-path-primary h3,
.support-path-partner h3 {
  color: var(--ink);
}

.support-path-primary > p:not(.support-path-label),
.support-path-partner > p:not(.support-path-label) {
  color: var(--body);
}

.support-path-primary .support-path-icon {
  background: var(--purple);
  color: #FFFFFF;
}

.support-path-partner .support-path-icon-light {
  border: 1px solid rgba(115,77,188,.18);
  background: var(--purple-soft);
  color: var(--purple-dark);
}

.support-path-partner .support-partner-button {
  border-color: rgba(115,77,188,.36);
  background: #FFFFFF;
  color: var(--purple-dark);
}

.support-path-partner .support-partner-button:hover {
  border-color: var(--purple);
  background: var(--purple-soft);
  color: var(--purple-dark);
}

@media (max-width: 680px) {
  .support-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}


/* ------------------------------------------------------------
   V7.82 — COPY / SECTION RHYTHM / SUPPORT ICONS / FOOTER
   ------------------------------------------------------------ */

.keep-together {
  white-space: nowrap;
}

/* Slightly reduce the space between How It Works and Inside the App. */
.flow-section {
  padding-bottom: clamp(58px, 4.1vw, 74px);
}

.app-section {
  padding-top: clamp(58px, 4.1vw, 74px);
  padding-bottom: clamp(58px, 4.2vw, 76px);
}

/* Slightly reduce the space between Inside the App and Meet All For All Pets. */
.meet-brand-section {
  padding-top: clamp(58px, 4.1vw, 74px);
}

/* Both Support routes use the same icon treatment. */
.support-path-primary .support-path-icon,
.support-path-partner .support-path-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 17px;
  background: var(--purple);
  color: #FFFFFF;
  font-size: 1.15rem;
  box-shadow: 0 10px 22px rgba(91,58,152,.16);
}

/* Footer: logo is intentionally not repeated. */
.footer-brand-text-only {
  display: block;
}

.footer-brand-text-only strong {
  display: block;
  color: #FFFFFF;
  font-size: 1.12rem;
  line-height: 1.2;
}

/* Tighter footer navigation at all screen sizes. */
.footer-column {
  gap: 4px;
}

.footer-column > strong {
  margin-bottom: 1px;
}

.footer-column a,
.footer-column span {
  line-height: 1.32;
}

.footer-brand-block > p {
  margin-top: 8px;
}

.footer-main,
.footer-main-clean {
  padding-top: 38px;
  padding-bottom: 28px;
  gap: 28px;
}

@media (max-width: 680px) {
  .flow-section {
    padding-bottom: 52px;
  }

  .app-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .meet-brand-section {
    padding-top: 52px;
  }

  .footer-main,
  .footer-main-clean {
    padding-top: 20px;
    padding-bottom: 15px;
    gap: 13px 18px;
  }

  .footer-brand-text-only strong {
    font-size: 1.08rem;
  }

  .footer-brand-block > p {
    margin-top: 6px;
  }

  .footer-column {
    gap: 3px;
  }

  .footer-column a,
  .footer-column span {
    line-height: 1.28;
  }
}

@media (max-width: 420px) {
  .footer-main,
  .footer-main-clean {
    gap: 12px 15px;
  }

  .footer-column {
    gap: 2px;
  }
}


/* ------------------------------------------------------------
   V7.84 — HERO SCROLL CUE / FOOTER BRAND / TEAM PHOTO SIZING
   ------------------------------------------------------------ */

/* A small hero scroll cue rather than a permanent "go down" button. */
.hero-scroll-pill {
  width: fit-content;
  min-height: 42px;
  margin-top: 24px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: rgba(255,255,255,.82);
  font-size: .82rem;
  font-weight: 800;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition:
    border-color .18s ease,
    background .18s ease,
    color .18s ease,
    transform .18s ease;
}

.hero-scroll-pill i {
  color: #D4C1EE;
  font-size: .72rem;
}

.hero-scroll-pill:hover {
  border-color: rgba(205,184,232,.58);
  background: rgba(115,77,188,.18);
  color: #FFFFFF;
  transform: translateY(2px);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-scroll-pill i {
    animation: hero-scroll-cue 1.8s ease-in-out infinite;
  }

  @keyframes hero-scroll-cue {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(3px); }
  }
}

/* Footer logo returns as a deliberate brand sign-off, not another nav-sized logo. */
.footer-brand-signoff {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-signoff img {
  width: 78px;
  height: 78px;
  flex: 0 0 78px;
  object-fit: contain;
}

.footer-brand-signoff strong {
  color: #FFFFFF;
  font-size: 1.22rem;
  line-height: 1.15;
}

.footer-brand-block > p {
  max-width: 37ch;
}

/* Larger team/pet profile photos, tuned by actual layout mode. */
.team-pet-photo-large {
  width: 136px;
  height: 136px;
}

/* 2-column tablet. */
@media (max-width: 980px) {
  .team-pet-photo-large {
    width: 124px;
    height: 124px;
  }
}

/* 2-column mobile: large enough to read but not crowd each column. */
@media (max-width: 620px) {
  .team-pet-photo-large {
    width: 106px;
    height: 106px;
  }
}

/* 1-column narrow phone: use the extra horizontal room again. */
@media (max-width: 460px) {
  .team-pet-photo-large {
    width: 122px;
    height: 122px;
  }

  .hero-scroll-pill {
    min-height: 40px;
    margin-top: 20px;
    padding-inline: 15px;
    font-size: .80rem;
  }

  .footer-brand-signoff {
    justify-content: center;
    gap: 12px;
  }

  .footer-brand-signoff img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .footer-brand-signoff strong {
    font-size: 1.14rem;
  }

  .footer-brand-block {
    text-align: center;
  }

  .footer-brand-block > p {
    margin-inline: auto;
    max-width: 34ch;
  }
}

/* Wider phones keep the footer sign-off left-aligned but compact. */
@media (min-width: 461px) and (max-width: 680px) {
  .footer-brand-signoff img {
    width: 68px;
    height: 68px;
    flex-basis: 68px;
  }

  .footer-brand-signoff strong {
    font-size: 1.16rem;
  }
}


/* ------------------------------------------------------------
   V7.85 — RESPONSIVE STABILISATION + INTERNAL PAGE ALIGNMENT
   One final authority for the header fit range, footer grids,
   desktop readability and the Support / Beta page hierarchy.
   ------------------------------------------------------------ */

/* Keep desktop navigation labels intact. Fluid spacing removes the
   1181–1280px wrapping threshold without introducing a new jump. */
@media (min-width: 1181px) {
  body {
    font-size: 1.0625rem;
  }

  .header-inner {
    min-height: clamp(84px, 6vw, 92px);
    gap: clamp(14px, 1.65vw, 30px);
  }

  .brand,
  .brand span,
  .desktop-nav a,
  .header-support-cta {
    white-space: nowrap;
  }

  .brand {
    gap: clamp(9px, 1vw, 13px);
    flex: 0 0 auto;
  }

  .brand-logo {
    width: clamp(60px, 5vw, 76px);
    height: clamp(60px, 5vw, 76px);
  }

  .brand span {
    font-size: clamp(.96rem, .35vw + .72rem, 1.06rem);
  }

  .desktop-nav {
    min-width: 0;
    gap: clamp(8px, calc(3.6vw - 31px), 34px);
  }

  .desktop-nav a {
    padding-inline: clamp(8px, calc(1vw - 2px), 13px);
    font-size: clamp(.86rem, .26vw + .66rem, .96rem);
  }

  .header-action-group {
    flex: 0 0 auto;
  }

  .header-support-cta {
    padding-inline: clamp(12px, 1vw, 16px);
    font-size: clamp(.78rem, .18vw + .65rem, .84rem);
  }

  .hero-subtitle,
  .feature-lead,
  .story-lead {
    line-height: 1.58;
  }

  .feature-list > div,
  .beta-note,
  .footer-column a,
  .footer-column span {
    font-size: max(.94rem, 15px);
  }
}

/* Stable footer geometry: four columns on laptops, a deliberate
   brand row plus three link columns on tablets, then the approved
   two-column phone layout below 680px. */
@media (min-width: 981px) {
  .footer-main,
  .footer-main-clean {
    grid-template-columns: minmax(280px, 1.5fr) minmax(120px, .7fr) minmax(140px, .75fr) minmax(100px, .55fr);
    gap: clamp(24px, 3vw, 44px);
  }

  .footer-column:last-child {
    grid-column: auto;
    display: flex;
  }
}

@media (min-width: 681px) and (max-width: 980px) {
  .footer-main,
  .footer-main-clean {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 34px;
  }

  .footer-brand-block {
    grid-column: 1 / -1;
  }

  .footer-column:last-child {
    grid-column: auto;
  }
}

/* Support and Beta use the same physical hero size and typography. */
.internal-hero {
  min-height: 420px;
  padding: 64px 0;
  display: flex;
  align-items: center;
}

.internal-hero h1 {
  font-size: clamp(2.9rem, 4.1vw, 4.35rem);
  line-height: .98;
}

.internal-hero-support h1 {
  max-width: 18ch;
}

.internal-hero-beta h1 {
  max-width: 15ch;
}

.internal-hero-mark {
  width: 142px;
  height: 142px;
  border-radius: 30px;
  font-size: 3.75rem;
}

.internal-hero-app-preview {
  position: relative;
  width: 240px;
  height: 240px;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(115,77,188,.24) 0 48%, rgba(115,77,188,.10) 49% 68%, transparent 69%);
  box-shadow: none;
}

.internal-hero-app-preview::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(205,184,232,.16);
  border-radius: 50%;
}

.internal-hero-phone {
  width: 116px;
  padding: 5px;
  z-index: 1;
  border-color: rgba(255,255,255,.16);
  border-radius: 24px;
  box-shadow:
    0 24px 48px rgba(0,0,0,.34),
    0 0 0 8px rgba(255,255,255,.025);
}

.internal-hero-phone .app-screen {
  border-radius: 18px;
}

.request-page-intro h2,
.support-page-heading h2 {
  font-size: clamp(2.15rem, 3.25vw, 3.35rem);
  line-height: 1.02;
}

.direct-support-heading h2 {
  max-width: 18ch;
  font-size: clamp(1.9rem, 2.7vw, 2.8rem);
  line-height: 1.04;
}

.support-amount {
  min-height: 64px;
  border-radius: 17px;
  font-size: 1.18rem;
}

.direct-support-summary strong {
  font-size: 1.16rem;
}

@media (max-width: 980px) {
  .internal-hero {
    min-height: 0;
    padding: 70px 0 60px;
  }
}

@media (max-width: 680px) {
  .internal-hero {
    padding: 58px 0 50px;
  }

  .internal-hero h1 {
    font-size: clamp(2.5rem, 11vw, 3.2rem);
  }

  .request-page-intro h2,
  .support-page-heading h2 {
    font-size: clamp(2rem, 9vw, 2.65rem);
  }

  .direct-support-heading h2 {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

  .support-amount {
    min-height: 58px;
    font-size: 1.08rem;
  }
}


/* ------------------------------------------------------------
   V7.86 — SUPPORT PAGE COMPACT APP-INSPIRED COMPOSITION
   A focused funding list, contribution panel and transparency
   card replace the oversized four-row presentation.
   ------------------------------------------------------------ */

.support-page-section {
  background: var(--off-white);
}

.support-page-layout {
  display: grid;
  grid-template-columns: minmax(0, .88fr) minmax(440px, 1.12fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: start;
}

.support-page-overview {
  min-width: 0;
}

.support-page-heading {
  max-width: 620px;
}

.support-page-heading h2 {
  max-width: 15ch;
}

.support-page-heading > p:last-child,
.support-page-heading .support-page-lead {
  max-width: 52ch;
  margin-top: 8px;
  color: var(--body);
  font-size: 1.02rem;
  line-height: 1.65;
}

.support-funding-list {
  margin-top: 30px;
  overflow: hidden;
  border: 1px solid rgba(115,77,188,.20);
  border-radius: 24px;
  background: #FFFFFF;
  box-shadow: 0 16px 38px rgba(51,35,67,.055);
}

.support-funding-list article {
  min-height: 90px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
}

.support-funding-list article + article {
  border-top: 1px solid #E8E2EC;
}

.support-funding-list article > i {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115,77,188,.22);
  border-radius: 13px;
  background: var(--purple-pale);
  color: var(--purple-dark);
  font-size: 1rem;
}

.support-funding-list article > div {
  display: grid;
  gap: 3px;
}

.support-funding-list strong {
  color: var(--ink);
  font-size: .96rem;
  line-height: 1.3;
}

.support-funding-list span {
  color: var(--body);
  font-size: .82rem;
  line-height: 1.45;
}

.support-transparency-card {
  margin-top: 18px;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  border: 1px solid #DED7E4;
  border-radius: 22px;
  background: #FFFFFF;
}

.support-transparency-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115,77,188,.25);
  border-radius: 50%;
  background: var(--purple-pale);
  color: var(--purple-dark);
}

.support-transparency-card strong {
  color: var(--ink);
  font-size: .98rem;
}

.support-transparency-card p {
  margin-top: 3px;
  color: var(--body);
  font-size: .82rem;
  line-height: 1.45;
}

.support-page-layout .direct-support-panel {
  margin-top: 0;
  padding: clamp(26px, 3vw, 34px);
  border-radius: 26px;
}

.support-page-layout .direct-support-heading {
  align-items: stretch;
  flex-direction: column;
  gap: 22px;
}

.support-page-layout .direct-support-heading h2 {
  max-width: none;
  font-size: clamp(1.75rem, 2.35vw, 2.35rem);
}

.support-page-layout .support-frequency {
  width: 100%;
}

.support-page-layout .support-frequency-button {
  flex: 1;
}

.support-page-layout .support-amount-grid {
  margin-top: 18px;
  gap: 9px;
}

.support-page-layout .support-custom-amount {
  margin-top: 18px;
}

.support-page-layout .support-custom-input {
  max-width: none;
}

.support-page-layout .direct-support-summary {
  margin-top: 20px;
  padding: 17px 19px;
}

.support-page-layout .direct-support-action {
  margin-top: 18px;
}

.support-page-layout .direct-support-action .button {
  width: 100%;
}

.support-page-layout .direct-support-trust {
  margin-top: 16px;
  padding-top: 15px;
}

@media (max-width: 980px) {
  .support-page-layout {
    grid-template-columns: 1fr;
  }

  .support-page-overview,
  .support-page-layout .direct-support-panel {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .support-funding-list article {
    min-height: 0;
    padding: 17px 16px;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
  }

  .support-funding-list article > i {
    width: 40px;
    height: 40px;
  }

  .support-transparency-card {
    padding: 17px 16px;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px;
  }

  .support-transparency-icon {
    width: 42px;
    height: 42px;
  }
}


/* ------------------------------------------------------------
   V7.87 — NARROW-PHONE FOOTER BRAND LOCKUP
   Below 461px the previous centered logo/name/description became
   a second hero. Keep it as one compact, left-aligned identity.
   ------------------------------------------------------------ */

@media (max-width: 460px) {
  .footer-brand-block {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
    text-align: left;
  }

  .footer-brand-signoff {
    display: contents;
  }

  .footer-brand-signoff img {
    width: 54px;
    height: 54px;
    grid-column: 1;
    grid-row: 1 / 3;
    align-self: center;
  }

  .footer-brand-signoff strong {
    grid-column: 2;
    grid-row: 1;
    align-self: end;
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .footer-brand-block > p {
    grid-column: 2;
    grid-row: 2;
    margin: 2px 0 0;
    max-width: 31ch;
    color: rgba(255,255,255,.58);
    font-size: .78rem;
    line-height: 1.42;
  }
}


/* ------------------------------------------------------------
   V7.88 — INTERNAL HERO VISUALS MATCH THE HOME HERO
   Beta gets a prominent app phone; Back the project gets a
   purpose-built contribution card. Both share the home orbit.
   ------------------------------------------------------------ */

.internal-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(330px, .62fr);
  gap: clamp(54px, 7vw, 108px);
}

.internal-hero-visual {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}

.internal-hero-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 330px;
  height: 330px;
  transform: translate(-50%, -50%);
  border: 46px solid rgba(115,77,188,.13);
  border-radius: 50%;
}

.internal-beta-phone {
  width: 188px;
  z-index: 2;
  padding: 5px;
  border-radius: 28px;
  border-color: rgba(255,255,255,.14);
  box-shadow:
    0 28px 58px rgba(0,0,0,.34),
    0 0 0 8px rgba(255,255,255,.025);
}

.internal-beta-phone .app-screen {
  border-radius: 22px;
}

.support-hero-card {
  position: relative;
  z-index: 2;
  width: min(350px, 100%);
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(115,77,188,.18), transparent 35%),
    #343136;
  color: #FFFFFF;
  box-shadow:
    0 28px 58px rgba(0,0,0,.30),
    inset 0 1px 0 rgba(255,255,255,.055);
}

.support-hero-card-title {
  display: flex;
  gap: 12px;
  align-items: center;
}

.support-hero-card-title > span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(115,77,188,.28);
  color: #D7C4EE;
}

.support-hero-card-title strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.15rem;
}

.support-hero-mini-list {
  margin-top: 19px;
  display: grid;
  gap: 9px;
}

.support-hero-mini-list span {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,.74);
  font-size: .78rem;
}

.support-hero-mini-list i {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(115,77,188,.46);
  border-radius: 8px;
  color: #CDB8E8;
  font-size: .68rem;
}

.support-hero-amounts {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}

.support-hero-amounts span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  color: rgba(255,255,255,.82);
  font-size: .78rem;
  font-weight: 800;
}

.support-hero-amounts span.active {
  border-color: var(--purple);
  background: var(--purple);
  color: #FFFFFF;
}

.support-hero-action {
  min-height: 46px;
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 9px;
  align-items: center;
  border-radius: 13px;
  background: var(--purple);
  color: #FFFFFF;
  font-size: .82rem;
  font-weight: 800;
}

@media (max-width: 980px) {
  .internal-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .internal-hero-visual {
    min-height: 350px;
  }
}

@media (max-width: 680px) {
  .internal-hero-visual {
    min-height: 310px;
  }

  .internal-hero-orbit {
    width: 270px;
    height: 270px;
    border-width: 38px;
  }

  .internal-beta-phone {
    width: 150px;
    border-radius: 24px;
  }

  .internal-beta-phone .app-screen {
    border-radius: 18px;
  }

  .support-hero-card {
    width: min(330px, 90vw);
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 360px) {
  .support-hero-card {
    padding: 18px;
  }

  .support-hero-mini-list {
    margin-top: 15px;
  }

  .support-hero-amounts {
    margin-top: 16px;
  }
}


/* ------------------------------------------------------------
   V7.89 — SIMPLIFIED INTERNAL HERO ART
   The hero introduces the project; funding details and amounts
   belong only in the section below. The Beta phone blends softly.
   ------------------------------------------------------------ */

.internal-beta-phone {
  opacity: .82;
  filter: brightness(1.14) saturate(.88);
}

.internal-beta-phone::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(205,184,232,.08), transparent 46%);
  pointer-events: none;
}

.support-hero-art {
  position: relative;
  z-index: 2;
  width: min(370px, 100%);
  height: 250px;
  display: grid;
  place-items: center;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.support-hero-pulse {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.support-hero-pulse path {
  fill: none;
  stroke: #9B7CC5;
  opacity: .72;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.support-hero-heart {
  position: relative;
  width: 104px;
  height: 104px;
  display: grid;
  place-items: center;
  border: 1px solid #9B7CC5;
  border-radius: 30px;
  background: #9B7CC5;
  color: #FFFFFF;
  font-size: 2.8rem;
  box-shadow:
    0 18px 38px rgba(28,18,38,.28),
    0 0 0 12px rgba(155,124,197,.08);
}

@media (max-width: 680px) {
  .support-hero-art {
    width: min(340px, 90vw);
    height: 220px;
    border-radius: 28px;
  }

  .support-hero-heart {
    width: 92px;
    height: 92px;
    border-radius: 26px;
    font-size: 2.45rem;
  }
}


/* ------------------------------------------------------------
   V7.90 — QUIET HERO SCROLL CUE
   Keep Explore useful without presenting it as a third button.
   ------------------------------------------------------------ */

.hero-scroll-pill {
  width: fit-content;
  min-height: 0;
  margin-top: 18px;
  padding: 0;
  display: flex;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #CDB8E8;
  font-size: .76rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: .10em;
  text-transform: uppercase;
  backdrop-filter: none;
}

.hero-scroll-pill i {
  color: #CDB8E8;
  font-size: .68rem;
}

.hero-scroll-pill:hover {
  border: 0;
  background: transparent;
  color: #E2D4F2;
  transform: translateY(2px);
}

@media (max-width: 460px) {
  .hero-scroll-pill {
    min-height: 0;
    margin-top: 17px;
    padding: 0;
    font-size: .74rem;
  }
}


/* ------------------------------------------------------------
   V7.91 — QUIET BACK-THE-PROJECT NAVIGATION LINK
   Beta remains the primary filled action; project backing uses
   the brand's soft lavender text without a competing pill.
   ------------------------------------------------------------ */

.header-support-cta {
  min-height: 40px;
  padding-inline: 10px;
  border: 0;
  background: transparent;
  color: #CDB8E8;
  box-shadow: none;
}

.header-support-cta:hover {
  border: 0;
  background: transparent;
  color: #E4D8F1;
  transform: none;
}

.mobile-support-link {
  width: 100%;
  min-height: 50px;
  padding-inline: 14px;
  justify-content: flex-start;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #CDB8E8;
  text-align: left;
}

.mobile-support-link:hover {
  background: rgba(205,184,232,.07);
  color: #FFFFFF;
}


/* ------------------------------------------------------------
   V7.92 — CONTRIBUTION CARD TYPE BALANCE
   Match the quieter information scale used by the left column.
   ------------------------------------------------------------ */

.support-page-layout .direct-support-heading h2 {
  font-size: clamp(1.28rem, 1.65vw, 1.52rem);
  line-height: 1.2;
  letter-spacing: -.025em;
}

.support-page-layout .support-amount {
  font-size: 1.02rem;
}

.support-page-layout .direct-support-summary strong {
  font-size: 1.05rem;
}

@media (max-width: 520px) {
  .support-page-layout .direct-support-heading h2 {
    font-size: 1.24rem;
  }

  .support-page-layout .support-amount {
    font-size: .98rem;
  }
}

/* ------------------------------------------------------------
   V7.93 — 4FUND-ONLY PROJECT SUPPORT
   ------------------------------------------------------------ */

.support-4fund-panel {
  min-width: 0;
  padding: clamp(28px, 3.5vw, 42px);
  display: grid;
  gap: 24px;
  align-content: start;
  border: 1px solid rgba(115,77,188,.20);
  border-radius: 26px;
  background:
    radial-gradient(circle at 100% 0%, rgba(205,184,232,.24), transparent 38%),
    #FFFFFF;
  box-shadow: 0 20px 48px rgba(51,35,67,.07);
}

.support-4fund-panel-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(155,124,197,.36);
  border-radius: 19px;
  background: rgba(205,184,232,.28);
  color: #8F70BA;
  font-size: 1.35rem;
}

.support-4fund-panel h2 {
  margin-top: 8px;
  color: var(--ink);
  font-size: clamp(1.55rem, 2.2vw, 2rem);
  line-height: 1.18;
  letter-spacing: -.03em;
}

.support-4fund-panel > div > p:last-child {
  max-width: 46ch;
  margin-top: 12px;
  color: var(--body);
  font-size: .96rem;
  line-height: 1.65;
}

.support-4fund-panel .support-4fund-button,
.support-4fund-panel .support-4fund-button:visited {
  width: 100%;
  min-height: 54px;
  margin: 0;
  border-color: var(--purple);
  background: var(--purple);
  color: #FFFFFF;
}

.support-4fund-panel .support-4fund-button:hover,
.support-4fund-panel .support-4fund-button:focus-visible {
  border-color: var(--purple-dark);
  background: var(--purple-dark);
  color: #FFFFFF;
}

.support-4fund-panel .third-party-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid #E8E2EC;
  color: var(--body);
  font-size: .78rem;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .support-4fund-panel {
    width: min(100%, 720px);
    margin-inline: auto;
  }
}

@media (max-width: 520px) {
  .support-4fund-panel {
    padding: 24px 20px;
    gap: 20px;
    border-radius: 22px;
  }

  .support-4fund-panel-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
  }

  .support-4fund-panel h2 {
    font-size: 1.45rem;
  }
}
