/* ===========================================================================
   AlphaPsi by QodeX Quantum
   Aesthetic: lab notebook meets instrument panel. Deep ink ground, warm paper
   text, one cool signal (cyan) and one warm signal (ochre). Editorial serif
   display against a grotesque body and a mono for instrument labels.
   Voice rule from MESSAGING-SPINE.md: no em dashes anywhere, including here.
   =========================================================================== */

:root {
  --ink:        #07080C;
  --ink-2:      #0A0C13;
  --ink-3:      #0E1119;
  --line:       rgba(233, 228, 216, 0.10);
  --line-2:     rgba(233, 228, 216, 0.18);
  --paper:      #EDE8DC;
  --paper-dim:  #A9A69E;
  --paper-far:  #6E6D69;
  --signal:     #62E6DC;   /* cool signal, carries the brand cyan */
  --ember:      #E3A14A;   /* warm signal, used sparingly */
  --shell:      1220px;
  --gut:        clamp(1.25rem, 4vw, 3rem);

  --f-display: "Instrument Serif", "Iowan Old Style", Georgia, serif;
  --f-body:    "Archivo", "Helvetica Neue", Helvetica, sans-serif;
  --f-mono:    "IBM Plex Mono", ui-monospace, "SF Mono", monospace;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* No overflow-x on html or body: it breaks position: sticky on the nav.
   Every glow that bleeds past the viewport is clipped by its own section. */
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--f-body);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.62;
  letter-spacing: -0.005em;
  -webkit-font-smoothing: antialiased;
}

/* graph paper ground plus grain, so no section is ever a flat fill */
body::before {
  content: "";
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(233,228,216,.035) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(233,228,216,.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(120% 90% at 50% 0%, #000 15%, transparent 78%);
  -webkit-mask-image: radial-gradient(120% 90% at 50% 0%, #000 15%, transparent 78%);
}
body::after {
  content: "";
  position: fixed; inset: 0; z-index: 900; pointer-events: none;
  opacity: .045;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2'/%3E%3C/filter%3E%3Crect width='160' height='160' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .nav, .foot { position: relative; z-index: 1; }

.shell { width: 100%; max-width: var(--shell); margin: 0 auto; padding: 0 var(--gut); }

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

.mono {
  font-family: var(--f-mono);
  font-size: .69rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.skip {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--signal); color: var(--ink); padding: .6rem 1rem;
  font-family: var(--f-mono); font-size: .75rem;
}
.skip:focus { left: .5rem; top: .5rem; }

:focus-visible { outline: 2px solid var(--signal); outline-offset: 3px; }

/* ─────────────────────────── buttons ─────────────────────────── */

.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  padding: .82rem 1.4rem;
  background: var(--paper); color: var(--ink);
  font-family: var(--f-body); font-size: .9rem; font-weight: 600;
  letter-spacing: -0.01em;
  border: 1px solid var(--paper);
  border-radius: 2px;
  transition: background .25s ease, color .25s ease, transform .25s ease, box-shadow .25s ease;
}
.btn svg { transition: transform .25s ease; }
.btn:hover {
  background: var(--signal); border-color: var(--signal);
  box-shadow: 0 0 0 1px var(--signal), 0 10px 34px -14px var(--signal);
  transform: translateY(-1px);
}
.btn:hover svg { transform: translateX(3px); }

.btn--ghost {
  background: transparent; color: var(--paper);
  border-color: var(--line-2); font-weight: 500;
}
.btn--ghost:hover {
  background: transparent; color: var(--signal);
  border-color: var(--signal); box-shadow: none;
}

.btn--sm { padding: .55rem 1rem; font-size: .8rem; }
.btn--lg { padding: 1.05rem 1.9rem; font-size: 1rem; }

/* ─────────────────────────── nav ─────────────────────────── */

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(7, 8, 12, .72);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; padding-top: .7rem; padding-bottom: .7rem;
}
/* the logo is a lockup, mark plus wordmark, so height drives real presence.
   Scales down on narrow screens so it never crowds the CTA. */
.nav__brand img {
  height: clamp(46px, 5.2vw, 68px);
  width: auto; display: block;
}
.nav__links { display: flex; gap: 1.9rem; }
.nav__links a {
  font-size: .86rem; color: var(--paper-dim); position: relative;
  transition: color .2s ease;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -5px;
  height: 1px; background: var(--signal); transition: right .28s ease;
}
.nav__links a:hover { color: var(--paper); }
.nav__links a:hover::after { right: 0; }
.nav__rule { height: 1px; background: var(--line); }
.nav.is-stuck .nav__rule { background: var(--line-2); }

/* ─────────────────────────── hero ─────────────────────────── */

.hero {
  position: relative; overflow: hidden;
  padding: clamp(4rem, 11vh, 8.5rem) 0 clamp(4rem, 10vh, 7rem);
}
.hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 130%;
  background:
    radial-gradient(46% 42% at 14% 8%, rgba(98,230,220,.13), transparent 66%),
    radial-gradient(38% 36% at 88% 26%, rgba(227,161,74,.10), transparent 70%);
  filter: blur(6px);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid; grid-template-columns: minmax(0,1.12fr) minmax(0,.88fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: start;
}

.eyebrow {
  font-family: var(--f-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--paper-dim);
}
.eyebrow__sep { color: var(--signal); margin: 0 .35rem; }

.hero__h1 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(3.1rem, 8.2vw, 6.4rem);
  line-height: .96; letter-spacing: -0.022em;
  margin: 1.1rem 0 1.5rem;
}
/* the category line as headline: more words, so it sizes down a step and
   tightens, otherwise three lines of display serif swallow the fold */
.hero__h1--long {
  font-size: clamp(2.15rem, 4.5vw, 3.45rem);
  line-height: 1.04;
  letter-spacing: -0.016em;
  max-width: 24ch;
  margin-bottom: 1.3rem;
}
.hero__h1 em {
  font-style: italic;
  background: linear-gradient(96deg, var(--signal) 8%, var(--ember) 92%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  padding-right: .08em;
}

.hero__lede {
  max-width: 34rem; font-size: 1.06rem; color: var(--paper-dim);
  line-height: 1.68;
}
.hero__sub {
  max-width: 34rem; margin-top: 1rem;
  font-size: .92rem; color: var(--paper-far); line-height: 1.6;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.1rem; }
.hero__hook {
  margin-top: 2.4rem; padding-top: 1.1rem;
  border-top: 1px solid var(--line);
  color: var(--paper-far);
}
.hero__hook::before { content: "// "; color: var(--signal); }

/* the gauge: signature element */
.gauge {
  position: relative;
  border: 1px solid var(--line-2);
  background:
    linear-gradient(170deg, rgba(14,17,25,.92), rgba(7,8,12,.92));
  padding: 1.5rem 1.5rem 1.35rem;
  border-radius: 3px;
  box-shadow: 0 40px 80px -50px #000;
}
.gauge::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 2px;
  background: linear-gradient(90deg, var(--signal), rgba(98,230,220,0) 62%);
}
.gauge__head { display: flex; justify-content: space-between; align-items: baseline; gap: 1rem; }
.gauge__head .mono { color: var(--paper-dim); }
.gauge__tag {
  color: var(--paper-far); font-size: .6rem; letter-spacing: .14em;
  border: 1px solid var(--line); padding: .18rem .42rem;
}
.gauge__num {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(4.6rem, 12vw, 7.4rem); line-height: .86;
  margin: 1rem 0 .1rem; color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.gauge__unit { color: var(--paper-dim); font-size: .93rem; margin-bottom: 1.3rem; }

.gauge__ticks { list-style: none; display: flex; gap: 5px; margin-bottom: 1.4rem; }
.gauge__ticks li { height: 30px; flex: 1; border-radius: 1px; }
.gauge__ticks li.on  { background: linear-gradient(180deg, var(--signal), rgba(98,230,220,.30)); }
.gauge__ticks li.dim { background: repeating-linear-gradient(135deg, rgba(233,228,216,.14) 0 2px, transparent 2px 5px); }

.gauge__math { border-top: 1px solid var(--line); }
.gauge__math > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .58rem 0; border-bottom: 1px solid var(--line);
}
.gauge__math dt { color: var(--paper-far); font-size: .84rem; }
.gauge__math dd {
  font-family: var(--f-mono); font-size: .84rem; color: var(--paper);
  font-variant-numeric: tabular-nums;
}
.gauge__math dd.hot { color: var(--ember); }
.gauge__foot { margin-top: 1.1rem; font-size: .84rem; color: var(--paper-far); line-height: 1.55; }

/* ─────────────────────────── bands ─────────────────────────── */

.band { padding: clamp(4rem, 9vh, 7.5rem) 0; border-top: 1px solid var(--line); }
.band--alt { background: linear-gradient(180deg, rgba(10,12,19,.72), rgba(7,8,12,0)); }

.marker {
  font-family: var(--f-mono); font-size: .7rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase; color: var(--paper-far);
  margin-bottom: 2.4rem;
}
.marker span { color: var(--signal); margin-right: .7rem; }
.marker--center { text-align: center; }

.h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.95rem, 3.7vw, 3.1rem);
  line-height: 1.06; letter-spacing: -0.018em;
}
.h2 .quiet { color: var(--paper-far); display: block; }
.h2--wide { max-width: 22ch; margin-bottom: 3.2rem; }

.split {
  display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr);
  gap: clamp(1.8rem, 5vw, 4.5rem); align-items: start;
}
.split__body { padding-top: .4rem; }
.split__body p { color: var(--paper-dim); max-width: 38rem; }
.split__body p + p { margin-top: 1.05rem; }

/* the talent math. This slot held a discovery quote until 2026-08-04, when the
   aerospace CFD quotes were pulled for being outside the ICP (spine 1). No
   quote goes back here until one comes from a quantum algorithm researcher. */
.stats {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 1.4rem 1.8rem; margin-top: 2.1rem;
  padding-top: 1.5rem; border-top: 1px solid var(--line-2);
}
.stats dt {
  font-family: var(--f-display); font-size: 2.6rem; line-height: 1;
  letter-spacing: -0.02em; color: var(--paper);
}
.stats dd {
  margin-top: .5rem; font-size: .86rem; line-height: 1.5;
  color: var(--paper-far);
}
.stats__src {
  grid-column: 1 / -1; color: var(--paper-far); font-size: .64rem;
}

/* pillars */
.pillars {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1px; background: var(--line);
  border: 1px solid var(--line);
}
.pillar {
  background: var(--ink); padding: 2rem 1.7rem 1.9rem;
  transition: background .3s ease;
}
.pillar:hover { background: var(--ink-3); }
.pillar__n { color: var(--signal); margin-bottom: 1.4rem; }
.pillar h3 {
  font-family: var(--f-display); font-weight: 400; font-size: 1.6rem;
  line-height: 1.14; letter-spacing: -0.015em; margin-bottom: .9rem;
}
.pillar p { font-size: .95rem; color: var(--paper-dim); }
.pillar p + p:not(.pillar__line) { margin-top: .85rem; }
.pillar__line {
  margin-top: 1.2rem; padding-top: 1rem; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: .74rem; letter-spacing: .04em;
  color: var(--ember) !important; text-transform: none;
}

.callouts {
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 1.6rem; margin-top: 2.4rem;
}
.callout span { color: var(--paper-far); display: block; margin-bottom: .55rem; }
.callout p { font-size: .93rem; color: var(--paper-dim); }

/* ── the loop, drawn as a loop ────────────────────────────────────────────
   Four stages on a ring rather than a timeline: the point is that Compound
   returns to Learn, which a left-to-right rail can't say. */
.cycle {
  display: grid; grid-template-columns: minmax(0, 420px) minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 4.5rem); align-items: center;
  margin-top: 3.2rem;
}
.cycle__fig { margin: 0; }
.cycle__fig svg { width: 100%; height: auto; display: block; overflow: visible; }

.cycle__trace {
  animation: cycle-run 9s linear infinite;
  transform-origin: 220px 220px;
}
@keyframes cycle-run { to { transform: rotate(360deg); } }

.cycle__node rect {
  fill: var(--ink);
  stroke: var(--line-2);
  stroke-width: 1;
}
.cycle__node text {
  fill: var(--paper);
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .14em;
  text-anchor: middle;
}
.cycle__hub {
  fill: var(--paper-far);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: .1em;
  text-anchor: middle;
}

.cycle__list { list-style: none; display: grid; gap: 1.4rem; }
.cycle__list li { padding-left: 1.1rem; border-left: 1px solid var(--line-2); }
.cycle__list h4 {
  font-family: var(--f-mono); font-size: .76rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase; margin-bottom: .4rem;
  color: var(--signal);
}
.cycle__list p { font-size: .93rem; color: var(--paper-dim); }

@media (prefers-reduced-motion: reduce) {
  .cycle__trace { animation: none; }
}

/* the loop rail */
.rail {
  list-style: none; margin-top: 3.4rem;
  display: grid; grid-template-columns: repeat(7, minmax(0,1fr));
  border-top: 1px solid var(--line-2);
}
/* short form: the spine allows collapsing seven stages to four, in order */
.rail--short { grid-template-columns: repeat(4, minmax(0,1fr)); }
.rail__item { position: relative; padding: 1.6rem .9rem 0 0; }
.rail__dot {
  position: absolute; top: -5px; left: 0;
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--ink); border: 1px solid var(--signal);
  transition: background .3s ease, box-shadow .3s ease, transform .3s ease;
}
.rail__item:hover .rail__dot {
  background: var(--signal); transform: scale(1.35);
  box-shadow: 0 0 0 5px rgba(98,230,220,.14);
}
.rail__item h4 {
  font-family: var(--f-mono); font-size: .78rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: .6rem;
  transition: color .3s ease;
}
.rail__item:hover h4 { color: var(--signal); }
.rail__item p { font-size: .84rem; color: var(--paper-far); line-height: 1.5; }
.rail__item::after {
  content: ""; position: absolute; top: -1px; left: 0; right: 0; height: 1px;
  background: var(--signal); transform: scaleX(0); transform-origin: left;
  transition: transform .4s ease;
}
.rail__item:hover::after { transform: scaleX(1); }

/* proof cards: 6 column base so the two lead results can take half each
   while the rest of the ladder stays 3 up */
.proof {
  display: grid; grid-template-columns: repeat(6, minmax(0,1fr));
  gap: 1.15rem;
}
.card {
  grid-column: span 2;
  border: 1px solid var(--line); border-radius: 3px;
  padding: 1.4rem 1.35rem;
  background: linear-gradient(165deg, rgba(14,17,25,.62), rgba(7,8,12,.62));
  transition: border-color .3s ease, transform .3s ease;
}
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
.card__k { color: var(--signal); margin-bottom: .8rem; line-height: 1.5; }
.card__v { font-size: .93rem; color: var(--paper-dim); }
.card__v + .card__v { margin-top: .7rem; }

/* lean page: three results, equal weight, one row */
.proof--lean .card { grid-column: span 2; padding: 1.6rem 1.5rem; }
.proof--lean .card__k { color: var(--paper); font-size: .72rem; }
.proof--lean .card__v { font-size: .96rem; }

/* the two strongest technical results carry the width */
.card--lead { grid-column: span 3; padding: 1.7rem 1.6rem; }
.card--lead .card__v { font-size: 1rem; }
.card--lead .card__k { color: var(--paper); }

/* precision caveats: never separated from the claim (spine 8) */
.card__note {
  margin-top: .9rem; padding-top: .75rem; border-top: 1px solid var(--line);
  font-family: var(--f-mono); font-size: .7rem; letter-spacing: .07em;
  color: var(--ember);
}

/* credentials strip: below the technical ladder, deliberately quieter */
.ledger {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  gap: 1.6rem; margin-top: 2.4rem;
  padding-top: 1.7rem; border-top: 1px solid var(--line-2);
}
.ledger .mono { color: var(--paper-far); display: block; margin-bottom: .55rem; }
.ledger p + p { font-size: .88rem; color: var(--paper-dim); }

/* wordmark row. Typeset names, not scraped logos: real marks go in only when
   the files are supplied and each organization has said yes in writing. */
.marks {
  list-style: none;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 1.6rem 2.6rem;
  margin-top: 2.2rem; padding-top: 1.7rem;
  border-top: 1px solid var(--line);
}
.marks li {
  font-family: var(--f-display); font-size: 1.28rem;
  letter-spacing: -0.01em; color: var(--paper-dim);
  opacity: .82; transition: opacity .25s ease, color .25s ease;
}
.marks li:hover { opacity: 1; color: var(--paper); }

.note {
  margin-top: 2.2rem; padding-left: 1rem;
  border-left: 2px solid var(--ember);
  font-size: .9rem; color: var(--paper-far); max-width: 46rem;
}

/* pilot steps */
.steps {
  list-style: none; margin-top: 3rem;
  display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.15rem;
}
.steps li {
  border-top: 1px solid var(--line-2); padding-top: 1.1rem;
}
.steps span { color: var(--ember); display: block; margin-bottom: .55rem; }
.steps p { font-size: .95rem; color: var(--paper-dim); }

/* ─────────────────────────── close / contact ─────────────────────────── */

.close {
  position: relative; overflow: hidden;
  padding: clamp(4.5rem, 12vh, 9rem) 0 clamp(4.5rem, 11vh, 8rem);
  border-top: 1px solid var(--line);
  text-align: center;
}
.close__glow {
  position: absolute; inset: auto -20% -60% -20%; height: 150%;
  background: radial-gradient(48% 52% at 50% 96%, rgba(98,230,220,.16), transparent 68%);
  pointer-events: none;
}
.close__inner { position: relative; }
.close__h2 {
  font-family: var(--f-display); font-weight: 400;
  font-size: clamp(1.95rem, 4.2vw, 3.2rem); line-height: 1.08;
  letter-spacing: -0.018em; margin: 0 auto 1.5rem;
  max-width: 34ch; text-wrap: balance;
}
.close__h2 em {
  font-style: italic;
  background: linear-gradient(96deg, var(--signal), var(--ember));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.close__sub {
  max-width: 44rem; margin: 0 auto 2.4rem;
  color: var(--paper-dim); font-size: 1.02rem;
}
.close__alt { margin-top: 1.6rem; color: var(--paper-far); }
.close__alt a { color: var(--paper-dim); border-bottom: 1px solid var(--line-2); }
.close__alt a:hover { color: var(--signal); border-color: var(--signal); }

/* ─────────────────────────── footer ─────────────────────────── */

.foot { border-top: 1px solid var(--line); padding: 2rem 0 2.6rem; }
.foot__row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
}
.foot__brand { display: flex; align-items: center; gap: .8rem; }
.foot__brand img { height: 26px; width: auto; opacity: .8; }
.foot__brand p, .foot__tag, .foot__copy { font-size: .78rem; color: var(--paper-far); }
.foot__tag { letter-spacing: .1em; }

/* ─────────────────────────── reveal motion ─────────────────────────── */

/* hidden only when JS is present to un-hide it, so a script failure or a
   blocked file can never leave the page blank */
.js .reveal {
  opacity: 0; transform: translateY(14px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1) var(--d, 0s),
              transform .7s cubic-bezier(.22,.61,.36,1) var(--d, 0s);
}
.js .reveal.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* ─────────────────────────── responsive ─────────────────────────── */

@media (max-width: 1000px) {
  .hero__grid { grid-template-columns: 1fr; }
  .gauge { max-width: 30rem; }
  .pillars, .callouts, .steps, .ledger { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .proof { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .card, .card--lead { grid-column: span 1; }
  .card--lead { grid-column: span 2; }
  .rail { grid-template-columns: repeat(4, minmax(0,1fr)); }
  .cycle { grid-template-columns: 1fr; justify-items: center; }
  .cycle__fig { width: min(100%, 380px); }
  .cycle__list { width: 100%; }
  .nav__links { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .split { grid-template-columns: 1fr; }
  .h2 .quiet { display: inline; }
  .pillars, .callouts, .proof, .steps, .ledger { grid-template-columns: 1fr; }
  .card, .card--lead { grid-column: span 1; }
  .stats { grid-template-columns: 1fr; }
  .stats dt { font-size: 2.2rem; }
  .rail { grid-template-columns: 1fr; border-top: none; }
  .rail__item {
    padding: 1.1rem 0 1.1rem 1.4rem;
    border-left: 1px solid var(--line-2);
  }
  .rail__dot { top: 1.35rem; left: -5px; }
  .rail__item::after { display: none; }
  .hero__cta .btn { width: 100%; justify-content: center; }
  .foot__row { flex-direction: column; align-items: flex-start; }
}
