:root {
  --background: #f8fafc;
  --foreground: #0f172a;
  --muted: #eef2ff;
  --muted-foreground: #475569;
  --accent: #1152d4;
  --accent-secondary: #2d6bff;
  --accent-foreground: #ffffff;
  --border: #dbe4f0;
  --card: #ffffff;
  --ring: #1152d4;

  --shadow-sm: 0 1px 3px rgba(2, 6, 23, 0.08);
  --shadow-md: 0 8px 20px rgba(2, 6, 23, 0.08);
  --shadow-lg: 0 18px 40px rgba(2, 6, 23, 0.12);
  --shadow-xl: 0 28px 60px rgba(2, 6, 23, 0.14);
  --shadow-accent: 0 6px 20px rgba(17, 82, 212, 0.28);
  --shadow-accent-lg: 0 14px 36px rgba(17, 82, 212, 0.34);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", system-ui, sans-serif;
  color: var(--foreground);
  background: var(--background);
}

.font-display {
  font-family: "Calistoga", Georgia, serif;
}

.font-mono-ui {
  font-family: "JetBrains Mono", monospace;
}

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
}

.gradient-text {
  background: linear-gradient(to right, var(--accent), var(--accent-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  border: 1px solid rgba(17, 82, 212, 0.35);
  background: rgba(17, 82, 212, 0.08);
}

.section-label-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--accent);
}

.section-label-text {
  font-family: "JetBrains Mono", monospace;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 0;
  border-radius: 0.75rem;
  font-weight: 700;
  color: var(--accent-foreground);
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out, filter 0.2s ease-out;
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-accent-lg);
  filter: brightness(1.06);
}

.primary-btn:active {
  transform: scale(0.98);
}

.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  color: var(--foreground);
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.2s ease-out;
}

.secondary-btn:hover {
  background: var(--muted);
  border-color: rgba(17, 82, 212, 0.35);
  box-shadow: var(--shadow-md);
}

.card-shell {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--card);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
}

.card-shell:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

.card-gradient-border {
  border-radius: 1rem;
  padding: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
}

.card-gradient-inner {
  border-radius: calc(1rem - 2px);
  background: var(--card);
  height: 100%;
}

.inverted-section {
  position: relative;
  overflow: hidden;
  color: var(--background);
  background: #0c1a3a;
}

.inverted-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.05;
  pointer-events: none;
}

.ambient-glow {
  position: absolute;
  width: 24rem;
  height: 24rem;
  border-radius: 999px;
  filter: blur(130px);
  pointer-events: none;
  opacity: 0.2;
}

.glow-a {
  top: -8rem;
  left: -6rem;
  background: rgba(17, 82, 212, 0.42);
}

.glow-b {
  bottom: -8rem;
  right: -6rem;
  background: rgba(45, 107, 255, 0.35);
}

.pulse-dot {
  animation: pulseDot 2s ease-in-out infinite;
}

.float-a {
  animation: floatA 5s ease-in-out infinite;
}

.float-b {
  animation: floatB 4s ease-in-out infinite;
}

.rotate-slow {
  animation: rotateSlow 60s linear infinite;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: 0.08s;
}

.reveal-delay-2 {
  transition-delay: 0.16s;
}

.reveal-delay-3 {
  transition-delay: 0.24s;
}

.focus-ring:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px var(--ring), 0 0 0 4px rgba(248, 250, 252, 1);
}

.hero-underline {
  position: absolute;
  left: 0;
  bottom: -0.3rem;
  width: 100%;
  height: 0.8rem;
  border-radius: 0.2rem;
  background: linear-gradient(to right, rgba(17, 82, 212, 0.16), rgba(45, 107, 255, 0.12));
}

.hero-landing {
  background: linear-gradient(180deg, #f5f8fc 0%, #ffffff 55%, #ffffff 100%);
}

.hero-media-card {
  position: relative;
  min-height: 35rem;
  border-radius: 2.25rem;
  border: 10px solid #f4f7fc;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.08)), url('../img/landdrimg.png');
  background-size: cover;
  background-position: center;
  box-shadow: 0 26px 46px rgba(15, 47, 113, 0.14);
  overflow: hidden;
}

.hero-media-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 15%, rgba(17, 82, 212, 0.25), rgba(17, 82, 212, 0));
  pointer-events: none;
}

.hero-media-badge {
  position: absolute;
  z-index: 2;
  border-radius: 1.25rem;
  padding: 1rem 1.15rem;
  backdrop-filter: blur(2px);
}

.hero-media-badge-top {
  top: 1rem;
  left: 1rem;
  min-width: 13rem;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(203, 213, 225, 0.8);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.hero-media-badge-bottom {
  right: 1rem;
  bottom: 1rem;
  min-width: 15rem;
  background: linear-gradient(135deg, rgba(17, 82, 212, 0.95), rgba(45, 107, 255, 0.95));
  box-shadow: var(--shadow-accent-lg);
}

.nav-balanced {
  position: relative;
  min-height: 84px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

.nav-side {
  display: flex;
  align-items: center;
  gap: 1.55rem;
}

.nav-side-left {
  justify-content: flex-start;
  padding-right: 3.5rem;
}

.nav-side-right {
  justify-content: flex-end;
  padding-left: 3.5rem;
}

.nav-link-main {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.84rem;
  letter-spacing: 0.02em;
  font-weight: 700;
  color: #0f2f71;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav-link-main:hover {
  color: var(--accent);
}

.nav-link-login {
  padding: 0.48rem 0.7rem;
  border-radius: 0.5rem;
}

.nav-link-login:hover {
  background: rgba(15, 47, 113, 0.08);
}

.nav-cta {
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 800;
  color: #ffffff;
  background: linear-gradient(135deg, var(--accent), var(--accent-secondary));
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  box-shadow: var(--shadow-accent);
  white-space: nowrap;
}

.nav-cta:hover {
  filter: brightness(1.05);
}

.nav-center-logo {
  position: relative;
  text-decoration: none;
  z-index: 3;
}

.nav-center-logo-box {
  position: relative;
  width: 82px;
  height: 82px;
  border-radius: 16px;
  background: linear-gradient(145deg, #ffffff, #dfe9ff);
  display: grid;
  place-items: center;
  border: 1px solid rgba(15, 47, 113, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -4px 8px rgba(17, 82, 212, 0.12),
    0 10px 22px rgba(10, 39, 94, 0.2),
    0 18px 30px rgba(10, 39, 94, 0.16);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.nav-center-logo-box::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 10px;
  right: 10px;
  height: 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.nav-center-logo-image {
  width: 66px;
  height: 66px;
  object-fit: contain;
  transform: none;
  filter: drop-shadow(0 8px 10px rgba(15, 47, 113, 0.3));
  transition: transform 0.22s ease, filter 0.22s ease;
}

.nav-center-logo:hover .nav-center-logo-box {
  transform: translateY(-2px) scale(1.015);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -4px 8px rgba(17, 82, 212, 0.14),
    0 14px 28px rgba(10, 39, 94, 0.24),
    0 26px 36px rgba(10, 39, 94, 0.18);
}

.nav-center-logo:hover .nav-center-logo-image {
  transform: scale(1.03);
  filter: drop-shadow(0 10px 14px rgba(15, 47, 113, 0.36));
}

.footer-logo-box {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: #eff6ff;
  display: grid;
  place-items: center;
}

.footer-logo-image {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.plan-features {
  margin: 0;
  padding-left: 1rem;
  display: grid;
  gap: 0.45rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.contact-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 2rem;
  align-items: start;
}

.contact-side {
  display: grid;
  gap: 1rem;
}

.contact-card {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.2rem 1rem;
  box-shadow: var(--shadow-sm);
}

.contact-card h3 {
  margin: 0.7rem 0 0.35rem;
  font-size: 1.25rem;
}

.contact-card p {
  margin: 0;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.contact-icon {
  width: 62px;
  height: 62px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 1.5rem;
}

.grad-1 { background: linear-gradient(135deg, #ef2a8b, #6d28d9); }
.grad-2 { background: linear-gradient(135deg, #4338ca, #7c3aed); }
.grad-3 { background: linear-gradient(135deg, #f59e0b, #ec4899); }

.contact-form-wrap {
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.4rem;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: grid;
  gap: 0.8rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border-radius: 0.6rem;
  border: 1px solid #d3dcf0;
  background: #f1f2fb;
  padding: 0.85rem 0.95rem;
  font-size: 0.95rem;
}

.contact-form textarea {
  resize: vertical;
}

.contact-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

/* ===== AUTH STYLES ===== */

.auth-only-body {
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(56, 189, 248, 0.18), transparent 26%),
    radial-gradient(circle at 82% 16%, rgba(37, 99, 235, 0.28), transparent 24%),
    radial-gradient(circle at 50% 78%, rgba(15, 23, 42, 0.92), transparent 34%),
    linear-gradient(135deg, #020617 0%, #08111f 30%, #0a1b35 62%, #020617 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.auth-only-body::before,
.auth-only-body::after {
  content: "";
  position: fixed;
  border-radius: 999px;
  filter: blur(110px);
  pointer-events: none;
  z-index: 0;
}

.auth-only-body::before {
  width: 24rem;
  height: 24rem;
  top: -4rem;
  left: -5rem;
  background: rgba(37, 99, 235, 0.28);
}

.auth-only-body::after {
  width: 28rem;
  height: 28rem;
  right: -8rem;
  bottom: -6rem;
  background: rgba(14, 165, 233, 0.18);
}

.auth-shell {
  width: 100%;
  max-width: 540px;
  position: relative;
  z-index: 1;
}

.auth-panel {
  position: relative;
  background:
    linear-gradient(135deg, rgba(20, 30, 48, 0.72), rgba(25, 35, 65, 0.68));
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 1.6rem;
  padding: 2rem 1.7rem 1.4rem;
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.3),
    0 32px 64px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  overflow: hidden;
}

.auth-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 100% 0%, rgba(59, 130, 246, 0.08), transparent 40%),
    radial-gradient(circle at 0% 100%, rgba(139, 92, 246, 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent 25%);
  pointer-events: none;
}

.auth-panel-wide {
  max-width: 620px;
}

.auth-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.8rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  border: 1px solid rgba(37, 99, 235, 0.2);
  background: rgba(255, 255, 255, 0.72);
  color: #1d4ed8;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.auth-logo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 1.4rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
}

.auth-logo-wrap-login {
  width: 100%;
  margin-bottom: 1.1rem;
  padding-bottom: 0;
  border-bottom: 0;
}

.auth-logo-wrap-login .auth-logo-image {
  width: 184px;
  height: 184px;
}

.auth-logo-link {
  display: inline-flex;
  text-decoration: none;
}

.auth-logo-image {
  width: 148px;
  height: 148px;
  border-radius: 1rem;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(15, 23, 42, 0.18));
}

.auth-title-group {
  margin-bottom: 1.35rem;
  text-align: center;
}

.auth-kicker {
  margin: 0 0 0.55rem;
  color: #2563eb;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.auth-headline {
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  line-height: 1.05;
  font-weight: 800;
  margin: 0;
  color: #ffffff;
}

.auth-subtitle {
  text-align: center;
  color: #e2e2e2;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0.7rem 0 0;
}

.auth-form {
  display: grid;
  gap: 0.85rem;
}

.auth-form label {
  display: block;
  font-weight: 700;
  font-size: 0.78rem;
  color: #ffffff;
  margin-bottom: 0.35rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.auth-form input,
.auth-form select {
  width: 100%;
  padding: 0.95rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.38);
  border-radius: 0.95rem;
  font-size: 0.98rem;
  background: rgba(9, 34, 52, 0.9);
  color: #ffffff;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.4);
}

.auth-form input:focus,
.auth-form select:focus {
  outline: none;
  background: rgba(13, 49, 75, 0.9);
  border-color: #2563eb;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
  transform: translateY(-1px);
}

.auth-form input::placeholder {
  color: #64748b;
}

.password-input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.password-input-group input {
  width: 100%;
  padding-right: 5.25rem;
}

.password-toggle {
  position: absolute;
  right: 0.55rem;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.14);
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  padding: 0.4rem 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border-radius: 999px;
}

.password-toggle:hover {
  color: var(--accent-secondary);
  background: rgba(37, 99, 235, 0.16);
}

.auth-checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 0.95rem;
  background: rgba(1, 2, 2, 0.86);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.24);
}

.auth-checkbox-group input[type="checkbox"] {
  width: auto;
  min-width: 1.25rem;
  min-height: 1.25rem;
  margin-top: 0.2rem;
  cursor: pointer;
  accent-color: var(--accent);
}

.auth-checkbox-label {
  flex: 1;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--foreground);
  cursor: pointer;
  line-height: 1.5;
}

.auth-checkbox-label a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.auth-checkbox-label a:hover {
  text-decoration: underline;
}

.auth-submit {
  width: 100%;
  padding: 1rem 1rem;
  font-size: 1rem;
  font-weight: 800;
  border: 0;
  border-radius: 1rem;
  background: linear-gradient(135deg, #1d4ed8, #2563eb 52%, #38bdf8);
  color: var(--accent-foreground);
  cursor: pointer;
  transition: all 0.24s ease;
  text-transform: none;
  box-shadow: 0 20px 36px rgba(29, 78, 216, 0.28);
}

.auth-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 26px 42px rgba(29, 78, 216, 0.34);
}

.auth-submit:active {
  transform: translateY(0);
}

.auth-links-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(148, 163, 184, 0.24);
}

.auth-links-row a {
  flex: 1;
  text-align: center;
  font-size: 0.88rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s ease;
}

.auth-links-row a:hover {
  color: var(--accent-secondary);
  text-decoration: underline;
}

.auth-links-single {
  flex-direction: row;
  justify-content: center;
}

.auth-links-single a {
  flex: none;
}

.auth-trust-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.auth-trust-row span {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.72rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(148, 163, 184, 0.24);
  color: #334155;
  font-size: 0.76rem;
  font-weight: 700;
}

/* Password Meter Styles */
.password-meter {
  padding: 1rem;
  background: rgba(1, 2, 2, 0.86);
  border: 1px solid rgba(148, 163, 184, 0.24);
  border-radius: 1rem;
  margin: 0.5rem 0;
}

.password-meter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
  font-weight: 600;
}

.password-meter-top span {
  color: var(--muted-foreground);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

#passwordStrengthText {
  color: var(--accent);
  font-weight: 700;
}

.password-meter-track {
  width: 100%;
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 0.75rem;
}

#passwordStrengthBar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #ef4444, #f97316, #eab308, #84cc16, #22c55e);
  border-radius: 999px;
  transition: width 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
}

.password-rules {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.5rem;
}

.password-rule-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted-foreground);
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.password-rule-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2rem;
  height: 1.2rem;
  min-width: 1.2rem;
  font-size: 0.9rem;
  color: #d1d5db;
  transition: all 0.3s ease;
  font-weight: 500;
}

.password-rule-text {
  flex: 1;
}

.password-rule-item.completed {
  color: #16a34a;
}

.password-rule-item.completed .password-rule-icon {
  color: #22c55e;
  font-size: 1.1rem;
  font-weight: bold;
}

.alert {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(254, 226, 226, 0.92);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #5f8bbd;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.notice {
  padding: 1rem;
  border-radius: 1rem;
  background: rgba(219, 234, 254, 0.94);
  border: 1px solid rgba(96, 165, 250, 0.26);
  color: #1e40af;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .nav-balanced {
    min-height: 72px;
    grid-template-columns: 1fr;
  }

  .nav-center-logo {
    display: none;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .hero-media-card {
    min-height: 23rem;
    border-width: 8px;
  }

  .hero-media-badge-top,
  .hero-media-badge-bottom {
    min-width: auto;
  }

  .auth-only-body {
    padding: 1rem;
  }

  .auth-panel {
    padding: 1.5rem 1rem 1.2rem;
  }

  .auth-logo-image {
    width: 124px;
    height: 124px;
  }

  .auth-headline {
    font-size: 1.7rem;
  }

  .auth-links-row {
    flex-direction: column;
  }
}

@keyframes rotateSlow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes floatA {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes floatB {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(10px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
