/* Home Glass — scoped by body class .home-glass */
.home-glass .main {
  padding: 0;
}

.public-site.home-glass {
  background: #f6f8ff;
}

.home-glass .glass-theme {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.home-glass .mesh-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-glass .mesh-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 60% at 50% -10%, color-mix(in srgb, var(--primary) 22%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 60% at 90% 30%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 55%),
    radial-gradient(ellipse 70% 60% at 10% 75%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 55%);
  opacity: 0.92;
}

.home-glass .blob {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 999px;
  filter: blur(44px);
  opacity: 0.55;
  background: color-mix(in srgb, var(--primary) 22%, white);
  animation: home-blob-float 11s var(--ease) infinite;
}

.home-glass .blob.blob-1 { left: -140px; top: -220px; }
.home-glass .blob.blob-2 { right: -180px; top: 80px; opacity: 0.46; animation-delay: -2s; }
.home-glass .blob.blob-3 { left: 12%; bottom: -260px; opacity: 0.42; animation-delay: -5s; }
.home-glass .blob.blob-4 { right: 10%; bottom: -240px; opacity: 0.35; animation-delay: -7s; }

@keyframes home-blob-float {
  50% { transform: translate3d(0, 14px, 0) scale(1.02); opacity: 0.48; }
}

.home-glass .glass-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.home-glass .container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
}

.home-glass .landing-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 14px 0;
}

.home-glass .landing-nav.scrolled .nav-shell {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.home-glass .nav-shell {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 12px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.54);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-glass .nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.home-glass .nav-brand img {
  height: 34px;
  width: auto;
  display: block;
}

.home-glass .nav-links {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.home-glass .nav-link {
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(0, 0, 0, 0.78);
  text-decoration: none;
  transition: background 0.16s var(--ease), color 0.16s var(--ease), transform 0.16s var(--ease);
}

.home-glass .nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

.home-glass .nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.home-glass .btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid color-mix(in srgb, var(--primary) 18%, rgba(0, 0, 0, 0.06));
  background: linear-gradient(180deg, color-mix(in srgb, var(--primary) 88%, white) 0%, color-mix(in srgb, var(--primary) 74%, black) 100%);
  color: white;
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
  box-shadow: 0 10px 22px rgba(22, 119, 255, 0.22);
}

.home-glass .btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.42);
  color: rgba(0, 0, 0, 0.86);
  font-weight: 900;
  font-size: 13px;
  text-decoration: none;
}

.home-glass .mobile-toggle {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.10);
  background: rgba(255, 255, 255, 0.52);
  display: none;
  align-items: center;
  justify-content: center;
}

.home-glass .mobile-panel {
  display: none;
  margin-top: 10px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.home-glass .mobile-panel a {
  display: block;
  padding: 10px 10px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.82);
}

.home-glass .mobile-panel a:hover {
  background: rgba(0, 0, 0, 0.05);
}

.home-glass .hero-section {
  position: relative;
  z-index: 1;
  padding: 56px 0 18px;
}

.home-glass .hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 18px;
  align-items: start;
}

.home-glass .hero-content {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  padding: 22px 22px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-glass .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.70);
  font-weight: 900;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.70);
}

.home-glass .hero-title {
  margin: 12px 0 10px;
  font-size: 40px;
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 950;
}

.home-glass .hero-description {
  margin: 0 0 16px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 15.5px;
  font-weight: 700;
  line-height: 1.6;
  max-width: 70ch;
}

.home-glass .hero-buttons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 14px;
}

.home-glass .hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 6px;
}

.home-glass .trust-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  background: rgba(255, 255, 255, 0.54);
  font-weight: 900;
  color: rgba(0, 0, 0, 0.76);
  font-size: 13px;
}

.home-glass .trust-dot {
  width: 10px;
  height: 10px;
  border-radius: 99px;
  background: color-mix(in srgb, var(--primary) 70%, white);
  box-shadow: 0 6px 14px rgba(22, 119, 255, 0.25);
}

.home-glass .hero-side {
  display: grid;
  gap: 12px;
}

.home-glass .glass-card {
  border-radius: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.56);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.10);
  padding: 16px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-glass .stat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.home-glass .stat-num {
  font-weight: 950;
  letter-spacing: -0.02em;
  font-size: 22px;
}

.home-glass .stat-label {
  color: rgba(0, 0, 0, 0.62);
  font-weight: 900;
  font-size: 13px;
}

.home-glass .section {
  position: relative;
  z-index: 1;
  padding: 22px 0;
}

.home-glass .section-header {
  text-align: center;
  margin-bottom: 14px;
}

.home-glass .section-header h2 {
  margin: 10px 0 0;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.home-glass .feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.home-glass .feature-item h3 {
  margin: 10px 0 6px;
  font-size: 16px;
  font-weight: 950;
}

.home-glass .feature-item p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13.5px;
}

.home-glass .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--primary) 14%, white);
  border: 1px solid rgba(0, 0, 0, 0.06);
  font-weight: 950;
  color: color-mix(in srgb, var(--primary) 72%, black);
}

.home-glass .steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-glass .step-card .step-num {
  font-weight: 950;
  color: rgba(0, 0, 0, 0.55);
  letter-spacing: 0.12em;
}

.home-glass .step-card h4 {
  margin: 10px 0 6px;
  font-weight: 950;
  font-size: 16px;
}

.home-glass .step-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13.5px;
}

.home-glass .stats-wrap {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-glass .audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-glass .audience-card h4 {
  margin: 10px 0 6px;
  font-weight: 950;
  font-size: 16px;
}

.home-glass .audience-card p {
  margin: 0;
  color: rgba(0, 0, 0, 0.64);
  font-weight: 700;
  line-height: 1.55;
  font-size: 13.5px;
}

.home-glass .faq-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.home-glass .faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 950;
}

.home-glass .faq-item summary::-webkit-details-marker {
  display: none;
}

.home-glass .faq-item summary::after {
  content: "+";
  float: right;
  opacity: 0.7;
  font-weight: 950;
}

.home-glass .faq-item[open] summary::after {
  content: "–";
}

.home-glass .faq-item .faq-body {
  padding-top: 10px;
  color: rgba(0, 0, 0, 0.66);
  font-weight: 700;
  line-height: 1.6;
  font-size: 13.5px;
}

.home-glass .glass-footer {
  position: relative;
  z-index: 1;
  padding: 28px 0 22px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.50);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.home-glass .footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr;
  gap: 18px;
  align-items: start;
}

.home-glass .footer-nav-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.home-glass .link-group h5 {
  margin: 0 0 10px;
  font-weight: 950;
  font-size: 14px;
}

.home-glass .link-group a {
  display: block;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.72);
  font-weight: 800;
  padding: 7px 0;
}

.home-glass .link-group a:hover {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.home-glass .footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.home-glass .bottom-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: rgba(0, 0, 0, 0.62);
  font-weight: 800;
}

.home-glass .brand-accent {
  color: var(--primary);
  font-weight: 950;
}

@media (max-width: 980px) {
  .home-glass .hero-grid { grid-template-columns: 1fr; }
  .home-glass .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .home-glass .steps-grid { grid-template-columns: 1fr; }
  .home-glass .stats-wrap { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .home-glass .audience-grid { grid-template-columns: 1fr; }
  .home-glass .faq-grid { grid-template-columns: 1fr; }
  .home-glass .footer-grid { grid-template-columns: 1fr; }
  .home-glass .footer-nav-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 760px) {
  .home-glass .nav-links { display: none; }
  .home-glass .mobile-toggle { display: inline-flex; }
  .home-glass .hero-title { font-size: 32px; }
  .home-glass .stats-wrap { grid-template-columns: 1fr; }
  .home-glass .footer-nav-grid { grid-template-columns: 1fr; }
}
