/* Ubuntu Exchange homepage — Phase 2 visual rhythm & contrast */
:root{
  --home-bg:#0A0B0D;
  --home-page:#09090b;
  --home-deep:#050505;
  --home-surface:#121418;
  --home-surface-2:#181C22;
  --home-border:rgba(255,255,255,.07);
  --home-border-strong:rgba(255,255,255,.13);
  --home-text:#FFFFFF;
  --home-muted:#8A93A3;
  --home-dim:#5F6A7B;
  --home-gold:#C2A878;
  --home-gold-hover:#d4bd8f;
  --home-bronze:#8B6B3D;
  --home-champagne:#EAD8AB;
  --home-steel:#3A4557;
  --home-steel-text:#8494AB;
  --home-success:#00E676;
  --home-serif:Georgia,'Times New Roman',serif;
  --home-sans:'DM Sans',ui-sans-serif,system-ui,sans-serif;
  --home-mono:ui-monospace,SFMono-Regular,Menlo,Consolas,monospace;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0;}
html{scroll-behavior:smooth;}
body{
  min-height:100vh;
  overflow-x:hidden;
  background:var(--home-bg);
  color:var(--home-text);
  font-family:var(--home-sans);
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
body::before{
  content:'';
  position:fixed;
  inset:0;
  z-index:0;
  pointer-events:none;
  opacity:.14;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.028) 1px,transparent 1px);
  background-size:64px 64px;
}
a{color:inherit;text-decoration:none;}
button{font:inherit;}
.home-main{position:relative;z-index:1;padding-top:80px;background:var(--home-bg);}
.home-wrap{max-width:1320px;margin:0 auto;padding:0 28px;}
.text-gradient{
  background:linear-gradient(to right,#C2A878,#f3dfb4);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
  background-clip:text;
}

/* ── Buttons ── */
.home-btn,
.home-btn-ghost{
  display:inline-flex;
  min-height:52px;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 30px;
  border-radius:10px;
  font-size:14px;
  font-weight:800;
  letter-spacing:.01em;
  transition:background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .18s ease;
}
.home-btn{
  background:linear-gradient(135deg,#CEB98B 0%,#C2A878 52%,#B09060 100%);
  color:#0A0B0D;
  border:0;
  box-shadow:0 2px 14px rgba(194,168,120,.18);
}
.home-btn:hover{
  background:linear-gradient(135deg,#DFCA9B 0%,#D4BD8F 52%,#C2A878 100%);
  box-shadow:0 0 32px rgba(194,168,120,.32),0 2px 14px rgba(194,168,120,.18);
  transform:translateY(-1px);
}
.home-btn-ghost{
  border:1px solid rgba(194,168,120,.22);
  color:#D4C49A;
  background:rgba(194,168,120,.04);
}
.home-btn-ghost:hover{
  border-color:rgba(194,168,120,.48);
  background:rgba(194,168,120,.08);
  color:#E0D0A8;
}
.home-btn svg{width:16px;height:16px;fill:none;stroke:currentColor;stroke-width:1.8;stroke-linecap:round;stroke-linejoin:round;}

/* ── Hero ── */
.home-hero{
  position:relative;
  overflow:hidden;
  min-height:clamp(560px,82vh,860px);
  display:flex;
  align-items:center;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(112deg,#050505 0%,#08090a 38%,#11100c 70%,#050505 100%),
    linear-gradient(180deg,#070809 0%,#050505 100%);
}
.home-hero::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.42),transparent);
}
.home-hero::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(5,5,5,.88) 0%,rgba(5,5,5,.58) 42%,rgba(5,5,5,.18) 74%,rgba(5,5,5,.5) 100%),
    linear-gradient(180deg,rgba(194,168,120,.07) 0%,rgba(5,5,5,0) 38%,rgba(0,0,0,.42) 100%);
}
.home-hero-wave{
  position:absolute;
  left:-18vw;
  top:42px;
  z-index:0;
  width:min(154vw,2400px);
  height:auto;
  pointer-events:none;
  color:var(--home-gold);
  opacity:.28;
  transform:rotate(-3deg);
  filter:drop-shadow(0 0 38px rgba(194,168,120,.14));
  -webkit-mask-image:linear-gradient(90deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.22) 20%,rgba(0,0,0,.7) 48%,#000 68%,#000 94%,transparent 100%);
  mask-image:linear-gradient(90deg,rgba(0,0,0,.08) 0%,rgba(0,0,0,.22) 20%,rgba(0,0,0,.7) 48%,#000 68%,#000 94%,transparent 100%);
}
.home-hero-wave path{
  fill:none;
  stroke:currentColor;
  stroke-width:1.45;
  stroke-linecap:round;
  stroke-linejoin:round;
  vector-effect:non-scaling-stroke;
}
.home-hero-wave path:nth-child(2){opacity:.84;}
.home-hero-wave path:nth-child(3){opacity:.6;}
.home-hero-wave path:nth-child(4){opacity:.42;}
.home-hero-wave path:nth-child(5){opacity:.3;}
.home-hero-grid{
  position:relative;
  z-index:1;
  display:grid;
  max-width:1360px;
  grid-template-columns:minmax(0,.9fr) minmax(500px,.9fr);
  gap:66px;
  align-items:center;
  overflow-anchor:none;
  padding:62px 28px 72px;
}
.home-hero-grid::after{
  content:'';
  position:absolute;
  right:0;top:50%;
  z-index:0;
  width:min(54vw,720px);
  height:min(48vw,620px);
  pointer-events:none;
  background:radial-gradient(ellipse at center,rgba(194,168,120,.3) 0%,rgba(194,168,120,.14) 30%,rgba(194,168,120,.04) 58%,transparent 76%);
  filter:blur(18px);
  opacity:.66;
  transform:translate(7%,-46%);
}
.home-hero-grid > *{position:relative;z-index:1;}
.home-badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:22px;
  padding:8px 16px;
  border:1px solid rgba(194,168,120,.18);
  border-radius:999px;
  background:rgba(18,16,12,.72);
  color:var(--home-gold);
  font-family:var(--home-mono);
  font-size:10px;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.home-badge-dot{
  width:7px;height:7px;
  border-radius:999px;
  background:var(--home-gold);
  box-shadow:0 0 0 5px rgba(194,168,120,.1),0 0 10px rgba(194,168,120,.3);
}
.home-title{
  max-width:620px;
  margin-bottom:18px;
  color:#fff;
  font-family:var(--home-sans);
  font-size:58px;
  font-weight:800;
  line-height:1.03;
  letter-spacing:-.02em;
}
.home-title span{color:var(--home-gold);}
.home-mobile-title-break{display:none;}
.home-copy{
  max-width:560px;
  margin-bottom:28px;
  color:var(--home-muted);
  font-size:16px;
  font-weight:400;
  line-height:1.72;
}
.home-actions{display:flex;flex-wrap:wrap;gap:14px;margin-bottom:32px;}
.home-proof{
  display:grid;
  max-width:720px;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}
.home-proof-item{
  display:grid;
  grid-template-columns:auto 1fr;
  gap:11px;
  padding:14px;
  border:1px solid rgba(194,168,120,.11);
  border-radius:10px;
  background:rgba(20,17,11,.62);
}
.home-proof-value{color:var(--home-gold);font-family:var(--home-mono);font-size:12px;font-weight:800;}
.home-proof-label{color:var(--home-dim);font-size:12px;line-height:1.5;}
.home-proof-label strong{display:block;margin-bottom:2px;color:#fff;font-size:13px;}
.home-proof-label span{display:block;}
.home-hero-image-card{
  position:relative;
  isolation:isolate;
  justify-self:end;
  width:100%;
  max-width:790px;
  aspect-ratio:1.46 / 1;
  contain:layout paint;
  overflow-anchor:none;
  min-height:0;
  overflow:hidden;
  border:1px solid rgba(194,168,120,.26);
  border-radius:26px;
  background:
    linear-gradient(140deg,rgba(194,168,120,.12),rgba(18,20,24,.28) 28%,rgba(5,5,5,.2) 100%),
    url('/assets/img/homepage-hero-mobile-app-960.webp') center 52% / cover no-repeat,
    linear-gradient(140deg,rgba(194,168,120,.16),rgba(18,20,24,.92) 28%,#050505 100%);
  box-shadow:
    0 54px 170px rgba(0,0,0,.68),
    0 18px 70px rgba(194,168,120,.14),
    0 0 0 1px rgba(255,255,255,.04) inset;
}
.home-hero-image-card::before{
  content:none;
}
.home-hero-image-card::after{
  content:'';
  position:absolute;
  inset:0;
  z-index:3;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(5,5,5,.44) 0%,rgba(5,5,5,.04) 32%,rgba(5,5,5,.06) 68%,rgba(5,5,5,.34) 100%),
    linear-gradient(180deg,rgba(255,255,255,.08) 0%,rgba(5,5,5,0) 28%,rgba(0,0,0,.28) 100%),
    linear-gradient(135deg,rgba(194,168,120,.16),transparent 28%,transparent 72%,rgba(194,168,120,.08));
}
.home-hero-image-card img{
  position:absolute;
  inset:0;
  z-index:1;
  display:block;
  width:100%;height:100%;
  min-height:0;
  object-fit:cover;
  object-position:center 52%;
  filter:brightness(1.04) contrast(1.05) saturate(1.04);
  transform:scale(1.08);
  transform-origin:center center;
}

/* ── Shared section shell ── */
.home-section{
  padding:100px 0;
  border-bottom:1px solid rgba(255,255,255,.06);
  position:relative;
}
@supports (content-visibility:auto){
  .home-section,
  .home-band,
  .home-cta,
  .ai-footer{
    content-visibility:auto;
    contain-intrinsic-size:auto 760px;
  }
  .home-section-products{contain-intrinsic-size:auto 980px;}
  .home-section.deep{contain-intrinsic-size:auto 920px;}
  .home-cta{contain-intrinsic-size:auto 620px;}
  .ai-footer{contain-intrinsic-size:auto 560px;}
}
.home-section-head{max-width:780px;margin-bottom:58px;}
.home-section-head.center{margin-left:auto;margin-right:auto;text-align:center;}
.home-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  margin-bottom:16px;
  color:var(--home-gold);
  font-family:var(--home-mono);
  font-size:10px;
  font-weight:800;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.home-eyebrow::before{content:'';display:block;width:18px;height:1px;background:var(--home-gold);}
.home-heading{
  color:#fff;
  font-family:var(--home-sans);
  font-size:40px;
  font-weight:700;
  line-height:1.15;
  letter-spacing:-0.02em;
}
.home-section-copy{margin-top:18px;color:var(--home-muted);font-size:17px;font-weight:300;line-height:1.75;}

/* ── Products section ── */
.home-section-products{
  background:linear-gradient(180deg,#151310 0%,#13141A 20%,#121418 100%);
}
.home-section-products::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.24),transparent);
  pointer-events:none;
}
.home-product-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.home-product-card{
  position:relative;
  overflow:hidden;
  min-height:380px;
  padding:36px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:18px;
  background:linear-gradient(160deg,rgba(22,18,12,.9) 0%,rgba(18,20,24,.85) 60%,rgba(14,16,20,.9) 100%);
  box-shadow:0 28px 90px rgba(0,0,0,.32),0 2px 0 rgba(255,255,255,.03) inset;
  transition:border-color .25s ease,background .25s ease,transform .25s ease,box-shadow .25s ease;
}
.home-product-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.32),transparent);
  pointer-events:none;
}
.home-product-card:hover{
  border-color:rgba(194,168,120,.28);
  background:linear-gradient(160deg,rgba(26,21,13,.96) 0%,rgba(20,22,28,.92) 60%,rgba(16,18,24,.96) 100%);
  transform:translateY(-4px);
  box-shadow:0 36px 110px rgba(0,0,0,.38),0 0 40px rgba(194,168,120,.06);
}
.home-product-card.offset-1{margin-top:28px;}
.home-product-card.offset-2{margin-top:56px;}
.home-icon{
  display:flex;
  width:52px;height:52px;
  align-items:center;justify-content:center;
  margin-bottom:26px;
  border:1px solid rgba(194,168,120,.2);
  border-radius:999px;
  background:rgba(10,9,6,.8);
  color:var(--home-gold);
  box-shadow:0 0 18px rgba(194,168,120,.08);
}
.home-icon svg,.home-mini-icon svg,.home-preview-icon svg{width:22px;height:22px;fill:none;stroke:currentColor;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round;}
.home-product-card h3{margin-bottom:18px;color:#fff;font-family:var(--home-serif);font-size:34px;font-weight:300;line-height:1;}
.home-product-link{
  display:inline-block;
  margin-top:26px;
  color:var(--home-gold);
  font-size:13px;
  font-weight:700;
  letter-spacing:.04em;
  transition:opacity .2s ease,letter-spacing .2s ease;
}
.home-product-link:hover{opacity:.72;letter-spacing:.06em;}
.home-list{display:flex;flex-direction:column;gap:14px;list-style:none;}
.home-list li{display:flex;gap:10px;align-items:flex-start;color:var(--home-muted);font-size:14px;font-weight:300;line-height:1.6;}
.home-check{width:16px;height:16px;flex:0 0 auto;margin-top:3px;color:var(--home-gold);}

/* ── Preview (execution environment) ── */
.home-section.deep{
  background:#050505;
  position:relative;
}
.home-section.deep::before{
  content:'';
  position:absolute;
  left:50%;top:48%;
  transform:translate(-50%,-50%);
  width:min(1000px,90vw);
  height:500px;
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(194,168,120,.045) 0%,rgba(194,168,120,.02) 40%,transparent 68%);
  pointer-events:none;
}
.home-preview-card{
  max-width:1000px;
  margin:0 auto;
  overflow:hidden;
  border:1px solid rgba(194,168,120,.12);
  border-radius:18px;
  background:rgba(16,18,22,.9);
  box-shadow:
    0 48px 130px rgba(0,0,0,.58),
    0 0 70px rgba(194,168,120,.05),
    0 0 0 1px rgba(194,168,120,.07) inset;
}
.home-preview-bar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:16px 20px;
  border-bottom:1px solid rgba(255,255,255,.06);
  background:rgba(0,0,0,.44);
}
.home-dot{width:10px;height:10px;border-radius:999px;background:rgba(255,255,255,.16);}
.home-preview-tabs{
  margin-left:auto;margin-right:auto;
  display:flex;gap:22px;
  color:var(--home-muted);
  font-family:var(--home-mono);font-size:11px;
  letter-spacing:.1em;text-transform:uppercase;
}
.home-preview-tabs span:first-child{color:var(--home-gold);}
.home-preview-body{display:grid;grid-template-columns:1.2fr .9fr;gap:40px;padding:42px;background:rgba(8,9,11,.6);}
.home-trade-panel{display:flex;flex-direction:column;gap:12px;}
.home-trade-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.05);
  border-radius:8px;
  background:rgba(10,11,13,.55);
}
.home-trade-pair{
  color:var(--home-dim);
  font-family:var(--home-mono);
  font-size:10px;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.home-trade-status-chip{
  padding:3px 9px;
  border-radius:5px;
  background:rgba(194,168,120,.1);
  border:1px solid rgba(194,168,120,.18);
  color:var(--home-gold);
  font-family:var(--home-mono);
  font-size:9px;
  font-weight:700;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.home-trade-leg{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:12px;
  background:#121418;
}
.home-trade-label{margin-bottom:8px;color:var(--home-muted);font-family:var(--home-mono);font-size:10px;letter-spacing:.18em;text-transform:uppercase;}
.home-trade-value{color:#fff;font-size:28px;font-weight:700;letter-spacing:-.02em;}
.home-trade-asset{color:var(--home-muted);font-size:16px;font-weight:500;}
.home-trade-arrow{
  display:flex;width:44px;height:44px;
  align-items:center;justify-content:center;
  margin:0 auto;
  border:1px solid rgba(194,168,120,.22);
  border-radius:999px;
  background:#121418;
  color:var(--home-gold);
  font-size:18px;
}
.home-preview-button{
  min-height:52px;
  border:0;
  border-radius:10px;
  background:linear-gradient(135deg,#CEB98B 0%,#C2A878 52%,#B09060 100%);
  color:#0A0B0D;
  font-size:13px;
  font-weight:800;
  letter-spacing:.12em;
  text-transform:uppercase;
  cursor:pointer;
  box-shadow:0 2px 14px rgba(194,168,120,.2);
  transition:background .2s ease,transform .18s ease;
}
.home-preview-button:hover{
  background:linear-gradient(135deg,#DFCA9B 0%,#D4BD8F 52%,#C2A878 100%);
  transform:translateY(-1px);
}
.home-preview-notes{display:flex;flex-direction:column;justify-content:center;gap:28px;}
.home-preview-note{display:flex;gap:16px;align-items:flex-start;}
.home-preview-icon{
  display:flex;width:42px;height:42px;
  align-items:center;justify-content:center;
  flex:0 0 auto;
  border:1px solid rgba(194,168,120,.18);
  border-radius:999px;
  background:#121418;
  color:var(--home-gold);
}
.home-preview-note h4{margin-bottom:5px;color:#fff;font-size:15px;font-weight:600;}
.home-preview-note p{color:var(--home-muted);font-size:13px;line-height:1.7;}

/* ── How it works ── */
.home-section-steps{
  background:linear-gradient(180deg,#0C0D11 0%,#0A0B0D 60%,#0C0D11 100%);
}
.home-steps{display:grid;grid-template-columns:repeat(3,1fr);gap:30px;position:relative;}
.home-steps::before{
  content:'';
  position:absolute;
  top:27px;
  left:8%;right:8%;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.16) 25%,rgba(194,168,120,.16) 75%,transparent);
  pointer-events:none;
}
.home-step{text-align:center;}
.home-step-num{
  position:relative;
  z-index:1;
  display:flex;
  width:56px;height:56px;
  align-items:center;justify-content:center;
  margin:0 auto 24px;
  border:1px solid rgba(194,168,120,.26);
  border-radius:999px;
  background:#0A0B0D;
  color:var(--home-gold);
  font-family:var(--home-mono);
  font-size:13px;
  box-shadow:0 0 0 6px rgba(194,168,120,.04),0 0 20px rgba(194,168,120,.06);
}
.home-step h3{margin-bottom:12px;color:#fff;font-family:var(--home-serif);font-size:28px;font-weight:300;}
.home-step p{max-width:330px;margin:0 auto;color:var(--home-muted);font-size:14px;font-weight:300;line-height:1.7;}

/* ── Compliance section ── */
.home-section-compliance{
  background:linear-gradient(180deg,#0E1016 0%,#111318 60%,#0E1016 100%);
}
.home-section-compliance::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(58,69,87,.5),transparent);
  pointer-events:none;
}
.home-mini-icon{
  display:flex;width:48px;height:48px;
  align-items:center;justify-content:center;
  border:1px solid rgba(194,168,120,.18);
  border-radius:999px;
  background:#121418;
  color:var(--home-gold);
}
.home-compliance-grid{display:grid;grid-template-columns:minmax(360px,520px) minmax(0,1fr);gap:72px;align-items:center;}
.home-compliance-card{
  position:relative;
  overflow:hidden;
  padding:32px;
  border:1px solid rgba(58,69,87,.22);
  border-radius:16px;
  background:linear-gradient(160deg,#10121A 0%,#0E1016 100%);
  box-shadow:0 32px 90px rgba(0,0,0,.38);
}
.home-compliance-card::before{
  content:'';
  position:absolute;
  top:0;left:0;right:0;
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.22),transparent);
  pointer-events:none;
}
.home-compliance-head{display:flex;gap:16px;align-items:center;margin-bottom:28px;padding-bottom:22px;border-bottom:1px solid rgba(58,69,87,.22);}
.home-compliance-head h3{color:#fff;font-size:18px;font-weight:600;}
.home-compliance-head p{color:var(--home-muted);font-family:var(--home-mono);font-size:10px;letter-spacing:.16em;text-transform:uppercase;}
.home-compliance-list{display:flex;flex-direction:column;gap:18px;}
.home-compliance-row{display:flex;align-items:center;justify-content:space-between;gap:14px;color:var(--home-muted);font-size:14px;}
.home-tag{padding:5px 9px;border-radius:7px;background:rgba(255,255,255,.05);color:#C8CDD6;font-family:var(--home-mono);font-size:11px;white-space:nowrap;}
.home-tag.gold{background:rgba(194,168,120,.12);color:var(--home-gold);border:1px solid rgba(194,168,120,.2);}
.home-tag.steel{background:rgba(58,69,87,.18);color:var(--home-steel-text);border:1px solid rgba(58,69,87,.28);}

/* ── Unused console styles retained for future use ── */
.home-console{position:relative;min-height:540px;border:1px solid rgba(255,255,255,.07);border-radius:16px;background:linear-gradient(180deg,#15171c 0%,#0b0c0f 100%);box-shadow:0 38px 120px rgba(0,0,0,.48);overflow:hidden;}
.home-console::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);background-size:56px 56px;opacity:.7;pointer-events:none;}
.home-console::after{content:'';position:absolute;inset:0;background:linear-gradient(120deg,transparent 0%,transparent 56%,rgba(194,168,120,.11) 56%,transparent 57%,transparent 100%);pointer-events:none;}
.home-console-top{position:relative;z-index:1;display:flex;align-items:center;justify-content:space-between;gap:20px;min-height:58px;padding:0 22px;border-bottom:1px solid rgba(255,255,255,.07);background:rgba(5,5,5,.42);}
.home-console-top div{display:flex;gap:7px;}
.home-console-top div span{width:9px;height:9px;border-radius:999px;background:rgba(255,255,255,.18);}
.home-console-top strong{color:#fff;font-size:13px;font-weight:800;}
.home-console-top em{color:var(--home-dim);font-family:var(--home-mono);font-size:10px;font-style:normal;letter-spacing:.12em;text-transform:uppercase;}
.home-console-body{position:relative;z-index:1;display:flex;flex-direction:column;gap:18px;padding:24px;}
.home-balance-card{display:flex;justify-content:space-between;align-items:center;gap:20px;padding:22px;border:1px solid rgba(194,168,120,.16);border-radius:12px;background:rgba(194,168,120,.08);}
.home-balance-card span,.home-console-grid span,.home-flow-step span,.home-activity-head span{display:block;margin-bottom:8px;color:var(--home-muted);font-family:var(--home-mono);font-size:10px;letter-spacing:.14em;text-transform:uppercase;}
.home-balance-card strong{display:block;color:#fff;font-size:30px;line-height:1.05;}
.home-balance-card small,.home-console-grid small{display:block;margin-top:8px;color:var(--home-muted);font-size:12px;line-height:1.5;}
.home-balance-chip{padding:9px 12px;border:1px solid rgba(194,168,120,.24);border-radius:999px;background:rgba(10,11,13,.62);color:var(--home-gold);font-family:var(--home-mono);font-size:11px;white-space:nowrap;}
.home-flow-card{display:grid;grid-template-columns:1fr 44px 1fr 44px 1fr;align-items:center;gap:10px;padding:18px;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(10,11,13,.62);}
.home-flow-step{min-height:78px;padding:14px;border:1px solid rgba(255,255,255,.07);border-radius:10px;background:#121418;}
.home-flow-step.gold{border-color:rgba(194,168,120,.24);background:rgba(194,168,120,.08);}
.home-flow-step strong{display:block;color:#fff;font-size:18px;}
.home-flow-line{height:1px;background:linear-gradient(90deg,rgba(194,168,120,.12),rgba(194,168,120,.72),rgba(194,168,120,.12));}
.home-console-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:12px;}
.home-console-grid article{min-height:126px;padding:16px;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(18,20,24,.86);}
.home-console-grid strong{display:block;color:#fff;font-size:16px;line-height:1.35;}
.home-activity{overflow:hidden;border:1px solid rgba(255,255,255,.07);border-radius:12px;background:rgba(10,11,13,.62);}
.home-activity-head,.home-activity-row{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:13px 16px;}
.home-activity-head{border-bottom:1px solid rgba(255,255,255,.07);}
.home-activity-head strong{color:#fff;font-size:13px;}
.home-activity-row + .home-activity-row{border-top:1px solid rgba(255,255,255,.06);}
.home-activity-row span{color:#cfd4dc;font-size:13px;}
.home-activity-row strong{color:var(--home-gold);font-family:var(--home-mono);font-size:11px;text-transform:uppercase;}

/* ── Footer copyright fix: override .ai-footer p{max-width:340px} from google-ai-pages.css ── */
.ai-copyright{max-width:none;white-space:nowrap;}

/* ── Cream/gold editorial statement band ── */
.home-band{
  padding:88px 0;
  border-top:1px solid #C2A878;
  border-bottom:1px solid #C2A878;
  background:linear-gradient(160deg,#F0E4C4 0%,#E8D4A0 40%,#DDBE7E 100%);
  text-align:center;
}
.home-band-inner{
  max-width:920px;
  margin:0 auto;
  padding:0 28px;
}
.home-band-quote{
  font-family:var(--home-serif);
  font-size:clamp(32px,4.5vw,60px);
  font-weight:500;
  line-height:1.1;
  letter-spacing:-.01em;
  color:#100D06;
  margin-bottom:28px;
}
.home-band-rule{
  width:56px;
  height:3px;
  margin:0 auto;
  background:#100D06;
  opacity:.55;
}

/* ── CTA ── */
.home-cta{
  position:relative;
  overflow:hidden;
  padding:120px 24px 130px;
  border-top:1px solid rgba(255,255,255,.06);
  text-align:center;
  background:radial-gradient(ellipse 90% 70% at 50% 50%,#150F07 0%,#0A0B0D 58%);
}
.home-cta::before{
  content:'';
  position:absolute;
  left:50%;top:38%;
  transform:translate(-50%,-50%);
  width:min(1000px,90vw);
  height:min(700px,70vw);
  border-radius:50%;
  background:radial-gradient(ellipse at center,rgba(194,168,120,.08) 0%,rgba(194,168,120,.03) 38%,transparent 65%);
  pointer-events:none;
}
.home-cta::after{
  content:'';
  position:absolute;
  top:0;left:50%;
  transform:translateX(-50%);
  width:min(480px,80vw);
  height:1px;
  background:linear-gradient(90deg,transparent,rgba(194,168,120,.3),transparent);
  pointer-events:none;
}
.home-cta-inner{position:relative;z-index:1;max-width:860px;margin:0 auto;}
.home-cta .home-section-copy{color:#AAB2C0;}
.home-cta-note{margin-top:26px;color:var(--home-dim);font-family:var(--home-mono);font-size:11px;letter-spacing:.08em;}

/* ── Responsive ── */
@media(max-width:1180px){
  .home-title{font-size:52px;}
  .home-hero-grid{grid-template-columns:minmax(0,.9fr) minmax(460px,.95fr);gap:44px;}
  .home-console-grid{grid-template-columns:1fr 1fr;}
  .home-console-grid article:last-child{grid-column:1 / -1;}
}
@media(max-width:1060px){
  .home-hero-grid,.home-compliance-grid{grid-template-columns:1fr;}
  .home-hero-wave{left:-360px;top:118px;width:1680px;opacity:.15;transform:rotate(-3deg);}
  .home-hero-grid::after{right:50%;top:64%;width:760px;height:520px;opacity:.5;transform:translate(50%,-44%);}
  .home-title,.home-copy{max-width:760px;}
  .home-hero-image-card{justify-self:stretch;max-width:none;}
  .home-console{min-height:auto;}
  .home-product-grid{grid-template-columns:1fr 1fr;}
  .home-product-card.offset-1,.home-product-card.offset-2{margin-top:0;}
  .home-preview-body{grid-template-columns:1fr;}
}
@media(max-width:720px){
  body::before{display:none;}
  .home-main{padding-top:66px;}
  .home-wrap,.home-hero-grid{padding-left:14px;padding-right:14px;}
  .home-hero{min-height:auto;}
  .home-hero::after{
    background:
      linear-gradient(90deg,rgba(5,5,5,.82),rgba(5,5,5,.38) 68%,rgba(5,5,5,.54)),
      linear-gradient(180deg,rgba(194,168,120,.04),rgba(0,0,0,.32));
  }
  .home-hero-wave,
  .home-hero-grid::after{display:none;}
  .home-hero-grid{padding-top:34px;padding-bottom:34px;gap:22px;}
  .home-hero-grid > div{min-width:0;}
  .home-badge{margin-bottom:14px;padding:6px 12px;font-size:8px;letter-spacing:.14em;}
  .home-title{max-width:calc(100vw - 28px);font-size:30px;line-height:1.06;margin-bottom:14px;letter-spacing:-.015em;}
  .home-mobile-title-break{display:block;}
  .home-title span{display:block;}
  .home-copy{max-width:100%;font-size:13px;line-height:1.58;margin-bottom:20px;}
  .home-actions{flex-direction:column;}
  .home-btn,.home-btn-ghost{width:100%;min-height:46px;padding:0 18px;font-size:13px;border-radius:8px;}
  .home-proof{grid-template-columns:1fr;}
  .home-proof-item{padding:11px;gap:9px;}
  .home-proof-label{font-size:11px;line-height:1.42;}
  .home-proof-label strong{font-size:12px;}
  .home-hero-image-card{border-radius:14px;}
  .home-hero-image-card::before{display:none;}
  .home-hero-image-card::after{
    background:
      linear-gradient(180deg,rgba(255,255,255,.05),rgba(5,5,5,0) 34%,rgba(0,0,0,.2)),
      linear-gradient(135deg,rgba(194,168,120,.1),transparent 34%,transparent 74%,rgba(194,168,120,.06));
  }
  .home-hero-image-card img{filter:none;transform:none;}
  .home-console{border-radius:12px;}
  .home-console-top{padding:0 14px;}
  .home-console-top em{display:none;}
  .home-console-body{padding:14px;gap:12px;}
  .home-balance-card{align-items:flex-start;flex-direction:column;padding:16px;}
  .home-balance-card strong{font-size:24px;}
  .home-flow-card{grid-template-columns:1fr;padding:12px;}
  .home-flow-line{height:20px;width:1px;margin:0 auto;background:linear-gradient(180deg,rgba(194,168,120,.12),rgba(194,168,120,.72),rgba(194,168,120,.12));}
  .home-console-grid{grid-template-columns:1fr;}
  .home-console-grid article:last-child{grid-column:auto;}
  .home-section{padding:56px 0;}
  .home-section-head{margin-bottom:28px;}
  .home-eyebrow{margin-bottom:12px;font-size:9px;letter-spacing:.16em;}
  .home-heading{font-size:26px;line-height:1.15;}
  .home-section-copy{font-size:13px;line-height:1.6;margin-top:12px;}
  .home-product-grid,.home-steps{grid-template-columns:1fr;}
  .home-product-card{min-height:auto;padding:22px;border-radius:14px;}
  .home-product-card.offset-1,.home-product-card.offset-2{margin-top:0;}
  .home-product-card h3{font-size:26px;margin-bottom:14px;}
  .home-icon,.home-mini-icon{width:42px;height:42px;margin-bottom:18px;}
  .home-list{gap:10px;}
  .home-list li,.home-step p{font-size:12px;line-height:1.55;}
  .home-steps::before{display:none;}
  .home-preview-body{padding:16px;gap:18px;}
  .home-preview-tabs{display:none;}
  .home-trade-meta{padding:8px 12px;}
  .home-trade-leg{align-items:flex-start;flex-direction:column;padding:14px;}
  .home-trade-value{font-size:22px;}
  .home-preview-note p{font-size:12px;line-height:1.55;}
  .home-step-num{width:44px;height:44px;margin-bottom:14px;font-size:11px;}
  .home-step h3{font-size:24px;margin-bottom:8px;}
  .home-compliance-card{padding:18px;}
  .home-compliance-row{align-items:flex-start;flex-direction:column;gap:8px;}
  .home-cta{padding:60px 16px 72px;}
  .home-band{padding:56px 0;}
  .home-band-rule{width:40px;height:3px;}
}

/* ─────────────────────────────────────────────
   PHASE 3 — Product-led UI panels & polish
   ───────────────────────────────────────────── */

/* ── Product card mini-panels ── */
.hpc-widget{
  margin-top:20px;
  padding:13px;
  border:1px solid rgba(255,255,255,.07);
  border-radius:10px;
  background:rgba(6,7,9,.55);
}
.hpc-widget-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.hpc-widget-row + .hpc-widget-row{margin-top:9px;}
.hpc-widget-divider{
  text-align:center;
  padding:5px 0;
  color:rgba(194,168,120,.5);
  font-size:13px;
}
.hpc-widget-footer{
  display:flex;
  flex-wrap:wrap;
  gap:5px;
  margin-top:10px;
  padding-top:10px;
  border-top:1px solid rgba(255,255,255,.05);
}
.hpc-wlabel{
  color:var(--home-dim);
  font-family:var(--home-mono);
  font-size:9px;
  letter-spacing:.12em;
  text-transform:uppercase;
  flex-shrink:0;
}
.hpc-wvalue{
  color:#fff;
  font-size:12px;
  font-weight:600;
  text-align:right;
}
.hpc-wvalue.gold{color:var(--home-gold);}
.hpc-wchip{
  display:inline-block;
  padding:3px 8px;
  border-radius:5px;
  background:rgba(194,168,120,.08);
  border:1px solid rgba(194,168,120,.15);
  color:var(--home-gold);
  font-family:var(--home-mono);
  font-size:9px;
  letter-spacing:.08em;
  text-transform:uppercase;
  white-space:nowrap;
}
.hpc-wchip.muted{
  background:rgba(255,255,255,.04);
  border-color:rgba(255,255,255,.08);
  color:var(--home-dim);
}
.hpc-wchip.success{
  background:rgba(0,230,118,.07);
  border-color:rgba(0,230,118,.2);
  color:var(--home-success);
}
.hpc-otc-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.hpc-otc-row + .hpc-otc-row{margin-top:8px;}
.hpc-bill-item{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:8px;
}
.hpc-bill-item + .hpc-bill-item{margin-top:8px;}

/* ── Preview trade signals ── */
.home-trade-signals{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  padding-top:2px;
}
.hts-chip{
  display:inline-block;
  padding:4px 9px;
  border-radius:5px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  color:var(--home-muted);
  font-family:var(--home-mono);
  font-size:9px;
  font-weight:600;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.hts-verified{
  background:rgba(0,230,118,.07);
  border-color:rgba(0,230,118,.2);
  color:var(--home-success);
}
.hts-dim{
  background:rgba(255,255,255,.02);
  border-color:rgba(255,255,255,.05);
  color:var(--home-dim);
}

/* ── CTA product chip row ── */
.home-cta-chips{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin-top:28px;
}
.home-cta-chip{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.03);
  color:var(--home-muted);
  font-size:12px;
  font-weight:500;
  transition:border-color .2s ease,background .2s ease,color .2s ease;
}
.home-cta-chip:hover{
  border-color:rgba(194,168,120,.28);
  background:rgba(194,168,120,.05);
  color:var(--home-champagne);
}
.home-cta-chip svg{
  display:block;
  width:16px;height:16px;
  min-width:16px;min-height:16px;
  flex:0 0 16px;
  fill:none;
  stroke:var(--home-gold);
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

/* ── Product card: remove fixed min-height now panels add natural height ── */
.home-product-card{min-height:0;}

/* ── Responsive — Phase 3 additions ── */
@media(max-width:1060px){
  .home-product-card.offset-1,.home-product-card.offset-2{margin-top:0;}
}
@media(max-width:720px){
  .hpc-widget{margin-top:14px;padding:10px;}
  .hpc-wlabel{font-size:8px;}
  .hpc-wchip{font-size:8px;padding:2px 6px;}
  .home-trade-signals{gap:5px;}
  .hts-chip{font-size:8px;padding:3px 7px;}
  .home-cta-chips{gap:7px;}
  .home-cta-chip{font-size:11px;padding:7px 12px;gap:6px;}
  .home-cta-chip svg{display:block;width:14px;height:14px;min-width:14px;min-height:14px;flex:0 0 14px;}
}
