/* Mobile navigation fix for iPhone Safari and in-app browsers */
@media (max-width: 1040px) {
  body.menu-open {
    height: 100vh;
    height: 100dvh;
    overflow: hidden;
  }

  body.menu-open .site-header {
    inset: 0 !important;
    width: 100% !important;
    height: 100vh !important;
    height: 100dvh !important;
    min-height: 100svh !important;
    max-height: 100dvh !important;
    overflow: hidden !important;
    background: rgba(5, 6, 15, .99) !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  body.menu-open .primary-nav {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    max-height: none !important;
    justify-content: flex-start !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding-top: max(110px, calc(env(safe-area-inset-top) + 82px)) !important;
    padding-bottom: max(48px, calc(env(safe-area-inset-bottom) + 30px)) !important;
    box-sizing: border-box !important;
  }

  body.menu-open .menu-toggle {
    position: fixed;
    top: max(16px, env(safe-area-inset-top));
    right: 16px;
    z-index: 110;
  }
}

:root {
  --bg: #05060f;
  --bg-soft: #080a17;
  --panel: #0d1020;
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.68);
  --subtle: rgba(255, 255, 255, 0.48);
  --border: rgba(255, 255, 255, 0.11);
  --pink: #ff2e7e;
  --orange: #ff6a3d;
  --purple: #8b3dff;
  --blue: #2f6bff;
  --cyan: #2fd0ff;
  --success: #4de1a1;
  --error: #ff8a8a;
  --radius: 24px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  --gradient: linear-gradient(105deg, var(--pink), var(--orange) 38%, var(--purple) 70%, var(--blue));
  --font-display: "Avenir Next", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body { margin: 0; overflow-x: hidden; background: var(--bg); color: var(--text); font-family: var(--font-body); -webkit-font-smoothing: antialiased; }
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { background: var(--purple); color: #fff; }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }

.container { width: min(1180px, calc(100% - 44px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; top: 12px; left: 12px; z-index: 200; padding: 10px 14px; border-radius: 8px; background: #fff; color: #05060f; transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header { position: fixed; inset: 0 0 auto; z-index: 100; border-bottom: 1px solid transparent; transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease; }
.site-header.is-scrolled { border-color: var(--border); background: rgba(5, 6, 15, .85); backdrop-filter: blur(18px); }
.nav-wrap { min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 12px; flex: 0 0 auto; }
.brand-name { display: flex; flex-direction: column; line-height: 1.05; font-family: var(--font-display); font-size: .72rem; letter-spacing: .31em; }
.brand-name strong { font-weight: 650; }
.brand-name em { margin-top: 4px; font-style: normal; font-weight: 700; letter-spacing: .14em; background: var(--gradient); background-clip: text; color: transparent; }
.primary-nav { display: flex; align-items: center; justify-content: flex-end; gap: clamp(16px, 2vw, 30px); color: rgba(255, 255, 255, .76); font-size: .88rem; }
.primary-nav > a:not(.button) { position: relative; padding: 27px 0; }
.primary-nav > a:not(.button)::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 1px; background: var(--gradient); transform: scaleX(0); transition: transform .25s ease; }
.primary-nav > a:hover { color: #fff; }
.primary-nav > a:hover::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 1px solid var(--border); border-radius: 12px; background: rgba(255, 255, 255, .04); }
.menu-toggle > span:not(.sr-only) { display: block; width: 20px; height: 1.5px; margin: 4px auto; background: #fff; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) { transform: translateY(5.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) { opacity: 0; }
.menu-toggle[aria-expanded="true"] > span:nth-of-type(4) { transform: translateY(-5.5px) rotate(-45deg); }

.button { display: inline-flex; min-height: 50px; align-items: center; justify-content: center; gap: 10px; padding: 13px 27px; border: 0; border-radius: 999px; background: var(--gradient); color: #fff; font-family: var(--font-display); font-weight: 650; font-size: .94rem; cursor: pointer; box-shadow: 0 15px 42px -18px rgba(139, 61, 255, .9); transition: transform .25s ease, box-shadow .25s ease, opacity .25s ease; }
.button:hover { transform: translateY(-2px); box-shadow: 0 22px 52px -18px rgba(255, 46, 126, .95); }
.button:disabled { cursor: wait; opacity: .66; transform: none; }
.button-small { min-height: 42px; padding: 10px 19px; font-size: .84rem; white-space: nowrap; }
.button-secondary { border: 1px solid rgba(255, 255, 255, .22); background: rgba(255, 255, 255, .04); box-shadow: none; }
.button-secondary:hover { border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .08); box-shadow: none; }

.hero { position: relative; min-height: 100vh; display: grid; place-items: center; overflow: hidden; padding: 148px 0 90px; isolation: isolate; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(120% 85% at 50% 8%, transparent 35%, rgba(5, 6, 15, .62) 74%, var(--bg) 100%); }
.hero-grid { position: absolute; inset: 0; z-index: -3; opacity: .7; background-image: radial-gradient(circle, rgba(255, 255, 255, .18) 1px, transparent 1.3px); background-size: 34px 34px; mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 80%, transparent); animation: drift 20s linear infinite; }
.orb { position: absolute; z-index: -2; width: min(52vw, 700px); aspect-ratio: 1; border-radius: 50%; filter: blur(55px); opacity: .33; }
.orb-pink { top: -24%; left: -15%; background: radial-gradient(circle, var(--pink), transparent 64%); animation: float-a 17s ease-in-out infinite; }
.orb-blue { right: -18%; bottom: -32%; background: radial-gradient(circle, var(--blue), transparent 64%); animation: float-b 20s ease-in-out infinite; }
.hero-content { text-align: center; }
.eyebrow { width: fit-content; margin: 0 auto 28px; display: flex; align-items: center; gap: 10px; padding: 8px 15px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 999px; background: rgba(255, 255, 255, .04); color: rgba(255, 255, 255, .78); font-family: var(--font-display); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; }
.eyebrow span { width: 7px; height: 7px; border-radius: 50%; background: var(--gradient); }
.hero h1 { max-width: 1040px; margin: 0 auto 28px; font-family: var(--font-display); font-size: clamp(2.75rem, 7vw, 5.9rem); font-weight: 430; line-height: .99; letter-spacing: -.035em; text-wrap: balance; }
.hero h1 span { font-weight: 680; background: var(--gradient); background-size: 200% auto; background-clip: text; color: transparent; animation: gradient-shift 8s ease infinite; }
.hero-copy { max-width: 760px; margin: 0 auto 38px; color: var(--muted); font-size: clamp(1.02rem, 1.5vw, 1.2rem); font-weight: 350; line-height: 1.72; }
.hero-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }
.hero-proof { display: flex; justify-content: center; flex-wrap: wrap; gap: clamp(30px, 8vw, 94px); margin-top: 58px; }
.hero-proof div { display: grid; gap: 6px; }
.hero-proof strong { font-family: var(--font-display); font-size: 1.45rem; font-weight: 650; }
.hero-proof div:nth-child(1) strong { color: #ff6a8f; }
.hero-proof div:nth-child(2) strong { color: #b78cff; }
.hero-proof div:nth-child(3) strong { color: #71b5ff; }
.hero-proof span { color: var(--subtle); font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; }

.product-strip { border-block: 1px solid rgba(255, 255, 255, .07); background: rgba(255, 255, 255, .015); }
.product-list { min-height: 74px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 12px 22px; padding-block: 16px; color: rgba(255, 255, 255, .55); font-family: var(--font-display); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.product-list i { color: rgba(255, 255, 255, .2); font-style: normal; }

.section { position: relative; padding: clamp(82px, 10vw, 130px) 0; }
.section-alt { border-block: 1px solid rgba(255, 255, 255, .055); background: linear-gradient(180deg, rgba(255, 255, 255, .022), rgba(255, 255, 255, .008)); }
.section-heading { max-width: 720px; margin: 0 auto 54px; text-align: center; }
.section-label { margin: 0 0 14px; font-family: var(--font-display); font-size: .74rem; font-weight: 650; letter-spacing: .22em; text-transform: uppercase; }
.section-label.pink { color: var(--pink); }
.section-label.orange { color: var(--orange); }
.section-label.purple { color: #b078ff; }
.section-label.blue { color: #6ca5ff; }
.section h2 { margin: 0 0 18px; font-family: var(--font-display); font-size: clamp(2.15rem, 4.5vw, 3.75rem); font-weight: 460; line-height: 1.05; letter-spacing: -.025em; text-wrap: balance; }
.section-heading > p:last-child, .opportunity-layout > div > p, .form-intro > p:not(.section-label) { color: var(--muted); font-size: 1.02rem; line-height: 1.7; }
.card-grid { display: grid; gap: 18px; }
.four-up { grid-template-columns: repeat(4, 1fr); }
.service-card, .specialism { border: 1px solid var(--border); background: linear-gradient(180deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .014)); transition: transform .25s ease, border-color .25s ease, background .25s ease; }
.service-card { min-height: 270px; padding: 31px 27px; border-radius: var(--radius); }
.service-card:hover, .specialism:hover { transform: translateY(-5px); border-color: rgba(139, 61, 255, .48); background: linear-gradient(180deg, rgba(139, 61, 255, .1), rgba(255, 255, 255, .02)); }
.service-card > span { display: block; margin-bottom: 56px; color: var(--pink); font-family: var(--font-display); font-size: .74rem; letter-spacing: .14em; }
.service-card:nth-child(2) > span { color: var(--orange); }
.service-card:nth-child(3) > span { color: #b078ff; }
.service-card:nth-child(4) > span { color: #6ca5ff; }
.service-card h3, .specialism h3, .process-list h3 { margin: 0 0 12px; font-family: var(--font-display); font-size: 1.18rem; font-weight: 620; }
.service-card p, .specialism p, .process-list p { margin: 0; color: var(--muted); font-size: .9rem; line-height: 1.66; }

.specialism-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.specialism { min-height: 205px; padding: 26px 23px; border-radius: 20px; }
.specialism > span { display: grid; width: 42px; height: 42px; place-items: center; margin-bottom: 30px; border: 1px solid rgba(255, 255, 255, .14); border-radius: 12px; background: rgba(255, 255, 255, .04); color: #ff7da8; font-family: var(--font-display); font-size: .72rem; font-weight: 700; letter-spacing: .04em; }
.specialism:nth-child(4n + 2) > span { color: #ff9b73; }
.specialism:nth-child(4n + 3) > span { color: #bc92ff; }
.specialism:nth-child(4n + 4) > span { color: #75b1ff; }

.audience-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.audience-card { position: relative; overflow: hidden; min-height: 530px; padding: clamp(34px, 5vw, 62px); border: 1px solid var(--border); border-radius: 30px; background: var(--panel); box-shadow: var(--shadow); }
.audience-card::before { content: ""; position: absolute; width: 340px; height: 340px; border-radius: 50%; filter: blur(42px); opacity: .23; pointer-events: none; }
.client-card::before { top: -180px; right: -120px; background: var(--pink); }
.candidate-card::before { right: -100px; bottom: -190px; background: var(--blue); }
.audience-card h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
.audience-card > p:not(.section-label) { max-width: 530px; margin: 0 0 28px; color: var(--muted); line-height: 1.72; }
.check-list { display: grid; gap: 14px; margin: 0 0 36px; padding: 0; list-style: none; color: rgba(255, 255, 255, .82); }
.check-list li::before { content: "✦"; margin-right: 10px; color: var(--orange); }
.candidate-card .check-list li::before { color: #8dbdff; }
.text-link { display: inline-flex; gap: 8px; align-items: center; font-family: var(--font-display); font-weight: 650; }
.text-link span { color: var(--pink); transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }

.opportunity-layout { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: clamp(45px, 8vw, 110px); }
.opportunity-layout > div > p { margin: 0 0 30px; }
.region-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.region-grid > div { min-height: 165px; display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; border: 1px solid var(--border); border-radius: 20px; background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .012)); }
.region-grid span { margin-bottom: auto; color: var(--subtle); font-size: .74rem; }
.region-grid strong { margin-bottom: 5px; font-family: var(--font-display); font-size: 1.05rem; }
.region-grid small { color: var(--muted); }

.process-list { display: grid; grid-template-columns: repeat(4, 1fr); margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: auto 1fr; gap: 17px; padding: 28px 24px; border-top: 1px solid var(--border); }
.process-list li + li { border-left: 1px solid var(--border); }
.process-list > li > span { color: var(--orange); font-family: var(--font-display); font-size: .74rem; letter-spacing: .12em; }

.form-section { overflow: hidden; }
.form-section::before { content: ""; position: absolute; inset: 0; z-index: -1; background: radial-gradient(circle at 15% 35%, rgba(139, 61, 255, .13), transparent 28%), radial-gradient(circle at 85% 70%, rgba(47, 107, 255, .13), transparent 28%); }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; align-items: start; gap: clamp(44px, 8vw, 104px); }
.form-layout.reverse { grid-template-columns: 1.2fr .8fr; }
.form-layout.reverse .form-intro { order: 2; }
.form-layout.reverse .form-shell { order: 1; }
.form-intro { position: sticky; top: 120px; }
.form-intro > p:not(.section-label) { max-width: 450px; margin: 0 0 38px; }
.contact-detail { display: grid; gap: 7px; margin-top: 22px; }
.contact-detail > span { color: var(--subtle); font-size: .69rem; letter-spacing: .14em; text-transform: uppercase; }
.contact-detail a, .contact-detail strong { width: fit-content; font-family: var(--font-display); font-size: 1.05rem; background: var(--gradient); background-clip: text; color: transparent; }
.form-shell { padding: 2px; border-radius: 27px; background: var(--gradient); box-shadow: var(--shadow); }
.form-shell form { position: relative; display: grid; gap: 18px; padding: clamp(25px, 4vw, 40px); border-radius: 25px; background: var(--bg-soft); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.field { display: grid; gap: 8px; }
.field label { color: rgba(255, 255, 255, .58); font-size: .72rem; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.field label span { color: #ff7ca8; }
.field label .optional { color: var(--subtle); font-weight: 450; text-transform: none; }
.field input, .field textarea, .field select { width: 100%; min-height: 49px; padding: 12px 14px; border: 1px solid rgba(255, 255, 255, .13); border-radius: 12px; background: rgba(255, 255, 255, .04); color: #fff; transition: border-color .2s ease, background .2s ease; }
.field textarea { min-height: 130px; resize: vertical; line-height: 1.55; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255, 255, 255, .33); }
.field input:focus, .field textarea:focus, .field select:focus { border-color: rgba(139, 61, 255, .9); background: rgba(255, 255, 255, .065); outline: 2px solid transparent; }
.field select option { background: #0c0e1b; color: #fff; }
.consent { display: grid; grid-template-columns: 19px 1fr; gap: 11px; align-items: start; color: var(--muted); font-size: .78rem; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin: 1px 0 0; accent-color: var(--purple); }
.consent a { color: #c6a8ff; text-decoration: underline; text-underline-offset: 2px; }
.submit-button { width: 100%; margin-top: 3px; }
.form-status { min-height: 20px; margin: -4px 2px 0; font-size: .82rem; line-height: 1.5; }
.form-status.is-working { color: #b6c4ff; }
.form-status.is-success { color: var(--success); }
.form-status.is-error { color: var(--error); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.site-footer { padding: 64px 0 30px; border-top: 1px solid var(--border); background: #04050c; }
.footer-grid { display: grid; grid-template-columns: 1.5fr .7fr .8fr; gap: 70px; }
.footer-grid > div > p { max-width: 460px; margin: 22px 0 0; color: var(--subtle); font-size: .88rem; line-height: 1.65; }
.footer-grid nav { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; color: var(--muted); font-size: .87rem; }
.footer-grid nav strong { margin-bottom: 6px; color: var(--subtle); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; }
.footer-grid nav a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 54px; padding-top: 23px; border-top: 1px solid rgba(255, 255, 255, .07); color: rgba(255, 255, 255, .4); font-size: .7rem; line-height: 1.5; }
.footer-bottom span:last-child { max-width: 590px; text-align: right; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2, .7, .2, 1); }
.reveal.is-visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: .08s; }
.delay-2 { transition-delay: .16s; }
.delay-3 { transition-delay: .24s; }
.delay-4 { transition-delay: .32s; }

@keyframes gradient-shift { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes float-a { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(30px, 45px); } }
@keyframes float-b { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-35px, -30px); } }
@keyframes drift { from { transform: translateY(0); } to { transform: translateY(34px); } }

@media (max-width: 1040px) {
  .menu-toggle { display: block; z-index: 2; }
  .primary-nav { position: fixed; inset: 0; display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 90px 26px 40px; background: rgba(5, 6, 15, .98); transform: translateX(100%); visibility: hidden; transition: transform .3s ease, visibility .3s ease; }
  .primary-nav.is-open { transform: none; visibility: visible; }
  .primary-nav > a:not(.button) { width: min(420px, 100%); padding: 14px; font-family: var(--font-display); font-size: 1.25rem; text-align: center; }
  .primary-nav > a:not(.button)::after { display: none; }
  .primary-nav .button { width: min(320px, 100%); margin-top: 14px; }
  .four-up, .specialism-grid { grid-template-columns: repeat(2, 1fr); }
  .process-list { grid-template-columns: repeat(2, 1fr); }
  .process-list li:nth-child(3) { border-left: 0; }
  .form-layout, .form-layout.reverse { grid-template-columns: 1fr; }
  .form-layout.reverse .form-intro, .form-layout.reverse .form-shell { order: initial; }
  .form-intro { position: static; max-width: 680px; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 30px, 1180px); }
  .nav-wrap { min-height: 68px; }
  .brand img { width: 36px; height: 36px; }
  .brand-name { font-size: .65rem; }
  .hero { min-height: auto; padding: 126px 0 76px; }
  .eyebrow { max-width: 100%; font-size: .62rem; letter-spacing: .13em; }
  .hero h1 { font-size: clamp(2.45rem, 13vw, 4rem); }
  .hero-actions { align-items: stretch; flex-direction: column; width: min(390px, 100%); margin-inline: auto; }
  .hero-proof { gap: 25px 40px; }
  .section { padding: 80px 0; }
  .section-heading { margin-bottom: 38px; text-align: left; }
  .four-up, .specialism-grid, .audience-grid, .opportunity-layout, .region-grid, .process-list, .footer-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 230px; }
  .service-card > span { margin-bottom: 36px; }
  .audience-card { min-height: auto; padding: 34px 27px; }
  .process-list li, .process-list li + li, .process-list li:nth-child(3) { border-left: 0; border-top: 1px solid var(--border); }
  .field-row { grid-template-columns: 1fr; }
  .form-shell form { padding: 25px 20px; }
  .footer-grid { gap: 36px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-bottom span:last-child { text-align: left; }
}

@media (max-width: 380px) {
  .container { width: min(100% - 24px, 1180px); }
  .brand-name { display: none; }
  .hero h1 { font-size: 2.35rem; }
  .hero-proof { display: grid; grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

.legal-page { padding: 150px 0 90px; background: radial-gradient(circle at 80% 0, rgba(139, 61, 255, .16), transparent 28%); }
.legal-content { max-width: 820px; }
.legal-content h1 { margin: 0 0 8px; font-family: var(--font-display); font-size: clamp(2.7rem, 7vw, 5.2rem); font-weight: 520; line-height: 1; }
.legal-updated { margin: 0 0 45px; color: var(--subtle); font-size: .82rem; }
.legal-content h2 { margin: 40px 0 13px; font-family: var(--font-display); font-size: 1.35rem; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.75; }
.legal-content a { color: #c4a4ff; text-decoration: underline; text-underline-offset: 3px; }
.legal-content ul { display: grid; gap: 8px; padding-left: 20px; }
