@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");
:root {
  --bg: #070a12;
  --panel: #0f1628;
  --panel2: #111b31;
  --line: #223151;
  --txt: #f7f9ff;
  --muted: #92a1bd;
  --blue: #5b8cff;
  --cyan: #55d8ff;
  --purple: #8b6cff;
  --green: #38d6a1;
  --warn: #ffc85f;
  --danger: #ff6d7d;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.34);
  --radius: 24px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--txt);
  background:
    radial-gradient(circle at 8% 0, rgba(91, 140, 255, 0.16), transparent 31%),
    radial-gradient(
      circle at 92% 18%,
      rgba(139, 108, 255, 0.13),
      transparent 27%
    ),
    var(--bg);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: auto;
}
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.4'/%3E%3C/svg%3E");
}
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 10, 18, 0.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.navin {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.brand-logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 13px;
  display: block;
  box-shadow: 0 8px 24px rgba(60, 159, 255, 0.22);
  border: 1px solid rgba(125, 205, 255, 0.24);
}
.logo {
  width: 40px;
  height: 40px;
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    var(--cyan),
    var(--blue) 45%,
    var(--purple)
  );
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(91, 140, 255, 0.28);
}
.logo:before {
  content: "E";
  font-weight: 900;
  color: #07101f;
  font-size: 20px;
}
.navlinks {
  display: flex;
  gap: 7px;
  margin-left: auto;
}
.navlinks a {
  padding: 10px 13px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}
.navlinks a:hover,
.navlinks a.active {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
}
.navuser {
  display: none;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
}
.avatar {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--blue), var(--purple));
  display: grid;
  place-items: center;
  font-weight: 900;
}
.nav-auth {
  display: flex;
  gap: 8px;
}
.admin-only {
  display: none !important;
}
.admin-only.show {
  display: flex !important;
}
.btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
}
.primary {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #07101f;
  box-shadow: 0 14px 35px rgba(91, 140, 255, 0.24);
}
.ghost {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
}
.danger {
  background: rgba(255, 109, 125, 0.1);
  border: 1px solid rgba(255, 109, 125, 0.2);
  color: #ff9fab;
}
.small {
  padding: 9px 12px;
  border-radius: 11px;
  font-size: 12px;
}
.hero {
  padding: 90px 0 48px;
  text-align: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(85, 216, 255, 0.22);
  background: rgba(85, 216, 255, 0.07);
  border-radius: 999px;
  color: #c3f0ff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(56, 214, 161, 0.1);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  50% {
    box-shadow: 0 0 0 12px rgba(56, 214, 161, 0);
  }
}
h1 {
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 22px auto 20px;
  max-width: 920px;
}
.grad {
  background: linear-gradient(90deg, #fff, var(--cyan), #c7bdff);
  -webkit-background-clip: text;
  color: transparent;
}
.hero p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
  max-width: 750px;
  margin: auto;
}
.heroactions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}
.card,
.metric {
  background: linear-gradient(
    180deg,
    rgba(17, 27, 49, 0.9),
    rgba(12, 18, 32, 0.94)
  );
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin: 35px auto 75px;
}
.metric {
  padding: 22px;
}
.mi {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: rgba(91, 140, 255, 0.12);
  display: grid;
  place-items: center;
  color: var(--cyan);
  font-size: 19px;
}
.metric b {
  display: block;
  font-size: 19px;
  margin-top: 17px;
}
.metric span {
  color: var(--muted);
  font-size: 12px;
}
.section {
  padding: 30px 0 76px;
}
.sectionhead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}
.sectionhead h2 {
  font-size: 32px;
  letter-spacing: -0.04em;
  margin: 0;
}
.sectionhead p {
  margin: 7px 0 0;
  color: var(--muted);
  max-width: 650px;
}
.healthgrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.health {
  padding: 20px;
}
.healthtop {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.status {
  font-size: 11px;
  color: var(--green);
  font-weight: 900;
  background: rgba(56, 214, 161, 0.09);
  border: 1px solid rgba(56, 214, 161, 0.15);
  padding: 6px 8px;
  border-radius: 999px;
}
.health h3 {
  font-size: 15px;
  margin: 22px 0 5px;
}
.health p {
  font-size: 12px;
  color: var(--muted);
  margin: 0;
}
.spark {
  height: 45px;
  margin-top: 14px;
  display: flex;
  align-items: end;
  gap: 4px;
}
.spark i {
  display: block;
  flex: 1;
  background: linear-gradient(var(--cyan), rgba(91, 140, 255, 0.17));
  border-radius: 4px 4px 2px 2px;
  animation: bars 2.8s ease-in-out infinite alternate;
}
.spark i:nth-child(2n) {
  animation-delay: 0.3s;
}
@keyframes bars {
  from {
    transform: scaleY(0.72);
    opacity: 0.65;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}
.dashboard {
  display: grid;
  grid-template-columns: 1.35fr 0.65fr;
  gap: 16px;
}
.chartcard {
  padding: 22px;
  min-height: 340px;
}
.chartwrap {
  height: 260px;
}
.sideinfo {
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ring {
  width: 164px;
  height: 164px;
  border-radius: 50%;
  margin: 8px auto;
  display: grid;
  place-items: center;
  background: conic-gradient(var(--blue) 0 74%, rgba(255, 255, 255, 0.06) 74%);
  position: relative;
}
.ring:after {
  content: "";
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: #0e1527;
  position: absolute;
}
.ringtext {
  z-index: 2;
  text-align: center;
}
.ringtext b {
  font-size: 28px;
  display: block;
}
.ringtext span {
  font-size: 11px;
  color: var(--muted);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.plan {
  padding: 26px;
  position: relative;
  overflow: hidden;
}
.plan.pop {
  border-color: rgba(85, 216, 255, 0.35);
  transform: translateY(-8px);
  box-shadow: 0 25px 70px rgba(91, 140, 255, 0.2);
}
.badge {
  position: absolute;
  top: 17px;
  right: -40px;
  transform: rotate(34deg);
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  color: #061022;
  padding: 7px 48px;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.planname {
  font-weight: 900;
  font-size: 20px;
}
.price {
  font-size: 42px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin: 18px 0 4px;
}
.price small {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.plan > p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  min-height: 42px;
}
.features {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}
.features li {
  display: flex;
  gap: 10px;
  padding: 9px 0;
  color: #dfe7f7;
  font-size: 13px;
}
.features li i {
  color: var(--green);
}
.plan .btn {
  width: 100%;
}
.pagehead {
  padding: 58px 0 26px;
}
.pagehead h1 {
  font-size: 44px;
  text-align: left;
  margin: 0 0 12px;
}
.pagehead p {
  color: var(--muted);
  max-width: 740px;
}
.usagegrid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 16px;
}
.usagebig {
  padding: 26px;
}
.usagebar {
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  margin: 20px 0 10px;
}
.usagefill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--blue), var(--purple));
  transition: width 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.usagefill.full {
  background: linear-gradient(90deg, var(--warn), var(--danger));
}
.usagelegend {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 12px;
}
.quotanums {
  font-size: 38px;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.quotanums small {
  font-size: 14px;
  color: var(--muted);
}
.limitbox {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 200, 95, 0.24);
  background: rgba(255, 200, 95, 0.075);
  border-radius: 14px;
  color: #ffd98f;
  font-size: 13px;
  font-weight: 700;
}
.website-card {
  padding: 24px;
}
.website-link {
  margin: 15px 0;
  padding: 14px;
  border-radius: 14px;
  background: rgba(85, 216, 255, 0.055);
  border: 1px solid rgba(85, 216, 255, 0.12);
  word-break: break-all;
  color: #bceeff;
  font-size: 13px;
}
.field {
  display: flex;
  gap: 9px;
}
.input {
  width: 100%;
  padding: 13px 14px;
  border-radius: 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #0a1020;
  color: #fff;
  outline: none;
}
.input:focus {
  border-color: rgba(85, 216, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(85, 216, 255, 0.07);
}
.note {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.6;
}
.warning-note {
  color: #ffd98f;
}
.statrow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.statmini {
  padding: 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.statmini span {
  display: block;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}
.statmini b {
  display: block;
  margin-top: 7px;
  font-size: 14px;
}
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 6, 12, 0.78);
  backdrop-filter: blur(12px);
}
.auth-overlay.show {
  display: flex;
}
.authbox {
  width: min(440px, 100%);
  padding: 26px;
}
.authhead {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.authhead h2 {
  margin: 0;
  font-size: 24px;
}
.xbtn {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  cursor: pointer;
}
.tabs {
  display: flex;
  background: rgba(255, 255, 255, 0.035);
  border-radius: 13px;
  padding: 4px;
  margin-bottom: 18px;
}
.tab {
  flex: 1;
  padding: 10px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font-weight: 800;
  cursor: pointer;
}
.tab.active {
  background: #19243d;
  color: #fff;
}
.formgroup {
  margin: 11px 0;
}
.formgroup label {
  display: block;
  font-size: 11px;
  color: var(--muted);
  margin-bottom: 6px;
  font-weight: 700;
}
.authmsg {
  min-height: 18px;
  margin-top: 10px;
  font-size: 12px;
  color: #ff9fab;
}
.form-submit {
  width: 100%;
  margin-top: 10px;
}
.admin-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 16px;
}
.users-card,
.editor-card {
  padding: 20px;
}
.userlist {
  margin-top: 12px;
  max-height: 620px;
  overflow: auto;
}
.userrow {
  padding: 13px;
  border-radius: 14px;
  border: 1px solid transparent;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}
.userrow:hover,
.userrow.active {
  background: rgba(91, 140, 255, 0.08);
  border-color: rgba(91, 140, 255, 0.15);
}
.userrow b {
  font-size: 13px;
}
.userrow small {
  display: block;
  color: var(--muted);
  font-size: 10px;
  margin-top: 3px;
}
.pill {
  font-size: 10px;
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(56, 214, 161, 0.08);
  color: #73e7bc;
  border: 1px solid rgba(56, 214, 161, 0.12);
  height: max-content;
}
.editor-empty {
  padding: 80px 20px;
  text-align: center;
  color: var(--muted);
}
.editgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.editblock {
  margin-top: 16px;
  padding: 16px;
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.065);
}
.editblock h3 {
  font-size: 13px;
  margin: 0 0 11px;
}
.actionrow {
  display: grid;
  grid-template-columns: 1fr 110px;
  gap: 8px;
}
.actionbuttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 9px;
}
.admin-lock {
  padding: 40px;
  text-align: center;
}
.admin-lock i {
  font-size: 34px;
  color: var(--warn);
  margin-bottom: 14px;
}
.admin-lock h2 {
  margin: 0 0 8px;
}
.admin-lock p {
  color: var(--muted);
  font-size: 13px;
}
.termcard {
  padding: 30px;
  line-height: 1.75;
}
.termcard h2 {
  font-size: 20px;
  margin-top: 30px;
}
.termcard p,
.termcard li {
  color: #aebbd3;
  font-size: 14px;
}
.termcard strong {
  color: #fff;
}
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 120;
  max-width: 380px;
  padding: 14px 17px;
  border-radius: 14px;
  background: #121b2e;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  transform: translateY(30px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s;
}
.toast.show {
  transform: none;
  opacity: 1;
}
.toast.err {
  border-color: rgba(255, 109, 125, 0.3);
}
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 28px 0 40px;
  color: var(--muted);
  font-size: 12px;
}
.footerin {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 920px) {
  .metrics,
  .healthgrid {
    grid-template-columns: 1fr 1fr;
  }
  .dashboard,
  .usagegrid,
  .admin-layout {
    grid-template-columns: 1fr;
  }
  .plans {
    grid-template-columns: 1fr;
  }
  .plan.pop {
    transform: none;
  }
  .navlinks {
    display: none;
  }
  .editgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
  .wrap {
    width: min(100% - 20px, 1180px);
  }
  .navin {
    height: 66px;
  }
  .brand span:last-child {
    display: none;
  }
  .navuser .uname {
    display: none;
  }
  .hero {
    padding-top: 64px;
  }
  h1 {
    font-size: 44px;
  }
  .metrics,
  .healthgrid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .metric {
    padding: 16px;
  }
  .sectionhead {
    align-items: flex-start;
    flex-direction: column;
  }
  .pagehead h1 {
    font-size: 36px;
  }
  .field {
    flex-direction: column;
  }
  .statrow {
    grid-template-columns: 1fr;
  }
  .actionrow {
    grid-template-columns: 1fr;
  }
  .nav-auth .btn {
    padding: 9px 10px;
    font-size: 11px;
  }
}

/* Light, editorial homepage refresh */
:root {
  --bg: #fff;
  --panel: #fff;
  --panel2: #f8fafc;
  --line: #dfe6ef;
  --txt: #142033;
  --muted: #64748b;
  --blue: #214d89;
  --cyan: #3974ad;
  --purple: #536b8d;
  --green: #24845c;
  --warn: #a05c00;
  --danger: #bd3e4d;
  --shadow: 0 15px 42px rgba(30, 54, 81, 0.08);
}
body {
  background: #fff;
  color: var(--txt);
}
.noise {
  opacity: 0.025;
}
.nav {
  background: rgba(255, 255, 255, 0.9);
  border-color: #e6ebf1;
}
.brand-logo {
  box-shadow: none;
  border-color: #dce4ec;
}
.navlinks a:hover,
.navlinks a.active {
  background: #edf3f9;
  color: #183b65;
}
.navuser {
  background: #fff;
  border-color: #dce4ec;
  color: var(--txt);
}
.navuser i {
  color: #7a8a9f !important;
}
.avatar {
  background: #eaf1f8;
  color: #1d4c7f;
}
.primary {
  background: #1e4f84;
  color: #fff;
  box-shadow: 0 12px 28px rgba(30, 79, 132, 0.18);
}
.ghost {
  background: #fff;
  border-color: #cfd9e4;
  color: #23446a;
}
.btn:hover {
  box-shadow: 0 8px 18px rgba(30, 79, 132, 0.12);
}
.hero {
  padding: 58px 0 54px;
}
.website-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  min-height: 75px;
  padding: 16px 24px;
  margin: 0 auto 30px;
  max-width: 840px;
  border: 1px solid #dae5ef;
  border-radius: 20px;
  background: linear-gradient(135deg, #f8fbfe, #eef5fa);
  animation: rise-in 0.7s ease both;
}
.website-hero-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: #61758d;
}
.website-hero strong {
  font-size: clamp(24px, 4vw, 38px);
  letter-spacing: -0.045em;
  color: #183b65;
  overflow-wrap: anywhere;
}
.website-hero-status {
  font-size: 12px;
  color: #66798f;
  border-left: 1px solid #cfdce8;
  padding-left: 16px;
}
.eyebrow {
  border-color: #d7e2ed;
  background: #f3f7fb;
  color: #42627e;
}
.dot {
  background: #3f8c68;
  box-shadow: 0 0 0 5px rgba(63, 140, 104, 0.1);
}
h1 {
  max-width: 1000px;
  font-size: clamp(46px, 7vw, 82px);
  color: #15243a;
}
.grad {
  background: none;
  color: #234d7d;
  -webkit-text-fill-color: initial;
}
.hero p {
  font-size: 19px;
  color: #5d6d80;
}
.hero-trust {
  display: flex;
  justify-content: center;
  gap: 12px 27px;
  flex-wrap: wrap;
  margin-top: 25px;
  color: #53667c;
  font-size: 13px;
  font-weight: 700;
}
.hero-trust i {
  color: #2d8762;
  margin-right: 6px;
}
.card,
.metric {
  background: #fff;
  border-color: #e0e7ef;
  box-shadow: 0 10px 30px rgba(34, 62, 92, 0.06);
}
.metric {
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.metric:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(34, 62, 92, 0.12);
}
.mi {
  background: #edf4f9;
  color: #285d91;
}
.metric span,
.health p,
.sectionhead p,
.note,
.pagehead p {
  color: #66778b;
}
.status {
  color: #257553;
  background: #eff8f3;
  border-color: #cce8d8;
}
.spark i {
  background: #8eabc5;
}
.health {
  transition: transform 0.25s ease;
}
.health:hover {
  transform: translateY(-4px);
}
.ring {
  background: conic-gradient(#315f90 0 74%, #e7edf3 74%);
}
.ring:after {
  background: #fff;
}
.ringtext span {
  color: #66778b;
}
.statmini {
  background: #f7f9fb;
  border-color: #e4eaf0;
}
.features li {
  color: #415267;
}
.features li i {
  color: #2c7c59;
}
.plan.pop {
  border-color: #b9cee1;
  box-shadow: 0 22px 48px rgba(34, 62, 92, 0.12);
}
.badge {
  background: #dceaf5;
  color: #214d78;
}
.usagebar {
  background: #e7edf3;
}
.usagefill {
  background: #315f90;
}
.usagefill.full {
  background: #bb7a20;
}
.website-link {
  background: #f4f8fb;
  border-color: #dce6ee;
  color: #285d91;
}
.input {
  background: #fff;
  color: #1a2a3d;
  border-color: #cfd9e4;
}
.input:focus {
  border-color: #6286ab;
  box-shadow: 0 0 0 3px rgba(49, 95, 144, 0.1);
}
.auth-overlay {
  background: rgba(20, 32, 51, 0.3);
}
.tabs {
  background: #eef3f7;
}
.tab.active {
  background: #fff;
  color: #1e4f84;
  box-shadow: 0 2px 8px rgba(30, 54, 81, 0.1);
}
.xbtn {
  background: #fff;
  color: #40536a;
  border-color: #d9e2eb;
}
.toast {
  background: #fff;
  border-color: #dbe4ec;
  color: #1b2b3e;
}
.footer {
  border-color: #e5ebf0;
  color: #718096;
}
.termcard p,
.termcard li {
  color: #53657a;
}
.termcard strong {
  color: #1b2c3e;
}
.experience {
  padding-top: 8px;
}
.experience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.experience-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid #dfe7ef;
  border-radius: 22px;
  background: #fbfcfd;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}
.experience-grid article:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 36px rgba(30, 54, 81, 0.09);
}
.experience-grid article > i {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #eaf2f8;
  color: #285d91;
  font-size: 20px;
}
.experience-grid h3 {
  font-size: 19px;
  margin: 21px 0 8px;
}
.experience-grid p {
  margin: 0;
  color: #657589;
  line-height: 1.7;
  font-size: 13px;
}
.step {
  position: absolute;
  right: 23px;
  top: 23px;
  font-size: 12px;
  font-weight: 900;
  color: #9aacbd;
  letter-spacing: 0.08em;
}
@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(13px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 920px) {
  .experience-grid {
    grid-template-columns: 1fr;
  }
  .website-hero-status {
    border-left: 0;
    padding-left: 0;
    width: 100%;
  }
}
@media (max-width: 600px) {
  .hero {
    padding-top: 36px;
  }
  .website-hero {
    margin-bottom: 22px;
    padding: 15px;
  }
  .website-hero strong {
    width: 100%;
    text-align: center;
  }
  .hero-trust {
    justify-content: flex-start;
  }
  .experience-grid article {
    padding: 22px;
  }
}
