:root {
  --bg: #081013;
  --bg-2: #0c171a;
  --surface: #111b1f;
  --surface-2: #172327;
  --surface-3: #eaf4f1;
  --line: rgba(183, 221, 213, 0.16);
  --line-strong: rgba(115, 255, 214, 0.32);
  --text: #f2faf7;
  --text-soft: #a8bbb7;
  --text-muted: #728784;
  --ink: #10201f;
  --teal: #36e6b6;
  --teal-2: #14a882;
  --cyan: #62d8ff;
  --gold: #f2c84b;
  --green: #83e36e;
  --red: #ff6d71;
  --shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  --radius: 8px;
  --sidebar: 232px;
  --right: 340px;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: var(--bg);
}

body {
  margin: 0;
  color: var(--text);
  overflow-x: hidden;
  background:
    linear-gradient(145deg, rgba(54, 230, 182, 0.05), transparent 34%),
    linear-gradient(180deg, #091114 0%, #10191b 48%, #071114 100%);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.app-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: var(--sidebar) minmax(0, 1fr);
}

.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(6, 14, 17, 0.96), rgba(9, 16, 19, 0.9)),
    repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 44px
    );
  display: flex;
  flex-direction: column;
  gap: 20px;
  z-index: 4;
}

.brand {
  display: flex;
  gap: 14px;
  align-items: center;
  min-height: 60px;
}

.brand-mark {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(242, 200, 75, 0.72);
  border-radius: 999px;
  background: #071013;
  box-shadow:
    0 0 0 3px rgba(54, 230, 182, 0.12),
    0 14px 30px rgba(0, 0, 0, 0.36),
    0 0 28px rgba(54, 230, 182, 0.16);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.arbor-logo-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
  filter: drop-shadow(0 0 14px rgba(54, 230, 182, 0.22));
}

.brand-copy strong {
  display: block;
  letter-spacing: 0.18em;
  font-size: 17px;
  line-height: 1.1;
}

.brand-copy span {
  display: block;
  margin-top: 4px;
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.3em;
}

.nav {
  display: grid;
  gap: 12px;
}

.nav-group {
  display: grid;
  gap: 6px;
}

.nav-label {
  padding: 0 4px;
  color: var(--text-muted);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-group-items {
  display: grid;
  gap: 6px;
}

.nav-button {
  width: 100%;
  min-height: 42px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-soft);
  border-radius: var(--radius);
  padding: 0 12px;
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    color 160ms ease;
}

.nav-button:hover,
.nav-button.active {
  background: rgba(54, 230, 182, 0.11);
  border-color: rgba(54, 230, 182, 0.28);
  color: var(--teal);
}

.icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.sidebar-card {
  margin-top: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.sidebar-card .label {
  color: var(--text-muted);
  font-size: 12px;
}

.sidebar-card strong {
  display: block;
  margin: 4px 0 12px;
  font-size: 16px;
}

.sidebar-card button {
  width: 100%;
}

.main {
  min-width: 0;
  padding: 18px 22px 28px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.tagline {
  color: var(--text-soft);
  font-size: 14px;
  font-style: italic;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.network-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  font-size: 13px;
}

.sidebar-role {
  border: 1px solid rgba(54, 230, 182, 0.18);
  border-radius: var(--radius);
  padding: 10px 12px;
  background: rgba(54, 230, 182, 0.05);
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.4;
}

.network-pill.warn {
  border-color: rgba(242, 200, 75, 0.38);
  color: #ffe185;
  background: rgba(242, 200, 75, 0.09);
}

.network-pill.action {
  cursor: pointer;
  font: inherit;
}

.network-pill.action:hover,
.network-pill.action:focus-visible {
  border-color: rgba(242, 200, 75, 0.7);
  background: rgba(242, 200, 75, 0.16);
  outline: none;
}

.network-pill.warn .dot {
  background: var(--gold);
  box-shadow: 0 0 14px rgba(242, 200, 75, 0.7);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 14px rgba(131, 227, 110, 0.7);
}

.layout {
  display: grid;
  grid-template-columns: minmax(680px, 1fr) var(--right);
  gap: 18px;
  align-items: start;
}

.workspace {
  min-width: 0;
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.header-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.05;
  letter-spacing: 0;
}

h2 {
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

h3 {
  font-size: 15px;
  line-height: 1.25;
}

.muted {
  color: var(--text-soft);
}

.micro {
  color: var(--text-muted);
  font-size: 11px;
  line-height: 1.35;
}

.button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease,
    color 160ms ease;
}

.button:hover {
  border-color: var(--line-strong);
  background: rgba(54, 230, 182, 0.1);
}

.button:disabled,
.quick-grid button:disabled,
.amount-input input:disabled,
.asset-select:disabled {
  cursor: not-allowed;
  opacity: 0.58;
}

.button:active {
  transform: translateY(1px);
}

.button.full-width {
  width: 100%;
  margin-top: 14px;
}

.button.primary {
  border-color: rgba(54, 230, 182, 0.45);
  background: linear-gradient(135deg, #2dd3a7, #178d72);
  color: #f7fffc;
  box-shadow: 0 12px 28px rgba(20, 168, 130, 0.24);
}

.button.wallet-disconnect {
  border-color: rgba(255, 120, 120, 0.42);
  background: rgba(255, 120, 120, 0.08);
  color: #ffd9d9;
}

.button.wallet-disconnect:hover {
  border-color: rgba(255, 150, 150, 0.7);
  background: rgba(255, 120, 120, 0.14);
}

.button.gold {
  border-color: rgba(242, 200, 75, 0.45);
  background: rgba(242, 200, 75, 0.11);
  color: #ffe185;
}

.button.ghost {
  background: transparent;
}

.button.icon-only {
  width: 38px;
  padding: 0;
}

.next-step-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  border: 1px solid rgba(54, 230, 182, 0.32);
  border-radius: var(--radius);
  padding: 16px 18px;
  background:
    linear-gradient(135deg, rgba(54, 230, 182, 0.12), rgba(242, 200, 75, 0.05)),
    rgba(14, 31, 32, 0.88);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.18);
}

.next-step-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.next-step-kicker {
  color: var(--teal);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.next-step-card h3 {
  font-size: 18px;
  line-height: 1.25;
}

.next-step-card p {
  max-width: 840px;
  color: var(--text-soft);
  line-height: 1.45;
}

.next-step-note {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.next-step-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  min-width: 260px;
}

.next-step-actions .button {
  min-height: 42px;
}

.tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.tab {
  border: 1px solid transparent;
  border-radius: var(--radius);
  min-height: 34px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}

.tab.active {
  color: var(--teal);
  background: rgba(54, 230, 182, 0.1);
  border-color: rgba(54, 230, 182, 0.22);
}

.count {
  min-width: 22px;
  height: 22px;
  display: inline-grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
}

.grid {
  display: grid;
  grid-template-columns: minmax(292px, 0.9fr) minmax(360px, 1.45fr);
  gap: 10px;
}

.panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--surface);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.panel.pad {
  padding: 16px;
}

.table-head,
.launch-row {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(92px, 0.8fr) minmax(88px, 0.8fr);
  gap: 12px;
  align-items: center;
}

.table-head {
  min-height: 40px;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  color: var(--text-muted);
  font-size: 12px;
}

.launch-list {
  max-height: 782px;
  overflow: auto;
}

.launch-row {
  width: calc(100% - 10px);
  margin: 5px;
  min-height: 76px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: transparent;
  color: var(--text);
  padding: 9px;
  text-align: left;
  cursor: pointer;
}

.launch-row:hover,
.launch-row.selected {
  border-color: var(--line-strong);
  background: rgba(54, 230, 182, 0.09);
}

.project-cell {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.token-logo {
  width: 42px;
  height: 42px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  background: #071013;
  color: var(--logo-color, var(--teal));
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}

.token-logo::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 2px solid currentColor;
  transform: rotate(45deg);
  opacity: 0.85;
}

.token-logo.has-image::before,
.project-mark-hero.has-image::before,
.project-mark-hero.has-image::after {
  display: none;
}

.token-logo span {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 12px;
}

.token-logo img,
.project-mark-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-mark-hero {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  border: 1px solid currentColor;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 34% 22%, rgba(255, 255, 255, 0.18), transparent 24%),
    #071013;
  color: var(--logo-color, var(--teal));
  font-weight: 900;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
  box-shadow:
    0 0 0 3px rgba(255, 255, 255, 0.04),
    0 18px 44px rgba(0, 0, 0, 0.26);
}

.project-mark-hero::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 3px solid currentColor;
  border-radius: 8px;
  transform: rotate(45deg);
  opacity: 0.85;
}

.project-mark-hero::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid currentColor;
  border-radius: 999px;
  opacity: 0.45;
}

.project-mark-hero span {
  position: relative;
  z-index: 1;
  color: currentColor;
  font-size: 20px;
}

.project-name {
  min-width: 0;
}

.project-name strong {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}

.project-name span {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  border-radius: 5px;
  padding: 0 6px;
  border: 1px solid currentColor;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.status.live {
  color: var(--teal);
  background: rgba(54, 230, 182, 0.1);
}

.status.draft {
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.06);
}

.status.pending-review {
  color: var(--gold);
  background: rgba(242, 200, 75, 0.12);
}

.status.approved {
  color: var(--green);
  background: rgba(131, 227, 110, 0.12);
}

.status.upcoming {
  color: var(--gold);
  background: rgba(242, 200, 75, 0.12);
}

.status.finalized {
  color: #b9c7c4;
  background: rgba(255, 255, 255, 0.08);
}

.status.refunding {
  color: var(--red);
  background: rgba(255, 109, 113, 0.1);
}

.status.ready,
.status.watch,
.status.claimable,
.status.refundable {
  color: var(--teal);
  background: rgba(54, 230, 182, 0.1);
}

.status.watch {
  color: var(--gold);
  background: rgba(242, 200, 75, 0.12);
}

.status.refundable {
  color: var(--gold);
  background: rgba(242, 200, 75, 0.12);
}

.money strong,
.progress-cell strong {
  display: block;
  font-size: 13px;
}

.money span,
.progress-cell span {
  display: block;
  margin-top: 4px;
  color: var(--text-muted);
  font-size: 11px;
}

.progress-track {
  position: relative;
  height: 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  width: var(--value);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--teal), var(--green));
}

.detail {
  display: grid;
  gap: 10px;
}

.hero-panel {
  padding: 18px;
}

.hero-top {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
}

.hero-logo {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(242, 200, 75, 0.5);
  background: #071013;
  box-shadow:
    0 0 0 3px rgba(130, 227, 110, 0.08),
    0 18px 44px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.hero-logo .arbor-logo-image {
  width: 100%;
  height: 100%;
}

.hero-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-title h2 {
  font-size: clamp(24px, 3vw, 32px);
}

.hero-summary {
  margin-top: 8px;
  color: var(--text-soft);
  line-height: 1.45;
  font-size: 14px;
  max-width: 640px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.chip {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 5px 8px;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.04);
  font-size: 11px;
  font-weight: 700;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.metric span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
}

.metric strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.proof-item {
  min-height: 54px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-right: 1px solid var(--line);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-icon {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  color: var(--teal);
}

.proof-icon.warn {
  color: var(--gold);
}

.proof-text {
  font-size: 12px;
  font-weight: 800;
}

.launch-summary {
  display: grid;
  gap: 12px;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.summary-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.summary-card span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
}

.summary-card strong {
  display: block;
  margin-top: 5px;
  font-size: 13px;
}

.summary-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.subgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.panel-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.big-progress {
  margin: 12px 0 14px;
}

.big-progress .progress-track {
  height: 12px;
}

.outcome-track {
  overflow: visible;
}

.soft-cap-marker {
  position: absolute;
  left: var(--soft-cap);
  top: -5px;
  width: 2px;
  height: 22px;
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 3px rgba(242, 200, 75, 0.14);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.outcome-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.outcome-card span {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
}

.outcome-card strong {
  display: block;
  margin-top: 4px;
  font-size: 13px;
}

.outcome-card p {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.45;
}

.timeline {
  display: grid;
  gap: 10px;
}

.timeline-bar {
  height: 13px;
  display: grid;
  grid-template-columns: var(--segments);
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.timeline-bar span:nth-child(odd) {
  background: var(--teal);
}

.timeline-bar span:nth-child(even) {
  background: var(--cyan);
}

.timeline-bar.gold span:nth-child(odd) {
  background: var(--gold);
}

.timeline-bar.gold span:nth-child(even) {
  background: #ffe895;
}

.timeline-labels {
  display: grid;
  grid-template-columns: repeat(var(--count), minmax(0, 1fr));
  gap: 8px;
}

.timeline-label strong {
  display: block;
  font-size: 12px;
}

.risk-list {
  display: grid;
  gap: 10px;
}

.risk-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #ffe185;
  font-size: 12px;
  line-height: 1.35;
}

.risk-item svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}

.social-kit {
  display: grid;
  gap: 14px;
}

.social-overview {
  display: grid;
  grid-template-columns: minmax(140px, 0.45fr) minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.social-meter {
  border: 1px solid rgba(54, 230, 182, 0.28);
  border-radius: var(--radius);
  padding: 14px;
  background:
    radial-gradient(circle at 18% 14%, rgba(54, 230, 182, 0.14), transparent 30%),
    rgba(255, 255, 255, 0.035);
}

.social-meter span,
.social-meter small,
.social-empty span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.social-meter strong {
  display: block;
  margin: 8px 0 4px;
  color: var(--teal);
  font-size: 28px;
}

.social-meta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.025);
}

.share-channels,
.share-actions,
.social-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.channel-pill {
  border: 1px solid rgba(166, 122, 255, 0.34);
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--text-soft);
  background: rgba(166, 122, 255, 0.1);
  font-size: 12px;
  font-weight: 800;
}

.share-posts {
  display: grid;
  gap: 10px;
}

.share-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.share-card-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
}

.share-card p {
  margin: 9px 0 12px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.5;
}

.social-empty {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
}

.social-empty strong {
  display: block;
  margin-bottom: 5px;
}

.side-stack {
  display: grid;
  gap: 10px;
  position: sticky;
  top: 18px;
}

.input-wrap {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.action-note {
  margin-bottom: 12px;
  line-height: 1.45;
}

.field-label {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--text-soft);
  font-size: 12px;
}

.amount-input {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  background: rgba(5, 12, 14, 0.72);
  overflow: hidden;
}

.amount-input input {
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  padding: 0 12px;
  font-size: 16px;
}

.asset-select {
  border: 0;
  border-left: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0 10px;
  min-width: 110px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.quick-grid button {
  min-height: 30px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
}

.quick-grid button:hover {
  border-color: var(--line-strong);
  color: var(--teal);
}

.swap-control {
  width: 30px;
  height: 30px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-soft);
}

.swap-control .icon {
  width: 15px;
  height: 15px;
}

.limits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.success-note {
  display: none;
  margin-top: 12px;
  border: 1px solid rgba(54, 230, 182, 0.3);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(54, 230, 182, 0.08);
  color: var(--teal);
  font-size: 12px;
  line-height: 1.35;
}

.success-note.show {
  display: block;
}

.success-note.warn {
  border-color: rgba(242, 200, 75, 0.36);
  background: rgba(242, 200, 75, 0.08);
  color: var(--yellow);
}

.success-note a {
  color: inherit;
  font-weight: 800;
}

.assist-note {
  margin-top: 12px;
  border: 1px solid rgba(242, 200, 75, 0.28);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(242, 200, 75, 0.08);
}

.assist-note strong,
.assist-note span {
  display: block;
  font-size: 12px;
  line-height: 1.4;
}

.assist-note span {
  margin-top: 4px;
  color: var(--text-soft);
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-group {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: start;
  padding-bottom: 13px;
  border-bottom: 1px solid var(--line);
}

.proof-group:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.proof-group h3 {
  margin-bottom: 8px;
}

.proof-row {
  display: grid;
  grid-template-columns: minmax(98px, 0.8fr) minmax(0, 1fr);
  gap: 10px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

.verified {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
}

.mini-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.sparkline {
  width: 100%;
  height: 96px;
  margin-top: 14px;
}

.sparkline path.line {
  fill: none;
  stroke: var(--teal);
  stroke-width: 3;
}

.sparkline path.fill {
  fill: rgba(54, 230, 182, 0.12);
}

.flow-panel {
  margin-top: 10px;
}

.flow {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.flow-step {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 82px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.03);
}

.flow-step strong {
  display: block;
  font-size: 12px;
  margin-bottom: 6px;
}

.page-stack {
  display: grid;
  gap: 14px;
}

.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.kpi span,
.kpi small {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
}

.kpi strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 23px;
  line-height: 1.05;
}

.data-table {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow-x: auto;
  overflow-y: hidden;
}

.data-head,
.data-row {
  display: grid;
  grid-template-columns: var(--cols);
  gap: 12px;
  align-items: center;
}

.data-head {
  min-height: 40px;
  padding: 0 12px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.data-row {
  min-height: 54px;
  padding: 10px 12px;
  border-top: 1px solid var(--line);
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.data-row strong {
  color: var(--text);
}

.data-row .button {
  min-height: 32px;
  width: fit-content;
}

.split-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.split-layout.wide-left {
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
}

.proof-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 10px;
}

.callout {
  display: grid;
  gap: 14px;
  align-content: start;
}

.callout p {
  line-height: 1.5;
}

.warning-panel {
  border-color: rgba(242, 200, 75, 0.34);
  background:
    linear-gradient(180deg, rgba(242, 200, 75, 0.1), rgba(255, 255, 255, 0.025)),
    var(--surface);
}

.address-link {
  color: var(--teal);
  text-decoration: none;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  overflow-wrap: anywhere;
}

.address-link:hover {
  text-decoration: underline;
}

.drawer {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 12;
}

.drawer.open {
  display: block;
}

.drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(620px, 100%);
  height: 100%;
  background: #10191c;
  border-left: 1px solid var(--line);
  box-shadow: -24px 0 70px rgba(0, 0, 0, 0.42);
  padding: 20px;
  overflow: auto;
}

.drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 18px;
}

.wizard-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
  margin-bottom: 18px;
}

.wizard-step {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  cursor: pointer;
  font-size: 12px;
}

.wizard-step.active {
  color: var(--teal);
  border-color: rgba(54, 230, 182, 0.4);
  background: rgba(54, 230, 182, 0.1);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wizard-help {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--text-soft);
  font-size: 12px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(5, 12, 14, 0.72);
  color: var(--text);
  padding: 0 12px;
  outline: 0;
}

.form-field input[readonly] {
  background: rgba(255, 255, 255, 0.035);
  color: var(--text-soft);
  cursor: default;
}

.form-field select {
  cursor: pointer;
}

.form-field input[type="file"] {
  width: 100%;
  padding: 8px;
}

.form-field input[type="file"]::file-selector-button {
  border: 1px solid rgba(54, 230, 182, 0.28);
  border-radius: var(--radius-sm);
  background: rgba(54, 230, 182, 0.12);
  color: var(--text);
  padding: 8px 11px;
  margin-right: 12px;
  cursor: pointer;
}

.form-field textarea {
  min-height: 96px;
  resize: vertical;
  padding-top: 10px;
}

.contract-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
}

.contract-input-row .button {
  min-height: 42px;
  white-space: nowrap;
}

.inline-status {
  display: grid;
  gap: 4px;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: rgba(255, 255, 255, 0.035);
  font-size: 12px;
  line-height: 1.35;
}

.inline-status span {
  color: var(--text-soft);
}

.inline-status strong {
  color: var(--text);
  overflow-wrap: anywhere;
}

.logo-upload-row {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
}

.token-logo-preview {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(54, 230, 182, 0.28);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(54, 230, 182, 0.2), rgba(166, 122, 255, 0.18));
  color: var(--text);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0;
  overflow: hidden;
}

.token-logo-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.file-field-stack {
  display: grid;
  gap: 6px;
}

.file-picker-control {
  display: grid;
  grid-template-columns: minmax(180px, max-content) minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.file-picker-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(54, 230, 182, 0.45);
  background: rgba(54, 230, 182, 0.08);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.native-logo-input {
  width: 100%;
  max-width: 260px;
  min-height: 40px;
  color: var(--text-soft);
  border: 1px solid rgba(54, 230, 182, 0.24);
  background: rgba(2, 13, 14, 0.78);
  cursor: pointer;
  font: inherit;
}

.native-logo-input::file-selector-button {
  min-height: 40px;
  margin: 0 12px 0 0;
  padding: 0 14px;
  border: 0;
  border-right: 1px solid rgba(54, 230, 182, 0.45);
  background: rgba(54, 230, 182, 0.12);
  color: var(--text);
  font-weight: 800;
  cursor: pointer;
}

.file-picker-name {
  min-width: 0;
  color: var(--text-soft);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-picker-name.selected {
  color: var(--text);
  font-weight: 800;
}

.form-error-line {
  color: var(--yellow);
  font-size: 12px;
  line-height: 1.4;
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
  color: var(--text-soft);
  font-size: 13px;
}

.review-row strong {
  text-align: right;
}

.testnet-writer {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  border: 1px solid rgba(54, 230, 182, 0.24);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(54, 230, 182, 0.055);
}

.form-error {
  display: grid;
  gap: 6px;
  border: 1px solid rgba(242, 200, 75, 0.34);
  border-radius: var(--radius);
  padding: 10px;
  color: #ffe185;
  background: rgba(242, 200, 75, 0.08);
  font-size: 12px;
  line-height: 1.4;
}

.missing-checklist,
.ready-checklist {
  display: grid;
  gap: 8px;
  border: 1px solid rgba(242, 200, 75, 0.34);
  border-radius: var(--radius);
  padding: 10px;
  background: rgba(242, 200, 75, 0.08);
}

.ready-checklist {
  border-color: rgba(54, 230, 182, 0.3);
  background: rgba(54, 230, 182, 0.08);
}

.missing-head,
.ready-checklist strong,
.ready-checklist span {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #ffe185;
  font-size: 12px;
  line-height: 1.4;
}

.ready-checklist strong {
  color: var(--green);
}

.ready-checklist span {
  justify-content: flex-start;
  color: var(--text-soft);
}

.setup-guide {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(54, 230, 182, 0.32);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(54, 230, 182, 0.08);
}

.setup-guide-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.setup-guide-head div {
  display: grid;
  gap: 4px;
}

.setup-guide-head strong {
  color: var(--green);
  font-size: 13px;
}

.setup-guide-head span:not(.status) {
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.4;
}

.setup-step-list {
  display: grid;
  gap: 7px;
}

.setup-step {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: rgba(5, 12, 14, 0.42);
}

.setup-step.next {
  border-color: rgba(54, 230, 182, 0.56);
  background: rgba(54, 230, 182, 0.1);
}

.setup-step.done {
  border-color: rgba(131, 227, 110, 0.36);
}

.setup-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
}

.setup-step.next .setup-step-number {
  background: rgba(54, 230, 182, 0.18);
  color: var(--teal);
}

.setup-step.done .setup-step-number {
  background: rgba(131, 227, 110, 0.16);
  color: var(--green);
}

.setup-step strong,
.setup-step small {
  display: block;
}

.setup-step strong {
  color: var(--text);
  font-size: 12px;
}

.setup-step small {
  margin-top: 3px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.setup-step em {
  color: var(--text-muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.setup-step.next em,
.setup-step.done em {
  color: var(--teal);
}

.setup-guide-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.setup-guide-actions .button {
  min-width: 180px;
}

.missing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(242, 200, 75, 0.24);
  border-radius: var(--radius);
  padding: 9px 10px;
  background: rgba(5, 12, 14, 0.46);
  color: var(--text);
  text-align: left;
  cursor: pointer;
}

.missing-item:hover,
.missing-item:focus-visible {
  border-color: rgba(242, 200, 75, 0.58);
  outline: none;
}

.missing-item strong,
.missing-item small {
  display: block;
}

.missing-item strong {
  font-size: 12px;
}

.missing-item small {
  margin-top: 4px;
  color: var(--text-soft);
  font-size: 12px;
  line-height: 1.35;
}

.missing-jump {
  color: var(--gold);
  font-size: 12px;
  font-weight: 900;
}

.tx-status {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  color: var(--text-soft);
  background: rgba(5, 12, 14, 0.42);
  font-size: 12px;
  line-height: 1.4;
}

.tx-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.tx-actions .button:first-child,
.tx-actions .button:last-child {
  grid-column: 1 / -1;
}

.tx-footnote {
  font-size: 12px;
  line-height: 1.45;
}

.finalization-box {
  margin-top: 14px;
  border: 1px solid rgba(54, 230, 182, 0.26);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(54, 230, 182, 0.055);
}

.compact-form-grid {
  margin-top: 12px;
}

.finalization-actions {
  margin-top: 12px;
}

.address-code {
  max-width: min(100%, 420px);
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.drawer-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 18px;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: min(360px, calc(100vw - 36px));
  border: 1px solid rgba(54, 230, 182, 0.32);
  border-radius: var(--radius);
  background: #10211f;
  color: var(--text);
  padding: 12px 14px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
  font-size: 13px;
}

.toast.show {
  display: block;
}

@media (max-width: 1220px) {
  .layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .next-step-card {
    align-items: stretch;
    flex-direction: column;
  }

  .next-step-actions {
    justify-content: flex-start;
    min-width: 0;
  }

  .side-stack {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .launch-list {
    max-height: none;
  }
}

@media (max-width: 980px) {
  .app-shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    height: auto;
    padding: 12px;
  }

  .nav {
    gap: 8px;
  }

  .nav-group {
    gap: 5px;
  }

  .nav-group-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .nav-button {
    justify-content: center;
    min-height: 46px;
    padding: 0 8px;
  }

  .nav-button span:last-child {
    display: none;
  }

  .sidebar-card {
    display: none;
  }

  .sidebar-role {
    display: none;
  }

  .grid,
  .subgrid,
  .side-stack {
    grid-template-columns: 1fr;
  }

  .topbar {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .topbar-actions {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .section-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .data-head,
  .data-row {
    min-width: 680px;
  }

  .wizard-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metrics,
  .proof-strip,
  .summary-grid,
  .flow,
  .kpi-grid,
  .split-layout,
  .split-layout.wide-left {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .main {
    padding: 12px;
  }

  .topbar,
  .section-header,
  .hero-top {
    align-items: stretch;
    flex-direction: column;
    display: flex;
  }

  .topbar-actions,
  .tabs {
    width: 100%;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-pill {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .topbar-actions .button {
    width: 100%;
    min-height: 44px;
  }

  .tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tab {
    justify-content: center;
    min-height: 42px;
  }

  .nav {
    gap: 5px;
  }

  .nav-group-items {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .nav-button {
    min-height: 44px;
    padding: 0;
  }

  .brand {
    justify-content: center;
  }

  .table-head {
    display: none;
  }

  .launch-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 12px;
  }

  .metrics,
  .proof-strip,
  .stat-row,
  .outcome-grid,
  .summary-grid,
  .social-overview,
  .flow,
  .kpi-grid,
  .split-layout,
  .split-layout.wide-left,
  .form-grid,
  .wizard-help,
  .wizard-steps,
  .contract-input-row,
  .setup-guide-head,
  .tx-actions {
    grid-template-columns: 1fr;
  }

  .setup-guide-head {
    display: grid;
  }

  .setup-step {
    grid-template-columns: 28px minmax(0, 1fr);
  }

  .setup-step em {
    grid-column: 2;
    justify-self: start;
  }

  .setup-guide-actions .button {
    width: 100%;
  }

  .metrics {
    gap: 10px;
  }

  .proof-item {
    min-height: 48px;
  }

  .wizard-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .data-head {
    display: none;
  }

  .data-row {
    min-width: 0;
    grid-template-columns: 1fr !important;
    gap: 7px;
  }

  .data-row .button {
    width: 100%;
  }

  .drawer-panel {
    width: 100%;
    height: 100dvh;
    padding: 16px;
    border-left: 0;
  }

  .drawer-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    align-items: start;
  }

  .drawer-actions,
  .social-actions,
  .share-actions,
  .header-actions {
    width: 100%;
  }

  .drawer-actions .button,
  .social-actions .button,
  .share-actions .button,
  .header-actions .button,
  .next-step-actions .button {
    flex: 1 1 100%;
  }

  .review-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .review-row strong {
    text-align: left;
  }

  .timeline-labels {
    display: flex;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .timeline-label {
    min-width: 86px;
  }

  .proof-group {
    grid-template-columns: 22px minmax(0, 1fr);
  }

  .verified {
    grid-column: 2;
    width: fit-content;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
  }

  .project-mark-hero {
    width: 72px;
    height: 72px;
  }

  .project-mark-hero::before {
    inset: 15px;
  }

  .project-mark-hero::after {
    inset: 25px;
  }

  .project-mark-hero span {
    font-size: 17px;
  }
}

@media (max-width: 380px) {
  .main {
    padding: 10px;
  }

  .topbar-actions,
  .tabs,
  .wizard-steps,
  .logo-upload-row {
    grid-template-columns: 1fr;
  }

  .nav {
    grid-template-columns: 1fr;
  }

  .nav-group-items {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .amount-input {
    grid-template-columns: 1fr;
  }

  .asset-select {
    min-height: 40px;
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .button {
    white-space: normal;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
