/* Open Deep Link — landing
   Paleta: preto profundo + azul elétrico / ciano */

:root {
  --bg: #04060D;
  --bg-panel: rgba(10, 16, 32, 0.85);
  --ink: #E9EEFB;
  --ink-soft: #DCE6FB;
  --muted: #A9B8D8;
  --muted-2: #8B9AC0;
  --muted-3: #7788AC;
  --muted-4: #6F80A6;
  --nav-ink: #9FB0D4;

  --blue: #2D6AFF;
  --blue-400: #4C8CFF;
  --cyan: #19D7FF;
  --cyan-300: #7FE4FF;
  --cyan-200: #9FD6FF;
  --on-accent: #050912;

  --line: rgba(120, 160, 255, 0.14);
  --line-soft: rgba(120, 160, 255, 0.10);
  --line-strong: rgba(120, 160, 255, 0.26);

  --danger: #FF8095;
  --danger-soft: #FFB3C0;

  --accent-grad: linear-gradient(135deg, var(--blue-400), var(--cyan));
  --panel-grad: linear-gradient(180deg, rgba(13, 20, 40, 0.9), rgba(7, 10, 22, 0.9));

  --gutter: clamp(20px, 5vw, 80px);
  --radius-sm: 12px;
  --radius: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: #7FB4FF; }
a:hover { color: #B6D4FF; }

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

h1, h2, h3 { letter-spacing: -0.03em; font-weight: 700; margin: 0; }
p { margin: 0; }

.is-hidden { display: none !important; }

.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- layout base ---------- */

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

.glow {
  position: absolute;
  pointer-events: none;
  z-index: 0;
}
.glow--hero {
  top: -300px; left: 50%; margin-left: -620px;
  width: 1240px; height: 820px;
  background: radial-gradient(closest-side, rgba(45, 106, 255, 0.32), rgba(4, 6, 13, 0));
}
.glow--mid {
  top: 1750px; left: -240px;
  width: 780px; height: 780px;
  background: radial-gradient(closest-side, rgba(24, 180, 255, 0.14), rgba(4, 6, 13, 0));
}
.glow--low {
  top: 3100px; right: -260px;
  width: 840px; height: 840px;
  background: radial-gradient(closest-side, rgba(64, 86, 255, 0.16), rgba(4, 6, 13, 0));
}

.section {
  position: relative;
  z-index: 1;
  padding: clamp(48px, 6vw, 80px) var(--gutter);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3.5vw, 44px);
}
.section--bordered { border-top: 1px solid rgba(120, 160, 255, 0.08); }
.section--platforms { padding-top: clamp(24px, 3vw, 40px); }

.section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 680px;
}
.section__head--center {
  align-items: center;
  text-align: center;
  max-width: none;
  gap: 14px;
}
.section__head--split {
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  max-width: none;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.6px;
  color: var(--cyan-300);
}

.section__title {
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.12;
}

.section__lead {
  max-width: 580px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
}
.section__aside {
  max-width: 420px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- botões ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 56px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font: inherit;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  color: var(--on-accent);
  font-weight: 700;
  background: var(--accent-grad);
  box-shadow: 0 10px 40px rgba(45, 140, 255, 0.40);
}
.btn--primary:hover { color: var(--on-accent); box-shadow: 0 14px 46px rgba(45, 140, 255, 0.55); }

.btn--ghost {
  color: var(--ink-soft);
  border-color: var(--line-strong);
  background: rgba(12, 18, 36, 0.6);
}
.btn--ghost:hover { color: var(--ink-soft); border-color: rgba(120, 160, 255, 0.45); }

.btn--pill { height: 44px; padding: 0 22px; border-radius: 999px; font-size: 14px; }
.btn--md { height: 50px; padding: 0 24px; border-radius: 14px; font-size: 15px; }
.btn--lg { padding: 0 30px; }
.btn--block { width: 100%; }

/* ---------- topo ---------- */

.site-header {
  position: relative;
  z-index: 2;
  min-height: 92px;
  padding: 16px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid var(--line-soft);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}
.brand:hover { color: inherit; }

/* Lockup horizontal do kit de marca: símbolo + nome,
   com o vão entre eles em 1/3 da altura do símbolo. */
.brand { gap: 11px; }
.brand--sm { gap: 10px; }

.brand__symbol { flex-shrink: 0; display: block; }

.brand__name { font-size: 19px; letter-spacing: -0.03em; }
.brand__name--sm { font-size: 17px; }
.brand__name-open { font-weight: 400; color: #8FA6CE; }
.brand__name-deep { font-weight: 700; color: #EAF3FF; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 5px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(12, 18, 36, 0.72);
}
.nav__link {
  padding: 9px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: var(--nav-ink);
}
.nav__link:hover { color: var(--ink); background: rgba(120, 160, 255, 0.10); }

.header__actions { display: flex; align-items: center; gap: 10px; }

.burger {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(120, 160, 255, 0.22);
  background: rgba(12, 18, 36, 0.7);
  cursor: pointer;
}

.mobile-nav {
  position: relative;
  z-index: 2;
  padding: 14px var(--gutter) 22px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(8, 12, 26, 0.9);
}
.mobile-nav__link {
  padding: 12px 4px;
  font-size: 15px;
  text-decoration: none;
  color: #C3D2F0;
}
.mobile-nav__cta {
  margin-top: 6px;
  height: 48px;
  border-radius: 14px;
  font-size: 15px;
}

/* ---------- hero ---------- */

.hero {
  position: relative;
  z-index: 1;
  padding: clamp(56px, 9vw, 150px) var(--gutter) clamp(48px, 6vw, 80px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(18px, 2.4vw, 26px);
}

.hero__title {
  max-width: 1180px;
  text-align: center;
  font-size: clamp(34px, 5.4vw, 66px);
  line-height: 1.06;
  text-wrap: balance;
}

.grad-text {
  background: linear-gradient(100deg, #6FA8FF 5%, var(--cyan) 55%, #9AE7FF 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__sub {
  max-width: 680px;
  text-align: center;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 1.62;
  color: var(--muted);
  text-wrap: pretty;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  padding-top: 4px;
}

/* ---------- gerador ---------- */

.generator {
  position: relative;
  width: min(860px, 100%);
  margin-top: 18px;
}
.generator__glow {
  position: absolute;
  inset: -50px -20px;
  background: radial-gradient(closest-side, rgba(45, 106, 255, 0.26), rgba(4, 6, 13, 0));
  pointer-events: none;
}

.gen-card {
  position: relative;
  padding: clamp(18px, 3vw, 28px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(120, 160, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.96), rgba(7, 11, 24, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.gen-form { display: flex; flex-direction: column; gap: 10px; }

.gen-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  color: var(--cyan-300);
}

.gen-row { display: flex; gap: 12px; }

.gen-field {
  position: relative;
  flex-grow: 1;
  min-width: 0;
  display: flex;
}

.gen-input {
  flex-grow: 1;
  min-width: 0;
  height: 58px;
  padding: 0 56px 0 20px;
  border-radius: var(--radius);
  border: 1px solid rgba(120, 160, 255, 0.28);
  background: rgba(6, 10, 22, 0.9);
  color: var(--ink);
  font-family: inherit;
  font-size: 15.5px;
}
.gen-input::placeholder { color: #6F80A6; }
.gen-input:focus { border-color: rgba(25, 215, 255, 0.55); }

.gen-clear {
  position: absolute;
  top: 50%;
  right: 7px;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--muted-4);
  cursor: pointer;
}
.gen-clear:hover { color: var(--ink); background: rgba(120, 160, 255, 0.10); }

.gen-submit {
  height: 58px;
  padding: 0 30px;
  border: none;
  border-radius: var(--radius);
  font-family: inherit;
  font-weight: 700;
  font-size: 15.5px;
  color: var(--on-accent);
  background: var(--accent-grad);
  box-shadow: 0 10px 34px rgba(45, 140, 255, 0.4);
  cursor: pointer;
  white-space: nowrap;
}

.gen-error {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 105, 120, 0.3);
  background: rgba(40, 12, 22, 0.7);
  font-size: 14px;
  color: var(--danger-soft);
}

.gen-divider { display: flex; align-items: center; gap: 12px; }
.gen-divider::before,
.gen-divider::after {
  content: "";
  flex-grow: 1;
  height: 1px;
}
.gen-divider::before { background: linear-gradient(90deg, rgba(120, 160, 255, 0), rgba(120, 160, 255, 0.32)); }
.gen-divider::after { background: linear-gradient(90deg, rgba(120, 160, 255, 0.32), rgba(120, 160, 255, 0)); }

.gen-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(120, 160, 255, 0.07);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted-4);
  letter-spacing: 0.4px;
  white-space: nowrap;
}
.gen-chip--live {
  background: rgba(25, 215, 255, 0.12);
  border-color: rgba(25, 215, 255, 0.32);
  color: var(--cyan-300);
}

.result {
  border-radius: var(--radius);
  padding: 1px;
  background: linear-gradient(120deg, var(--blue), var(--cyan) 45%, #9B5CFF 100%);
  box-shadow: 0 0 40px rgba(45, 140, 255, 0.42);
}
.result__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  border-radius: 15px;
  background: #070C1A;
  font-size: 15px;
  font-weight: 600;
  color: #EAF3FF;
  min-width: 0;
}
.result__icon { flex-shrink: 0; color: var(--cyan); }
.result__icon--lock { display: none; }
.result__link {
  flex-grow: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-btn {
  flex-shrink: 0;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  color: var(--on-accent);
  background: var(--accent-grad);
  padding: 9px 14px;
  border-radius: 9px;
}

/* Estado "exemplo": nada foi gerado ainda, então o campo fica neutro e travado. */
.result--example {
  background: var(--line);
  box-shadow: none;
}
.result--example .result__inner {
  background: rgba(6, 10, 22, 0.9);
  color: var(--muted-4);
  font-weight: 500;
}
.result--example .result__icon--link { display: none; }
.result--example .result__icon--lock { display: block; color: var(--muted-4); }
.result--example .result__link { font-style: italic; }
.result--example .copy-btn {
  color: var(--muted-4);
  background: rgba(120, 160, 255, 0.08);
  border: 1px solid var(--line);
  cursor: not-allowed;
}

.scheme {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  font-size: 13px;
  color: var(--muted-3);
}
.scheme__label { font-weight: 700; letter-spacing: 1px; color: var(--muted-4); }
.scheme__value { color: var(--muted); word-break: break-all; }

.gen-note { font-size: 13px; line-height: 1.6; color: var(--muted-3); }

.chip-grid {
  width: min(860px, 100%);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}
.chip {
  padding: 14px 10px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- cards ---------- */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}
.card-grid--problem { grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.card-grid--steps { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; }
.card-grid--benefits { grid-template-columns: repeat(auto-fit, minmax(290px, 1fr)); }

.card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(120, 160, 255, 0.16);
  background: var(--panel-grad);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.card--problem {
  padding: 28px;
  border-radius: 20px;
  border-color: rgba(255, 105, 120, 0.18);
  background: linear-gradient(180deg, rgba(30, 12, 20, 0.7), rgba(8, 8, 16, 0.7));
}
.card--step { padding: 32px; gap: 16px; }
.card--benefit { padding: 32px; border-radius: 24px; gap: 14px; }
.card--benefit-lead {
  border-color: rgba(25, 215, 255, 0.26);
  background: linear-gradient(160deg, rgba(16, 28, 60, 0.95), rgba(7, 10, 22, 0.95));
  box-shadow: 0 0 44px rgba(25, 140, 255, 0.12);
}

.card__title { font-size: 19px; font-weight: 600; }
.card--step .card__title,
.card--benefit .card__title { font-size: 21px; }
.card--case .card__title { font-size: 20px; }

.card__text { font-size: 14.5px; line-height: 1.6; color: var(--muted); }
.card--step .card__text,
.card--benefit .card__text,
.card--case .card__text { font-size: 15px; line-height: 1.65; }

.card__tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--cyan-300);
}

.step__num {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
  color: var(--on-accent);
  background: var(--accent-grad);
}

/* ---------- diagrama de fluxo ---------- */

.flow {
  padding: clamp(20px, 3vw, 36px) clamp(18px, 3vw, 40px);
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(8, 12, 26, 0.7);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
}
.flow__node {
  flex: 1 1 200px;
  padding: 20px;
  border-radius: var(--radius);
  background: rgba(13, 20, 40, 0.9);
  border: 1px solid rgba(120, 160, 255, 0.12);
  text-align: center;
}
.flow__node--active {
  border-color: rgba(25, 215, 255, 0.28);
  box-shadow: 0 0 30px rgba(25, 215, 255, 0.14);
}
.flow__node--fallback {
  background: rgba(9, 13, 26, 0.9);
  border: 1px dashed rgba(120, 160, 255, 0.2);
}
.flow__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: #7C8FB8;
  margin-bottom: 8px;
}
.flow__node--active .flow__label { color: var(--cyan-300); }
.flow__node--fallback .flow__label { color: var(--muted-4); }
.flow__value { font-size: 16px; color: var(--ink); }
.flow__node--fallback .flow__value { color: var(--muted); }
.flow__arrow { flex-shrink: 0; }

@media (max-width: 1180px) {
  .flow { flex-direction: column; }
  .flow__node { width: 100%; flex: 0 0 auto; }
  .flow__arrow { transform: rotate(90deg); }
}

/* ---------- plataformas ---------- */

.plat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.plat {
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.plat--generic {
  border: 1px dashed rgba(25, 215, 255, 0.3);
  background: rgba(9, 18, 34, 0.85);
}
.plat__name { font-size: 17px; font-weight: 600; }
.plat--generic .plat__name { color: var(--cyan-300); }
.plat__desc { font-size: 13.5px; color: var(--muted-2); }

/* ---------- rodapé ---------- */

.site-footer {
  position: relative;
  z-index: 1;
  margin-top: auto;
  padding: clamp(36px, 4vw, 44px) var(--gutter) 40px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 36px;
}
.footer__about {
  flex: 1 1 300px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
}
.footer__text { font-size: 14px; line-height: 1.65; color: var(--muted-2); }
.footer__cols { display: flex; flex-wrap: wrap; gap: clamp(32px, 5vw, 72px); }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  color: var(--muted-4);
}
.footer__link { font-size: 14px; text-decoration: none; color: var(--muted); }
.footer__link:hover { color: var(--ink); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
  border-top: 1px solid rgba(120, 160, 255, 0.08);
  font-size: 13px;
  color: var(--muted-4);
}
.footer__cta { box-shadow: 0 8px 28px rgba(45, 140, 255, 0.32); height: 48px; padding: 0 22px; border-radius: 14px; font-size: 15px; }

/* ---------- voltar ao topo ---------- */

.to-top {
  position: fixed;
  right: clamp(16px, 3vw, 32px);
  bottom: clamp(16px, 3vw, 32px);
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  background: rgba(10, 16, 32, 0.92);
  backdrop-filter: blur(8px);
  color: var(--ink-soft);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.55);
  opacity: 1;
  transition: opacity 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}
.to-top:hover {
  transform: translateY(-2px);
  border-color: rgba(25, 215, 255, 0.45);
  color: var(--ink);
}
.to-top--hidden {
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}

@media (max-width: 720px) {
  .to-top {
    width: 46px;
    height: 46px;
    padding: 0;
    justify-content: center;
  }
  .to-top__text { display: none; }
}

/* ---------- tela de redirecionamento (#/slug?u=) ---------- */

.redirect {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px var(--gutter);
  text-align: center;
}
.redirect__card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  padding: clamp(28px, 5vw, 44px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(120, 160, 255, 0.18);
  background: linear-gradient(180deg, rgba(14, 22, 44, 0.96), rgba(7, 11, 24, 0.96));
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.redirect__title { font-size: clamp(24px, 4vw, 30px); line-height: 1.15; }
.redirect__text { font-size: 15px; line-height: 1.6; color: var(--muted); }
.redirect__target {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(6, 10, 22, 0.9);
  font-size: 13.5px;
  color: var(--muted);
  word-break: break-all;
}
.redirect__spinner {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 3px solid rgba(120, 160, 255, 0.18);
  border-top-color: var(--cyan);
  animation: odl-spin 0.9s linear infinite;
}

@keyframes odl-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn:hover { transform: none; }
  .to-top:hover { transform: none; }
  .to-top, .to-top--hidden { transition: opacity 0.2s ease; transform: none; }
  .redirect__spinner { animation-duration: 3s; }
}

/* ---------- responsivo ---------- */

@media (max-width: 1024px) {
  .nav { display: none; }
  .burger { display: inline-flex; }
}

@media (max-width: 720px) {
  .btn--nav-cta { display: none; }
  .hero__actions { width: 100%; flex-direction: column; }
  .hero__actions > .btn { width: 100%; }
  .gen-row { flex-direction: column; }
  .gen-row > .gen-submit { width: 100%; }
  .footer__bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .section__head--split { align-items: flex-start; }
}
