:root {
  --bg: #0b0d10;
  --panel: #14181d;
  --panel-2: #1a1f26;
  --panel-3: #10151b;
  --text: #f3f7fb;
  --text-dim: #95a3b3;
  --border: #26303b;
  --green: #2cd67b;
  --yellow: #f5c451;
  --red: #ff6b6b;
  --blue: #6ea8fe;
  --purple: #b794f4;
  --mono: "SFMono-Regular", Consolas, monospace;
  --sans: Inter, ui-sans-serif, system-ui, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: radial-gradient(circle at top, #131922 0%, var(--bg) 45%); color: var(--text); font-family: var(--sans); }
a { color: inherit; }
body { min-height: 100vh; }
button, input { font: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, [role="link"]:focus-visible { outline: 2px solid rgba(245,196,81,0.9); outline-offset: 2px; }
.app { max-width: 1180px; margin: 0 auto; padding: 24px; }
.env-banner { display:flex; justify-content:space-between; align-items:center; gap:16px; padding:12px 14px; margin-bottom:16px; background: rgba(20,24,29,0.88); border:1px solid var(--border); border-radius:12px; color: var(--text-dim); font-family: var(--mono); font-size:12px; backdrop-filter: blur(8px); }
.env-banner strong { color: var(--yellow); }
.env-banner a { color: var(--blue); text-decoration:none; }
.env-actions { display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.header { display:flex; justify-content:space-between; align-items:center; gap:16px; margin-bottom:32px; border-bottom:1px solid rgba(38,48,59,0.8); padding-bottom:18px; }
.logo { text-decoration:none; font-size:32px; font-weight:900; letter-spacing:-0.05em; background:none; border:none; padding:0; color:var(--text); cursor:pointer; }
.logo span { color: var(--yellow); }
.nav { display:flex; gap:12px; align-items:center; flex-wrap:wrap; }
.nav a, .nav .nav-link { text-decoration:none; color: var(--text-dim); font-family: var(--mono); font-size:14px; background:none; border:none; padding:0; cursor:pointer; }
.nav a.active, .nav a:hover, .nav .nav-link.active, .nav .nav-link:hover { color: var(--text); }
.wallet-btn, .btn { min-height: 42px; border:1px solid var(--border); background: var(--panel); color: var(--text); padding: 10px 14px; border-radius: 12px; cursor:pointer; font-family: var(--mono); text-decoration:none; display:inline-flex; align-items:center; justify-content:center; transition: transform 140ms ease, border-color 140ms ease, opacity 140ms ease; }
.wallet-btn:hover, .btn:hover { transform: translateY(-1px); }
.wallet-btn:disabled, .btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.wallet-btn.connected { border-color: var(--green); color: var(--green); }
.btn-primary { background: var(--yellow); color: #111; border-color: var(--yellow); font-weight:700; }
.btn-secondary { background: var(--panel-2); }
.btn-danger { background: rgba(255,107,107,0.12); color: var(--red); border-color: rgba(255,107,107,0.35); }
.loading { color: var(--text-dim); font-family: var(--mono); padding: 48px 0; }
.card { background: linear-gradient(180deg, rgba(20,24,29,0.96), rgba(16,21,27,0.96)); border:1px solid var(--border); border-radius: 18px; padding: 22px; box-shadow: 0 14px 44px rgba(0,0,0,0.18); }
.card + .card { margin-top: 16px; }
.card-header { display:flex; justify-content:space-between; align-items:flex-start; gap:16px; margin-bottom:16px; }
.card-title { font-family: var(--mono); font-size: 12px; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.08em; }
.status, .status-badge-large { font-family: var(--mono); font-size: 12px; padding: 6px 9px; border-radius: 999px; border:1px solid var(--border); }
.status-badge-large { font-size: 14px; padding: 10px 14px; }
.status.created, .status-badge-large.created { color: var(--yellow); }
.status.funded, .status-badge-large.funded { color: var(--blue); }
.status.completed, .status-badge-large.completed { color: var(--green); }
.status.refunded, .status.expired, .status-badge-large.refunded, .status-badge-large.expired { color: var(--red); }
.deal-grid { display:grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap:16px; }
.landing-grid { margin-top: 18px; }
.preview-card { min-height: 220px; }
.nav-card { cursor: pointer; }
.deal-detail { max-width: 1120px; }
.deal-row { display:grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap:16px; margin-top:14px; }
.compact-row { margin-top: 10px; }
.deal-field { display:flex; flex-direction:column; gap:6px; min-width: 0; }
.deal-label, .label, .form-label, .eyebrow { color: var(--text-dim); font-family: var(--mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.08em; }
.deal-value, .meta-value { font-size: 15px; }
.deal-value.amount, .stat-value { font-size: 34px; font-weight: 900; letter-spacing: -0.04em; }
.deal-value.amount span { font-size: 16px; color: var(--text-dim); }
.address, .pda-address { font-family: var(--mono); cursor: pointer; word-break: break-all; }
.large-address { font-size: 13px; line-height: 1.65; }
.pda-display { background: var(--panel-2); border:1px dashed var(--border); border-radius: 14px; padding: 16px; margin: 16px 0; }
.compact-panel { margin-bottom: 0; }
.hint, .form-hint, .lead { color: var(--text-dim); }
.lead { font-size: 16px; line-height: 1.65; }
.btn-group { display:flex; flex-wrap:wrap; gap:12px; margin-top: 20px; }
.form-group { margin-bottom: 16px; }
.form-input { width:100%; background:#0e1217; color:var(--text); border:1px solid var(--border); border-radius:12px; padding:12px 14px; font-size:15px; }
.inline-error { color: var(--red); font-family: var(--mono); font-size: 13px; margin-bottom: 12px; }
.inline-success { color: var(--green); font-family: var(--mono); font-size: 13px; margin-bottom: 12px; display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.inline-success-link { color: var(--blue); text-decoration:none; }
.countdown { margin: 16px 0; padding: 12px 14px; border-radius: 12px; font-family: var(--mono); background: rgba(110,168,254,0.1); color: var(--blue); }
.countdown.expired { background: rgba(255,107,107,0.12); color: var(--red); }
.deal-timeline { display:flex; gap:18px; margin: 16px 0 24px; flex-wrap:wrap; }
.deal-timeline.wide { justify-content: space-between; }
.timeline-step { display:flex; align-items:center; gap:8px; }
.timeline-dot { width:28px; height:28px; border-radius:999px; display:inline-flex; align-items:center; justify-content:center; border:1px solid var(--border); color: var(--text-dim); font-family: var(--mono); }
.timeline-dot.done { background: rgba(44,214,123,0.15); color: var(--green); border-color: rgba(44,214,123,0.35); }
.timeline-dot.active { background: rgba(110,168,254,0.15); color: var(--blue); border-color: rgba(110,168,254,0.35); }
.timeline-dot.failed { background: rgba(255,107,107,0.15); color: var(--red); border-color: rgba(255,107,107,0.35); }
.timeline-label { color: var(--text-dim); font-family: var(--mono); font-size: 12px; }
.proof-link { color: var(--blue); text-decoration:none; font-family: var(--mono); }
.page-intro { margin-bottom: 24px; }
.page-intro h1, .landing-copy h1, .status-hero h1, .hero-copy h1 { margin: 8px 0 12px; font-size: clamp(34px, 5vw, 62px); line-height: 1.02; letter-spacing: -0.05em; }
.page-intro h1 { font-size: clamp(30px, 4vw, 48px); }
.landing-page { display:flex; flex-direction:column; gap:24px; }
.landing-hero { display:grid; grid-template-columns: 1.2fr 0.8fr; gap:20px; align-items:stretch; }
.landing-copy, .hero-copy { padding: 8px 0; }
.hero-actions, .hero-points, .role-tags, .section-actions { display:flex; flex-wrap:wrap; gap:12px; }
.hero-actions { margin-top: 22px; }
.section-actions { align-items:center; margin-top: 14px; }
.refresh-badge { color: var(--blue); font-family: var(--mono); font-size: 12px; }
.inline-banner { margin-top: 12px; }
.hero-points { margin-top: 18px; color: var(--text-dim); font-family: var(--mono); font-size: 12px; }
.hero-points > div, .tag { padding: 8px 10px; background: rgba(255,255,255,0.03); border:1px solid var(--border); border-radius:999px; }
.tag.active { color: var(--yellow); border-color: rgba(245,196,81,0.4); }
.hero-panel { display:flex; flex-direction:column; justify-content:center; }
.hero-metric-grid { display:grid; gap:12px; margin-top: 16px; }
.metric-card { padding: 14px; background: rgba(255,255,255,0.02); border:1px solid rgba(38,48,59,0.8); border-radius: 14px; }
.metric-card span { display:inline-flex; width:24px; height:24px; border-radius:999px; align-items:center; justify-content:center; background: rgba(245,196,81,0.16); color: var(--yellow); font-family: var(--mono); margin-bottom: 8px; }
.metric-card strong { display:block; margin-bottom: 6px; }
.metric-card p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.5; }
.stats-grid, .meta-grid, .how-grid, .role-grid, .create-grid, .detail-layout { display:grid; gap:16px; }
.stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.meta-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 18px 0; }
.how-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.role-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.create-grid { grid-template-columns: 1.4fr 0.8fr; }
.detail-layout { grid-template-columns: 1.15fr 0.85fr; align-items:start; margin-top: 16px; }
.stat-card, .role-card, .guidance-card, .action-panel, .timeline-panel { min-height: 100%; }
.stat-card .hint, .role-card .hint { margin-top: 8px; }
.feature-list, .step-list { margin: 12px 0 0; padding-left: 18px; color: var(--text-dim); line-height: 1.7; }
.section-header { display:flex; align-items:end; justify-content:space-between; gap:16px; margin-top: 6px; }
.section-header h2 { margin: 8px 0 0; font-size: clamp(28px, 4vw, 42px); line-height: 1.08; letter-spacing: -0.04em; }
.status-hero { display:flex; justify-content:space-between; gap:16px; align-items:end; }
.status-hero-main { max-width: 720px; }
.status-hero-side { display:flex; flex-direction:column; align-items:flex-end; gap:10px; }
.action-copy { margin: 10px 0 0; line-height: 1.6; }
.empty-state { text-align:center; padding: 56px 24px; }
.progress-shell { margin-top: 14px; height: 12px; width: 100%; border-radius: 999px; background: rgba(255,255,255,0.06); overflow: hidden; border:1px solid var(--border); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--yellow), #ffe38b); transition: width 180ms ease; }
.qr-code { width: 184px; max-width: 100%; border-radius: 16px; background: white; padding: 10px; margin-top: 16px; }
.landing-shell, .hero-shell, .hero-card-shell, .deal-shell, .status-hero-shell { min-height: 0; }
.hero-shell { display:grid; grid-template-columns: 1.2fr 0.8fr; gap:20px; align-items:stretch; }
.hero-copy { background: linear-gradient(180deg, rgba(20,24,29,0.96), rgba(16,21,27,0.96)); border:1px solid var(--border); border-radius:18px; padding:24px; box-shadow: 0 14px 44px rgba(0,0,0,0.18); }
.hero-card-shell, .status-hero-shell { background: linear-gradient(180deg, rgba(20,24,29,0.96), rgba(16,21,27,0.96)); border:1px solid var(--border); border-radius:18px; padding:24px; box-shadow: 0 14px 44px rgba(0,0,0,0.18); }
.status-hero-shell { display:flex; justify-content:space-between; align-items:flex-end; gap:16px; }
.success-panel { border-color: rgba(44,214,123,0.25); }
@media (max-width: 980px) {
  .landing-hero, .create-grid, .detail-layout, .stats-grid, .meta-grid, .how-grid, .role-grid, .hero-shell { grid-template-columns: 1fr; }
  .section-header, .status-hero, .status-hero-shell { flex-direction: column; align-items:flex-start; }
  .status-hero-side { align-items:flex-start; }
}
@media (max-width: 720px) {
  .env-banner { flex-direction: column; align-items: flex-start; }
  .header { flex-direction: column; align-items: flex-start; }
  .deal-row { grid-template-columns: 1fr; }
  .app { padding: 18px; }
  .page-intro h1, .landing-copy h1, .status-hero h1, .hero-copy h1 { font-size: 34px; }
}

/*# sourceMappingURL=style.css.map */
/*# sourceMappingURL=globals-122e6700.css.map */