:root {
  color-scheme: light;
  --navy: #0b163f;
  --sky: #5cd4ff;
  --mint: #57f2c9;
  --ink: #0c1324;
  --slate: #4b5a77;
  --frost: #f4f7ff;
  --accent: #7067ff;
  --shadow: 0 24px 50px rgba(12, 19, 36, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

button:not([disabled]) {
  cursor: pointer;
}

.container {
  width: min(1140px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #eef1fb;
  backdrop-filter: blur(10px);
}

.header-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.nav-toggle {
  display: none;
  align-items: center;
  gap: 10px;
  border: 1px solid #d7def2;
  background: #fff;
  color: var(--ink);
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
}

.nav-toggle-icon {
  position: relative;
  width: 20px;
  height: 2px;
  background: var(--ink);
  border-radius: 999px;
  box-shadow: 0 -6px 0 var(--ink), 0 6px 0 var(--ink);
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(140deg, var(--accent), var(--sky));
  color: #fff;
  font-weight: 700;
}

.main-nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--slate);
}

.main-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  font-size: 0.85rem;
  color: var(--slate);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid #d7def2;
  background: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
}

.nav-dropdown-label {
  color: var(--slate);
  font-weight: 600;
}

.nav-dropdown-value {
  font-weight: 700;
}

.nav-dropdown-caret {
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid var(--slate);
}

.nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 180px;
  padding: 8px;
  border-radius: 14px;
  border: 1px solid #e2e7f8;
  background: #fff;
  box-shadow: var(--shadow);
  display: none;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: flex;
}

.nav-dropdown-item {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.85rem;
}

.nav-dropdown-item:hover {
  background: #f1f4ff;
  color: var(--accent);
}

.nav-dropdown-button {
  width: 100%;
  border: none;
  background: transparent;
  text-align: left;
  font: inherit;
  cursor: pointer;
}

.account-dropdown .nav-dropdown-toggle {
  gap: 10px;
}

.account-label {
  font-weight: 700;
}

.account-email {
  font-size: 0.75rem;
  color: var(--slate);
}

.nav-dropdown-alert {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 200, 87, 0.2);
  color: #7a4c00;
  display: grid;
  gap: 4px;
  font-size: 0.75rem;
  margin: 6px 4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.btn[disabled] {
  cursor: progress;
  opacity: 0.75;
}

form.is-submitting [data-submit-button] {
  position: relative;
  color: transparent;
}

form.is-submitting [data-submit-button]::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.btn.solid {
  background: linear-gradient(135deg, var(--accent), var(--sky));
  color: #fff;
  box-shadow: var(--shadow);
}

.btn.ghost {
  border-color: #d7def2;
  color: var(--ink);
}

.btn.ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 960px) {
  .header-shell {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-panel {
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    padding: 16px 0 22px;
    border-top: 1px solid #eef1fb;
  }

  body.nav-open .nav-panel {
    display: flex;
  }

  .main-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
  }

  .header-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .nav-dropdown {
    width: 100%;
  }

  .nav-dropdown-toggle {
    width: 100%;
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 8px;
  }

  .header-actions .btn,
  .header-actions form {
    width: 100%;
  }

  .header-actions form button {
    width: 100%;
  }
}

.site-main {
  padding-bottom: 80px;
}

.hero {
  background: linear-gradient(120deg, #eef1ff 0%, #f7fbff 55%, #f1fffb 100%);
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-video .hero-grid {
  position: relative;
  z-index: 2;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 24, 56, 0.35);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 36px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.6rem, 3.2vw, 3.6rem);
  margin-bottom: 16px;
  color: var(--navy);
}

.hero .lead {
  font-size: 1.1rem;
  color: var(--slate);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
}

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

.alert {
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.alert.success {
  background: rgba(87, 242, 201, 0.2);
  color: #0c5c4a;
}

.alert.warning {
  background: rgba(255, 200, 87, 0.2);
  color: #7a4c00;
}

.existing-account-alert {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid rgba(255, 120, 87, 0.45);
  background: rgba(255, 120, 87, 0.14);
  color: #7a2e12;
}

.existing-account-alert__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.05rem;
  color: #b94826;
  border: 1px solid rgba(255, 120, 87, 0.55);
  background: rgba(255, 120, 87, 0.18);
  animation: exclaim-pulse 1.3s ease-in-out infinite;
  flex-shrink: 0;
}

.existing-account-alert__content {
  display: grid;
  gap: 8px;
}

.existing-account-alert__content p {
  margin: 0;
}

.existing-account-alert__actions {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.existing-account-alert__actions a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
}

@keyframes exclaim-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.12);
  }
}

.verification-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.verification-banner h2 {
  margin: 0 0 6px;
  font-size: 1.1rem;
}

.verification-banner p {
  margin: 0;
}

.signup-success-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.signup-success-modal[hidden] {
  display: none;
}

.signup-success-modal.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.signup-success-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 19, 36, 0.5);
  backdrop-filter: blur(4px);
}

.signup-success-card {
  position: relative;
  z-index: 1;
  background: linear-gradient(145deg, #ffffff 0%, #f4f6ff 100%);
  border-radius: 20px;
  padding: 32px 32px 36px;
  max-width: 480px;
  width: min(92vw, 480px);
  box-shadow: 0 30px 70px rgba(12, 19, 36, 0.25);
  text-align: center;
  overflow: hidden;
  transform: translateY(12px) scale(0.96);
  opacity: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.signup-success-modal.is-visible .signup-success-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.signup-success-icon {
  width: 72px;
  height: 72px;
  margin: 4px auto 16px;
  display: grid;
  place-items: center;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(21, 32, 86, 0.15);
}

.signup-success-check {
  width: 52px;
  height: 52px;
  stroke: #3ecf8e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.signup-success-check__circle {
  stroke-dasharray: 160;
  stroke-dashoffset: 160;
}

.signup-success-check__mark {
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
}

.signup-success-modal.is-visible .signup-success-check__circle {
  animation: signup-check-circle 0.6s ease forwards;
}

.signup-success-modal.is-visible .signup-success-check__mark {
  animation: signup-check-mark 0.4s ease forwards 0.35s;
}

.signup-success-message {
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
  font-weight: 700;
  margin: 0;
  color: var(--navy);
}

.signup-success-meta {
  margin: 12px 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

.signup-success-redirect-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin: 12px 0 16px;
  color: var(--slate);
  font-size: 0.85rem;
}

.signup-success-dots {
  display: inline-block;
  width: 1.4em;
  overflow: hidden;
  vertical-align: bottom;
}

.signup-success-dots::after {
  content: '...';
  display: inline-block;
  animation: signup-dots 1s steps(4, end) infinite;
}

.signup-success-progress {
  width: 60%;
  height: 4px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.15);
  overflow: hidden;
  position: relative;
}

.signup-success-progress::after {
  content: '';
  position: absolute;
  inset: 0;
  width: 40%;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.1), rgba(15, 23, 42, 0.6), rgba(15, 23, 42, 0.1));
  animation: signup-progress 1.4s ease-in-out infinite;
}

.signup-success-cta {
  cursor: pointer;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: rgba(12, 19, 36, 0.08);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

.signup-fireworks {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.signup-success-modal.is-visible .signup-fireworks {
  opacity: 1;
}

.signup-fireworks span {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #fff 20%, transparent 70%);
  box-shadow:
    0 0 0 0 rgba(112, 103, 255, 0.7),
    0 0 0 0 rgba(92, 212, 255, 0.7),
    0 0 0 0 rgba(87, 242, 201, 0.7);
  animation: fireworks 1.6s ease-out infinite;
}

.signup-fireworks span:nth-child(1) {
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.signup-fireworks span:nth-child(2) {
  top: 10%;
  right: 20%;
  animation-delay: 0.3s;
}

.signup-fireworks span:nth-child(3) {
  bottom: 18%;
  left: 45%;
  animation-delay: 0.6s;
}

@keyframes fireworks {
  0% {
    transform: scale(0.2);
    opacity: 0;
    box-shadow:
      0 0 0 0 rgba(112, 103, 255, 0.7),
      0 0 0 0 rgba(92, 212, 255, 0.7),
      0 0 0 0 rgba(87, 242, 201, 0.7);
  }
  20% {
    opacity: 1;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
    box-shadow:
      0 -70px 0 -20px rgba(112, 103, 255, 0.7),
      60px 10px 0 -20px rgba(92, 212, 255, 0.7),
      -60px 10px 0 -20px rgba(87, 242, 201, 0.7);
  }
}

@keyframes signup-check-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes signup-check-mark {
  to {
    stroke-dashoffset: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .signup-fireworks span {
    animation: none;
  }

  .signup-success-check__circle,
  .signup-success-check__mark {
    animation: none;
    stroke-dashoffset: 0;
  }
}

.alert.error {
  background: rgba(255, 92, 92, 0.15);
  color: #8b1d1d;
}

.text-muted {
  color: var(--slate);
  font-size: 0.85rem;
}

.oauth-row {
  margin-top: 20px;
}

.signup-actions {
  display: grid;
  gap: 12px;
}

.signup-actions .btn {
  width: 100%;
}

.signup-google-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid #d7def2;
  background: #fff;
  color: var(--navy);
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.signup-google-button:hover,
.signup-google-button:focus {
  transform: translateY(-1px);
  border-color: rgba(61, 115, 255, 0.4);
  box-shadow: 0 16px 30px rgba(12, 19, 36, 0.18);
}

.signup-google-button__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
}

.signup-google-button__icon svg {
  width: 100%;
  height: 100%;
}

.password-setup-panel {
  animation: password-setup-flash 1.6s ease-in-out infinite;
}

.password-setup-alert {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
}

.password-setup-alert__arrow {
  display: none;
  font-size: 1.4rem;
  font-weight: 700;
}

@media (min-width: 992px) {
  .password-setup-alert__arrow {
    display: inline-flex;
  }
}

@keyframes password-setup-flash {
  0%,
  100% {
    border-color: #cfd8f0;
    box-shadow: 0 20px 44px rgba(12, 19, 36, 0.12);
  }
  50% {
    border-color: rgba(255, 200, 87, 0.9);
    box-shadow: 0 24px 56px rgba(255, 200, 87, 0.35);
  }
}

@media (prefers-reduced-motion: reduce) {
  .password-setup-panel {
    animation: none;
  }
}

.dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(240px, 1fr);
  gap: 24px;
  margin-top: 24px;
}

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

.chart-wrapper {
  background: #fff;
  border-radius: 16px;
  padding: 12px;
  border: 1px solid #eef1fb;
  height: 280px;
}

.chart-wrapper canvas {
  width: 100%;
  height: 100%;
}

.sidebar-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.dashboard-shell {
  align-items: start;
}

.dashboard-content {
  display: grid;
  gap: 24px;
}

.dashboard-nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dashboard-nav .text-link {
  font-weight: 600;
}

.sidebar-stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.sidebar-stats li {
  display: grid;
  gap: 6px;
}

.sidebar-stats strong {
  font-size: 1.5rem;
}

.sidebar-stats small {
  color: #12a37f;
}

.domain-card {
  padding: 14px;
  border-radius: 14px;
  border: 1px solid #eef1fb;
  background: #fff;
  margin-bottom: 16px;
}

.domain-card h4 {
  margin: 12px 0 8px;
  font-size: 0.95rem;
}

.domain-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--slate);
  font-size: 0.9rem;
}

.hero-metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--slate);
  font-size: 0.85rem;
}

.hero-metrics strong {
  display: block;
  font-size: 1.2rem;
  color: var(--navy);
}

.hero-card .card {
  background: #fff;
  border: 1px solid #d6def2;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(12, 19, 36, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-video h1,
.hero-video .lead,
.hero-video .hero-metrics,
.hero-video .hero-metrics strong,
.hero-video .eyebrow {
  color: #fff;
}

.hero-video .hero-card .card {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 26px 60px rgba(7, 18, 43, 0.28);
  backdrop-filter: blur(6px);
}

.hero-video .btn.ghost {
  background: #fff;
  border-color: #fff;
  color: var(--navy);
  box-shadow: 0 18px 34px rgba(12, 19, 36, 0.25);
}

.hero-video .btn.ghost:hover {
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-1px);
}

.hero-card .card-logo {
  width: 48px;
  height: 48px;
  display: block;
  padding: 10px;
  border-radius: 16px;
  background: rgba(88, 118, 255, 0.12);
  box-shadow: inset 0 0 0 1px rgba(88, 118, 255, 0.18);
}

.hero-card .card h3 {
  margin: 0;
  font-size: 1.4rem;
  color: var(--navy);
}

.hero-card .card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.hero-card .card li {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 12px;
  align-items: start;
  font-size: 0.95rem;
  line-height: 1.4;
}

.hero-card .card li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #5c79ff 0%, #2dd4bf 100%);
  box-shadow: 0 0 0 3px rgba(92, 121, 255, 0.15);
}

.hero-card-cta {
  margin-top: 4px;
  width: fit-content;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.setup-password-section {
  padding-top: 36px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 2rem;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.two {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.panel {
  border: 1px solid #cfd8f0;
  border-radius: 16px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 20px 44px rgba(12, 19, 36, 0.12);
}

.highlight {
  background: var(--frost);
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  align-items: center;
}

.stacked-cards {
  display: grid;
  gap: 16px;
}

.mini-card {
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #cfd8f0;
  box-shadow: 0 14px 28px rgba(12, 19, 36, 0.1);
}

.pricing-grid {
  align-items: stretch;
}

.pricing-card {
  display: grid;
  gap: 16px;
}

.pricing-card.featured {
  border-color: rgba(112, 103, 255, 0.4);
  box-shadow: 0 26px 60px rgba(112, 103, 255, 0.24);
}

.price {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 4px 0 2px;
  color: var(--slate);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  color: var(--slate);
}

.feature-list li::before {
  content: "✓";
  color: var(--accent);
  margin-right: 8px;
  font-weight: 700;
}

.plan-note {
  color: var(--slate);
  font-size: 0.85rem;
}

.plan-footnote {
  margin-top: 24px;
  color: var(--slate);
  font-size: 0.85rem;
}

.page-hero {
  background: linear-gradient(120deg, #f6f7ff 0%, #f9fbff 60%, #f8fffb 100%);
  padding: 70px 0 50px;
}

.callout {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: #fff;
  border: 1px solid #d6def2;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 24px 50px rgba(12, 19, 36, 0.12);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.form-panel {
  display: grid;
  gap: 16px;
}

.form-aside {
  display: grid;
  gap: 16px;
  align-content: start;
}

.form-fieldset {
  border: 1px solid #e2e8f6;
  border-radius: 14px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.form-fieldset legend {
  padding: 0 8px;
  font-weight: 700;
  color: var(--navy);
}

.plan-options {
  display: grid;
  gap: 12px;
}

.plan-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid #d7def2;
  border-radius: 12px;
  padding: 12px;
  background: #f9fbff;
  font-weight: 600;
}

.plan-meta {
  display: block;
  margin-top: 4px;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 400;
}

.form-panel label {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: var(--navy);
}

input,
select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7def2;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.checkbox input {
  width: auto;
  padding: 0;
}

.form-footnote {
  color: var(--slate);
  font-size: 0.85rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(112, 103, 255, 0.12);
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
}

.status-panel {
  margin-top: 30px;
}

.status-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.status-list li {
  display: flex;
  justify-content: space-between;
  color: var(--slate);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
  color: var(--slate);
}

.data-table th,
.data-table td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px solid #edf1fb;
}

.admin-overview {
  margin-top: 30px;
}

.admin-grid form {
  height: 100%;
}

.code-block {
  background: #0e1533;
  color: #f7f9ff;
  padding: 18px;
  border-radius: 12px;
  font-size: 0.85rem;
  overflow-x: auto;
}

.site-footer {
  background: #0b1230;
  color: #dce2ff;
  padding: 50px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  margin-bottom: 24px;
}

.footer-grid a {
  color: #dce2ff;
}

.footer-brand {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(220, 226, 255, 0.15);
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.legal-page {
  padding: 4rem 0 5rem;
}

.legal-pre {
  white-space: pre-wrap;
  font-family: inherit;
  line-height: 1.7;
  color: rgba(120, 126, 155, 0.8);
}

@keyframes signup-dots {
  0% {
    width: 0;
  }
  100% {
    width: 1.4em;
  }
}

@keyframes signup-progress {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }

  .header-shell {
    flex-wrap: wrap;
    justify-content: center;
  }
}
