/* src/index.css */
:root {
  --bg: #0a0a0a;
  --surface: #141414;
  --surface-2: #1a1a1a;
  --border: #1e1e1e;
  --border-hover: #2a2a2a;
  --text: #e0e0e0;
  --text-dim: #888;
  --primary: #e8be51;
  --primary-dim: #e8be5126;
  --danger: #f44;
  --danger-dim: #ff444426;
  --warning: #f0c040;
  --warning-dim: #f0c04026;
  --success: #34d399;
  --mono: "JetBrains Mono", "Fira Code", "Cascadia Code", monospace;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --serif: "Instrument Serif", Georgia, "Times New Roman", serif;
  --radius: 8px;
  --radius-lg: 12px;
}

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

html, body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a {
  color: var(--primary);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.navbar {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  z-index: 100;
  justify-content: space-between;
  align-items:  center;
  padding: .75rem 1.5rem;
  top: 0;
}

.navbar-logo {
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 700;
}

.logo-icon {
  width: auto;
  height: 48px;
}

.logo-voxai {
  color: var(--text);
}

.logo-os {
  color: var(--primary);
}

.navbar-links {
  display: flex;
  align-items:  center;
  gap: 1rem;
}

.nav-link {
  color: var(--text-dim);
  border-radius: var(--radius);
  text-decoration: none;
  padding: .25rem .5rem;
  font-size: .875rem;
}

.nav-link:hover {
  color: var(--text);
  text-decoration: none;
}

.nav-link.active {
  color: var(--primary);
}

.nav-email {
  color: var(--text-dim);
  font-size: .8rem;
}

.main-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
}

.page-loading {
  display: flex;
  color: var(--text-dim);
  justify-content: center;
  align-items:  center;
  min-height: 50vh;
}

.btn {
  display: inline-flex;
  border-radius: var(--radius);
  cursor: pointer;
  font-size: .875rem;
  font-weight: 500;
  font-family: var(--sans);
  border: 1px solid #0000;
  align-items:  center;
  gap: .4rem;
  padding: .5rem 1rem;
  transition: all .15s;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.btn-primary {
  background: var(--primary);
  color: #000;
  border-color: var(--primary);
}

.btn-primary:hover:not(:disabled) {
  background: #f0cc6a;
}

.btn-danger {
  background: var(--danger);
  color: #fff;
  border-color: var(--danger);
}

.btn-danger:hover:not(:disabled) {
  background: #f66;
}

.btn-danger.btn-outline {
  color: var(--danger);
  background: none;
}

.btn-danger.btn-outline:hover:not(:disabled) {
  background: var(--danger-dim);
}

.btn-warning {
  background: var(--warning);
  color: #000;
  border-color: var(--warning);
}

.btn-ghost {
  color: var(--text-dim);
  border-color: var(--border);
  background: none;
}

.btn-ghost:hover:not(:disabled) {
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-sm {
  padding: .3rem .65rem;
  font-size: .8rem;
}

.btn-full {
  justify-content: center;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  margin-bottom: 1rem;
}

.form-group label {
  color: var(--text-dim);
  font-size: .8rem;
  font-weight: 500;
}

.form-group input, .form-group select, .form-group textarea {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .875rem;
  font-family: var(--sans);
  outline: none;
  padding: .6rem .75rem;
  transition: border-color .15s;
}

.form-group input:focus, .form-group select:focus {
  border-color: var(--primary);
}

.form-group input::placeholder {
  color: #555;
}

.form-group select {
  cursor: pointer;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.alert {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  padding: .6rem .85rem;
  font-size: .85rem;
}

.alert-error {
  background: var(--danger-dim);
  color: var(--danger);
  border: 1px solid #ff44444d;
}

.alert-success {
  color: var(--success);
  background: #e8be511a;
  border: 1px solid #e8be514d;
}

.auth-page {
  display: flex;
  justify-content: center;
  align-items:  center;
  min-height: 80vh;
}

.auth-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 400px;
  padding: 2rem;
}

.auth-title {
  text-align: center;
  margin-bottom: .25rem;
  font-size: 2rem;
}

.auth-subtitle {
  text-align: center;
  color: var(--text-dim);
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.auth-footer {
  text-align: center;
  color: var(--text-dim);
  margin-top: 1.25rem;
  font-size: .85rem;
}

.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: 1.5rem;
}

.dashboard-header h2 {
  font-size: 1.5rem;
}

.agents-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.empty-state {
  display: flex;
  color: var(--text-dim);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  justify-content: center;
  align-items:  center;
  min-height: 200px;
}

.create-agent-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
  padding: 1.5rem;
}

.agent-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1rem;
  transition: border-color .15s;
}

.agent-card:hover {
  border-color: var(--border-hover);
}

.agent-card-header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: .5rem;
}

.agent-name {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
}

.agent-name:hover {
  color: var(--primary);
  text-decoration: none;
}

.status-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
}

.agent-card-body {
  display: flex;
  color: var(--text-dim);
  justify-content: space-between;
  margin-bottom: .75rem;
  font-size: .8rem;
}

.agent-card-actions {
  display: flex;
  gap: .5rem;
}

.agent-detail-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.agent-detail-header h2 {
  margin-bottom: .4rem;
  font-size: 1.5rem;
}

.agent-meta {
  display: flex;
  align-items:  center;
  gap: .5rem;
}

.status-badge {
  text-transform: uppercase;
  border: 1px solid;
  border-radius: 20px;
  padding: .2rem .6rem;
  font-size: .75rem;
  font-weight: 500;
}

.agent-provider-badge {
  background: var(--surface-2);
  color: var(--text-dim);
  border-radius: 20px;
  padding: .2rem .6rem;
  font-size: .75rem;
}

.agent-detail-actions {
  display: flex;
  gap: .5rem;
}

.agent-tabs {
  display: flex;
  border-bottom: 1px solid var(--border);
  margin-bottom: 1rem;
}

.tab {
  color: var(--text-dim);
  cursor: pointer;
  font-size: .875rem;
  font-family: var(--sans);
  background: none;
  border: none;
  border-bottom: 2px solid #0000;
  padding: .6rem 1rem;
  transition: all .15s;
}

.tab:hover {
  color: var(--text);
}

.tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.chat-window {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 500px;
}

.chat-header {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 500;
}

.chat-status {
  font-size: .75rem;
}

.chat-status.online {
  color: var(--primary);
}

.chat-status.offline {
  color: var(--danger);
}

.chat-messages {
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: .5rem;
  padding: 1rem;
}

.chat-msg {
  display: flex;
  flex-direction: column;
  gap: .15rem;
  max-width: 80%;
}

.chat-msg-user {
  align-self:  flex-end;
}

.chat-msg-response {
  align-self:  flex-start;
}

.chat-msg-connected, .chat-msg-error {
  color: var(--text-dim);
  align-self:  center;
  font-size: .75rem;
}

.chat-msg-error {
  color: var(--danger);
}

.chat-msg-label {
  color: var(--text-dim);
  font-size: .7rem;
  font-weight: 500;
}

.chat-msg-content {
  border-radius: var(--radius);
  padding: .5rem .75rem;
  font-size: .875rem;
  line-height: 1.4;
}

.chat-msg-user .chat-msg-content {
  background: var(--primary-dim);
  color: var(--primary);
}

.chat-msg-response .chat-msg-content {
  background: var(--surface-2);
  color: var(--text);
}

.chat-input {
  display: flex;
  background: var(--surface);
  border-top: 1px solid var(--border);
  gap: .5rem;
  padding: .75rem;
}

.chat-input input {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: .875rem;
  font-family: var(--sans);
  outline: none;
  flex: 1;
  padding: .5rem .75rem;
}

.chat-input input:focus {
  border-color: var(--primary);
}

.chat-input input::placeholder {
  color: #555;
}

.log-viewer {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.log-header {
  display: flex;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  center;
  padding: .6rem 1rem;
  font-size: .85rem;
  font-weight: 500;
}

.log-content {
  overflow-y: auto;
  font-family: var(--mono);
  background: #050505;
  height: 400px;
  padding: .75rem;
  font-size: .8rem;
  line-height: 1.6;
}

.log-line {
  white-space: pre-wrap;
  word-break: break-all;
  color: #ccc;
}

.log-empty {
  color: var(--text-dim);
  text-align: center;
  font-family: var(--sans);
  padding: 2rem;
}

.payment-page h2 {
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}

.payment-page h3 {
  margin-bottom: .75rem;
  font-size: 1.1rem;
}

.payment-current {
  display: flex;
  color: var(--text-dim);
  align-items:  center;
  gap: .75rem;
  margin-bottom: 1.5rem;
  font-size: .9rem;
}

.plan-badge {
  background: var(--primary-dim);
  color: var(--primary);
  text-transform: uppercase;
  border-radius: 20px;
  padding: .2rem .7rem;
  font-size: .8rem;
  font-weight: 600;
}

.payment-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.payment-plans-3 {
  grid-template-columns: 1fr 1fr 1fr;
}

.plan-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
}

.plan-card.current {
  border-color: var(--primary);
}

.plan-card h3 {
  margin-bottom: .25rem;
}

.plan-price {
  color: var(--primary);
  margin-bottom: .75rem;
  font-size: 1.5rem;
  font-weight: 700;
}

.plan-price span {
  color: var(--text-dim);
  font-size: .8rem;
  font-weight: 400;
}

.plan-card ul {
  list-style: none;
}

.plan-card li {
  color: var(--text-dim);
  padding: .15rem 0;
  font-size: .85rem;
}

.plan-card li:before {
  content: "- ";
  color: var(--primary);
}

.payment-verify {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
  padding: 1.5rem;
}

.payment-instructions {
  color: var(--text-dim);
  margin-bottom: 1rem;
  font-size: .85rem;
}

.payment-history {
  margin-top: 1.5rem;
}

.payment-history table {
  border-collapse: collapse;
  width: 100%;
}

.payment-history th, .payment-history td {
  text-align: left;
  border-bottom: 1px solid var(--border);
  padding: .6rem .75rem;
  font-size: .8rem;
}

.payment-history th {
  color: var(--text-dim);
  font-weight: 500;
}

.tx-cell {
  font-family: var(--mono);
  font-size: .75rem;
}

.wallet-section {
  margin-bottom: .75rem;
}

.wallet-connected {
  display: flex;
  align-items:  center;
  gap: .75rem;
}

.wallet-addr {
  font-family: var(--mono);
  background: var(--surface-2);
  border-radius: var(--radius);
  padding: .3rem .6rem;
  font-size: .85rem;
}

.wallet-status {
  font-size: .75rem;
  font-weight: 500;
}

.wallet-status.connected {
  color: var(--primary);
}

@media (width <= 640px) {
  .main-content {
    padding: 1rem;
  }

  .form-row, .payment-plans, .payment-plans-3 {
    grid-template-columns: 1fr;
  }

  .agent-detail-header {
    flex-direction: column;
  }

  .agent-detail-actions {
    width: 100%;
  }

  .agent-detail-actions .btn {
    flex: 1;
  }
}

.lp {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  overflow-x: hidden;
}

.lp-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-nav {
  position: fixed;
  z-index: 1000;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: #0a0a0ad9;
  border-bottom: 1px solid #e8be5114;
  top: 0;
  left: 0;
  right: 0;
}

.lp-nav-inner {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  max-width: 1120px;
  height: 64px;
  margin: 0 auto;
  padding: 0 2rem;
}

.lp-logo {
  display: flex;
  letter-spacing: -.02em;
  align-items:  center;
  gap: 8px;
  font-size: 1.3rem;
  font-weight: 700;
}

.lp-nav-center {
  display: flex;
  gap: 2rem;
}

.lp-nav-center button {
  color: var(--text-dim);
  font-family: var(--sans);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  transition: color .2s;
  font-size: .875rem;
}

.lp-nav-center button:hover {
  color: var(--text);
}

.lp-nav-right {
  display: flex;
  align-items:  center;
  gap: 1.25rem;
}

.lp-nav-login {
  transition: color .2s;
  font-size: .875rem;
  color: var(--text-dim) !important;
  text-decoration: none !important;
}

.lp-nav-login:hover {
  color: var(--text) !important;
  text-decoration: none !important;
}

.lp-launch-btn {
  display: inline-flex;
  background: var(--primary);
  border-radius: 6px;
  align-items:  center;
  padding: .45rem 1.1rem;
  transition: all .2s;
  font-size: .85rem;
  font-weight: 600;
  color: #000 !important;
  text-decoration: none !important;
}

.lp-launch-btn:hover {
  background: #f0cc6a;
  text-decoration: none !important;
}

.lp-section {
  border-bottom: 1px solid #ffffff0a;
  padding: 6rem 0;
}

.lp-section-alt {
  background: var(--surface);
  border-top: 1px solid #e8be510a;
  border-bottom: 1px solid #e8be510a;
}

.lp-section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.lp-tag {
  display: inline-block;
  letter-spacing: .12em;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid #e8be5126;
  border-radius: 20px;
  margin-bottom: 1.25rem;
  padding: .3rem .85rem;
  font-size: .7rem;
  font-weight: 600;
}

.lp-h2 {
  font-family: var(--sans);
  letter-spacing: -.03em;
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.lp-h2 em {
  font-family: var(--serif);
  color: var(--text-dim);
  font-style: italic;
  font-weight: 400;
}

.lp {
  background-image: radial-gradient(#e8be5112 1px, #0000 1px);
  background-position: 0 0;
  background-size: 32px 32px;
}

.lp-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(60% 40% at 70% 30%, #e8be5114, #0000 70%), radial-gradient(50% 60% at 20%, #e8be510a, #0000 70%);
  border-bottom: 1px solid #e8be510f;
  padding-top: 10rem;
  padding-bottom: 7rem;
}

.lp-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  position: relative;
  z-index: 1;
  align-items:  center;
  gap: 4rem;
}

.lp-hero-h1 {
  font-family: var(--sans);
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.08;
}

.lp-hero-h1 em {
  font-family: var(--serif);
  color: var(--primary);
  text-shadow: 0 0 40px #e8be514d;
  font-style: italic;
  font-weight: 400;
}

.lp-hero-sub {
  color: var(--text-dim);
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
  line-height: 1.7;
}

.lp-hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
}

.lp-btn-primary {
  display: inline-flex;
  background: var(--primary);
  color: #000;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  text-decoration: none;
  border: none;
  border-radius: 8px;
  align-items:  center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  transition: all .2s;
}

.lp-btn-primary:hover {
  text-decoration: none;
  background: #f0cc6a;
  transform: translateY(-2px);
  box-shadow: 0 4px 24px #e8be5159, 0 0 0 1px #e8be511a;
}

.lp-btn-outline {
  display: inline-flex;
  color: var(--text-dim);
  font-size: .95rem;
  font-weight: 500;
  font-family: var(--sans);
  border: 1px solid var(--border-hover);
  cursor: pointer;
  background: none;
  border-radius: 8px;
  align-items:  center;
  padding: .75rem 1.75rem;
  transition: all .2s;
}

.lp-btn-outline:hover {
  color: var(--text);
  border-color: #444;
}

.lp-btn-lg {
  padding: .9rem 2.25rem;
  font-size: 1.05rem;
}

.lp-hero-metrics {
  display: flex;
  align-items:  center;
  gap: 1.75rem;
}

.lp-metric {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}

.lp-metric-val {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}

.lp-metric-label {
  color: var(--text-dim);
  font-size: .8rem;
}

.lp-metric-sep {
  background: var(--border-hover);
  width: 1px;
  height: 20px;
}

.lp-hero-right {
  display: flex;
  justify-content: center;
  align-items:  center;
}

.lp-hero-visual {
  display: flex;
  position: relative;
  justify-content: center;
  align-items:  center;
  width: 100%;
  max-width: 460px;
}

.lp-hero-img {
  filter: drop-shadow(0 0 40px #e8be5126);
  border-radius: 16px;
  width: 100%;
  height: auto;
}

.lp-concept-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.lp-concept-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.25rem;
  transition: border-color .3s, box-shadow .3s;
}

.lp-concept-card:hover {
  border-color: #e8be5133;
  box-shadow: 0 0 30px #e8be510a;
}

.lp-concept-num {
  display: inline-flex;
  color: var(--primary);
  letter-spacing: .05em;
  background: #e8be510f;
  border: 1px solid #e8be5140;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  margin-bottom: 1.25rem;
  font-size: .75rem;
  font-weight: 700;
}

.lp-concept-card h3 {
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1.15rem;
  font-weight: 600;
}

.lp-concept-card p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.6;
}

.lp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.lp-feature-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.lp-feature-card:hover {
  border-color: #e8be5133;
  transform: translateY(-2px);
  box-shadow: 0 0 30px #e8be510a;
}

.lp-feature-card h3 {
  color: #fff;
  margin-bottom: .6rem;
  font-size: 1rem;
  font-weight: 600;
}

.lp-feature-card p {
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.55;
}

.lp-steps-row {
  display: flex;
  justify-content: center;
  align-items:  flex-start;
  gap: 1.25rem;
}

.lp-step-card {
  text-align: center;
  flex: 1;
  max-width: 300px;
  padding: 2rem 1.5rem;
}

.lp-step-num {
  display: inline-flex;
  color: var(--primary);
  letter-spacing: .08em;
  background: #e8be510f;
  border: 1px solid #e8be5140;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 36px;
  height: 36px;
  margin-bottom: 1rem;
  font-size: .75rem;
  font-weight: 700;
}

.lp-step-card h3 {
  color: #fff;
  margin-bottom: .6rem;
  font-size: 1.1rem;
  font-weight: 600;
}

.lp-step-card p {
  color: var(--text-dim);
  font-size: .875rem;
  line-height: 1.5;
}

.lp-step-arrow {
  display: flex;
  color: var(--border-hover);
  align-items:  center;
  padding-top: 2.5rem;
}

.lp-cases-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.lp-case-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2rem;
  transition: border-color .3s, box-shadow .3s, transform .3s;
}

.lp-case-card:hover {
  border-color: #e8be5133;
  transform: translateY(-2px);
  box-shadow: 0 0 30px #e8be510a;
}

.lp-case-tag {
  display: inline-block;
  letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-dim);
  border-radius: 4px;
  margin-bottom: 1rem;
  padding: .2rem .6rem;
  font-size: .65rem;
  font-weight: 700;
}

.lp-case-card h3 {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.lp-case-card p {
  color: var(--text-dim);
  font-size: .875rem;
  line-height: 1.55;
}

.lp-roadmap-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 640px;
  margin: 0 auto;
}

.lp-roadmap-item {
  display: flex;
  border-bottom: 1px solid var(--border);
  gap: 1.5rem;
  padding: 1.5rem 0;
}

.lp-roadmap-item:last-child {
  border-bottom: none;
}

.lp-roadmap-dot {
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: .5rem;
  box-shadow: 0 0 8px #e8be5166;
}

.lp-roadmap-item h3 {
  color: #fff;
  margin-bottom: .3rem;
  font-size: 1rem;
  font-weight: 600;
}

.lp-roadmap-item p {
  color: var(--text-dim);
  font-size: .85rem;
  line-height: 1.5;
}

.lp-pricing-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  max-width: 780px;
  margin: 0 auto;
}

.lp-pricing-3col {
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 1000px;
}

.lp-plan {
  background: var(--bg);
  border: 1px solid var(--border);
  position: relative;
  border-radius: 14px;
  padding: 2.5rem 2rem;
  transition: border-color .3s, box-shadow .3s;
}

.lp-plan:hover {
  border-color: var(--border-hover);
}

.lp-plan-featured {
  background: linear-gradient(180deg, #e8be510f 0%, var(--bg) 40%);
  border-color: #e8be5166;
  box-shadow: 0 0 40px #e8be510f;
}

.lp-plan-featured:hover {
  border-color: #e8be5180;
  box-shadow: 0 0 50px #e8be511a;
}

.lp-plan-popular {
  position: absolute;
  letter-spacing: .1em;
  color: #000;
  background: var(--primary);
  border-radius: 20px;
  padding: .25rem 1rem;
  font-size: .65rem;
  font-weight: 700;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.lp-plan-badge {
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: .7rem;
  font-weight: 700;
}

.lp-plan-price {
  color: #fff;
  letter-spacing: -.04em;
  margin-bottom: .75rem;
  font-size: 2.75rem;
  font-weight: 800;
}

.lp-plan-price span {
  color: var(--text-dim);
  font-size: .85rem;
  font-weight: 400;
}

.lp-plan-desc {
  color: var(--text-dim);
  border-bottom: 1px solid var(--border);
  margin-bottom: 1.75rem;
  padding-bottom: 1.75rem;
  font-size: .85rem;
  line-height: 1.5;
}

.lp-plan-list {
  list-style: none;
  margin-bottom: 2rem;
}

.lp-plan-list li {
  color: var(--text-dim);
  position: relative;
  padding: .4rem 0 .4rem 1.4rem;
  font-size: .875rem;
}

.lp-plan-list li:before {
  content: "";
  position: absolute;
  background: var(--primary);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.lp-plan-btn {
  display: block;
  text-align: center;
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  padding: .7rem;
  transition: all .2s;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text) !important;
  text-decoration: none !important;
}

.lp-plan-btn:hover {
  border-color: #444;
  text-decoration: none !important;
}

.lp-plan-btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  color: #000 !important;
}

.lp-plan-btn-primary:hover {
  background: #f0cc6a;
  border-color: #f0cc6a;
}

.lp-token {
  background: radial-gradient(ellipse 50% 60% at 50% 40%, #e8be510a, transparent 70%), var(--surface);
  border-bottom: 1px solid #ffffff0a;
}

.lp-token-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.lp-token-desc {
  color: var(--text-dim);
  margin: 1.5rem 0 2rem;
  font-size: 1rem;
  line-height: 1.65;
}

.lp-token-ca {
  display: inline-flex;
  border: 1px solid var(--border);
  cursor: pointer;
  overflow: hidden;
  background: #ffffff0d;
  border-radius: 8px;
  align-items:  center;
  gap: .5rem;
  max-width: 100%;
  margin-bottom: 1.5rem;
  padding: .6rem 1rem;
  transition: background .2s;
}

.lp-token-ca:hover {
  background: #ffffff1a;
}

.lp-token-ca-label {
  color: var(--text-dim);
  white-space: nowrap;
  font-size: .8rem;
  font-weight: 600;
}

.lp-token-ca code {
  color: var(--accent);
  word-break: break-all;
  font-size: .8rem;
}

.lp-token-ca-copy {
  font-size: .9rem;
}

.lp-btn-token {
  display: inline-flex;
}

.lp-faq-list {
  max-width: 680px;
  margin: 0 auto;
}

.lp-faq-item {
  border-bottom: 1px solid var(--border);
}

.lp-faq-q {
  display: flex;
  color: #fff;
  font-family: var(--sans);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  padding: 1.25rem 0;
  transition: color .2s;
  font-size: 1rem;
  font-weight: 500;
}

.lp-faq-q:hover {
  color: var(--primary);
}

.lp-faq-icon {
  color: var(--text-dim);
  flex-shrink: 0;
  margin-left: 1rem;
  font-size: 1.25rem;
}

.lp-faq-a {
  color: var(--text-dim);
  padding-bottom: 1.25rem;
  font-size: .9rem;
  line-height: 1.65;
}

.lp-cta-section {
  text-align: center;
  position: relative;
  background: radial-gradient(60% 50%, #e8be510d, #0000 70%);
  border-bottom: 1px solid #ffffff0a;
  padding: 7rem 0;
}

.lp-cta-section p {
  color: var(--text-dim);
  margin: 1rem 0 2rem;
  font-size: 1.05rem;
}

.lp-footer {
  border-top: 1px solid #e8be5114;
  padding: 3.5rem 0 2rem;
}

.lp-footer-top {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  flex-start;
  padding-bottom: 2.5rem;
}

.lp-footer-brand p {
  color: var(--text-dim);
  margin-top: .5rem;
  font-size: .85rem;
}

.lp-footer-links {
  display: flex;
  gap: 4rem;
}

.lp-footer-col {
  display: flex;
  flex-direction: column;
  gap: .5rem;
}

.lp-footer-col h4 {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .25rem;
  font-size: .75rem;
  font-weight: 600;
}

.lp-footer-col a, .lp-footer-col button {
  font-size: .85rem;
  font-family: var(--sans);
  cursor: pointer;
  text-align: left;
  background: none;
  border: none;
  padding: 0;
  transition: color .2s;
  color: var(--text-dim) !important;
  text-decoration: none !important;
}

.lp-footer-col a:hover, .lp-footer-col button:hover {
  color: var(--text) !important;
}

.lp-footer-social {
  display: inline-flex;
  align-items:  center;
  gap: 6px;
}

.lp-footer-bottom {
  color: #555;
  padding-top: 1.5rem;
  font-size: .8rem;
}

@media (width <= 900px) {
  .lp-hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .lp-hero-h1 {
    font-size: 2.8rem;
  }

  .lp-hero-right {
    display: flex;
    justify-content: center;
  }

  .lp-hero-visual {
    max-width: 340px;
  }

  .lp-concept-grid {
    grid-template-columns: 1fr;
  }

  .lp-features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .lp-steps-row {
    flex-direction: column;
    align-items:  center;
  }

  .lp-step-arrow {
    padding-top: 0;
    transform: rotate(90deg);
  }

  .lp-pricing-row, .lp-pricing-3col {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .lp-h2 {
    font-size: 2rem;
  }
}

@media (width <= 640px) {
  .lp-container {
    padding: 0 1.25rem;
  }

  .lp-nav-center, .lp-nav-login {
    display: none;
  }

  .lp-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }

  .lp-hero-h1 {
    font-size: 2.2rem;
  }

  .lp-hero-sub {
    font-size: .95rem;
  }

  .lp-hero-actions {
    flex-direction: column;
  }

  .lp-hero-metrics {
    flex-direction: column;
    align-items:  flex-start;
    gap: .75rem;
  }

  .lp-metric-sep {
    display: none;
  }

  .lp-features-grid, .lp-cases-grid {
    grid-template-columns: 1fr;
  }

  .lp-section {
    padding: 4rem 0;
  }

  .lp-footer-top {
    flex-direction: column;
    gap: 2rem;
  }

  .lp-footer-links {
    gap: 2.5rem;
  }
}

.lp-nav-link-a {
  transition: color .2s;
  font-size: .875rem;
  color: var(--text-dim) !important;
  text-decoration: none !important;
}

.lp-nav-link-a:hover {
  color: var(--text) !important;
  text-decoration: none !important;
}

.lp-nav-twitter {
  display: inline-flex;
  align-items:  center;
}

.lp-nav-twitter svg {
  transition: color .2s;
}

.lp-hero-h1, .lp-hero-sub, .lp-hero-actions, .lp-metric, .lp-metric-sep, .lp-hero-visual, .lp-nav {
  visibility: visible;
}

.rm-hero {
  text-align: center;
  border-bottom: 1px solid #ffffff0a;
  padding-top: 10rem;
  padding-bottom: 5rem;
}

.rm-hero-title {
  font-family: var(--sans);
  letter-spacing: -.04em;
  color: #fff;
  margin: 1.25rem 0 1rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.15;
}

.rm-hero-sub {
  color: var(--text-dim);
  max-width: 520px;
  margin: 0 auto 1.25rem;
  font-size: 1.1rem;
  line-height: 1.6;
}

.rm-hero-date {
  display: inline-block;
  color: var(--text-dim);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .35rem .9rem;
  font-size: .75rem;
  font-weight: 500;
}

.rm-section {
  border-bottom: 1px solid #ffffff0a;
  padding: 4rem 0;
}

.rm-section-alt {
  background: var(--surface);
}

.rm-text-block {
  max-width: 720px;
  margin: 0 auto;
}

.rm-text-block h2 {
  font-family: var(--sans);
  color: #fff;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.rm-text-block h2 em {
  font-family: var(--serif);
  color: var(--text-dim);
  font-style: italic;
  font-weight: 400;
}

.rm-text-block p {
  color: var(--text-dim);
  font-size: .95rem;
  line-height: 1.7;
}

.rm-section-intro {
  margin-bottom: 2rem;
}

.rm-live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
  margin-top: 1.5rem;
}

.rm-live-item {
  display: flex;
  color: var(--text-dim);
  align-items:  flex-start;
  gap: .7rem;
  padding: .5rem 0;
  font-size: .875rem;
}

.rm-live-check {
  background: var(--primary);
  border-radius: 50%;
  flex-shrink: 0;
  width: 7px;
  height: 7px;
  margin-top: .4rem;
}

.rm-highlight {
  background: linear-gradient(180deg, #e8be5108 0%, var(--bg) 100%);
  border-top: 1px solid #e8be511a;
  border-bottom: 1px solid #ffffff0a;
  padding: 5rem 0;
}

.rm-highlight-inner {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.rm-highlight h2 {
  font-family: var(--sans);
  color: #fff;
  letter-spacing: -.03em;
  margin-bottom: 1.5rem;
  font-size: 2rem;
  font-weight: 700;
}

.rm-highlight h2 em {
  font-family: var(--serif);
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}

.rm-highlight p {
  color: var(--text-dim);
  text-align: left;
  font-size: .95rem;
  line-height: 1.75;
}

.rm-features-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.rm-feature-block {
  border-bottom: 1px solid var(--border);
  padding: 1.75rem 0;
}

.rm-feature-block:last-child {
  border-bottom: none;
}

.rm-feature-block h3 {
  color: #fff;
  margin-bottom: .6rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.rm-feature-block p {
  color: var(--text-dim);
  font-size: .9rem;
  line-height: 1.65;
}

.rm-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.rm-phase {
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
}

.rm-phase:last-child {
  border-bottom: none;
}

.rm-phase-header {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  margin-bottom: .75rem;
}

.rm-phase-left {
  display: flex;
  align-items:  center;
  gap: .75rem;
}

.rm-phase-status {
  letter-spacing: .1em;
  border-radius: 4px;
  padding: .2rem .6rem;
  font-size: .65rem;
  font-weight: 700;
}

.rm-status-live {
  color: #000;
  background: var(--primary);
}

.rm-status-upcoming {
  color: var(--warning);
  background: var(--warning-dim);
}

.rm-status-planned {
  color: var(--text-dim);
  background: #ffffff0f;
}

.rm-phase-label {
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: .8rem;
  font-weight: 600;
}

.rm-phase-date {
  color: var(--text-dim);
  font-size: .8rem;
}

.rm-phase-title {
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1.2rem;
  font-weight: 700;
}

.rm-phase-items {
  list-style: none;
}

.rm-phase-items li {
  color: var(--text-dim);
  position: relative;
  padding: .3rem 0 .3rem 1.25rem;
  font-size: .875rem;
}

.rm-phase-items li:before {
  content: "";
  position: absolute;
  background: var(--border-hover);
  border-radius: 50%;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.rm-not-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}

.rm-not-item {
  display: flex;
  color: var(--text-dim);
  align-items:  flex-start;
  gap: .75rem;
  font-size: .875rem;
  line-height: 1.55;
}

.rm-not-x {
  color: #555;
  flex-shrink: 0;
  margin-top: .2rem;
  font-size: .75rem;
}

@media (width <= 640px) {
  .rm-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
  }

  .rm-hero-title {
    font-size: 2.2rem;
  }

  .rm-live-grid {
    grid-template-columns: 1fr;
  }

  .rm-section {
    padding: 3rem 0;
  }

  .rm-highlight {
    padding: 3.5rem 0;
  }

  .rm-highlight h2 {
    font-size: 1.6rem;
  }
}

.ob {
  background: var(--bg);
  max-width: 1100px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.ob-stepper {
  display: flex;
  justify-content: center;
  align-items:  center;
  gap: 0;
  margin-bottom: 3rem;
}

.ob-step {
  display: flex;
  opacity: .3;
  align-items:  center;
  gap: .5rem;
}

.ob-step-active {
  opacity: 1;
}

.ob-step-num {
  border: 1.5px solid var(--border-hover);
  display: flex;
  color: var(--text-dim);
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 24px;
  height: 24px;
  font-size: .7rem;
  font-weight: 700;
}

.ob-step-active .ob-step-num {
  border-color: var(--primary);
  color: var(--primary);
}

.ob-step-label {
  letter-spacing: .08em;
  color: var(--text-dim);
  font-size: .7rem;
  font-weight: 600;
}

.ob-step-active .ob-step-label {
  color: var(--text);
}

.ob-step-line {
  background: var(--border-hover);
  width: 48px;
  height: 1px;
  margin: 0 .75rem;
}

.ob-plans-step {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.ob-plans-header h2 {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.8rem;
  font-weight: 700;
}

.ob-plans-header p {
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  font-size: .95rem;
}

.ob-plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.ob-plan-select {
  background: var(--surface);
  border: 2px solid var(--border);
  cursor: pointer;
  text-align: center;
  font-family: var(--sans);
  border-radius: 12px;
  padding: 1.5rem;
  transition: all .2s;
}

.ob-plan-select:hover {
  border-color: var(--border-hover);
}

.ob-plan-selected {
  border-color: var(--primary);
  background: #e8be510a;
}

.ob-plan-select-badge {
  letter-spacing: .1em;
  color: var(--primary);
  margin-bottom: .75rem;
  font-size: .6rem;
  font-weight: 700;
}

.ob-plan-select-name {
  color: #fff;
  margin-bottom: .25rem;
  font-size: 1.25rem;
  font-weight: 700;
}

.ob-plan-select-price {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  font-weight: 800;
}

.ob-plan-select-price span {
  color: var(--text-dim);
  font-size: .8rem;
  font-weight: 400;
}

.ob-plan-select-spec {
  color: var(--text-dim);
  font-size: .75rem;
}

.ob-continue-btn {
  display: inline-flex;
  background: var(--primary);
  color: #000;
  font-size: .95rem;
  font-weight: 600;
  font-family: var(--sans);
  cursor: pointer;
  border: none;
  border-radius: 8px;
  align-items:  center;
  gap: .5rem;
  padding: .8rem 2rem;
  transition: all .2s;
}

.ob-continue-btn:hover {
  background: #f0cc6a;
  transform: translateY(-1px);
}

.ob-main {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items:  start;
  gap: 3rem;
}

.ob-left {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 2rem;
}

.ob-plan-badge-wrap {
  margin-bottom: 1.25rem;
}

.ob-plan-badge {
  letter-spacing: .1em;
  color: var(--primary);
  background: var(--primary-dim);
  border-radius: 4px;
  padding: .25rem .7rem;
  font-size: .6rem;
  font-weight: 700;
}

.ob-plan-header {
  display: flex;
  border-bottom: 1px solid var(--border);
  justify-content: space-between;
  align-items:  flex-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
}

.ob-plan-label {
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: .25rem;
  font-size: .65rem;
  font-weight: 600;
}

.ob-plan-name {
  color: #fff;
  font-size: 1.75rem;
  font-weight: 700;
}

.ob-plan-price-big {
  color: #fff;
  text-align: right;
  font-size: 2rem;
  font-weight: 800;
}

.ob-plan-price-big span {
  color: var(--text-dim);
  font-size: .8rem;
  font-weight: 400;
}

.ob-plan-meters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.5rem;
}

.ob-meter {
  background: var(--surface-2);
  border: 1px solid var(--border);
  text-align: center;
  border-radius: 8px;
  padding: .75rem;
}

.ob-meter-icon {
  color: var(--text-dim);
  display: flex;
  justify-content: center;
  margin-bottom: .4rem;
}

.ob-meter-val {
  color: var(--text);
  font-size: .8rem;
  font-weight: 600;
}

.ob-plan-features {
  list-style: none;
  margin-bottom: 1.75rem;
}

.ob-plan-features li {
  color: var(--text-dim);
  display: flex;
  align-items:  center;
  gap: .6rem;
  padding: .4rem 0;
  font-size: .85rem;
}

.ob-check {
  color: var(--primary);
  flex-shrink: 0;
  font-size: .8rem;
  font-weight: 700;
}

.ob-switch-plan {
  border-top: 1px solid var(--border);
  margin-bottom: 1.25rem;
  padding-top: 1.25rem;
}

.ob-switch-label {
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: .6rem;
  font-size: .65rem;
  font-weight: 600;
}

.ob-switch-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .5rem;
}

.ob-switch-btn {
  background: var(--surface-2);
  border: 1.5px solid var(--border);
  text-align: center;
  cursor: pointer;
  font-family: var(--sans);
  display: flex;
  border-radius: 8px;
  flex-direction: column;
  gap: .15rem;
  padding: .6rem;
  transition: all .15s;
}

.ob-switch-btn:hover {
  border-color: var(--border-hover);
}

.ob-switch-active {
  border-color: var(--primary);
  background: #e8be510a;
}

.ob-switch-btn span:first-child {
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
}

.ob-switch-price {
  color: var(--text-dim);
  font-size: .7rem;
}

.ob-best-fit {
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

.ob-best-fit-label {
  letter-spacing: .1em;
  color: var(--text-dim);
  margin-bottom: .4rem;
  font-size: .65rem;
  font-weight: 600;
}

.ob-best-fit p {
  color: var(--text-dim);
  font-size: .82rem;
  line-height: 1.55;
}

.ob-right {
  padding-top: .5rem;
}

.ob-right h2 {
  color: #fff;
  margin-bottom: .75rem;
  font-size: 1.6rem;
  font-weight: 700;
}

.ob-right-sub {
  color: var(--text-dim);
  margin-bottom: 2rem;
  font-size: .88rem;
  line-height: 1.55;
}

.ob-form-group {
  margin-bottom: 1rem;
}

.ob-form-group label {
  display: block;
  letter-spacing: .08em;
  color: var(--text-dim);
  margin-bottom: .4rem;
  font-size: .65rem;
  font-weight: 600;
}

.ob-form-group input {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: .9rem;
  font-family: var(--sans);
  outline: none;
  border-radius: 8px;
  width: 100%;
  padding: .7rem .85rem;
  transition: border-color .15s;
}

.ob-form-group input:focus {
  border-color: var(--primary);
}

.ob-form-group input::placeholder {
  color: #555;
}

.ob-submit-btn {
  display: flex;
  background: var(--primary);
  color: #000;
  font-size: .85rem;
  font-weight: 700;
  font-family: var(--sans);
  letter-spacing: .05em;
  cursor: pointer;
  border: none;
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  gap: .5rem;
  width: 100%;
  margin-top: .5rem;
  padding: .75rem;
  transition: all .2s;
}

.ob-submit-btn:hover:not(:disabled) {
  background: #f0cc6a;
}

.ob-submit-btn:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.ob-signin-link {
  text-align: center;
  color: var(--text-dim);
  margin-top: 1.25rem;
  font-size: .85rem;
}

.ob-signin-link a {
  font-weight: 500;
  color: var(--primary) !important;
}

@media (width <= 768px) {
  .ob {
    padding: 1.5rem 1rem 3rem;
  }

  .ob-stepper {
    margin-bottom: 2rem;
  }

  .ob-step-label {
    display: none;
  }

  .ob-step-line {
    width: 32px;
  }

  .ob-plans-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto 2rem;
  }

  .ob-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ob-plan-meters {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ob-topbar {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  padding: 16px 40px;
}
