Skip to content

Commit aea6db9

Browse files
docs: pill-style section labels and flow tags, hero fills first viewport
- Section labels (Two Paths, Pricing, ...) restyled from mono //-prefix to Lato pill badges with glowing dot, matching the hero protocol badge - Flow-step tags (Agent -> Server, Agent <-> Node, Base USDC, Automatic) restyled to rounded pill chips in Lato with a currentColor glow dot - Hero now min-height calc(100vh - 56px) with flex centering so only the hero is visible on first load; Pricing starts below the fold
1 parent cd88c49 commit aea6db9

1 file changed

Lines changed: 39 additions & 16 deletions

File tree

docs/index.html

Lines changed: 39 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,11 @@
405405

406406
/* ─── Hero ─── */
407407
.hero {
408-
padding: 52px 0 48px;
408+
min-height: calc(100vh - 56px);
409+
padding: 36px 0 40px;
410+
display: flex;
411+
flex-direction: column;
412+
justify-content: center;
409413
text-align: center;
410414
position: relative;
411415
}
@@ -709,22 +713,29 @@
709713
section { padding: 84px 0; position: relative; scroll-margin-top: 64px; }
710714

711715
section .section-label {
712-
font-family: var(--font-mono);
713-
font-size: 10.5px;
716+
font-family: var(--font-body);
717+
font-size: 11px;
714718
font-weight: 700;
715-
letter-spacing: 3px;
719+
letter-spacing: 2.2px;
716720
text-transform: uppercase;
717-
color: var(--accent);
718-
margin-bottom: 12px;
721+
color: var(--accent-bright);
722+
margin-bottom: 14px;
719723
display: inline-flex;
720724
align-items: center;
721725
gap: 8px;
726+
padding: 5px 13px;
727+
border: 1px solid var(--border-bright);
728+
border-radius: 100px;
729+
background: var(--accent-subtle);
730+
box-shadow: 0 0 16px -6px var(--accent-glow);
722731
}
723732

724733
section .section-label::before {
725-
content: '//';
726-
color: var(--text-dim);
727-
letter-spacing: 0;
734+
content: '';
735+
width: 5px; height: 5px;
736+
border-radius: 50%;
737+
background: var(--accent);
738+
box-shadow: 0 0 8px var(--accent);
728739
}
729740

730741
section h2 {
@@ -932,18 +943,30 @@
932943
}
933944

934945
.flow-step .step-content .tag {
935-
display: inline-block;
936-
font-family: var(--font-mono);
946+
display: inline-flex;
947+
align-items: center;
948+
gap: 7px;
949+
font-family: var(--font-body);
937950
font-size: 10.5px;
938951
font-weight: 700;
939-
padding: 3px 10px;
940-
border-radius: 4px;
941-
margin-top: 10px;
942-
letter-spacing: 1px;
952+
padding: 4px 12px;
953+
border-radius: 100px;
954+
margin-top: 12px;
955+
letter-spacing: 1.6px;
943956
text-transform: uppercase;
944957
}
945958

946-
.tag-agent { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border-bright); }
959+
.flow-step .step-content .tag::before {
960+
content: '';
961+
width: 4px;
962+
height: 4px;
963+
border-radius: 50%;
964+
background: currentColor;
965+
box-shadow: 0 0 6px currentColor;
966+
flex-shrink: 0;
967+
}
968+
969+
.tag-agent { background: var(--accent-dim); color: var(--accent-bright); border: 1px solid var(--border-bright); }
947970
.tag-backend { background: var(--blue-dim); color: var(--accent-bright); border: 1px solid var(--border-bright); }
948971
.tag-chain { background: var(--amber-dim); color: var(--amber); border: 1px solid rgba(255, 181, 71, 0.3); }
949972

0 commit comments

Comments
 (0)