:root {
  --ink: #080812;
  --paper: #f1efe9;
  --violet: #8d59ff;
  --violet-bright: #b18aff;
  --cyan: #67d9f4;
  --gold: #e7c978;
  --bitcoin: #f7931a;
  --cardano: #2f6fe4;
  --privacy: #9b6cf0;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ink);
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: absolute;
  z-index: 30;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 26px clamp(24px, 5vw, 76px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 31px;
  height: 31px;
}

.brand-mark i {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  width: 28px;
  height: 1.5px;
  background: currentColor;
  transform-origin: center;
}

.brand-mark i:nth-child(1) { transform: translate(-50%, -50%) rotate(0deg); }
.brand-mark i:nth-child(2) { transform: translate(-50%, -50%) rotate(60deg); }
.brand-mark i:nth-child(3) { transform: translate(-50%, -50%) rotate(-60deg); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 48px);
  font-size: 13px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  background: var(--violet-bright);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  align-items: center;
  padding: 140px clamp(24px, 8vw, 120px) 90px;
  isolation: isolate;
}

.hero::before {
  position: absolute;
  z-index: -3;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(7, 7, 18, 0.94) 0%, rgba(7, 7, 18, 0.68) 38%, rgba(7, 7, 18, 0.06) 70%),
    linear-gradient(0deg, rgba(6, 5, 16, 0.76) 0%, transparent 38%),
    url("./assets/dd-hero.png");
  background-position: center;
  background-size: cover;
  content: "";
  transform: scale(1.01);
}

.hero::after {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 43%, rgba(147, 92, 255, 0.2), transparent 29%),
    linear-gradient(90deg, transparent 0 49.9%, rgba(255, 255, 255, 0.045) 50%, transparent 50.1%);
  content: "";
  mix-blend-mode: screen;
}

.hero-atmosphere {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.5;
  background-image: linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, black, transparent 75%);
}

.hero-content {
  width: min(690px, 58vw);
  animation: arrive 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow {
  margin: 0 0 25px;
  color: var(--violet-bright);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(70px, 8.7vw, 142px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.84;
  text-wrap: balance;
}

.hero-copy {
  max-width: 520px;
  margin: 35px 0 0;
  color: rgba(241, 239, 233, 0.77);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  margin-top: 38px;
  align-items: center;
  gap: 28px;
}

.primary-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  padding: 0 25px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(135deg, #8e43eb, #6429bd);
  box-shadow: 0 12px 40px rgba(116, 52, 210, 0.3);
  font-size: 13px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  box-shadow: 0 16px 46px rgba(116, 52, 210, 0.46);
  transform: translateY(-2px);
}

.text-link {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
}

.text-link span {
  display: inline-block;
  margin-left: 8px;
  color: var(--violet-bright);
  transition: transform 180ms ease;
}

.text-link:hover span { transform: translate(3px, 3px); }

.hero-index {
  position: absolute;
  right: clamp(24px, 5vw, 76px);
  bottom: 34px;
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: clamp(24px, 5vw, 76px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.scroll-cue i {
  display: block;
  width: 48px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.25);
}

.scroll-cue i::after {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--violet-bright);
  content: "";
  animation: scan 2.3s ease-in-out infinite;
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes scan {
  0%, 20% { transform: translateX(-110%); }
  65%, 100% { transform: translateX(110%); }
}

.section-shell {
  width: min(100% - 48px, 1220px);
  margin-inline: auto;
}

.section-label {
  margin: 0;
  color: #8d5adc;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.manifesto {
  position: relative;
  display: grid;
  padding-block: clamp(110px, 13vw, 190px);
  background: #f1efe9;
  box-shadow: 0 0 0 100vmax #f1efe9;
  clip-path: inset(0 -100vmax);
  grid-template-columns: minmax(0, 1.55fr) minmax(320px, 0.65fr);
  gap: clamp(64px, 8vw, 120px);
  color: #16131f;
}

.manifesto::before {
  display: none;
}

.manifesto-heading h2,
.foundations-intro h2,
.standard-header h2,
.launch-heading h2,
.closing h2 {
  margin: 20px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.047em;
  line-height: 0.96;
}

.manifesto-heading h2 {
  font-size: clamp(45px, 5.4vw, 78px);
}

.manifesto-copy {
  padding-top: 37px;
}

.manifesto-copy p {
  margin: 0 0 22px;
  color: #5d5865;
  font-size: 15px;
  line-height: 1.75;
}

.manifesto-copy p:first-child {
  color: #201b29;
  font-size: 19px;
  line-height: 1.6;
}

.foundations {
  overflow: hidden;
  padding: clamp(110px, 12vw, 175px) 0 90px;
  background: #0d0b17;
}

.foundations-intro {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.7fr) minmax(280px, 0.55fr);
  gap: clamp(64px, 9vw, 140px);
}

.section-intro-title {
  min-width: 0;
}

.foundations-intro h2 {
  font-size: clamp(50px, 6vw, 86px);
}

.foundations-intro > p:last-child {
  margin: 0;
  color: rgba(241, 239, 233, 0.55);
  font-size: 14px;
  line-height: 1.7;
}

.foundation-grid {
  display: grid;
  width: min(100% - 48px, 1400px);
  margin: 82px auto 0;
  grid-template-columns: repeat(3, 1fr);
}

.foundation-card {
  position: relative;
  display: flex;
  min-height: 650px;
  overflow: hidden;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px clamp(24px, 3vw, 44px) 42px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: #14101e;
  transition: transform 300ms ease, border-color 300ms ease;
  isolation: isolate;
}

.foundation-card + .foundation-card { border-left: 0; }
.foundation-card:hover { z-index: 2; border-color: rgba(174, 131, 255, 0.45); transform: translateY(-8px); }

.foundation-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background: radial-gradient(circle at 60% 38%, rgba(47, 111, 228, 0.27), transparent 38%);
  content: "";
}

.money-card::before { background: radial-gradient(circle at 60% 38%, rgba(247, 147, 26, 0.22), transparent 38%); }
.privacy-card::before { background: radial-gradient(circle at 60% 38%, rgba(155, 108, 240, 0.24), transparent 38%); }

.foundation-topline {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.status-dot {
  display: flex;
  align-items: center;
  gap: 8px;
}

.status-dot i {
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9b6cf0;
  box-shadow: 0 0 12px currentColor;
}

.money-card .status-dot i { background: var(--bitcoin); }
.asset-card .status-dot i { background: var(--cardano); }
.privacy-card .status-dot i { background: var(--privacy); }

.foundation-symbol {
  position: absolute;
  z-index: -1;
  top: 20%;
  left: 50%;
  display: grid;
  width: 220px;
  height: 220px;
  place-items: center;
  color: rgba(255, 255, 255, 0.92);
  transform: translateX(-50%);
}

.symbol-bitcoin {
  border: 1px solid rgba(247, 147, 26, 0.3);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(247, 147, 26, 0.14), inset 0 0 40px rgba(247, 147, 26, 0.08);
}

.symbol-cardano {
  border: 1px solid rgba(47, 111, 228, 0.34);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(47, 111, 228, 0.22), inset 0 0 45px rgba(47, 111, 228, 0.11);
}

.foundation-symbol img {
  display: block;
  width: 116px;
  height: 116px;
  object-fit: contain;
}

.symbol-bitcoin img { filter: drop-shadow(0 0 18px rgba(247, 147, 26, 0.35)); }
.symbol-cardano img { width: 130px; height: 130px; filter: drop-shadow(0 0 13px rgba(47, 111, 228, 0.55)); }

.symbol-privacy {
  border: 1px solid rgba(155, 108, 240, 0.32);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(155, 108, 240, 0.2), inset 0 0 45px rgba(155, 108, 240, 0.1);
}

.symbol-privacy i {
  position: absolute;
  display: block;
  width: 74px;
  height: 112px;
  border: 1px solid rgba(177, 138, 255, 0.9);
  border-radius: 50%;
}
.symbol-privacy i:nth-child(1) { transform: rotate(0deg); }
.symbol-privacy i:nth-child(2) { transform: rotate(60deg); }
.symbol-privacy i:nth-child(3) { transform: rotate(-60deg); }

.foundation-type {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.foundation-vertical {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(52px, 4.8vw, 72px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.92;
}

.foundation-technology {
  display: flex;
  margin: 17px 0 0;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.foundation-technology::before {
  width: 18px;
  height: 1px;
  background: var(--cardano);
  content: "";
}

.money-card .foundation-technology::before { background: var(--bitcoin); }
.privacy-card .foundation-technology::before { background: var(--privacy); }

.foundation-description {
  max-width: 360px;
  margin: 22px 0 28px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.65;
}

.selection-note {
  display: grid;
  margin-top: 52px;
  align-items: start;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.55);
  grid-template-columns: max-content minmax(0, 1fr);
  gap: clamp(36px, 6vw, 96px);
}

.selection-copy {
  max-width: 860px;
  justify-self: end;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(17px, 1.55vw, 23px);
  line-height: 1.45;
}

.selection-label {
  color: #8c60d6;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
}

.standard {
  padding: clamp(110px, 13vw, 190px) 0;
  background: #f1efe9;
  color: #17131e;
}

.standard-header {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.45fr) minmax(360px, 0.75fr);
  gap: clamp(40px, 5vw, 72px);
}

.standard-header h2 { font-size: clamp(58px, 7.4vw, 108px); }

.standard-header > p:last-child {
  margin: 0 0 8px;
  color: #65606a;
  font-size: 15px;
  line-height: 1.7;
}

.principles {
  display: grid;
  margin-top: 95px;
  border-left: 1px solid rgba(22, 19, 31, 0.18);
  grid-template-columns: repeat(4, 1fr);
}

.principles article {
  --principle-accent: #17131e;
  --principle-wash: rgba(22, 19, 31, 0.06);
  position: relative;
  min-height: 280px;
  overflow: hidden;
  padding: 31px 25px 28px;
  border-top: 1px solid rgba(22, 19, 31, 0.18);
  border-right: 1px solid rgba(22, 19, 31, 0.18);
  border-bottom: 1px solid rgba(22, 19, 31, 0.18);
  background: linear-gradient(160deg, var(--principle-wash), rgba(255, 255, 255, 0) 58%);
  transition: background-color 220ms ease, transform 220ms ease;
}

.principles article::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 4px;
  background: var(--principle-accent);
  content: "";
}

.principles article:nth-child(1) {
  --principle-accent: var(--bitcoin);
  --principle-wash: rgba(247, 147, 26, 0.12);
}

.principles article:nth-child(2) {
  --principle-accent: var(--cardano);
  --principle-wash: rgba(47, 111, 228, 0.12);
}

.principles article:nth-child(3) {
  --principle-accent: var(--privacy);
  --principle-wash: rgba(155, 108, 240, 0.13);
}

.principles article:nth-child(4) {
  --principle-wash: rgba(22, 19, 31, 0.08);
}

.principles article:nth-child(4)::before {
  background: linear-gradient(90deg, var(--bitcoin), var(--cardano), var(--privacy));
}

.principles article:hover {
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.45);
  transform: translateY(-5px);
}

.principles article > span {
  display: inline-grid;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--principle-accent) 42%, transparent);
  border-radius: 50%;
  place-items: center;
  color: var(--principle-accent);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.principles h3 {
  margin: 78px 0 14px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 400;
  letter-spacing: -0.03em;
}

.principles p {
  margin: 0;
  color: #6b6570;
  font-size: 13px;
  line-height: 1.6;
}

.launch {
  position: relative;
  overflow: hidden;
  padding: clamp(120px, 14vw, 205px) 0;
  background: #0b0914;
}

.launch-glow {
  position: absolute;
  top: 0;
  right: -10%;
  width: 65%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(123, 68, 215, 0.3), transparent 67%);
}

.launch-glow::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(42vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(171, 128, 250, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 80px rgba(131, 72, 230, 0.13), inset 0 0 80px rgba(131, 72, 230, 0.1);
  content: "";
  transform: translate(-50%, -50%);
}

.launch-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.launch-heading h2 { font-size: clamp(72px, 8vw, 118px); }

.launch-copy > p {
  max-width: 530px;
  margin: 37px 0 55px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 19px;
  line-height: 1.65;
}

.launch-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 34px;
}

.launch-services > div {
  --service-accent: var(--privacy);
  position: relative;
  min-height: 138px;
  padding: 25px 4px 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.launch-services > div::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 42px;
  height: 2px;
  background: var(--service-accent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--service-accent) 55%, transparent);
  content: "";
}

.launch-services > div:nth-child(3n + 1) { --service-accent: var(--bitcoin); }
.launch-services > div:nth-child(3n + 2) { --service-accent: var(--cardano); }
.launch-services > div:nth-child(3n) { --service-accent: var(--privacy); }

.launch-services span {
  display: block;
  margin-bottom: 13px;
  color: var(--service-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.launch-services p {
  margin: 0;
  color: rgba(255, 255, 255, 0.57);
  font-size: 13px;
  line-height: 1.55;
}

.closing {
  display: flex;
  min-height: 76svh;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 24px;
  background:
    radial-gradient(circle at 50% 45%, rgba(130, 76, 224, 0.22), transparent 34%),
    linear-gradient(rgba(9, 7, 17, 0.92), rgba(9, 7, 17, 0.98)),
    url("./assets/dd-hero.png") center 62% / cover;
  text-align: center;
}

.closing h2 {
  margin-bottom: 42px;
  font-size: clamp(62px, 8vw, 118px);
}

.closing .primary-button span { margin-left: 12px; }

footer {
  display: flex;
  min-height: 120px;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 76px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: #070610;
}

footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  .site-header { padding: 20px 22px; }
  .brand { font-size: 14px; }
  .menu-button {
    position: relative;
    z-index: 40;
    display: block;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
  }
  .menu-button span {
    position: absolute;
    right: 5px;
    display: block;
    width: 26px;
    height: 1px;
    background: white;
    transition: transform 180ms ease;
  }
  .menu-button span:first-child { top: 16px; }
  .menu-button span:last-child { top: 25px; }
  .nav-links {
    position: fixed;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 130px 28px;
    align-items: flex-start;
    justify-content: flex-start;
    background: rgba(8, 8, 18, 0.98);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 36px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-links.is-open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .hero {
    min-height: 780px;
    align-items: end;
    padding: 130px 24px 130px;
  }
  .hero::before {
    background-image:
      linear-gradient(0deg, rgba(6, 5, 16, 0.96) 0%, rgba(6, 5, 16, 0.38) 62%, rgba(6, 5, 16, 0.25)),
      url("./assets/dd-hero.png");
    background-position: 62% center;
  }
  .hero-content { width: 100%; }
  .hero h1 { font-size: clamp(63px, 20vw, 92px); }
  .hero-copy { max-width: 440px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hero-index { display: none; }
  .scroll-cue { bottom: 30px; left: 24px; }
  .section-shell { width: min(100% - 44px, 680px); }
  .manifesto { grid-template-columns: 1fr; gap: 24px; }
  .manifesto-copy { padding-top: 10px; }
  .foundations-intro { grid-template-columns: 1fr; gap: 24px; }
  .foundations-intro > p:last-child { max-width: 520px; }
  .foundation-grid { width: min(100% - 32px, 680px); grid-template-columns: 1fr; }
  .foundation-card { min-height: 590px; }
  .foundation-card + .foundation-card { border-top: 0; border-left: 1px solid rgba(255, 255, 255, 0.09); }
  .selection-note { grid-template-columns: 1fr; gap: 18px; }
  .selection-copy { max-width: 560px; justify-self: start; }
  .standard-header { grid-template-columns: 1fr; gap: 24px; }
  .standard-header > p:last-child { max-width: 520px; }
  .principles { grid-template-columns: 1fr 1fr; }
  .principles article { min-height: 250px; }
  .principles h3 { margin-top: 72px; }
  .launch-grid { grid-template-columns: 1fr; gap: 40px; }
  .launch-copy > p { margin-top: 0; }
  footer { flex-wrap: wrap; gap: 24px; }
}

@media (max-width: 520px) {
  .brand { gap: 9px; }
  .brand-mark { width: 25px; height: 25px; }
  .brand-mark i { width: 23px; }
  .manifesto-heading h2 { font-size: 43px; }
  .foundations-intro h2 { font-size: 48px; }
  .principles { grid-template-columns: 1fr; }
  .principles article { min-height: auto; }
  .principles h3 { margin-top: 56px; }
  .launch-services { grid-template-columns: 1fr; }
  .launch-services > div { min-height: auto; }
  footer { align-items: flex-start; flex-direction: column; }
  .footer-brand { margin-bottom: 10px; }
}

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