/* [project]/src/app/home.css [app-client] (css) */
:root {
  --blue: #0d47a1;
  --teal: #00a7a7;
  --gold: #f2b705;
  --sky: #e8f4ff;
  --dark: #1b2a41;
  --muted: #64748b;
  --soft: #f7fafc;
}

.brand-page {
  min-height: 100vh;
  color: var(--dark);
  background: linear-gradient(135deg, #f8fbff 0%, #eef8ff 45%, #f7fffd 100%);
  padding: 28px 18px;
}

.brand-wrap {
  max-width: 1180px;
  margin: 0 auto;
}

.brand-header {
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 26px;
  display: flex;
}

.brand-logo-wide {
  object-fit: contain;
  max-width: 380px;
  height: 76px;
}

.admin-link {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  align-items: stretch;
  gap: 22px;
  display: grid;
}

.hero-card {
  background: #fff;
  border: 1px solid #dcecff;
  border-radius: 34px;
  padding: 42px 36px;
  box-shadow: 0 24px 80px #0d47a114;
}

.logo-ar {
  width: 230px;
  max-width: 100%;
  margin-bottom: 18px;
}

.kicker {
  color: var(--teal);
  margin-bottom: 12px;
  font-weight: 900;
}

.hero-title {
  color: var(--dark);
  letter-spacing: -.5px;
  margin: 0 0 16px;
  font-size: 48px;
  line-height: 1.18;
}

.hero-text {
  color: #475569;
  max-width: 760px;
  margin: 0;
  font-size: 18px;
  line-height: 1.9;
}

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

.primary-btn, .secondary-btn {
  border-radius: 16px;
  padding: 14px 22px;
  font-weight: 900;
  text-decoration: none;
}

.primary-btn {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px #0d47a12e;
}

.secondary-btn {
  background: var(--sky);
  color: var(--blue);
}

.story-card {
  background: linear-gradient(160deg, #fff, #f0fffc);
  border: 1px solid #dcecff;
  border-radius: 34px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 24px 80px #00a7a714;
}

.story-head {
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  display: flex;
}

.app-icon {
  object-fit: contain;
  border-radius: 20px;
  width: 64px;
  height: 64px;
}

@keyframes floatY {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }
}

.story-step {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 22px;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
  padding: 16px;
  animation: 3.2s ease-in-out infinite floatY;
  display: flex;
}

.story-step:nth-child(3) {
  animation-delay: .18s;
}

.story-step:nth-child(4) {
  animation-delay: .36s;
}

.step-no {
  background: var(--blue);
  color: #fff;
  border-radius: 15px;
  place-items: center;
  width: 42px;
  height: 42px;
  font-weight: 900;
  display: grid;
}

.story-step:nth-child(3) .step-no {
  background: var(--teal);
}

.story-step:nth-child(4) .step-no {
  background: var(--gold);
  color: #3b2f00;
}

.story-title {
  color: var(--dark);
  font-weight: 900;
}

.portal-grid {
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 16px;
  margin-top: 18px;
  display: grid;
}

.portal-card {
  color: var(--dark);
  background: #fff;
  border: 1px solid #dcecff;
  border-radius: 24px;
  padding: 22px;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 14px 40px #0d47a10e;
}

.portal-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 50px #0d47a11a;
}

.portal-icon {
  background: var(--sky);
  width: 58px;
  height: 58px;
  color: var(--blue);
  border-radius: 19px;
  place-items: center;
  margin-bottom: 14px;
  display: grid;
}

.portal-card:nth-child(2n) .portal-icon {
  color: var(--teal);
  background: #e6fffa;
}

.portal-card h3 {
  margin: 0 0 8px;
  font-size: 20px;
}

.portal-card p {
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

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

  .hero-title {
    font-size: 36px;
  }

  .brand-logo-wide {
    height: 62px;
  }

  .hero-card {
    padding: 30px 22px;
  }
}

.brand-header {
  background: #ffffffbf;
  border: 1px solid #e8f4ff;
  border-radius: 24px;
  padding: 14px 18px;
  box-shadow: 0 14px 40px #0d47a10d;
}

.brand-logo-wide {
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  width: 280px;
  height: 82px;
}

.admin-link {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 9px 14px;
}

.logo-ar {
  display: none;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, .85fr);
  gap: 24px;
}

.hero-card {
  border-color: #dbeafe;
  padding: 56px 44px;
  position: relative;
}

.hero-card:before {
  content: "";
  background: linear-gradient(var(--gold),var(--teal));
  border-radius: 99px;
  width: 7px;
  height: 120px;
  position: absolute;
  top: 42px;
  right: 0;
}

.hero-title {
  max-width: 760px;
  font-size: 52px;
}

.hero-text {
  font-size: 19px;
}

.kicker {
  background: #f0fdfa;
  border: 1px solid #ccfbf1;
  border-radius: 999px;
  padding: 8px 14px;
  display: inline-flex;
}

.story-card {
  background: linear-gradient(#fff, #f8fbff);
  border-color: #e8f4ff;
  padding: 30px;
}

.story-head {
  background: #fff;
  border: 1px solid #e8f4ff;
  border-radius: 22px;
  padding: 14px;
}

.app-icon {
  object-fit: cover;
  object-position: center;
  background: #fff;
  width: 70px;
  height: 70px;
}

.story-step {
  box-shadow: 0 10px 25px #0d47a10a;
}

.step-no {
  box-shadow: 0 8px 20px #0d47a129;
}

.brand-logo-wide {
  object-fit: contain !important;
  object-position: center !important;
  width: 360px !important;
  height: auto !important;
  max-height: 95px !important;
}

.brand-page {
  background: radial-gradient(circle at 85% 10%, #f2b70529, #0000 24%), radial-gradient(circle at 12% 30%, #00a7a721, #0000 28%), linear-gradient(135deg, #f8fbff 0%, #eef8ff 45%, #f7fffd 100%);
}

.hero-card {
  background: linear-gradient(145deg, #fff 0% 72%, #fff8df 100%);
}

.story-card {
  background: linear-gradient(145deg, #fff 0%, #f0fffc 65%, #fff8df 100%);
}

.story-step:nth-child(2) {
  background: #f8fbff;
  border-color: #dbeafe;
}

.story-step:nth-child(3) {
  background: #f0fdfa;
  border-color: #ccfbf1;
}

.story-step:nth-child(4) {
  background: #fffbeb;
  border-color: #fde68a;
}

.story-step:nth-child(2) {
  box-shadow: 0 12px 28px #0d47a112;
}

.story-step:nth-child(3) {
  box-shadow: 0 12px 28px #00a7a714;
}

.story-step:nth-child(4) {
  box-shadow: 0 12px 28px #f2b7051a;
}

.portal-card:first-child {
  background: linear-gradient(#fff, #f8fbff);
}

.portal-card:nth-child(2) {
  background: linear-gradient(#fff, #f0fdfa);
}

.portal-card:nth-child(3) {
  background: linear-gradient(#fff, #fffbeb);
}

.portal-card:nth-child(4) {
  background: linear-gradient(#fff, #eef4ff);
}

.portal-card {
  position: relative;
  overflow: hidden;
}

.portal-card:before {
  content: "";
  background: linear-gradient(90deg,var(--blue),var(--teal),var(--gold));
  height: 5px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

.features-band {
  background: #fff;
  border: 1px solid #dcecff;
  border-radius: 28px;
  margin-top: 20px;
  padding: 22px;
  box-shadow: 0 16px 45px #0d47a10e;
}

.features-title {
  color: var(--dark);
  margin: 0 0 16px;
  font-size: 22px;
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  display: grid;
}

.feature-item {
  color: var(--dark);
  background: linear-gradient(#fff, #f8fbff);
  border: 1px solid #e2e8f0;
  border-radius: 20px;
  padding: 16px;
  font-weight: 900;
}

.feature-item span {
  color: var(--muted);
  margin-top: 6px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  display: block;
}

.brand-logo-wide {
  border-radius: 16px;
  object-fit: cover !important;
  object-position: center !important;
  width: 430px !important;
  max-width: 100% !important;
  height: 92px !important;
}

.dash-logo {
  object-fit: contain !important;
  width: 230px !important;
  max-width: 100% !important;
}

/*# sourceMappingURL=src_app_home_05yv344.css.map*/