/* C:\george\goal\public\css\styles.css */
:root {
  --bg: #08111f;
  --panel: #0b1220;
  --panel-2: #101a2b;
  --card: rgba(37, 50, 71, 0.42);
  --card-strong: rgba(37, 50, 71, 0.58);
  --line: #1d2a42;
  --line-soft: rgba(52, 76, 114, 0.55);
  --text: #e6edf7;
  --muted: rgba(207, 227, 255, 0.78);
  --gold: #f7b733;
  --gold-2: #ffd66b;
  --gold-soft: rgba(247, 183, 51, 0.18);
  --success: #8df0b2;
  --success-strong: #60e79a;
  --danger: #ff8f8f;
  --danger-soft: rgba(255, 106, 106, 0.12);
  --buy-soft: rgba(70, 198, 126, 0.14);
  --sell-soft: rgba(255, 123, 123, 0.12);
  --transfer-soft: rgba(94, 145, 255, 0.12);
  --blue: #7ab6ff;
  --blue-soft: rgba(88, 136, 255, 0.14);
  --shadow: 0 18px 48px rgba(0, 0, 0, 0.25);
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  background:
    radial-gradient(circle at top center, rgba(23, 40, 73, 0.28), transparent 32%),
    linear-gradient(180deg, #07101d 0%, #091527 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  max-width: 1380px;
  margin: 0 auto;
  padding: 22px 18px 40px;
  width: 100%;
}

.analysisPage {
  gap: 0;
}

.panel {
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.86), rgba(9, 17, 31, 0.82));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  margin-bottom: 18px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.revenue-bar {
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.1), transparent 28%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.78), rgba(10, 16, 29, 0.74));
  border: 1px solid rgba(247, 183, 51, 0.58);
  box-shadow:
    0 0 0 1px rgba(247, 183, 51, 0.05),
    0 18px 48px rgba(0, 0, 0, 0.25);
}

.heroPanel,
.featurePanel {
  position: relative;
  overflow: hidden;
}

.heroPanel::before,
.featurePanel::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255,255,255,0.06), rgba(247,183,51,0.35), rgba(255,255,255,0.06));
  pointer-events: none;
}

.sectionHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.panelTitle {
  margin: 0;
  font-size: 1.08rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff8e1;
}

.panelTitleXL {
  font-size: clamp(1.18rem, 1rem + 0.9vw, 1.62rem);
  letter-spacing: 0.06em;
  line-height: 1.12;
}

.panelSub {
  margin: 8px 0 0;
  color: rgba(220, 230, 250, 0.78);
  font-size: 1rem;
  line-height: 1.55;
}

.panelSubWide {
  max-width: 900px;
}

.card {
  background: linear-gradient(180deg, var(--card-strong), var(--card));
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-md);
  padding: 16px;
  min-height: 100%;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.grid2,
.grid3 {
  display: grid;
  gap: 14px;
}

.grid2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}

.label {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #fff4cc;
  margin-bottom: 10px;
}

.smallLabel {
  font-size: 0.78rem;
  font-weight: 900;
  color: rgba(224, 234, 251, 0.92);
  min-width: 110px;
  letter-spacing: 0.03em;
}

.hint {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.52;
}

.hintGood {
  color: var(--success);
}

.mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

.big {
  font-size: 1.45rem;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.breakAll {
  word-break: break-all;
}

.kv {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(52, 76, 114, 0.45);
}

.kv:last-child {
  border-bottom: 0;
}

.kvStrong {
  padding: 12px 0;
}

.goalInput {
  flex: 1 1 220px;
  width: 100%;
  min-width: 180px;
  min-height: 44px;
  background: rgba(9, 16, 29, 0.9);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  padding: 0.82rem 0.95rem;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
}

.goalInput:focus {
  border-color: rgba(247, 183, 51, 0.85);
  box-shadow: 0 0 0 4px rgba(247, 183, 51, 0.08);
}

.goalInput::placeholder {
  color: rgba(207, 227, 255, 0.42);
}

.goalBtn {
  min-height: 44px;
  border: 1px solid rgba(247, 183, 51, 0.82);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.34), rgba(247, 183, 51, 0.14));
  color: #fff8e1;
  border-radius: 12px;
  padding: 0.78rem 1.04rem;
  font-weight: 950;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}

.goalBtn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 18px rgba(247, 183, 51, 0.22);
}

.goalBtn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.ghostBtn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(162, 186, 230, 0.2);
  color: #dbe7ff;
}

.ghostBtn:hover {
  box-shadow: 0 0 18px rgba(132, 175, 255, 0.12);
  border-color: rgba(162, 186, 230, 0.38);
}

.actionRow {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.compactRow {
  margin-top: 10px;
}

.wrapRow {
  margin-top: 0;
  margin-bottom: 12px;
}

.statusHint {
  min-height: 20px;
  font-weight: 700;
}

.tableWrap {
  overflow: auto;
  margin-top: 14px;
  border: 1px solid rgba(29, 42, 66, 0.82);
  border-radius: 16px;
  background: rgba(8, 14, 26, 0.72);
}

.tableWrapEnhanced {
  background: linear-gradient(180deg, rgba(10, 16, 29, 0.92), rgba(8, 14, 26, 0.84));
}

.table {
  width: 100%;
  border-collapse: collapse;
  min-width: 860px;
}

.table th,
.table td {
  padding: 12px 13px;
  border-bottom: 1px solid rgba(29, 42, 66, 0.7);
  vertical-align: top;
}

.table th {
  text-align: left;
  color: #fff8e1;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: rgba(15, 23, 38, 0.88);
  position: sticky;
  top: 0;
  z-index: 1;
}

.table tbody tr:hover {
  background: rgba(247, 183, 51, 0.04);
}

.right {
  text-align: right;
}

.link {
  color: #9fd7ff;
  text-decoration: none;
}

.link:hover {
  text-decoration: underline;
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem 1rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #1d2a42;
  background: rgba(37, 50, 71, 0.6);
  color: #cfe3ff;
  padding: 0.85rem 1rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
}

.title,
.titleText {
  margin: 0;
}

.subtitle-hero {
  margin: 0.4rem 0 0;
  color: rgba(207, 227, 255, 0.88);
}

/* Header */
.goalHeader {
  position: sticky;
  top: 0;
  z-index: 60;
  background:
    linear-gradient(180deg, rgba(7, 13, 25, 0.97), rgba(10, 18, 33, 0.94));
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 79, 116, 0.42);
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.28),
    inset 0 -1px 0 rgba(255, 255, 255, 0.03);
  overflow: clip;
}

.goalHeaderGlow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.12), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.10), transparent 24%);
}

.goalHeaderInner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 18px 12px;
}

.goalHeaderMain {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto minmax(220px, 1fr);
  align-items: center;
  gap: 12px;
}

.goalHeaderSide {
  display: flex;
  align-items: center;
  min-width: 0;
}

.goalHeaderSideLeft {
  justify-content: flex-start;
}

.goalHeaderSideRight {
  justify-content: flex-end;
  gap: 12px;
}

.goalHeaderCenter {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.goalLogo {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.goalLogoMark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  flex: 0 0 auto;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(247, 183, 51, 0.18), rgba(247, 183, 51, 0.05));
  border: 1px solid rgba(247, 183, 51, 0.24);
  box-shadow:
    0 0 24px rgba(247, 183, 51, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.goalLogoMark img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 12px;
  display: block;
}

.goalBrand {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}

.goalEyebrow {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(185, 205, 235, 0.78);
  margin-bottom: 5px;
}

.goalTitle {
  font-size: clamp(.9rem, 1rem + 0.65vw, .9rem);
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff6d6;
  text-shadow: 0 0 16px rgba(247, 183, 51, 0.16);
}

.goalTagline {
  margin-top: px;
  font-size: 1.5rem;
  color: #00FF00;
  font-weight: 900;
}

.accent
  margin-top: px;
  font-size: 1.5rem;
  color: #7c5cff;
  font-weight: 200;
}

.goalNav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  min-width: 0;
  overflow: visible;
  padding: 2px 0;
}

.goalChip {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  flex: 0 0 auto;
  min-height: 32px;
  padding: 0.38rem 0.58rem;
  border-radius: 999px;
  border: 1px solid rgba(41, 60, 92, 0.9);
  background: linear-gradient(180deg, rgba(31, 44, 66, 0.85), rgba(21, 31, 47, 0.85));
  color: #cfe3ff;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.01em;
  line-height: 1;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    border-color 0.15s ease,
    background 0.15s ease,
    color 0.15s ease;
  white-space: nowrap;
}

.goalChip:hover {
  transform: translateY(-1px);
  border-color: rgba(247, 183, 51, 0.9);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.28), rgba(247, 183, 51, 0.12));
  color: #fff8e1;
  box-shadow:
    0 0 10px rgba(247, 183, 51, 0.2),
    0 0 20px rgba(247, 183, 51, 0.1);
}

.chipActive {
  border-color: rgba(247, 183, 51, 0.95);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.4), rgba(247, 183, 51, 0.16));
  color: #fff8e1;
  box-shadow:
    0 0 12px rgba(247, 183, 51, 0.25),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.chipIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 0.9rem;
  font-size: 0.72rem;
}

.walletBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 176px;
  min-height: 46px;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  border: 1px solid rgba(0, 212, 255, 0.52);
  background:
    linear-gradient(180deg, rgba(0, 212, 255, 0.16), rgba(0, 212, 255, 0.06));
  color: #c8f7ff;
  font-weight: 900;
  letter-spacing: 0.01em;
  cursor: pointer;
  white-space: nowrap;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
  box-shadow:
    0 0 0 1px rgba(0, 212, 255, 0.04),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.walletBtn:hover {
  transform: translateY(-1px);
  border-color: rgba(0, 212, 255, 0.88);
  box-shadow:
    0 10px 24px rgba(0, 212, 255, 0.18),
    0 0 22px rgba(0, 212, 255, 0.14);
}

.walletBtnIcon {
  font-size: 0.95rem;
  line-height: 1;
}

.goalSubBar {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 18px 16px;
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(420px, 1.45fr);
  gap: 14px;
}

.goalStatusCard,
.goalContractCard {
  border: 1px solid rgba(58, 79, 116, 0.4);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(17, 27, 44, 0.82), rgba(11, 19, 33, 0.78));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
  padding: 14px 14px 13px;
}

.subBarTitle {
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(191, 207, 232, 0.72);
  margin-bottom: 10px;
}

.goalStatus {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: stretch;
}

.statusItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  min-width: 110px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.04);
}

.statusLabel {
  color: rgba(207, 227, 255, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 850;
}

.statusValue {
  color: rgba(236, 243, 255, 0.96);
  font-size: 0.96rem;
  font-weight: 900;
  line-height: 1.2;
}

.goalContractBar {
  display: grid;
  grid-template-columns: auto minmax(220px, 1fr) auto auto;
  gap: 10px;
  align-items: center;
}

.contractLabel {
  color: rgba(207, 227, 255, 0.74);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  font-weight: 900;
  white-space: nowrap;
}

.goalCaInput {
  min-width: 0;
  width: 100%;
}

/* Snapshot */
.heroCard {
  min-height: 100%;
}

.snapshotCard {
  padding: 18px;
}

.snapshotPrimary {
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.09), transparent 36%),
    linear-gradient(180deg, rgba(31, 42, 61, 0.62), rgba(16, 26, 43, 0.75));
}

.snapshotMeta {
  background:
    radial-gradient(circle at top left, rgba(88, 136, 255, 0.11), transparent 34%),
    linear-gradient(180deg, rgba(27, 40, 62, 0.62), rgba(16, 26, 43, 0.76));
}

.snapshotTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.tokenIdentity {
  display: flex;
  align-items: center;
  gap: 14px;
}

.tokenIconWrap {
  position: relative;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  border: 1px solid rgba(247, 183, 51, 0.32);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.18), rgba(247, 183, 51, 0.07));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.tokenIconGlow {
  position: absolute;
  inset: -8px;
  border-radius: 22px;
  background: radial-gradient(circle, rgba(247, 183, 51, 0.22), transparent 68%);
  filter: blur(6px);
  pointer-events: none;
}

.tokenIcon {
  position: relative;
  z-index: 1;
  font-size: 1.55rem;
  color: #fff1c4;
  font-weight: 900;
}

.snapshotLead,
.cardLead {
  color: rgba(222, 232, 248, 0.72);
  font-size: 0.96rem;
  line-height: 1.4;
}

.contractAddress {
  font-size: clamp(1rem, 0.88rem + 0.55vw, 1.24rem);
  line-height: 1.45;
  color: #ffffff;
  background: rgba(6, 12, 22, 0.34);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 14px;
  padding: 14px 14px;
  margin-bottom: 12px;
}

.keyHint {
  margin-bottom: 10px;
}

.emphasisStack {
  margin-top: 10px;
}

.valuePill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  background: rgba(247, 183, 51, 0.12);
  border: 1px solid rgba(247, 183, 51, 0.24);
  color: #fff2cb;
}

.tokenHighlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  padding: 6px;
  border-radius: 4px;
  border: 1px solid rgba(255, 196, 58, 0.18);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.1), rgba(247, 183, 51, 0.04));
}

.tokenHighlightIcon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(247, 183, 51, 0.14);
  border: 1px solid rgba(247, 183, 51, 0.22);
  color: #ffe7a4;
  font-size: 1.25rem;
  font-weight: 900;
  flex-shrink: 0;
}

.tokenHighlightLabel {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(234, 241, 255, 0.65);
  margin-bottom: 5px;
}

.tokenNamePrimary {
  font-size: clamp(1.18rem, 1rem + 0.8vw, 1.74rem);
  font-weight: 950;
  color: #ffd978;
  letter-spacing: -0.02em;
  line-height: 1.1;
  text-shadow: 0 0 16px rgba(247, 183, 51, 0.12);
}

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

.metaMetric {
  min-height: 88px;
}

.metricCard {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-radius: 14px;
  padding: 12px;
  min-height: 82px;
}

.metricLabel {
  color: rgba(212, 221, 240, 0.72);
  font-size: 0.86rem;
  margin-bottom: 8px;
  line-height: 1.4;
}

.metricValue {
  font-size: 1.08rem;
  font-weight: 800;
  color: #f4f7ff;
  word-break: break-word;
  line-height: 1.35;
}

.metricValueGold {
  color: var(--gold-2);
  font-size: 1.18rem;
}

.supplyWrap {
  margin-top: 12px;
  border-radius: 16px;
  background: rgba(6, 12, 22, 0.3);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 14px;
}

.supplyValue {
  color: #f7fbff;
  font-size: 1.04rem;
  font-weight: 800;
  line-height: 1.5;
}

/* banners and badges */
.infoBanner {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(88, 136, 255, 0.18);
  background: linear-gradient(180deg, rgba(38, 71, 139, 0.14), rgba(15, 28, 58, 0.18));
  color: rgba(230, 238, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 14px;
}

.infoBannerStrong {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
}

.infoBannerIcon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(88, 136, 255, 0.18);
  color: #cfe0ff;
  font-weight: 900;
}

.cardTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.miniBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.34rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 196, 58, 0.28);
  background: rgba(255, 196, 58, 0.08);
  color: rgba(255, 231, 178, 0.95);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.miniBadge.accent {
  border-color: rgba(88, 136, 255, 0.28);
  background: rgba(88, 136, 255, 0.1);
  color: rgba(210, 223, 255, 0.96);
}

.successBadge {
  border-color: rgba(96, 231, 154, 0.3);
  background: rgba(96, 231, 154, 0.12);
  color: #dfffea;
}

.formStack {
  display: grid;
  gap: 12px;
}

.fieldRow {
  display: grid;
  gap: 8px;
}

.fieldInline {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.fieldRowPair .goalInput {
  min-width: 0;
}

.softHint {
  margin-top: 10px;
  color: rgba(215, 226, 245, 0.76);
  line-height: 1.48;
}

/* Tax */
.taxCard {
  position: relative;
  overflow: hidden;
}

.taxCardEnhanced::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -20px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(88, 136, 255, 0.14), transparent 68%);
  pointer-events: none;
}

.taxHero {
  margin-bottom: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(255, 196, 58, 0.16);
  background: linear-gradient(180deg, rgba(247, 183, 51, 0.09), rgba(247, 183, 51, 0.03));
}

.taxHeroLabel {
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(234, 241, 255, 0.66);
  margin-bottom: 8px;
}

.taxHeroValue {
  font-size: clamp(1.24rem, 1rem + 0.95vw, 1.8rem);
  font-weight: 950;
  color: #ffe29a;
  line-height: 1.15;
}

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

.emphasisMetric {
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
}

.taxMetric {
  border-width: 1px;
}

.buyMetric {
  background: linear-gradient(180deg, rgba(70, 198, 126, 0.14), rgba(70, 198, 126, 0.05));
  border-color: rgba(70, 198, 126, 0.2);
}

.sellMetric {
  background: linear-gradient(180deg, rgba(255, 123, 123, 0.14), rgba(255, 123, 123, 0.05));
  border-color: rgba(255, 123, 123, 0.18);
}

.transferMetric {
  background: linear-gradient(180deg, rgba(94, 145, 255, 0.14), rgba(94, 145, 255, 0.05));
  border-color: rgba(94, 145, 255, 0.18);
}

.fullSpan {
  grid-column: 1 / -1;
}

.taxSamples {
  font-weight: 700;
}

/* Summary */
.summaryCard {
  min-height: 120px;
}

.summaryAccent {
  position: relative;
  overflow: hidden;
}

.summaryAccent::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.16), transparent);
}

.buySummary {
  background: linear-gradient(180deg, rgba(70, 198, 126, 0.12), rgba(37, 50, 71, 0.42));
  border-color: rgba(70, 198, 126, 0.22);
}

.sellSummary {
  background: linear-gradient(180deg, rgba(255, 123, 123, 0.11), rgba(37, 50, 71, 0.42));
  border-color: rgba(255, 123, 123, 0.2);
}

.transferSummary {
  background: linear-gradient(180deg, rgba(94, 145, 255, 0.12), rgba(37, 50, 71, 0.42));
  border-color: rgba(94, 145, 255, 0.2);
}

.summaryValue {
  font-size: clamp(1.35rem, 1.1rem + 0.9vw, 1.95rem);
  color: #ffffff;
  margin-bottom: 8px;
}

.summaryLower {
  margin-top: 12px;
}

.flowCard .mono {
  font-size: 1.02rem;
  font-weight: 900;
}

.flowIn {
  color: #baf6d3;
}

.flowOut {
  color: #ffc4c4;
}

/* Misc */
.configCard,
.walletCard,
.actionCard,
.flowCard {
  min-height: 100%;
}

.grid3 .card .label + .mono.big {
  margin-bottom: 8px;
}

#a_ca {
  word-break: break-word;
  line-height: 1.35;
}

#a_status {
  font-weight: 700;
}

.filterBar {
  align-items: center;
}

@media (max-width: 1380px) {
  .goalHeaderMain {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }

  .goalHeaderCenter {
    justify-content: flex-start;
  }

  .goalNav {
    justify-content: flex-start;
  }

  .goalChip {
    font-size: 0.68rem;
    padding: 0.36rem 0.52rem;
  }
}

@media (max-width: 1180px) {
  .goalHeaderMain {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .goalHeaderCenter,
  .goalHeaderSideRight {
    justify-content: flex-start;
  }

  .goalNav {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .goalSubBar {
    grid-template-columns: 1fr;
  }

  .goalContractBar {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .contractLabel {
    margin-bottom: 2px;
  }
}

@media (max-width: 1160px) {
  .page {
    max-width: 1220px;
    padding: 18px 16px 34px;
  }
}

@media (max-width: 980px) {
  .goalHeaderInner {
    padding: 14px 14px 12px;
  }

  .goalSubBar {
    padding: 0 14px 14px;
  }
}

@media (max-width: 900px) {
  .grid2,
  .grid3,
  .filters,
  .metaGrid,
  .taxGrid {
    grid-template-columns: 1fr;
  }

  .panel,
  .revenue-bar {
    padding: 16px;
  }

  .page {
    padding: 16px 12px 30px;
  }

  .goalInput {
    min-width: 100%;
  }

  .row,
  .actionRow {
    align-items: stretch;
  }

  .row > .goalBtn,
  .row > .goalInput,
  .actionRow > .goalBtn,
  .actionRow > .goalInput {
    width: 100%;
  }

  .fieldInline {
    grid-template-columns: 1fr;
  }

  .snapshotTop,
  .cardTop {
    flex-direction: column;
    align-items: flex-start;
  }

  .fullSpan {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .goalNav {
    gap: 6px;
    flex-wrap: wrap;
  }

  .goalChip {
    min-height: 32px;
    font-size: 0.68rem;
    padding: 0.38rem 0.54rem;
  }

  .chipIcon {
    font-size: 0.7rem;
    width: 0.86rem;
  }
}

@media (max-width: 640px) {
  .panelTitle {
    font-size: 0.98rem;
  }

  .panelTitleXL {
    font-size: 1.08rem;
  }

  .panelSub {
    font-size: 0.95rem;
  }

  .big,
  .summaryValue {
    font-size: 1.22rem;
  }

  .table {
    min-width: 720px;
  }

  .tokenIdentity {
    align-items: flex-start;
  }

  .tokenIconWrap {
    width: 52px;
    height: 52px;
  }

  .tokenNamePrimary {
    font-size: 1.28rem;
  }

  .contractAddress {
    font-size: 0.96rem;
    padding: 12px;
  }

  .goalLogo {
    align-items: flex-start;
  }

  .goalLogoMark {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }

  .goalLogoMark img {
    width: 42px;
    height: 42px;
  }

  .goalEyebrow {
    font-size: 0.66rem;
  }

  .goalTitle {
    font-size: 1.18rem;
    letter-spacing: 0.12em;
  }

  .goalTagline {
    font-size: 0.76rem;
  }

  .walletBtn {
    width: 100%;
    min-width: 0;
  }

  .goalStatus {
    display: grid;
    grid-template-columns: 1fr;
  }

  .goalNav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, max-content));
    justify-content: flex-start;
    gap: 8px;
  }
}

.site-header .logo {
    position: relative;
    display: inline-block;
    line-height: 1;
    padding-left: 56px;
    font-family: Outfit, Inter, sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: #00FF00;
    text-decoration: none;
}
.logo {
    font-family: Outfit, Inter, sans-serif;
    font-weight: 900;
    font-size: 1.35rem;
    color: #00FF00;
    text-decoration: none;
    letter-spacing
Specifies the minimum, maximum, and optimal spacing between grapheme clusters.

Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show
: .5px;
}

/* ===== TOPBAR MATCH MAIN SITE ===== */
.topbar {
  width: 100%;
  background: linear-gradient(90deg, #1e2a44, #0f1b2f);
  border-bottom: 1px solid rgba(0, 255, 200, 0.15);
  padding: 6px 16px;
  font-size: 13px;
}

.topbarInner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbarText {
  color: #00ff9c;
  font-weight: 500;
}

.ethText {
  color: #00e0ff;
}

    .progress{
      width:100%;
      height:10px;
      border-radius:999px;
      border:1px solid rgba(29,42,66,1);
      overflow:hidden;
      margin-top:10px;
      background: rgba(37, 50, 71, 0.35);
    }

    .progressBar{
      height:100%;
      width:0%;
      background: linear-gradient(90deg, rgba(247,183,51,0.85), rgba(247,183,51,0.35));
      transition: width .2s ease;
    }

    .featureList{
      display:grid;
      gap:10px;
      margin-top:10px;
    }

    .featureChip{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:10px;
      border:1px solid rgba(29,42,66,1);
      background: rgba(37, 50, 71, 0.35);
      border-radius: 12px;
      padding: 10px 12px;
      color: rgba(207,227,255,0.95);
    }

    .featureChip .mono{
      color: #fff8e1;
      text-align: right;
    }

    .suiteGrid{
      display:grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap:12px;
      margin-top:14px;
    }

    .suiteGridEnhanced{
      margin-top:14px;
    }

    .suiteItem{
      display:flex;
      gap:12px;
      align-items:flex-start;
      border:1px solid rgba(255,255,255,0.06);
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
      border-radius: 14px;
      padding: 14px;
      cursor:pointer;
      user-select:none;
      transition: .15s ease;
      min-height: 100%;
    }

    .suiteItem:hover{
      border-color: rgba(247,183,51,0.65);
      box-shadow: 0 0 16px rgba(247,183,51,0.10);
      transform: translateY(-1px);
    }

    .suiteItem input{
      transform: scale(1.1);
      margin-top: 4px;
    }

    .suiteText{
      display:flex;
      flex-direction:column;
      gap:6px;
    }

    .suiteTitle{
      font-weight: 850;
      color: rgba(255,248,225,0.96);
    }

    .suiteMeta{
      color: rgba(207,227,255,0.75);
      font-size: .86rem;
      line-height: 1.45;
    }

    .suiteToggle{
      display:inline-flex;
      gap:10px;
      align-items:center;
      border:1px solid rgba(29,42,66,1);
      background: rgba(37, 50, 71, 0.35);
      border-radius: 999px;
      padding: 8px 12px;
      cursor:pointer;
      user-select:none;
    }

    .suiteToggle input{
      transform: scale(1.1);
    }

    .pill{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      padding: 6px 10px;
      border-radius: 999px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      font-size: .72rem;
      border:1px solid rgba(29,42,66,1);
      background: rgba(37, 50, 71, 0.35);
      color: rgba(207,227,255,0.95);
    }

    .pillPass{
      border-color: rgba(34,197,94,0.65);
      box-shadow: 0 0 16px rgba(34,197,94,0.10);
    }

    .pillFail{
      border-color: rgba(255,67,123,0.65);
      box-shadow: 0 0 16px rgba(255,67,123,0.12);
    }

    .pillRun{
      border-color: rgba(247,183,51,0.65);
      box-shadow: 0 0 16px rgba(247,183,51,0.10);
    }

    .logBox{
      margin: 12px 0 0 0;
      padding: 12px;
      border-radius: 14px;
      border: 1px solid rgba(29,42,66,1);
      background: rgba(15, 23, 38, 0.45);
      min-height: 320px;
      max-height: 520px;
      overflow:auto;
      color: rgba(207,227,255,0.95);
      font-size: .9rem;
      line-height: 1.45;
      white-space: pre-wrap;
    }

    .histList{
      margin-top: 12px;
      display:grid;
      gap:10px;
    }

    .histItem{
      border:1px solid rgba(29,42,66,1);
      background: rgba(37, 50, 71, 0.35);
      border-radius: 14px;
      padding: 12px 12px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap: 12px;
      cursor:pointer;
      transition: .15s ease;
    }

    .histItem:hover{
      border-color: rgba(247,183,51,0.75);
      box-shadow: 0 0 18px rgba(247,183,51,0.10);
    }

    .histLeft{
      display:flex;
      flex-direction:column;
      gap:6px;
    }

    .histTop{
      display:flex;
      gap:10px;
      flex-wrap:wrap;
      align-items:center;
    }

    .histMeta{
      color: rgba(207,227,255,0.75);
      font-size: .85rem;
    }

    .histBtns{
      display:flex;
      gap:10px;
      align-items:center;
      flex-wrap:wrap;
    }

    .miniBtn{
      padding: .45rem .8rem;
      font-size: .82rem;
    }

    .overlay{
      position: fixed;
      inset: 0;
      z-index: 80;
      background: rgba(0,0,0,0.55);
      backdrop-filter: blur(2px);
    }

    .drawer{
      position: fixed;
      top: 0;
      right: 0;
      height: 100vh;
      width: min(520px, 92vw);
      z-index: 90;
      background: rgba(11, 18, 32, 0.98);
      border-left: 1px solid rgba(29,42,66,1);
      transform: translateX(100%);
      transition: transform .18s ease;
      display:flex;
      flex-direction:column;
    }

    .drawer.open{
      transform: translateX(0);
    }

    .drawerHead{
      padding: 14px 14px 12px;
      border-bottom: 1px solid rgba(29,42,66,1);
      display:flex;
      align-items:flex-start;
      justify-content:space-between;
      gap: 10px;
    }

    .drawerTitle{
      font-weight: 950;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #fff8e1;
    }

    .drawerSub{
      margin-top: 6px;
      color: rgba(207,227,255,0.75);
      font-size: .9rem;
    }

    .drawerBody{
      padding: 14px;
      overflow:auto;
    }

    .drawerGrid{
      display:grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    .resultRow{
      cursor:pointer;
      transition: background .15s ease;
    }

    .resultRow:hover,
    .resultRow:focus{
      background: rgba(247,183,51,0.08);
      outline:none;
    }

    @media (max-width: 900px){
      .suiteGrid,
      .drawerGrid{
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 520px){
      .drawerGrid{
        grid-template-columns: 1fr;
      }
    }

/* ===== TESTING PAGE ENHANCEMENTS ===== */
.equalGrid > .card {
  min-height: 100%;
}

.testingContextCard,
.testingSuitesCard {
  min-height: 100%;
}

.testingControlStack {
  display: grid;
  gap: 12px;
}

.testingScenarioHero {
  margin-bottom: 0;
}

.testingSuiteGrid {
  margin-top: 14px;
}

.suiteGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
}

.suiteItem {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015));
  border-radius: 14px;
  padding: 14px;
  cursor: pointer;
  user-select: none;
  transition: .18s ease;
  min-height: 100%;
}

.suiteItem:hover {
  border-color: rgba(247, 183, 51, 0.65);
  box-shadow: 0 0 16px rgba(247, 183, 51, 0.10);
  transform: translateY(-1px);
}

.suiteItem.is-suggested {
  border-color: rgba(247, 183, 51, 0.3);
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(247,183,51,0.07), rgba(255,255,255,0.02));
}

.suiteItem input {
  transform: scale(1.1);
  margin-top: 4px;
}

.suiteText {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.suiteTitleRow {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.suiteTitle {
  font-weight: 850;
  color: rgba(255,248,225,0.96);
}

.suiteBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(88, 136, 255, 0.24);
  background: rgba(88, 136, 255, 0.1);
  color: rgba(210, 223, 255, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.suiteMeta {
  color: rgba(207,227,255,0.75);
  font-size: .86rem;
  line-height: 1.5;
}

.featureList {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.featureChip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border: 1px solid rgba(29,42,66,1);
  border-radius: 14px;
  padding: 12px 14px;
  color: rgba(207,227,255,0.95);
  transition: .18s ease;
  background: linear-gradient(180deg, rgba(37, 50, 71, 0.48), rgba(21, 31, 47, 0.42));
}

.featureChip:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 16px rgba(247, 183, 51, 0.08);
}

.featureChip.is-gold {
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(247, 183, 51, 0.08), rgba(37, 50, 71, 0.38));
  border-color: rgba(247, 183, 51, 0.22);
}

.featureChip.is-accent {
  background:
    radial-gradient(circle at top right, rgba(88, 136, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(88, 136, 255, 0.08), rgba(37, 50, 71, 0.38));
  border-color: rgba(88, 136, 255, 0.22);
}

.featureChip.is-muted {
  background:
    radial-gradient(circle at top right, rgba(255, 123, 123, 0.1), transparent 44%),
    linear-gradient(180deg, rgba(255, 123, 123, 0.05), rgba(37, 50, 71, 0.38));
  border-color: rgba(255, 123, 123, 0.16);
}

.featureChipMain {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.featureChipIcon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  color: #fff4cc;
  font-size: 0.88rem;
  font-weight: 900;
  flex-shrink: 0;
}

.featureChipLabel {
  font-weight: 800;
  color: #f5f9ff;
}

.featureChipValue {
  color: #fff8e1;
  text-align: right;
  max-width: 52%;
  word-break: break-word;
}

.testingResultsWrap {
  position: relative;
}

.testingResultsTable tbody tr.resultRow {
  transition: background .15s ease, transform .15s ease;
}

.testingResultsTable tbody tr.resultRow:hover {
  transform: translateY(-1px);
}

.resultRowTone-pass {
  background: linear-gradient(90deg, rgba(70, 198, 126, 0.05), rgba(0,0,0,0));
}

.resultRowTone-fail {
  background: linear-gradient(90deg, rgba(255, 123, 123, 0.05), rgba(0,0,0,0));
}

.resultRowTone-warn {
  background: linear-gradient(90deg, rgba(247, 183, 51, 0.05), rgba(0,0,0,0));
}

.resultSuiteCell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.resultSuiteIcon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.05);
  color: #fff8e1;
  font-weight: 900;
  flex-shrink: 0;
}

.resultSuiteText {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.resultSuiteName {
  color: #f8fbff;
  font-weight: 850;
  line-height: 1.35;
}

.resultSuiteSub {
  color: rgba(207,227,255,0.66);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.resultGroupBadge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0.28rem 0.62rem;
  border-radius: 999px;
  border: 1px solid rgba(247, 183, 51, 0.22);
  background: rgba(247, 183, 51, 0.08);
  color: rgba(255, 235, 185, 0.96);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.resultDuration {
  color: #dff3ff;
  font-weight: 800;
}

.resultNotesCell {
  color: rgba(224, 234, 251, 0.88);
  line-height: 1.5;
}

.suiteToggle {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  border: 1px solid rgba(29,42,66,1);
  background: rgba(37, 50, 71, 0.35);
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
  user-select: none;
}

.suiteToggle input {
  transform: scale(1.1);
}

.logBox {
  margin: 12px 0 0 0;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid rgba(29,42,66,1);
  background: rgba(15, 23, 38, 0.45);
  min-height: 320px;
  max-height: 520px;
  overflow: auto;
  color: rgba(207,227,255,0.95);
  font-size: .9rem;
  line-height: 1.45;
  white-space: pre-wrap;
}

.histList {
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.histItem {
  border: 1px solid rgba(29,42,66,1);
  background: rgba(37, 50, 71, 0.35);
  border-radius: 14px;
  padding: 12px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  transition: .15s ease;
}

.histItem:hover {
  border-color: rgba(247,183,51,0.75);
  box-shadow: 0 0 18px rgba(247,183,51,0.10);
}

.histLeft {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.histTop {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.histMeta {
  color: rgba(207,227,255,0.75);
  font-size: .85rem;
}

.histBtns {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.miniBtn {
  padding: .45rem .8rem;
  font-size: .82rem;
}

@media (max-width: 900px) {
  .suiteGrid,
  .equalGrid {
    grid-template-columns: 1fr;
  }

  .featureChip,
  .suiteTitleRow {
    align-items: flex-start;
  }

  .featureChip {
    flex-direction: column;
  }

  .featureChipValue {
    max-width: 100%;
    text-align: left;
  }
}

/* ===== SIMULATOR PAGE ===== */
.simKpiGrid {
  margin-top: 14px;
}

.simControlGrid {
  margin-top: 4px;
}

.simNotesBox {
  min-height: 136px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(29, 42, 66, 1);
  background: rgba(15, 23, 38, 0.45);
}

.simChecklist .histItem {
  cursor: default;
}

.simTimelineGrid .card {
  min-height: 100%;
}

@media (max-width: 900px) {
  .simControlGrid,
  .simTimelineGrid {
    grid-template-columns: 1fr;
  }
}

/* ===== SIMULATOR PAGE ===== */
.simKpiGrid {
  margin-top: 14px;
}

.simControlGrid {
  margin-top: 4px;
}

.simNotesBox {
  min-height: 136px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(29, 42, 66, 1);
  background: rgba(15, 23, 38, 0.45);
}

.simChecklist .histItem {
  cursor: default;
}

.simTimelineGrid .card {
  min-height: 100%;
}

.simControlCard {
  min-height: 100%;
}

.simContextBar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(88, 136, 255, 0.22);
  background:
    radial-gradient(circle at top right, rgba(88, 136, 255, 0.12), transparent 44%),
    linear-gradient(180deg, rgba(88, 136, 255, 0.08), rgba(37, 50, 71, 0.38));
}

.simContextMain {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.simContextDot {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  flex: 0 0 auto;
  background: radial-gradient(circle, #7ab6ff 0%, rgba(122, 182, 255, 0.35) 72%);
  box-shadow: 0 0 14px rgba(122, 182, 255, 0.45);
}

.simContextTitle {
  font-size: 0.8rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f2ff;
}

.simContextSub {
  margin-top: 4px;
  color: rgba(220, 231, 250, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.simVizCard {
  margin-top: 8px;
  border: 1px solid rgba(29, 42, 66, 1);
  border-radius: 18px;
  padding: 14px;
  background:
    radial-gradient(circle at top right, rgba(247, 183, 51, 0.08), transparent 36%),
    linear-gradient(180deg, rgba(16, 26, 43, 0.76), rgba(10, 18, 31, 0.82));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.simVizHead {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.simVizLegend {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 12px;
}

.simLegendItem {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(227, 236, 249, 0.88);
  font-size: 0.84rem;
  font-weight: 700;
}

.simLegendSwatch {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  display: inline-block;
  box-shadow: 0 0 10px rgba(255,255,255,0.12);
}

.simLegendSwatch.impact {
  background: #f7b733;
}

.simLegendSwatch.gas {
  background: #7ab6ff;
}

.simLegendSwatch.tax {
  background: #ff8f8f;
}

.simLegendSwatch.rewards {
  background: #8df0b2;
}

.simChartWrap {
  width: 100%;
  min-height: 280px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.04);
  background:
    linear-gradient(180deg, rgba(7, 15, 29, 0.88), rgba(12, 22, 39, 0.88));
}

.simChartCanvas {
  width: 100%;
  height: 280px;
  display: block;
}

@media (max-width: 900px) {
  .simControlGrid,
  .simTimelineGrid {
    grid-template-columns: 1fr;
  }

  .simContextBar,
  .simVizHead {
    flex-direction: column;
    align-items: flex-start;
  }

  .simChartWrap,
  .simChartCanvas {
    height: 240px;
    min-height: 240px;
  }
}

/* ===== SLIPPAGE PAGE ===== */
.slipKpiGrid {
  margin-top: 14px;
}

.slipControlGrid,
.slipTimelineGrid {
  margin-top: 4px;
}

.slipHeroCard {
  margin-bottom: 14px;
}

.slipChart {
  display: block;
  width: 100%;
  min-height: 320px;
  height: 320px;
  border-radius: 18px;
}

.tokenLogoImg,
.tokenLogoMini {
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
}

.tokenLogoImg {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
}

.tokenLogoMini {
  width: 42px;
  height: 42px;
}

.slipNotesBox {
  min-height: 136px;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid rgba(29, 42, 66, 1);
  background: rgba(15, 23, 38, 0.45);
}

@media (max-width: 900px) {
  .slipControlGrid,
  .slipTimelineGrid {
    grid-template-columns: 1fr;
  }

  .slipChart {
    height: 280px;
    min-height: 280px;
  }
}

.miniGasCard {
  min-width: 235px;
  max-width: 320px;
  margin-left: auto;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(88, 136, 255, 0.18);
  background:
    radial-gradient(circle at top right, rgba(88, 136, 255, 0.12), transparent 42%),
    linear-gradient(180deg, rgba(22, 36, 58, 0.78), rgba(15, 27, 46, 0.72));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.miniGasRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.miniGasRowSub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.miniGasLabel {
  font-size: 0.82rem;
  font-weight: 900;
  color: rgba(214, 227, 248, 0.82);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.miniGasPrice {
  font-size: 1rem;
  font-weight: 950;
  color: #ffe08a;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: nowrap;
}

.miniGasMeta {
  font-size: 0.78rem;
  color: rgba(210, 223, 243, 0.78);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

@media (max-width: 900px) {
  .miniGasCard {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-top: 12px;
  }
}

.slipHeroCard .tokenHighlightIcon {
  overflow: hidden;
}

#slip_surfaceChart,
#slip_curveChart {
  width: 100%;
  height: 320px;
  display: block;
}

#slip_matrixBody .pill {
  min-width: 88px;
}

#slip_timeline,
#slip_nextChecks {
  white-space: pre-line;
}

@media (max-width: 900px) {
  #slip_surfaceChart,
  #slip_curveChart {
    height: 260px;
  }
}

/* ===== SLIPPAGE POLISH ===== */
.slipHeroCard .tokenHighlight {
  align-items: center;
}

.slipHeroCard .tokenHighlightText {
  min-width: 0;
}

#slip_tokenLogo {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  display: block;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 6px 20px rgba(0,0,0,0.22),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.simVizCard {
  padding: 18px 18px 20px;
}

.simVizHead {
  margin-bottom: 14px;
}

.simVizHead .label {
  font-size: 0.96rem;
}

.simVizHead .cardLead {
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(222, 232, 248, 0.82);
  max-width: 760px;
}

.simVizLegend {
  margin-bottom: 16px;
  gap: 14px 18px;
}

.simLegendItem {
  font-size: 1rem;
  font-weight: 800;
}

.simLegendSwatch {
  width: 14px;
  height: 14px;
}

.simChartWrap {
  min-height: 380px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simChartCanvas {
  width: 100%;
  height: 360px;
  min-height: 360px;
  display: block;
}

#slip_surfaceChart,
#slip_curveChart {
  width: 100%;
  height: 360px;
  min-height: 360px;
  display: block;
}

#slip_matrixBody .pill {
  min-width: 88px;
}

#slip_timeline,
#slip_nextChecks {
  white-space: pre-line;
}

@media (max-width: 900px) {
  .simVizCard {
    padding: 16px;
  }

  .simVizHead .label {
    font-size: 0.88rem;
  }

  .simVizHead .cardLead {
    font-size: 0.98rem;
  }

  .simLegendItem {
    font-size: 0.92rem;
  }

  .simChartWrap,
  .simChartCanvas,
  #slip_surfaceChart,
  #slip_curveChart {
    height: 300px;
    min-height: 300px;
  }
}

/* ===== TOKEN LOGO FIX ===== */

.tokenHighlightIcon {
  width: 58px;
  height: 58px;
  border-radius: 16px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(145deg, #1a2b48, #0f1b2f);
  border: 1px solid rgba(255, 255, 255, 0.08);

  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);

  overflow: hidden; /* IMPORTANT */
}

/* Actual image */
#slip_tokenLogo {
  width: 80%;
  height: 80%;
  object-fit: contain;

  display: block;

  /* Smooth scaling */
  transition: transform 0.2s ease;
}

/* Optional subtle hover polish */
.tokenHighlightIcon:hover #slip_tokenLogo {
  transform: scale(1.05);
}

.tokenHighlightIcon::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 18px rgba(255, 204, 0, 0.08);
  pointer-events: none;
}

/* ===== SLIPPAGE TOKEN LOGO SHELL ===== */
.tokenLogoShell {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex: 0 0 58px;

  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.08), transparent 38%),
    linear-gradient(145deg, #1a2b48, #0f1b2f);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow:
    0 6px 18px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.tokenLogoShell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      110deg,
      transparent 0%,
      rgba(255,255,255,0.05) 35%,
      rgba(255,255,255,0.18) 50%,
      rgba(255,255,255,0.05) 65%,
      transparent 100%
    );
  transform: translateX(-120%);
  opacity: 0;
  pointer-events: none;
}

.tokenLogoShell.is-loading::before {
  opacity: 1;
  animation: tokenLogoShimmer 1.25s linear infinite;
}

@keyframes tokenLogoShimmer {
  from { transform: translateX(-120%); }
  to { transform: translateX(120%); }
}

.tokenLogoFallback {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  font-weight: 900;
  color: rgba(240, 246, 255, 0.92);
  text-shadow: 0 0 16px rgba(255,255,255,0.12);
  z-index: 1;
}

#slip_tokenLogo {
  position: relative;
  z-index: 2;
  width: 70%;
  height: 70%;
  object-fit: contain;
  display: block;
  opacity: 0;
  transform: scale(0.96);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.18));
}

.tokenLogoShell.is-loaded #slip_tokenLogo {
  opacity: 1;
  transform: scale(1);
}

.tokenLogoShell.is-loaded .tokenLogoFallback {
  opacity: 0;
}

.tokenChainBadge {
  position: absolute;
  right: 4px;
  bottom: 4px;
  z-index: 3;
  min-width: 24px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(8, 16, 30, 0.86);
  border: 1px solid rgba(255,255,255,0.12);
  color: #eaf2ff;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* dynamic tinted shell */
.tokenLogoShell.has-accent {
  background:
    radial-gradient(circle at 30% 25%, rgba(255,255,255,0.10), transparent 38%),
    linear-gradient(
      145deg,
      color-mix(in srgb, var(--token-accent, #355caa) 58%, #132238),
      color-mix(in srgb, var(--token-accent, #355caa) 24%, #0b1528)
    );
}

@supports not (color: color-mix(in srgb, red 50%, blue)) {
  .tokenLogoShell.has-accent {
    background:
      radial-gradient(circle at 30% 25%, rgba(255,255,255,0.10), transparent 38%),
      linear-gradient(145deg, rgba(53,92,170,0.9), #0f1b2f);
  }
}

/* ===== GOAL FOOTER ===== */
.goalFooter {
  margin: 18px;
  border: 1px solid rgba(58, 79, 116, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.08), transparent 26%),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(11, 18, 32, 0.88), rgba(9, 17, 31, 0.9));
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.goalFooterInner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 20px;
}

.goalFooterTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.goalFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.goalFooterLogo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 10px;
  flex: 0 0 auto;
}

.goalFooterBrandText {
  color: #fff8e1;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.goalFooterNav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px 18px;
}

.goalFooterLink,
.goalFooterInlineLink {
  color: rgba(207, 227, 255, 0.84);
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

.goalFooterLink {
  font-size: 0.92rem;
  font-weight: 800;
}

.goalFooterInlineLink {
  font-weight: 800;
}

.goalFooterLink:hover,
.goalFooterInlineLink:hover {
  color: #fff2cb;
  text-decoration: underline;
}

.goalFooterRule {
  height: 1px;
  margin: 16px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    rgba(247,183,51,0.28),
    rgba(255,255,255,0.08),
    transparent
  );
}

.goalFooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.goalFooterCopy,
.goalFooterMeta {
  color: rgba(207, 227, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.goalFooterMeta {
  text-align: right;
}

@media (max-width: 900px) {
  .goalFooter {
    margin: 14px 12px;
  }

  .goalFooterInner {
    padding: 16px;
  }

  .goalFooterTop,
  .goalFooterBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .goalFooterNav {
    justify-content: flex-start;
  }

  .goalFooterMeta {
    text-align: left;
  }
}

/* ===== GOAL FOOTER ===== */
.goalFooter {
  margin: 18px;
  border: 1px solid rgba(58, 79, 116, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.06), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 25, 0.96), rgba(8, 16, 30, 0.96));
  box-shadow:
    0 10px 30px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255,255,255,0.03);
}

.goalFooterInner {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 18px 14px;
}

.goalFooterTop {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.goalFooterSocials {
  display: flex;
  align-items: center;
  gap: 10px;
}

.goalFooterSocial {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00eaff;
  text-decoration: none;
  border: 2px solid rgba(0, 234, 255, 0.95);
  background:
    linear-gradient(180deg, rgba(0, 234, 255, 0.12), rgba(0, 234, 255, 0.04));
  box-shadow:
    0 0 0 1px rgba(0, 234, 255, 0.06),
    inset 0 1px 0 rgba(255,255,255,0.06);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    color 0.18s ease;
}

.goalFooterSocial:hover {
  transform: translateY(-1px);
  color: #bffcff;
  border-color: rgba(0, 234, 255, 1);
  box-shadow:
    0 10px 24px rgba(0, 234, 255, 0.16),
    0 0 18px rgba(0, 234, 255, 0.12);
}

.goalFooterSocialIcon {
  width: 20px;
  height: 20px;
  display: block;
}

.goalFooterDisclaimerWrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.goalFooterDisclaimerTitle {
  color: #f1f5ff;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.5;
}

.goalFooterDisclaimer {
  margin: 0;
  color: rgba(227, 235, 248, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.6;
  flex: 1 1 700px;
}

.goalFooterRule {
  height: 1px;
  margin: 14px 0 12px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    rgba(247,183,51,0.18),
    rgba(0,234,255,0.18),
    rgba(255,255,255,0.08),
    transparent
  );
}

.goalFooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
}

.goalFooterCopy,
.goalFooterMeta {
  color: rgba(207, 227, 255, 0.72);
  font-size: 0.88rem;
  line-height: 1.5;
}

.goalFooterMeta {
  text-align: right;
}

@media (max-width: 900px) {
  .goalFooter {
    margin: 14px 12px;
  }

  .goalFooterInner {
    padding: 14px 14px 12px;
  }

  .goalFooterDisclaimerWrap,
  .goalFooterBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .goalFooterMeta {
    text-align: left;
  }
}

/* ===== GOAL FOOTER ===== */
.goalFooter {
  margin: 18px;
  border: 1px solid rgba(58, 79, 116, 0.42);
  border-radius: 20px;
  background:
    radial-gradient(circle at top left, rgba(247, 183, 51, 0.05), transparent 24%),
    radial-gradient(circle at top right, rgba(0, 212, 255, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(7, 13, 25, 0.96), rgba(8, 16, 30, 0.96));
}

.goalFooterInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px;
}

/* TOP */
.goalFooterTop {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

/* DISCLAIMER */
.goalFooterDisclaimerWrap {
  max-width: 900px;
}

.goalFooterDisclaimerTitle {
  color: #ffffff;
  font-weight: 900;
  margin-right: 6px;
}

.goalFooterDisclaimer {
  margin: 4px 0 0;
  color: rgba(220, 230, 245, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* SOCIALS RIGHT */
.goalFooterSocials {
  display: flex;
  gap: 10px;
}

.goalFooterSocial {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00eaff;
  border: 2px solid rgba(0, 234, 255, 0.9);
  transition: all 0.2s ease;
}

.goalFooterSocial:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 234, 255, 0.25);
}

.goalFooterSocialIcon {
  width: 20px;
  height: 20px;
}

/* DIVIDER */
.goalFooterRule {
  height: 1px;
  margin: 14px 0;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,0.08),
    rgba(255,255,255,0.15),
    rgba(255,255,255,0.08),
    transparent
  );
}

/* BOTTOM */
.goalFooterBottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* LOGO LEFT */
.goalFooterBrand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.goalFooterLogo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.goalFooterBrandText {
  color: #fff4cc;
  font-weight: 900;
  font-size: 1rem;
}

/* META RIGHT */
.goalFooterMeta {
  color: rgba(200, 215, 235, 0.7);
  font-size: 0.85rem;
}

/* MOBILE */
@media (max-width: 900px) {
  .goalFooterTop,
  .goalFooterBottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .goalFooterSocials {
    margin-top: 10px;
  }
}

/* ===== GOAL FOOTER ===== */
.goalFooter {
  margin: 0;
  padding: 0 0 18px;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.goalFooterInner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 18px 18px 0;
}

.goalFooterBrandBlock {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.goalFooterBrand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: inherit;
}

.goalFooterLogo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  flex: 0 0 auto;
}

.goalFooterBrandText {
  font-weight: 950;
  font-size: 1.05rem;
  line-height: 1;
  letter-spacing: -0.01em;
}

.goalFooterBrandGeorge {
  color: #1cff1c;
}

.goalFooterBrandFoc {
  color: #c400ff;
}

.goalFooterCopy {
  color: rgba(215, 224, 240, 0.74);
  font-size: 0.96rem;
  line-height: 1.35;
  margin-left: 2px;
}

.goalFooterSocials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
}

.goalFooterSocial {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #00ecff;
  text-decoration: none;
  border: 2px solid rgba(0, 236, 255, 0.98);
  background: rgba(0, 236, 255, 0.03);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 0 0 1px rgba(0, 236, 255, 0.04);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.goalFooterSocial:hover {
  transform: translateY(-1px);
  border-color: #32f3ff;
  box-shadow:
    0 0 18px rgba(0, 236, 255, 0.18),
    inset 0 1px 0 rgba(255,255,255,0.05);
}

.goalFooterSocialIcon {
  width: 18px;
  height: 18px;
  display: block;
}

.goalFooterDisclaimerLine {
  margin-top: 18px;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px;
}

.goalFooterDisclaimerLabel {
  color: #f3f6ff;
  font-size: 0.98rem;
  font-weight: 950;
  line-height: 1.5;
}

.goalFooterDisclaimerText {
  color: rgba(228, 235, 246, 0.82);
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.55;
}

@media (max-width: 640px) {
  .goalFooterInner {
    padding: 16px 14px 0;
  }

  .goalFooterLogo {
    width: 52px;
    height: 52px;
  }

  .goalFooterBrandText {
    font-size: 1rem;
  }

  .goalFooterCopy,
  .goalFooterDisclaimerLabel,
  .goalFooterDisclaimerText {
    font-size: 0.92rem;
  }

  .goalFooterSocials {
    margin-top: 26px;
  }

  .goalFooterSocial {
    width: 40px;
    height: 40px;
  }
}

/* NEW ROW LAYOUT */
.goalFooterTopRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

/* KEEP BRAND LEFT */
.goalFooterBrandBlock {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* PUSH SOCIALS RIGHT */
.goalFooterSocials {
  display: flex;
  gap: 10px;
  margin-top: 6px; /* aligns with logo visually */
}

/* MOBILE FIX */
@media (max-width: 640px) {
  .goalFooterTopRow {
    flex-direction: column;
    align-items: flex-start;
  }

  .goalFooterSocials {
    margin-top: 16px;
  }
}

.goalFooterSocials {
  margin-left: auto;
}