@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

:root {
  --rdm-bg: #faf8ff;
  --rdm-surface: #ffffff;
  --rdm-text: #1a1025;
  --rdm-muted: #6b6280;
  --rdm-accent: #8b5cf6;
  --rdm-accent-2: #ec4899;
  --rdm-accent-h: #7c3aed;
  --rdm-border: #ebe6f5;
  --rdm-shadow: 0 24px 64px rgba(91, 33, 182, 0.1), 0 4px 16px rgba(28, 25, 23, 0.04);
  --rdm-font: 'DM Sans', system-ui, sans-serif;
  --rdm-radius: 28px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html.land-rdom body {
  font-family: var(--rdm-font);
  background: var(--rdm-bg);
  color: var(--rdm-text);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

html.land-rdom .rdm-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

html.land-rdom .rdm-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -10%, rgba(139, 92, 246, 0.14), transparent 55%),
    radial-gradient(ellipse 45% 35% at 100% 60%, rgba(236, 72, 153, 0.1), transparent 50%),
    radial-gradient(ellipse 40% 30% at 0% 80%, rgba(167, 139, 250, 0.12), transparent 45%),
    var(--rdm-bg);
}

html.land-rdom .rdm-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.55;
}

html.land-rdom .rdm-blob--1 {
  width: 320px;
  height: 320px;
  top: 8%;
  right: -80px;
  background: rgba(236, 72, 153, 0.25);
}

html.land-rdom .rdm-blob--2 {
  width: 280px;
  height: 280px;
  bottom: 10%;
  left: -60px;
  background: rgba(139, 92, 246, 0.22);
}

html.land-rdom .rdm-blob--3 {
  width: 180px;
  height: 180px;
  top: 42%;
  left: 38%;
  background: rgba(244, 114, 182, 0.15);
}

html.land-rdom .rdm-header,
html.land-rdom .rdm-shell {
  position: relative;
  z-index: 1;
}

html.land-rdom .rdm-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1040px;
  margin: 0 auto;
  width: 100%;
}

html.land-rdom .rdm-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--rdm-text);
}

html.land-rdom .rdm-logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--rdm-accent), var(--rdm-accent-2));
  box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
}

html.land-rdom .rdm-logo-name {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  background: linear-gradient(120deg, var(--rdm-accent-h), var(--rdm-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.land-rdom .rdm-header-meta {
  display: flex;
  gap: 8px;
  align-items: center;
}

html.land-rdom .rdm-badge {
  font-size: 11px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--rdm-border);
  color: var(--rdm-muted);
  backdrop-filter: blur(8px);
}

html.land-rdom .rdm-badge--pulse {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #059669;
  border-color: rgba(5, 150, 105, 0.2);
  background: rgba(209, 250, 229, 0.5);
}

html.land-rdom .rdm-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: rdm-pulse 1.6s ease infinite;
}

@keyframes rdm-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(0.8); }
}

html.land-rdom .rdm-shell {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr minmax(320px, 440px);
  gap: 40px;
  max-width: 1040px;
  margin: 0 auto;
  padding: 12px 24px 40px;
  width: 100%;
  align-items: center;
}

html.land-rdom .rdm-promo {
  padding: 12px 0;
}

html.land-rdom .rdm-kicker {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--rdm-accent);
  margin-bottom: 14px;
}

html.land-rdom .rdm-headline {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

html.land-rdom .rdm-headline span {
  background: linear-gradient(120deg, var(--rdm-accent-h), var(--rdm-accent-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

html.land-rdom .rdm-sub {
  font-size: 17px;
  line-height: 1.55;
  color: var(--rdm-muted);
  margin-bottom: 24px;
  max-width: 420px;
}

html.land-rdom .rdm-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 28px;
}

html.land-rdom .rdm-chip {
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--rdm-border);
  color: var(--rdm-text);
  box-shadow: 0 2px 8px rgba(91, 33, 182, 0.05);
}

html.land-rdom .rdm-metrics {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--rdm-border);
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(91, 33, 182, 0.06);
}

html.land-rdom .rdm-metric strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

html.land-rdom .rdm-metric span {
  font-size: 12px;
  color: var(--rdm-muted);
  font-weight: 500;
}

html.land-rdom .rdm-metric-div {
  width: 1px;
  height: 40px;
  background: var(--rdm-border);
}

html.land-rdom .rdm-card {
  background: var(--rdm-surface);
  border-radius: var(--rdm-radius);
  padding: 28px 28px 32px;
  box-shadow: var(--rdm-shadow);
  border: 1px solid rgba(255, 255, 255, 0.9);
}

html.land-rdom .rdm-progress {
  margin-bottom: 24px;
}

html.land-rdom .rdm-progress-track {
  height: 5px;
  border-radius: 999px;
  background: #f0ebfa;
  overflow: hidden;
  margin-bottom: 10px;
}

html.land-rdom .rdm-progress-fill {
  height: 100%;
  width: 50%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--rdm-accent), var(--rdm-accent-2));
  transition: width 0.35s ease;
}

html.land-rdom .rdm-steps {
  display: flex;
  justify-content: space-between;
}

html.land-rdom .rdm-step {
  font-size: 12px;
  font-weight: 600;
  color: var(--rdm-muted);
  transition: color 0.2s;
}

html.land-rdom .rdm-step.is-active {
  color: var(--rdm-accent-h);
  font-weight: 700;
}

html.land-rdom .rdm-step.is-done {
  color: #059669;
}

html.land-rdom .rdm-panel { display: block; }

html.land-rdom .rdm-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 6px;
}

html.land-rdom .rdm-hint {
  font-size: 14px;
  color: var(--rdm-muted);
  line-height: 1.5;
  margin-bottom: 22px;
}

html.land-rdom .rdm-lbl {
  display: block;
  margin-bottom: 16px;
}

html.land-rdom .rdm-lbl-txt {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: var(--rdm-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

html.land-rdom .rdm-inp {
  width: 100%;
  padding: 15px 16px;
  font-size: 16px;
  font-family: inherit;
  border: 1.5px solid var(--rdm-border);
  border-radius: 14px;
  background: #fdfcff;
  color: var(--rdm-text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

html.land-rdom .rdm-inp:focus {
  outline: none;
  border-color: var(--rdm-accent);
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.12);
  background: #fff;
}

html.land-rdom .rdm-inp--sel {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b6280' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

html.land-rdom .rdm-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

html.land-rdom .rdm-opt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 10px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--rdm-border);
  border-radius: 14px;
  background: #fdfcff;
  color: var(--rdm-muted);
  cursor: pointer;
  transition: 0.18s;
}

html.land-rdom .rdm-opt-ic {
  font-size: 16px;
  line-height: 1;
  opacity: 0.7;
}

html.land-rdom .rdm-opt.is-on {
  border-color: transparent;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.1));
  color: var(--rdm-accent-h);
  box-shadow: inset 0 0 0 1.5px var(--rdm-accent);
}

html.land-rdom .rdm-opt.is-on .rdm-opt-ic {
  opacity: 1;
}

html.land-rdom .rdm-btn,
html.land-rdom .continue-btn {
  width: 100%;
  padding: 17px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  border: none;
  border-radius: 14px;
  cursor: pointer;
  background: linear-gradient(135deg, var(--rdm-accent), var(--rdm-accent-2));
  box-shadow: 0 10px 28px rgba(139, 92, 246, 0.35);
  transition: transform 0.15s, box-shadow 0.15s;
  margin-top: 6px;
}

html.land-rdom .rdm-btn:hover:not(:disabled),
html.land-rdom .continue-btn:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(139, 92, 246, 0.42);
}

html.land-rdom .rdm-btn:disabled,
html.land-rdom .continue-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
}

html.land-rdom .rdm-micro {
  font-size: 11px;
  color: #9ca3af;
  text-align: center;
  margin-top: 14px;
  line-height: 1.45;
}

html.land-rdom .rdm-pane { display: none; }
html.land-rdom .rdm-pane.is-visible { display: block; }

html.land-rdom .hidden { display: none !important; }

html.land-rdom .view { display: none; }
html.land-rdom .view.active { display: block; }

html.land-rdom .rdm-secure-note {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #047857;
  background: rgba(209, 250, 229, 0.45);
  border: 1px solid rgba(5, 150, 105, 0.15);
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 16px;
  font-weight: 500;
}

html.land-rdom .rdm-phone-wrap {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
}

html.land-rdom .country-wrap { position: relative; flex-shrink: 0; }

html.land-rdom .rdm-cc-btn,
html.land-rdom .country-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 15px 12px;
  border: 1.5px solid var(--rdm-border);
  border-radius: 14px;
  background: #fdfcff;
  cursor: pointer;
  font-size: 15px;
  font-family: inherit;
}

html.land-rdom .country-drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 50;
  min-width: 260px;
  max-height: 240px;
  overflow: auto;
  background: #fff;
  border: 1px solid var(--rdm-border);
  border-radius: 14px;
  box-shadow: var(--rdm-shadow);
}

html.land-rdom .country-drop.open { display: block; }

html.land-rdom .country-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 10px 14px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-size: 14px;
  font-family: inherit;
}

html.land-rdom .country-opt:hover,
html.land-rdom .country-opt.active {
  background: rgba(139, 92, 246, 0.06);
}

html.land-rdom .c-cd { margin-left: auto; color: var(--rdm-muted); }

html.land-rdom .phone-input,
html.land-rdom .password-input { flex: 1; }

html.land-rdom .manual-phone-block { display: block; }

html.land-rdom .rdm-otp {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
  margin: 18px 0;
}

html.land-rdom .otp-input {
  width: 100%;
  aspect-ratio: 1;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: inherit;
  border: 1.5px solid var(--rdm-border);
  border-radius: 12px;
  background: #fdfcff;
}

html.land-rdom .otp-input:focus {
  outline: none;
  border-color: var(--rdm-accent);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.12);
}

html.land-rdom .rdm-timer,
html.land-rdom .timer-text {
  font-size: 13px;
  color: var(--rdm-muted);
  margin-bottom: 10px;
}

html.land-rdom .rdm-link,
html.land-rdom .resend-btn {
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--rdm-accent-h);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin-bottom: 10px;
  display: block;
}

html.land-rdom .rdm-back,
html.land-rdom .back-btn {
  font-family: inherit;
  font-size: 14px;
  color: var(--rdm-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

html.land-rdom .error-msg {
  color: #dc2626;
  font-size: 13px;
  margin: -4px 0 12px;
  display: none;
}

html.land-rdom .error-msg.show { display: block; }

html.land-rdom .rdm-legal,
html.land-rdom .legal-text {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.5;
  margin-top: 14px;
}

html.land-rdom .rdm-legal a,
html.land-rdom .legal-text a {
  color: var(--rdm-accent-h);
}

html.land-rdom .rdm-success {
  text-align: center;
  padding: 20px 0;
}

html.land-rdom .rdm-success-badge {
  width: 68px;
  height: 68px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.12), rgba(236, 72, 153, 0.1));
  border: 3px solid var(--rdm-accent);
  position: relative;
}

html.land-rdom .rdm-success-badge::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46%;
  width: 10px;
  height: 18px;
  border: solid var(--rdm-accent-h);
  border-width: 0 3px 3px 0;
  transform: translate(-50%, -50%) rotate(45deg);
}

@media (max-width: 860px) {
  html.land-rdom .rdm-shell {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 0 16px 32px;
  }

  html.land-rdom .rdm-promo {
    text-align: center;
    padding: 4px 0 8px;
  }

  html.land-rdom .rdm-sub,
  html.land-rdom .rdm-chips {
    margin-left: auto;
    margin-right: auto;
  }

  html.land-rdom .rdm-sub { max-width: 100%; }

  html.land-rdom .rdm-chips {
    justify-content: center;
  }

  html.land-rdom .rdm-metrics {
    width: 100%;
    justify-content: center;
  }

  html.land-rdom .rdm-card {
    padding: 22px 18px 26px;
    border-radius: 24px;
  }

  html.land-rdom .rdm-toggle {
    grid-template-columns: 1fr;
  }

  html.land-rdom .rdm-blob { display: none; }
}

@media (max-width: 400px) {
  html.land-rdom .rdm-headline { font-size: 28px; }
  html.land-rdom .rdm-metric strong { font-size: 24px; }
}
