:root {
  --bg: #07110f;
  --bg-soft: #0c1c19;
  --panel: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.14);
  --text: #f5f1e8;
  --muted: #aeb9b2;
  --gold: #d6b265;
  --gold-soft: rgba(214, 178, 101, 0.18);
  --green: #52c596;
  --green-soft: rgba(82, 197, 150, 0.16);
  --teal: #4dd4c8;
  --teal-soft: rgba(77, 212, 200, 0.16);
  --amber: #f0a84b;
  --amber-soft: rgba(240, 168, 75, 0.16);
  --coral: #e8786a;
  --coral-soft: rgba(232, 120, 106, 0.15);
  --blue: #6b9fd4;
  --blue-soft: rgba(107, 159, 212, 0.15);
  --violet: #a88fd8;
  --violet-soft: rgba(168, 143, 216, 0.14);
  --ink: #14231f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body {
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-shell {
  width: 100%;
  min-height: 1080px;
  position: relative;
  background:
    radial-gradient(circle at 12% 18%, rgba(77, 212, 200, 0.12), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(240, 168, 75, 0.14), transparent 24%),
    radial-gradient(circle at 76% 68%, rgba(107, 159, 212, 0.1), transparent 26%),
    radial-gradient(circle at 24% 82%, rgba(168, 143, 216, 0.08), transparent 20%),
    radial-gradient(circle at 76% 24%, rgba(214, 178, 101, 0.2), transparent 28%),
    linear-gradient(135deg, #06100e 0%, #0b1917 38%, #0a1a22 62%, #07110f 100%);
}

.site-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent 80%);
  pointer-events: none;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatPanel {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes growBar {
  from { transform: scaleY(0.45); opacity: 0.6; }
  to { transform: scaleY(1); opacity: 1; }
}

@keyframes ledgerPulse {
  0%, 100% { opacity: 0.45; }
  50% { opacity: 1; }
}

.nav,
.hero,
.product-showcase,
.trust-strip,
.content-grid,
.section-block,
.process-band,
.detail-split,
.cta-band {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.nav {
  height: 86px;
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(90deg, rgba(3, 16, 13, 0.92), rgba(22, 25, 13, 0.9)),
    rgba(3, 16, 13, 0.88);
  backdrop-filter: blur(16px);
}

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

.brand-mark {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  background: rgba(245, 241, 232, 0.04);
  box-shadow: 0 10px 24px rgba(2, 8, 6, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.35;
  max-width: 340px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #dce4de;
  font-size: 14px;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--teal);
}

.nav-links a:nth-child(2):hover { color: var(--gold); }
.nav-links a:nth-child(3):hover { color: var(--amber); }
.nav-links a:nth-child(4):hover { color: var(--blue); }

.nav-action,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
}

.nav-action,
.primary-btn {
  color: #14231f;
  background: linear-gradient(135deg, #e8c87a 0%, var(--gold) 52%, #c9a04e 100%);
  box-shadow: 0 18px 42px rgba(214, 178, 101, 0.22);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.nav-action:hover,
.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 48px rgba(214, 178, 101, 0.32);
}

.secondary-btn {
  border: 1px solid rgba(77, 212, 200, 0.38);
  color: var(--text);
  background: linear-gradient(135deg, rgba(77, 212, 200, 0.1), rgba(255, 255, 255, 0.04));
  transition: border-color 160ms ease, background 160ms ease;
}

.secondary-btn:hover {
  border-color: rgba(77, 212, 200, 0.62);
  background: linear-gradient(135deg, rgba(77, 212, 200, 0.16), rgba(255, 255, 255, 0.06));
}

.hero {
  height: 510px;
  display: grid;
  grid-template-columns: 520px minmax(0, 1fr);
  align-items: center;
  gap: 56px;
}

.hero-copy,
.hero-visual,
.product-showcase,
.trust-strip,
.section-block,
.process-band,
.detail-split,
.contact-preview,
.cta-band {
  animation: fadeUp 700ms ease both;
}

.hero-visual { animation-delay: 120ms; }
.product-showcase { animation-delay: 150ms; }
.trust-strip { animation-delay: 180ms; }

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-block:nth-of-type(odd) .eyebrow { color: var(--teal); }
.section-block:nth-of-type(even) .eyebrow { color: var(--amber); }
.detail-split .eyebrow { color: var(--violet); }
.contact-preview .eyebrow { color: var(--blue); }
.product-showcase .eyebrow { color: var(--green); }
.cta-band .eyebrow { color: var(--coral); }

.hero h1,
.page-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.hero h1 {
  background: linear-gradient(120deg, #fff8ee 0%, var(--text) 42%, #c8efe4 78%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text {
  max-width: 500px;
  margin: 22px 0 28px;
  color: #c6d1ca;
  font-size: 18px;
  line-height: 1.58;
}

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

.product-showcase {
  margin-top: 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  align-items: center;
  gap: 48px;
  padding: 28px;
  border: 1px solid rgba(82, 197, 150, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 197, 150, 0.1) 0%, rgba(255, 255, 255, 0.04) 42%, rgba(168, 143, 216, 0.08) 100%),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.product-brand-lockup {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.product-logo {
  width: 88px;
  height: 88px;
  flex: 0 0 auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.24));
}

.product-brand-lockup h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
}

.product-tagline {
  margin: 8px 0 0;
  color: var(--green);
  font-size: 16px;
  font-weight: 700;
}

.product-lead {
  margin: 0;
  max-width: 560px;
  color: #c6d1ca;
  font-size: 17px;
  line-height: 1.6;
}

.product-points {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.product-points li {
  position: relative;
  padding-left: 22px;
  color: #dce4de;
  font-size: 15px;
  line-height: 1.5;
}

.product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--teal));
  box-shadow: 0 0 0 4px rgba(82, 197, 150, 0.12);
}

.product-showcase-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 12%, rgba(82, 197, 150, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.04);
}

.product-showcase-visual img {
  width: min(100%, 300px);
  height: auto;
  display: block;
  border-radius: 24px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.32);
}

.hero-visual {
  position: relative;
  height: 470px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  overflow: hidden;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.34);
}

.hero-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.96) contrast(1.04) brightness(0.96);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(77, 212, 200, 0.08) 0%, transparent 38%),
    linear-gradient(220deg, rgba(240, 168, 75, 0.1) 0%, transparent 42%),
    linear-gradient(180deg, rgba(7, 17, 15, 0) 24%, rgba(7, 17, 15, 0.86) 100%);
}

.liquidity-panel,
.market-card {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(9, 23, 20, 0.82);
  backdrop-filter: blur(16px);
}

.liquidity-panel {
  top: 28px;
  right: 28px;
  width: 250px;
  padding: 18px;
  animation: floatPanel 5.5s ease-in-out infinite;
  border-color: rgba(77, 212, 200, 0.32);
  background: linear-gradient(160deg, rgba(9, 23, 20, 0.88), rgba(77, 212, 200, 0.08));
}

.market-card {
  left: 28px;
  bottom: 28px;
  width: 360px;
  padding: 22px;
  border-color: rgba(240, 168, 75, 0.32);
  background: linear-gradient(160deg, rgba(9, 23, 20, 0.88), rgba(240, 168, 75, 0.08));
}

.liquidity-panel span,
.market-card small,
.trust-strip span,
.card-label,
.office-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.liquidity-panel strong,
.market-card b {
  display: block;
  margin-top: 8px;
  color: var(--text);
  font-size: 19px;
}

.signal-bars {
  display: flex;
  align-items: end;
  gap: 8px;
  height: 56px;
  margin-top: 18px;
}

.signal-bars i {
  width: 32px;
  border-radius: 6px 6px 0 0;
  transform-origin: bottom;
  animation: growBar 1.4s ease both;
}

.signal-bars i:nth-child(1) { height: 28px; background: linear-gradient(180deg, var(--teal), rgba(77, 212, 200, 0.55)); }
.signal-bars i:nth-child(2) { height: 42px; animation-delay: 120ms; background: linear-gradient(180deg, var(--gold), rgba(214, 178, 101, 0.62)); }
.signal-bars i:nth-child(3) { height: 34px; animation-delay: 240ms; background: linear-gradient(180deg, var(--green), rgba(82, 197, 150, 0.62)); }
.signal-bars i:nth-child(4) { height: 52px; animation-delay: 360ms; background: linear-gradient(180deg, var(--amber), rgba(240, 168, 75, 0.62)); }
.signal-bars i:nth-child(5) { height: 46px; animation-delay: 480ms; background: linear-gradient(180deg, var(--blue), rgba(107, 159, 212, 0.62)); }

.market-card p {
  margin: 12px 0 0;
  color: #c5d1cb;
  line-height: 1.55;
}

.trust-strip {
  min-height: 126px;
  height: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(77, 212, 200, 0.06), rgba(255, 255, 255, 0.04) 40%, rgba(240, 168, 75, 0.06)),
    rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(18px);
}

.trust-strip div {
  display: grid;
  grid-template-columns: 34px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  row-gap: 6px;
  align-content: center;
  padding: 24px 30px;
  border-right: 1px solid var(--line);
  position: relative;
  overflow: visible;
}

.trust-strip div::after {
  content: "";
  position: absolute;
  inset: auto 22px 0 22px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 180ms ease;
}

.trust-strip div:nth-child(1)::after { background: linear-gradient(90deg, transparent, var(--teal), transparent); }
.trust-strip div:nth-child(2)::after { background: linear-gradient(90deg, transparent, var(--amber), transparent); }
.trust-strip div:nth-child(3)::after { background: linear-gradient(90deg, transparent, var(--blue), transparent); }

.trust-strip div:hover::after {
  opacity: 1;
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip strong {
  display: block;
  grid-column: 2;
  margin-top: 0;
  font-size: 18px;
  line-height: 1.34;
  overflow-wrap: anywhere;
}

.trust-icon {
  width: 28px;
  height: 28px;
  display: inline-grid;
  place-items: center;
  grid-row: 1 / span 2;
  margin-right: 0;
  margin-top: 2px;
  border: 1px solid rgba(214, 178, 101, 0.42);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(214, 178, 101, 0.09);
}

.trust-strip div:nth-child(1) .trust-icon {
  border-color: rgba(77, 212, 200, 0.48);
  color: var(--teal);
  background: var(--teal-soft);
}

.trust-strip div:nth-child(2) .trust-icon {
  border-color: rgba(240, 168, 75, 0.48);
  color: var(--amber);
  background: var(--amber-soft);
}

.trust-strip div:nth-child(3) .trust-icon {
  border-color: rgba(107, 159, 212, 0.48);
  color: var(--blue);
  background: var(--blue-soft);
}

.content-grid {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1.1fr 0.85fr 0.85fr 1fr;
  gap: 18px;
}

.solution-mosaic {
  width: min(1200px, calc(100% - 48px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: 1.15fr 0.78fr 0.78fr 1fr;
  grid-template-rows: minmax(250px, auto) minmax(230px, auto);
  gap: 18px;
  position: relative;
  z-index: 1;
  animation: fadeUp 700ms ease 240ms both;
}

.asset-panel {
  grid-row: 1 / span 2;
  padding: 26px;
  border: 1px solid rgba(214, 178, 101, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(214, 178, 101, 0.16), rgba(82, 197, 150, 0.08)),
    rgba(255, 255, 255, 0.06);
  overflow: hidden;
  position: relative;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.asset-panel::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -80px;
  border: 1px solid rgba(214, 178, 101, 0.35);
  border-radius: 50%;
}

.asset-panel h2 {
  margin: 12px 0;
  font-size: 29px;
  line-height: 1.1;
}

.asset-panel p {
  margin: 0;
  color: #c5d1cb;
  line-height: 1.55;
}

.asset-panel a {
  display: inline-flex;
  margin-top: 18px;
  color: var(--gold);
  font-weight: 800;
}

.mini-ledger {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.mini-ledger i {
  width: var(--w);
  height: 8px;
  border-radius: 99px;
  animation: ledgerPulse 2.4s ease-in-out infinite;
}

.mini-ledger i:nth-child(1) { background: linear-gradient(90deg, var(--gold), var(--amber)); }
.mini-ledger i:nth-child(2) { background: linear-gradient(90deg, var(--teal), var(--green)); animation-delay: 180ms; }
.mini-ledger i:nth-child(3) { background: linear-gradient(90deg, var(--blue), var(--violet)); animation-delay: 360ms; }

.service-card,
.office-card {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  overflow: hidden;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover,
.office-card:hover,
.feature-grid article:hover,
.faq-grid article:hover,
.prep-grid article:hover,
.contact-preview article:hover,
.asset-panel:hover {
  transform: translateY(-4px);
  border-color: rgba(214, 178, 101, 0.42);
  background-color: rgba(255, 255, 255, 0.09);
}

.service-card {
  padding: 22px;
}

.solution-mosaic .service-card {
  min-height: 0;
  overflow: visible;
}

.icon-card {
  display: flex;
  flex-direction: column;
}

.solution-mosaic .service-card:nth-child(2) {
  grid-column: 2;
  grid-row: 1;
  border-color: rgba(77, 212, 200, 0.28);
  background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.05));
}

.solution-mosaic .service-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  border-color: rgba(240, 168, 75, 0.28);
  background: linear-gradient(160deg, var(--amber-soft), rgba(255, 255, 255, 0.05));
}

.insight-card {
  grid-column: 2 / span 2;
  grid-row: 2;
  border-color: rgba(168, 143, 216, 0.32);
  background: linear-gradient(135deg, var(--violet-soft), rgba(107, 159, 212, 0.08), rgba(255, 255, 255, 0.05));
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(214, 178, 101, 0.16), rgba(255, 255, 255, 0.06));
}

.service-card h2,
.service-card h3,
.page-list h2,
.contact-grid h2 {
  margin: 10px 0;
  letter-spacing: 0;
}

.service-card h2 {
  font-size: 25px;
  line-height: 1.12;
}

.service-card h3 {
  font-size: 21px;
}

.service-card p,
.page-list p,
.contact-grid p,
.about-band p {
  color: #c5d1cb;
  line-height: 1.52;
}

.service-card a {
  display: inline-flex;
  margin-top: 8px;
  color: var(--gold);
  font-weight: 800;
}

.icon-dot {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold);
  box-shadow: inset 0 0 0 9px rgba(7, 17, 15, 0.25);
}

.icon-dot.green {
  background: var(--green);
}

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 178, 101, 0.48);
  border-radius: 8px;
  background: rgba(214, 178, 101, 0.14);
  color: var(--gold);
}

.icon-box.green {
  border-color: rgba(82, 197, 150, 0.5);
  background: rgba(82, 197, 150, 0.13);
  color: var(--green);
}

.icon-box.teal {
  border-color: rgba(77, 212, 200, 0.5);
  background: var(--teal-soft);
  color: var(--teal);
}

.icon-box.amber {
  border-color: rgba(240, 168, 75, 0.5);
  background: var(--amber-soft);
  color: var(--amber);
}

.icon-box.blue {
  border-color: rgba(107, 159, 212, 0.5);
  background: var(--blue-soft);
  color: var(--blue);
}

.icon-box.coral {
  border-color: rgba(232, 120, 106, 0.5);
  background: var(--coral-soft);
  color: var(--coral);
}

.icon-box.violet {
  border-color: rgba(168, 143, 216, 0.5);
  background: var(--violet-soft);
  color: var(--violet);
}

.feature-grid article:nth-child(1) .icon-box { border-color: rgba(214, 178, 101, 0.5); background: var(--gold-soft); color: var(--gold); }
.feature-grid article:nth-child(2) .icon-box { border-color: rgba(77, 212, 200, 0.5); background: var(--teal-soft); color: var(--teal); }
.feature-grid article:nth-child(3) .icon-box { border-color: rgba(82, 197, 150, 0.5); background: var(--green-soft); color: var(--green); }
.feature-grid article:nth-child(4) .icon-box { border-color: rgba(107, 159, 212, 0.5); background: var(--blue-soft); color: var(--blue); }

.icon-box svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.office-card {
  position: relative;
  grid-column: 4;
  grid-row: 1 / span 2;
}

.office-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.74;
}

.office-card div {
  position: absolute;
  inset: auto 20px 20px 20px;
}

.office-card strong {
  display: block;
  margin-top: 8px;
  font-size: 19px;
  line-height: 1.26;
}

.inner-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 14%, rgba(77, 212, 200, 0.1), transparent 24%),
    radial-gradient(circle at 70% 10%, rgba(214, 178, 101, 0.16), transparent 26%),
    radial-gradient(circle at 88% 72%, rgba(168, 143, 216, 0.08), transparent 22%),
    var(--bg);
}

.inner-page .nav,
.page-hero,
.page-list,
.about-band,
.contact-grid,
.section-block,
.detail-split,
.cta-band,
.policy-document,
.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

.page-hero {
  padding: 110px 0 70px;
}

.page-hero h1 {
  max-width: 860px;
  font-size: 56px;
}

.page-intro {
  max-width: 760px;
  margin: 24px 0 0;
  color: #c5d1cb;
  font-size: 19px;
  line-height: 1.7;
}

.inner-page:has(.policy-document) .page-hero h1,
.inner-page:has(.policy-document) .page-intro {
  max-width: none;
}

.page-list,
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.contact-grid-compact {
  grid-template-columns: repeat(2, 1fr);
}

.page-list article,
.contact-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  transition: transform 180ms ease, border-color 180ms ease;
}

.page-list article:nth-child(1),
.contact-grid article:nth-child(1) {
  background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(214, 178, 101, 0.22);
}

.page-list article:nth-child(2),
.contact-grid article:nth-child(2) {
  background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(77, 212, 200, 0.22);
}

.page-list article:nth-child(3),
.contact-grid article:nth-child(3) {
  background: linear-gradient(160deg, var(--blue-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(107, 159, 212, 0.22);
}

.page-list article:hover,
.contact-grid article:hover {
  transform: translateY(-4px);
}

.page-list.expanded article {
  min-height: 300px;
}

.contact-grid small {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.55;
}

.contact-form-section {
  width: min(1200px, calc(100% - 48px));
  margin: 72px auto 0;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: start;
}

.policy-layout {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.policy-layout article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.policy-layout h2 {
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.25;
}

.policy-layout p {
  margin: 0;
  color: #c5d1cb;
  line-height: 1.65;
}

.policy-document {
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.policy-intro,
.policy-document article {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.policy-intro p,
.policy-document p {
  margin: 0 0 14px;
  color: #c5d1cb;
  line-height: 1.65;
}

.policy-intro p:last-child,
.policy-document p:last-child {
  margin-bottom: 0;
}

.policy-document h2 {
  margin: 0 0 16px;
  font-size: 24px;
  line-height: 1.25;
}

.policy-document h3 {
  margin: 22px 0 12px;
  font-size: 18px;
  line-height: 1.35;
  color: var(--text);
}

.policy-document ul {
  margin: 0 0 14px;
  padding-left: 22px;
  color: #c5d1cb;
  line-height: 1.65;
}

.policy-document li + li {
  margin-top: 8px;
}

.policy-document a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-meta {
  list-style: none;
  padding-left: 0;
  margin: 18px 0 0;
}

.policy-meta li + li {
  margin-top: 10px;
}

.policy-note {
  margin-top: 18px;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 8px 8px 0;
  background: rgba(214, 178, 101, 0.08);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
}

.contact-form label {
  display: grid;
  gap: 10px;
}

.contact-form label span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(7, 17, 15, 0.72);
  color: var(--text);
  font: inherit;
  outline: none;
  padding: 14px 15px;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form textarea {
  resize: vertical;
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(197, 209, 203, 0.55);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(214, 178, 101, 0.72);
  background: rgba(7, 17, 15, 0.9);
  box-shadow: 0 0 0 3px rgba(214, 178, 101, 0.12);
}

.message-field,
.form-actions {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.submit-btn {
  border: 0;
  cursor: pointer;
}

.submit-btn:disabled {
  cursor: wait;
  opacity: 0.82;
}

.btn-loading {
  display: none;
}

.submit-btn.is-loading .btn-label {
  display: none;
}

.submit-btn.is-loading .btn-loading {
  display: inline;
}

.form-status {
  margin: 0;
  color: var(--green);
  font-weight: 700;
  line-height: 1.45;
}

.about-band {
  display: grid;
  grid-template-columns: 520px 1fr;
  gap: 42px;
  align-items: center;
}

.about-band img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 8px;
}

.about-band p {
  font-size: 24px;
}

.about-band + .page-list {
  margin-top: 64px;
}

.account-delete-section {
  margin-top: 72px;
}

.section-block {
  margin-top: 72px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 28px;
}

.section-heading h2,
.detail-split h2,
.cta-band h2 {
  margin: 0;
  font-size: 38px;
  line-height: 1.16;
  letter-spacing: 0;
}

.feature-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.feature-grid.compact {
  grid-template-columns: repeat(3, 1fr);
}

.feature-grid article,
.faq-grid article {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.feature-grid article:nth-child(1) { background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.04)); }
.feature-grid article:nth-child(2) { background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.04)); }
.feature-grid article:nth-child(3) { background: linear-gradient(160deg, var(--green-soft), rgba(255, 255, 255, 0.04)); }
.feature-grid article:nth-child(4) { background: linear-gradient(160deg, var(--blue-soft), rgba(255, 255, 255, 0.04)); }

.feature-grid.compact article:nth-child(1) { background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(214, 178, 101, 0.22); }
.feature-grid.compact article:nth-child(2) { background: linear-gradient(160deg, var(--amber-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(240, 168, 75, 0.22); }
.feature-grid.compact article:nth-child(3) { background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(77, 212, 200, 0.22); }
.feature-grid.compact article:nth-child(4) { background: linear-gradient(160deg, var(--green-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(82, 197, 150, 0.22); }
.feature-grid.compact article:nth-child(5) { background: linear-gradient(160deg, var(--coral-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(232, 120, 106, 0.22); }
.feature-grid.compact article:nth-child(6) { background: linear-gradient(160deg, var(--violet-soft), rgba(255, 255, 255, 0.04)); border-color: rgba(168, 143, 216, 0.22); }





.feature-grid h3,
.faq-grid h3,
.timeline-list h3 {
  margin: 0 0 12px;
  font-size: 21px;
  line-height: 1.25;
}

.feature-grid p,
.faq-grid p,
.timeline-list p,
.text-stack p,
.cta-band p {
  margin: 0;
  color: #c5d1cb;
  line-height: 1.62;
}

.process-band {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background:
    linear-gradient(90deg, var(--teal-soft), rgba(255, 255, 255, 0.04) 25%, var(--amber-soft) 50%, var(--blue-soft) 75%, var(--violet-soft)),
    rgba(255, 255, 255, 0.055);
  position: relative;
}


.prep-grid,
.contact-preview {
  display: grid;
  gap: 18px;
}

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

.prep-grid article,
.contact-preview article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.065);
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.prep-grid article:nth-child(1) {
  background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(77, 212, 200, 0.24);
}

.prep-grid article:nth-child(2) {
  background: linear-gradient(160deg, var(--amber-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(240, 168, 75, 0.24);
}

.prep-grid article:nth-child(3) {
  background: linear-gradient(160deg, var(--blue-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(107, 159, 212, 0.24);
}

.prep-grid span,
.contact-preview span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.prep-grid article:nth-child(1) span { color: var(--teal); }
.prep-grid article:nth-child(2) span { color: var(--amber); }
.prep-grid article:nth-child(3) span { color: var(--blue); }

.prep-grid h3 {
  margin: 0 0 10px;
  font-size: 22px;
}

.faq-grid article:nth-child(1) { background: linear-gradient(160deg, var(--gold-soft), rgba(255, 255, 255, 0.04)); }
.faq-grid article:nth-child(2) { background: linear-gradient(160deg, var(--green-soft), rgba(255, 255, 255, 0.04)); }
.faq-grid article:nth-child(3) { background: linear-gradient(160deg, var(--coral-soft), rgba(255, 255, 255, 0.04)); }
.faq-grid article:nth-child(4) { background: linear-gradient(160deg, var(--violet-soft), rgba(255, 255, 255, 0.04)); }

.faq-grid article:nth-child(1) h3 { color: #f0dfa8; }
.faq-grid article:nth-child(2) h3 { color: #9ee8c8; }
.faq-grid article:nth-child(3) h3 { color: #f0b5ac; }
.faq-grid article:nth-child(4) h3 { color: #cfc0ef; }

.prep-grid p {
  margin: 0;
  color: #c5d1cb;
  line-height: 1.62;
}

.contact-preview {
  width: min(1200px, calc(100% - 48px));
  margin: 72px auto 0;
  position: relative;
  z-index: 1;
  grid-template-columns: 1.2fr repeat(2, 1fr);
  align-items: stretch;
}

.contact-preview > div {
  padding: 28px;
  border: 1px solid rgba(107, 159, 212, 0.28);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(107, 159, 212, 0.14), rgba(77, 212, 200, 0.1), rgba(255, 255, 255, 0.05));
}

.contact-preview article:nth-child(2) {
  background: linear-gradient(160deg, var(--teal-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(77, 212, 200, 0.24);
}

.contact-preview article:nth-child(3) {
  background: linear-gradient(160deg, var(--amber-soft), rgba(255, 255, 255, 0.04));
  border-color: rgba(240, 168, 75, 0.24);
}

.contact-preview article:nth-child(2) span { color: var(--teal); }
.contact-preview article:nth-child(3) span { color: var(--amber); }

.contact-preview h2 {
  margin: 0;
  font-size: 32px;
  line-height: 1.18;
}

.contact-preview strong {
  display: block;
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

.asset-glyph {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  border: 1px solid rgba(214, 178, 101, 0.44);
  border-radius: 8px;
  color: var(--gold);
  background: rgba(214, 178, 101, 0.1);
  font-size: 21px;
}

.feature-grid.compact article:nth-child(1) .asset-glyph { border-color: rgba(214, 178, 101, 0.48); color: var(--gold); background: var(--gold-soft); }
.feature-grid.compact article:nth-child(2) .asset-glyph { border-color: rgba(240, 168, 75, 0.48); color: var(--amber); background: var(--amber-soft); }
.feature-grid.compact article:nth-child(3) .asset-glyph { border-color: rgba(77, 212, 200, 0.48); color: var(--teal); background: var(--teal-soft); }
.feature-grid.compact article:nth-child(4) .asset-glyph { border-color: rgba(82, 197, 150, 0.48); color: var(--green); background: var(--green-soft); }
.feature-grid.compact article:nth-child(5) .asset-glyph { border-color: rgba(232, 120, 106, 0.48); color: var(--coral); background: var(--coral-soft); }
.feature-grid.compact article:nth-child(6) .asset-glyph { border-color: rgba(168, 143, 216, 0.48); color: var(--violet); background: var(--violet-soft); }

.process-band div {
  min-height: 190px;
  padding: 26px;
  border-right: 1px solid var(--line);
  position: relative;
}

.process-band div:last-child {
  border-right: 0;
}

.process-band span,
.timeline-list span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.step-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 8px;
  color: #14231f;
  background: var(--gold);
  box-shadow: 0 16px 36px rgba(214, 178, 101, 0.18);
}

.process-band div:nth-child(1) .step-icon {
  background: linear-gradient(135deg, #7ee8df, var(--teal));
  box-shadow: 0 16px 36px rgba(77, 212, 200, 0.22);
}

.process-band div:nth-child(2) .step-icon {
  background: linear-gradient(135deg, #f5c86a, var(--gold));
  box-shadow: 0 16px 36px rgba(214, 178, 101, 0.22);
}

.process-band div:nth-child(3) .step-icon {
  background: linear-gradient(135deg, #f5bc6a, var(--amber));
  box-shadow: 0 16px 36px rgba(240, 168, 75, 0.22);
}

.process-band div:nth-child(4) .step-icon {
  background: linear-gradient(135deg, #8eb8e8, var(--blue));
  box-shadow: 0 16px 36px rgba(107, 159, 212, 0.22);
}

.process-band div:nth-child(1) span { color: var(--teal); }
.process-band div:nth-child(2) span { color: var(--gold); }
.process-band div:nth-child(3) span { color: var(--amber); }
.process-band div:nth-child(4) span { color: var(--blue); }

.process-band strong {
  display: block;
  font-size: 19px;
  line-height: 1.38;
}

.detail-split {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  align-items: start;
}

.timeline-list,
.text-stack {
  display: grid;
  gap: 16px;
}

.timeline-list article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.timeline-list span {
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid rgba(214, 178, 101, 0.5);
  border-radius: 8px;
  background: rgba(214, 178, 101, 0.12);
}

.text-stack p {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 18px;
  border-left: 3px solid var(--gold);
}

.text-stack p:nth-child(1) { border-left-color: var(--teal); background: linear-gradient(90deg, var(--teal-soft), rgba(255, 255, 255, 0.04)); }
.text-stack p:nth-child(2) { border-left-color: var(--amber); background: linear-gradient(90deg, var(--amber-soft), rgba(255, 255, 255, 0.04)); }
.text-stack p:nth-child(3) { border-left-color: var(--blue); background: linear-gradient(90deg, var(--blue-soft), rgba(255, 255, 255, 0.04)); }

.cta-band {
  margin-top: 72px;
  margin-bottom: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px;
  border: 1px solid rgba(232, 120, 106, 0.28);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(232, 120, 106, 0.12) 0%, rgba(214, 178, 101, 0.14) 35%, rgba(77, 212, 200, 0.1) 68%, rgba(107, 159, 212, 0.12) 100%),
    rgba(255, 255, 255, 0.055);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

.cta-band div {
  max-width: 760px;
}

.cta-band p:not(.eyebrow) {
  margin-top: 14px;
  font-size: 17px;
}

.site-footer {
  width: min(1200px, calc(100% - 48px));
  margin: 56px auto 32px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  position: relative;
  z-index: 1;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.footer-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(245, 241, 232, 0.04);
}

.footer-mark img {
  width: 100%;
  height: 100%;
  display: block;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 14px;
  line-height: 1.35;
}

.footer-address {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
  text-align: right;
  max-width: 360px;
}

.footer-privacy {
  color: #dce4de;
  font-size: 13px;
}

.footer-privacy:hover {
  color: var(--gold);
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1180px) {
  .site-shell {
    min-height: auto;
    padding-bottom: 56px;
  }

  .nav {
    height: auto;
    padding: 24px 0;
    gap: 18px;
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 24px;
    padding-top: 6px;
  }

  .hero {
    height: auto;
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 44px 0 28px;
  }

  .hero h1,
  .page-hero h1 {
    max-width: 760px;
    font-size: 52px;
  }

  .hero-text {
    max-width: 680px;
  }

  .hero-visual {
    height: 440px;
  }

  .product-showcase {
    grid-template-columns: 1fr 320px;
    gap: 32px;
    padding: 24px;
  }

  .trust-strip,
  .content-grid,
  .solution-mosaic,
  .page-list,
  .contact-grid,
  .contact-form-section,
  .policy-layout,
  .policy-document,
  .about-band,
  .feature-grid,
  .feature-grid.compact,
  .faq-grid,
  .prep-grid,
  .contact-preview,
  .process-band,
  .detail-split {
    grid-template-columns: 1fr 1fr;
  }

  .solution-mosaic {
    grid-template-rows: auto;
  }

  .asset-panel,
  .office-card,
  .insight-card,
  .solution-mosaic .service-card:nth-child(2),
  .solution-mosaic .service-card:nth-child(3) {
    grid-column: auto;
    grid-row: auto;
  }

  .trust-strip {
    height: auto;
  }

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:last-child {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
  }

  .process-band div:nth-child(2) {
    border-right: 0;
  }

  .process-band div:nth-child(3),
  .process-band div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .nav,
  .hero,
  .trust-strip,
  .content-grid,
  .solution-mosaic,
  .inner-page .nav,
  .page-hero,
  .page-list,
  .about-band,
  .contact-grid,
  .section-block,
  .process-band,
  .detail-split,
  .contact-preview,
  .contact-form-section,
  .policy-layout,
  .policy-document,
  .cta-band {
    width: min(100% - 32px, 1200px);
  }

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

  .brand-mark {
    width: 48px;
    height: 48px;
  }

  .brand strong {
    font-size: 16px;
  }

  .nav-action {
    min-height: 40px;
    padding-inline: 16px;
  }

  .nav-links {
    justify-content: flex-start;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 6px;
  }

  .nav-links a {
    flex: 0 0 auto;
    padding: 8px 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
  }

  .hero {
    padding-top: 30px;
  }

  .eyebrow {
    font-size: 11px;
    line-height: 1.5;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .hero-text {
    font-size: 16px;
    line-height: 1.62;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .primary-btn,
  .secondary-btn {
    flex: 1 1 160px;
  }

  .hero-visual {
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    overflow: hidden;
  }

  .hero-photo {
    position: absolute;
    inset: 0;
    height: 200px;
    z-index: 0;
  }

  .hero-visual::after {
    height: 200px;
    bottom: auto;
  }

  .liquidity-panel,
  .market-card {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    width: 100%;
    margin: 0;
    animation: none;
  }

  .liquidity-panel {
    margin-top: 188px;
  }

  .market-card {
    margin-bottom: 0;
  }

  .product-showcase {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-top: 20px;
    padding: 22px;
  }

  .product-brand-lockup h2 {
    font-size: 28px;
  }

  .product-showcase-visual img {
    width: min(100%, 260px);
  }

  .trust-strip,
  .content-grid,
  .solution-mosaic,
  .page-list,
  .contact-grid,
  .contact-form-section,
  .policy-layout,
  .policy-document,
  .about-band,
  .feature-grid,
  .feature-grid.compact,
  .faq-grid,
  .prep-grid,
  .contact-preview,
  .process-band,
  .detail-split {
    grid-template-columns: 1fr;
  }

  .contact-form {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .solution-mosaic {
    grid-template-rows: auto;
  }

  .feature-grid article:nth-child(even),
  .feature-grid article:nth-child(even):hover {
    transform: none;
  }

  .process-band::before {
    display: none;
  }

  .trust-strip div,
  .trust-strip div:nth-child(2),
  .trust-strip div:last-child {
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .trust-strip div:first-child {
    border-top: 0;
  }

  .service-card,
  .office-card {
    min-height: auto;
  }

  .office-card {
    min-height: 300px;
  }

  .page-hero {
    padding: 64px 0 36px;
  }

  .page-intro {
    font-size: 16px;
  }

  .section-block,
  .detail-split,
  .cta-band {
    margin-top: 48px;
  }

  .section-heading h2,
  .detail-split h2,
  .cta-band h2 {
    font-size: 29px;
  }

  .feature-grid article,
  .faq-grid article,
  .page-list.expanded article {
    min-height: auto;
  }

  .process-band div,
  .process-band div:nth-child(2),
  .process-band div:nth-child(3),
  .process-band div:nth-child(4) {
    min-height: auto;
    border-right: 0;
    border-top: 1px solid var(--line);
  }

  .process-band div:first-child {
    border-top: 0;
  }

  .timeline-list article {
    grid-template-columns: 1fr;
  }

  .cta-band {
    padding: 24px;
    margin-bottom: 48px;
  }

  .about-band img {
    height: 260px;
  }

  .about-band p {
    font-size: 19px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .footer-meta {
    align-items: flex-start;
    width: 100%;
  }
}

@media (max-width: 420px) {
  .nav-action {
    width: 100%;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 32px;
  }

  .hero-visual {
    padding: 12px;
    gap: 10px;
  }

  .hero-photo,
  .hero-visual::after {
    height: 170px;
  }

  .liquidity-panel {
    margin-top: 158px;
  }

  .signal-bars i {
    width: 26px;
  }
}
