/* ═══════════════ LOCAL FONTS ═══════════════ */
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('baloo2-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Baloo 2';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('baloo2-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('nunito-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Nunito';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('nunito-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ═══════════════ RESET & VARIABLES ═══════════════ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0f1117;
  --bg-secondary: #13161f;
  --bg-card: #1a1d28;
  --text-primary: #f0f0f0;
  --text-secondary: #b8b8b8;
  --accent: #e8a020;
  --accent-light: #1a1500;
  --hero-gradient-1: #0f1117;
  --hero-gradient-2: #111420;
  --hero-gradient-3: #141828;
  --card-shadow: rgba(0,0,0,0.6);
  --nav-bg: rgba(15,17,23,0.97);
  --section-alt: #111420;
  --border-color: #2a2d3a;
  --btn-primary: #e8a020;
  --btn-hover: #d09018;
  --footer-bg: #0f1117;
  --footer-text: #888888;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
}

/* ═══════════════ VIDEO OVERLAY ═══════════════ */
#video-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 1.8s ease;
}

#video-overlay.fading { opacity: 0; pointer-events: none; }

#video-overlay video {
  width: 45%;
  height: 45%;
  object-fit: cover;
  border-radius: 10px;
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  mask-image: radial-gradient(white, black);
}

#video-overlay video.fading {
  opacity: 0;
  transition: opacity 4s ease;
}

@media (max-width: 768px) {
  #video-overlay video {
    position: absolute;
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
  }
}

#video-text {
  position: absolute;
  top: 80%;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 4s ease;
  pointer-events: none;
}

#video-text.visible {
  opacity: 1;
}

#video-subtext {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: rgba(255, 255, 255, 0.9);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transition: opacity 4s ease;
  pointer-events: none;
}

#video-subtext.visible {
  opacity: 1;
}

/* ═══════════════ MAIN CONTENT FADE-IN ═══════════════ */
.js #main-content {
  opacity: 0;
  transition: opacity 2.5s ease;
}

.js #main-content.visible {
  opacity: 1;
}

/* ═══════════════ NAVIGATION ═══════════════ */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2rem;
  transition: background 2.2s ease, border-color 2.2s ease;
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

@keyframes logo-pulse {
  0%, 100% { text-shadow: 0 0 0px transparent; }
  50% { text-shadow: 0 0 12px rgba(251,146,60,0.5); }
}

.logo {
  font-family: 'Nunito', sans-serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: transform 0.25s ease, color 0.25s ease, text-shadow 0.25s ease;
  display: inline-block;
  cursor: pointer;
  animation: logo-pulse 2.8s ease-in-out infinite;
}

.logo:hover,
.logo:focus-visible {
  transform: scale(1.1);
  color: var(--accent);
  text-shadow: none;
  animation: none;
}

.logo:hover span,
.logo:focus-visible span { color: #fff; }

.logo span {
  color: var(--accent);
  transition: color 0.25s ease;
}

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}
.nav-links a:hover { color: var(--accent); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease, background 2.2s ease;
}
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  background: var(--btn-primary);
  color: #fff !important;
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  transition: background 0.3s ease, transform 0.2s ease;
}
.nav-cta:hover { background: var(--btn-hover); transform: scale(1.05); }
.nav-cta::after { display: none !important; }

.mobile-menu { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu span {
  display: block; width: 26px; height: 3px; margin: 5px 0;
  background: var(--text-primary); border-radius: 3px;
  transition: background 2.2s ease;
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, var(--hero-gradient-1) 0%, var(--hero-gradient-2) 50%, var(--hero-gradient-3) 100%);
  transition: background 2.2s ease;
}


.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 2rem;
  position: relative;
  z-index: 2;
}

.hero-kicker {
  display: inline-block;
  margin-bottom: 1rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.js .hero-content {
  opacity: 0;
  transform: translateY(40px);
}

.js .hero-content.visible {
  animation: hero-in 2s ease forwards;
}

@keyframes hero-in {
  to { opacity: 1; transform: translateY(0); }
}


.hero h1 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(2.5rem, 6vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  transition: color 2.2s ease;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto 2.5rem;
  transition: color 2.2s ease;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; margin-top: 2rem; }

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
  border: 1px solid rgba(255, 140, 0, 0.2);
  border-radius: 12px;
  background: rgba(255, 140, 0, 0.04);
  padding: 1.2rem 2rem;
  width: fit-content;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 2rem;
}

.hero-stat-value {
  font-family: 'Baloo 2', cursive;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.1;
}

.hero-stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-secondary);
  margin-top: 0.25rem;
}

.hero-stat-divider {
  width: 1px;
  height: 2.5rem;
  background: rgba(255, 140, 0, 0.2);
  flex-shrink: 0;
}

@media (max-width: 480px) {
  .hero-stats { padding: 0.7rem 0.8rem; gap: 0; }
  .hero-stat { padding: 0 0.8rem; }
  .hero-stat-value { font-size: 1.25rem; }
  .hero-stat-label { font-size: 0.62rem; }
  .hero-stat-divider { height: 1.8rem; }
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: var(--btn-primary);
  color: #fff;
  box-shadow: 0 4px 20px var(--card-shadow);
}
.btn-primary:hover { background: var(--btn-hover); transform: translateY(-2px); box-shadow: 0 8px 30px var(--card-shadow); }

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border: 2px solid var(--border-color);
}
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bob 2.5s ease-in-out infinite;
}

.scroll-hint svg {
  width: 28px;
  height: 28px;
  stroke: var(--text-secondary);
  transition: stroke 2.2s ease;
}

@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* ═══════════════ SECTIONS ═══════════════ */
section { padding: 6rem 2rem; }

.section-title {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  text-align: center;
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: color 2.2s ease;
}

.section-sub {
  text-align: center;
  color: var(--text-secondary);
  max-width: 550px;
  margin: 0 auto 3.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: color 2.2s ease;
}

/* ═══════════════ WHY US ═══════════════ */
.why-section { background: var(--section-alt); transition: background 2.2s ease; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-card);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: 0 4px 24px var(--card-shadow);
  border: 1px solid var(--border-color);
  transition: all 0.4s ease, background 2.2s ease, border-color 2.2s ease, box-shadow 2.2s ease;
  position: relative;
  overflow: hidden;
}

.feature-card:hover { transform: translateY(-6px); }

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(255, 140, 0, 0.07);
  border: 1px solid rgba(255, 140, 0, 0.25);
  color: var(--accent);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.feature-icon svg {
  width: 28px;
  height: 28px;
}

.feature-card:hover .feature-icon {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.5);
}

.feature-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.3rem;
  margin-bottom: 0.7rem;
  color: var(--text-primary);
  transition: color 2.2s ease;
}

.feature-card p {
  color: var(--text-secondary);
  line-height: 1.65;
  font-size: 0.95rem;
  transition: color 2.2s ease;
}

.feature-card p + p {
  margin-top: 1rem;
}

.feature-card a,
.topic-card a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.feature-card a:hover,
.topic-card a:hover {
  text-decoration: underline;
}

/* ═══════════════ HOW IT WORKS ═══════════════ */
.section-label {
  display: block;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.steps-container {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  box-shadow: 0 4px 24px var(--card-shadow);
  transition: border-color 0.3s ease, background 2.2s ease, box-shadow 2.2s ease;
}

.step:hover {
  border-color: rgba(255, 140, 0, 0.35);
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  background: rgba(255, 140, 0, 0.07);
  border: 1px solid rgba(255, 140, 0, 0.25);
  color: var(--accent);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.step-icon svg {
  width: 28px;
  height: 28px;
}

.step:hover .step-icon {
  background: rgba(255, 140, 0, 0.12);
  border-color: rgba(255, 140, 0, 0.5);
}

.step h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
  transition: color 2.2s ease;
}

.step p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.65;
  transition: color 2.2s ease;
}



/* ═══════════════ FAQ ═══════════════ */
.faq-section { background: var(--section-alt); transition: background 2.2s ease; }

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.3s ease, background 2.2s ease;
}

.faq-item[open] {
  border-color: rgba(255, 140, 0, 0.35);
}

.faq-question {
  list-style: none;
  padding: 1.4rem 1.8rem;
  cursor: pointer;
  font-family: 'Baloo 2', cursive;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: color 0.3s ease;
  user-select: none;
}

.faq-question::-webkit-details-marker { display: none; }

.faq-question::after {
  content: '+';
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-item[open] .faq-question {
  color: var(--accent);
}

.faq-answer {
  padding: 0 1.8rem 1.4rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-color);
  padding-top: 1.1rem;
  transition: color 2.2s ease;
}

/* ═══════════════ CTA ═══════════════ */
.cta-section {
  text-align: center;
  background: linear-gradient(160deg, var(--hero-gradient-2), var(--hero-gradient-3));
  border-radius: 0;
  transition: background 2.2s ease;
}

.cta-section h2 {
  font-family: 'Baloo 2', cursive;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  color: var(--text-primary);
  transition: color 2.2s ease;
}

.cta-section p {
  color: var(--text-secondary);
  max-width: 500px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  line-height: 1.7;
  transition: color 2.2s ease;
}

/* ═══════════════ SUBPAGES ═══════════════ */
.subpage-hero {
  min-height: auto;
  padding-top: 9rem;
  padding-bottom: 5rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.breadcrumbs a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.subpage-lead {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.topic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

.topic-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 24px var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.topic-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.35);
}

.topic-card h3 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}

.topic-card p,
.topic-card li {
  color: var(--text-secondary);
  line-height: 1.7;
}

.topic-card ul {
  padding-left: 1.1rem;
}

.inline-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.inline-links a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 700;
}

.inline-links a:hover {
  text-decoration: underline;
}

.link-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.link-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 18px;
  padding: 1.75rem;
  text-decoration: none;
  box-shadow: 0 4px 24px var(--card-shadow);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 140, 0, 0.35);
}

.link-card strong {
  display: block;
  margin-bottom: 0.5rem;
  font-family: 'Baloo 2', cursive;
  font-size: 1.2rem;
  color: var(--text-primary);
}

.link-card span {
  color: var(--text-secondary);
  line-height: 1.6;
}


/* ═══════════════ FOOTER ═══════════════ */
footer {
  background: var(--footer-bg);
  color: var(--footer-text);
  text-align: center;
  padding: 3rem 2rem;
  transition: background 2.2s ease, color 2.2s ease;
}

footer .footer-logo {
  font-family: 'Baloo 2', cursive;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.5rem;
}

footer p { font-size: 0.9rem; line-height: 1.7; }
footer a { color: var(--accent); text-decoration: none; transition: color 2.2s ease; }
footer a:hover { text-decoration: underline; }

/* ═══════════════ SCROLL ANIMATIONS ═══════════════ */
.fade-up {
  opacity: 1;
  transform: translateY(0);
}

.js .fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.js .fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-break { display: none; }

/* ═══════════════ CONTACT OPTIONS ═══════════════ */
.contact-options {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.contact-option {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  text-decoration: none;
  min-width: 160px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.contact-option:hover { border-color: var(--accent); transform: translateY(-4px); }
.contact-option svg { width: 28px; height: 28px; color: var(--accent); }
.contact-option-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-secondary); }
.contact-option-value { font-size: 0.9rem; font-weight: 600; color: var(--text-primary); }

/* ═══════════════ RESPONSIVE ═══════════════ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu { display: block; }
  .nav-links.nav-open {
    display: flex;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    padding: 1rem 2rem 1.5rem;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--border-color);
  }
  .nav-links.nav-open a {
    display: block;
    padding: 0.9rem 0;
  }
  .nav-links.nav-open .nav-cta {
    display: block;
    text-align: center;
  }
  .hero h1 { font-size: 2.2rem; }
  .hero p { font-size: 1.05rem; }
  .mobile-break { display: block; }
  #video-text { top: 65%; }
  .features-grid { grid-template-columns: 1fr; max-width: 400px; }
  .topic-grid,
  .link-grid { grid-template-columns: 1fr; max-width: 400px; }
  .steps-container { flex-direction: column; align-items: center; }
  .step { max-width: 360px; width: 100%; }
}

/* ═══════════════ FOCUS-VISIBLE (KEYBOARD NAVIGATION) ═══════════════ */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 4px;
}
.logo:focus-visible {
  outline-offset: 6px;
}
