@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Noto+Sans+SC:wght@400;500;700;900&display=swap");
:root {
  --ink: #11243d;
  --muted: #60728a;
  --blue: #0877ed;
  --cyan: #19c9db;
  --pale: #f4f9ff;
  --line: #dce8f5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  font-family: "DM Sans", "Noto Sans SC", sans-serif;
  background: #fff;
}
a {
  text-decoration: none;
  color: inherit;
}
.container {
  width: min(1160px, calc(100% - 48px));
  margin: auto;
}
.site-header {
  height: 78px;
  background: #fff;
  border-bottom: 1px solid #edf2f7;
  position: sticky;
  top: 0;
  z-index: 10;
}
.nav-wrap {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 48px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 20px;
  font-weight: 900;
  white-space: nowrap;
}
.brand small {
  color: #8593a6;
  font-size: 10px;
  font-weight: 500;
  margin-left: 5px;
}
.brand-mark,
.mini-logo {
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #16c9dd, #1574ec);
  color: white;
  border-radius: 10px;
  font-weight: 900;
  box-shadow: 0 5px 14px #0a8ddf36;
}
.brand-mark {
  width: 32px;
  height: 32px;
  font-size: 17px;
}
.nav-wrap nav {
  display: flex;
  gap: 36px;
  color: #60728a;
  font-size: 14px;
  margin-left: auto;
}
.nav-wrap nav a:hover {
  color: var(--blue);
}
.nav-cta {
  padding: 11px 19px;
  background: #eff7ff;
  color: #0877ed;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
}
.nav-cta span,
.btn span {
  margin-left: 8px;
}
.menu-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 22px;
}
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f7fbff 0%, #eef8ff 58%, #eaf4ff 100%);
  min-height: 650px;
  padding: 92px 0 120px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(#cce6fa 1px, transparent 1px),
    linear-gradient(90deg, #cce6fa 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(90deg, #000, transparent 85%);
}
.hero-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 45px;
  align-items: center;
  position: relative;
}
.eyebrow {
  color: var(--blue);
  font-size: 11px;
  letter-spacing: 2.2px;
  font-weight: 700;
  margin-bottom: 22px;
}
.eyebrow span {
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--cyan);
  vertical-align: middle;
  margin-left: 8px;
}
.pulse-dot {
  width: 7px !important;
  height: 7px !important;
  border-radius: 50%;
  background: #13cad3 !important;
  margin: 0 8px 1px 0 !important;
  box-shadow: 0 0 0 5px #13cad326;
}
.hero h1 {
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.13;
  letter-spacing: -3px;
  margin: 0 0 22px;
  font-weight: 900;
}
.hero h1 span,
h2 span {
  color: var(--blue);
}
.hero-text {
  font-size: 17px;
  line-height: 1.9;
  color: #60728a;
  max-width: 500px;
  margin: 0;
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin: 32px 0;
}
.btn {
  display: inline-flex;
  align-items: center;
  border-radius: 9px;
  padding: 14px 24px;
  font-weight: 700;
  font-size: 14px;
  border: 0;
  cursor: pointer;
}
.btn-primary-glow {
  background: linear-gradient(110deg, #167df2, #13b9dc);
  color: white;
  box-shadow: 0 12px 24px #148ddc35;
}
.btn-ghost {
  border: 1px solid #c9d9e9;
  color: #44607d;
  background: #fff;
}
.trust-row {
  display: flex;
  gap: 20px;
  color: #7b8fa6;
  font-size: 12px;
}
.hero-visual {
  position: relative;
}
.dashboard-window {
  border: 7px solid #fff;
  border-radius: 16px;
  background: #f3f8ff;
  box-shadow: 0 28px 70px #1673b52b;
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
  overflow: hidden;
}
.window-bar {
  height: 37px;
  background: #f7faff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  color: #8a9caf;
  font-size: 10px;
}
.traffic {
  display: flex;
  gap: 5px;
}
.traffic i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5b8a9;
}
.traffic i:nth-child(2) {
  background: #f8dc89;
}
.traffic i:nth-child(3) {
  background: #9bd6a0;
}
.window-body {
  display: flex;
  min-height: 340px;
}
.window-body aside {
  width: 120px;
  background: #12355a;
  color: #abc6e0;
  padding: 13px 8px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  font-size: 9px;
}
.window-body aside span {
  padding: 9px 7px;
}
.window-body aside .active {
  background: #1a78ce;
  color: #fff;
  border-radius: 5px;
}
.mini-logo {
  width: 22px;
  height: 22px;
  font-size: 11px;
  margin: 3px 7px 12px;
}
.dash-main {
  flex: 1;
  padding: 20px;
  background: #f6faff;
}
.dash-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.dash-title small {
  font-size: 9px;
  color: #8ca0b8;
}
.dash-title h3 {
  margin: 4px 0 18px;
  font-size: 19px;
}
.dash-title em {
  font-style: normal;
  font-size: 8px;
  color: #1caf86;
  background: #dcf8ee;
  padding: 4px 7px;
  border-radius: 20px;
  margin-left: 7px;
}
.dash-title button {
  font-size: 9px;
  color: #0877ed;
  background: #e2f2ff;
  border: 0;
  border-radius: 5px;
  padding: 8px;
}
.stat-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.stat-cards > div,
.chart-card {
  background: #fff;
  border: 1px solid #e7eef7;
  border-radius: 7px;
  padding: 12px;
  box-shadow: 0 4px 12px #174c8210;
}
.stat-cards small,
.stat-cards em {
  display: block;
  font-size: 8px;
  color: #8b9db2;
}
.stat-cards strong {
  display: block;
  font-size: 22px;
  margin: 7px 0;
  color: #173a60;
}
.stat-cards em {
  color: #10aa7b;
  font-style: normal;
}
.stat-cards .cyan {
  color: #0eafd1;
}
.chart-card {
  margin-top: 10px;
}
.chart-head {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
}
.chart-head span {
  color: #8ea1b7;
}
.chart {
  height: 150px;
  padding-top: 20px;
}
.bars {
  height: 105px;
  display: flex;
  align-items: end;
  justify-content: space-around;
  border-bottom: 1px solid #e7eef5;
  background: repeating-linear-gradient(
    to bottom,
    transparent 0,
    transparent 34px,
    #edf3f8 35px
  );
}
.bars i {
  width: 18px;
  border-radius: 5px 5px 0 0;
  background: linear-gradient(#74c6f2, #bdeaff);
}
.bars .hot {
  background: linear-gradient(#00a9eb, #0877ed);
}
.days {
  display: flex;
  justify-content: space-around;
  color: #a2afbd;
  font-size: 8px;
  padding-top: 6px;
}
.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 9px;
  box-shadow: 0 13px 30px #1d6b9d26;
  padding: 13px 17px;
  z-index: 2;
}
.float-badge strong {
  display: block;
  color: #0877ed;
  font-size: 18px;
}
.float-badge small {
  display: block;
  color: #8195aa;
  font-size: 10px;
  margin-top: 3px;
}
.badge-top {
  right: -22px;
  top: -22px;
}
.badge-bottom {
  left: -32px;
  bottom: -25px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.badge-bottom > span {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  color: #fff;
  background: #8c6df0;
  border-radius: 8px;
}
.badge-bottom strong {
  font-size: 12px;
  color: var(--ink);
}
.hero-wave {
  position: absolute;
  bottom: -1px;
  height: 65px;
  left: -5%;
  right: -5%;
  background: #fff;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}
.metrics {
  background: #fff;
}
.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 35px 40px;
  border-bottom: 1px solid var(--line);
}
.metrics-inner div {
  border-right: 1px solid var(--line);
  text-align: center;
}
.metrics-inner div:last-child {
  border: 0;
}
.metrics strong {
  font-size: 26px;
  color: var(--blue);
  display: block;
}
.metrics span {
  color: #8192a7;
  font-size: 12px;
}
.section {
  padding: 115px 0;
}
.section-heading {
  max-width: 520px;
}
.section-heading.center {
  text-align: center;
  margin: auto;
}
.section-heading h2,
.showcase h2,
.cta h2 {
  font-size: 45px;
  line-height: 1.25;
  letter-spacing: -1.5px;
  margin: 0 0 18px;
}
.section-heading p,
.showcase-copy > p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 15px;
  margin-top: 50px;
}
.feature-card {
  position: relative;
  overflow: hidden;
  min-height: 205px;
  padding: 28px;
  background: #fff;
  border: 1px solid #e4edf6;
  border-radius: 13px;
  box-shadow: 0 10px 25px #2857800b;
}
.feature-main {
  grid-row: span 2;
  background: linear-gradient(145deg, #eaf6ff, #f7fcff);
  display: flex;
  gap: 18px;
}
.feature-card h3 {
  font-size: 19px;
  margin: 18px 0 8px;
}
.feature-main h3 {
  margin-top: 0;
}
.feature-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 280px;
}
.feature-card a {
  color: var(--blue);
  font-weight: 700;
  font-size: 12px;
}
.icon-box {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  font-size: 20px;
}
.blue {
  background: #dff1ff;
  color: #0877ed;
}
.purple {
  background: #eee8ff;
  color: #8566e8;
}
.green {
  background: #dcf8ed;
  color: #14a576;
}
.orange {
  background: #fff0dc;
  color: #ee932b;
}
.feature-lines {
  position: absolute;
  right: 20px;
  bottom: 25px;
  display: flex;
  gap: 8px;
  align-items: end;
}
.feature-lines i {
  display: block;
  width: 12px;
  height: 40px;
  background: #bde6fb;
  border-radius: 4px;
}
.feature-lines i:nth-child(2) {
  height: 65px;
  background: #5bc1ee;
}
.feature-lines i:nth-child(3) {
  height: 92px;
  background: #1285ed;
}
.mini-chart {
  position: absolute;
  bottom: 20px;
  right: 20px;
  display: flex;
  gap: 5px;
  align-items: end;
}
.mini-chart i {
  width: 7px;
  height: 22px;
  background: #c6b6ff;
  border-radius: 3px;
}
.mini-chart i:nth-child(2),
.mini-chart i:nth-child(5) {
  height: 36px;
}
.mini-chart i:nth-child(4) {
  height: 45px;
  background: #8b76ec;
}
.shield {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 46px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #13af7e;
  background: #d9f8ec;
  clip-path: polygon(50% 0, 100% 18%, 90% 75%, 50% 100%, 10% 75%, 0 18%);
}
.ai-line {
  position: absolute;
  right: 20px;
  bottom: 25px;
  color: #e89b39;
  font-weight: 900;
  font-size: 24px;
}
.ai-line span {
  font-size: 9px;
  color: #98a4b2;
  display: block;
}
.showcase {
  background: #f5faff;
}
.showcase-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 70px;
}
.showcase-copy ul {
  list-style: none;
  padding: 15px 0 0;
  margin: 0;
}
.showcase-copy li {
  display: flex;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid #dce9f4;
}
.showcase-copy li > b {
  font-size: 12px;
  color: #86a0bc;
}
.showcase-copy li strong,
.showcase-copy li small {
  display: block;
}
.showcase-copy li small {
  font-size: 12px;
  color: #8a9bad;
  margin-top: 5px;
}
.scene-art {
  height: 400px;
  position: relative;
}
.orbit {
  position: absolute;
  border: 1px solid #bee1f8;
  border-radius: 50%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-20deg);
}
.orbit-1 {
  width: 350px;
  height: 210px;
}
.orbit-2 {
  width: 270px;
  height: 370px;
}
.art-core {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 35px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #16cbdc, #1475ea);
  border-radius: 50%;
  width: 130px;
  height: 130px;
  justify-content: center;
  box-shadow: 0 20px 45px #098ddd55;
}
.art-core div {
  font-size: 11px;
  line-height: 1.4;
}
.art-card {
  position: absolute;
  background: #fff;
  border: 1px solid #e2edf6;
  border-radius: 9px;
  padding: 15px;
  box-shadow: 0 13px 30px #2e668d18;
}
.art-card span,
.art-card small {
  display: block;
  color: #8b9cae;
  font-size: 10px;
}
.art-card strong {
  display: block;
  font-size: 16px;
  margin: 8px 0;
  color: #173a60;
}
.card-1 {
  top: 32px;
  left: 0;
}
.card-1 small {
  color: #13a977;
}
.card-2 {
  top: 18px;
  right: 0;
}
.card-2 strong {
  font-size: 27px;
  color: #0877ed;
}
.card-2 strong span {
  font-size: 11px;
  color: #9aaabd;
}
.progress {
  width: 110px;
  height: 5px;
  background: #eaf0f4;
  border-radius: 5px;
}
.progress i {
  display: block;
  width: 93%;
  height: 100%;
  background: #16c9a1;
  border-radius: 5px;
}
.card-3 {
  bottom: 22px;
  right: 30px;
}
.spark {
  color: #19bfd4;
  letter-spacing: 5px;
  font-size: 16px;
}
.faq-list {
  max-width: 760px;
  margin: 45px auto 0;
}
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq summary {
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq summary b {
  color: var(--blue);
  font-size: 20px;
  font-weight: 400;
}
.faq p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 13px;
  max-width: 650px;
}
.cta {
  background: linear-gradient(120deg, #0c4e9c, #0878e9);
  color: #fff;
  padding: 78px 0;
}
.cta .eyebrow {
  color: #8fe9f3;
}
.cta h2 {
  margin-bottom: 10px;
}
.cta h2 span {
  color: #76edf1;
}
.cta p {
  color: #c4dcf2;
}
.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 60px;
}
.contact-form {
  display: flex;
  align-items: end;
  gap: 10px;
}
.contact-form label span {
  display: block;
  font-size: 11px;
  color: #b9d2ec;
  margin-bottom: 7px;
}
.contact-form input {
  width: 150px;
  border: 1px solid #559bd9;
  background: #ffffff15;
  color: #fff;
  padding: 13px;
  border-radius: 7px;
  outline: 0;
}
.contact-form input::placeholder {
  color: #b9d2ec;
}
.site-footer {
  background: #092d59;
  color: #98b7d4;
  padding: 25px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 12px;
}
.footer-inner small {
  margin-left: auto;
}
.reveal {
  animation: rise 0.8s both;
}
.delay-1 {
  animation-delay: 0.15s;
}
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@media (max-width: 900px) {
  .nav-wrap {
    gap: 15px;
  }
  .nav-wrap nav {
    gap: 15px;
  }
  .hero-inner,
  .showcase-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 65px;
  }
  .hero-visual {
    margin: 35px auto 0;
    width: min(650px, 100%);
  }
  .feature-grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-main {
    grid-row: auto;
    grid-column: span 2;
  }
  .cta-inner {
    display: block;
  }
  .contact-form {
    margin-top: 30px;
  }
  .section {
    padding: 75px 0;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1160px);
  }
  .site-header {
    height: 65px;
  }
  .brand small,
  .nav-wrap nav,
  .nav-cta {
    display: none;
  }
  .menu-toggle {
    display: block;
    margin-left: auto;
  }
  .hero {
    min-height: auto;
    padding: 60px 0 95px;
  }
  .hero h1 {
    font-size: 44px;
    letter-spacing: -2px;
  }
  .hero-text {
    font-size: 15px;
  }
  .trust-row {
    gap: 9px;
    flex-wrap: wrap;
    font-size: 11px;
  }
  .dashboard-window {
    transform: none;
  }
  .window-body aside {
    width: 74px;
    font-size: 7px;
  }
  .window-body aside span {
    padding: 7px 3px;
  }
  .dash-main {
    padding: 11px;
  }
  .stat-cards strong {
    font-size: 14px;
  }
  .stat-cards {
    gap: 4px;
  }
  .stat-cards > div {
    padding: 8px;
  }
  .float-badge {
    display: none;
  }
  .metrics-inner {
    padding: 25px 0;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .metrics-inner div:nth-child(2) {
    border: 0;
  }
  .section-heading h2,
  .showcase h2,
  .cta h2 {
    font-size: 35px;
  }
  .feature-grid {
    display: block;
    margin-top: 30px;
  }
  .feature-card,
  .feature-main {
    margin-bottom: 14px;
    min-height: 175px;
  }
  .showcase-inner {
    gap: 35px;
  }
  .scene-art {
    height: 300px;
    transform: scale(0.8);
    transform-origin: left top;
  }
  .cta {
    padding: 60px 0;
  }
  .contact-form {
    display: block;
  }
  .contact-form label {
    margin-bottom: 12px;
  }
  .contact-form input {
    width: 100%;
  }
  .contact-form button {
    margin-top: 15px;
  }
  .footer-inner {
    display: block;
  }
  .footer-inner > span {
    display: block;
    margin: 15px 0;
  }
  .footer-inner small {
    display: block;
  }
}

/* Mobile navigation and touch layout refinements */
@media (max-width: 600px) {
  body {
    overflow-x: hidden;
  }
  .nav-wrap {
    position: relative;
  }
  .nav-wrap nav.open {
    display: flex;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    padding: 14px 15px;
    flex-direction: column;
    gap: 0;
    background: #fff;
    border: 1px solid #e4edf6;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 14px 25px #164e7a18;
  }
  .nav-wrap nav.open a {
    padding: 12px 4px;
    color: #35526f;
    border-bottom: 1px solid #edf2f7;
  }
  .nav-wrap nav.open a:last-child {
    border-bottom: 0;
  }
  .hero-inner {
    min-width: 0;
  }
  .hero-copy,
  .hero-visual,
  .dashboard-window {
    max-width: 100%;
    min-width: 0;
  }
  .window-bar {
    padding: 0 9px;
  }
  .window-body {
    min-width: 0;
  }
  .dash-title h3 {
    font-size: 16px;
  }
  .chart-card {
    overflow: hidden;
  }
  .showcase-copy,
  .section-heading {
    max-width: 100%;
  }
  .contact-form button {
    width: 100%;
    justify-content: center;
  }
}

/* Responsive overrides: keep these rules last so they win over desktop styles. */
@media screen and (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
  .container {
    width: calc(100% - 32px) !important;
    max-width: none !important;
  }
  .site-header {
    height: 64px;
  }
  .nav-wrap {
    gap: 0;
  }
  .nav-wrap nav {
    display: none !important;
  }
  .nav-wrap nav.open {
    display: flex !important;
  }
  .menu-toggle {
    display: block !important;
    margin-left: auto;
  }
  .hero {
    min-height: 0;
    padding: 52px 0 86px;
  }
  .hero-inner,
  .showcase-inner {
    display: flex !important;
    flex-direction: column;
    gap: 36px;
  }
  .hero-copy,
  .hero-visual,
  .showcase-copy {
    width: 100%;
    max-width: 100%;
  }
  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
    letter-spacing: -2px;
  }
  .hero-text {
    font-size: 15px;
    line-height: 1.8;
  }
  .hero-actions {
    flex-wrap: wrap;
  }
  .btn {
    min-height: 46px;
  }
  .dashboard-window {
    width: 100%;
    transform: none;
  }
  .window-body aside {
    width: 76px;
    flex: 0 0 76px;
  }
  .dash-main {
    min-width: 0;
    padding: 10px;
  }
  .stat-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .stat-cards strong {
    font-size: clamp(13px, 4vw, 18px);
  }
  .metrics-inner {
    grid-template-columns: repeat(2, 1fr);
    padding: 26px 0;
  }
  .metrics-inner div:nth-child(2) {
    border-right: 0;
  }
  .section {
    padding: 68px 0;
  }
  .section-heading h2,
  .showcase h2,
  .cta h2 {
    font-size: clamp(30px, 9vw, 40px);
  }
  .feature-grid {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }
  .feature-card,
  .feature-main {
    min-height: 180px;
    margin: 0;
  }
  .scene-art {
    width: 100%;
    height: 310px;
    transform: scale(0.78);
    transform-origin: top left;
  }
  .cta-inner {
    display: block !important;
  }
  .contact-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    margin-top: 28px;
  }
  .contact-form input,
  .contact-form button {
    width: 100%;
  }
  .footer-inner {
    display: block;
  }
  .footer-inner > span,
  .footer-inner small {
    display: block;
    margin: 14px 0 0;
  }
}

/* Account and user dashboard */
.account-page {
  min-height: 100vh;
  background: #f4f9ff;
}
.account-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
}
.account-brand-panel {
  position: relative;
  overflow: hidden;
  padding: 42px clamp(30px, 8vw, 110px);
  background: linear-gradient(145deg, #0b3b78, #087fea);
  color: #fff;
}
.account-brand-panel .brand {
  color: #fff;
}
.account-brand-panel .brand small {
  color: #acd8f8;
}
.account-brand-copy {
  position: relative;
  z-index: 1;
  margin-top: 25vh;
}
.account-brand-copy .eyebrow {
  color: #8beef4;
}
.account-brand-copy h1 {
  font-size: clamp(42px, 5vw, 70px);
  line-height: 1.18;
  letter-spacing: -3px;
  margin: 0 0 22px;
}
.account-brand-copy h1 span {
  color: #70edf1;
}
.account-brand-copy p {
  color: #c9e1f4;
  font-size: 16px;
}
.account-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  right: -220px;
  bottom: -240px;
  border: 1px solid #7fdefc66;
  border-radius: 50%;
  box-shadow:
    0 0 0 80px #63d7f912,
    0 0 0 160px #63d7f908;
}
.account-form-panel {
  display: grid;
  place-items: center;
  padding: 30px;
}
.login-card {
  width: min(420px, 100%);
  padding: 42px;
  background: #fff;
  border: 1px solid #e1edf7;
  border-radius: 16px;
  box-shadow: 0 22px 60px #20547d16;
}
.login-heading {
  text-align: center;
  margin-bottom: 32px;
}
.login-icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin: 0 auto 14px;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, #15cbdc, #1575ed);
  font-size: 24px;
}
.login-heading h2 {
  margin: 0 0 8px;
  font-size: 28px;
}
.login-heading p {
  margin: 0;
  color: #8091a5;
  font-size: 13px;
}
.form-field {
  display: block;
  margin-bottom: 19px;
}
.form-field > span:first-child {
  display: block;
  color: #36516d;
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
}
.form-field input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid #d6e4f0;
  border-radius: 8px;
  outline: 0;
  color: #183752;
  font-size: 14px;
  transition: 0.2s;
}
.form-field input:focus {
  border-color: #1987ed;
  box-shadow: 0 0 0 3px #1987ed16;
}
.field-error,
.validation-summary {
  display: block;
  color: #e45757;
  font-size: 12px;
  margin-top: 6px;
}
.validation-summary ul {
  padding-left: 18px;
  margin: 0 0 12px;
}
.login-button {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.back-home {
  display: block;
  text-align: center;
  margin-top: 24px;
  color: #6b849d;
  font-size: 13px;
}
.back-home:hover {
  color: #0877ed;
}
.user-dashboard {
  min-height: calc(100vh - 78px);
  background: #f4f9ff;
  padding-bottom: 90px;
}
.dashboard-hero {
  background: linear-gradient(120deg, #0b3d7b, #087bea);
  color: #fff;
  padding: 60px 0 80px;
}
.dashboard-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dashboard-hero h1 {
  font-size: 44px;
  margin: 0 0 10px;
  letter-spacing: -1px;
}
.dashboard-hero h1 span {
  color: #75eef1;
}
.dashboard-hero p {
  margin: 0;
  color: #c4ddf2;
}
.dashboard-avatar {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  background: #ffffff22;
  border: 1px solid #ffffff55;
  border-radius: 50%;
  font-size: 36px;
  font-weight: 900;
}
.dashboard-content {
  margin-top: -30px;
  position: relative;
}
.dashboard-topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
  padding: 15px 22px;
  border: 1px solid #e2edf6;
  border-radius: 10px;
  box-shadow: 0 8px 20px #2f648b0d;
  color: #71869c;
  font-size: 13px;
}
.status-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #16bf88;
  border-radius: 50%;
  margin-right: 8px;
}
.logout-button {
  border: 0;
  background: none;
  color: #7890a6;
  cursor: pointer;
}
.logout-button:hover {
  color: #0877ed;
}
.user-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin: 20px 0;
}
.user-stats article {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #fff;
  border: 1px solid #e2edf6;
  border-radius: 10px;
  padding: 22px 18px;
  box-shadow: 0 8px 20px #2f648b0d;
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  font-weight: 900;
}
.stat-icon.blue {
  color: #0877ed;
  background: #e1f1ff;
}
.stat-icon.purple {
  color: #836be8;
  background: #eeeaff;
}
.stat-icon.green {
  color: #10a477;
  background: #dff8ed;
}
.stat-icon.orange {
  color: #e7952c;
  background: #fff0db;
}
.user-stats small,
.user-stats em {
  display: block;
  color: #8295a8;
  font-size: 11px;
  font-style: normal;
}
.user-stats strong {
  display: block;
  color: #183b60;
  font-size: 22px;
  margin: 4px 0;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 15px;
}
.info-card {
  background: #fff;
  border: 1px solid #e2edf6;
  border-radius: 10px;
  padding: 28px;
  box-shadow: 0 8px 20px #2f648b0d;
}
.card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaf0f5;
  padding-bottom: 16px;
  margin-bottom: 5px;
}
.card-heading h2 {
  font-size: 19px;
  margin: 0;
}
.card-heading span {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: #9badbd;
}
.info-card dl {
  margin: 0;
}
.info-card dl > div {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #f0f4f7;
}
.info-card dt {
  color: #8999a9;
  font-size: 13px;
}
.info-card dd {
  margin: 0;
  color: #274865;
  font-weight: 600;
  font-size: 13px;
}
.service-card > a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 16px 0;
  border-bottom: 1px solid #edf2f6;
}
.service-card > a:last-child {
  border: 0;
}
.service-card > a > span {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  background: #e5f3ff;
  color: #0877ed;
  border-radius: 9px;
}
.service-card > a:nth-of-type(2) > span {
  color: #8269e9;
  background: #eeeaff;
}
.service-card > a:nth-of-type(3) > span {
  color: #e59832;
  background: #fff0dd;
}
.service-card a strong,
.service-card a small {
  display: block;
}
.service-card a strong {
  font-size: 13px;
  color: #284a67;
}
.service-card a small {
  font-size: 11px;
  color: #93a2b0;
  margin-top: 4px;
}
.service-card a b {
  margin-left: auto;
  color: #82a1bc;
}
@media (max-width: 800px) {
  .account-shell {
    display: block;
  }
  .account-brand-panel {
    min-height: 300px;
    padding: 28px 22px;
  }
  .account-brand-copy {
    margin-top: 70px;
  }
  .account-brand-copy h1 {
    font-size: 42px;
  }
  .account-form-panel {
    padding: 25px 16px;
    margin-top: -35px;
    position: relative;
  }
  .login-card {
    padding: 30px 22px;
  }
  .dashboard-hero {
    padding: 42px 0 70px;
  }
  .dashboard-hero h1 {
    font-size: 34px;
  }
  .dashboard-avatar {
    width: 60px;
    height: 60px;
    font-size: 25px;
  }
  .user-stats {
    grid-template-columns: repeat(2, 1fr);
  }
  .dashboard-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .dashboard-hero-inner {
    align-items: flex-start;
  }
  .dashboard-hero p {
    font-size: 13px;
    max-width: 260px;
  }
  .user-stats {
    gap: 10px;
  }
  .user-stats article {
    padding: 15px 10px;
    gap: 9px;
  }
  .user-stats strong {
    font-size: 17px;
  }
  .user-stats em {
    font-size: 10px;
  }
  .stat-icon {
    width: 35px;
    height: 35px;
  }
  .dashboard-topbar {
    padding: 13px 14px;
  }
  .info-card {
    padding: 20px 16px;
  }
}

.payment-records-card {
  grid-column: 1 / -1;
  margin-top: 15px;
}
.payment-records-table strong {
  color: #284a67;
}
.payment-amount {
  color: #e78328 !important;
  font-weight: 700;
  white-space: nowrap;
}
.payment-status {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 5px;
  font-size: 11px;
  white-space: nowrap;
}
.status-1 {
  color: #0b9b70;
  background: #e0f8ee;
}
.status-2 {
  color: #8a99a8;
  background: #edf1f4;
}
.status-3 {
  color: #db6a6a;
  background: #fff0f0;
}
.status-4 {
  color: #db6a6a;
  background: #fff0f0;
}
@media (max-width: 800px) {
  .payment-records-card {
    grid-column: auto;
  }
  .payment-records-table {
    min-width: 900px;
  }
}

/* Admin dashboard layout */
.user-admin-shell {
  min-height: 100vh;
  background: #f5f7fb;
  color: #536a82;
  display: flex;
}
.admin-sidebar {
  width: 250px;
  flex: 0 0 250px;
  background: linear-gradient(180deg, #5688c8, #8eafe1);
  color: #eaf4ff;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 24px 15px;
  position: sticky;
  top: 0;
}
.admin-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 0 22px 38px;
}
.admin-logo .brand-mark {
  width: 38px;
  height: 38px;
}
.admin-logo small {
  display: block;
  font-size: 11px;
  color: #d8ebff;
  margin-top: 3px;
}
.sidebar-section-title {
  font-size: 12px;
  color: #d5e8ff;
  padding: 0 20px 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.admin-menu {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.admin-menu a,
.sidebar-bottom a,
.sidebar-bottom button {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #e6f2ff;
  padding: 16px 20px;
  border-radius: 7px;
  font-size: 15px;
  border: 0;
  background: transparent;
  text-align: left;
  width: 100%;
  cursor: pointer;
}
.admin-menu a span,
.sidebar-bottom span {
  width: 18px;
  text-align: center;
  font-size: 19px;
}
.admin-menu a:hover,
.admin-menu a.active,
.sidebar-bottom a:hover,
.sidebar-bottom button:hover {
  background: #ffffff1c;
  color: #fff;
}
.sidebar-bottom {
  margin-top: auto;
  border-top: 1px solid #ffffff30;
  padding-top: 15px;
}
.admin-main {
  min-width: 0;
  flex: 1;
}
.admin-topbar {
  height: 88px;
  background: #fff;
  border-bottom: 1px solid #ebf0f6;
  display: flex;
  align-items: center;
  padding: 0 34px;
  gap: 25px;
}
.admin-search {
  height: 48px;
  width: 350px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 18px;
  background: #f3f6fb;
  border-radius: 9px;
  color: #6e8aa8;
}
.admin-search input {
  border: 0;
  background: transparent;
  outline: 0;
  width: 100%;
  font-size: 14px;
  color: #526b85;
}
.admin-search input::placeholder {
  color: #a0b3c8;
}
.admin-top-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}
.admin-message {
  font-size: 21px;
  color: #7794ae;
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 11px;
  padding-left: 22px;
  border-left: 1px solid #eef2f6;
}
.admin-user strong,
.admin-user small {
  display: block;
}
.admin-user strong {
  font-size: 14px;
  color: #4e6881;
}
.admin-user small {
  font-size: 11px;
  color: #93a5b7;
  margin-top: 4px;
}
.admin-avatar {
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #58c6d7, #2177d8);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 5px 15px #3489bc42;
}
.admin-avatar.small {
  width: 42px;
  height: 42px;
  font-size: 18px;
}
.admin-avatar.large {
  width: 94px;
  height: 94px;
  border: 4px solid #fff;
  font-size: 35px;
  margin: -48px auto 12px;
  position: relative;
}
.admin-menu-toggle {
  display: none;
  border: 0;
  background: none;
  color: #57728e;
  font-size: 22px;
}
.admin-content {
  padding: 35px 34px 70px;
  max-width: 1600px;
}
.admin-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
}
.admin-breadcrumb h1 {
  font-size: 26px;
  font-weight: 400;
  color: #526c85;
  margin: 0;
}
.admin-breadcrumb span {
  font-size: 13px;
  color: #96a8ba;
}
.welcome-grid {
  display: grid;
  grid-template-columns: 485px minmax(0, 1fr);
  gap: 35px;
}
.welcome-card,
.notice-card,
.admin-panel,
.overview-stats article {
  background: #fff;
  border-radius: 7px;
  box-shadow: 0 8px 25px #4261810b;
}
.welcome-card {
  overflow: hidden;
  text-align: center;
}
.welcome-cover {
  height: 188px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #c9e9b4, #1db9c6 52%, #357bbd);
}
.cover-shape {
  position: absolute;
  inset: -80px;
  background: #ffffff20;
  transform: rotate(22deg);
  clip-path: polygon(
    0 20%,
    35% 0,
    100% 18%,
    75% 44%,
    100% 65%,
    57% 100%,
    18% 80%
  );
}
.shape-two {
  transform: rotate(-23deg);
  background: #0374aa38;
  inset: 10px -100px;
}
.shape-three {
  transform: rotate(60deg);
  background: #fff3;
}
.welcome-user h2 {
  font-size: 17px;
  font-weight: 500;
  color: #2198c9;
  margin: 0;
}
.welcome-user h2 small {
  font-size: 12px;
  font-weight: 400;
}
.welcome-user p {
  margin: 15px 0;
  color: #71869c;
  font-size: 13px;
}
.welcome-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 15px 38px 22px;
  border-top: 1px solid #e5edf4;
}
.welcome-actions a {
  padding: 11px 3px;
  border: 1px solid #53b5eb;
  border-radius: 3px;
  font-size: 12px;
  color: #2d9ad2;
}
.welcome-actions a:nth-child(2) {
  color: #eea026;
  border-color: #f2bd52;
}
.welcome-actions a:nth-child(3) {
  color: #10b99c;
  border-color: #29c9ae;
}
.notice-card {
  padding: 28px 32px;
  min-height: 300px;
}
.card-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #edf2f6;
  padding-bottom: 17px;
  margin-bottom: 5px;
}
.card-heading h2 {
  font-size: 17px;
  font-weight: 500;
  color: #536c84;
  margin: 0;
}
.card-heading span {
  color: #9aacbd;
  font-size: 10px;
  letter-spacing: 1px;
}
.notice-content {
  padding: 48px 0;
  color: #7890a7;
}
.notice-content strong {
  font-size: 16px;
  font-weight: 500;
  color: #617b95;
}
.notice-content p {
  font-size: 13px;
  margin-top: 20px;
  line-height: 1.8;
}
.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin: 30px 0;
}
.overview-stats article {
  padding: 28px 30px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.overview-icon {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 23px;
}
.overview-icon.yellow {
  color: #e8aa1c;
  background: #fff5d8;
}
.overview-icon.blue {
  color: #258ce2;
  background: #e2f1ff;
}
.overview-icon.purple {
  color: #ec7985;
  background: #ffe4e7;
}
.overview-stats small,
.overview-stats em {
  display: block;
  font-size: 12px;
  color: #8296a9;
  font-style: normal;
}
.overview-stats strong {
  display: block;
  color: #536d86;
  font-size: 25px;
  font-weight: 500;
  margin: 5px 0;
}
.overview-stats strong i {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
}
.overview-stats em a {
  color: #fa6d87;
}
.admin-panel {
  padding: 27px 30px;
  margin: 20px 0;
}
.admin-table-wrap {
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 730px;
  font-size: 13px;
}
.admin-table th {
  text-align: left;
  background: #f7fafd;
  color: #8b9daf;
  font-size: 11px;
  font-weight: 500;
  padding: 14px 12px;
  white-space: nowrap;
}
.admin-table td {
  padding: 15px 12px;
  border-bottom: 1px solid #edf2f6;
  color: #60788f;
  vertical-align: top;
}
.admin-table tr:last-child td {
  border-bottom: 0;
}
.admin-table td strong {
  color: #3d5d78;
  font-weight: 500;
}
.amount {
  color: #e68b31 !important;
  font-weight: 600;
}
.record-status,
.appeal-type {
  display: inline-block;
  padding: 5px 9px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
}
.record-status {
  color: #0b9b70;
  background: #e0f8ee;
}
.status-2,
.status-3,
.status-4 {
  color: #9a6f6f;
  background: #fff0f0;
}
.appeal-type {
  color: #0877ed;
  background: #e5f3ff;
}
.record-content {
  max-width: 390px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.admin-empty {
  text-align: center;
  padding: 40px 0;
  color: #a0adba;
  font-size: 13px;
}
.admin-lower-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.profile-list {
  margin: 0;
}
.profile-list div {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #edf2f6;
}
.profile-list div:last-child {
  border: 0;
}
.profile-list dt {
  color: #8a9bab;
  font-size: 13px;
}
.profile-list dd {
  margin: 0;
  color: #48657d;
  font-size: 13px;
}
.quick-links a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid #edf2f6;
  color: #56728d;
  font-size: 13px;
}
.quick-links a:last-child {
  border: 0;
}
.quick-links a span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #258ce2;
  background: #e4f2ff;
  border-radius: 7px;
}
.quick-links a b {
  margin-left: auto;
  color: #9bb1c4;
}
.admin-sidebar + .admin-main .site-footer {
  display: none;
}
@media (max-width: 900px) {
  .admin-sidebar {
    width: 220px;
    flex-basis: 220px;
  }
  .admin-content {
    padding: 28px 20px 60px;
  }
  .welcome-grid {
    grid-template-columns: 1fr;
  }
  .welcome-card {
    max-width: 560px;
  }
  .overview-stats {
    gap: 12px;
  }
  .overview-stats article {
    padding: 20px 16px;
  }
  .admin-topbar {
    padding: 0 20px;
  }
  .admin-search {
    width: 280px;
  }
}
@media (max-width: 650px) {
  .user-admin-shell {
    display: block;
  }
  .admin-sidebar {
    position: fixed;
    z-index: 20;
    left: -270px;
    top: 0;
    width: 260px;
    height: 100vh;
    transition: left 0.25s ease;
    box-shadow: 10px 0 30px #1b4d7d35;
  }
  .user-admin-shell.menu-open .admin-sidebar {
    left: 0;
  }
  .admin-menu-toggle {
    display: block;
  }
  .admin-topbar {
    height: 68px;
    padding: 0 16px;
    gap: 15px;
  }
  .admin-search {
    display: none;
  }
  .admin-top-actions {
    gap: 10px;
  }
  .admin-message {
    display: none;
  }
  .admin-user {
    padding-left: 0;
    border: 0;
  }
  .admin-user small {
    display: none;
  }
  .admin-user strong {
    font-size: 12px;
  }
  .admin-avatar.small {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }
  .admin-content {
    padding: 25px 14px 50px;
  }
  .admin-breadcrumb {
    margin-bottom: 20px;
  }
  .admin-breadcrumb h1 {
    font-size: 23px;
  }
  .admin-breadcrumb span {
    font-size: 11px;
  }
  .welcome-card {
    width: 100%;
  }
  .welcome-actions {
    padding-left: 12px;
    padding-right: 12px;
  }
  .notice-card {
    min-height: 220px;
    padding: 22px 18px;
  }
  .overview-stats {
    grid-template-columns: 1fr;
    gap: 10px;
    margin: 15px 0;
  }
  .overview-stats article {
    padding: 18px;
  }
  .admin-panel {
    padding: 20px 15px;
    margin: 14px 0;
  }
  .admin-lower-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .card-heading {
    gap: 12px;
  }
  .card-heading span {
    font-size: 8px;
  }
  .admin-avatar.large {
    width: 76px;
    height: 76px;
    font-size: 28px;
  }
}
