/* ============================================================
   Mustafa Gerdan — Consultancy
   Apple-inspired: system type, translucency, restraint, motion
   ============================================================ */

:root {
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text",
    "Segoe UI", system-ui, Roboto, Helvetica, Arial, sans-serif;

  /* Light theme (default) */
  --bg: #ffffff;
  --bg-muted: #f5f5f7;
  --bg-elev: #ffffff;
  --ink: #1d1d1f;
  --ink-2: #6e6e73;
  --ink-3: #86868b;
  --line: rgba(0, 0, 0, 0.10);
  --line-2: rgba(0, 0, 0, 0.06);
  --accent: #0071e3;
  --accent-ink: #0071e3;
  --card: #ffffff;
  --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  --card-shadow-hover: 0 18px 48px rgba(0, 0, 0, 0.12);
  --nav-bg: rgba(255, 255, 255, 0.72);
  --nav-border: rgba(0, 0, 0, 0.08);
  --dark-bg: #0b0b0f;

  --maxw: 1120px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --radius: 22px;
  --radius-lg: 30px;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --spring: cubic-bezier(0.34, 1.4, 0.5, 1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #000000;
    --bg-muted: #101014;
    --bg-elev: #1c1c1e;
    --ink: #f5f5f7;
    --ink-2: #a1a1a6;
    --ink-3: #86868b;
    --line: rgba(255, 255, 255, 0.14);
    --line-2: rgba(255, 255, 255, 0.08);
    --accent: #2997ff;
    --accent-ink: #2997ff;
    --card: #1c1c1e;
    --card-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
    --card-shadow-hover: 0 18px 48px rgba(0, 0, 0, 0.7);
    --nav-bg: rgba(22, 22, 24, 0.72);
    --nav-border: rgba(255, 255, 255, 0.10);
    --dark-bg: #0b0b0f;
  }
}

/* ---------- reset-ish ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.skip-link {
  position: fixed; left: 50%; top: -60px; transform: translateX(-50%);
  background: var(--ink); color: var(--bg); padding: 0.6rem 1.1rem;
  border-radius: 0 0 12px 12px; z-index: 200; transition: top 0.2s var(--ease-out);
}
.skip-link:focus { top: 0; }

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

/* Google Calendar scheduling button lives here off-screen; our buttons forward clicks to it */
#gcal-booking-host {
  position: absolute; width: 1px; height: 1px; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
  left: -9999px; top: 0;
}

/* ============================================================
   NAV — translucent floating chrome, content scrolls under
   ============================================================ */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  background: var(--nav-bg);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.nav.is-scrolled { border-bottom-color: var(--nav-border); }

.nav__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad);
  height: 52px; display: flex; align-items: center; justify-content: space-between;
}
.nav__brand { font-weight: 600; font-size: 1.02rem; letter-spacing: -0.01em; }

.nav__menu { list-style: none; display: flex; align-items: center; gap: clamp(1rem, 2.4vw, 2rem); }
.nav__menu a {
  font-size: 0.86rem; color: var(--ink-2); letter-spacing: 0.01em;
  transition: color 0.2s var(--ease-out);
}
.nav__menu a:hover { color: var(--ink); }

.nav__cta {
  background: var(--accent); color: #fff !important; padding: 0.42rem 0.9rem;
  border-radius: 980px; font-weight: 500;
  transition: transform 0.2s var(--spring), filter 0.2s var(--ease-out) !important;
}
.nav__cta:hover { filter: brightness(1.06); }
.nav__cta:active { transform: scale(0.96); }

.nav__social { display: flex; align-items: center; gap: 0.35rem; }
.nav__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%; color: var(--ink-2);
  transition: color 0.2s var(--ease-out), background 0.2s var(--ease-out), transform 0.2s var(--spring);
}
.nav__social a:hover { color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 12%, transparent); }
.nav__social a:active { transform: scale(0.9); }
.nav__social svg { width: 17px; height: 17px; }

.nav__toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav__toggle span {
  display: block; width: 22px; height: 1.6px; background: var(--ink); border-radius: 2px;
  transition: transform 0.3s var(--ease-out), opacity 0.2s var(--ease-out);
}
.nav__toggle span + span { margin-top: 5px; }
.nav.is-open .nav__toggle span:first-child { transform: translateY(3.3px) rotate(45deg); }
.nav.is-open .nav__toggle span:last-child { transform: translateY(-3.3px) rotate(-45deg); }

@media (max-width: 820px) {
  .nav__toggle { display: block; }
  .nav__menu {
    position: fixed; inset: 52px 0 auto 0; flex-direction: column; gap: 0;
    background: var(--nav-bg);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid var(--nav-border);
    padding: 0.5rem var(--pad) 1.25rem;
    transform: translateY(-8px); opacity: 0; pointer-events: none;
    transition: opacity 0.28s var(--ease-out), transform 0.28s var(--ease-out);
  }
  .nav.is-open .nav__menu { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav__menu li { width: 100%; border-bottom: 1px solid var(--line-2); }
  .nav__menu li:last-child { border-bottom: 0; padding-top: 0.85rem; }
  .nav__menu a { display: block; padding: 0.95rem 0; font-size: 1.05rem; color: var(--ink); }
  .nav__cta { display: inline-block; }
  .nav__social { gap: 0.5rem; padding-top: 1rem; }
  .nav__social a { width: 44px; height: 44px; border: 1px solid var(--line); }
  .nav__social svg { width: 20px; height: 20px; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: inherit; font-size: 1.02rem; font-weight: 500; line-height: 1;
  border: 0; cursor: pointer; border-radius: 980px; padding: 0.85rem 1.5rem;
  transition: transform 0.18s var(--spring), filter 0.2s var(--ease-out),
    background 0.2s var(--ease-out), color 0.2s var(--ease-out);
}
.btn--primary { background: var(--accent); color: #fff; }
.btn--primary:hover { filter: brightness(1.07); }
.btn:active { transform: scale(0.965); }
.btn--full { width: 100%; padding: 1rem; }
.btn--link {
  background: transparent; color: var(--accent-ink); padding: 0.85rem 0.6rem;
}
.btn--link:hover { text-decoration: underline; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; text-align: center;
  padding: clamp(8rem, 16vh, 12rem) var(--pad) clamp(4rem, 9vh, 7rem);
  overflow: hidden;
}
.hero__inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero__eyebrow {
  font-size: clamp(0.95rem, 1.4vw, 1.15rem); font-weight: 600; letter-spacing: 0.01em;
  color: var(--accent-ink); margin-bottom: 1rem;
}
.hero__title {
  font-size: clamp(3rem, 9.5vw, 6.5rem); font-weight: 700; line-height: 1.03;
  letter-spacing: -0.03em; margin-bottom: 1.25rem;
}
.hero__sub {
  font-size: clamp(1.15rem, 2.3vw, 1.6rem); font-weight: 400; line-height: 1.4;
  color: var(--ink-2); max-width: 40ch; margin: 0 auto 2rem;
}
.hero__actions { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; align-items: center; }

.hero__net {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%;
  pointer-events: none;
  /* keep the network softer directly behind the headline so text stays crisp */
  -webkit-mask-image: radial-gradient(ellipse 58% 52% at 50% 42%, rgba(0,0,0,0.28) 0%, #000 62%);
  mask-image: radial-gradient(ellipse 58% 52% at 50% 42%, rgba(0,0,0,0.28) 0%, #000 62%);
}

.hero__glow {
  position: absolute; z-index: 1; top: -20%; left: 50%; transform: translateX(-50%);
  width: 120vw; max-width: 1400px; aspect-ratio: 1.6 / 1;
  background: radial-gradient(ellipse at center,
    color-mix(in srgb, var(--accent) 22%, transparent) 0%,
    transparent 60%);
  filter: blur(30px); pointer-events: none;
  animation: floatGlow 14s ease-in-out infinite alternate;
}
@keyframes floatGlow {
  from { transform: translateX(-52%) translateY(0) scale(1); }
  to   { transform: translateX(-48%) translateY(3%) scale(1.06); }
}

/* ============================================================
   STAT STRIP
   ============================================================ */
.stats { padding: 0 var(--pad) clamp(3rem, 8vh, 6rem); }
.stats__grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line-2); border: 1px solid var(--line-2);
  border-radius: var(--radius); overflow: hidden;
}
.stat {
  background: var(--bg); padding: clamp(1.5rem, 3.5vw, 2.5rem) 1rem;
  text-align: center; display: flex; flex-direction: column; gap: 0.4rem;
}
.stat__num {
  font-size: clamp(2rem, 4.5vw, 3rem); font-weight: 700; letter-spacing: -0.02em;
  color: var(--ink);
}
.stat__label { font-size: 0.9rem; color: var(--ink-2); line-height: 1.35; }
@media (max-width: 720px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section, .feature, .cta { scroll-margin-top: 60px; }
.section { padding: clamp(4.5rem, 12vh, 9rem) var(--pad); }
.section--muted { background: var(--bg-muted); }
.section__head { max-width: 720px; margin: 0 auto clamp(2.5rem, 6vw, 4rem); text-align: center; }
.section__eyebrow {
  font-size: 0.92rem; font-weight: 600; letter-spacing: 0.02em;
  color: var(--accent-ink); text-transform: none; margin-bottom: 0.75rem;
}
.section__eyebrow--light { color: color-mix(in srgb, var(--accent) 70%, #fff); }
.section__title {
  font-size: clamp(2rem, 4.6vw, 3.25rem); font-weight: 700; line-height: 1.08;
  letter-spacing: -0.025em; margin-bottom: 1rem;
}
.section__lede {
  font-size: clamp(1.05rem, 1.8vw, 1.3rem); color: var(--ink-2); line-height: 1.45;
  max-width: 46ch; margin: 0 auto;
}

/* ---------- cards (mentoring) ---------- */
.cards {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 860px) { .cards { grid-template-columns: 1fr; max-width: 480px; } }
.card {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--card-shadow);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--card-shadow-hover); }
.card__icon {
  width: 56px; height: 56px; color: var(--accent-ink); margin-bottom: 1.25rem;
}
.card__icon svg { width: 100%; height: 100%; }
.card__title { font-size: 1.4rem; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 0.6rem; }
.card__body { color: var(--ink-2); font-size: 1.02rem; line-height: 1.5; }

/* ============================================================
   FEATURE (dark approach section)
   ============================================================ */
.feature {
  background: var(--dark-bg); color: #f5f5f7;
  padding: clamp(5rem, 13vh, 9rem) var(--pad);
  position: relative; overflow: hidden;
}
.feature::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 0%,
    color-mix(in srgb, var(--accent) 18%, transparent), transparent 70%);
  pointer-events: none;
}
.feature__inner { position: relative; max-width: 920px; margin: 0 auto; text-align: center; }
.feature__title {
  font-size: clamp(2.1rem, 5vw, 3.6rem); font-weight: 700; line-height: 1.06;
  letter-spacing: -0.028em; margin: 0.75rem 0 1.25rem; color: #fff;
}
.feature__lede {
  font-size: clamp(1.1rem, 2vw, 1.4rem); color: #c7c7cc; line-height: 1.5;
  max-width: 52ch; margin: 0 auto clamp(2.5rem, 6vw, 4rem);
}
.feature__steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1.25rem, 3vw, 2.5rem);
  text-align: left;
}
@media (max-width: 780px) { .feature__steps { grid-template-columns: 1fr; max-width: 420px; margin-inline: auto; } }
.step { border-top: 1px solid rgba(255, 255, 255, 0.16); padding-top: 1.1rem; }
.step__n {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.06em;
  color: color-mix(in srgb, var(--accent) 75%, #fff);
}
.step h3 { font-size: 1.35rem; font-weight: 600; margin: 0.5rem 0 0.5rem; color: #fff; }
.step p { color: #a1a1a6; font-size: 1rem; line-height: 1.5; }
.step em { color: #f5f5f7; font-style: normal; font-weight: 600; }

/* ============================================================
   VENTURES
   ============================================================ */
.ventures {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
.venture--wide { grid-column: 1 / -1; }
@media (max-width: 720px) { .ventures { grid-template-columns: 1fr; } .venture--wide { grid-column: auto; } }
.venture {
  position: relative; min-height: 200px; border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem);
  background: linear-gradient(150deg, var(--bg-muted), var(--card));
  border: 1px solid var(--line-2);
  display: flex; flex-direction: column; justify-content: flex-end;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.venture--wide {
  min-height: 240px;
  background: linear-gradient(120deg,
    color-mix(in srgb, var(--accent) 90%, #000) 0%,
    color-mix(in srgb, var(--accent) 55%, #000) 100%);
  border: 0; color: #fff;
}
.venture:hover { transform: translateY(-5px); box-shadow: var(--card-shadow-hover); }
.venture__name { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 600; letter-spacing: -0.02em; margin-bottom: 0.4rem; }
.venture__desc { color: var(--ink-2); font-size: 1rem; line-height: 1.45; max-width: 40ch; }
.venture--wide .venture__desc { color: rgba(255, 255, 255, 0.85); }
.venture__tag {
  position: absolute; top: clamp(1.25rem, 3vw, 2rem); left: clamp(1.25rem, 3vw, 2.5rem);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--ink-3);
}
.venture--wide .venture__tag { color: rgba(255, 255, 255, 0.7); }

/* ============================================================
   TIMELINE
   ============================================================ */
.timeline {
  max-width: 760px; margin: 0 auto; list-style: none; position: relative;
  padding-left: clamp(1.5rem, 4vw, 2.5rem);
}
.timeline::before {
  content: ""; position: absolute; left: 6px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--line), transparent);
}
.timeline__item { position: relative; padding: 0 0 clamp(1.75rem, 3vw, 2.25rem); display: flex; gap: clamp(1rem, 3vw, 2rem); }
.timeline__item::before {
  content: ""; position: absolute; left: calc(-1 * clamp(1.5rem, 4vw, 2.5rem) + 1px);
  top: 7px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); box-shadow: 0 0 0 4px var(--bg-muted);
}
.timeline__year {
  flex: 0 0 auto; min-width: 92px; font-weight: 600; font-size: 0.95rem;
  color: var(--accent-ink); padding-top: 1px;
}
.timeline__body h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: 0.2rem; }
.timeline__body p { color: var(--ink-2); font-size: 0.98rem; }
@media (max-width: 560px) {
  .timeline__item { flex-direction: column; gap: 0.15rem; }
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.quotes {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1rem, 2vw, 1.5rem);
}
@media (max-width: 720px) { .quotes { grid-template-columns: 1fr; } }
.quote {
  background: var(--card); border: 1px solid var(--line-2); border-radius: var(--radius);
  padding: clamp(1.75rem, 3vw, 2.5rem); box-shadow: var(--card-shadow);
}
.quote blockquote {
  font-size: clamp(1.2rem, 2.2vw, 1.5rem); font-weight: 500; line-height: 1.35;
  letter-spacing: -0.01em; margin-bottom: 1.25rem;
}
.quote blockquote::before { content: "“"; color: var(--accent-ink); margin-right: 0.05em; }
.quote blockquote::after { content: "”"; color: var(--accent-ink); }
.quote figcaption { display: flex; flex-direction: column; }
.quote__name { font-weight: 600; }
.quote__role { color: var(--ink-3); font-size: 0.9rem; }

/* ============================================================
   CTA + FORM
   ============================================================ */
.cta {
  background: var(--bg-muted);
  padding: clamp(4.5rem, 12vh, 8rem) var(--pad);
}
.cta__inner { max-width: 640px; margin: 0 auto; text-align: center; }
.cta__title {
  font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.08; margin-bottom: 0.9rem;
}
.cta__sub { font-size: clamp(1.05rem, 1.9vw, 1.3rem); color: var(--ink-2); margin-bottom: 2.5rem; }

.form { text-align: left; }
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
@media (max-width: 560px) { .form__row { grid-template-columns: 1fr; } }
.field { display: block; margin-bottom: 1rem; }
.field__label {
  display: block; font-size: 0.9rem; font-weight: 500; color: var(--ink-2);
  margin-bottom: 0.45rem;
}
.field input, .field textarea {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  background: var(--bg-elev); border: 1px solid var(--line); border-radius: 14px;
  padding: 0.85rem 1rem; transition: border-color 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
}
.field textarea { resize: vertical; min-height: 110px; }
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--accent) 18%, transparent);
}
.field__error {
  display: none; color: #d1002a; font-size: 0.85rem; margin-top: 0.4rem;
}
@media (prefers-color-scheme: dark) { .field__error { color: #ff6b6b; } }
.field.is-invalid .field__error { display: block; }
.field.is-invalid input, .field.is-invalid textarea { border-color: #d1002a; }

.form__note { text-align: center; color: var(--ink-2); font-size: 0.95rem; margin-top: 1rem; }
.form__note a { color: var(--accent-ink); }
.form__note a:hover { text-decoration: underline; }
.form__success {
  text-align: center; color: var(--accent-ink); font-weight: 500; margin-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--bg); border-top: 1px solid var(--line-2); padding: 3rem var(--pad); }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: flex; flex-wrap: wrap; align-items: flex-start; justify-content: space-between; gap: 1.5rem 2rem;
}
.footer__col { display: flex; flex-direction: column; gap: 0.9rem; }
.footer__brand { font-weight: 600; }
.footer__links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer__links a { color: var(--ink-2); font-size: 0.9rem; transition: color 0.2s var(--ease-out); }
.footer__links a:hover { color: var(--ink); }
.footer__contact { display: flex; flex-direction: column; gap: 0.4rem; align-items: flex-start; }
.footer__contact > a { color: var(--ink-2); font-size: 0.9rem; transition: color 0.2s var(--ease-out); }
.footer__contact > a:hover { color: var(--ink); }
.footer__social { display: flex; gap: 0.6rem; margin-top: 0.5rem; }
.footer__social a {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px; border-radius: 50%; color: var(--ink-2);
  border: 1px solid var(--line); transition: color 0.2s var(--ease-out),
    border-color 0.2s var(--ease-out), transform 0.2s var(--spring);
}
.footer__social a:hover { color: var(--accent-ink); border-color: var(--accent); }
.footer__social a:active { transform: scale(0.92); }
.footer__social svg { width: 19px; height: 19px; }
.footer__legal { color: var(--ink-3); font-size: 0.85rem; width: 100%; padding-top: 1rem; border-top: 1px solid var(--line-2); }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
  will-change: opacity, transform;
}
.reveal.is-in { opacity: 1; transform: none; }

/* stagger children in grids */
.cards .reveal.is-in:nth-child(2) { transition-delay: 0.08s; }
.cards .reveal.is-in:nth-child(3) { transition-delay: 0.16s; }
.quotes .reveal.is-in:nth-child(2) { transition-delay: 0.06s; }
.quotes .reveal.is-in:nth-child(3) { transition-delay: 0.12s; }
.quotes .reveal.is-in:nth-child(4) { transition-delay: 0.18s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: opacity 0.3s ease; }
  .hero__glow { animation: none; }
  .btn, .card, .venture, .nav__cta { transition: none; }
}

@media (prefers-reduced-transparency: reduce) {
  .nav, .nav__menu { background: var(--bg); backdrop-filter: none; -webkit-backdrop-filter: none; }
}
