/* ============================================================
   ARC Labs — styles
   Dark, cinematic, premium. Arc/orbit motif throughout.
   ============================================================ */

:root {
  --bg: #07070b;
  --bg-panel: #0b0b12;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-hover: rgba(255, 255, 255, 0.055);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);
  --text: #eceaf4;
  --text-dim: #a7a4b8;
  --text-faint: #6d6a80;
  --cyan: #9CEBFF;
  --violet: #4FC3F7;
  --violet-deep: #2E7FB8;
  --grad: linear-gradient(92deg, var(--cyan), var(--violet) 60%, #6FB7FF);
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Inter Tight", "Inter", -apple-system, sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;
  --container: 1120px;
  --nav-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 24px);
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(79, 195, 247, 0.35); color: #fff; }

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
em { font-style: normal; }

.container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}
.container.narrow { max-width: 780px; }

/* ---------- ambient background ---------- */
.ambient {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  opacity: 0.5;
}
.ambient-glow--violet {
  width: 60vw; height: 60vw;
  top: -25vw; right: -18vw;
  background: radial-gradient(circle, rgba(46, 127, 184, 0.16), transparent 65%);
}
.ambient-glow--cyan {
  width: 50vw; height: 50vw;
  top: 30vh; left: -22vw;
  background: radial-gradient(circle, rgba(156, 235, 255, 0.07), transparent 65%);
}
.grain {
  position: absolute;
  inset: -50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: 0.035;
  animation: grain-shift 9s steps(6) infinite;
}
@keyframes grain-shift {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-4%, 3%); }
  40% { transform: translate(3%, -4%); }
  60% { transform: translate(-3%, -2%); }
  80% { transform: translate(4%, 4%); }
}

/* ---------- typography helpers ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  vertical-align: middle;
  margin-right: 12px;
  transform: translateY(-1px);
}

.accent-serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  padding-right: 0.06em; /* keep italic overhang from clipping */
}

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.h2 {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.6vw, 56px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.025em;
}
.h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 34px);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.dim { color: var(--text-faint); }
.dim-text { color: var(--text-dim); }
.body { color: var(--text-dim); font-size: 17px; }
.body + .body { margin-top: 16px; }
.body strong { color: var(--text); font-weight: 550; }
.body-lg {
  color: var(--text-dim);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.6;
}
.body-lg strong { color: var(--text); font-weight: 550; }

/* ---------- reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.9s var(--ease) var(--d, 0s),
    transform 0.9s var(--ease) var(--d, 0s);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .orbit-ring, .grain, .orbit-dot { animation: none !important; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 550;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
    background 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn--primary {
  color: #0a0a12;
  background: linear-gradient(120deg, #d8f2ff, #ffffff 45%, #cfe9ff);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 12px 40px -12px rgba(79, 195, 247, 0.45);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.2),
    0 18px 50px -12px rgba(79, 195, 247, 0.6);
}
.btn--ghost {
  color: var(--text);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}
.btn--ghost:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}
.btn--small { padding: 10px 20px; font-size: 13.5px; }
.btn--large { padding: 18px 36px; font-size: 16px; }
.btn-arrow { transition: transform 0.35s var(--ease); }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ---------- nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease, backdrop-filter 0.4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(7, 7, 11, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  border-bottom-color: var(--border-soft);
}
.nav-inner {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; }
.brand-lockup {
  height: 42px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(79, 195, 247, 0.18));
}
.nav-links { display: flex; gap: 34px; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dim);
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--text); }

/* ---------- hero ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-h) + 64px) 0 96px;
  overflow: hidden;
}
.orbits {
  position: absolute;
  top: 50%; left: 50%;
  width: max(1200px, 120vw);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  pointer-events: none;
  mask-image: radial-gradient(circle at center, black 30%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at center, black 30%, transparent 72%);
}
.orbits-svg { width: 100%; height: 100%; }
.orbit-ring {
  transform-origin: 600px 600px;
  animation: orbit-spin 90s linear infinite;
}
.orbit-ring--2 { animation-duration: 140s; animation-direction: reverse; }
.orbit-ring--3 { animation-duration: 200s; }
@keyframes orbit-spin {
  to { transform: rotate(360deg); }
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 900px;
}
.hero-emblem {
  width: 74px;
  height: 74px;
  margin: 0 auto 28px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 0 0 1px rgba(156, 235, 255, 0.12),
    0 0 32px rgba(79, 195, 247, 0.35),
    0 0 90px rgba(46, 127, 184, 0.3);
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  text-wrap: balance;
}
.hero-title .accent-serif { font-size: 1.04em; }
.hero-lede {
  font-size: clamp(18px, 2.2vw, 22px);
  line-height: 1.6;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto 18px;
  text-wrap: balance;
}
.hero-sub {
  font-size: 16px;
  color: var(--text-faint);
  max-width: 640px;
  margin: 0 auto 44px;
  text-wrap: balance;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 38px;
  border: 1px solid var(--border);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue span {
  width: 3px; height: 8px;
  border-radius: 3px;
  background: var(--text-faint);
  animation: cue 2.2s var(--ease) infinite;
}
@keyframes cue {
  0% { transform: translateY(0); opacity: 1; }
  70% { transform: translateY(12px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ---------- sections ---------- */
.section { padding: clamp(96px, 12vw, 160px) 0; position: relative; }
.section--panel {
  background:
    radial-gradient(1200px 500px at 50% -10%, rgba(46, 127, 184, 0.06), transparent 70%),
    var(--bg-panel);
  border-block: 1px solid var(--border-soft);
}
.centered-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto clamp(56px, 7vw, 88px);
}
.centered-head .eyebrow::before { display: none; }
.centered-head .eyebrow::after {
  content: "";
  display: block;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  margin: 12px auto 0;
}
.centered-head .h2 { margin-bottom: 22px; }

/* ---------- split (businesses) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  margin-bottom: clamp(64px, 8vw, 110px);
}
.split-body .body-lg { margin-bottom: 20px; }

.leverage {
  display: grid;
  gap: 6px;
  max-width: 820px;
}
.leverage li {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.6vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.25;
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
}
.leverage li .accent-serif { font-size: 1.05em; }
.leverage-close {
  margin-top: 28px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

/* ---------- questions ---------- */
.q-hero { display: inline-block; font-size: 1.25em; }
.questions {
  max-width: 760px;
  margin: 0 auto;
  border-top: 1px solid var(--border-soft);
}
.question {
  display: flex;
  align-items: baseline;
  gap: 28px;
  padding: 22px 8px;
  border-bottom: 1px solid var(--border-soft);
  font-family: var(--font-display);
  font-size: clamp(18px, 2.2vw, 24px);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--text-dim);
  transition: color 0.35s ease, padding-left 0.35s var(--ease);
}
.question:hover { color: var(--text); padding-left: 18px; }
.q-index {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--violet);
  opacity: 0.8;
  min-width: 26px;
}
.statement {
  margin: clamp(56px, 7vw, 80px) auto 0;
  max-width: 700px;
  text-align: center;
  font-size: clamp(19px, 2.2vw, 23px);
  line-height: 1.55;
  color: var(--text-dim);
}
.statement-em {
  display: block;
  margin-top: 10px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.35em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ---------- bento cards ---------- */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
}
.card {
  grid-column: span 3;
  position: relative;
  padding: 34px 30px 38px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s ease, background 0.45s ease;
}
.card--feature { grid-column: span 6; padding: 44px 40px; }
.card::before {
  /* cursor-following glow */
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--mx, 50%) var(--my, 0%),
    rgba(79, 195, 247, 0.1),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.card:hover::before { opacity: 1; }
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(79, 195, 247, 0.25);
  background: var(--surface-hover);
}
.card-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  color: var(--violet);
  background: rgba(79, 195, 247, 0.08);
  border: 1px solid rgba(79, 195, 247, 0.18);
}
.card-icon svg { width: 22px; height: 22px; }
.card h3 {
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.015em;
  margin-bottom: 10px;
}
.card p { color: var(--text-dim); font-size: 15.5px; max-width: 60ch; }
.card--feature h3 { font-size: 26px; }
.card--feature p { font-size: 17px; }


/* ---------- philosophy ---------- */
.section--philosophy { text-align: center; }
.philosophy-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4.4vw, 54px);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.philosophy-body {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-dim);
  font-size: 18px;
}
.philosophy-body p + p { margin-top: 18px; color: var(--text); font-weight: 500; }

/* ---------- process ---------- */
.process {
  max-width: 820px;
  margin: 0 auto;
  position: relative;
}
.process::before {
  content: "";
  position: absolute;
  left: 31px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(79, 195, 247, 0.35) 12%,
    rgba(156, 235, 255, 0.3) 88%,
    transparent
  );
}
.step {
  display: flex;
  gap: clamp(28px, 5vw, 56px);
  padding: 34px 0;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--violet);
  width: 62px;
  min-width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bg-panel);
  border: 1px solid rgba(79, 195, 247, 0.25);
  box-shadow: 0 0 0 6px var(--bg-panel);
  position: relative;
  z-index: 1;
}
.step-body { padding-top: 8px; }
.step h3 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 28px);
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}
.step p { color: var(--text-dim); max-width: 56ch; }

/* ---------- why / roles ---------- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  margin-bottom: clamp(72px, 9vw, 120px);
}
.roles {
  text-align: center;
  padding: clamp(48px, 6vw, 72px) clamp(24px, 5vw, 64px);
  border-radius: 28px;
  background:
    radial-gradient(800px 300px at 50% 0%, rgba(46, 127, 184, 0.08), transparent 70%),
    var(--surface);
  border: 1px solid var(--border-soft);
}
.roles-intro { color: var(--text-faint); font-size: 15px; margin-bottom: 26px; }
.roles-words {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: clamp(18px, 3vw, 36px);
  row-gap: 4px;
  margin-bottom: 30px;
}
.roles-words span {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.4vw, 52px);
  font-weight: 600;
  letter-spacing: -0.03em;
}
.roles-words span:nth-child(1) { color: var(--text); }
.roles-words span:nth-child(2) { color: var(--cyan); }
.roles-words span:nth-child(3) { color: var(--violet); }
.roles-words span:nth-child(4) { color: var(--text-dim); }
.roles-outro { color: var(--text-dim); max-width: 620px; margin: 0 auto; font-size: 16px; }

/* ---------- fit ---------- */
.fit-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 20px;
  align-items: stretch;
}
.fit-card {
  padding: 40px 36px;
  border-radius: 22px;
  border: 1px solid var(--border-soft);
  background: var(--surface);
}
.fit-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.fit-card ul { display: grid; gap: 16px; }
.fit-card li {
  position: relative;
  padding-left: 32px;
  color: var(--text-dim);
  font-size: 16px;
}
.fit-card--yes li::before {
  content: "";
  position: absolute;
  left: 0; top: 7px;
  width: 15px; height: 8px;
  border-left: 2px solid var(--cyan);
  border-bottom: 2px solid var(--cyan);
  transform: rotate(-45deg);
  border-radius: 1px;
}
.fit-card--no li::before {
  content: "";
  position: absolute;
  left: 2px; top: 11px;
  width: 12px; height: 2px;
  background: var(--text-faint);
  border-radius: 2px;
}
.fit-card--no { background: rgba(255, 255, 255, 0.015); }
.fit-note {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-soft);
  color: var(--text-faint);
  font-size: 15px;
}

/* ---------- difference ---------- */
#difference .eyebrow { text-align: center; }
#difference .eyebrow::before { display: none; }
#difference .eyebrow::after {
  content: "";
  display: block;
  width: 22px; height: 1px;
  background: linear-gradient(90deg, var(--cyan), var(--violet));
  margin: 12px auto 0;
}
.difference { margin-top: clamp(40px, 5vw, 64px); display: grid; gap: clamp(40px, 5vw, 56px); }
.diff-row { text-align: center; }
.diff-not {
  color: var(--text-faint);
  font-size: clamp(16px, 1.8vw, 19px);
  margin-bottom: 10px;
}
.diff-not::after { content: ""; }
.diff-do {
  font-family: var(--font-display);
  font-size: clamp(24px, 3.4vw, 40px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.2;
  text-wrap: balance;
}
.diff-do .accent-serif { font-size: 1.05em; }

/* ---------- final CTA ---------- */
.cta {
  position: relative;
  padding: clamp(120px, 15vw, 200px) 0 clamp(140px, 16vw, 220px);
  overflow: hidden;
  text-align: center;
}
.horizon {
  position: absolute;
  left: 50%;
  top: calc(100% - 170px);
  width: max(180vw, 1800px);
  aspect-ratio: 1;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(12, 12, 20, 0.9), rgba(10, 10, 16, 0.98) 70%);
  border: 1px solid rgba(79, 195, 247, 0.4);
  box-shadow:
    0 -2px 24px rgba(79, 195, 247, 0.35),
    0 -12px 90px rgba(46, 127, 184, 0.3),
    0 -40px 220px rgba(156, 235, 255, 0.12),
    inset 0 2px 30px rgba(156, 235, 255, 0.25);
  pointer-events: none;
}
.cta-content { position: relative; max-width: 760px; }
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 30px;
}
.cta-title .accent-serif { font-size: 1.05em; }
.cta .body-lg { margin-bottom: 18px; }
.cta .dim-text { margin-bottom: 44px; }
.cta-welcome {
  margin-top: 56px;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-faint);
}

/* ---------- footer ---------- */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 44px 0;
  background: var(--bg);
  position: relative;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-lockup { height: 104px; width: auto; }
.footer-tag { color: var(--text-faint); font-size: 14px; }
.footer-copy { color: var(--text-faint); font-size: 13px; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 960px) {
  .split { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .fit-grid { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .bento { grid-template-columns: 1fr; }
  .card, .card--feature { grid-column: span 1; }
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }
  .br-desktop { display: none; }
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .process::before { left: 24px; }
  .step { gap: 22px; padding: 26px 0; }
  .step-num { width: 48px; min-width: 48px; height: 48px; font-size: 13px; }
  .question { gap: 16px; padding: 18px 4px; }
  .card--feature { padding: 34px 28px; }
  .footer-inner { flex-direction: column; text-align: center; }
}
