/*
 * Client CSS escape hatch.
 * WHY: this file is loaded after generated LowestCode CSS for client/page-specific designs.
 * It is free CSS and is not compatible with the governed LowestCode CSS generator format.
 * Keep it scoped; move reusable styling back into the governed CSS/database model.
 */

/* WHY: standalone homepage test needs local utility styles before DB/CSS activation. */
:root {
  --home-primary: #f8fbff;
  --home-primary-muted: rgb(248 251 255 / 0.82);
  --home-accent: #6ee7c8;
  --home-accent-strong: #2dd4bf;
  --home-success: #22c55e;
  --home-background: #ffffff;
}

.homepage,
.homepage * {
  box-sizing: border-box;
}

.homepage-body {
  margin: 0;
  background: #f7fafc;
  color: #172033;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

.homepage {
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  background: var(--home-background);
  color: #172033;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* WHY: client pages must not inherit generated system text-block backgrounds. */
.client :where(h1, h2, h3, p) {
  background: transparent;
}

.home-shell {
  width: min(100%, 120rem);
  margin: 0 auto;
}

.home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 82% 18%, rgb(45 212 191 / 0.32), transparent 28rem),
    radial-gradient(circle at 15% 82%, rgb(34 197 94 / 0.28), transparent 31rem),
    linear-gradient(135deg, #102a54 0%, #0f4f6a 48%, #11223c 100%);
  color: var(--home-primary);
  padding: clamp(4rem, 8vw, 7rem) 1rem;
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.5) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

.home-glow {
  position: absolute;
  width: clamp(14rem, 26vw, 24rem);
  aspect-ratio: 1;
  border-radius: 9999px;
  filter: blur(4rem);
  opacity: 0.78;
  z-index: -1;
  animation: homeFloat 7s ease-in-out infinite;
}

.home-glow.accent {
  top: 8%;
  right: 8%;
  background: rgb(110 231 200 / 0.24);
}

.home-glow.success {
  bottom: 8%;
  left: 8%;
  width: clamp(16rem, 32vw, 30rem);
  background: rgb(34 197 94 / 0.22);
  animation-delay: -2s;
}

.home-container {
  position: relative;
  z-index: 1;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
  text-align: center;
}

.home-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  color: var(--home-primary);
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.25);
  border-radius: 9999px;
  backdrop-filter: blur(12px);
  font-size: 0.875rem;
  font-weight: 600;
}

.home-status-dot {
  flex: 0 0 auto;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 9999px;
  background: var(--home-success);
  box-shadow: 0 0 0 0 rgb(34 197 94 / 0.55);
  animation: homePulse 1.8s ease-out infinite;
}

.home-title {
  margin: 0 0 1.4rem;
  color: var(--home-primary);
  font-size: clamp(3.1rem, 8vw, 7rem);
  line-height: 0.96;
  font-weight: 800;
  letter-spacing: 0;
}

.home-title span {
  display: inline-block;
  color: transparent;
  background: linear-gradient(90deg, #67e8f9 0%, #6ee7c8 52%, #bef264 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.home-title .home-title-detail {
  display: block;
  margin-top: 0.7rem;
  font-size: clamp(1.65rem, 4.2vw, 3.4rem);
  line-height: 1.08;
  font-weight: 750;
}

.home-subtitle {
  margin: 0 0 1rem;
  color: rgb(248 251 255 / 0.92);
  font-size: clamp(1.45rem, 3.4vw, 2.25rem);
  line-height: 1.2;
  font-weight: 650;
}

.home-copy {
  max-width: 48rem;
  margin: 0 auto 3rem;
  color: var(--home-primary-muted);
  font-size: clamp(1.06rem, 2vw, 1.35rem);
  line-height: 1.58;
}

.home-copy strong {
  display: inline-block;
  color: var(--home-accent);
  font-weight: 750;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 2rem);
  width: min(100%, 56rem);
  margin: 0 auto;
}

.home-stat {
  min-width: 0;
  padding: 0.5rem;
  text-align: center;
}

.home-stat-value {
  margin-bottom: 0.45rem;
  color: var(--home-accent);
  font-size: clamp(1.7rem, 4vw, 2.25rem);
  line-height: 1;
  font-weight: 800;
}

.home-stat-label {
  color: rgb(248 251 255 / 0.72);
  font-size: 0.9rem;
  line-height: 1.3;
}

.home-next-hint {
  width: min(100%, 40rem);
  margin: clamp(1.7rem, 4vw, 2.6rem) auto 0;
  color: rgb(248 251 255 / 0.72);
  font-size: clamp(0.98rem, 1.8vw, 1.16rem);
  line-height: 1.45;
  font-weight: 650;
  text-align: center;
}

.home-scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  width: 1.5rem;
  height: 2.5rem;
  border: 2px solid rgb(248 251 255 / 0.34);
  border-radius: 9999px;
  display: flex;
  justify-content: center;
  padding-top: 0.45rem;
  opacity: 0.9;
  animation: homeBounce 1.6s infinite;
  text-decoration: none;
}

.home-scroll::before {
  content: "";
  width: 0.25rem;
  height: 0.75rem;
  border-radius: 9999px;
  background: rgb(248 251 255 / 0.58);
}

.home-tech {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.045) 0%, transparent 24%, rgb(3 7 18 / 0.16) 100%),
    linear-gradient(145deg, #252a31 0%, #33383c 48%, #1b2428 100%);
  color: var(--home-primary);
  overflow: hidden;
  isolation: isolate;
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.home-tech::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgb(244 211 148 / 0.52) 1px, transparent 1px),
    linear-gradient(90deg, rgb(244 211 148 / 0.52) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

.home-tech::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(3 7 18 / 0.24), transparent 24%, transparent 76%, rgb(3 7 18 / 0.2)),
    linear-gradient(180deg, transparent 0 64%, rgb(9 20 24 / 0.28) 100%);
  z-index: -1;
}

.home-tech-inner {
  width: min(100%, 76rem);
  margin: 0 auto;
}

.home-tech-kicker {
  width: fit-content;
  margin-bottom: 1.1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgb(244 211 148 / 0.28);
  border-radius: 9999px;
  color: #f4e7c5;
  background: rgb(15 23 42 / 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 750;
}

.home-tech h2 {
  max-width: 52rem;
  margin: 0 0 1.2rem;
  color: var(--home-primary);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: 0;
}

.home-tech-lead {
  max-width: 58rem;
  margin: 0 0 clamp(2rem, 5vw, 3.5rem);
  color: var(--home-primary-muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  line-height: 1.62;
}

.home-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: clamp(2rem, 5vw, 3.2rem);
}

.home-tech-point {
  position: relative;
  min-width: 0;
  padding: 1.2rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.07), rgb(15 23 42 / 0.23));
  box-shadow: 0 18px 45px rgb(2 8 23 / 0.2);
  backdrop-filter: blur(14px);
}

.home-tech-point::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 0.18rem;
  margin-bottom: 1rem;
  border-radius: 9999px;
  background: linear-gradient(90deg, #f4d394, #6ee7c8);
}

.home-tech-point h3 {
  margin: 0 0 0.65rem;
  color: var(--home-primary);
  font-size: 1.06rem;
  line-height: 1.22;
  font-weight: 800;
  letter-spacing: 0;
}

.home-tech-point p {
  margin: 0;
  color: rgb(248 251 255 / 0.74);
  font-size: 0.95rem;
  line-height: 1.48;
}

.home-tech-line {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgb(255 255 255 / 0.15);
}

.home-tech-line span {
  padding: 0.45rem 0.75rem;
  border-radius: 9999px;
  color: rgb(248 251 255 / 0.86);
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.1);
  font-size: 0.88rem;
  font-weight: 700;
}

.home-platform {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 84% 18%, rgb(45 212 191 / 0.2), transparent 28rem),
    radial-gradient(circle at 14% 82%, rgb(244 211 148 / 0.12), transparent 30rem),
    linear-gradient(135deg, #0b1d2b 0%, #0d3f49 48%, #111827 100%);
  color: var(--home-primary);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
}

.home-platform::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.5) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

.home-platform::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgb(2 6 23 / 0.28), transparent 28%, transparent 74%, rgb(2 6 23 / 0.24)),
    linear-gradient(180deg, rgb(2 6 23 / 0.08), transparent 45%, rgb(2 6 23 / 0.22));
  z-index: -1;
}

.home-platform-inner {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.home-platform-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.28fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.home-platform-kicker {
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgb(110 231 200 / 0.3);
  border-radius: 9999px;
  color: #bff7df;
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 750;
}

.home-platform-title {
  margin: 0 0 1.2rem;
  color: var(--home-primary);
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.home-platform-title span {
  display: block;
  margin-top: 0.7rem;
  color: var(--home-accent);
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.25;
  font-weight: 750;
}

.home-platform-lead {
  margin: 0;
  color: var(--home-primary-muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.6;
}

.home-platform-thesis {
  margin-top: 1.5rem;
  padding: 1rem 1.1rem;
  border-left: 0.22rem solid var(--home-accent);
  background: rgb(255 255 255 / 0.08);
  backdrop-filter: blur(12px);
}

.home-platform-thesis h3 {
  margin: 0 0 0.55rem;
  color: var(--home-primary);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.home-platform-thesis p {
  margin: 0;
  color: rgb(248 251 255 / 0.76);
  font-size: 0.95rem;
  line-height: 1.5;
}

.home-platform-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-platform-list li {
  min-width: 0;
  position: relative;
  padding: 0.85rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.075);
  box-shadow: 0 16px 38px rgb(2 8 23 / 0.16);
  backdrop-filter: blur(14px);
}

.home-platform-list li::before {
  content: "";
  display: block;
  width: 2.25rem;
  height: 0.18rem;
  margin-bottom: 0.7rem;
  border-radius: 9999px;
  background: linear-gradient(135deg, #6ee7c8, #f4d394);
}

.home-platform-list p {
  margin: 0;
  color: rgb(248 251 255 / 0.82);
  font-size: 0.9rem;
  line-height: 1.42;
}

.home-platform-list sup {
  color: #f4d394;
  font-weight: 750;
}

.home-grants {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(180deg, rgb(255 255 255 / 0.045) 0%, transparent 24%, rgb(3 7 18 / 0.16) 100%),
    linear-gradient(145deg, #262a2f 0%, #3a3931 48%, #1b2428 100%);
  color: var(--home-primary);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 4rem);
  box-shadow: inset 0 1px 0 rgb(255 255 255 / 0.08);
}

.home-grants::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgb(244 211 148 / 0.52) 1px, transparent 1px),
    linear-gradient(90deg, rgb(244 211 148 / 0.52) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

.home-grants::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgb(244 211 148 / 0.14), transparent 28rem),
    linear-gradient(90deg, rgb(3 7 18 / 0.24), transparent 24%, transparent 76%, rgb(3 7 18 / 0.2)),
    linear-gradient(180deg, transparent 0 64%, rgb(9 20 24 / 0.3) 100%);
  z-index: -1;
}

.home-grants-inner {
  width: min(100%, 82rem);
  margin: 0 auto;
}

.home-grants-kicker {
  width: fit-content;
  margin-bottom: 1rem;
  padding: 0.35rem 0.8rem;
  border: 1px solid rgb(244 211 148 / 0.3);
  border-radius: 9999px;
  color: #f4e7c5;
  background: rgb(15 23 42 / 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.86rem;
  font-weight: 750;
}

.home-grants-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.home-grants-title {
  margin: 0 0 1.2rem;
  color: var(--home-primary);
  font-size: clamp(2.6rem, 6vw, 5.4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.home-grants-title span {
  display: block;
  margin-top: 0.7rem;
  color: #f4d394;
  font-size: clamp(1rem, 2vw, 1.45rem);
  line-height: 1.25;
  font-weight: 750;
}

.home-grants-lead {
  margin: 0;
  color: var(--home-primary-muted);
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.6;
}

.home-grants-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.home-grants-metric {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.075);
  backdrop-filter: blur(14px);
}

.home-grants-value {
  margin-bottom: 0.4rem;
  color: #f4d394;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  line-height: 1;
  font-weight: 850;
}

.home-grants-label {
  color: rgb(248 251 255 / 0.72);
  font-size: 0.82rem;
  line-height: 1.35;
  font-weight: 700;
}

.home-grants-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-grants-list li {
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  background: linear-gradient(180deg, rgb(255 255 255 / 0.07), rgb(15 23 42 / 0.23));
  box-shadow: 0 16px 38px rgb(2 8 23 / 0.16);
  backdrop-filter: blur(14px);
}

.home-grants-list h3 {
  margin: 0 0 0.55rem;
  color: var(--home-primary);
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.home-grants-list p {
  margin: 0;
  color: rgb(248 251 255 / 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.home-grants-flow {
  margin-top: 1rem;
  padding: 1rem;
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.07);
  backdrop-filter: blur(14px);
  color: rgb(248 251 255 / 0.76);
  font-size: 0.9rem;
  line-height: 1.48;
}

.home-grants-flow strong {
  color: #f4d394;
  font-weight: 800;
}

.home-grants-flow span {
  display: block;
  margin-top: 0.55rem;
}

.home-reveal {
  opacity: 0;
  animation: homeReveal 0.7s ease forwards;
}

.home-reveal.delay-1 { animation-delay: 0.12s; }
.home-reveal.delay-2 { animation-delay: 0.22s; }
.home-reveal.delay-3 { animation-delay: 0.32s; }
.home-reveal.delay-4 { animation-delay: 0.42s; }
.home-reveal.delay-5 { animation-delay: 0.52s; }

@keyframes homeReveal {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.loginClient {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(3rem, 7vw, 6rem) 1rem;
  background:
    radial-gradient(circle at 82% 18%, rgb(45 212 191 / 0.28), transparent 28rem),
    radial-gradient(circle at 15% 82%, rgb(34 197 94 / 0.22), transparent 31rem),
    linear-gradient(135deg, #102a54 0%, #0f4f6a 48%, #11223c 100%);
  color: var(--home-primary);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.loginClient::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgb(255 255 255 / 0.5) 1px, transparent 1px),
    linear-gradient(90deg, rgb(255 255 255 / 0.5) 1px, transparent 1px);
  background-size: 3.5rem 3.5rem;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
  z-index: -2;
}

.loginClient::after {
  content: "";
  position: absolute;
  width: clamp(16rem, 32vw, 30rem);
  aspect-ratio: 1;
  left: 8%;
  bottom: 8%;
  border-radius: 9999px;
  background: rgb(34 197 94 / 0.16);
  filter: blur(4rem);
  z-index: -1;
}

.loginClient .loginPanel {
  width: min(100%, 30rem);
  margin: 0 auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 0.5rem;
  background: rgb(255 255 255 / 0.09);
  box-shadow: 0 24px 60px rgb(2 8 23 / 0.25);
  backdrop-filter: blur(16px);
}

.loginClient .loginBrand {
  margin: 0 0 1.75rem;
  text-align: center;
}

.loginClient .loginBrandTitle {
  margin: 0;
  color: transparent;
  background: linear-gradient(90deg, #67e8f9 0%, #6ee7c8 52%, #bef264 100%);
  -webkit-background-clip: text;
  background-clip: text;
  font-size: clamp(2.2rem, 8vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.loginClient h3 {
  margin: 0 0 1.25rem;
  color: rgb(248 251 255 / 0.88);
  font-size: 1.05rem;
  line-height: 1.35;
  font-weight: 650;
  text-align: center;
}

.loginClient form {
  margin: 0;
}

.loginClient .form,
.loginClient .row,
.loginClient .rows {
  background: transparent;
}

.loginClient label {
  color: rgb(248 251 255 / 0.78);
  font-size: 0.92rem;
  font-weight: 700;
}

.loginClient input:not([type="radio"]):not([type="checkbox"]) {
  width: 100%;
  min-height: 2.65rem;
  color: #102033;
  background: rgb(248 251 255 / 0.95);
  border: 1px solid rgb(255 255 255 / 0.32);
  border-radius: 0.5rem;
}

.loginClient .btnLogin,
.loginClient .btnChangePassword,
.loginClient .btnSendResetLink,
.loginClient .btnResetPassword {
  min-height: 2.8rem;
  border: 1px solid transparent;
  border-radius: 0.5rem;
  font-weight: 800;
}

.loginClient .btnLogin,
.loginClient .btnResetPassword {
  color: #102033;
  background: linear-gradient(135deg, #a7f3d0, #67e8f9);
  box-shadow: 0 18px 35px rgb(12 25 50 / 0.28);
}

.loginClient .btnChangePassword,
.loginClient .btnSendResetLink {
  color: var(--home-primary);
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.22);
}

@keyframes homeFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-1rem); }
}

@keyframes homePulse {
  0% { box-shadow: 0 0 0 0 rgb(34 197 94 / 0.55); }
  75%, 100% { box-shadow: 0 0 0 0.65rem rgb(34 197 94 / 0); }
}

@keyframes homeBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(0.45rem); }
}

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

  .home-platform-layout {
    grid-template-columns: 1fr;
  }

  .home-grants-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .home-badge {
    border-radius: 0.5rem;
    white-space: normal;
  }

  .home-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-tech-grid {
    grid-template-columns: 1fr;
  }

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

  .home-grants-metrics,
  .home-grants-list {
    grid-template-columns: 1fr;
  }
}
