body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 18px 18px, rgba(148, 163, 184, 0.18) 1px, transparent 1px),
    linear-gradient(115deg, #fff8f1 0%, #f6fbff 48%, #eef5ff 100%);
  background-size: 22px 22px, auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 104px;
  padding: 0 clamp(22px, 8vw, 130px);
  background: #060606;
  color: #ffffff;
}

.brand,
.dashboard-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 950;
  letter-spacing: 0;
}

.brand span span,
.dashboard-brand span span {
  color: #fb8500;
}

.topbar nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-weight: 800;
}

.nav-button {
  display: inline-flex;
  min-width: 114px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #ff971a;
  color: #ffffff;
}

.login-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 520px);
  gap: clamp(36px, 9vw, 120px);
  align-items: center;
  width: min(1308px, calc(100vw - 40px));
  min-height: calc(100vh - 104px);
  margin: 0 auto;
  padding: 72px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  padding: 9px 15px;
  border: 1px solid #fed7aa;
  border-radius: 999px;
  background: rgba(255, 247, 237, 0.78);
  color: #d97706;
  font-size: 13px;
  font-weight: 900;
}

.eyebrow span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #10b981;
}

.hero-copy h1 {
  max-width: 680px;
  margin: 0;
  color: #111827;
  font-size: clamp(48px, 6.2vw, 86px);
  line-height: 0.95;
  font-weight: 950;
}

.hero-copy h1 strong {
  display: block;
  font-weight: inherit;
  background: linear-gradient(90deg, #ff8708, #8f9eb4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy p {
  max-width: 650px;
  margin: 26px 0 30px;
  color: #64748b;
  font-size: 20px;
  line-height: 1.45;
}

.hero-actions,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.primary-action,
.secondary-action {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 900;
}

.primary-action {
  background: #ff971a;
  color: #ffffff;
}

.secondary-action {
  border: 1px solid #dbe3ef;
  background: #ffffff;
}

.trust-row {
  margin-top: 28px;
  color: #64748b;
  font-size: 15px;
  font-weight: 800;
}

.trust-row span::first-letter {
  color: #10b981;
}

.preview-panel {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.phone-preview {
  position: relative;
  width: min(300px, 70vw);
  min-height: 382px;
  justify-self: center;
  padding: 36px 12px;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.12);
}

.phone-notch {
  width: 58px;
  height: 4px;
  margin: -22px auto 18px;
  border-radius: 99px;
  background: #cbd5e1;
}

.push-card {
  display: grid;
  grid-template-columns: 10px 1fr auto;
  gap: 10px;
  align-items: start;
  min-height: 62px;
  margin-bottom: 12px;
  padding: 13px;
  border: 1px solid #d9e2ee;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
}

.push-card b,
.push-card small,
.push-card time {
  display: block;
}

.push-card b {
  font-size: 12px;
}

.push-card small,
.push-card time {
  color: #64748b;
  font-size: 11px;
}

.dot {
  width: 8px;
  height: 8px;
  margin-top: 4px;
  border-radius: 50%;
}

.orange {
  background: #fb8500;
}

.blue {
  background: #0ea5e9;
}

.green {
  background: #10b981;
}

.metric-card,
.ctr-card {
  position: absolute;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid #dbe3ef;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.metric-card {
  top: 38px;
  right: -48px;
}

.ctr-card {
  left: -88px;
  bottom: 50px;
}

.metric-card small,
.ctr-card small {
  color: #64748b;
  font-size: 12px;
  font-weight: 900;
}

.metric-card b {
  color: #10b981;
  font-size: 18px;
}

.ctr-card b {
  color: #2563eb;
  font-size: 18px;
}

.login-card {
  width: min(420px, 100%);
  justify-self: center;
  padding: 26px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 22px 48px rgba(15, 23, 42, 0.11);
}

.login-screen {
  display: grid;
  min-height: calc(100vh - 104px);
  place-items: center;
  padding: 40px 20px;
}

.login-screen .login-card {
  width: min(420px, calc(100vw - 40px));
}

.login-card h2 {
  margin: 0 0 6px;
  font-size: 26px;
}

.login-card p {
  margin: 0 0 20px;
  color: #64748b;
}

.login-card label {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  color: #334155;
  font-size: 14px;
  font-weight: 800;
}

.login-card input {
  height: 46px;
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0 13px;
  outline: none;
}

.login-card input:focus {
  border-color: #ff971a;
  box-shadow: 0 0 0 3px rgba(255, 151, 26, 0.18);
}

.login-card button {
  width: 100%;
  height: 48px;
  margin-top: 20px;
  border: 0;
  border-radius: 8px;
  background: #ff971a;
  color: #ffffff;
  cursor: pointer;
  font-weight: 950;
}

.login-error {
  margin-bottom: 12px;
  padding: 12px;
  border: 1px solid #fecaca;
  border-radius: 8px;
  background: #fef2f2;
  color: #b91c1c;
  font-size: 14px;
  font-weight: 800;
}

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

  .preview-panel {
    order: -1;
  }
}

@media (max-width: 640px) {
  .topbar {
    min-height: 82px;
    padding: 0 18px;
  }

  .topbar nav a:first-child {
    display: none;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .metric-card,
  .ctr-card {
    display: none;
  }
}
