.card {
  display: grid;
  gap: 10px;
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #2a2f3d;
}
.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #1b2030;
  border: 1px solid #242833;
}
.card-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}
.card-title {
  font-size: 18px;
  letter-spacing: -0.02em;
}
.card-text {
  color: var(--muted);
}
.why-item {
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  padding: 16px;
  display: grid;
  gap: 8px;
}
.why-title {
  font-size: 16px;
  letter-spacing: -0.02em;
}
.why-text {
  color: var(--muted);
}
.hero-title {
  background: linear-gradient(90deg, #fff, #cfd2da 50%, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.btn:focus-visible,
.nav-toggle:focus-visible,
.social-link:focus-visible,
.nav-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.nav-link.active {
  color: var(--text);
  background: #1b2030;
}
.login {
  position: relative;
}
.login-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #242833;
  background: #1b2030;
  transition: transform .2s ease, background .2s ease;
}
.login-btn:hover {
  transform: translateY(-2px);
  background: #222638;
}
.login-icon {
  width: 18px;
  height: 18px;
  fill: var(--text);
}
.login-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  display: none;
  min-width: 180px;
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 8px;
}
.login-menu.open {
  display: grid;
  gap: 4px;
}
.login-link {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
}
.login-link:hover {
  background: #1b2030;
  color: var(--text);
}
.auth-wrap {
  max-width: 520px;
  margin: 40px auto;
}
.auth-card {
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  display: grid;
  gap: 14px;
}
.auth-form {
  display: grid;
  gap: 12px;
}
.input-group {
  display: grid;
  gap: 8px;
}
.input-group.has-addon {
  position: relative;
}
.label {
  font-size: 14px;
  color: var(--muted);
}
.input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #242833;
  background: #0f1218;
  color: var(--text);
  outline: none;
}
.input:focus {
  border-color: #32384a;
  box-shadow: 0 0 0 3px rgba(124,58,237,.2);
}
.toggle-pass {
  position: absolute;
  right: 8px;
  top: 32px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  border: 1px solid #242833;
  background: #1b2030;
}
.toggle-pass svg {
  width: 18px;
  height: 18px;
  fill: var(--muted);
}
.form-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.form-feedback {
  background: #1b2030;
  border: 1px solid #242833;
  color: var(--text);
  border-radius: 10px;
  padding: 12px 14px;
}
.auth-meta {
  display: flex;
  justify-content: flex-end;
}
.meta-link {
  color: var(--muted);
}
.user-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.user-name {
  color: var(--muted);
  font-size: 14px;
}
.pricing-card {
  display: grid;
  gap: 12px;
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow);
}
.pricing-ribbon {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: #1b2030;
  color: var(--text);
  border: 1px solid #242833;
  font-weight: 700;
  font-size: 13px;
}
.pricing-ribbon.accent {
  background: var(--accent);
  color: #fff;
  border: none;
}
.pricing-ribbon.gradient {
  background: linear-gradient(90deg, #7c3aed, #06b6d4);
  color: #fff;
  border: none;
}
.price-wrap {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  justify-content: center;
}
.price {
  font-size: 28px;
  font-weight: 800;
}
.period {
  color: var(--muted);
}
.feature-list {
  display: grid;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}
.feature-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--muted);
}
.feature-list li.on::before,
.feature-list li.off::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  transform: translateY(-50%);
}
.feature-list li.on::before {
  background: var(--success);
}
.feature-list li.off::before {
  background: var(--danger);
}
.pricing-note {
  color: var(--muted);
  font-size: 13px;
  margin-top: 10px;
}
.category-card {
  display: grid;
  gap: 12px;
  background: var(--elevated);
  border: 1px solid #242833;
  border-radius: var(--radius);
  padding: 16px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.category-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: #2a2f3d;
}
.category-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.category-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #1b2030;
  border: 1px solid #242833;
}
.category-icon svg {
  width: 18px;
  height: 18px;
  fill: var(--accent);
}
.service-list {
  display: grid;
  gap: 10px;
}
.service-item {
  display: grid;
  gap: 4px;
  padding: 10px;
  border: 1px solid #242833;
  border-radius: 10px;
  background: #121620;
}
.service-title {
  font-size: 15px;
}
.service-desc {
  color: var(--muted);
  font-size: 14px;
}
.service-bullets {
  display: grid;
  gap: 6px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}
.service-bullets li {
  color: var(--muted);
  font-size: 14px;
  padding-left: 18px;
  position: relative;
}
.service-bullets li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  transform: translateY(-50%);
  opacity: .9;
}
