:root {
  --bg: #f7efe9;
  --bg-alt: #fff9f5;
  --panel: rgba(255, 255, 255, 0.74);
  --panel-strong: rgba(255, 255, 255, 0.92);
  --line: rgba(58, 38, 33, 0.12);
  --ink: #1d1614;
  --ink-soft: #634d47;
  --accent: #d98e63;
  --accent-strong: #c86e45;
  --accent-soft: #efb895;
  --accent-pale: #f4ddce;
  --deep: #241816;
  --deep-2: #3a2621;
  --gold: #cf9d62;
  --success: #52d28a;
  --shadow-lg: 0 30px 80px rgba(46, 28, 24, 0.18);
  --shadow-md: 0 18px 45px rgba(43, 23, 16, 0.12);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --font-title: "Montserrat", system-ui, sans-serif;
  --font-body: "Open Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(239, 184, 149, 0.35), transparent 30%),
    radial-gradient(circle at bottom right, rgba(216, 142, 99, 0.18), transparent 24%),
    linear-gradient(180deg, #fbf5f0 0%, #f7efe9 46%, #fffaf7 100%);
  min-height: 100vh;
  overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
button { cursor: pointer; }

.page-glow {
  position: fixed;
  width: 26rem;
  height: 26rem;
  filter: blur(18px);
  opacity: .36;
  border-radius: 50%;
  z-index: -2;
  pointer-events: none;
}
.glow-one {
  top: -10rem;
  left: -8rem;
  background: radial-gradient(circle, rgba(239,184,149,.95) 0%, rgba(239,184,149,.14) 58%, transparent 74%);
}
.glow-two {
  right: -10rem;
  top: 20rem;
  background: radial-gradient(circle, rgba(216,142,99,.75) 0%, rgba(216,142,99,.14) 56%, transparent 76%);
}
.page-grid {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -3;
  background-image:
    linear-gradient(rgba(58, 38, 33, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58, 38, 33, .03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.35), transparent 85%);
}

.container {
  width: min(1140px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  padding: 18px 0;
  transition: .28s ease;
  backdrop-filter: saturate(1.2) blur(10px);
}
.site-header.scrolled {
  background: rgba(255, 249, 245, .72);
  box-shadow: 0 12px 32px rgba(47, 27, 19, .08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}
.brand-mark {
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
  border-radius: 20px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: var(--shadow-md);
  display: grid;
  place-items: center;
  overflow: hidden;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; padding: 5px; background: rgba(255,255,255,.88); }
.brand-copy { display: grid; gap: 3px; min-width: 0; }
.brand-copy strong {
  font-family: var(--font-title);
  font-size: 1.08rem;
  font-weight: 800;
  letter-spacing: -.03em;
}
.brand-copy small {
  color: var(--ink-soft);
  font-size: .9rem;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.main-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--deep-2);
  transition: .2s ease;
}
.main-nav a:hover {
  background: rgba(217, 142, 99, .12);
  transform: translateY(-1px);
}
.nav-social {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--deep);
  color: #fff !important;
}
.nav-social svg { width: 18px; fill: currentColor; }

.hero {
  padding: 42px 0 72px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 42px;
  align-items: center;
}
.hero-copy {
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: 0 10px 28px rgba(42, 24, 18, .08);
  color: var(--ink-soft);
  font-weight: 700;
  font-size: .95rem;
}
.live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent-strong);
  box-shadow: 0 0 0 0 rgba(200, 110, 69, .65);
  animation: pulse 1.7s infinite;
}
.hero h1 {
  font-family: var(--font-title);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 4.65rem);
  line-height: .98;
  letter-spacing: -.04em;
  margin: 22px 0 16px;
}
.hero h1 span {
  display: inline-block;
  color: var(--accent-strong);
}
.slogan {
  font-family: var(--font-title);
  font-size: clamp(1.05rem, 2.1vw, 1.35rem);
  line-height: 1.6;
  color: var(--deep-2);
  margin: 0 0 14px;
  max-width: 58ch;
}
.hero-text {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.85;
  max-width: 62ch;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
  text-align: center;
}
.button:hover { transform: translateY(-2px); }
.button:active { transform: translateY(0); }
.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--deep) 0%, var(--deep-2) 100%);
  box-shadow: 0 18px 36px rgba(36, 24, 22, .22);
}
.button-primary:hover {
  box-shadow: 0 24px 48px rgba(36, 24, 22, .28);
}
.button-secondary {
  color: var(--deep);
  background: rgba(255,255,255,.8);
  border-color: rgba(29,22,20,.08);
  box-shadow: 0 10px 26px rgba(43, 24, 18, .08);
}
.button-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
}
.button svg { width: 18px; stroke: currentColor; fill: currentColor; }
.signal-note {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  color: var(--ink-soft);
  font-weight: 700;
}
.signal-bars {
  display: inline-flex;
  align-items: end;
  gap: 4px;
  height: 18px;
}
.signal-bars i,
.player-wave i,
.mini-wave b {
  display: inline-block;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent-soft), var(--accent-strong));
  animation: equalize 1.15s ease-in-out infinite alternate;
}
.signal-bars i:nth-child(1) { height: 8px; }
.signal-bars i:nth-child(2) { height: 14px; animation-delay: .1s; }
.signal-bars i:nth-child(3) { height: 18px; animation-delay: .2s; }
.signal-bars i:nth-child(4) { height: 12px; animation-delay: .32s; }

.hero-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
}
.logo-panel {
  position: absolute;
  top: 0;
  right: 18px;
  width: min(280px, 48vw);
  padding: 16px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255,255,255,.7), rgba(255,255,255,.42));
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}
.logo-panel-inner {
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  padding: 10px;
}
.logo-panel img { width: 100%; aspect-ratio: 1 / 1.12; object-fit: contain; background: rgba(255,255,255,.95); }
.broadcast-card {
  position: relative;
  width: min(100%, 470px);
  margin: 90px 0 0 auto;
  overflow: hidden;
  border-radius: 34px;
  transform: rotate(1.2deg);
  background: var(--deep);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 35px 84px rgba(31, 18, 16, .28);
}
.broadcast-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(20,14,12,.82) 0, transparent 46%);
}
.broadcast-card img {
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: cover;
}
.broadcast-card figcaption {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 2;
  display: grid;
  gap: 12px;
  color: #fff;
}
.on-air-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.16);
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .04em;
}
.on-air-badge i,
.player-live i {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 0 rgba(82,210,138,.64);
  animation: pulseGreen 1.7s infinite;
}
.broadcast-card strong { font-family: var(--font-title); font-size: 1.2rem; }
.broadcast-card small { color: rgba(255,255,255,.82); }
.mini-wave { display: inline-flex; gap: 4px; height: 20px; }
.mini-wave b:nth-child(1) { height: 10px; }
.mini-wave b:nth-child(2) { height: 16px; animation-delay: .1s; }
.mini-wave b:nth-child(3) { height: 12px; animation-delay: .18s; }
.mini-wave b:nth-child(4) { height: 18px; animation-delay: .26s; }
.mini-wave b:nth-child(5) { height: 14px; animation-delay: .36s; }
.mini-wave b:nth-child(6) { height: 16px; animation-delay: .42s; }
.mini-wave b:nth-child(7) { height: 8px; animation-delay: .5s; }
.floating-tag {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: 0 16px 36px rgba(45, 25, 18, .1);
  font-weight: 800;
  color: var(--deep-2);
  backdrop-filter: blur(12px);
}
.tag-top {
  top: 182px;
  left: 0;
}
.tag-bottom {
  right: -10px;
  bottom: 18px;
}

.welcome-section {
  padding: 20px 0 120px;
}
.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 34px;
}
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(217, 142, 99, .12);
  color: var(--accent-strong);
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-size: .8rem;
}
.section-heading h2 {
  margin: 0 0 10px;
  font-family: var(--font-title);
  font-size: clamp(1.9rem, 3.4vw, 3rem);
  letter-spacing: -.03em;
}
.section-heading p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.8;
}
.welcome-card {
  display: grid;
  grid-template-columns: 108px 1fr;
  gap: 28px;
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(255,255,255,.9), rgba(255,255,255,.72));
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}
.welcome-symbol {
  width: 84px;
  height: 84px;
  border-radius: 24px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, var(--accent-pale), rgba(217, 142, 99, .25));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.welcome-symbol svg {
  width: 42px;
  stroke: var(--accent-strong);
  stroke-width: 2.2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.welcome-content h3 {
  margin: 0 0 16px;
  font-family: var(--font-title);
  font-size: clamp(1.4rem, 2.3vw, 2rem);
  letter-spacing: -.03em;
}
.welcome-content p {
  margin: 0 0 16px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  line-height: 1.95;
}
.welcome-content blockquote {
  margin: 24px 0 0;
  padding: 20px 22px;
  border-radius: 22px;
  border: 1px solid rgba(29,22,20,.08);
  background: linear-gradient(135deg, rgba(244, 221, 206, .65), rgba(255,255,255,.84));
  display: grid;
  gap: 10px;
}
.welcome-content blockquote span {
  color: var(--ink-soft);
}
.welcome-content blockquote strong {
  font-family: var(--font-title);
  font-size: 1.06rem;
}

.site-footer {
  padding: 0 0 132px;
}
.footer-inner {
  display: grid;
  gap: 16px;
  justify-items: center;
  text-align: center;
  color: var(--ink-soft);
}
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: 0 10px 28px rgba(47,27,19,.08);
}
.footer-brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: rgba(255,255,255,.92);
  padding: 4px;
}
.footer-brand strong {
  display: block;
  font-family: var(--font-title);
  color: var(--deep);
}
.footer-brand span { font-size: .92rem; }
.site-footer a { font-weight: 800; color: var(--accent-strong); }

.floating-player {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 25;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 24px;
  background: rgba(36, 24, 22, .92);
  color: #fff;
  box-shadow: 0 24px 58px rgba(28, 17, 15, .35);
  border: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.player-play {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 18px;
  display: grid;
  place-items: center;
  color: var(--deep);
  background: linear-gradient(180deg, #fff6ef 0%, #f1ddce 100%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.6);
}
.player-play svg { width: 24px; fill: currentColor; }
.player-play .icon-pause { display: none; }
.floating-player.is-playing .player-play .icon-play { display: none; }
.floating-player.is-playing .player-play .icon-pause { display: block; }
.floating-player.is-connecting .player-play { opacity: .72; }
.player-meta {
  min-width: 0;
  display: grid;
  gap: 5px;
}
.player-meta strong {
  font-family: var(--font-title);
  letter-spacing: -.02em;
}
.player-meta small,
.player-status { color: rgba(255,255,255,.72); font-size: .92rem; }
.player-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.player-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .04em;
  font-size: .78rem;
}
.player-wave {
  display: inline-flex;
  align-items: end;
  gap: 5px;
  height: 22px;
}
.player-wave i:nth-child(1) { height: 8px; }
.player-wave i:nth-child(2) { height: 16px; animation-delay: .06s; }
.player-wave i:nth-child(3) { height: 12px; animation-delay: .16s; }
.player-wave i:nth-child(4) { height: 18px; animation-delay: .24s; }
.player-wave i:nth-child(5) { height: 10px; animation-delay: .34s; }
.player-wave i:nth-child(6) { height: 16px; animation-delay: .42s; }
.player-wave i:nth-child(7) { height: 12px; animation-delay: .52s; }
.player-wave i:nth-child(8) { height: 8px; animation-delay: .64s; }
.volume-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.volume-control svg {
  width: 20px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}
input[type="range"] {
  width: 108px;
  accent-color: var(--accent-soft);
}

.stream-fallback {
  position: fixed;
  right: 20px;
  bottom: 104px;
  z-index: 24;
  max-width: min(420px, calc(100vw - 40px));
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255, 249, 245, .96);
  border: 1px solid rgba(29,22,20,.08);
  box-shadow: 0 18px 44px rgba(42, 24, 18, .16);
  display: none;
  gap: 14px;
  align-items: center;
}
.stream-fallback.is-visible {
  display: grid;
  grid-template-columns: 1fr auto;
}
.stream-fallback strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--font-title);
}
.stream-fallback span {
  display: block;
  color: var(--ink-soft);
  font-size: .95rem;
  line-height: 1.5;
}
.stream-fallback a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--deep);
  color: #fff;
  font-weight: 800;
  white-space: nowrap;
}

.welcome-modal {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: none;
}
.welcome-modal.is-visible { display: grid; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(25, 16, 14, .5);
  backdrop-filter: blur(8px);
}
.modal-card {
  position: relative;
  z-index: 1;
  width: min(92vw, 440px);
  margin: auto;
  padding: 30px 28px 24px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(255,249,245,.95));
  box-shadow: 0 30px 80px rgba(24, 15, 13, .36);
  text-align: center;
  border: 1px solid rgba(29,22,20,.08);
}
.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(36,24,22,.06);
  color: var(--deep);
  font-size: 1.6rem;
  line-height: 1;
}
.modal-logo {
  position: relative;
  width: 118px;
  margin: 0 auto 18px;
}
.modal-logo img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: contain;
  border-radius: 30px;
  background: rgba(255,255,255,.96);
  padding: 8px;
  box-shadow: 0 18px 40px rgba(43, 24, 18, .12);
}
.modal-pulse {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  border: 1px solid rgba(217,142,99,.35);
  animation: pulseRing 2.2s infinite;
}
.modal-kicker {
  color: var(--accent-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .77rem;
}
.modal-card h2 {
  margin: 10px 0 10px;
  font-family: var(--font-title);
  font-size: 1.85rem;
  letter-spacing: -.03em;
}
.modal-card p {
  margin: 0 0 18px;
  color: var(--ink-soft);
  line-height: 1.7;
}
.modal-play { width: 100%; }
.modal-later {
  margin-top: 12px;
  border: none;
  background: transparent;
  color: var(--ink-soft);
  font-weight: 700;
}
.modal-feedback {
  min-height: 22px;
  margin-top: 12px !important;
  color: var(--accent-strong) !important;
  font-size: .92rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .75s ease, transform .75s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(200, 110, 69, .62); }
  70% { box-shadow: 0 0 0 12px rgba(200, 110, 69, 0); }
  100% { box-shadow: 0 0 0 0 rgba(200, 110, 69, 0); }
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(82,210,138,.64); }
  70% { box-shadow: 0 0 0 10px rgba(82,210,138,0); }
  100% { box-shadow: 0 0 0 0 rgba(82,210,138,0); }
}
@keyframes equalize {
  from { transform: scaleY(.55); opacity: .72; }
  to { transform: scaleY(1.05); opacity: 1; }
}
@keyframes pulseRing {
  0% { transform: scale(.96); opacity: .6; }
  70% { transform: scale(1.08); opacity: 0; }
  100% { transform: scale(.96); opacity: 0; }
}

@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: auto; padding-top: 16px; }
  .logo-panel { position: relative; right: auto; width: min(260px, 74vw); margin: 0 auto 12px; }
  .broadcast-card { margin: 0 auto; transform: rotate(0); }
  .tag-top { top: auto; left: 14px; bottom: 118px; }
  .tag-bottom { right: 14px; bottom: -14px; }
}
@media (max-width: 760px) {
  .site-header { padding: 14px 0; }
  .header-inner,
  .main-nav { gap: 10px; }
  .main-nav { justify-content: flex-start; }
  .hero { padding: 24px 0 60px; }
  .welcome-card { grid-template-columns: 1fr; }
  .welcome-symbol { width: 76px; height: 76px; }
  .floating-player {
    grid-template-columns: auto 1fr;
    gap: 12px;
    padding: 14px;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .player-wave,
  .volume-control { grid-column: 2 / -1; }
  .volume-control { justify-content: flex-start; }
  .stream-fallback {
    left: 12px;
    right: 12px;
    max-width: none;
    bottom: calc(108px + env(safe-area-inset-bottom));
  }
  .stream-fallback.is-visible { grid-template-columns: 1fr; }
  .site-footer { padding-bottom: 170px; }
}
@media (max-width: 540px) {
  .container { width: min(100% - 22px, 1140px); }
  .brand-mark { width: 56px; height: 56px; flex-basis: 56px; }
  .brand-copy strong { font-size: 1rem; }
  .brand-copy small { font-size: .82rem; }
  .hero h1 { margin-top: 18px; }
  .slogan { font-size: 1rem; }
  .hero-text, .welcome-content p { font-size: .98rem; }
  .button { width: 100%; }
  .button-secondary { min-height: 52px; }
  .tag-top, .tag-bottom {
    position: static;
    width: fit-content;
    margin: 10px auto 0;
  }
  .modal-card { padding: 28px 20px 20px; }
}

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


/* Ajustes finos para que el logo no se vea cortado */
.brand-mark, .footer-brand img, .modal-logo img, .logo-panel-inner { box-sizing: border-box; }
