:root {
  --primary: #6c4cff;
  --primary-dark: #4b2fd4;
  --cyan: #00d4ff;
  --pink: #ff4ecd;
  --orange: #ffb547;
  --success: #16c79a;
  --ink: #12152f;
  --muted: #707897;
  --surface: #f6f7ff;
  --card: #fff;
  --navy: #080b24;
  --border: #e8e9f5;
  --shadow: 0 20px 60px rgba(44, 35, 109, 0.12);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  position: relative;
  overflow-x: hidden;
  background: var(--surface);
  color: var(--ink);
  font-family: Manrope, system-ui, sans-serif;
}
h1,
h2,
h3,
h4,
.navbar-brand {
  font-family: "Space Grotesk", Manrope, sans-serif;
}
a {
  text-decoration: none;
}
.page-orb {
  position: fixed;
  z-index: -1;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.22;
  pointer-events: none;
}
.page-orb-one {
  width: 420px;
  height: 420px;
  right: -200px;
  top: 35%;
  background: radial-gradient(circle, var(--pink), transparent 68%);
}
.page-orb-two {
  width: 380px;
  height: 380px;
  left: -190px;
  top: 65%;
  background: radial-gradient(circle, var(--cyan), transparent 68%);
}
.navbar {
  padding: 13px 0;
  background: rgba(8, 11, 36, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 35px rgba(4, 5, 20, 0.22);
  backdrop-filter: blur(18px);
}
.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff !important;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.04em;
}
.navbar-brand > span:last-child > span {
  color: var(--cyan);
}
.brand-icon {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  box-shadow: 0 8px 22px rgba(108, 76, 255, 0.42);
  color: #fff;
}
.nav-link {
  position: relative;
  color: rgba(255, 255, 255, 0.74) !important;
  font-size: 0.9rem;
  font-weight: 600;
}
.nav-link:hover {
  color: #fff !important;
}
.nav-link:after {
  content: "";
  position: absolute;
  left: 0.5rem;
  right: 0.5rem;
  bottom: 2px;
  height: 2px;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--cyan), var(--pink));
  transition: 0.25s;
}
.nav-link:hover:after {
  transform: scaleX(1);
}
.btn {
  border-radius: 12px;
  font-weight: 700;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-brand,
.btn-primary {
  color: #fff !important;
  border: 0;
  background: linear-gradient(135deg, var(--primary), #8d4cff 55%, var(--pink));
  box-shadow: 0 12px 26px rgba(108, 76, 255, 0.3);
}
.btn-brand:hover,
.btn-primary:hover {
  background: linear-gradient(135deg, #8064ff, var(--pink));
  box-shadow: 0 16px 32px rgba(108, 76, 255, 0.42);
}
.btn-glass {
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(10px);
}
.btn-glass:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.15);
}
.hero {
  position: relative;
  display: flex;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 75% 35%,
      rgba(108, 76, 255, 0.45),
      transparent 32%
    ),
    radial-gradient(
      circle at 20% 90%,
      rgba(0, 212, 255, 0.18),
      transparent 35%
    ),
    linear-gradient(135deg, #07091f 0%, #101143 55%, #25165e 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 55px 55px;
  mask-image: linear-gradient(to bottom, #000, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 75px;
  padding-bottom: 75px;
}
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(1px);
  animation: orbFloat 7s ease-in-out infinite;
}
.hero-orb-one {
  width: 180px;
  height: 180px;
  right: 7%;
  top: 12%;
  background: linear-gradient(
    135deg,
    rgba(0, 212, 255, 0.3),
    rgba(108, 76, 255, 0.08)
  );
}
.hero-orb-two {
  width: 95px;
  height: 95px;
  left: 4%;
  bottom: 14%;
  background: linear-gradient(
    135deg,
    rgba(255, 78, 205, 0.35),
    rgba(255, 181, 71, 0.08)
  );
  animation-delay: -3s;
}
.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 13px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.eyebrow {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: #b9f5ff;
}
.hero-copy h1 {
  max-width: 680px;
  margin: 22px 0;
  font-size: clamp(3rem, 5.7vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.065em;
}
.hero-copy h1 span {
  display: block;
  background: linear-gradient(90deg, var(--cyan), #a98aff 47%, var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy > p {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.08rem;
  line-height: 1.8;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}
.hero-actions .btn {
  padding: 14px 20px;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
}
.avatar-stack {
  display: flex;
}
.avatar-stack span {
  display: grid;
  width: 38px;
  height: 38px;
  margin-left: -9px;
  place-items: center;
  border: 3px solid #111238;
  border-radius: 50%;
  background: linear-gradient(145deg, #6754de, #2bd3da);
  font-size: 0.75rem;
}
.avatar-stack span:first-child {
  margin-left: 0;
}
.stars {
  color: var(--orange);
  font-size: 0.72rem;
}
.hero-trust small {
  color: rgba(255, 255, 255, 0.62);
}
.hero-visual {
  position: relative;
  isolation: isolate;
  animation: visualFloat 6s ease-in-out infinite;
}
.hero-visual img {
  position: relative;
  z-index: 2;
  width: 115%;
  max-width: 720px;
  margin-left: -4%;
  border-radius: 34px;
  filter: drop-shadow(0 35px 45px rgba(0, 0, 0, 0.35));
}
.visual-glow {
  position: absolute;
  z-index: 1;
  inset: 12% 8%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--pink));
  filter: blur(80px);
  opacity: 0.25;
}
.floating-chip {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 16px;
  background: rgba(12, 13, 43, 0.75);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(14px);
  animation: chipFloat 4.5s ease-in-out infinite;
}
.floating-chip > span {
  display: grid;
  width: 39px;
  height: 39px;
  place-items: center;
  border-radius: 12px;
}
.floating-chip small,
.floating-chip b {
  display: block;
}
.floating-chip small {
  color: #aaaed0;
  font-size: 0.68rem;
}
.floating-chip b {
  font-size: 0.8rem;
}
.chip-approved {
  left: 0;
  bottom: 14%;
}
.chip-approved > span {
  color: #7dffdb;
  background: rgba(22, 199, 154, 0.16);
}
.chip-secure {
  right: -3%;
  top: 17%;
  animation-delay: -2s;
}
.chip-secure > span {
  color: #85eaff;
  background: rgba(0, 212, 255, 0.15);
}
.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -1px;
  padding: 30px 0;
  background: #fff;
  box-shadow: 0 16px 45px rgba(30, 24, 83, 0.08);
}
.trust-strip strong,
.trust-strip span {
  display: block;
}
.trust-strip strong {
  font-family: "Space Grotesk";
  font-size: 1.7rem;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.trust-strip span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}
.section-heading {
  max-width: 720px;
  margin: 0 auto 50px;
}
.section-kicker {
  margin-bottom: 14px;
  background: rgba(108, 76, 255, 0.1);
  color: var(--primary);
}
.section-heading h2 {
  font-size: clamp(2rem, 4vw, 3.15rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.05rem;
}
.feature-card,
.form-card,
.wizard-card,
.auth-card,
.card,
.stat-card {
  border: 1px solid rgba(226, 227, 242, 0.8);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.feature-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border-radius: 24px;
  transition: 0.35s;
}
.feature-card:before {
  content: "";
  position: absolute;
  right: -55px;
  top: -55px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(108, 76, 255, 0.13),
    rgba(255, 78, 205, 0.1)
  );
  transition: 0.35s;
}
.feature-card:hover {
  transform: translateY(-10px);
  border-color: rgba(108, 76, 255, 0.3);
  box-shadow: 0 28px 65px rgba(69, 48, 177, 0.18);
}
.feature-card:hover:before {
  transform: scale(1.45);
}
.feature-number {
  position: absolute;
  right: 25px;
  top: 20px;
  color: #000000;
  font-family: "Space Grotesk";
  font-size: 2rem;
  font-weight: 700;
}
.feature-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary), var(--pink));
  box-shadow: 0 12px 30px rgba(108, 76, 255, 0.27);
  color: #fff;
  font-size: 1.25rem;
}
.feature-card h3 {
  margin: 25px 0 10px;
  font-size: 1.25rem;
  font-weight: 700;
}
.feature-card p {
  min-height: 78px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.75;
}
.feature-link {
  color: var(--primary);
  font-size: 0.82rem;
  font-weight: 800;
}
.feature-link i {
  transition: 0.25s;
}
.feature-card:hover .feature-link i {
  transform: translateX(5px);
}
.benefits-section {
  background: linear-gradient(
    180deg,
    rgba(108, 76, 255, 0.04),
    rgba(0, 212, 255, 0.04)
  );
}
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.benefit-card {
  display: flex;
  gap: 17px;
  padding: 23px;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(39, 34, 92, 0.07);
  transition: 0.3s;
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.benefit-card > i {
  display: grid;
  flex: 0 0 45px;
  height: 45px;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(108, 76, 255, 0.14),
    rgba(0, 212, 255, 0.15)
  );
  color: var(--primary);
}
.benefit-card h3 {
  font-size: 1rem;
}
.benefit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}
.cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  overflow: hidden;
  padding: 55px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 85% 20%, rgba(0, 212, 255, 0.3), transparent 28%),
    linear-gradient(135deg, #4b2fd4, #7b3fea 55%, #d433a7);
  box-shadow: 0 28px 70px rgba(91, 51, 204, 0.3);
  color: #fff;
}
.cta h2 {
  max-width: 620px;
  margin: 16px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.05em;
}
.cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
}
.cta .btn {
  position: relative;
  z-index: 2;
  white-space: nowrap;
}
.cta-shape {
  position: absolute;
  right: 12%;
  top: -80%;
  width: 280px;
  height: 280px;
  border: 35px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  animation: spin 16s linear infinite;
}
.auth-wrap {
  min-height: calc(100vh - 150px);
  display: grid;
  place-items: center;
  padding: 55px 15px;
  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(108, 76, 255, 0.12),
      transparent 30%
    ),
    radial-gradient(circle at 90% 80%, rgba(0, 212, 255, 0.12), transparent 28%);
}
.auth-card {
  width: min(100%, 470px);
  padding: 36px;
  border-radius: 24px;
}
.form-card,
.wizard-card {
  padding: 30px;
  border-radius: 22px;
}
.form-control,
.form-select {
  min-height: 48px;
  border: 1px solid #dfe1ef;
  border-radius: 12px;
  background: #fbfbff;
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 0.23rem rgba(108, 76, 255, 0.12);
}
.form-label {
  color: #484f6d;
  font-size: 0.84rem;
  font-weight: 700;
}
.stat-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 19px;
  transition: 0.3s;
}
.stat-card:after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -40px;
  width: 95px;
  height: 95px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(108, 76, 255, 0.1),
    rgba(255, 78, 205, 0.08)
  );
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 45px rgba(48, 38, 117, 0.14);
}
.stat-card i {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 11px;
  background: rgba(108, 76, 255, 0.1);
  color: var(--primary);
}
.stat-card small,
.stat-card strong {
  display: block;
  margin-top: 10px;
}
.stat-card small {
  color: var(--muted);
  font-weight: 700;
}
.stat-card strong {
  font-size: 1.25rem;
}
.card {
  border-radius: 20px;
}
.card-body {
  padding: 24px;
}
.table {
  --bs-table-bg: transparent;
}
.table > :not(caption) > * > * {
  padding: 0.9rem;
  border-color: #ececf5;
}
.table thead th {
  color: #747b98;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.status {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eceef5;
  color: #536079;
  font-size: 0.72rem;
  font-weight: 800;
}
.status-approved,
.status-paid {
  background: #d9faef;
  color: #08795e;
}
.status-rejected,
.status-overdue,
.status-failed {
  background: #ffe1e7;
  color: #b51e42;
}
.status-submitted,
.status-under_review {
  background: #fff1cc;
  color: #926600;
}
.status-disbursed {
  background: #dfebff;
  color: #245eb1;
}
.status-draft {
  background: #eef0f6;
  color: #566176;
}
.status-closed {
  background: #ece6ff;
  color: #5737a8;
}
.notification {
  padding: 13px 0;
  border-bottom: 1px solid #edf0f5;
}
.notification small {
  display: block;
  margin-top: 3px;
  color: var(--muted);
}
.wizard-steps {
  display: flex;
  overflow: auto;
  gap: 8px;
  margin-bottom: 32px;
}
.wizard-step {
  flex: 1;
  min-width: 85px;
  border: 0;
  background: transparent;
  color: var(--muted);
}
.wizard-step span {
  display: grid;
  width: 37px;
  height: 37px;
  margin: auto;
  place-items: center;
  border-radius: 12px;
  background: #e9eaf3;
  font-weight: 800;
  transition: 0.25s;
}
.wizard-step small {
  display: block;
  margin-top: 7px;
}
.wizard-step.complete span,
.wizard-step.active span {
  background: linear-gradient(135deg, var(--primary), var(--pink));
  box-shadow: 0 8px 18px rgba(108, 76, 255, 0.25);
  color: #fff;
}
.wizard-step.active {
  color: var(--primary);
}
.form-step {
  display: none;
  animation: stepIn 0.35s ease;
}
.form-step.active {
  display: block;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.review-grid > div {
  padding: 14px;
  border: 1px solid #ededf5;
  border-radius: 12px;
  background: #fafaff;
  min-width: 0;
}
.review-grid small,
.review-grid b {
  display: block;
}
.review-grid small {
  color: var(--muted);
}
.review-grid b {
  overflow-wrap: anywhere;
}
.full-review-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.fee-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid #edf0f5;
}
.fee-row.total {
  border: 0;
  font-size: 1.2rem;
}
.detail-list {
  display: grid;
  gap: 10px;
}
.detail-list > div,
.repayment-item {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #edf0f5;
}
.detail-list > div:last-child,
.repayment-item:last-child {
  border-bottom: 0;
}
.detail-list span,
.repayment-item small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 700;
}
.detail-list strong,
.repayment-item strong {
  overflow-wrap: anywhere;
}
.loan-summary {
  height: 100%;
  padding: 18px;
  border: 1px solid #e5e7f2;
  border-radius: 16px;
  background: #fff;
}
.loan-summary small,
.loan-summary strong {
  display: block;
}
.dues-strip {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(108, 76, 255, 0.18);
  border-radius: 18px;
  background: #fff;
  box-shadow: var(--shadow);
}
.dues-strip small,
.dues-strip strong {
  display: block;
}
.dues-strip small {
  color: var(--muted);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.site-footer {
  position: relative;
  overflow: hidden;
  padding: 70px 0 20px;
  background: #080b24;
  color: #fff;
}
.site-footer:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -180px;
  width: 450px;
  height: 450px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(108, 76, 255, 0.25),
    transparent 68%
  );
}
.footer-main {
  position: relative;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr 1.2fr;
  gap: 55px;
}
.footer-brand p {
  max-width: 400px;
  margin: 20px 0;
  color: #969bb9;
  font-size: 0.88rem;
  line-height: 1.8;
}
.footer-main h3 {
  margin-bottom: 18px;
  color: #fff;
  font-size: 0.9rem;
}
.footer-main > div:not(:first-child) {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.footer-main a,
.footer-main span {
  color: #9298b9;
  font-size: 0.82rem;
  transition: 0.2s;
}
.footer-main a:hover {
  color: var(--cyan);
  transform: translateX(3px);
}
.social-links {
  display: flex;
  gap: 9px;
}
.social-links a {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}
.social-links a:hover {
  transform: translateY(-3px);
  border-color: var(--cyan);
  background: rgba(0, 212, 255, 0.12);
}
.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: #7d829e;
  font-size: 0.78rem;
}
.footer-bottom strong {
  color: #d6d9ea;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@keyframes orbFloat {
  50% {
    transform: translate(20px, -18px) scale(1.1);
  }
}
@keyframes visualFloat {
  50% {
    transform: translateY(-12px);
  }
}
@keyframes chipFloat {
  50% {
    transform: translateY(-10px);
  }
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
  }
  .hero-content {
    padding-top: 65px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy > p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions,
  .hero-trust {
    justify-content: center;
  }
  .hero-visual {
    max-width: 680px;
    margin: auto;
  }
  .hero-visual img {
    width: 100%;
    margin: 0;
  }
  .chip-secure {
    right: 0;
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-main > div:last-child {
    display: none;
  }
  .cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .benefit-grid {
    margin-top: 20px;
  }
}
@media (max-width: 767px) {
  .hero-copy h1 {
    font-size: 3rem;
  }
  .hero-content {
    padding-top: 45px;
    padding-bottom: 60px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .floating-chip {
    padding: 9px 11px;
  }
  .chip-approved {
    left: 1%;
    bottom: 6%;
  }
  .chip-secure {
    right: 1%;
    top: 7%;
  }
  .floating-chip > span {
    width: 32px;
    height: 32px;
  }
  .floating-chip b {
    font-size: 0.66rem;
  }
  .section-space {
    padding-top: 70px;
    padding-bottom: 70px;
  }
  .benefit-grid {
    grid-template-columns: 1fr;
  }
  .cta {
    padding: 35px 24px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
  }
  .footer-brand {
    grid-column: 1/-1;
  }
  .footer-bottom {
    align-items: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  .wizard-card,
  .auth-card,
  .form-card {
    padding: 22px;
  }
  .review-grid {
    grid-template-columns: 1fr;
  }
  .full-review-grid {
    grid-template-columns: 1fr;
  }
  .dues-strip {
    grid-template-columns: 1fr;
  }
  .dues-strip .btn {
    width: 100%;
  }
  .trust-strip strong {
    font-size: 1.35rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .hero-orb,
  .hero-visual,
  .floating-chip,
  .cta-shape {
    animation: none;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
