/* Лендинг Lovko: цвета и шрифты из брендбука (Lovko/brand/brandbook.html). Светлая и тёмная тема по системной настройке */
:root {
  color-scheme: light;
  --paper: #f4f4f8;
  --card: #ffffff;
  --ink: #14152e;
  --ink-2: #5a5c78;
  --line: #dcddea;
  --soft: #e9eafb;
  --deep: #14152e;
  --deep-ink: #ffffff;
  --blue: #3b3fe4;
  --blue-d: #2c30c4;
  --accent-text: #3b3fe4;
  --tang: #ff6b3d;
  --ok: #1e9e62;
  --shadow: rgba(20, 21, 46, 0.16);
  --display: 'Geologica', 'Arial Black', system-ui, sans-serif;
  --body: 'Commissioner', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: dark;
    --paper: #0e0f1f;
    --card: #17182e;
    --ink: #ececf6;
    --ink-2: #a2a4bf;
    --line: #2a2c45;
    --soft: #15172e;
    --deep: #1b1d3d;
    --accent-text: #9a9dff;
    --shadow: rgba(0, 0, 0, 0.45);
  }
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 76px; }
body { margin: 0; background: var(--paper); color: var(--ink); font: 400 17px/1.6 var(--body); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--display); margin: 0; text-wrap: balance; letter-spacing: -0.02em; }
h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 900; line-height: 1.05; }
p { margin: 0; }
.wrap { max-width: 1180px; margin: 0 auto; padding-inline: 24px; }
.eyebrow { font: 600 12.5px/1.3 var(--mono); text-transform: uppercase; letter-spacing: 0.14em; color: var(--accent-text); }
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 52px; padding: 0 24px; border-radius: 16px;
  background: var(--blue); color: #fff; font: 700 16px var(--body); text-decoration: none;
  box-shadow: 0 10px 24px rgba(59, 63, 228, 0.28);
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
}
.btn:hover { transform: translateY(-2px); background: var(--blue-d); }
.btn:focus-visible, .links a:focus-visible, .brand:focus-visible, summary:focus-visible { outline: 3px solid var(--tang); outline-offset: 3px; }
.btn.ghost { background: transparent; color: var(--ink); box-shadow: inset 0 0 0 2px var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--paper); }
.btn.small { min-height: 42px; padding: 0 16px; font-size: 14.5px; border-radius: 12px; box-shadow: none; }
.btn.light { background: #fff; color: #3b3fe4; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); }
.btn.light:hover { background: #f4f4f8; }

/* заставка: слово и брошенная точка, около 2,2 секунды при первом заходе */
.intro { display: none; }
.intro-on .intro {
  display: grid; place-items: center; position: fixed; inset: 0; z-index: 100;
  background: var(--paper); color: var(--ink);
  animation: intro-out 0.5s ease 1.9s forwards;
}
.intro svg { width: min(330px, 70vw); height: auto; overflow: visible; }
.intro text { opacity: 0; animation: intro-word 0.5s ease 0.1s forwards; }
.intro .toss { opacity: 0; animation: intro-toss 1.3s cubic-bezier(0.3, 0, 0.3, 1) 0.45s forwards; }
@keyframes intro-word { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes intro-toss { 0% { opacity: 0; transform: translate(-230px, 90px); } 15% { opacity: 1; } 65% { transform: translate(6px, -16px); } 100% { opacity: 1; transform: none; } }
@keyframes intro-out { to { opacity: 0; visibility: hidden; } }

/* шапка */
.nav { position: sticky; top: 0; z-index: 20; background: color-mix(in srgb, var(--paper) 88%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); padding-top: env(safe-area-inset-top, 0px); }
.nav-in { display: flex; align-items: center; gap: 24px; min-height: 66px; }
.brand { display: block; color: var(--ink); }
.brand svg { display: block; width: 118px; height: auto; overflow: visible; }
.links { display: flex; gap: 22px; margin-left: auto; }
.links a { text-decoration: none; font-weight: 600; font-size: 15px; color: var(--ink-2); }
.links a:hover { color: var(--ink); }
@media (max-width: 900px) { .links { display: none; } .nav .btn { margin-left: auto; } }

/* первый экран */
.hero { overflow: hidden; }
.hero-in { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr); gap: 32px; align-items: center; padding-block: 64px 72px; }
.hero-text { display: grid; gap: 22px; }
.hero h1 { font-size: clamp(44px, 6.6vw, 84px); font-weight: 900; line-height: 0.98; letter-spacing: -0.035em; }
.hero h1 .dot { display: inline-block; width: 0.26em; height: 0.26em; margin-left: 0.06em; border-radius: 50%; background: var(--tang); vertical-align: 0.02em; animation: drop 1.4s cubic-bezier(0.3, 0, 0.3, 1) 0.2s both; }
.intro-on .hero h1 .dot { animation-delay: 2.3s; }
@keyframes drop { 0% { transform: translate(-1.6em, -1.2em); opacity: 0; } 60% { transform: translate(0.05em, -0.12em); opacity: 1; } 100% { transform: none; } }
.lead { font-size: 19.5px; color: var(--ink-2); max-width: 36em; }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin: 4px 0 0; padding: 0; list-style: none; }
.chips li { padding: 7px 13px; border-radius: 999px; background: var(--card); border: 1px solid var(--line); font-weight: 600; font-size: 14px; }
.hero-stage { position: relative; height: 560px; }
.hero-stage .arc { position: absolute; left: -40px; top: -20px; width: 420px; height: 520px; overflow: visible; }
.hero-stage .arc path { fill: none; stroke: var(--tang); stroke-width: 2.2; stroke-dasharray: 2 10; stroke-linecap: round; opacity: 0.7; }
.hero-laptop { position: absolute; right: -80px; top: 90px; width: 520px; transform: rotate(3deg); opacity: 0.95; }
.hero-phone { position: absolute; left: 40px; top: 0; width: 262px; transform: rotate(-4deg); }
.float { position: absolute; z-index: 5; padding: 12px 16px; border-radius: 16px; background: var(--card); color: var(--ink); box-shadow: 0 14px 34px var(--shadow); display: grid; gap: 2px; animation: bob 5s ease-in-out infinite; }
.float b { font: 800 15px var(--display); }
.float small { font-size: 13px; color: var(--ink-2); }
.float::before { content: ''; position: absolute; left: -5px; top: 14px; width: 10px; height: 10px; border-radius: 50%; background: var(--tang); }
.f1 { right: 0; top: 30px; }
.f2 { right: 30px; bottom: 30px; animation-delay: -2.5s; }
@keyframes bob { 50% { transform: translateY(-8px); } }
@media (max-width: 980px) {
  .hero-in { grid-template-columns: 1fr; padding-block: 40px 56px; }
  .hero-stage { height: 520px; max-width: 520px; width: 100%; margin: 0 auto; }
}
@media (max-width: 560px) {
  .hero-stage { height: 480px; }
  .hero-laptop, .hero-stage .arc { display: none; }
  .hero-phone { left: 50%; margin-left: -118px; width: 236px; }
  .f1 { right: -6px; top: 60px; }
  .f2 { left: -6px; right: auto; bottom: 40px; }
}

/* манифест */
.manifest { background: var(--blue); color: #fff; }
.manifest-in { display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; padding-block: 64px; align-items: end; }
.manifest .big { font: 800 clamp(26px, 3.4vw, 40px)/1.15 var(--display); letter-spacing: -0.02em; }
.manifest .big em { font-style: normal; color: #fff; box-shadow: inset 0 -0.18em 0 var(--tang); }
.manifest-side { display: grid; gap: 14px; font-size: 18px; color: rgba(255, 255, 255, 0.86); }
.manifest-side .strong { color: #fff; font-weight: 700; }
@media (max-width: 860px) { .manifest-in { grid-template-columns: 1fr; gap: 24px; } }

/* блоки */
.block { padding-block: 88px; }
.block.alt { background: var(--soft); }
.head { display: grid; gap: 12px; margin-bottom: 40px; max-width: 760px; }
.sub { font-size: 18px; color: var(--ink-2); }

/* путь заказа: порядок шагов настоящий */
.path { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; counter-reset: step; position: relative; }
.path::before { content: ''; position: absolute; left: 22px; right: 22px; top: 22px; border-top: 2px dashed var(--line); }
.path li { position: relative; display: grid; gap: 8px; align-content: start; counter-increment: step; }
.path li::before { content: counter(step); display: grid; place-items: center; width: 46px; height: 46px; border-radius: 50%; background: var(--card); border: 2px solid var(--ink); color: var(--ink); font: 900 18px var(--display); position: relative; z-index: 1; }
.path li:last-child::before { background: var(--tang); border-color: var(--tang); color: #fff; }
.path b { font: 800 18px/1.2 var(--display); margin-top: 6px; }
.path span { font-size: 15px; color: var(--ink-2); }
@media (max-width: 900px) {
  .path { grid-template-columns: 1fr; gap: 20px; }
  .path::before { left: 22px; right: auto; top: 22px; bottom: 22px; border-top: 0; border-left: 2px dashed var(--line); }
  .path li { grid-template-columns: 46px 1fr; column-gap: 16px; }
  .path li::before { grid-row: span 2; }
  .path b { margin-top: 10px; }
}

/* роли */
.role-in { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 56px; align-items: center; }
.role-in.rev .role-text { order: 2; }
.role-text { display: grid; gap: 16px; }
.role-text > p { font-size: 18px; color: var(--ink-2); }
.ticks { list-style: none; margin: 4px 0 0; padding: 0; display: grid; gap: 10px; }
.ticks li { display: grid; grid-template-columns: 26px 1fr; gap: 8px; font-size: 16.5px; }
.ticks li::before { content: ''; width: 18px; height: 18px; margin-top: 4px; border-radius: 50%; background: radial-gradient(circle at 50% 50%, var(--tang) 0 5px, transparent 5.5px), var(--soft); box-shadow: inset 0 0 0 2px var(--blue); }
.role.alt .ticks li::before { background: radial-gradient(circle at 50% 50%, var(--tang) 0 5px, transparent 5.5px), var(--card); }
.role-media { position: relative; display: grid; justify-items: center; }
.role-media.duo { grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.role-media.duo .phone { width: 100%; max-width: 250px; }
.role-media.duo .phone:nth-child(2) { margin-top: 56px; }
.role-media .laptop { width: 100%; }
.role-media .phone.pinned { position: absolute; right: -10px; bottom: -40px; width: 34%; max-width: 200px; }
@media (max-width: 900px) {
  .role-in { grid-template-columns: 1fr; gap: 36px; }
  .role-in.rev .role-text { order: 0; }
  .role-media .phone.pinned { right: 0; bottom: -28px; }
}

/* лояльность */
.deep { background: var(--deep); color: var(--deep-ink); }
.deep .eyebrow { color: #ff9a78; }
.deep .sub { color: rgba(255, 255, 255, 0.75); }
.cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 14px; }
.card { padding: 22px; border-radius: 18px; background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.12); display: grid; gap: 8px; align-content: start; }
.card b { font: 800 19px/1.2 var(--display); }
.card span { color: rgba(255, 255, 255, 0.75); font-size: 15.5px; }
.stickers { display: flex; gap: 18px; margin-top: 34px; }
.stickers img { width: 130px; height: auto; filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.35)); transform: rotate(-6deg); }
.stickers img:nth-child(2) { transform: rotate(4deg) translateY(-8px); }
.stickers img:nth-child(3) { transform: rotate(-2deg); }
.note { margin-top: 14px; font-size: 14px; color: rgba(255, 255, 255, 0.6); }
@media (max-width: 860px) { .cards { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .cards { grid-template-columns: 1fr; } .stickers img { width: 92px; } }

/* возможности: четыре строки как в спецификации, без плиток */
.caps { border-top: 2px solid var(--ink); }
.cap-row { display: grid; grid-template-columns: 220px 1fr; gap: 24px; padding-block: 24px; border-bottom: 1px solid var(--line); align-items: baseline; }
.cap-row h3 { font: 900 clamp(24px, 2.6vw, 32px)/1 var(--display); letter-spacing: -0.02em; }
.cap-row p { display: flex; flex-wrap: wrap; gap: 8px 26px; font-size: 18px; }
.cap-row p b { font-weight: 600; white-space: nowrap; }
.cap-row p b::before { content: ''; display: inline-block; width: 7px; height: 7px; margin: 0 9px 0.2em 0; border-radius: 50%; background: var(--tang); vertical-align: middle; }
.soon { display: flex; flex-wrap: wrap; align-items: center; gap: 8px 18px; margin-top: 22px; font-size: 15px; color: var(--ink-2); }
.soon-label { font: 600 12px var(--mono); text-transform: uppercase; letter-spacing: 0.12em; color: var(--ink); padding: 5px 10px; border: 1px dashed var(--ink-2); border-radius: 999px; }
.custom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 18px 32px; margin-top: 36px; padding: 26px 28px; border-radius: 22px; background: var(--card); border: 1px solid var(--line); }
.custom div { display: grid; gap: 6px; max-width: 640px; }
.custom b { font: 800 21px/1.25 var(--display); }
.custom span { color: var(--ink-2); }
@media (max-width: 760px) { .cap-row { grid-template-columns: 1fr; gap: 10px; } }

/* форматы сотрудничества */
.formats { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.fmt { padding: 26px 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
.fmt b { font: 900 26px var(--display); }
.fmt p { color: var(--ink-2); font-size: 16px; }
.fmt .tag { justify-self: start; font: 600 12px var(--mono); text-transform: uppercase; letter-spacing: 0.08em; padding: 6px 10px; border-radius: 999px; background: var(--soft); color: var(--accent-text); }
.fmt.pick { background: var(--blue); color: #fff; border-color: var(--blue); }
.fmt.pick p { color: rgba(255, 255, 255, 0.85); }
.fmt.pick .tag { background: var(--tang); color: #fff; }
@media (max-width: 860px) { .formats { grid-template-columns: 1fr; } }

/* форматы заведений */
.venues { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.venue { padding: 24px; border-radius: 20px; background: var(--card); border: 1px solid var(--line); display: grid; gap: 10px; align-content: start; }
.venue h3 { font: 900 24px/1.1 var(--display); }
.venue p { color: var(--ink-2); font-size: 16px; }
.venue .kind { justify-self: start; font: 600 11.5px var(--mono); text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-2); }
.venue.live { grid-column: 1 / -1; grid-template-columns: 240px 1fr; gap: 40px; align-items: center; padding: 28px 32px; }
.venue.live .kind { color: var(--tang); }
.venue.live .phone { width: 100%; max-width: 230px; transform: rotate(-3deg); }
.venue-text { display: grid; gap: 12px; justify-items: start; max-width: 560px; }
.venue.live p { font-size: 17px; }
@media (max-width: 860px) { .venues { grid-template-columns: 1fr; } .venue.live { grid-template-columns: 1fr; } .venue.live .phone { margin: 0 auto; width: 210px; } }

/* вопросы */
.faq { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; align-items: start; }
.faq details { padding: 18px 20px; border-radius: 16px; background: var(--card); border: 1px solid var(--line); }
.faq summary { cursor: pointer; font: 800 17px/1.3 var(--display); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--accent-text); font-size: 22px; line-height: 1; }
.faq details[open] summary::after { content: '−'; }
.faq details p { margin-top: 10px; color: var(--ink-2); font-size: 16px; }
@media (max-width: 760px) { .faq { grid-template-columns: 1fr; } }

/* призыв и подвал */
.final { background: var(--blue); color: #fff; position: relative; overflow: hidden; }
.final::after { content: ''; position: absolute; right: -60px; top: -60px; width: 260px; height: 260px; border-radius: 50%; background: var(--tang); opacity: 0.9; }
.final-in { position: relative; z-index: 1; display: grid; gap: 18px; justify-items: start; padding-block: 88px; }
.final p { font-size: 19px; color: rgba(255, 255, 255, 0.85); max-width: 32em; }
.foot { background: #14152e; color: rgba(255, 255, 255, 0.7); padding-bottom: env(safe-area-inset-bottom, 0px); }
.foot-in { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; padding-block: 28px; font-size: 14px; }
.foot svg { width: 96px; height: auto; color: #fff; overflow: visible; }
.foot a { margin-left: auto; color: #fff; font-weight: 600; text-decoration: none; }

@media (prefers-reduced-motion: reduce) {
  .hero h1 .dot, .float { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- устройства (как на сайте-оффере) ---------- */
.phone {
  /* iPhone Pro Max в бордовом корпусе (как в постах канала): металлическая рамка с бликом, чёрная окантовка экрана,
     Dynamic Island, строка состояния, полоска «домой», боковые кнопки. Всё внутри считается от ширины телефона (cqw).
     Скругление корпуса в процентах: cqw на самом контейнере считаются от окна, и углы раздувало бы в полукруг */
  position: relative;
  isolation: isolate;
  container-type: inline-size;
  border-radius: 16.2% / 7.44%;
  background: linear-gradient(140deg, #d98aa0 0%, #9c3450 7%, #6a1a31 22%, #45101f 45%, #5a1628 64%, #8e2d47 86%, #cf7d95 100%);
  box-shadow:
    inset 0 0 0 1px rgba(255, 226, 234, 0.55),
    inset 0 0 0 3px rgba(60, 6, 20, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.55),
    0 16px 30px rgba(0, 0, 0, 0.35),
    0 48px 90px rgba(0, 0, 0, 0.55);
}
/* Dynamic Island */
.phone::before {
  content: '';
  position: absolute;
  top: 6.4cqw;
  left: 50%;
  z-index: 3;
  width: 27.5cqw;
  height: 8cqw;
  transform: translateX(-50%);
  border-radius: 999px;
  background: #000;
  box-shadow: inset 0 0 0 0.4cqw #0d0d0f;
}
/* боковые кнопки: слева действие и громкость, справа питание и камера */
.phone::after {
  content: '';
  position: absolute;
  inset: 0 -1.1cqw;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, #8e2d47, #45101f) no-repeat right 0 top 50cqw / 1.1cqw 24cqw,
    linear-gradient(90deg, #8e2d47, #45101f) no-repeat right 0 top 118cqw / 1.1cqw 15cqw,
    linear-gradient(90deg, #45101f, #8e2d47) no-repeat left 0 top 36cqw / 1.1cqw 9cqw,
    linear-gradient(90deg, #45101f, #8e2d47) no-repeat left 0 top 50cqw / 1.1cqw 16cqw,
    linear-gradient(90deg, #45101f, #8e2d47) no-repeat left 0 top 69cqw / 1.1cqw 16cqw;
}
.phone .scr {
  position: relative;
  margin: 4.4cqw;
  /* строка состояния (11.6cqw) + скрин 390×844 целиком, без обрезки снизу */
  aspect-ratio: 390 / 893.6;
  border-radius: 11.8cqw;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 0 0 2.1cqw #050505, 0 0 0 calc(2.1cqw + 1px) rgba(255, 255, 255, 0.06);
}
/* строка состояния: время слева, связь и батарея справа */
.phone .scr::before {
  content: '9:41';
  position: absolute;
  inset: 0 0 auto 0;
  z-index: 2;
  height: 11.6cqw;
  padding: 1.2cqw 0 0 10.4cqw;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  font: 600 4.5cqw/1 -apple-system, 'Helvetica Neue', system-ui, sans-serif;
  color: #111;
  background: var(--sbbg, #fff4d6);
}
/* значки справа в строке состояния */
.phone .scr::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 68 14'%3E%3Cg fill='%23111'%3E%3Crect x='0' y='9' width='3' height='5' rx='1'/%3E%3Crect x='5' y='7' width='3' height='7' rx='1'/%3E%3Crect x='10' y='4' width='3' height='10' rx='1'/%3E%3Crect x='15' y='1' width='3' height='13' rx='1'/%3E%3Cpath d='M31 13.5l-2.6-2.7a3.7 3.7 0 0 1 5.2 0zM26 8.6a7 7 0 0 1 10 0l-1.5 1.6a4.8 4.8 0 0 0-7 0zM23.3 5.9a10.8 10.8 0 0 1 15.4 0l-1.5 1.5a8.7 8.7 0 0 0-12.4 0z'/%3E%3Crect x='44' y='2.5' width='21' height='10' rx='3' fill='none' stroke='%23111' stroke-opacity='.45'/%3E%3Crect x='45.8' y='4.3' width='16' height='6.4' rx='1.6'/%3E%3Crect x='65.8' y='5.8' width='1.8' height='3.6' rx='.9' fill-opacity='.45'/%3E%3C/g%3E%3C/svg%3E") no-repeat right 7.6cqw top 1.4cqw / 16.5cqw 10.2cqw;
}
.phone .scr > img { position: absolute; top: 11.6cqw; left: 0; width: 100%; height: calc(100% - 11.6cqw); object-fit: cover; object-position: top; transition: opacity 0.45s; }
.tg .scr { --sbbg: #fff; padding-top: 11.6cqw; box-sizing: border-box; }
.phone .scr { --paper: #fff3d6; }
.laptop .lid { padding: 12px 12px 16px; border-radius: 18px 18px 6px 6px; background: #0b0806; box-shadow: 0 0 0 2px #2a2c45, 0 40px 90px rgba(20, 21, 46, 0.35); }
.laptop .scr { position: relative; aspect-ratio: 16 / 10; border-radius: 8px; overflow: hidden; background: #fff3d6; }
.laptop .scr img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top left; }
.laptop .base { height: 16px; margin: 0 -6%; border-radius: 2px 2px 22px 22px; background: linear-gradient(#3a3c55, #14152e); box-shadow: 0 20px 40px rgba(20, 21, 46, 0.3); }
.laptop .base::after { content: ''; display: block; width: 18%; height: 6px; margin: 0 auto; border-radius: 0 0 8px 8px; background: #0b0806; }
