/* ==========================================================================
   ASSA — landing page
   1. Design tokens        5. Sections & components
   2. Reset & base         6. Footer
   3. Layout primitives    7. Utilities & motion
   4. Buttons              8. Responsive
   ========================================================================== */

/* 1. Design tokens ======================================================== */

:root {
  /* Surfaces */
  --bg:            #0A0C0B;
  --surface:       #0D100F;
  --surface-tile:  #0C100E;
  --surface-flat:  #0C0F0E;

  /* Text */
  --text:          #E8EEEA;
  --text-soft:     #C8D2CD;
  --text-muted:    #9AA6A0;
  --text-dim:      #6F7A75;
  --text-faint:    #4F5854;

  /* Accents */
  --accent:        #33FF88;
  --accent-hover:  #7CFFB6;
  --accent-mid:    #5FD79B;
  --accent-ink:    #052012;
  --warn:          #FFB020;
  --danger:        #FF3B3B;
  --danger-soft:   #FF6B6B;
  --problem:       #FF8A5B;

  /* Lines & fills */
  --line:          rgba(255, 255, 255, .07);
  --line-strong:   rgba(255, 255, 255, .10);
  --line-soft:     rgba(255, 255, 255, .06);
  --fill-subtle:   rgba(255, 255, 255, .02);
  --accent-line:   rgba(51, 255, 136, .35);

  /* Shape */
  --radius-sm:     8px;
  --radius:        12px;
  --radius-md:     14px;
  --radius-lg:     20px;

  /* Metrics */
  --shell:         1240px;
  --gutter:        24px;
  --section-gap:   140px;

  /* Type */
  --font-sans:     'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
  --font-mono:     'JetBrains Mono', ui-monospace, SFMono-Regular, Menlo, monospace;

  /* Motion */
  --ease:          cubic-bezier(.2, .7, .2, 1);
}

/* 2. Reset & base ========================================================= */

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }

a { color: var(--accent); text-decoration: none; transition: color .2s; }
a:hover { color: var(--accent-hover); }

h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }

::selection { background: rgba(51, 255, 136, .25); }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* 3. Layout primitives ==================================================== */

.page { position: relative; overflow: hidden; background: var(--bg); }

/* Ambient backdrop behind the hero */
.page__glow,
.page__grid {
  position: absolute;
  inset: 0 0 auto 0;
  height: 900px;
  pointer-events: none;
}

.page__glow {
  background: radial-gradient(900px 420px at 50% -120px, rgba(51, 255, 136, .10), transparent 70%);
}

.page__grid {
  opacity: .5;
  background-image:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(#000, transparent 75%);
  -webkit-mask-image: linear-gradient(#000, transparent 75%);
}

.section {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: var(--section-gap) var(--gutter) 0;
}

.section--hero    { padding-top: 110px; }
.section--tight   { padding-top: 80px; }
.section--limits  { padding-top: 120px; }

.section__head { max-width: 680px; }

/* Small mono label above a heading */
.eyebrow {
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-mid);
}

.eyebrow--problem { color: var(--problem); }
.eyebrow--accent  { color: var(--accent); }
.eyebrow--warn    { color: var(--warn); }

.section__title {
  margin-top: 18px;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 700;
}

.section__title--sm { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.15; letter-spacing: -.03em; font-weight: 600; }
.section__title--md { font-size: clamp(28px, 3.4vw, 42px); line-height: 1.12; letter-spacing: -.03em; }

.icon { flex: none; }

/* 4. Buttons ============================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  font-weight: 600;
  transition: background .2s, border-color .2s, color .2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--accent-ink);
  font-size: 16px;
  padding: 15px 26px;
  box-shadow: 0 12px 40px -18px rgba(51, 255, 136, .7);
}
.btn--primary:hover { background: var(--accent-hover); color: var(--accent-ink); }

.btn--ghost {
  color: var(--text);
  font-weight: 500;
  font-size: 16px;
  padding: 15px 24px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: var(--fill-subtle);
}
.btn--ghost:hover {
  color: var(--text);
  border-color: rgba(51, 255, 136, .5);
  background: rgba(51, 255, 136, .06);
}

.btn--sm { font-size: 14px; padding: 9px 16px; gap: 8px; border-radius: 10px; box-shadow: none; }
.btn--lg { font-size: 17px; padding: 16px 30px; box-shadow: 0 16px 50px -20px rgba(51, 255, 136, .8); }
.btn--block { display: flex; width: 100%; }

/* 5. Sections & components =============================================== */

/* --- Header ------------------------------------------------------------ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: rgba(10, 12, 11, .72);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 14px var(--gutter);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -.01em;
}
.brand:hover { color: var(--text); }

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(51, 255, 136, .45);
  background: linear-gradient(160deg, rgba(51, 255, 136, .22), rgba(51, 255, 136, .04));
  color: var(--accent);
}

.nav__spacer { flex: 1; }

.nav__links {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.nav__link { font-size: 14px; color: var(--text-muted); }

/* --- Hero -------------------------------------------------------------- */

.hero { max-width: 860px; }

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line-strong);
  background: rgba(255, 255, 255, .03);
  border-radius: 999px;
  padding: 6px 14px 6px 10px;
  font: 500 12px/1 var(--font-mono);
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #7EDFA9;
}

.hero__pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: blink 1.6s infinite;
}

.hero__title {
  margin-top: 26px;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 700;
  text-wrap: pretty;
}

.hero__title em {
  font-style: normal;
  background: linear-gradient(92deg, var(--accent), #8FE9B0 60%, var(--accent-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  margin-top: 28px;
  max-width: 640px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--text-muted);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
  list-style: none;
}

.hero__tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: var(--fill-subtle);
  padding: 8px 15px;
  font: 400 12.5px/1 var(--font-mono);
  letter-spacing: .02em;
  color: var(--text-muted);
  transition: border-color .3s var(--ease), background .3s var(--ease), color .3s var(--ease);
}

.hero__tag .icon { color: var(--text-faint); transition: color .3s var(--ease); }

.hero__tag:hover {
  border-color: var(--accent-line);
  background: rgba(51, 255, 136, .05);
  color: var(--text-soft);
}

.hero__tag:hover .icon { color: var(--accent); }

/* --- Screenshot frame -------------------------------------------------- */

.showcase { position: relative; }

.showcase__glow {
  position: absolute;
  inset: 8% 6%;
  background: radial-gradient(closest-side, rgba(51, 255, 136, .18), transparent);
  filter: blur(60px);
}

.frame {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 60px 120px -60px rgba(0, 0, 0, .9);
}

.frame__bar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  background: var(--fill-subtle);
}

.frame__dots { display: flex; gap: 7px; }

.frame__dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #2A2F2C;
}

.frame__label {
  flex: 1;
  text-align: center;
  font: 400 12px/1 var(--font-mono);
  color: var(--text-dim);
}

/* --- Hairline tile grid (stats & steps) -------------------------------- */

.tiles {
  display: grid;
  gap: 1px;
  margin-top: 56px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.tiles--stats { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.tiles--steps { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.tile { background: var(--surface-tile); padding: 24px 26px; }
.tiles--steps .tile { padding: 30px 26px; }

.tile__value { font: 700 26px/1 var(--font-mono); color: var(--accent); }
.tile__step  { font: 700 13px/1 var(--font-mono); color: var(--accent); }
.tile__title { margin-top: 16px; font-size: 19px; font-weight: 600; letter-spacing: -.02em; }
.tile__text  { margin-top: 8px; font-size: 14px; line-height: 1.5; color: var(--text-muted); }
.tiles--steps .tile__text { margin-top: 10px; font-size: 15px; line-height: 1.6; }

/* --- Problem / solution split ------------------------------------------ */

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.split__col { flex: 1 1 320px; min-width: 300px; }
.split__col--divided { border-left: 1px solid var(--line); padding-left: 40px; }

/* Bulleted lists with a coloured marker glyph */
.bullets {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}

.bullets--tight { gap: 12px; margin-top: 26px; }

.bullets li {
  display: flex;
  gap: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-soft);
}

.bullets--muted li { color: var(--text-muted); }

.bullets li::before {
  content: attr(data-marker);
  color: var(--accent);
  flex: none;
}

.bullets--muted li::before { color: var(--problem); }

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

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 56px;
}

.cards--privacy { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top: 48px; }

.card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, .028), rgba(255, 255, 255, 0));
  padding: 30px;
  transition: border-color .2s, background .2s;
}

.card:hover {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(51, 255, 136, .06), rgba(255, 255, 255, 0));
}

.card__icon { color: var(--accent); }
.card__title { margin-top: 22px; font-size: 21px; font-weight: 600; letter-spacing: -.02em; }
.card__text  { margin-top: 12px; font-size: 15px; line-height: 1.65; color: var(--text-muted); }

.card--plain {
  background: var(--fill-subtle);
  padding: 28px;
}
.card--plain:hover { border-color: var(--line); background: var(--fill-subtle); }
.card--plain .card__icon  { color: var(--accent-mid); }
.card--plain .card__title { margin-top: 18px; font-size: 18px; letter-spacing: 0; }
.card--plain .card__text  { margin-top: 10px; }

/* --- Alternating feature rows ------------------------------------------ */

.feature {
  display: flex;
  flex-wrap: wrap;
  gap: 64px;
  align-items: center;
}

/* Media first in the DOM, text first on screen */
.feature--reverse { flex-wrap: wrap-reverse; }

.feature + .feature { margin-top: 120px; }

.feature__body { flex: 1 1 340px; min-width: 300px; }

.feature__lead {
  margin-top: 20px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.feature__media {
  flex: 1 1 420px;
  min-width: 300px;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--surface);
  box-shadow: 0 40px 90px -50px rgba(0, 0, 0, .9);
}

/* --- Warning levels ---------------------------------------------------- */

.levels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.level {
  border: 1px solid var(--accent-line);
  border-radius: var(--radius-md);
  padding: 28px;
}

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

.level__dot { width: 10px; height: 10px; border-radius: 50%; }

.level__name {
  font: 700 13px/1 var(--font-mono);
  letter-spacing: .14em;
}

.level__text {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.65;
  color: var(--text-soft);
}

.level--safe {
  border-color: rgba(51, 255, 136, .22);
  background: linear-gradient(180deg, rgba(51, 255, 136, .07), rgba(255, 255, 255, 0));
}
.level--safe .level__dot  { background: var(--accent); }
.level--safe .level__name { color: var(--accent); }

.level--warn {
  border-color: rgba(255, 176, 32, .22);
  background: linear-gradient(180deg, rgba(255, 176, 32, .07), rgba(255, 255, 255, 0));
}
.level--warn .level__dot  { background: var(--warn); }
.level--warn .level__name { color: var(--warn); }

.level--danger {
  border-color: rgba(255, 59, 59, .24);
  background: linear-gradient(180deg, rgba(255, 59, 59, .08), rgba(255, 255, 255, 0));
}
.level--danger .level__dot  { background: var(--danger); animation: blink 1s infinite; }
.level--danger .level__name { color: var(--danger-soft); }

/* --- Download panel ---------------------------------------------------- */

.panel {
  position: relative;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--surface);
}

.panel__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(600px 300px at 20% 0%, rgba(51, 255, 136, .12), transparent 70%);
}

.panel__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  align-items: center;
  padding: 56px;
}

.panel__body { flex: 1 1 340px; min-width: 280px; }

.panel__title {
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 700;
}

.panel__lead {
  margin-top: 18px;
  max-width: 460px;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
  font: 400 13px/1 var(--font-mono);
  color: var(--text-dim);
}

.tags span {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  padding: 8px 12px;
}

.download {
  flex: 1 1 360px;
  min-width: 280px;
  border: 1px solid rgba(51, 255, 136, .28);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(51, 255, 136, .08), rgba(255, 255, 255, .01));
  padding: 32px;
}

.download__head { display: flex; align-items: center; gap: 14px; }

.download__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  border: 1px solid var(--accent-line);
  background: rgba(51, 255, 136, .08);
  color: var(--accent);
}

.download__name { font-size: 18px; font-weight: 600; }

.download__meta {
  margin-top: 4px;
  font: 400 12px/1.4 var(--font-mono);
  color: var(--text-dim);
}

.download .btn { margin-top: 26px; padding: 15px 22px; }

.download__note {
  margin-top: 14px;
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* --- Limits callout ---------------------------------------------------- */

.callout {
  border: 1px solid rgba(255, 176, 32, .20);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255, 176, 32, .05), rgba(255, 255, 255, 0));
  padding: 40px;
}

.callout__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 26px;
}

.callout__grid p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-soft);
}

/* --- FAQ --------------------------------------------------------------- */

.faq { flex: 1 1 520px; min-width: 300px; border-top: 1px solid rgba(255, 255, 255, .08); }

.faq__item { border-bottom: 1px solid rgba(255, 255, 255, .08); }
.faq__item:last-child { border-bottom: 0; }

.faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0;
  font-size: 17px;
  font-weight: 500;
  list-style: none;
  cursor: pointer;
}

.faq__q::-webkit-details-marker { display: none; }
.faq__q span { flex: 1; }

.faq__chevron {
  flex: none;
  color: var(--accent);
  font-size: 18px;
  line-height: 1;
  transition: transform .25s;
}

.faq__item[open] .faq__chevron { transform: rotate(45deg); }

.faq__a {
  margin-bottom: 22px;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-muted);
}

/* --- Closing CTA ------------------------------------------------------- */

.final {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  background: var(--surface-flat);
  padding: clamp(48px, 7vw, 96px) 40px;
  text-align: center;
}

.final__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(700px 320px at 50% 120%, rgba(51, 255, 136, .16), transparent 70%);
}

.final__inner { position: relative; max-width: 720px; margin: 0 auto; }

.final__title {
  font-size: clamp(32px, 4.4vw, 56px);
  line-height: 1.06;
  letter-spacing: -.04em;
  font-weight: 700;
}

.final__lead {
  margin-top: 22px;
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-muted);
}

.final .btn { margin-top: 36px; }

/* 6. Footer =============================================================== */

.site-footer {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 120px var(--gutter) 56px;
}

.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, .08);
}

.site-footer__about { flex: 1 1 300px; min-width: 260px; }

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

.site-footer__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(51, 255, 136, .4);
  background: rgba(51, 255, 136, .08);
  color: var(--accent);
}

.site-footer__name { font-weight: 700; font-size: 16px; }

.site-footer__text {
  margin-top: 16px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-dim);
}

.site-footer__col { flex: 0 1 180px; }

.site-footer__heading {
  font: 500 11px/1 var(--font-mono);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-faint);
}

.site-footer__links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.site-footer__links a { font-size: 14px; color: var(--text-muted); }

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
  font: 400 12px/1.6 var(--font-mono);
  color: var(--text-faint);
}

/* --- Back to top ------------------------------------------------------- */

.to-top {
  position: fixed;
  right: var(--gutter);
  bottom: var(--gutter);
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(13, 16, 15, .82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--accent);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s, border-color .2s, background .2s;
}

.to-top.is-visible { opacity: 1; pointer-events: auto; transform: none; }

.to-top:hover {
  border-color: rgba(51, 255, 136, .5);
  background: rgba(51, 255, 136, .10);
}

/* 7. Utilities & motion =================================================== */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.is-visible { opacity: 1; transform: none; }

@keyframes blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: .3; }
}

/* 8. Responsive =========================================================== */

@media (max-width: 900px) {
  :root { --section-gap: 96px; }

  .split__col--divided { border-left: 0; padding-left: 0; }
  .feature { gap: 40px; }
  .feature + .feature { margin-top: 80px; }
  .panel__inner { padding: 36px 28px; }
  .callout { padding: 28px; }
  .site-footer { padding-top: 88px; }
}

@media (max-width: 620px) {
  :root { --gutter: 18px; --section-gap: 76px; }

  .nav { gap: 12px; }
  .nav__links { gap: 16px; }
  .nav__link { display: none; }
  .section--hero { padding-top: 72px; }
  .hero__actions .btn { flex: 1 1 100%; }
  .hero__meta { gap: 8px; }
  .hero__tag { padding: 7px 12px; font-size: 11.5px; gap: 8px; }
  .final { padding-left: 24px; padding-right: 24px; }
}

@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; }
}

/* SVG icon sprite lives in the DOM but is never painted directly. */
.sprite { display: none; }
