:root {
  --oe-navy: #0c1230;
  --oe-navy-soft: #151d47;
  --oe-indigo: #293b78;
  --oe-teal: #58d4da;
  --oe-violet: #9b76e9;
  --oe-rose: #ef8ebd;
  --oe-gold: #f4c66f;
  --oe-cream: #fff6df;
  --oe-text: #f9f4ff;
  --oe-muted: #c9c7dc;
  --oe-ink: #221d3d;
  --oe-border: rgba(255, 220, 153, 0.26);
  --oe-card: rgba(20, 25, 61, 0.72);
  --oe-shadow: 0 28px 80px rgba(2, 5, 21, 0.48);
  --oe-radius: 26px;
  --oe-shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--oe-text);
  background:
    radial-gradient(circle at 20% 10%, rgba(75, 155, 219, .22), transparent 32rem),
    radial-gradient(circle at 82% 18%, rgba(226, 117, 180, .22), transparent 30rem),
    radial-gradient(circle at 50% 84%, rgba(245, 188, 86, .13), transparent 34rem),
    linear-gradient(150deg, #071022 0%, #11173a 48%, #281644 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .28;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.9) 0 1px, transparent 1.4px),
    radial-gradient(circle, rgba(255,214,132,.75) 0 1px, transparent 1.5px);
  background-size: 64px 64px, 110px 110px;
  background-position: 0 0, 24px 37px;
  z-index: -2;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

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

.oe-skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 9999;
  background: var(--oe-cream);
  color: var(--oe-ink);
  padding: 12px 18px;
  border-radius: 10px;
  transition: top .2s ease;
}
.oe-skip-link:focus { top: 16px; }

.oe-shell { width: var(--oe-shell); margin-inline: auto; }
.oe-section { position: relative; padding: clamp(76px, 9vw, 132px) 0; }

.oe-cosmos { position: fixed; inset: 0; pointer-events: none; z-index: -1; }
.oe-star { position: absolute; border-radius: 50%; filter: blur(1px); box-shadow: 0 0 22px currentColor; }
.oe-star-1 { width: 4px; height: 4px; color: #fff0af; background: currentColor; left: 9%; top: 20%; }
.oe-star-2 { width: 5px; height: 5px; color: #c6adff; background: currentColor; right: 11%; top: 46%; }
.oe-star-3 { width: 3px; height: 3px; color: #78e8eb; background: currentColor; left: 46%; bottom: 10%; }

.oe-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  padding: 17px 0;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, padding .25s ease, backdrop-filter .25s ease;
}
.oe-header.is-scrolled {
  padding: 10px 0;
  background: rgba(7, 11, 31, .82);
  border-color: var(--oe-border);
  backdrop-filter: blur(18px);
}
.oe-header-inner { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.oe-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-family: Georgia, "Times New Roman", serif; font-size: 1.12rem; font-weight: 700; letter-spacing: .01em; }
.oe-brand img { filter: drop-shadow(0 0 14px rgba(142, 222, 255, .35)); }
.oe-nav { display: flex; align-items: center; gap: clamp(16px, 2vw, 30px); }
.oe-nav > a:not(.oe-button) { text-decoration: none; color: var(--oe-muted); font-size: .94rem; font-weight: 650; }
.oe-nav > a:hover, .oe-nav > a:focus-visible { color: #fff; }
.oe-menu-toggle { display: none; background: none; border: 0; color: #fff; padding: 7px; }
.oe-menu-toggle span:not(.sr-only) { width: 26px; height: 2px; background: currentColor; display: block; margin: 5px 0; border-radius: 5px; }

.oe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 22px;
  border: 1px solid rgba(255, 222, 158, .62);
  border-radius: 999px;
  color: #19142f;
  background: linear-gradient(135deg, #fff1b5, #f3a4cf 49%, #86e5e8);
  box-shadow: 0 14px 32px rgba(10, 8, 30, .25), inset 0 1px 0 rgba(255,255,255,.72);
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .01em;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}
.oe-button:hover, .oe-button:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 40px rgba(10, 8, 30, .34); filter: saturate(1.06); }
.oe-button-small { min-height: 42px; padding: 9px 16px; font-size: .86rem; }
.oe-button-ghost { background: rgba(255,255,255,.06); color: var(--oe-text); border-color: var(--oe-border); box-shadow: none; }
.oe-text-link { color: #e8d9ff; text-underline-offset: 5px; text-decoration-thickness: 1px; }

.oe-hero { min-height: 100vh; display: grid; align-items: center; padding-top: 140px; overflow: hidden; }
.oe-hero::before {
  content: "";
  position: absolute;
  width: min(70vw, 980px);
  aspect-ratio: 1;
  left: -28vw;
  top: 10%;
  border-radius: 50%;
  border: 1px solid rgba(126, 218, 231, .16);
  box-shadow: 0 0 0 42px rgba(103, 130, 229, .025), 0 0 0 96px rgba(230, 140, 194, .018);
}
.oe-hero-grid { display: grid; grid-template-columns: minmax(300px, .88fr) minmax(360px, 1.12fr); gap: clamp(48px, 8vw, 104px); align-items: center; }
.oe-cover-wrap { position: relative; width: min(100%, 480px); margin-inline: auto; }
.oe-book-cover { position: relative; z-index: 2; border-radius: 18px; box-shadow: var(--oe-shadow), 0 0 0 1px rgba(255, 226, 166, .22); transform: rotate(-1.2deg); }
.oe-cover-wrap::after { content: ""; position: absolute; inset: 6% -8% -5% 8%; background: linear-gradient(140deg, rgba(73,202,217,.2), rgba(235,128,186,.2)); filter: blur(42px); border-radius: 50%; z-index: 0; }
.oe-orbit { position: absolute; width: 118%; aspect-ratio: 1; left: -9%; top: 16%; border: 1px solid rgba(255,218,138,.25); border-radius: 50%; transform: rotate(14deg); z-index: 1; }
.oe-orbit::before, .oe-orbit::after { content: ""; position: absolute; width: 10px; height: 10px; border-radius: 50%; background: var(--oe-gold); box-shadow: 0 0 20px var(--oe-gold); }
.oe-orbit::before { left: 5%; top: 28%; }
.oe-orbit::after { right: 3%; bottom: 30%; }

.oe-eyebrow { margin: 0 0 16px; color: var(--oe-gold); text-transform: uppercase; letter-spacing: .2em; font-size: .78rem; font-weight: 850; }
.oe-hero h1, .oe-section h2, .oe-error-card h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: .98;
  text-wrap: balance;
}
.oe-hero h1 { font-size: clamp(4rem, 8vw, 7.5rem); letter-spacing: -.055em; background: linear-gradient(115deg, #fff6cf, #99eff0 40%, #c8a5ff 70%, #ffa6cf); -webkit-background-clip: text; background-clip: text; color: transparent; }
.oe-subtitle { margin: 18px 0 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 3vw, 2.45rem); color: #f8dca4; font-style: italic; }
.oe-byline { margin: 14px 0 28px; color: #ddd9ed; letter-spacing: .08em; }
.oe-lead { margin: 0; max-width: 680px; color: var(--oe-muted); font-size: clamp(1.05rem, 1.5vw, 1.25rem); }
.oe-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 22px; margin-top: 34px; }
.oe-trust-row { display: flex; flex-wrap: wrap; gap: 11px; margin-top: 32px; }
.oe-trust-row span { padding: 7px 11px; border-radius: 999px; border: 1px solid var(--oe-border); background: rgba(255,255,255,.035); color: #d8d4e7; font-size: .8rem; }

.oe-preview-section { background: linear-gradient(180deg, transparent, rgba(12,18,48,.7) 15%, rgba(12,18,48,.7) 85%, transparent); }
.oe-preview-grid { display: grid; grid-template-columns: .82fr 1.18fr; gap: clamp(48px, 9vw, 118px); align-items: center; }
.oe-section h2 { font-size: clamp(2.8rem, 5vw, 5.4rem); letter-spacing: -.045em; }
.oe-preview-copy > p:not(.oe-eyebrow), .oe-about-card p, .oe-section-heading p { color: var(--oe-muted); font-size: 1.08rem; }
blockquote { margin: 28px 0 34px; padding: 25px 0 25px 26px; border-left: 2px solid var(--oe-gold); color: #fff4d2; font-family: Georgia, serif; font-size: clamp(1.35rem, 2vw, 1.85rem); font-style: italic; }
.oe-page-frame { margin: 0; padding: 14px; border: 1px solid var(--oe-border); border-radius: 24px; background: linear-gradient(135deg, rgba(83,212,218,.12), rgba(155,118,233,.09), rgba(239,142,189,.1)); box-shadow: var(--oe-shadow); }
.oe-page-frame img { border-radius: 14px; }
.oe-page-frame figcaption { padding: 14px 8px 2px; text-align: center; color: #c8c2dc; font-size: .85rem; }

.oe-about-card { position: relative; display: grid; grid-template-columns: 150px 1fr; gap: 42px; align-items: center; padding: clamp(30px, 6vw, 76px); border-radius: var(--oe-radius); border: 1px solid var(--oe-border); background: linear-gradient(135deg, rgba(68,100,172,.22), rgba(135,75,150,.2), rgba(222,147,96,.12)); box-shadow: var(--oe-shadow); overflow: hidden; }
.oe-about-card::after { content: ""; position: absolute; width: 340px; height: 340px; right: -130px; top: -160px; border: 1px solid rgba(255,225,158,.15); border-radius: 50%; box-shadow: 0 0 0 38px rgba(255,255,255,.015), 0 0 0 90px rgba(255,255,255,.009); }
.oe-symbol { width: 130px; height: 130px; display: grid; place-items: center; border: 1px solid rgba(255,223,154,.38); border-radius: 50%; font-family: Georgia, serif; font-size: 4.5rem; color: var(--oe-gold); background: rgba(7,12,35,.34); box-shadow: inset 0 0 40px rgba(255,198,111,.08), 0 0 45px rgba(88,212,218,.09); }

.oe-section-heading { max-width: 760px; margin-bottom: 42px; }
.oe-social-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.oe-social-card { display: grid; grid-template-columns: 54px 1fr auto; align-items: center; gap: 16px; padding: 22px; border-radius: 20px; border: 1px solid var(--oe-border); background: rgba(255,255,255,.045); text-decoration: none; transition: transform .2s ease, border-color .2s ease, background .2s ease; }
.oe-social-card:hover, .oe-social-card:focus-visible { transform: translateY(-3px); border-color: rgba(255,229,170,.55); background: rgba(255,255,255,.072); }
.oe-social-icon { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; color: #fff; font-size: 1.8rem; font-weight: 800; background: linear-gradient(135deg, #6857d9, #ee79ad, #f7b35e); }
.oe-facebook-icon { background: linear-gradient(135deg, #4c7adf, #2456b8); font-family: Arial, sans-serif; }
.oe-social-card strong, .oe-social-card small { display: block; }
.oe-social-card small { color: var(--oe-muted); }
.oe-instagram-panel { margin-top: 28px; min-height: 210px; display: grid; place-items: center; padding: 28px; border-radius: 22px; border: 1px dashed rgba(255,222,158,.34); background: rgba(5,9,28,.32); }
.oe-instagram-placeholder { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.oe-instagram-placeholder > div { display: grid; grid-template-columns: 58px 1fr; column-gap: 18px; align-items: center; }
.oe-instagram-placeholder h3, .oe-instagram-placeholder p { grid-column: 2; margin: 0; }
.oe-instagram-placeholder h3 { font-family: Georgia, serif; font-size: 1.55rem; }
.oe-instagram-placeholder p { color: var(--oe-muted); }
.oe-instagram-placeholder .oe-social-icon { grid-row: 1 / span 2; }

.oe-footer { padding: 68px 0 28px; border-top: 1px solid var(--oe-border); background: rgba(4,7,22,.48); }
.oe-footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: start; }
.oe-brand-footer { font-size: 1.05rem; }
.oe-footer p { margin: 14px 0 0; color: var(--oe-muted); }
.oe-footer-links { display: flex; gap: 24px; flex-wrap: wrap; }
.oe-footer-links a, .oe-footer-bottom a { color: #e6dcf7; text-underline-offset: 4px; }
.oe-footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 32px; margin-top: 38px; border-top: 1px solid rgba(255,255,255,.08); color: #aaa6c2; font-size: .88rem; }

.oe-inner-main { padding-top: 150px; min-height: 75vh; }
.oe-content-card { color: #30274a; background: rgba(255,250,238,.96); border-radius: 24px; padding: clamp(24px, 5vw, 62px); box-shadow: var(--oe-shadow); }
.oe-content-card a { color: #40308a; }
.oe-component-only { background: #fffaf0; color: #2c2442; padding: 28px; }
.oe-error-page { min-height: 100vh; display: grid; place-items: center; padding: 28px; }
.oe-error-card { width: min(620px, 100%); text-align: center; padding: 58px 34px; border: 1px solid var(--oe-border); border-radius: 28px; background: rgba(13,18,48,.82); box-shadow: var(--oe-shadow); }
.oe-error-card img { margin: 0 auto 24px; }
.oe-error-card h1 { font-size: clamp(2.8rem, 8vw, 5rem); }
.oe-error-card p:not(.oe-eyebrow) { color: var(--oe-muted); }

.oe-reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.oe-reveal.is-visible { opacity: 1; transform: none; }

:focus-visible { outline: 3px solid #ffe5a6; outline-offset: 4px; }

@media (max-width: 900px) {
  :root { --oe-shell: min(100% - 28px, 760px); }
  .oe-menu-toggle { display: block; }
  .oe-nav { position: absolute; top: calc(100% + 8px); left: 14px; right: 14px; display: none; flex-direction: column; align-items: stretch; padding: 20px; border-radius: 18px; border: 1px solid var(--oe-border); background: rgba(8,12,34,.96); box-shadow: var(--oe-shadow); }
  .oe-nav.is-open { display: flex; }
  .oe-nav > a { padding: 8px 4px; }
  .oe-hero-grid, .oe-preview-grid { grid-template-columns: 1fr; }
  .oe-hero { padding-top: 118px; }
  .oe-cover-wrap { width: min(78vw, 440px); }
  .oe-hero-copy { text-align: center; }
  .oe-lead { margin-inline: auto; }
  .oe-actions, .oe-trust-row { justify-content: center; }
  .oe-preview-copy { order: 2; }
  .oe-page-frame { width: min(100%, 620px); margin-inline: auto; }
  .oe-about-card { grid-template-columns: 1fr; text-align: center; }
  .oe-symbol { margin-inline: auto; }
}

@media (max-width: 640px) {
  .oe-section { padding: 72px 0; }
  .oe-hero h1 { font-size: clamp(3.2rem, 17vw, 5rem); }
  .oe-social-grid { grid-template-columns: 1fr; }
  .oe-instagram-placeholder { flex-direction: column; align-items: stretch; }
  .oe-instagram-placeholder > div { grid-template-columns: 52px 1fr; }
  .oe-footer-grid, .oe-footer-bottom { grid-template-columns: 1fr; display: grid; }
  .oe-footer-links { flex-direction: column; gap: 12px; }
  .oe-cover-wrap { width: min(88vw, 430px); }
}

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


/* Community Circle */
.oe-community-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 30%, rgba(75, 199, 196, .16), transparent 34%),
    radial-gradient(circle at 82% 70%, rgba(235, 143, 186, .16), transparent 36%),
    linear-gradient(180deg, rgba(15, 22, 58, .72), rgba(7, 11, 34, .9));
  border-block: 1px solid rgba(255, 255, 255, .06);
}
.oe-community-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 920px;
  margin: 38px auto 0;
}
.oe-community-card {
  min-height: 230px;
  padding: 30px;
  border: 1px solid rgba(255, 225, 166, .18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(20, 29, 71, .82), rgba(12, 17, 48, .76));
  box-shadow: 0 22px 50px rgba(0, 0, 0, .2);
}
.oe-community-card:nth-child(2) { transform: translateY(10px); }
.oe-community-card h3 {
  margin: 20px 0 10px;
  font-family: Georgia, serif;
  font-size: 1.42rem;
  line-height: 1.2;
}
.oe-community-card p { margin: 0; color: var(--oe-muted); }
.oe-community-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff1c7;
  background: linear-gradient(135deg, rgba(70, 204, 199, .24), rgba(230, 133, 181, .24));
  border: 1px solid rgba(255, 230, 177, .22);
  font-size: 1.35rem;
}
.oe-community-footer {
  margin-top: 54px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px 30px;
  align-items: center;
  border: 1px solid rgba(255, 225, 166, .2);
  border-radius: 24px;
  background: rgba(5, 9, 28, .42);
}
.oe-community-footer p { margin: 0; color: var(--oe-muted); }
.oe-community-principles {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.oe-community-principles span {
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 225, 166, .18);
  background: rgba(255, 255, 255, .04);
  color: #e9def8;
  font-size: .84rem;
}
.oe-community-principles span::before { content: '✓'; margin-right: 7px; color: #86d8d2; }

/* Kunena/community component page */
.oe-community-main { padding-top: 126px; }
.oe-community-page { width: min(100% - 28px, 1240px); }
.oe-community-page-header {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  margin-bottom: 28px;
  padding: 30px;
  border: 1px solid var(--oe-border);
  border-radius: 24px;
  background: rgba(13, 18, 48, .8);
  box-shadow: var(--oe-shadow);
}
.oe-community-page-header h1 {
  margin: 4px 0 12px;
  font-size: clamp(2.15rem, 5vw, 4rem);
}
.oe-community-page-header p:not(.oe-eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--oe-muted);
}
.oe-kunena-frame {
  padding: clamp(12px, 2.5vw, 28px);
  border-radius: 24px;
  background: #fffaf2;
  color: #2d2444;
  box-shadow: var(--oe-shadow);
  overflow: hidden;
}
.oe-kunena-frame a { color: #4d368f; }
.oe-kunena-frame #kunena,
.oe-kunena-frame .kunena { max-width: none; }
.oe-kunena-frame input,
.oe-kunena-frame select,
.oe-kunena-frame textarea { color: #251d3a; }

@media (max-width: 900px) {
  .oe-community-grid { grid-template-columns: 1fr; }
  .oe-community-card:nth-child(2) { transform: none; }
  .oe-community-footer { grid-template-columns: 1fr; }
  .oe-community-page-header { align-items: flex-start; flex-direction: column; }
}

/* Live Community Forum — v1.3.0 */
.oe-forum-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px;
  color: var(--oe-muted);
  font-size: .82rem;
  letter-spacing: .035em;
}
.oe-forum-status span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d8b85d;
  box-shadow: 0 0 12px rgba(216,184,93,.65);
}
.oe-forum-status.is-connected span {
  background: #79d5c7;
  box-shadow: 0 0 14px rgba(121,213,199,.8);
}
.oe-community-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.oe-community-card-link:hover,
.oe-community-card-link:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(216,184,93,.6);
  box-shadow: 0 18px 50px rgba(10,8,36,.25);
}
.oe-community-card-link:nth-child(2):hover,
.oe-community-card-link:nth-child(2):focus-visible { transform: translateY(5px); }
.oe-community-counts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.oe-community-counts span {
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.08);
  color: var(--oe-muted);
  font-size: .76rem;
}
.oe-latest-discussions {
  margin-top: 30px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  backdrop-filter: blur(14px);
}
.oe-latest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}
.oe-latest-header h3 { margin: 3px 0 0; font-size: clamp(1.3rem, 3vw, 1.8rem); }
.oe-topic-list { display: grid; gap: 9px; }
.oe-topic-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 14px 16px;
  border-radius: 15px;
  background: rgba(8,8,30,.26);
  color: inherit;
  text-decoration: none;
  transition: background .2s ease, transform .2s ease;
}
.oe-topic-row:hover,
.oe-topic-row:focus-visible { background: rgba(255,255,255,.11); transform: translateX(3px); }
.oe-topic-row strong,
.oe-topic-row small { display: block; }
.oe-topic-row small { margin-top: 4px; color: var(--oe-muted); }
.oe-topic-meta { flex: none; color: var(--oe-muted); font-size: .82rem; }
@media (max-width: 720px) {
  .oe-latest-header,
  .oe-topic-row { align-items: flex-start; flex-direction: column; }
  .oe-community-card-link:nth-child(2):hover,
  .oe-community-card-link:nth-child(2):focus-visible { transform: translateY(-5px); }
}
