:root,
html.art-a,
html.art-b,
html.art-c,
html.art-d,
html.art-e {
  /* Aurora wash: soft linear color bands, no mesh/orbs */
  --bg: #12161e;
  --bg-elevated: #1a2030;
  --bg-glass: rgba(255, 255, 255, 0.08);
  --bg-glass-strong: rgba(255, 255, 255, 0.11);
  --stroke: rgba(255, 255, 255, 0.16);
  --stroke-subtle: rgba(255, 255, 255, 0.08);
  --text: #f4f4f5;
  --text-secondary: #a1a1aa;
  --text-tertiary: #8b8b96;
  --blue: #3b82f6;
  --cyan: #22d3ee;
  --purple: #818cf8;
  --green: #17c964;
  --accent: var(--cyan);
  --cta-bg: #f4f4f5;
  --cta-fg: #12161e;
  --wash-a: rgba(59, 130, 246, 0.22);
  --wash-b: rgba(34, 211, 238, 0.12);
  --wash-c: rgba(129, 140, 248, 0.14);
  --radius: 14px;
  --glass-blur: 18px;
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

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

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

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

.container {
  width: min(1080px, 100% - 48px);
  margin-inline: auto;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.glass {
  position: relative;
  background: var(--bg-glass);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

.eyebrow {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}

.eyebrow__motif {
  display: none;
  width: 1.1rem;
  height: 1.1rem;
  object-fit: contain;
  flex-shrink: 0;
  opacity: 0.85;
  filter: brightness(0) saturate(100%) invert(78%) sepia(42%) saturate(1200%) hue-rotate(146deg) brightness(1.05);
}

.lead, .section__lead {
  margin: 0;
  font-size: 1.125rem;
  color: var(--text-secondary);
  max-width: 36rem;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2rem); }
h3 { font-size: 1.125rem; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.625rem 1.25rem;
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s, background 0.15s, border-color 0.15s;
}

.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--cta-bg);
  color: var(--cta-fg);
}

.btn--primary:hover { filter: brightness(1.08); }

.btn--ghost {
  background: transparent;
  border-color: var(--stroke);
  color: var(--text);
}

.btn--ghost:hover { border-color: rgba(255, 255, 255, 0.25); }

.btn--sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.pill {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 999px;
  border: 1px solid var(--stroke);
  color: var(--text-secondary);
}

.pill--success {
  border-color: rgba(23, 201, 100, 0.35);
  color: var(--green);
  background: rgba(23, 201, 100, 0.08);
}

/* Nav + footer — white bars, dark logo/type */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid #e8e8ea;
  background: #ffffff;
  color: #0a0a0a;
  backdrop-filter: none;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: #0a0a0a;
}

.nav__logo,
.footer__logo {
  height: 40px;
  width: auto;
  flex-shrink: 0;
  display: block;
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  filter: none;
}

.footer__logo {
  height: 36px;
}

.nav__wordmark {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.nav__name {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  white-space: nowrap;
  color: #0a0a0a;
}

.nav__powered {
  font-size: 0.65rem;
  color: #6b6b76;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wie__name {
  margin: 0 !important;
  font-size: 0.95rem !important;
  font-weight: 600;
  color: var(--text) !important;
}

.over__identity {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.over__photo {
  width: 112px;
  height: 112px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--stroke);
  flex-shrink: 0;
}

.card__list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.card__list li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.card__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 0.7rem;
}

.footer__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

@media (max-width: 768px) {
  .nav__powered { display: none; }
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav__links a:not(.btn) {
  font-size: 0.875rem;
  font-weight: 500;
  color: #0a0a0a;
  transition: color 0.15s;
}

.nav__links a:not(.btn):hover { color: #52525b; }

.nav__links .btn--primary {
  background: #0a0a0a;
  color: #fff;
}

.nav__links .btn--primary:hover {
  background: #27272a;
  color: #fff;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav__toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #0a0a0a;
  border-radius: 1px;
}

/* Hero — Aurora wash + art-driven logo treatments */
.hero {
  position: relative;
  padding: 4.5rem 0 3.25rem;
  text-align: center;
  /* Allow full knot to show; do not clip watermark corners */
  overflow: visible;
}

.hero__wash {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(118deg, var(--wash-a) 0%, transparent 42%),
    linear-gradient(200deg, transparent 35%, var(--wash-b) 58%, transparent 78%),
    linear-gradient(0deg, var(--bg) 0%, transparent 55%),
    linear-gradient(90deg, transparent 0%, var(--wash-c) 50%, transparent 100%);
  opacity: 1;
}

.hero__wash::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(18, 22, 30, 0.15) 0%,
    transparent 40%,
    rgba(18, 22, 30, 0.55) 100%
  );
}

.hero__mark {
  position: absolute;
  /* Padded box so the full interlocking knot stays inside the hero */
  inset: 8% 8% 14% 8%;
  z-index: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  opacity: 0.2;
  /* Soften under copy; keep open sides readable */
  -webkit-mask-image: radial-gradient(
    ellipse 50% 55% at 50% 38%,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.5) 34%,
    rgba(0, 0, 0, 0.9) 64%,
    #000 100%
  );
  mask-image: radial-gradient(
    ellipse 50% 55% at 50% 38%,
    rgba(0, 0, 0, 0.28) 0%,
    rgba(0, 0, 0, 0.5) 34%,
    rgba(0, 0, 0, 0.9) 64%,
    #000 100%
  );
}

.hero__mark-img {
  display: none;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  grid-area: 1 / 1;
}

.hero__mark-img--wire {
  /* Dedicated thin-outline knot — aurora tint only */
  width: min(36rem, 78%);
  height: min(36rem, 78%);
  filter: invert(78%) sepia(42%) saturate(1200%) hue-rotate(146deg) brightness(1.15);
}

.hero__mark-img--ghost {
  filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(900%) hue-rotate(168deg) brightness(1.05);
}

.hero__twins {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__twins img {
  position: absolute;
  width: min(14rem, 32vw);
  opacity: 0.07;
  filter: brightness(0) saturate(100%) invert(78%) sepia(42%) saturate(1200%) hue-rotate(146deg) brightness(1.1);
}

.hero__twins img:first-child {
  top: 12%;
  left: 2%;
  transform: rotate(-8deg);
}

.hero__twins img:last-child {
  right: 2%;
  bottom: 8%;
  transform: rotate(12deg) scaleX(-1);
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.hero__content::before {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  top: -0.75rem;
  bottom: -0.5rem;
  width: min(44rem, 108%);
  transform: translateX(-50%);
  pointer-events: none;
  background: radial-gradient(
    ellipse 72% 58% at 50% 30%,
    rgba(16, 20, 28, 0.7) 0%,
    rgba(16, 20, 28, 0.32) 48%,
    transparent 74%
  );
}

.hero__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
}

.validation-card {
  margin-top: 1rem;
  max-width: 28rem;
  width: 100%;
  padding: 1.25rem 1.35rem;
  text-align: left;
  background: var(--bg-glass-strong);
}

.validation-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.validation-card__intro {
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

.validation-card__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.validation-card__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.validation-card__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 1px;
  background: var(--accent);
  opacity: 0.85;
}

.hero__stacks {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 0.25rem;
}

.hero__stacks span {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--text-tertiary);
  padding: 0.3rem 0.65rem;
  border: 1px solid var(--stroke-subtle);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

/* Sections */
.section { padding: 4rem 0; }

.section__header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 2rem;
  max-width: 32rem;
}

.iso-divider {
  display: none;
  width: min(16rem, 100%);
  height: 10px;
  margin: 0.35rem 0 0.15rem;
  background:
    linear-gradient(90deg, var(--cyan), var(--blue) 45%, var(--purple));
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 10' fill='none'%3E%3Cpath d='M0 7H78L90 3H150L162 7H240' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3Cpath d='M0 9H76L88 5H152L164 9H240' stroke='black' stroke-width='0.75' opacity='0.55'/%3E%3C/svg%3E");
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 240 10' fill='none'%3E%3Cpath d='M0 7H78L90 3H150L162 7H240' stroke='black' stroke-width='1.25' stroke-linecap='square'/%3E%3Cpath d='M0 9H76L88 5H152L164 9H240' stroke='black' stroke-width='0.75' opacity='0.55'/%3E%3C/svg%3E");
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.card {
  padding: 1.25rem;
  height: 100%;
  transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.18);
}

.card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.card__accent {
  width: 6px;
  height: 24px;
  border-radius: 3px;
}

.card__accent--blue { background: var(--blue); }
.card__accent--cyan { background: var(--cyan); }
.card__accent--purple { background: var(--purple); }

.card h3 { margin-bottom: 0.5rem; }

.card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Over — Alban left/top; Marisol diagonally lower-right */
.over {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.75rem 2rem;
  align-items: start;
}

.over__alban {
  grid-column: 1;
  grid-row: 1 / 3;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.over__alban > p {
  margin: 0;
  color: var(--text-secondary);
}

.over__reasons {
  grid-column: 2;
  grid-row: 1;
  padding: 1.5rem;
}

.over__marisol {
  grid-column: 2;
  grid-row: 2;
  padding: 1.35rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-top: 0.5rem;
}

.over__marisol > p {
  margin: 0;
  color: var(--text-secondary);
  font-size: 0.9375rem;
}

.over__person-title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.over__marisol .over__identity {
  margin-bottom: 0;
}

.over__marisol .over__photo {
  width: 88px;
  height: 88px;
}

.over__reasons strong {
  display: block;
  margin-bottom: 1rem;
}

.over__reasons ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  counter-reset: reason;
}

.over__reasons li {
  font-size: 0.875rem;
  color: var(--text-secondary);
  counter-increment: reason;
  display: flex;
  gap: 0.75rem;
}

.over__reasons li::before {
  content: counter(reason, decimal-leading-zero);
  color: var(--text-tertiary);
  font-size: 0.8125rem;
  flex-shrink: 0;
}

/* Contact */
.section--contact { padding-bottom: 3rem; }

.contact {
  padding: 3rem 2rem;
  text-align: center;
}

.contact > p {
  margin: 0.75rem auto 1.5rem;
  color: var(--text-secondary);
  max-width: 28rem;
}

.contact__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 32rem;
  margin: 0 auto 1.5rem;
  text-align: left;
}

.contact__form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.8125rem;
  color: var(--text-tertiary);
}

.contact__form input,
.contact__form textarea {
  font: inherit;
  padding: 0.625rem 0.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--stroke);
  border-radius: 8px;
  color: var(--text);
}

.contact__form input:focus,
.contact__form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
}

.contact__message { grid-column: 1 / -1; }

.contact__form button[type="submit"] {
  grid-column: 1 / -1;
  justify-self: center;
}

.contact__status {
  grid-column: 1 / -1;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.contact__status--success {
  color: var(--green);
}

.contact__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.contact__details a:hover { color: var(--text); }

.footer {
  margin: 0;
  padding: 1.25rem 0;
  border-top: 1px solid #e8e8ea;
  background: #ffffff;
  color: #0a0a0a;
}

.footer__inner {
  display: flex;
  align-items: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.8125rem;
  color: #0a0a0a;
}

.footer__name {
  font-weight: 600;
  color: #0a0a0a;
}

.footer__sub {
  font-size: 0.75rem;
  color: #6b6b76;
}

.footer__brand img {
  height: 36px;
  width: auto;
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }

  .nav__links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 24px 1.5rem;
    background: #ffffff;
    border-bottom: 1px solid #e8e8ea;
  }

  .nav__links.is-open { display: flex; }

  .nav__inner { position: relative; }

  .cards { grid-template-columns: 1fr; }

  .over {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .over__alban,
  .over__reasons,
  .over__marisol {
    grid-column: 1;
    grid-row: auto;
    margin-top: 0;
  }

  .contact__form { grid-template-columns: 1fr; }
}

/* —— Art preview switcher —— */
.design-switcher {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem 0.4rem 0.65rem;
  background: #ffffff;
  border: 1px solid #e8e8ea;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
  font-family: var(--font);
  color: #0a0a0a;
}

.design-switcher__label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #6b6b76;
  margin-right: 0.15rem;
  white-space: nowrap;
}

.design-switcher a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1.75rem;
  height: 1.75rem;
  padding: 0 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #0a0a0a;
  border-radius: 6px;
  border: 1px solid transparent;
  transition: background 0.15s, border-color 0.15s;
}

.design-switcher a:hover {
  background: #f4f4f5;
}

.design-switcher a[aria-current="page"] {
  background: #0a0a0a;
  color: #fff;
}

@media (max-width: 480px) {
  .design-switcher {
    right: 0.75rem;
    left: 0.75rem;
    bottom: 0.75rem;
    justify-content: center;
  }

  .design-switcher__label {
    display: none;
  }
}

/* —— Art A: thin wire watermark (default on /) —— */
html.art-a .hero__mark-img--wire { display: block; }
html.art-a .hero__mark {
  opacity: 0.28;
  /* Center-back, slightly upper so knot clears hero bottom */
  inset: 4% 10% 18% 10%;
  place-items: center;
}
html.art-a .hero__mark-img--wire {
  width: min(30rem, 68%);
  height: min(30rem, 62%);
}

/* —— Art B: frame-corner accents on glass —— */
html.art-b .hero__mark {
  opacity: 0.05;
}
html.art-b .hero__mark-img--wire { display: block; }

html.art-b .glass::before,
html.art-b .glass::after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  pointer-events: none;
  z-index: 1;
  opacity: 0.9;
  background:
    linear-gradient(90deg, var(--cyan), var(--blue)) top left / 18px 1.5px no-repeat,
    linear-gradient(180deg, var(--cyan), var(--blue)) top left / 1.5px 18px no-repeat;
}

html.art-b .glass::before {
  top: 10px;
  left: 10px;
}

html.art-b .glass::after {
  right: 10px;
  bottom: 10px;
  transform: rotate(180deg);
  background:
    linear-gradient(90deg, var(--purple), var(--blue)) top left / 18px 1.5px no-repeat,
    linear-gradient(180deg, var(--purple), var(--blue)) top left / 1.5px 18px no-repeat;
}

html.art-b .card,
html.art-b .validation-card,
html.art-b .over__reasons,
html.art-b .contact {
  padding-top: 1.35rem;
}

/* —— Art C: ghost wash (softer large silhouette) —— */
html.art-c .hero__mark {
  inset: 0% -4% 0% -4%;
  opacity: 0.22;
  -webkit-mask-image: none;
  mask-image: none;
}
html.art-c .hero__mark-img--ghost {
  display: block;
  width: min(48rem, 115%);
  height: min(48rem, 115%);
  filter: brightness(0) saturate(100%) invert(72%) sepia(35%) saturate(900%) hue-rotate(168deg) brightness(1.05) blur(1.5px);
  opacity: 0.85;
}
html.art-c .hero__content::before {
  background: radial-gradient(
    ellipse 72% 58% at 50% 30%,
    rgba(16, 20, 28, 0.78) 0%,
    rgba(16, 20, 28, 0.4) 48%,
    transparent 74%
  );
}

/* —— Art D: compact motif on eyebrows —— */
html.art-d .hero__mark {
  opacity: 0.04;
}
html.art-d .hero__mark-img--wire { display: block; }
html.art-d .eyebrow__motif { display: block; }
html.art-d .nav__brand::after {
  content: "";
  display: none;
}
html.art-d .validation-card__head strong::before {
  content: "";
  display: inline-block;
  width: 0.95rem;
  height: 0.95rem;
  margin-right: 0.45rem;
  vertical-align: -0.12rem;
  background: url("/assets/logo-mark-art-a.png") center / contain no-repeat;
  filter: invert(78%) sepia(42%) saturate(1200%) hue-rotate(146deg) brightness(1.05);
  opacity: 0.9;
}

/* —— Art E: dual knots + isometric trail dividers + glass edge —— */
html.art-e .hero__mark {
  opacity: 0;
}
html.art-e .hero__twins {
  display: block;
}
html.art-e .iso-divider {
  display: block;
}
html.art-e .glass {
  border-color: transparent;
  background:
    linear-gradient(var(--bg-glass), var(--bg-glass)) padding-box,
    linear-gradient(135deg, rgba(34, 211, 238, 0.55), rgba(59, 130, 246, 0.25) 40%, rgba(129, 140, 248, 0.5)) border-box;
  border: 1px solid transparent;
}
html.art-e .card:hover {
  border-color: transparent;
  filter: brightness(1.04);
}
