/* ==========================================================================
   GLOWKUT — Vanilla CSS Design System (Orkut-style)
   ==========================================================================
   Nenhuma dependência externa. Todas as classes Tailwind foram convertidas
   para CSS puro com custom properties e layout responsivo.
   ========================================================================== */

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background-color: var(--bg-page);
  font-family: Verdana, Arial, Helvetica, sans-serif;
  font-size: 11px;
  line-height: 1.5;
  color: var(--text-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--blue-link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: inherit;
  font-size: inherit;
}

/* --------------------------------------------------------------------------
   1. DESIGN TOKENS (Orkut Color Palette)
   -------------------------------------------------------------------------- */
:root {
  /* Orkut Blues */
  --blue-header:    #BFD7FF;
  --blue-border:    #9CB9EB;
  --blue-section:   #E7F3FF;
  --blue-text:      #2E5EAA;
  --blue-link:      #2E5EAA;
  --blue-link-alt:  #4DA3FF;
  --blue-row-alt:   #F6F9FF;

  /* Orkut Pinks */
  --pink-primary:   #ED008C;
  --pink-dark:      #9D005D;
  --pink-light:     rgba(237, 0, 140, 0.04);

  /* Neutrals */
  --bg-page:        #D4E0EF;
  --bg-white:       #FFFFFF;
  --bg-gray:        #F0F0F0;
  --bg-gray-light:  #F9FAFB;
  --border-gray:    #CCCCCC;
  --border-light:   #E5E7EB;
  --text-primary:   #000000;
  --text-secondary: #666666;
  --text-muted:     #9CA3AF;
  --text-dark:      #333333;
  --text-gray-700:  #374151;

  /* Layout */
  --max-width:      950px;
  --radius-sm:      4px;
  --radius-md:      6px;

  /* Shadows (Orkut/XP era button bevel) */
  --shadow-btn:     2px 2px 0px var(--pink-dark);
  --shadow-card:    0 1px 2px rgba(0, 0, 0, 0.05);

  /* Transitions */
  --transition:     all 0.15s ease;
}

/* --------------------------------------------------------------------------
   2. TYPOGRAPHY
   -------------------------------------------------------------------------- */
.glowkut-logo {
  font-family: 'Fredoka', sans-serif;
  color: var(--pink-primary);
  font-size: 32px;
  letter-spacing: -1.5px;
  display: inline-block;
  filter: drop-shadow(1px 1px 0px white);
  line-height: 1;
  user-select: none;
}

.text-blue { color: var(--blue-text); }
.text-pink { color: var(--pink-primary); }
.text-muted { color: var(--text-muted); }
.text-secondary { color: var(--text-secondary); }
.text-gray-700 { color: var(--text-gray-700); }

.text-xs   { font-size: 9px; }
.text-sm   { font-size: 10px; }
.text-base { font-size: 11px; }
.text-md   { font-size: 12px; }
.text-lg   { font-size: 14px; }
.text-xl   { font-size: 18px; }
.text-2xl  { font-size: 20px; }

.font-bold   { font-weight: bold; }
.font-italic { font-style: italic; }
.uppercase   { text-transform: uppercase; }
.text-center { text-align: center; }
.text-right  { text-align: right; }
.text-justify { text-align: justify; }

/* --------------------------------------------------------------------------
   3. LAYOUT — 12-Column Grid (Orkut style)
   -------------------------------------------------------------------------- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 16px;
}

.layout-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
}

/* --------------------------------------------------------------------------
   4. HEADER (Blue Orkut bar)
   -------------------------------------------------------------------------- */
.site-header {
  background-color: var(--blue-header);
  border-bottom: 1px solid var(--blue-border);
  padding-top: 12px;
}

.header-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.header-left {
  display: flex;
  align-items: flex-end;
  gap: 24px;
}

.header-right {
  padding-bottom: 8px;
  display: none; /* hidden on mobile */
}

/* Navigation tabs */
.tab-nav {
  display: flex;
  overflow-x: auto;
  padding-bottom: 0;
}

.tab-button {
  background-color: var(--blue-header);
  border: 1px solid var(--blue-border);
  border-bottom: none;
  padding: 4px 12px;
  font-size: 10px;
  cursor: pointer;
  color: var(--blue-text);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  margin-right: 2px;
  white-space: nowrap;
  font-family: inherit;
  transition: var(--transition);
}

.tab-button:hover {
  background-color: var(--blue-section);
}

.tab-button.active {
  background-color: var(--bg-page);
  border-bottom: 1px solid var(--bg-page);
  font-weight: bold;
}

/* Search bar */
.search-box {
  display: flex;
  align-items: center;
  gap: 4px;
}

.search-input {
  border: 1px solid var(--blue-border);
  padding: 2px 8px;
  font-size: 10px;
  width: 160px;
  font-family: inherit;
  outline: none;
}

.search-input:focus {
  border-color: var(--blue-text);
  box-shadow: 0 0 0 2px rgba(46, 94, 170, 0.15);
}

.search-btn {
  background: var(--bg-gray);
  border: 1px solid var(--border-gray);
  padding: 2px 8px;
  font-size: 9px;
  font-family: inherit;
  transition: var(--transition);
}

.search-btn:hover {
  background: #E5E5E5;
}

/* --------------------------------------------------------------------------
   5. SIDEBAR
   -------------------------------------------------------------------------- */
.sidebar-left,
.sidebar-right {
  width: 100%;
}

/* Profile card (sidebar left) */
.profile-card {
  background: var(--bg-white);
  border: 1px solid var(--blue-border);
  padding: 4px;
  text-align: center;
  margin-bottom: 10px;
}

.profile-card__image {
  width: 100%;
  aspect-ratio: 1;
  border: 1px solid var(--border-gray);
  margin-bottom: 8px;
  overflow: hidden;
}

.profile-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__title {
  font-size: 10px;
  font-weight: bold;
  color: var(--blue-text);
  line-height: 1.3;
  margin-bottom: 8px;
  padding: 0 4px;
}

/* Navigation groups (sidebar) */
.nav-group {
  margin-bottom: 16px;
}

.nav-group__label {
  font-size: 10px;
  color: var(--text-muted);
  font-weight: bold;
  margin-bottom: 4px;
  margin-left: 4px;
  text-transform: uppercase;
}

.nav-group__list {
  background: var(--bg-white);
  border: 1px solid var(--blue-border);
  padding: 4px 0;
}

.side-link {
  display: block;
  padding: 3px 6px;
  color: var(--blue-text);
  text-decoration: none;
  transition: var(--transition);
}

.side-link:hover {
  background-color: var(--blue-header);
  text-decoration: underline;
}

.side-link--action {
  font-weight: bold;
  font-style: italic;
  color: var(--pink-primary);
}

.side-link--action:hover {
  background-color: rgba(237, 0, 140, 0.06);
}

/* --------------------------------------------------------------------------
   6. CARDS & SECTIONS
   -------------------------------------------------------------------------- */
.card {
  background: var(--bg-white);
  border: 1px solid var(--blue-border);
  padding: 10px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-card);
}

.card--flush {
  padding: 0;
}

.card--no-top-border {
  border-top: none;
}

.section-header {
  background-color: var(--blue-section);
  padding: 4px 8px;
  font-weight: bold;
  color: var(--blue-text);
  border: 1px solid var(--blue-border);
  border-bottom: none;
  font-size: 11px;
}

.section-header--flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* --------------------------------------------------------------------------
   7. COMMUNITY INFO (meta data grid)
   -------------------------------------------------------------------------- */
.community-meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px 16px;
  font-size: 11px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.community-meta__label {
  color: var(--text-muted);
}

.community-meta__owner {
  color: var(--blue-link-alt);
  text-decoration: underline;
  cursor: pointer;
}

.community-meta__owner:hover {
  color: var(--blue-text);
}

/* --------------------------------------------------------------------------
   8. CONTENT BODY
   -------------------------------------------------------------------------- */
.content-body {
  font-size: 11px;
  line-height: 1.6;
  text-align: justify;
}

.content-body p {
  margin-bottom: 12px;
}

.content-body ul {
  margin-top: 8px;
}

.content-body li {
  margin-bottom: 8px;
}

/* --------------------------------------------------------------------------
   9. ANTES / DEPOIS (Comparison)
   -------------------------------------------------------------------------- */
.comparison-grid {
  display: flex;
  flex-direction: column;
}

.comparison-col {
  flex: 1;
  padding: 16px;
}

.comparison-col--before {
  border-bottom: 1px solid var(--blue-section);
}

.comparison-col--after {
  background-color: var(--pink-light);
}

.comparison-title {
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 12px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}

.comparison-list {
  font-size: 10px;
  line-height: 1.4;
  color: var(--text-gray-700);
}

.comparison-list li {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.comparison-list li span {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   10. MOCKUP IMAGE
   -------------------------------------------------------------------------- */
.mockup-card {
  padding: 4px;
}

.mockup-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* --------------------------------------------------------------------------
   11. FORUM ROWS (Module list)
   -------------------------------------------------------------------------- */
.forum-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px;
  border-bottom: 1px solid var(--blue-section);
  transition: background-color 0.1s ease;
}

.forum-row:last-child {
  border-bottom: none;
}

.forum-row:hover {
  background-color: var(--blue-row-alt);
}

.forum-icon {
  width: 32px;
  height: 32px;
  background: var(--bg-gray);
  border: 1px solid var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.forum-title {
  color: var(--blue-text);
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.forum-title:hover {
  text-decoration: underline;
}

.forum-desc {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.4;
}

.forum-cta {
  background-color: var(--blue-section);
  padding: 16px;
  text-align: center;
  border-top: 1px solid var(--blue-border);
}

/* --------------------------------------------------------------------------
   12. DEPOIMENTOS (Testimonials)
   -------------------------------------------------------------------------- */
.depo-row {
  display: flex;
  gap: 12px;
  padding: 8px;
  border-bottom: 1px solid var(--blue-section);
}

.depo-row:last-child {
  border-bottom: none;
}

.depo-row--alt {
  background-color: var(--blue-row-alt);
}

.depo-avatar {
  width: 48px;
  height: 48px;
  background: var(--bg-gray);
  border: 1px solid var(--border-gray);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.depo-name {
  color: var(--blue-text);
  font-weight: bold;
  display: block;
  margin-bottom: 4px;
}

.depo-text {
  font-size: 10px;
  line-height: 1.6;
  font-style: italic;
}

.depo-extra {
  display: none;
  animation: fadeIn 0.3s ease;
}

.depo-extra.is-visible {
  display: block;
}

.depo-footer {
  background-color: var(--blue-section);
  padding: 4px;
  text-align: right;
  border: 1px solid var(--blue-border);
  border-top: none;
}

.depo-toggle {
  font-size: 10px;
  color: var(--blue-text);
  text-decoration: underline;
  padding-right: 8px;
  font-style: italic;
  cursor: pointer;
  background: transparent;
  border: none;
  font-family: inherit;
}

.depo-toggle:hover {
  color: var(--pink-primary);
}

/* --------------------------------------------------------------------------
   13. PROFILE (Dra. Vanessa)
   -------------------------------------------------------------------------- */
.profile-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.profile-photo {
  width: 150px;
  height: 180px;
  background-color: var(--bg-gray);
  border: 1px solid var(--blue-border);
  flex-shrink: 0;
  overflow: hidden;
  margin: 0 auto;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-name {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 12px;
}

.profile-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 16px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-size: 10px;
  color: var(--text-secondary);
}

.stat-icons {
  margin-right: 2px;
}

.profile-bio {
  background-color: var(--blue-row-alt);
  padding: 12px;
  border: 1px solid var(--blue-section);
}

.profile-bio__title {
  color: var(--blue-text);
  font-weight: bold;
  font-style: italic;
}

.profile-bio__content {
  margin-top: 8px;
  font-size: 11px;
  line-height: 1.6;
}

.profile-bio__content p {
  margin-bottom: 12px;
}

.profile-bio__content li {
  margin-bottom: 4px;
}

/* --------------------------------------------------------------------------
   14. VALUE COMPARISON
   -------------------------------------------------------------------------- */
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 10px;
  margin-bottom: 12px;
}

.value-item span {
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   15. CHECKOUT / OFFER BOX
   -------------------------------------------------------------------------- */
.checkout-box {
  background: var(--bg-white);
  border: 1px solid var(--blue-border);
  margin: 20px 0;
}

.checkout-body {
  padding: 32px;
  text-align: center;
}

.checkout-subtitle {
  color: var(--text-dark);
  font-weight: bold;
  font-size: 14px;
  margin-bottom: 16px;
}

.checkout-price {
  color: var(--pink-primary);
  font-weight: bold;
  font-size: 56px;
  line-height: 1;
  margin-bottom: 4px;
}

.checkout-price__currency {
  font-size: 28px;
  vertical-align: top;
}

.checkout-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  font-size: 10px;
  font-weight: bold;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  margin: 24px 0;
}

.checkout-badges__sep {
  color: var(--blue-border);
}

.checkout-security {
  font-size: 9px;
  color: var(--text-muted);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-top: 16px;
}

.checkout-footer {
  background-color: var(--blue-section);
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--blue-text);
  font-weight: bold;
  font-size: 10px;
  border-top: 1px solid var(--blue-border);
}

/* --------------------------------------------------------------------------
   16. BLOCKQUOTE (urgency block)
   -------------------------------------------------------------------------- */
.callout {
  background: var(--bg-gray-light);
  padding: 12px;
  border-left: 4px solid var(--blue-border);
  margin: 12px 0;
}

/* --------------------------------------------------------------------------
   17. GUARANTEE
   -------------------------------------------------------------------------- */
.guarantee-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
}

.guarantee-icon {
  font-size: 36px;
  flex-shrink: 0;
}

.guarantee-title {
  color: var(--blue-text);
  font-weight: bold;
  font-size: 12px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.guarantee-text {
  font-size: 10px;
  color: var(--text-gray-700);
  line-height: 1.6;
  text-align: justify;
}

/* --------------------------------------------------------------------------
   18. FAQ (Accordion)
   -------------------------------------------------------------------------- */
.faq-item {
  border-bottom: 1px solid var(--blue-section);
  overflow: hidden;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item--alt {
  background-color: var(--blue-row-alt);
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
  padding: 10px 8px;
  color: var(--blue-text);
  font-weight: bold;
  font-size: 11px;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
}

.faq-question:hover {
  background-color: rgba(46, 94, 170, 0.04);
}

.faq-question:focus-visible {
  outline: 2px solid var(--blue-text);
  outline-offset: -2px;
}

.faq-arrow {
  font-size: 9px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
  margin-left: 8px;
}

.faq-item[data-open="true"] .faq-arrow {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 8px;
}

.faq-item[data-open="true"] .faq-answer {
  max-height: 300px;
  padding: 0 8px 10px 8px;
}

.faq-answer p {
  font-size: 10px;
  color: var(--text-gray-700);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   19. CTA BUTTON (Orkut/XP bevel style)
   -------------------------------------------------------------------------- */
.btn-cta {
  background: var(--pink-primary);
  color: white;
  padding: 10px 20px;
  border-radius: var(--radius-sm);
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 11px;
  font-family: inherit;
  box-shadow: var(--shadow-btn);
  transition: all 0.1s ease;
  border: none;
  cursor: pointer;
  letter-spacing: 0.02em;
}

.btn-cta:hover {
  background: #D80080;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 3px 3px 0px var(--pink-dark);
}

.btn-cta:active {
  box-shadow: 0px 0px 0px var(--pink-dark);
  transform: translate(2px, 2px);
}

.btn-cta:focus-visible {
  outline: 3px solid rgba(237, 0, 140, 0.4);
  outline-offset: 2px;
}

.btn-cta--lg {
  padding: 12px 48px;
  font-size: 14px;
}

.btn-cta--md {
  padding: 10px 40px;
  font-size: 12px;
}

.cta-wrapper {
  text-align: center;
  margin: 16px 0;
}

/* --------------------------------------------------------------------------
   20. MEMBERS GRID (right sidebar)
   -------------------------------------------------------------------------- */
.members-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 4px;
}

.member {
  text-align: center;
}

.member-avatar {
  width: 50px;
  height: 50px;
  background: var(--bg-gray);
  border: 1px solid var(--border-gray);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.member-name {
  font-size: 9px;
  color: var(--blue-text);
  margin-top: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --------------------------------------------------------------------------
   21. RELATED COMMUNITIES
   -------------------------------------------------------------------------- */
.related-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.related-icon {
  width: 32px;
  height: 32px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.related-icon--pink   { background: #FFF0F5; border-color: #FFD1DC; }
.related-icon--yellow { background: #FFFDE7; border-color: #FFF9C4; }
.related-icon--purple { background: #F3E8FF; border-color: #E9D5FF; }
.related-icon--blue   { background: #EFF6FF; border-color: #DBEAFE; }

.related-link {
  font-size: 10px;
  color: var(--blue-text);
  line-height: 1.3;
}

.related-link:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   22. FOOTER
   -------------------------------------------------------------------------- */
.site-footer {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-muted);
  font-size: 10px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--blue-text);
  text-decoration: underline;
}

.footer-links a:hover {
  color: var(--pink-primary);
}

/* --------------------------------------------------------------------------
   23. ONLINE COUNTER (Orkut authentic detail)
   -------------------------------------------------------------------------- */
.online-counter {
  font-size: 9px;
  color: var(--text-muted);
  text-align: center;
  padding: 4px;
  border-top: 1px solid var(--blue-section);
  margin-top: 8px;
}

.online-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
  margin-right: 3px;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* --------------------------------------------------------------------------
   24. ANIMATIONS
   -------------------------------------------------------------------------- */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* --------------------------------------------------------------------------
   25. RESPONSIVE — Desktop (md: 768px+)
   -------------------------------------------------------------------------- */
@media (min-width: 768px) {
  .header-inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .header-right {
    display: block;
  }

  .layout-grid {
    display: grid;
    grid-template-columns: 2fr 7fr 3fr;
    gap: 16px;
  }

  .community-meta {
    grid-template-columns: 1fr 1fr;
  }

  .community-meta__full {
    grid-column: 1 / -1;
  }

  .comparison-grid {
    flex-direction: row;
  }

  .comparison-col--before {
    border-bottom: none;
    border-right: 1px solid var(--blue-section);
  }

  .profile-section {
    flex-direction: row;
  }

  .profile-photo {
    margin: 0;
  }

  .profile-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

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

/* --------------------------------------------------------------------------
   27. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  body { background: white; }
  .site-header, .sidebar-left, .sidebar-right, .site-footer,
  .btn-cta, .search-box, .tab-nav, .depo-toggle { display: none; }
  .layout-grid { display: block; }
  .card { box-shadow: none; border: 1px solid #ccc; }
}

/* --------------------------------------------------------------------------
   28. FOCUS STYLES (Accessibility)
   -------------------------------------------------------------------------- */
:focus-visible {
  outline: 2px solid var(--blue-text);
  outline-offset: 2px;
}

a:focus-visible {
  outline: 2px solid var(--blue-text);
  outline-offset: 1px;
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   29. UTILITY: VISUALLY HIDDEN (screen reader only)
   -------------------------------------------------------------------------- */
.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;
}

/* --------------------------------------------------------------------------
   30. SPACING UTILITIES
   -------------------------------------------------------------------------- */
.mt-0  { margin-top: 0; }
.mt-2  { margin-top: 8px; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mb-0  { margin-bottom: 0; }
.mb-2  { margin-bottom: 8px; }
.mb-4  { margin-bottom: 16px; }
.mb-6  { margin-bottom: 24px; }
.mb-10 { margin-bottom: 40px; }
.p-4   { padding: 16px; }
.p-6   { padding: 24px; }
