@loafmarkets/ui 0.1.169 → 0.1.170

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -8695,41 +8695,38 @@ function PropertyOverview({
8695
8695
  ) }),
8696
8696
  /* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
8697
8697
  /* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "Asset Details" }),
8698
- /* @__PURE__ */ jsxRuntime.jsxs(AssetPanelsGrid, { children: [
8699
- /* @__PURE__ */ jsxRuntime.jsxs(MetricsPanel, { children: [
8700
- /* @__PURE__ */ jsxRuntime.jsx(MetricsPanelTitle, { children: "Key Metrics" }),
8701
- (landSize != null || buildingSize != null) && /* @__PURE__ */ jsxRuntime.jsxs(LandFloorCard, { children: [
8702
- /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { flex: 1 }, children: [
8703
- /* @__PURE__ */ jsxRuntime.jsx(MetricLabel, { children: "Land" }),
8704
- /* @__PURE__ */ jsxRuntime.jsxs(MetricValueRow, { children: [
8705
- /* @__PURE__ */ jsxRuntime.jsx(MetricBig, { children: landSize?.toLocaleString() ?? "\u2014" }),
8706
- /* @__PURE__ */ jsxRuntime.jsx(MetricUnit, { children: "sqm" })
8707
- ] })
8708
- ] }),
8709
- /* @__PURE__ */ jsxRuntime.jsx("div", { style: { width: 1, background: "rgba(212,175,55,0.3)" } }),
8710
- /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { flex: 1 }, children: [
8711
- /* @__PURE__ */ jsxRuntime.jsx(MetricLabel, { children: "Floor" }),
8712
- /* @__PURE__ */ jsxRuntime.jsxs(MetricValueRow, { children: [
8713
- /* @__PURE__ */ jsxRuntime.jsx(MetricBig, { children: buildingSize?.toLocaleString() ?? "\u2014" }),
8714
- /* @__PURE__ */ jsxRuntime.jsx(MetricUnit, { children: "sqm" })
8715
- ] })
8698
+ /* @__PURE__ */ jsxRuntime.jsxs(StatsGrid, { children: [
8699
+ /* @__PURE__ */ jsxRuntime.jsxs(StatsColumn, { children: [
8700
+ /* @__PURE__ */ jsxRuntime.jsx(StatsColumnHeader, { children: "Key Metrics" }),
8701
+ landSize != null && /* @__PURE__ */ jsxRuntime.jsxs(StatRow, { children: [
8702
+ /* @__PURE__ */ jsxRuntime.jsx(StatLabel, { children: "Land Size" }),
8703
+ /* @__PURE__ */ jsxRuntime.jsxs(StatValue, { children: [
8704
+ landSize.toLocaleString(),
8705
+ " sqm"
8706
+ ] })
8707
+ ] }),
8708
+ buildingSize != null && /* @__PURE__ */ jsxRuntime.jsxs(StatRow, { children: [
8709
+ /* @__PURE__ */ jsxRuntime.jsx(StatLabel, { children: "Floor Area" }),
8710
+ /* @__PURE__ */ jsxRuntime.jsxs(StatValue, { children: [
8711
+ buildingSize.toLocaleString(),
8712
+ " sqm"
8716
8713
  ] })
8717
8714
  ] }),
8718
- /* @__PURE__ */ jsxRuntime.jsx(FeaturesGrid, { children: features.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
8719
- item.icon && /* @__PURE__ */ jsxRuntime.jsx("span", { style: { color: "rgba(255,255,255,0.6)", display: "flex", alignItems: "center", opacity: 0.45, flexShrink: 0 }, children: item.icon }),
8720
- item.value && /* @__PURE__ */ jsxRuntime.jsx("span", { style: { fontSize: "1.1rem", fontWeight: 700, color: "#fff", lineHeight: 1 }, children: item.value }),
8721
- /* @__PURE__ */ jsxRuntime.jsx("span", { style: { fontSize: "0.85rem", color: "rgba(255,255,255,0.6)", fontWeight: 400 }, children: item.label })
8715
+ /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureRow, { children: features.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(AssetFeatureItem, { children: [
8716
+ item.icon && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureIcon, { children: item.icon }),
8717
+ item.value && /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureValue, { children: item.value }),
8718
+ /* @__PURE__ */ jsxRuntime.jsx(AssetFeatureLabel, { children: item.label })
8722
8719
  ] }, i)) })
8723
8720
  ] }),
8724
- /* @__PURE__ */ jsxRuntime.jsxs(InfoPanel, { children: [
8725
- /* @__PURE__ */ jsxRuntime.jsx(MetricsPanelTitle, { children: "Property Info" }),
8726
- /* @__PURE__ */ jsxRuntime.jsx("div", { style: { display: "flex", flexDirection: "column", gap: "0.85rem" }, children: propertyInfo.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { display: "flex", justifyContent: "space-between", alignItems: "center" }, children: [
8727
- /* @__PURE__ */ jsxRuntime.jsx("span", { style: { fontSize: "0.8rem", color: "rgba(255,255,255,0.6)", fontWeight: 400 }, children: item.label }),
8728
- /* @__PURE__ */ jsxRuntime.jsxs("span", { style: { fontSize: "0.95rem", fontWeight: 600, color: item.status === "active" ? "#4CAF50" : item.status === "progress" ? "#D4AF37" : "#fff", display: "flex", alignItems: "center", gap: "0.4rem" }, children: [
8729
- item.status && /* @__PURE__ */ jsxRuntime.jsx("span", { style: { display: "inline-block", width: 6, height: 6, borderRadius: "50%", background: item.status === "active" ? "#4CAF50" : "#D4AF37", boxShadow: item.status === "active" ? "0 0 6px rgba(76,175,80,0.5)" : "0 0 6px rgba(212,175,55,0.5)" } }),
8721
+ /* @__PURE__ */ jsxRuntime.jsxs(StatsColumn, { children: [
8722
+ /* @__PURE__ */ jsxRuntime.jsx(StatsColumnHeader, { children: "Property Info" }),
8723
+ propertyInfo.map((item, i) => /* @__PURE__ */ jsxRuntime.jsxs(StatRow, { children: [
8724
+ /* @__PURE__ */ jsxRuntime.jsx(StatLabel, { children: item.label }),
8725
+ /* @__PURE__ */ jsxRuntime.jsxs(StatValue, { style: { color: item.status === "active" ? "#4ade80" : item.status === "progress" ? "#D4AF37" : void 0 }, children: [
8726
+ item.status && /* @__PURE__ */ jsxRuntime.jsx("span", { style: { display: "inline-block", width: 6, height: 6, borderRadius: "50%", background: item.status === "active" ? "#4ade80" : "#D4AF37", marginRight: 6 } }),
8730
8727
  item.value
8731
8728
  ] })
8732
- ] }, i)) })
8729
+ ] }, i))
8733
8730
  ] })
8734
8731
  ] })
8735
8732
  ] }),
@@ -8761,46 +8758,71 @@ function PropertyOverview({
8761
8758
  ] }),
8762
8759
  /* @__PURE__ */ jsxRuntime.jsxs(Section, { children: [
8763
8760
  /* @__PURE__ */ jsxRuntime.jsx(SectionHeader, { children: "Tokenholder Security" }),
8764
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityTable, { children: [
8765
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { children: [
8766
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
8767
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Legal Structuring" }),
8768
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: "22px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
8769
- ] }),
8770
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLinks, { children: [
8771
- /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Legal Opinion" }),
8772
- /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Structuring Memo" })
8773
- ] }) })
8761
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardsGrid, { children: [
8762
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCard, { children: [
8763
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8764
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12l2 2 4-4" }),
8765
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 3l8 4.5v5c0 5-3.5 8.5-8 10.5-4.5-2-8-5.5-8-10.5v-5l8-4.5z" })
8766
+ ] }) }),
8767
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardContent, { children: [
8768
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardTitle, { children: "Legal Structuring" }),
8769
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardProvider, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/Baker_McKenzie.png", alt: "Baker McKenzie", style: { height: 16, filter: "brightness(0) invert(1)", opacity: 0.7 } }) }),
8770
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardLinks, { children: [
8771
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Legal Opinion" }),
8772
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Structuring Memo" })
8773
+ ] })
8774
+ ] })
8774
8775
  ] }),
8775
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { children: [
8776
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
8777
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Security Interest in Asset" }),
8778
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowValue, { children: [
8776
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCard, { children: [
8777
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8778
+ /* @__PURE__ */ jsxRuntime.jsx("rect", { x: "3", y: "11", width: "18", height: "11", rx: "2" }),
8779
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M7 11V7a5 5 0 0 1 10 0v4" })
8780
+ ] }) }),
8781
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardContent, { children: [
8782
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardTitle, { children: "Security Interest in Asset" }),
8783
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardStatus, { children: [
8779
8784
  /* @__PURE__ */ jsxRuntime.jsx(SecurityStatusDot, {}),
8780
8785
  "Secured \u2014 NSW Land Registry"
8786
+ ] }),
8787
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardLinks, { children: [
8788
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Mortgage Agreement" }),
8789
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Registry Filing" })
8781
8790
  ] })
8782
- ] }),
8783
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLinks, { children: [
8784
- /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Mortgage Agreement" }),
8785
- /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Registry Filing" })
8786
- ] }) })
8791
+ ] })
8787
8792
  ] }),
8788
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { children: [
8789
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
8790
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Bankruptcy Remote" }),
8791
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowValue, { children: [
8793
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCard, { children: [
8794
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8795
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 21h18" }),
8796
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M5 21V7l8-4v18" }),
8797
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M19 21V11l-6-4" }),
8798
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 9v.01" }),
8799
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 12v.01" }),
8800
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 15v.01" }),
8801
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M9 18v.01" })
8802
+ ] }) }),
8803
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardContent, { children: [
8804
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardTitle, { children: "Bankruptcy Remote" }),
8805
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardStatus, { children: [
8792
8806
  /* @__PURE__ */ jsxRuntime.jsx(SecurityStatusDot, {}),
8793
8807
  "Active \u2014 Dedicated SPV"
8794
- ] })
8795
- ] }),
8796
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) }) })
8808
+ ] }),
8809
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "SPV Constitution" }) })
8810
+ ] })
8797
8811
  ] }),
8798
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRow, { $noBorder: true, children: [
8799
- /* @__PURE__ */ jsxRuntime.jsxs(SecurityRowLeft, { children: [
8800
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLabel, { children: "Independent Valuation" }),
8801
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLogo, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/savills.png", alt: "Savills", style: { height: "18px", filter: "brightness(0) invert(1)", opacity: 0.8 } }) })
8802
- ] }),
8803
- /* @__PURE__ */ jsxRuntime.jsx(SecurityRowRight, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityRowLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) }) })
8812
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCard, { children: [
8813
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardIcon, { children: /* @__PURE__ */ jsxRuntime.jsxs("svg", { width: "20", height: "20", viewBox: "0 0 24 24", fill: "none", stroke: "currentColor", strokeWidth: "1.5", strokeLinecap: "round", strokeLinejoin: "round", children: [
8814
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M16 3h5v5" }),
8815
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M8 3H3v5" }),
8816
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22l-4-4 4-4" }),
8817
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M12 22l4-4-4-4" }),
8818
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M21 3l-9 9" }),
8819
+ /* @__PURE__ */ jsxRuntime.jsx("path", { d: "M3 3l9 9" })
8820
+ ] }) }),
8821
+ /* @__PURE__ */ jsxRuntime.jsxs(SecurityCardContent, { children: [
8822
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardTitle, { children: "Independent Valuation" }),
8823
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardProvider, { children: /* @__PURE__ */ jsxRuntime.jsx("img", { src: "/savills.png", alt: "Savills", style: { height: 14, filter: "brightness(0) invert(1)", opacity: 0.7 } }) }),
8824
+ /* @__PURE__ */ jsxRuntime.jsx(SecurityCardLinks, { children: /* @__PURE__ */ jsxRuntime.jsx(SecurityDocLink, { href: "#documents", children: "Valuation Report" }) })
8825
+ ] })
8804
8826
  ] })
8805
8827
  ] })
8806
8828
  ] })
@@ -9132,68 +9154,35 @@ var StatValue = styled9__default.default.span`
9132
9154
  color: ${(p) => p.$gold ? "#D4AF37" : "#fff"};
9133
9155
  font-variant-numeric: tabular-nums;
9134
9156
  `;
9135
- var AssetPanelsGrid = styled9__default.default.div`
9136
- display: grid;
9137
- grid-template-columns: 1fr 1fr;
9138
- gap: 1rem;
9139
- @media (max-width: 768px) { grid-template-columns: 1fr; }
9140
- `;
9141
- var MetricsPanel = styled9__default.default.div`
9142
- background: rgba(255,255,255,0.025);
9143
- border-radius: 10px;
9144
- border: 1px solid rgba(255,255,255,0.06);
9145
- padding: 1.25rem 1.5rem;
9146
- overflow: hidden;
9147
- `;
9148
- var InfoPanel = styled9__default.default(MetricsPanel)``;
9149
- var MetricsPanelTitle = styled9__default.default.div`
9150
- font-size: 0.65rem;
9151
- color: #D4AF37;
9152
- text-transform: uppercase;
9153
- letter-spacing: 0.12em;
9154
- font-weight: 600;
9155
- margin-bottom: 1rem;
9156
- padding-bottom: 0.75rem;
9157
- border-bottom: 1px solid rgba(255,255,255,0.06);
9158
- `;
9159
- var LandFloorCard = styled9__default.default.div`
9160
- background: linear-gradient(135deg, rgba(212,175,55,0.12), rgba(184,134,11,0.06));
9161
- border-radius: 10px;
9162
- padding: 0.85rem 1rem;
9163
- border: 1px solid rgba(212,175,55,0.25);
9157
+ var AssetFeatureRow = styled9__default.default.div`
9164
9158
  display: flex;
9165
- gap: 1rem;
9166
- margin-bottom: 0.75rem;
9159
+ flex-wrap: wrap;
9160
+ gap: 0.5rem 1.25rem;
9161
+ padding-top: 0.75rem;
9162
+ margin-top: 0.25rem;
9163
+ border-top: 1px solid rgba(255,255,255,0.04);
9167
9164
  `;
9168
- var MetricLabel = styled9__default.default.div`
9169
- font-size: 0.65rem;
9170
- color: #D4AF37;
9171
- text-transform: uppercase;
9172
- letter-spacing: 0.1em;
9173
- margin-bottom: 0.4rem;
9174
- font-weight: 500;
9165
+ var AssetFeatureItem = styled9__default.default.div`
9166
+ display: flex;
9167
+ align-items: center;
9168
+ gap: 0.35rem;
9175
9169
  `;
9176
- var MetricValueRow = styled9__default.default.div`
9170
+ var AssetFeatureIcon = styled9__default.default.span`
9171
+ color: rgba(255,255,255,0.35);
9177
9172
  display: flex;
9178
- align-items: baseline;
9179
- gap: 0.25rem;
9173
+ align-items: center;
9174
+ flex-shrink: 0;
9180
9175
  `;
9181
- var MetricBig = styled9__default.default.span`
9182
- font-size: 1.5rem;
9183
- font-weight: 700;
9184
- color: #D4AF37;
9176
+ var AssetFeatureValue = styled9__default.default.span`
9177
+ font-size: 0.95rem;
9178
+ font-weight: 600;
9179
+ color: #fff;
9185
9180
  line-height: 1;
9186
9181
  `;
9187
- var MetricUnit = styled9__default.default.span`
9188
- font-size: 0.7rem;
9189
- color: rgba(212,175,55,0.7);
9190
- font-weight: 500;
9191
- `;
9192
- var FeaturesGrid = styled9__default.default.div`
9193
- display: grid;
9194
- grid-template-columns: repeat(3, 1fr);
9195
- gap: 0.75rem;
9196
- @media (max-width: 768px) { grid-template-columns: repeat(2, 1fr); }
9182
+ var AssetFeatureLabel = styled9__default.default.span`
9183
+ font-size: 0.8rem;
9184
+ color: rgba(255,255,255,0.5);
9185
+ font-weight: 400;
9197
9186
  `;
9198
9187
  var TradingHoursCard = styled9__default.default.div`
9199
9188
  background: rgba(255,255,255,0.025);
@@ -9228,40 +9217,56 @@ var TradingHoursNote = styled9__default.default.div`
9228
9217
  color: rgba(255,255,255,0.35);
9229
9218
  border-top: 1px solid rgba(255,255,255,0.04);
9230
9219
  `;
9231
- var SecurityTable = styled9__default.default.div`
9220
+ var SecurityCardsGrid = styled9__default.default.div`
9221
+ display: grid;
9222
+ grid-template-columns: 1fr 1fr;
9223
+ gap: 0.75rem;
9224
+ @media (max-width: 768px) { grid-template-columns: 1fr; }
9225
+ `;
9226
+ var SecurityCard = styled9__default.default.div`
9227
+ background: rgba(255,255,255,0.025);
9228
+ border: 1px solid rgba(255,255,255,0.06);
9229
+ border-radius: 10px;
9230
+ padding: 1.25rem;
9232
9231
  display: flex;
9233
- flex-direction: column;
9232
+ gap: 1rem;
9233
+ transition: border-color 0.2s ease;
9234
+ &:hover { border-color: rgba(255,255,255,0.12); }
9234
9235
  `;
9235
- var SecurityRow = styled9__default.default.div`
9236
+ var SecurityCardIcon = styled9__default.default.div`
9237
+ width: 40px;
9238
+ height: 40px;
9239
+ border-radius: 10px;
9240
+ background: rgba(74,222,128,0.08);
9241
+ border: 1px solid rgba(74,222,128,0.15);
9236
9242
  display: flex;
9237
9243
  align-items: center;
9238
- justify-content: space-between;
9239
- padding: 1rem 0;
9240
- border-bottom: ${({ $noBorder }) => $noBorder ? "none" : "1px solid rgba(255,255,255,0.06)"};
9241
- gap: 1rem;
9242
- @media (max-width: 640px) { flex-direction: column; align-items: flex-start; }
9244
+ justify-content: center;
9245
+ flex-shrink: 0;
9246
+ color: #4ade80;
9243
9247
  `;
9244
- var SecurityRowLeft = styled9__default.default.div`
9248
+ var SecurityCardContent = styled9__default.default.div`
9245
9249
  display: flex;
9246
9250
  flex-direction: column;
9247
9251
  gap: 4px;
9252
+ min-width: 0;
9248
9253
  `;
9249
- var SecurityRowLabel = styled9__default.default.div`
9250
- font-size: 0.88rem;
9254
+ var SecurityCardTitle = styled9__default.default.div`
9255
+ font-size: 0.85rem;
9251
9256
  font-weight: 600;
9252
9257
  color: #fff;
9253
9258
  `;
9254
- var SecurityRowValue = styled9__default.default.div`
9259
+ var SecurityCardStatus = styled9__default.default.div`
9255
9260
  display: flex;
9256
9261
  align-items: center;
9257
9262
  gap: 6px;
9258
- font-size: 0.78rem;
9263
+ font-size: 0.75rem;
9259
9264
  color: rgba(255,255,255,0.5);
9260
9265
  `;
9261
- var SecurityRowLogo = styled9__default.default.div`
9266
+ var SecurityCardProvider = styled9__default.default.div`
9262
9267
  display: flex;
9263
9268
  align-items: center;
9264
- margin-top: 2px;
9269
+ margin-top: 1px;
9265
9270
  `;
9266
9271
  var SecurityStatusDot = styled9__default.default.span`
9267
9272
  width: 6px;
@@ -9271,21 +9276,17 @@ var SecurityStatusDot = styled9__default.default.span`
9271
9276
  display: inline-block;
9272
9277
  flex-shrink: 0;
9273
9278
  `;
9274
- var SecurityRowRight = styled9__default.default.div`
9275
- display: flex;
9276
- align-items: center;
9277
- flex-shrink: 0;
9278
- `;
9279
- var SecurityRowLinks = styled9__default.default.div`
9279
+ var SecurityCardLinks = styled9__default.default.div`
9280
9280
  display: flex;
9281
- gap: 1.25rem;
9281
+ gap: 0.75rem;
9282
+ margin-top: 4px;
9282
9283
  `;
9283
9284
  var SecurityDocLink = styled9__default.default.a`
9284
- font-size: 0.78rem;
9285
- color: rgba(255,255,255,0.45);
9285
+ font-size: 0.72rem;
9286
+ color: rgba(255,255,255,0.4);
9286
9287
  text-decoration: underline;
9287
9288
  text-underline-offset: 3px;
9288
- text-decoration-color: rgba(255,255,255,0.2);
9289
+ text-decoration-color: rgba(255,255,255,0.15);
9289
9290
  cursor: pointer;
9290
9291
  transition: color 0.15s, text-decoration-color 0.15s;
9291
9292
  &:hover {
@@ -10558,7 +10559,7 @@ function AssetSelectorBar({
10558
10559
  i > 0 && /* @__PURE__ */ jsxRuntime.jsx(Separator, { children: "|" }),
10559
10560
  /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { display: "flex", alignItems: "center", gap: "0.5rem" }, children: [
10560
10561
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
10561
- /* @__PURE__ */ jsxRuntime.jsx(MetricLabel2, { children: m.label }),
10562
+ /* @__PURE__ */ jsxRuntime.jsx(MetricLabel, { children: m.label }),
10562
10563
  /* @__PURE__ */ jsxRuntime.jsx(MetricValue, { $accent: !!m.accent, $secondary: !!m.secondary, children: m.value })
10563
10564
  ] }),
10564
10565
  m.change != null && /* @__PURE__ */ jsxRuntime.jsxs(MetricChange, { $positive: m.change >= 0, children: [
@@ -10698,7 +10699,7 @@ var SelectorMetrics = styled9__default.default.div`
10698
10699
  gap: 0.5rem;
10699
10700
  }
10700
10701
  `;
10701
- var MetricLabel2 = styled9__default.default.span`
10702
+ var MetricLabel = styled9__default.default.span`
10702
10703
  font-size: 0.75rem;
10703
10704
  color: var(--color-text-secondary);
10704
10705
  text-transform: uppercase;
@@ -11007,14 +11008,14 @@ function OfferingProgressCard({
11007
11008
  ] }) : /* @__PURE__ */ jsxRuntime.jsx(PreLiveStatus, { $statusColor: statusColor, children: "Sale Not Yet Open" }),
11008
11009
  /* @__PURE__ */ jsxRuntime.jsxs(MetricsRow, { children: [
11009
11010
  /* @__PURE__ */ jsxRuntime.jsxs("div", { children: [
11010
- /* @__PURE__ */ jsxRuntime.jsx(MetricLabel3, { children: isPrivateClient ? "Token Price (Pre-Offering)" : "Token Price" }),
11011
+ /* @__PURE__ */ jsxRuntime.jsx(MetricLabel2, { children: isPrivateClient ? "Token Price (Pre-Offering)" : "Token Price" }),
11011
11012
  /* @__PURE__ */ jsxRuntime.jsxs(MetricValue2, { $accent: true, children: [
11012
11013
  "$",
11013
11014
  tokenPrice.toLocaleString(void 0, { minimumFractionDigits: 2, maximumFractionDigits: 2 })
11014
11015
  ] })
11015
11016
  ] }),
11016
11017
  /* @__PURE__ */ jsxRuntime.jsxs("div", { style: { textAlign: "right" }, children: [
11017
- /* @__PURE__ */ jsxRuntime.jsx(MetricLabel3, { children: isPrivateClient ? "Offering Valuation (Pre-Offering)" : "Offering Valuation" }),
11018
+ /* @__PURE__ */ jsxRuntime.jsx(MetricLabel2, { children: isPrivateClient ? "Offering Valuation (Pre-Offering)" : "Offering Valuation" }),
11018
11019
  /* @__PURE__ */ jsxRuntime.jsxs(MetricValue2, { children: [
11019
11020
  "$",
11020
11021
  offeringValuation.toLocaleString()
@@ -11139,7 +11140,7 @@ var MetricsRow = styled9__default.default.div`
11139
11140
  border-top: 1px solid rgba(255,255,255,0.06);
11140
11141
  padding-top: 1rem;
11141
11142
  `;
11142
- var MetricLabel3 = styled9__default.default.div`
11143
+ var MetricLabel2 = styled9__default.default.div`
11143
11144
  font-size: 0.6rem;
11144
11145
  color: var(--color-text-secondary);
11145
11146
  text-transform: uppercase;