:root {
  --bg: #000;
  --fg: #fff;
  --muted: #9a9a9a;
  --line: #252525;
  --panel: #0b0b0b;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

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

.site-header,
main,
footer {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: inline-flex;
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.header-link,
footer,
.text-link {
  color: var(--muted);
  font-size: 14px;
}

.header-link:hover,
.text-link:hover,
footer a:hover {
  color: var(--fg);
}

.hero {
  min-height: 650px;
  padding: 110px 0 90px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  color: #cfcfcf;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 6px rgba(255,255,255,0.08);
}

h1 {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(64px, 8.8vw, 138px);
  line-height: 0.91;
  letter-spacing: -0.075em;
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin: 42px 0 0;
  color: #c7c7c7;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.025em;
}

.actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 46px;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 26px;
  background: var(--fg);
  color: var(--bg);
  font-weight: 700;
  border: 1px solid var(--fg);
  transition: 180ms ease;
}

.primary-button:hover {
  background: transparent;
  color: var(--fg);
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.services article {
  min-height: 330px;
  padding: 48px;
  border-right: 1px solid var(--line);
}

.services article:last-child {
  border-right: 0;
}

.number {
  color: #666;
  font-size: 13px;
  letter-spacing: 0.12em;
}

.services h2 {
  margin: 76px 0 20px;
  font-size: 36px;
  letter-spacing: -0.05em;
}

.services p {
  max-width: 330px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.statement {
  padding: 120px 0 140px;
}

.statement p,
.statement strong {
  display: block;
  margin: 0;
  font-size: clamp(48px, 6vw, 96px);
  line-height: 1.03;
  letter-spacing: -0.065em;
}

.statement p {
  color: #555;
}

.statement strong {
  color: var(--fg);
  font-weight: 700;
}

footer {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.footer-links {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1440px);
  }

  .hero {
    min-height: auto;
    padding: 88px 0 72px;
  }

  h1 {
    font-size: clamp(54px, 15vw, 92px);
  }

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

  .services article {
    min-height: 250px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 34px 0;
  }

  .services article:last-child {
    border-bottom: 0;
  }

  .services h2 {
    margin-top: 42px;
  }
}

@media (max-width: 600px) {
  .site-header {
    min-height: 78px;
  }

  .brand {
    font-size: 20px;
  }

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

  .header-link {
    display: none;
  }

  .hero {
    padding-top: 70px;
  }

  .actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .primary-button {
    width: 100%;
  }

  .statement {
    padding: 80px 0 96px;
  }

  footer {
    min-height: 150px;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    gap: 16px;
  }

  .footer-links {
    flex-direction: column;
    gap: 10px;
  }
}


.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a {
  color: var(--muted);
  font-size: 14px;
  transition: color 160ms ease;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--fg);
}

.pricing-hero {
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line);
}

.pricing-hero h1 {
  max-width: 1150px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-bottom: 1px solid var(--line);
}

.price-card {
  min-height: 520px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--bg);
}

.price-card:last-child {
  border-right: 0;
}

.price-card.featured {
  background: var(--fg);
  color: var(--bg);
}

.price-card.featured .number,
.price-card.featured .price-unit,
.price-card.featured li {
  color: #555;
}

.price-card h2 {
  margin: 32px 0 0;
  font-size: clamp(54px, 5vw, 82px);
  letter-spacing: -0.07em;
}

.price-unit {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 15px;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.price-card li {
  padding: 14px 0;
  border-top: 1px solid currentColor;
  color: var(--muted);
  font-size: 15px;
}

.cost-breakdown,
.pricing-example {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 70px;
}

.section-heading h2 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.cost-table {
  border-top: 1px solid var(--line);
}

.cost-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: center;
}

.cost-row div:first-child {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.cost-row strong {
  font-size: 18px;
}

.cost-row span {
  color: var(--muted);
  font-size: 14px;
}

.cost-row div:last-child {
  font-size: 18px;
  font-weight: 600;
}

.example-card {
  max-width: 760px;
  margin-left: auto;
  background: var(--panel);
  border: 1px solid var(--line);
}

.example-card > div {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}

.example-card > div:last-child {
  border-bottom: 0;
}

.example-card span {
  color: var(--muted);
}

.example-total {
  background: var(--fg);
  color: var(--bg);
}

.example-total span {
  color: #444;
}

.pricing-cta {
  min-height: 350px;
  padding: 90px 0;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
}

.pricing-cta h2 {
  max-width: 800px;
  margin: 24px 0 0;
  font-size: clamp(48px, 6vw, 92px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

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

  .price-card {
    min-height: 430px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 40px 0;
  }

  .price-card.featured {
    padding-left: 24px;
    padding-right: 24px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

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

@media (max-width: 600px) {
  .main-nav {
    gap: 16px;
  }

  .main-nav a:last-child {
    display: none;
  }

  .pricing-hero {
    padding: 76px 0 60px;
  }

  .cost-breakdown,
  .pricing-example {
    padding: 76px 0;
  }

  .cost-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .example-card {
    margin-left: 0;
  }

  .pricing-cta .primary-button {
    width: 100%;
  }
}


.integration-hero {
  padding: 110px 0 90px;
  border-bottom: 1px solid var(--line);
}

.integration-hero h1 {
  max-width: 1200px;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.platform-card {
  min-height: 660px;
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
}

.platform-card:last-child {
  border-right: 0;
}

.platform-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.platform-badge {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border: 1px solid #4b4b4b;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.connection-status {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
}

.connection-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--fg);
  box-shadow: 0 0 0 5px rgba(255,255,255,.07);
}

.platform-card h2 {
  margin: 0 0 20px;
  font-size: clamp(54px, 6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.platform-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.platform-card ul {
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.platform-card li {
  padding: 17px 0;
  border-top: 1px solid var(--line);
  color: #c5c5c5;
  font-size: 15px;
}

.integration-flow,
.order-preview {
  padding: 110px 0;
  border-bottom: 1px solid var(--line);
}

.flow-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.flow-track article {
  min-height: 300px;
  padding: 34px 28px;
}

.flow-track article span {
  color: #666;
  font-size: 12px;
}

.flow-track h3 {
  margin: 112px 0 16px;
  font-size: 29px;
  letter-spacing: -0.045em;
}

.flow-track p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.flow-arrow {
  width: 48px;
  display: grid;
  place-items: center;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: #555;
}

.dashboard-window {
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.window-top {
  height: 58px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--line);
}

.window-top > span {
  width: 8px;
  height: 8px;
  border: 1px solid #555;
  border-radius: 50%;
}

.window-top strong {
  margin-left: 10px;
  font-size: 13px;
  font-weight: 500;
  color: #777;
}

.order-row {
  min-height: 76px;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.35fr 1fr 1.2fr 1fr 1fr;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}

.order-row:last-child {
  border-bottom: 0;
}

.order-row-heading {
  min-height: 52px;
  color: #666;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.order-row > span:first-child {
  display: flex;
  align-items: center;
  gap: 10px;
}

.source-icon {
  width: 30px;
  height: 30px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #4a4a4a;
  font-size: 10px;
}

.status-pill {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--fg);
  color: var(--bg);
  font-style: normal;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.muted-pill {
  background: #222;
  color: #bdbdbd;
}

.security-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-bottom: 1px solid var(--line);
}

.security-strip article {
  min-height: 390px;
  padding: 52px;
  border-right: 1px solid var(--line);
}

.security-strip article:last-child {
  border-right: 0;
}

.security-strip h3 {
  max-width: 560px;
  margin: 100px 0 20px;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.security-strip p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.6;
}

.integration-cta {
  border-bottom: 0;
}

@media (max-width: 1000px) {
  .platform-grid,
  .security-strip {
    grid-template-columns: 1fr;
  }

  .platform-card,
  .security-strip article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .flow-track {
    grid-template-columns: 1fr;
  }

  .flow-arrow {
    width: 100%;
    height: 48px;
    border: 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    transform: rotate(90deg);
  }

  .flow-track article {
    min-height: 240px;
  }

  .flow-track h3 {
    margin-top: 70px;
  }

  .order-row {
    grid-template-columns: 1.2fr 1fr 1fr;
  }

  .order-row span:nth-child(3),
  .order-row span:nth-child(4) {
    display: none;
  }
}

@media (max-width: 700px) {
  .integration-hero {
    padding: 76px 0 60px;
  }

  .platform-card {
    min-height: 590px;
    padding: 38px 0;
  }

  .platform-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .integration-flow,
  .order-preview {
    padding: 76px 0;
  }

  .order-row {
    padding: 0 12px;
    grid-template-columns: 1.2fr .9fr;
    font-size: 12px;
  }

  .order-row span:nth-child(2) {
    display: none;
  }

  .security-strip article {
    min-height: 340px;
    padding: 38px 0;
  }

  .security-strip h3 {
    margin-top: 70px;
  }
}

.network-hero{padding:110px 0 90px;border-bottom:1px solid var(--line)}
.network-hero h1{max-width:1180px}
.location-grid{display:grid;grid-template-columns:repeat(2,1fr);border-bottom:1px solid var(--line)}
.location-card{min-height:720px;padding:52px;display:flex;flex-direction:column;justify-content:space-between;border-right:1px solid var(--line)}
.location-card:last-child{border-right:0}.upcoming-location{background:#070707}
.location-topline{display:flex;align-items:center;justify-content:space-between;gap:20px}
.region{color:var(--muted);font-size:13px;text-transform:uppercase;letter-spacing:.12em}
.location-status{display:inline-flex;align-items:center;gap:9px;font-size:13px}
.location-status i{width:8px;height:8px;border-radius:50%}
.location-status.active i{background:#fff;box-shadow:0 0 0 6px rgba(255,255,255,.07)}
.location-status.upcoming{color:#8d8d8d}.location-status.upcoming i{border:1px solid #666}
.location-main{margin:90px 0 auto}.country-code{display:inline-grid;place-items:center;width:64px;height:64px;margin-bottom:40px;border:1px solid #4b4b4b;font-size:17px;font-weight:700}
.location-card h2{max-width:620px;margin:0 0 24px;font-size:clamp(56px,6vw,94px);line-height:.96;letter-spacing:-.07em}
.location-card p{max-width:560px;margin:0;color:var(--muted);font-size:18px;line-height:1.6}
.location-card ul{margin:54px 0 0;padding:0;list-style:none}.location-card li{padding:17px 0;border-top:1px solid var(--line);color:#c5c5c5;font-size:15px}
.network-benefits,.network-diagram{padding:110px 0;border-bottom:1px solid var(--line)}
.benefit-grid{display:grid;grid-template-columns:repeat(4,1fr);border-top:1px solid var(--line);border-bottom:1px solid var(--line)}
.benefit-grid article{min-height:330px;padding:34px 28px;border-right:1px solid var(--line)}.benefit-grid article:last-child{border-right:0}
.benefit-grid article>span{color:#666;font-size:12px}.benefit-grid h3{margin:110px 0 18px;font-size:28px;line-height:1.05;letter-spacing:-.045em}
.benefit-grid p{margin:0;color:var(--muted);font-size:15px;line-height:1.55}
.network-map{display:grid;grid-template-columns:1fr 100px 1fr 100px 1.25fr;align-items:center}
.network-node{min-height:210px;padding:28px;display:flex;flex-direction:column;justify-content:center;border:1px solid var(--line);background:#080808}
.network-node small{margin-bottom:26px;color:#666;font-size:11px;text-transform:uppercase;letter-spacing:.1em}
.network-node strong{margin-bottom:8px;font-size:22px;letter-spacing:-.03em}.network-node span{color:var(--muted);font-size:13px}
.network-line{height:1px;background:#444}.warehouse-nodes{display:grid;gap:18px}
.future-network{min-height:420px;padding:90px 0;display:grid;grid-template-columns:1.3fr 1fr;align-items:end;gap:70px;border-bottom:1px solid var(--line)}
.future-network h2{max-width:760px;margin:24px 0 0;font-size:clamp(48px,6vw,92px);line-height:.98;letter-spacing:-.065em}
.future-network p{margin:0;color:var(--muted);font-size:19px;line-height:1.6}.network-cta{border-bottom:0}
@media(max-width:1000px){.location-grid{grid-template-columns:1fr}.location-card{min-height:650px;border-right:0;border-bottom:1px solid var(--line)}.benefit-grid{grid-template-columns:repeat(2,1fr)}.network-map{grid-template-columns:1fr;gap:0}.network-line{width:1px;height:55px;margin:0 auto}.warehouse-nodes{grid-template-columns:repeat(2,1fr)}.future-network{grid-template-columns:1fr;align-items:start}}
@media(max-width:700px){.network-hero{padding:76px 0 60px}.location-card{min-height:620px;padding:38px 0}.location-topline{align-items:flex-start;flex-direction:column}.network-benefits,.network-diagram{padding:76px 0}.benefit-grid{grid-template-columns:1fr}.benefit-grid article{border-right:0;border-bottom:1px solid var(--line)}.warehouse-nodes{grid-template-columns:1fr}.future-network{padding:76px 0}}

/* Mobile navigation and responsive refinements */
.menu-toggle{display:none;width:44px;height:44px;padding:0;border:0;background:transparent;color:var(--fg);cursor:pointer;position:relative;z-index:120}
.menu-toggle span{position:absolute;left:10px;width:24px;height:1.5px;background:currentColor;transition:transform 180ms ease,top 180ms ease}
.menu-toggle span:first-child{top:17px}.menu-toggle span:last-child{top:26px}
.menu-toggle[aria-expanded="true"] span:first-child{top:22px;transform:rotate(45deg)}
.menu-toggle[aria-expanded="true"] span:last-child{top:22px;transform:rotate(-45deg)}
@media(max-width:900px){
 body.menu-open{overflow:hidden}
 .site-header{position:sticky;top:0;z-index:100;min-height:78px;background:rgba(0,0,0,.96);backdrop-filter:blur(18px)}
 .menu-toggle{display:block}
 .main-nav{position:fixed;inset:0;padding:112px 24px 40px;display:flex;flex-direction:column;align-items:flex-start;justify-content:flex-start;gap:0;background:#000;transform:translateY(-102%);opacity:0;visibility:hidden;transition:transform 220ms ease,opacity 220ms ease,visibility 220ms ease;z-index:110}
 .main-nav.is-open{transform:translateY(0);opacity:1;visibility:visible}
 .main-nav a{width:100%;padding:18px 0;border-bottom:1px solid var(--line);color:var(--fg);font-size:clamp(30px,9vw,54px);font-weight:600;line-height:1;letter-spacing:-.055em}
 .main-nav a:last-child{display:block!important;margin-top:20px;border-bottom:0;color:var(--muted);font-size:18px;letter-spacing:-.02em}
 .hero,.pricing-hero,.integration-hero,.network-hero{min-height:auto;padding-top:72px}
 .hero-copy{max-width:100%}
 .services article,.price-card,.platform-card,.location-card,.security-strip article{padding-left:0;padding-right:0}
 .section-heading{gap:20px}
 .actions{width:100%}.actions .primary-button{width:100%}
 .flow-track article{padding-left:0;padding-right:0}
 .dashboard-window{overflow-x:auto}.order-row{min-width:680px}
}
@media(max-width:700px){
 .site-header,main,footer{width:calc(100% - 32px)}
 .brand{font-size:19px}.brand-mark{width:30px;height:30px}
 h1{font-size:clamp(48px,15vw,78px);line-height:.93}
 .hero-copy{margin-top:28px;font-size:19px}.eyebrow{margin-bottom:24px}
 .hero,.pricing-hero,.integration-hero,.network-hero{padding-top:58px;padding-bottom:58px}
 .services h2,.price-card h2,.platform-card h2,.location-card h2{overflow-wrap:anywhere}
 .services article,.price-card,.platform-card,.location-card,.security-strip article,.benefit-grid article{min-height:auto}
 .price-card,.platform-card,.location-card{padding-top:34px;padding-bottom:34px}
 .platform-card h2,.location-card h2{font-size:clamp(45px,14vw,70px)}
 .platform-card p,.location-card p{font-size:16px}.location-main{margin-top:56px}
 .network-map{width:100%}.network-node{min-height:170px}
 .pricing-cta,.future-network{min-height:auto}
 .pricing-cta h2,.future-network h2{font-size:clamp(43px,13vw,70px)}
 .cost-row,.example-card>div{gap:12px}footer{padding:32px 0}
}
@media(max-width:480px){
 .site-header,main,footer{width:calc(100% - 24px)}
 .primary-button{min-height:52px;padding:0 20px}
 .statement p,.statement strong{font-size:clamp(40px,13vw,62px)}
 .platform-header,.location-topline{gap:14px}
 .country-code,.platform-badge{width:56px;height:56px}
 .benefit-grid h3{margin-top:64px}.flow-track h3{margin-top:54px}
}

/* Final mobile fixes: solid navigation and stacked How It Works flow */
@media (max-width: 900px) {
  .site-header {
    background: #000 !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  .menu-toggle {
    display: block;
    background: #000 !important;
    color: #fff !important;
    border: 1px solid #fff !important;
    border-radius: 0;
    flex: 0 0 44px;
  }

  .menu-toggle span {
    background: #fff !important;
  }

  .main-nav,
  .main-nav.is-open {
    background: #000 !important;
    color: #fff !important;
  }

  .main-nav a,
  .main-nav a[aria-current="page"] {
    color: #fff !important;
  }

  .main-nav a:last-child {
    color: #a3a3a3 !important;
  }

  .integration-flow {
    overflow: hidden;
  }

  .flow-track {
    display: flex !important;
    flex-direction: column;
    width: 100%;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .flow-track article {
    position: relative;
    width: 100%;
    min-height: 0 !important;
    padding: 30px 0 34px 58px !important;
    border-bottom: 1px solid var(--line);
  }

  .flow-track article:last-of-type {
    border-bottom: 0;
  }

  .flow-track article > span {
    position: absolute;
    top: 32px;
    left: 0;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid #4a4a4a;
    color: #fff;
    font-size: 11px;
  }

  .flow-track h3 {
    margin: 0 0 12px !important;
    font-size: 30px;
  }

  .flow-track p {
    max-width: 520px;
    font-size: 15px;
  }

  .flow-arrow {
    display: none !important;
  }
}

@media (max-width: 480px) {
  .flow-track article {
    padding-left: 50px !important;
  }

  .flow-track article > span {
    width: 32px;
    height: 32px;
  }

  .flow-track h3 {
    font-size: 27px;
  }
}

/* Homepage split hero with CSS product illustration */
.hero-with-product {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(420px, .96fr);
  align-items: center;
  gap: clamp(42px, 6vw, 110px);
  padding: 86px 0 92px;
}

.hero-with-product .hero-content {
  position: relative;
  z-index: 2;
}

.hero-with-product h1 {
  max-width: 820px;
  font-size: clamp(62px, 7.1vw, 118px);
}

.hero-product {
  position: relative;
  min-height: 610px;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}

.product-glow {
  position: absolute;
  width: 82%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.11) 0, rgba(255,255,255,.035) 38%, transparent 69%);
  filter: blur(10px);
  z-index: -2;
}

.shipping-box {
  position: relative;
  width: min(92%, 520px);
  aspect-ratio: 1.22 / 1;
  margin-top: 96px;
  perspective: 1200px;
  filter: drop-shadow(0 36px 38px rgba(0,0,0,.72));
  z-index: 2;
}

.box-face {
  position: absolute;
  inset: 18% 0 0;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), transparent 30%),
    linear-gradient(180deg, #151515, #060606);
  border: 1px solid #353535;
  border-radius: 4px;
  box-shadow:
    inset 0 1px rgba(255,255,255,.07),
    inset 0 -30px 80px rgba(0,0,0,.5);
}

.box-face::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image:
    linear-gradient(90deg, transparent 49.5%, rgba(255,255,255,.12) 50%, transparent 50.5%),
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 4px);
  pointer-events: none;
}

.box-flap {
  position: absolute;
  top: 4%;
  width: 53%;
  height: 31%;
  background: linear-gradient(155deg, #222, #090909);
  border: 1px solid #383838;
  z-index: -1;
}

.box-flap-left {
  left: 1%;
  transform: skewY(-12deg) rotate(-7deg);
  transform-origin: right bottom;
}

.box-flap-right {
  right: 1%;
  transform: skewY(12deg) rotate(7deg);
  transform-origin: left bottom;
}

.vinyl-record {
  position: absolute;
  top: 8%;
  left: 50%;
  width: min(70%, 380px);
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateX(-50%) rotate(-8deg);
  background:
    radial-gradient(circle at center, #ececec 0 7%, #111 7.5% 11%, transparent 11.5%),
    repeating-radial-gradient(circle at center, #090909 0 3px, #151515 4px 5px, #060606 6px 8px);
  box-shadow:
    0 26px 50px rgba(0,0,0,.75),
    inset 0 0 0 1px rgba(255,255,255,.08);
  z-index: 1;
}

.vinyl-record::before {
  content: "";
  position: absolute;
  inset: 2%;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 24%, rgba(255,255,255,.17) 34%, transparent 44%);
  opacity: .7;
}

.vinyl-label {
  position: absolute;
  inset: 38%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #ededed;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,.18);
}

.mini-mark {
  width: 22px;
  height: 22px;
  display: block;
  background:
    linear-gradient(30deg, transparent 35%, #000 36% 46%, transparent 47%),
    linear-gradient(150deg, transparent 35%, #000 36% 46%, transparent 47%),
    linear-gradient(#000,#000);
  clip-path: polygon(50% 0,100% 25%,100% 75%,50% 100%,0 75%,0 25%);
}

.box-brand {
  position: absolute;
  left: 8%;
  top: 34%;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #fff;
  z-index: 2;
}

.box-brand strong {
  font-size: clamp(32px, 4vw, 55px);
  letter-spacing: -.06em;
}

.box-logo-mark {
  width: clamp(44px, 5vw, 68px);
  height: clamp(44px, 5vw, 68px);
}

.box-logo-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.shipping-label {
  position: absolute;
  right: 5%;
  bottom: 7%;
  width: 25%;
  min-width: 105px;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: #111;
  background: #f4f4f4;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
  transform: rotate(-2deg);
  z-index: 2;
}

.shipping-label small {
  margin-top: 3px;
  font-size: 6px;
  letter-spacing: .08em;
}

.barcode {
  height: 30px;
  margin: 4px 0;
  background: repeating-linear-gradient(90deg, #111 0 1px, transparent 1px 3px, #111 3px 5px, transparent 5px 7px);
}

.product-caption {
  position: absolute;
  bottom: 4px;
  margin: 0;
  color: #777;
  font-size: 12px;
  letter-spacing: .02em;
}

@media (max-width: 1100px) {
  .hero-with-product {
    grid-template-columns: minmax(0, 1fr) minmax(360px, .82fr);
    gap: 42px;
  }

  .hero-with-product h1 {
    font-size: clamp(58px, 7vw, 92px);
  }

  .hero-product {
    min-height: 530px;
  }
}

@media (max-width: 900px) {
  .hero-with-product {
    grid-template-columns: 1fr;
    gap: 22px;
    padding-top: 62px;
  }

  .hero-with-product .hero-content {
    max-width: 760px;
  }

  .hero-product {
    width: 100%;
    min-height: 560px;
    margin-top: 8px;
  }

  .shipping-box {
    width: min(86%, 520px);
  }
}

@media (max-width: 600px) {
  .hero-with-product {
    gap: 8px;
    padding-bottom: 62px;
  }

  .hero-with-product h1 {
    font-size: clamp(48px, 14.2vw, 72px);
  }

  .hero-product {
    min-height: 430px;
    margin-top: 18px;
  }

  .shipping-box {
    width: min(96%, 410px);
    margin-top: 70px;
  }

  .vinyl-record {
    width: min(69%, 285px);
  }

  .box-brand {
    left: 6%;
    gap: 10px;
  }

  .box-brand strong {
    font-size: clamp(27px, 8vw, 38px);
  }

  .box-logo-mark {
    width: 42px;
    height: 42px;
  }

  .shipping-label {
    right: 4%;
    bottom: 6%;
    min-width: 88px;
    padding: 8px 7px;
  }

  .product-caption {
    bottom: -2px;
    text-align: center;
  }
}

@media (max-width: 400px) {
  .hero-product {
    min-height: 375px;
  }

  .shipping-box {
    margin-top: 58px;
  }

  .box-brand strong {
    font-size: 25px;
  }

  .box-logo-mark {
    width: 35px;
    height: 35px;
  }

  .shipping-label {
    transform: scale(.88) rotate(-2deg);
    transform-origin: right bottom;
  }
}

/* Alternate connected-platform homepage */
.platform-hero {
  min-height: 760px;
  padding: 90px 0 100px;
  display: grid;
  grid-template-columns: minmax(0, .92fr) minmax(520px, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 105px);
  border-bottom: 1px solid var(--line);
}

.platform-hero-copy {
  position: relative;
  z-index: 4;
}

.platform-hero h1 {
  max-width: 850px;
  margin: 0;
  font-size: clamp(66px, 7.2vw, 120px);
  line-height: .91;
  letter-spacing: -.075em;
}

.platform-visual {
  position: relative;
  min-height: 620px;
  border: 1px solid var(--line);
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.08), transparent 34%),
    linear-gradient(180deg, #090909, #030303);
}

.platform-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.platform-orbit {
  position: absolute;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit-one {
  width: 68%;
  aspect-ratio: 1;
}

.orbit-two {
  width: 42%;
  aspect-ratio: 1;
}

.platform-node,
.crateflo-core,
.warehouse-result {
  position: absolute;
  z-index: 3;
  border: 1px solid #343434;
  background: rgba(8,8,8,.96);
  box-shadow: 0 16px 44px rgba(0,0,0,.55);
}

.platform-node {
  width: 170px;
  min-height: 104px;
  padding: 18px;
  display: grid;
  grid-template-columns: 42px 1fr;
  grid-template-rows: auto auto;
  column-gap: 12px;
  align-content: center;
}

.platform-node strong {
  align-self: end;
  font-size: 15px;
}

.platform-node small {
  color: #777;
  font-size: 11px;
}

.platform-initials {
  width: 42px;
  height: 42px;
  grid-row: 1 / span 2;
  display: grid;
  place-items: center;
  border: 1px solid #454545;
  font-size: 11px;
  font-weight: 700;
}

.platform-bandcamp { left: 4%; top: 9%; }
.platform-discogs { right: 4%; top: 9%; }
.platform-shopify { left: 4%; bottom: 13%; }
.platform-acid { right: 4%; bottom: 13%; }

.crateflo-core {
  left: 50%;
  top: 43%;
  width: 250px;
  min-height: 170px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  text-align: center;
}

.core-mark {
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
}

.core-mark svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.crateflo-core strong {
  font-size: 30px;
  letter-spacing: -.05em;
}

.crateflo-core small {
  margin-top: 8px;
  color: #777;
  font-size: 11px;
}

.warehouse-result {
  left: 50%;
  bottom: 4%;
  width: 245px;
  min-height: 76px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  transform: translateX(-50%);
}

.warehouse-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #454545;
}

.warehouse-result div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.warehouse-result strong {
  font-size: 14px;
}

.warehouse-result small {
  color: #777;
  font-size: 11px;
}

.flow-line {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #555, transparent);
  transform-origin: left center;
}

.line-one {
  width: 30%;
  left: 24%;
  top: 26%;
  transform: rotate(25deg);
}

.line-two {
  width: 30%;
  right: 24%;
  top: 26%;
  transform: rotate(-25deg);
  transform-origin: right center;
}

.line-three {
  width: 30%;
  left: 23%;
  bottom: 27%;
  transform: rotate(-25deg);
}

.line-four {
  width: 30%;
  right: 23%;
  bottom: 27%;
  transform: rotate(25deg);
  transform-origin: right center;
}

.connected-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--line);
}

.connected-strip > div {
  min-height: 140px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
}

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

.connected-strip span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -.035em;
}

.connected-strip small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 1120px) {
  .platform-hero {
    grid-template-columns: minmax(0, 1fr) minmax(440px, .9fr);
  }

  .platform-hero h1 {
    font-size: clamp(58px, 6.7vw, 92px);
  }

  .platform-node {
    width: 148px;
  }
}

@media (max-width: 900px) {
  .platform-hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 64px;
  }

  .platform-hero-copy {
    max-width: 760px;
  }

  .platform-visual {
    min-height: 620px;
  }

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

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

  .connected-strip > div:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 650px) {
  .platform-hero {
    gap: 30px;
    padding: 58px 0 70px;
  }

  .platform-hero h1 {
    font-size: clamp(48px, 14vw, 72px);
  }

  .platform-visual {
    min-height: 650px;
  }

  .platform-node {
    width: calc(50% - 22px);
    min-height: 92px;
    padding: 14px;
    grid-template-columns: 36px 1fr;
  }

  .platform-initials {
    width: 36px;
    height: 36px;
  }

  .platform-bandcamp { left: 12px; top: 12px; }
  .platform-discogs { right: 12px; top: 12px; }
  .platform-shopify { left: 12px; bottom: 112px; }
  .platform-acid { right: 12px; bottom: 112px; }

  .crateflo-core {
    top: 42%;
    width: min(72%, 250px);
  }

  .warehouse-result {
    bottom: 18px;
    width: calc(100% - 24px);
  }

  .orbit-one {
    width: 88%;
  }

  .orbit-two {
    width: 60%;
  }

  .flow-line {
    display: none;
  }

  .connected-strip {
    grid-template-columns: 1fr;
  }

  .connected-strip > div {
    min-height: 105px;
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .connected-strip > div:last-child {
    border-bottom: 0;
  }
}

/* Refined platform homepage */
.platform-hero {
  min-height: calc(100vh - 96px);
}

.crateflo-core {
  width: 285px;
  min-height: 195px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.02),
    0 24px 80px rgba(0,0,0,.66),
    0 0 60px rgba(255,255,255,.045);
}

.core-count {
  margin-top: 10px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -.025em;
}

.warehouse-result {
  animation: queuePulse 4.5s ease-in-out infinite;
}

.flow-dot {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px rgba(255,255,255,.85);
  z-index: 2;
  opacity: 0;
}

.dot-one {
  left: 24%;
  top: 26%;
  animation: dotOne 3.8s linear infinite;
}

.dot-two {
  right: 24%;
  top: 26%;
  animation: dotTwo 4.1s linear .8s infinite;
}

.dot-three {
  left: 23%;
  bottom: 27%;
  animation: dotThree 4.3s linear 1.5s infinite;
}

.dot-four {
  right: 23%;
  bottom: 27%;
  animation: dotFour 4s linear 2.2s infinite;
}

.platform-node,
.crateflo-core,
.warehouse-result {
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.platform-node:hover {
  transform: translateY(-4px);
  border-color: #666;
  box-shadow: 0 22px 58px rgba(0,0,0,.72);
}

.platform-hero-copy,
.platform-visual {
  animation: heroFade 700ms ease both;
}

.platform-visual {
  animation-delay: 90ms;
}

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

@keyframes queuePulse {
  0%, 100% { box-shadow: 0 16px 44px rgba(0,0,0,.55); }
  50% { box-shadow: 0 16px 44px rgba(0,0,0,.55), 0 0 28px rgba(255,255,255,.07); }
}

@keyframes dotOne {
  0% { opacity: 0; transform: translate(0,0); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(168px,88px); }
}

@keyframes dotTwo {
  0% { opacity: 0; transform: translate(0,0); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(-168px,88px); }
}

@keyframes dotThree {
  0% { opacity: 0; transform: translate(0,0); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(168px,-88px); }
}

@keyframes dotFour {
  0% { opacity: 0; transform: translate(0,0); }
  15% { opacity: 1; }
  85% { opacity: 1; }
  100% { opacity: 0; transform: translate(-168px,-88px); }
}

@media (max-width: 900px) {
  .platform-hero {
    min-height: auto;
  }

  .crateflo-core {
    width: min(76%, 285px);
  }
}

@media (max-width: 650px) {
  .flow-dot {
    display: none;
  }

  .crateflo-core {
    width: min(76%, 250px);
    min-height: 175px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-hero-copy,
  .platform-visual,
  .warehouse-result,
  .flow-dot {
    animation: none !important;
  }
}

/* New image-inspired homepage */
.showcase-hero {
  min-height: calc(100vh - 90px);
  padding: 42px 0 54px;
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(620px, 1.18fr);
  align-items: center;
  gap: clamp(42px, 5vw, 90px);
  border-bottom: 1px solid var(--line);
}

.showcase-copy h1 {
  margin: 0;
  max-width: 720px;
  font-size: clamp(72px, 7.2vw, 126px);
  line-height: .88;
  letter-spacing: -.078em;
}

.showcase-copy > p {
  max-width: 700px;
  margin: 42px 0 0;
  color: #b9b9b9;
  font-size: clamp(20px, 1.65vw, 29px);
  line-height: 1.45;
  letter-spacing: -.025em;
}

.showcase-copy .actions {
  margin-top: 56px;
}

.showcase-copy .primary-button {
  gap: 26px;
}








.flow-board {
  position: relative;
  min-height: 640px;
  overflow: hidden;
  border: 1px solid #282828;
  background:
    radial-gradient(circle at 50% 44%, rgba(255,255,255,.055), transparent 33%),
    linear-gradient(180deg, #070707, #020202);
}

.board-grid {
  position: absolute;
  inset: 0;
  opacity: .22;
  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: 52px 52px;
}

.board-ring {
  position: absolute;
  left: 50%;
  top: 45%;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}

.ring-large { width: 68%; aspect-ratio: 1; }
.ring-small { width: 43%; aspect-ratio: 1; }

.source-card,
.core-card,
.queue-card {
  position: absolute;
  z-index: 4;
  border: 1px solid #343434;
  background: rgba(8,8,8,.97);
  box-shadow: 0 18px 44px rgba(0,0,0,.55);
}

.source-card {
  width: 205px;
  min-height: 104px;
  padding: 18px;
  display: flex;
  align-items: center;
  gap: 15px;
}

.source-card div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.source-card strong {
  font-size: 16px;
}

.source-card small {
  color: #777;
  font-size: 11px;
}

.source-code {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid #454545;
  font-size: 11px;
  font-weight: 700;
}

.bandcamp-card { left: 4%; top: 8%; }
.discogs-card { right: 4%; top: 8%; }
.shopify-card { left: 4%; bottom: 15%; }
.acid-card { right: 4%; bottom: 15%; }

.core-card {
  left: 50%;
  top: 43%;
  width: 290px;
  min-height: 220px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translate(-50%,-50%);
  text-align: center;
  border-color: #777;
  box-shadow: 0 0 34px rgba(255,255,255,.07), 0 22px 70px rgba(0,0,0,.7);
}

.core-logo {
  width: 61px;
  height: 61px;
  margin-bottom: 16px;
}

.core-logo svg,
.queue-logo svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.core-card strong {
  font-size: 32px;
  letter-spacing: -.055em;
}

.core-card b {
  margin-top: 15px;
  font-size: 18px;
}

.core-card small {
  margin-top: 8px;
  color: #777;
  font-size: 11px;
}

.queue-line {
  position: absolute;
  left: 50%;
  top: 60%;
  width: 1px;
  height: 70px;
  background: #777;
  z-index: 2;
}

.queue-card {
  left: 50%;
  bottom: 3.5%;
  width: 320px;
  min-height: 92px;
  padding: 15px 19px;
  display: flex;
  align-items: center;
  gap: 15px;
  transform: translateX(-50%);
  border-color: #7a6220;
  box-shadow: 0 0 26px rgba(216,179,65,.12), 0 18px 50px rgba(0,0,0,.6);
}

.queue-logo {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  padding: 8px;
  border: 1px solid #7a6220;
}

.queue-card div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.queue-card strong {
  font-size: 18px;
}

.queue-card small {
  color: #d9b441;
  font-size: 12px;
}

.connector {
  position: absolute;
  z-index: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #707070, transparent);
}

.connector-a { left: 24%; top: 26%; width: 27%; transform: rotate(25deg); }
.connector-b { right: 24%; top: 26%; width: 27%; transform: rotate(-25deg); }
.connector-c { left: 23%; bottom: 28%; width: 28%; transform: rotate(-25deg); }
.connector-d { right: 23%; bottom: 28%; width: 28%; transform: rotate(25deg); }

.moving-dot {
  position: absolute;
  z-index: 3;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 14px rgba(255,255,255,.9);
}

.dot-a { left: 26%; top: 27%; animation: boardDotA 3.8s linear infinite; }
.dot-b { right: 26%; top: 27%; animation: boardDotB 4.1s linear .7s infinite; }
.dot-c { left: 25%; bottom: 29%; animation: boardDotC 4.2s linear 1.4s infinite; }
.dot-d { right: 25%; bottom: 29%; animation: boardDotD 4s linear 2s infinite; }

.label-trust {
  min-height: 130px;
  display: grid;
  grid-template-columns: 300px 1fr;
  align-items: center;
  gap: 45px;
  border-bottom: 1px solid var(--line);
}

.label-trust p {
  margin: 0;
  color: #777;
  font-size: 14px;
}

.label-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.label-list strong {
  font-size: 19px;
  letter-spacing: .03em;
}

.label-list span {
  color: #777;
  font-size: 13px;
}

.main-nav .nav-cta {
  padding: 12px 18px;
  color: #000;
  background: #fff;
  font-weight: 600;
}

@keyframes boardDotA {
  from { opacity: 0; transform: translate(0,0); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { opacity: 0; transform: translate(170px,88px); }
}
@keyframes boardDotB {
  from { opacity: 0; transform: translate(0,0); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { opacity: 0; transform: translate(-170px,88px); }
}
@keyframes boardDotC {
  from { opacity: 0; transform: translate(0,0); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { opacity: 0; transform: translate(170px,-88px); }
}
@keyframes boardDotD {
  from { opacity: 0; transform: translate(0,0); }
  12% { opacity: 1; }
  88% { opacity: 1; }
  to { opacity: 0; transform: translate(-170px,-88px); }
}

@media (max-width: 1180px) {
  .showcase-hero {
    grid-template-columns: minmax(0, .9fr) minmax(520px, 1.1fr);
  }

  .showcase-copy h1 {
    font-size: clamp(64px, 7vw, 98px);
  }

  .source-card {
    width: 180px;
  }
}

@media (max-width: 950px) {
  .showcase-hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 64px;
  }

  .showcase-copy {
    max-width: 820px;
  }

  .flow-board {
    min-height: 650px;
  }

  .label-trust {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 35px 0;
  }

  .label-list {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 650px) {
  .showcase-hero {
    gap: 24px;
    padding: 58px 0 70px;
  }

  .showcase-copy h1 {
    font-size: clamp(50px, 14vw, 74px);
    line-height: 1.0;
    letter-spacing: -0.06em;
    margin-bottom: 28px;
  }

  .showcase-copy > p {
    max-width: 95%;
    margin-top: 28px;
    font-size: 18px;
  }

  .flow-board {
    min-height: 700px;
  }

  .source-card {
    width: calc(50% - 22px);
    min-height: 92px;
    padding: 13px;
  }

  .source-card strong {
    font-size: 13px;
  }

  .source-code {
    width: 37px;
    height: 37px;
  }

  .bandcamp-card { left: 12px; top: 12px; }
  .discogs-card { right: 12px; top: 12px; }
  .shopify-card { left: 12px; bottom: 120px; }
  .acid-card { right: 12px; bottom: 120px; }

  .core-card {
    top: 42%;
    width: min(76%, 270px);
  }

  .queue-card {
    bottom: 18px;
    width: calc(100% - 24px);
  }

  .connector,
  .moving-dot {
    display: none;
  }

  .label-list strong {
    font-size: 15px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .moving-dot {
    animation: none !important;
  }
}

/* Hero refinement after removing benefit cards */
.showcase-copy {
  padding-bottom: 24px;
}

.flow-board {
  min-height: 690px;
}

@media (max-width: 950px) {
  .showcase-copy {
    padding-bottom: 0;
  }

  .flow-board {
    min-height: 670px;
  }
}

@media (max-width: 650px) {
  .showcase-copy .actions {
    margin-top: 38px;
  }

  .flow-board {
    min-height: 700px;
  }
}


/* Closing statement */
.closing-statement{
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:140px 0;
}
.statement-inner{
  max-width:1200px;
}
.closing-statement .number{
  display:block;
  color:#666;
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:12px;
  margin-bottom:28px;
}
.closing-statement h2{
  margin:0;
  font-size:clamp(60px,7.2vw,118px);
  line-height:.90;
  letter-spacing:-.075em;
  font-weight:800;
}
.closing-statement h2{
  color:#3d3d3d;
}
.closing-statement h2 span{
  color:#ffffff;
}

@media(max-width:700px){
 .closing-statement{
   padding:80px 0;
 }
 .closing-statement h2{
   font-size:clamp(42px,13vw,68px);
   line-height:.94;
 }
}
@media(max-width:700px){
 .closing-statement{padding:80px 0;}
 .closing-statement h2{
   font-size:clamp(42px,13vw,68px);
 }
}
