/* =================================================================
   Plainsight Security
   Palette : deep navy authority · red-team signature accent · verified green ticks
   Type    : Space Grotesk (display) · IBM Plex Sans (body) · IBM Plex Mono (utility)
   ================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;600;700&family=IBM+Plex+Sans:ital,wght@0,400;0,500;0,600;1,400&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --ink:      #0A1828;
  --ink-2:    #0F2237;
  --ink-3:    #173352;
  --abyss:    #060F1B;
  --paper:    #EEF3F8;
  --surface:  #FFFFFF;

  --red:        #EA4A30;   /* signature: red-team / CTAs */
  --red-bright: #FF5C49;   /* on dark */
  --red-deep:   #C13B23;   /* hover */
  --verify:     #18A06B;   /* small "tested / verified" ticks */

  --slate:    #51647A;
  --slate-lt: #7E91A6;
  --line:     #D6E0EB;
  --line-dk:  #1E3A58;

  --font-display: "Space Grotesk", system-ui, -apple-system, sans-serif;
  --font-body:    "IBM Plex Sans", system-ui, -apple-system, sans-serif;
  --font-mono:    "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1180px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px rgba(10,24,40,.05), 0 12px 30px rgba(10,24,40,.08);
  --shadow-lg: 0 24px 60px rgba(6,16,28,.28);
}

/* ---- Reset ---------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: clamp(1rem, .4vw + .92rem, 1.1rem);
  line-height: 1.65;
  color: var(--ink-2);
  background: var(--surface);
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: var(--red-deep); text-underline-offset: 3px; }
a:hover { color: var(--ink); }

/* ---- Type ----------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.06; letter-spacing: -0.02em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.9rem); }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.45rem); letter-spacing: -0.01em; }
h4 { font-size: 1.05rem; }
p { max-width: 65ch; }
.lead { font-size: clamp(1.12rem, 1.1vw, 1.35rem); line-height: 1.55; color: var(--slate); }

.eyebrow {
  font-family: var(--font-mono); font-size: .74rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase; color: var(--red);
  display: inline-flex; align-items: center; gap: .55rem;
}
.eyebrow::before { content: ""; width: 1.5rem; border-top: 2px solid var(--red); }

/* ---- Layout --------------------------------------------------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(3.5rem, 8vw, 7rem); }
.section--tight { padding-block: clamp(2.25rem, 4vw, 3.5rem); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--paper { background: var(--paper); }
.section--ink h2, .section--ink h3, .section--ink h4 { color: #fff; }
.section--ink .lead { color: #b8c8da; }
.section--ink .eyebrow { color: var(--red-bright); }
.section--ink .eyebrow::before { border-color: var(--red-bright); }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.stack > * + * { margin-top: 1.05rem; }
.center { text-align: center; }
.measure { max-width: 58ch; }
.measure-c { max-width: 58ch; margin-inline: auto; }

/* ---- Buttons -------------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-mono); font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; padding: .9rem 1.5rem; border-radius: var(--radius-sm);
  border: 1.5px solid var(--red); background: var(--red); color: #fff;
  text-decoration: none; cursor: pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.btn:hover { background: var(--red-deep); border-color: var(--red-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 10px 24px rgba(234,74,48,.28); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: #fff; box-shadow: none; }
.btn--light { background: #fff; color: var(--ink); border-color: #fff; }
.btn--light:hover { background: transparent; color: #fff; border-color: #fff; }
.btn--lg { padding: 1.05rem 1.8rem; font-size: .9rem; }
.btn .arw { transition: transform .15s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ---- Header / nav --------------------------------------------- */
.site-head {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .6rem; text-decoration: none; color: var(--ink); }
.brand:hover { color: var(--ink); }
.brand__mark { width: 32px; height: 32px; flex: none; color: var(--red); }
.brand__name { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; letter-spacing: -0.03em; line-height: 1; }
.brand__name small { font-family: var(--font-mono); font-weight: 500; font-size: .56rem; letter-spacing: .26em; text-transform: uppercase; color: var(--slate); display: block; margin-top: 3px; }

.nav__links { display: flex; align-items: center; gap: clamp(.9rem, 2vw, 2rem); list-style: none; padding: 0; }
.nav__links a {
  font-family: var(--font-mono); font-size: .8rem; font-weight: 500; letter-spacing: .03em;
  text-decoration: none; color: var(--ink-2); padding: .35rem 0; position: relative;
}
.nav__links a::after { content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0; background: var(--red); transition: width .18s ease; }
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after, .nav__links a[aria-current="page"]:not(.nav__cta)::after { width: 100%; }
.nav__cta {
  background: var(--ink); color: #fff !important; padding: .62rem 1.1rem !important;
  border-radius: var(--radius-sm); transition: background .15s ease;
}
.nav__cta:hover { background: var(--red); }
.nav__cta::after { display: none; }
.nav__toggle { display: none; background: none; border: 1.5px solid var(--line); border-radius: var(--radius-sm); width: 44px; height: 44px; cursor: pointer; color: var(--ink); }
.nav__toggle svg { margin-inline: auto; }

/* ---- Hero ----------------------------------------------------- */
.hero { background: var(--ink); color: var(--paper); position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background:
    radial-gradient(60rem 30rem at 85% -10%, rgba(234,74,48,.16), transparent 60%),
    linear-gradient(transparent 95%, rgba(255,255,255,.04) 95%) 0 0 / 100% 38px,
    linear-gradient(90deg, transparent 95%, rgba(255,255,255,.04) 95%) 0 0 / 38px 100%;
}
.hero__inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; padding-block: clamp(3.5rem, 8vw, 6.5rem); }
.hero h1 { color: #fff; max-width: 15ch; }
.hero h1 em { font-style: normal; color: var(--red-bright); }
.hero .lead { color: #b8c8da; max-width: 48ch; margin-top: 1.3rem; }
.hero__cta { display: flex; flex-wrap: wrap; gap: .9rem; margin-top: 2rem; }
.hero__ticks { display: flex; flex-wrap: wrap; gap: 1.25rem 1.75rem; margin-top: 2.2rem; padding-top: 1.6rem; border-top: 1px solid var(--line-dk); font-family: var(--font-mono); font-size: .82rem; color: #b8c8da; }
.hero__ticks span { display: inline-flex; align-items: center; gap: .5rem; }
.tick { width: 1rem; height: 1rem; flex: none; color: var(--verify); }

/* report card (signature) */
.report {
  background: linear-gradient(180deg, var(--ink-2), var(--ink)); color: var(--paper);
  border: 1px solid var(--line-dk); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden; position: relative;
}
.report__bar { display: flex; align-items: center; gap: .5rem; padding: .8rem 1.1rem; border-bottom: 1px solid var(--line-dk); background: rgba(255,255,255,.02); }
.report__bar i { width: .65rem; height: .65rem; border-radius: 50%; background: var(--line-dk); display: inline-block; }
.report__bar i:first-child { background: var(--red); }
.report__bar span { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-lt); margin-left: auto; letter-spacing: .04em; }
.report__body { padding: 1.3rem 1.4rem 1.5rem; }
.report__title { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: var(--slate-lt); }
.report__rows { list-style: none; padding: 0; margin: .85rem 0 0; display: grid; gap: 0; }
.report__rows li {
  display: grid; grid-template-columns: auto 1fr auto; gap: .8rem; align-items: center;
  padding: .72rem 0; border-top: 1px solid var(--line-dk);
  opacity: 0; transform: translateX(8px); animation: rowin .5s ease forwards;
}
.report__rows li:nth-child(1) { animation-delay: .35s; }
.report__rows li:nth-child(2) { animation-delay: .65s; }
.report__rows li:nth-child(3) { animation-delay: .95s; }
.report__rows li:nth-child(4) { animation-delay: 1.25s; }
@keyframes rowin { to { opacity: 1; transform: none; } }
.report__rows .lbl { font-family: var(--font-mono); font-size: .86rem; color: #cdd9e6; }
.report__rows .meta { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-lt); }
.report__rows .ok { display: inline-flex; align-items: center; gap: .35rem; font-family: var(--font-mono); font-size: .72rem; color: var(--verify); }
.report__foot { margin-top: 1.1rem; padding-top: 1rem; border-top: 1px dashed var(--line-dk); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.report__foot .who { font-family: var(--font-mono); font-size: .72rem; color: var(--slate-lt); line-height: 1.5; }
.report__stamp {
  font-family: var(--font-display); font-weight: 700; font-size: .82rem; letter-spacing: .12em;
  color: var(--verify); border: 2px solid var(--verify); border-radius: var(--radius-sm);
  padding: .35rem .7rem; transform: rotate(-6deg); flex: none;
}
.scanline { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.scanline::after {
  content: ""; position: absolute; top: 0; bottom: 0; width: 2px; left: -2px;
  background: linear-gradient(180deg, transparent, var(--red-bright), transparent);
  box-shadow: 0 0 16px 2px rgba(255,92,73,.5);
  animation: sweep 2.6s ease-in-out 1 forwards;
}
@keyframes sweep { 0% { left: -2px; opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { left: 100%; opacity: 0; } }

/* ---- Trust strip ---------------------------------------------- */
.trust { border-bottom: 1px solid var(--line); }
.trust .row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(1.25rem, 4vw, 3rem); padding-block: 1.4rem; }
.trust .item { display: inline-flex; align-items: center; gap: .55rem; font-family: var(--font-mono); font-size: .8rem; color: var(--slate); letter-spacing: .02em; }
.trust .item svg { width: 1.15rem; height: 1.15rem; color: var(--verify); flex: none; }

/* ---- Cards ---------------------------------------------------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: clamp(1.5rem, 2.4vw, 2rem); box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: .6rem; height: 100%;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--red); box-shadow: 0 16px 36px rgba(10,24,40,.12); }
.card .ico { width: 2.5rem; height: 2.5rem; color: var(--red); margin-bottom: .4rem; }
.card__tag { font-family: var(--font-mono); font-size: .72rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--slate-lt); }
.card p { color: var(--slate); }
.card .more { font-family: var(--font-mono); font-size: .78rem; font-weight: 600; text-decoration: none; color: var(--red-deep); margin-top: auto; display: inline-flex; align-items: center; gap: .35rem; }
.card .more:hover { color: var(--ink); }
.card ul { padding-left: 1.1rem; margin: .2rem 0 0; color: var(--slate); }
.card ul li { margin-bottom: .3rem; }

/* highlighted card */
.card--feature { background: var(--ink); color: var(--paper); border-color: var(--ink-3); }
.card--feature .card__tag { color: var(--red-bright); }
.card--feature p, .card--feature ul { color: #b8c8da; }
.card--feature h3 { color: #fff; }
.card--feature .more { color: var(--red-bright); }

/* ---- Process steps -------------------------------------------- */
.steps { counter-reset: step; display: grid; gap: 0; }
.steps li { counter-increment: step; display: grid; grid-template-columns: 4.5rem 1fr; gap: 1.25rem; padding: 1.5rem 0; border-top: 1px solid var(--line-dk); align-items: start; }
.steps li::before {
  content: counter(step, decimal-leading-zero); font-family: var(--font-mono); font-weight: 600;
  font-size: 1.05rem; color: var(--red-bright);
  border: 1.5px solid var(--line-dk); border-radius: var(--radius-sm); width: 3rem; height: 3rem;
  display: grid; place-items: center;
}
.steps h3 { margin-bottom: .2rem; }
.steps p { margin: 0; color: #b8c8da; }

/* ---- Stats ---------------------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem,2.5vw,2rem); }
.stat .num { font-family: var(--font-display); font-weight: 700; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--ink); line-height: 1; letter-spacing: -0.02em; }
.section--ink .stat .num { color: #fff; }
.stat .num em { color: var(--red); font-style: normal; }
.section--ink .stat .num em { color: var(--red-bright); }
.stat .lbl { font-family: var(--font-mono); font-size: .8rem; color: var(--slate); margin-top: .5rem; }
.section--ink .stat .lbl { color: var(--slate-lt); }

/* ---- FAQ ------------------------------------------------------ */
.faq { display: grid; gap: 0; }
.faq details { border-top: 1px solid var(--line); }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; list-style: none; padding: 1.25rem .25rem; font-family: var(--font-display); font-weight: 600; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-family: var(--font-mono); font-size: 1.5rem; color: var(--red); line-height: 1; transition: transform .2s ease; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq .a { padding: 0 .25rem 1.4rem; color: var(--slate); max-width: 70ch; }

/* ---- Page header (interior) ---------------------------------- */
.page-head { background: var(--ink); color: var(--paper); padding-block: clamp(3rem,7vw,5rem) clamp(2.5rem,5vw,3.5rem); position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50rem 24rem at 90% -20%, rgba(234,74,48,.16), transparent 60%); }
.page-head .wrap { position: relative; z-index: 1; }
.page-head h1 { color: #fff; max-width: 20ch; margin-top: 1rem; }
.page-head .lead { color: #b8c8da; margin-top: 1.1rem; }

/* ---- Forms ---------------------------------------------------- */
.form { display: grid; gap: 1.05rem; }
.form .two { display: grid; grid-template-columns: 1fr 1fr; gap: 1.05rem; }
.field { display: grid; gap: .35rem; }
.field label { font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-2); }
.section--ink .field label { color: #cdd9e6; }
.field .req { color: var(--red); }
.field input, .field textarea, .field select {
  font-family: var(--font-body); font-size: 1rem; color: var(--ink);
  padding: .8rem .9rem; background: #fff; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 7rem; }
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px rgba(234,74,48,.16); }
.field.invalid input, .field.invalid textarea, .field.invalid select { border-color: var(--red); }
.field .err { font-family: var(--font-mono); font-size: .72rem; color: var(--red-bright); min-height: 1em; }
.consent { display: flex; gap: .65rem; align-items: flex-start; font-size: .9rem; color: #b8c8da; }
.consent input { width: 1.1rem; height: 1.1rem; margin-top: .25rem; flex: none; accent-color: var(--red); }
.consent a { color: #fff; }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__status { font-family: var(--font-mono); font-size: .85rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); }
.form__status[hidden] { display: none; }
.form__status.ok { background: rgba(24,160,107,.14); border: 1px solid var(--verify); color: #6fe3b3; }
.form__status.bad { background: rgba(234,74,48,.14); border: 1px solid var(--red); color: #ffb3a8; }

/* contact card on light */
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(1.5rem,3vw,2.5rem); box-shadow: var(--shadow); }
.contact-card .field label { color: var(--ink-2); }
.contact-card .consent { color: var(--slate); }
.contact-card .consent a { color: var(--red-deep); }
.contact-card .form__status.ok { background: rgba(24,160,107,.1); color: #0c6e49; }
.contact-card .form__status.bad { background: rgba(234,74,48,.1); color: var(--red-deep); }

/* info list */
.info { list-style: none; padding: 0; display: grid; gap: 0; }
.info li { display: grid; grid-template-columns: 8rem 1fr; gap: 1rem; padding: .9rem 0; border-top: 1px solid var(--line); }
.section--ink .info li { border-color: var(--line-dk); }
.info .k { font-family: var(--font-mono); font-size: .74rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--slate); }
.section--ink .info .k { color: var(--slate-lt); }

/* ---- CTA band ------------------------------------------------- */
.cta-band { background: var(--ink); color: var(--paper); border-radius: var(--radius); padding: clamp(2rem,4vw,3.25rem); position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; inset: 0; background: radial-gradient(40rem 20rem at 100% 0, rgba(234,74,48,.2), transparent 55%); }
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: #fff; }
.cta-band .lead { color: #b8c8da; }

/* ---- Footer --------------------------------------------------- */
.site-foot { background: var(--abyss); color: #92a7bd; padding-block: clamp(3rem,6vw,4.5rem) 2rem; }
.site-foot .cols { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 2.5rem; }
.site-foot h4 { font-family: var(--font-mono); font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 1rem; font-weight: 600; }
.site-foot a { color: #b7c6d6; text-decoration: none; }
.site-foot a:hover { color: #fff; }
.site-foot ul { list-style: none; padding: 0; display: grid; gap: .55rem; }
.site-foot .brand__name { color: #fff; }
.site-foot .brand__name small { color: #6d8298; }
.foot-note { margin-top: 2.5rem; padding-top: 1.5rem; border-top: 1px solid var(--line-dk); display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; font-family: var(--font-mono); font-size: .72rem; color: #6d8298; }

/* ---- Utilities / reveal / focus ------------------------------ */
.skip { position: absolute; left: -999px; top: 0; background: var(--red); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-sm); z-index: 100; }
.skip:focus { left: 1rem; top: 1rem; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
:focus-visible { outline: 3px solid var(--red-bright); outline-offset: 2px; border-radius: 4px; }

/* ---- Responsive ----------------------------------------------- */
@media (max-width: 940px) {
  .hero__inner { grid-template-columns: 1fr; }
  .report { max-width: 480px; }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .grid--3 { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
  .site-foot .cols { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .nav__toggle { display: grid; place-items: center; }
  .nav__links {
    position: absolute; inset: 74px 0 auto 0; flex-direction: column; align-items: stretch;
    gap: 0; background: #fff; border-bottom: 1px solid var(--line);
    padding: .5rem var(--gutter) 1.25rem; box-shadow: var(--shadow);
    max-height: 0; overflow: hidden; visibility: hidden; transition: max-height .25s ease, visibility .25s;
  }
  .nav__links.open { max-height: 80vh; visibility: visible; }
  .nav__links li { border-top: 1px solid var(--line); }
  .nav__links a { display: block; padding: .95rem 0; }
  .nav__links a::after { display: none; }
  .nav__cta { text-align: center; margin-top: .6rem; }
  .grid--3, .grid--4, .grid--2 { grid-template-columns: 1fr; }
  .form .two { grid-template-columns: 1fr; }
  .steps li { grid-template-columns: 3.25rem 1fr; gap: 1rem; }
  .info li { grid-template-columns: 1fr; gap: .25rem; }
  .site-foot .cols { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

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