:root {
  --accent: #f0b90c;
  --text: #ffffff;
  --muted: rgba(255,255,255,0.72);
  --panel: rgba(8, 12, 16, 0.92);
  --panel-soft: rgba(255,255,255,0.06);
  --line: rgba(255,255,255,0.18);
  --shadow: 0 30px 80px rgba(0,0,0,0.4);
}

* { box-sizing: border-box; }
html, body { min-height: 100%; }
body {
  margin: 0;
  color: var(--text);
  background: #0b0f12;
  font-family: 'Inter', system-ui, sans-serif;
  overflow: hidden;
}

a { color: inherit; text-decoration: none; }
button {
  font: inherit;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
}

.page-shell {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #0b1014;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 9;
  pointer-events: none;
  background:
    linear-gradient(rgba(4, 7, 10, 0.74), rgba(4, 7, 10, 0.74)) top/100% 16px no-repeat,
    linear-gradient(rgba(4, 7, 10, 0.74), rgba(4, 7, 10, 0.74)) bottom/100% 16px no-repeat,
    linear-gradient(rgba(4, 7, 10, 0.74), rgba(4, 7, 10, 0.74)) left/16px 100% no-repeat,
    linear-gradient(rgba(4, 7, 10, 0.74), rgba(4, 7, 10, 0.74)) right/16px 100% no-repeat;
  transition: background 0.3s ease;
}

.page-shell.has-overlay::before {
  background:
    linear-gradient(rgba(1, 3, 5, 0.9), rgba(1, 3, 5, 0.9)) top/100% 16px no-repeat,
    linear-gradient(rgba(1, 3, 5, 0.9), rgba(1, 3, 5, 0.9)) bottom/100% 16px no-repeat,
    linear-gradient(rgba(1, 3, 5, 0.9), rgba(1, 3, 5, 0.9)) left/16px 100% no-repeat,
    linear-gradient(rgba(1, 3, 5, 0.9), rgba(1, 3, 5, 0.9)) right/16px 100% no-repeat;
}

.kenburnsy {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #101619;
}

.kenburnsy::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14,11,10,0.78) 0%, rgba(11,14,16,0.62) 21%, rgba(9,13,16,0.36) 46%, rgba(8,12,16,0.62) 100%);
}

.slide {
  position: absolute;
  inset: -2%;
  opacity: 0;
  background-size: cover;
  background-position: center center;
  transform: scale(1.015) translate3d(0, 0, 0);
  transition:
    opacity 1.1s ease,
    transform 11s linear;
}

.slide.is-active {
  opacity: 1;
  transform: scale(1.085) translate3d(0, 0, 0);
}

.slide.is-exiting {
  opacity: 0;
  transform: scale(1.11) translate3d(0, 0, 0);
}

.bg-shadow,
.bg-shadow::before,
.bg-shadow::after,
.noise,
.rain-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.bg-shadow {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(4, 7, 10, 0.28) 0%, rgba(4, 7, 10, 0.14) 26%, rgba(4, 7, 10, 0.28) 100%),
    linear-gradient(90deg, rgba(2, 4, 7, 0.54) 0%, rgba(2, 4, 7, 0.16) 22%, rgba(2, 4, 7, 0.08) 52%, rgba(2, 4, 7, 0.34) 100%);
}

.bg-shadow::before {
  content: "";
  background:
    radial-gradient(circle at 57% 28%, rgba(71, 97, 107, 0.24), transparent 24%),
    radial-gradient(circle at 48% 32%, rgba(103, 127, 139, 0.12), transparent 30%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.04), transparent 42%);
}

.bg-shadow::after {
  content: none;
}

.noise {
  z-index: 5;
  opacity: 0.035;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.52) 0 0.5px, transparent 0.65px),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,.44) 0 0.55px, transparent 0.7px);
  background-size: 12px 12px, 18px 18px;
}

.rain-canvas {
  z-index: 4;
  width: 100%;
  height: 100%;
  opacity: 0.78;
  transform: translateZ(0);
}

.page-shell.has-overlay .rain-canvas,
.page-shell.has-overlay .noise {
  opacity: 0.22;
}

.left-nav {
  position: fixed;
  z-index: 60;
  left: 26px;
  top: 24px;
  width: 168px;
}

.left-nav nav {
  display: grid;
  gap: 18px;
  padding-left: 16px;
}

.nav-item {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  column-gap: 14px;
  align-items: start;
  width: 100%;
  min-height: 60px;
  padding: 0;
  text-align: left;
  color: rgba(255,255,255,0.94);
  transition: color 0.25s ease;
}

.nav-item::before {
  content: "";
  position: absolute;
  left: -16px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--accent);
  opacity: 0;
  transform: scaleY(0.16);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item::after {
  content: "";
  position: absolute;
  left: 46px;
  top: 3px;
  bottom: 4px;
  width: 1px;
  background: rgba(255,255,255,0.92);
  opacity: 0;
  transform: scaleY(0.16);
  transform-origin: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.nav-item__index {
  align-self: start;
  font-family: 'Oswald', 'Roboto Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

.nav-item__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: start;
  min-height: 60px;
  padding-top: 2px;
}

.nav-item__content strong,
.nav-item__content em {
  display: block;
  font-family: 'Oswald', 'Roboto Condensed', sans-serif;
  font-style: normal;
  text-align: left;
}

.nav-item__content strong {
  margin-top: 0;
  font-size: 1.16rem;
  font-weight: 500;
  line-height: 0.92;
  letter-spacing: 0.01em;
}

.nav-item__content em {
  margin-top: 7px;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.95);
  transition: color 0.25s ease;
}

.nav-item:hover::after,
.nav-item:focus-visible::after,
.nav-item--active::after {
  opacity: 1;
  transform: scaleY(1);
}

.nav-item--active::before {
  opacity: 1;
  transform: scaleY(1);
}

.nav-item:hover .nav-item__index,
.nav-item:hover .nav-item__content em,
.nav-item:focus-visible .nav-item__index,
.nav-item:focus-visible .nav-item__content em,
.nav-item--active .nav-item__index,
.nav-item--active .nav-item__content em,
.hero__title,
.hero__copy strong,
.overlay-panel__index {
  color: var(--accent);
}

.social-bar {
  position: fixed;
  right: 24px;
  top: 24px;
  z-index: 55;
  display: flex;
  gap: 8px;
}

.social-bar a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.28);
  border-radius: 12px;
  background: rgba(255,255,255,0.94);
  color: #1b1f24;
  font-family: 'Oswald', sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1;
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.social-bar a:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.5);
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(0,0,0,0.28);
}

.mobile-nav-toggle {
  display: none;
  position: fixed;
  right: 20px;
  top: 20px;
  z-index: 72;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.34);
  background: rgba(7, 10, 14, 0.82);
  box-shadow: 0 18px 28px rgba(0,0,0,0.24);
  align-items: center;
  justify-content: center;
  gap: 5px;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.mobile-nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
}

.mobile-nav-toggle:hover {
  border-color: var(--accent);
  background: rgba(10, 14, 18, 0.96);
}

.page-shell.is-mobile-nav-open .mobile-nav-toggle {
  border-color: var(--accent);
}

.page-shell.is-mobile-nav-open .mobile-nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.page-shell.is-mobile-nav-open .mobile-nav-toggle span:nth-child(2) {
  opacity: 0;
}

.page-shell.is-mobile-nav-open .mobile-nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  z-index: 10;
  min-height: 100svh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 90px 320px 220px 320px;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease, filter 0.35s ease;
}

.page-shell.has-overlay .hero,
.page-shell.has-overlay .countdown,
.page-shell.has-overlay .subscribe-box,
.page-shell.has-overlay .style-switcher,
.page-shell.has-overlay .social-bar {
  opacity: 0.42;
  transform: translate3d(0, 0, 0) scale(0.998);
}

.page-shell.has-overlay .style-switcher {
  pointer-events: none;
}

.page-shell.has-overlay .left-nav {
  opacity: 1;
  transform: none;
}

.hero__copy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.02em;
}

.hero__copy p {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 400;
  color: rgba(255,255,255,0.95);
}

.hero__copy--bottom p {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.38em;
  flex-wrap: wrap;
}

.hero__copy span,
.hero__copy strong { font-size: 1.1em; }

.hero__rotating-prefix {
  display: inline-block;
  min-width: 11.5ch;
  text-align: right;
  white-space: nowrap;
  transform: translate3d(0, 0, 0);
  opacity: 1;
  transition: opacity 0.28s ease, transform 0.28s ease, filter 0.28s ease;
  will-change: opacity, transform;
}

.hero__rotating-prefix.is-changing {
  opacity: 0;
  transform: translate3d(0, -10px, 0);
  filter: blur(1px);
}

.connector {
  position: relative;
  display: inline-block;
  width: 118px;
  height: 34px;
}

.connector::before,
.connector::after {
  content: "";
  position: absolute;
  background: rgba(255,255,255,0.96);
}

.connector--left::before {
  width: 110px;
  height: 2px;
  right: 0;
  top: 16px;
}

.connector--left::after {
  width: 2px;
  height: 28px;
  right: 0;
  top: 2px;
  transform: rotate(42deg);
  transform-origin: top;
}

.connector--right::before {
  width: 110px;
  height: 2px;
  left: 0;
  top: 16px;
}

.connector--right::after {
  width: 2px;
  height: 28px;
  left: 0;
  top: 2px;
  transform: rotate(-42deg);
  transform-origin: top;
}

.hero__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 20px 0;
}

.hero__logo {
  display: block;
  width: min(44vw, 720px);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 38px rgba(0,0,0,0.42));
}

.hero__badge {
  position: static;
  transform: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  background: #050505;
  border: 1px solid rgba(255,255,255,0.12);
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}

.style-switcher {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 52;
  display: flex;
  align-items: center;
  transform: translateX(calc(100% - 60px)) translateY(-50%);
  transition: transform 0.28s ease;
}

.style-switcher.is-open {
  transform: translateX(0) translateY(-50%);
}

.style-switcher__handle {
  position: relative;
  width: 68px;
  min-height: 68px;
  display: grid;
  place-items: center;
  margin-top: 0;
  border: 1px solid rgba(255,255,255,0.16);
  border-right: 0;
  border-radius: 21px 0 0 21px;
  background: linear-gradient(180deg, rgba(255,255,255,0.99), rgba(232,236,240,0.96));
  color: #111;
  font-size: 2.18rem;
  line-height: 1;
  text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  box-shadow: 0 26px 48px rgba(0,0,0,0.28);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
}

.style-switcher__handle::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 9px;
  bottom: 9px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 88%, white 12%), color-mix(in srgb, var(--accent) 76%, black 24%));
  box-shadow: 0 0 0 1px rgba(0,0,0,0.05);
}

.style-switcher__handle:hover {
  transform: translateX(-3px) scale(1.01);
  background: linear-gradient(180deg, #ffffff, #f2f5f8);
  box-shadow: 0 30px 52px rgba(0,0,0,0.32);
  filter: saturate(1.04);
}

.style-switcher__panel {
  width: 278px;
  border-radius: 0 21px 21px 0;
  overflow: hidden;
  box-shadow: 0 28px 48px rgba(0,0,0,0.24);
}

.style-switcher__header {
  height: 46px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.style-switcher__body {
  background: #f4f4f4;
  color: #111;
  min-height: 230px;
}

.style-switcher__section {
  padding: 24px 18px 18px;
}

.style-switcher__section h3 {
  margin: 0 0 26px;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.swatches {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.swatches button {
  position: relative;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 2px solid rgba(0,0,0,0.06);
}

.swatches button.is-selected::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 2px solid #111;
}

.countdown {
  position: absolute;
  left: 28px;
  bottom: 20px;
  z-index: 14;
  display: flex;
  gap: 0;
  align-items: flex-end;
}

.countdown-item {
  width: 110px;
  text-align: center;
}

.countdown-item__label {
  display: block;
  margin-bottom: 10px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
}

.countdown-item__circle {
  --progress: 0;
  position: relative;
  width: 110px;
  height: 110px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(var(--accent) calc(var(--progress) * 1%), rgba(255,255,255,0.16) 0);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.12);
}

.countdown-item__circle::before {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: rgba(0,0,0,0.54);
  box-shadow:
    inset 0 0 0 2px rgba(255,255,255,0.95),
    inset 0 0 0 14px rgba(0,0,0,0.22);
}

.countdown-item__circle span {
  position: relative;
  z-index: 1;
  font-family: 'Oswald', sans-serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.subscribe-box {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 14;
  width: 288px;
  text-align: left;
}

.subscribe-box__lead {
  margin: 0 0 18px;
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-size: 1rem;
  line-height: 1.28;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.92);
}

.subscribe-box__whatsapp {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid color-mix(in srgb, var(--accent) 28%, transparent);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  box-shadow: 0 18px 34px rgba(0,0,0,0.18);
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.subscribe-box__whatsapp::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
}

.subscribe-box__whatsapp:hover {
  transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(255,255,255,0.11), rgba(255,255,255,0.05));
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
  box-shadow: 0 24px 40px rgba(0,0,0,0.24);
}

.subscribe-box__icon {
  position: relative;
  flex: 0 0 50px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, color-mix(in srgb, var(--accent) 42%, white 58%), var(--accent) 62%, color-mix(in srgb, var(--accent) 78%, black 22%) 100%);
  color: #fff;
  box-shadow: 0 14px 24px rgba(0,0,0,0.24);
}

.subscribe-box__icon::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
}

.subscribe-box__icon svg {
  width: 28px;
  height: 28px;
}

.subscribe-box__meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.subscribe-box__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 4px 8px;
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent);
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: color-mix(in srgb, var(--accent) 70%, white 30%);
}

.subscribe-box__meta strong,
.subscribe-box__meta em {
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-style: normal;
}

.subscribe-box__meta strong {
  font-size: 1.02rem;
  font-weight: 700;
  color: rgba(255,255,255,0.98);
}

.subscribe-box__meta em {
  font-size: 1rem;
  color: rgba(255,255,255,0.84);
  letter-spacing: 0.04em;
}

.subscribe-box__meta b {
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
}

.overlay-screen {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.overlay-screen.is-open {
  opacity: 1;
  pointer-events: auto;
}

.overlay-screen__backdrop {
  position: absolute;
  inset: 0;
  z-index: 81;
  background: rgba(1, 3, 5, 0.72);
  backdrop-filter: blur(3px);
}

.overlay-panel__close {
  position: fixed;
  right: 22px;
  top: 16px;
  z-index: 95;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: rgba(3, 6, 10, 0.22);
  font-size: 2rem;
  line-height: 1;
  border: 0;
  cursor: pointer;
  color: rgba(255,255,255,0.95);
  transition: transform 0.35s ease, color 0.25s ease, background 0.25s ease;
}

.overlay-panel__close:hover {
  transform: rotate(180deg) scale(1.08);
  color: var(--accent);
  background: rgba(3, 6, 10, 0.42);
}

.overlay-panel__content {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 84;
  overflow: auto;
}

.overlay-panel__content.is-active {
  display: block;
}

.overlay-stage {
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 88px 70px 52px 230px;
}

.overlay-stage--contact {
  padding-top: 90px;
}

.scene-frame {
  position: relative;
  width: min(1120px, calc(100% - 40px));
  padding: 34px 38px 26px;
}

.scene-frame--feature {
  max-width: 1180px;
}

.scene-frame--contact {
  max-width: 1180px;
}

.scene-corner {
  position: absolute;
  width: 12px;
  height: 12px;
  border-color: rgba(255,255,255,0.95);
  border-style: solid;
  opacity: 0.95;
}

.scene-corner--tl {
  left: 2px;
  top: 54px;
  border-width: 2px 0 0 2px;
}

.scene-corner--tr {
  right: 2px;
  top: 54px;
  border-width: 2px 2px 0 0;
}

.scene-corner--bl {
  left: 2px;
  bottom: 38px;
  border-width: 0 0 2px 2px;
}

.scene-corner--br {
  right: 2px;
  bottom: 38px;
  border-width: 0 2px 2px 0;
}

.scene-frame h2 {
  margin: 0;
  text-align: center;
  font-family: 'Oswald', sans-serif;
  font-size: clamp(4rem, 7vw, 5.3rem);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.scene-intro {
  max-width: 1080px;
  margin: 56px auto 44px;
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.35;
  color: rgba(255,255,255,0.9);
}

.scene-intro span,
.scene-feature p span,
.contact-info-card p span {
  color: var(--accent);
}

.scene-features {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px;
  margin-top: 32px;
}

.scene-feature {
  text-align: center;
}

.scene-feature__icon {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 1.95rem;
  line-height: 1;
}

.scene-feature h3 {
  margin: 0 0 16px;
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.scene-feature p {
  margin: 0 auto;
  max-width: 295px;
  color: rgba(255,255,255,0.88);
  line-height: 1.45;
  font-size: 0.95rem;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
  max-width: 980px;
  margin: 50px auto 34px;
}

.contact-info-card {
  text-align: center;
}

.contact-info-card__icon {
  display: inline-grid;
  place-items: center;
  min-height: 34px;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 1.9rem;
}

.contact-info-card h3 {
  margin: 0 0 14px;
  font-family: 'Roboto Condensed', 'Oswald', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
}

.contact-info-card p {
  margin: 0;
  color: rgba(255,255,255,0.92);
  line-height: 1.55;
  font-size: 0.98rem;
}

.contact-form {
  max-width: 980px;
  margin: 0 auto;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 12px;
  padding: 15px 18px;
  border: 1px solid rgba(255,255,255,0.48);
  background: rgba(255,255,255,0.02);
  color: #fff;
  text-align: center;
  outline: none;
  font: 500 0.98rem/1 'Roboto Condensed', 'Oswald', sans-serif;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(255,255,255,0.82);
}

.contact-form textarea {
  min-height: 118px;
  resize: vertical;
  padding-top: 20px;
}

.contact-form button {
  display: block;
  width: min(480px, 100%);
  margin: 18px auto 0;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.02);
  color: #fff;
  font: 700 0.94rem/1 'Roboto Condensed', 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.contact-form button:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--accent);
  color: var(--accent);
}

@media (max-width: 1200px) {
  .hero {
    padding-right: 220px;
    padding-left: 220px;
  }

  .overlay-stage {
    padding-left: 210px;
    padding-right: 46px;
  }
}

@media (max-width: 980px) {
  body { overflow: auto; }

  .page-shell {
    min-height: 100svh;
    padding-bottom: 0;
  }

  .page-shell::before {
    background:
      linear-gradient(rgba(4, 7, 10, 0.72), rgba(4, 7, 10, 0.72)) top/100% 10px no-repeat,
      linear-gradient(rgba(4, 7, 10, 0.72), rgba(4, 7, 10, 0.72)) bottom/100% 10px no-repeat,
      linear-gradient(rgba(4, 7, 10, 0.72), rgba(4, 7, 10, 0.72)) left/10px 100% no-repeat,
      linear-gradient(rgba(4, 7, 10, 0.72), rgba(4, 7, 10, 0.72)) right/10px 100% no-repeat;
  }

  .page-shell.has-overlay::before {
    background:
      linear-gradient(rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.88)) top/100% 10px no-repeat,
      linear-gradient(rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.88)) bottom/100% 10px no-repeat,
      linear-gradient(rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.88)) left/10px 100% no-repeat,
      linear-gradient(rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.88)) right/10px 100% no-repeat;
  }

  .hero {
    min-height: auto;
    padding: 128px 20px 48px;
  }

  .mobile-nav-toggle {
    display: flex;
  }

  .social-bar {
    position: fixed;
    left: 16px;
    right: auto;
    top: 18px;
    z-index: 70;
    margin: 0;
    gap: 6px;
  }

  .social-bar a {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    font-size: 1rem;
  }

  .left-nav {
    position: fixed;
    right: 16px;
    left: auto;
    top: 70px;
    width: min(236px, calc(100vw - 32px));
    padding: 14px 14px 12px;
    margin: 0;
    background: rgba(4, 8, 12, 0.94);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 22px 36px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
    z-index: 69;
  }

  .page-shell.is-mobile-nav-open .left-nav {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .left-nav nav {
    padding-left: 16px;
    gap: 14px;
  }

  .nav-item {
    grid-template-columns: 34px 1fr;
    min-height: 56px;
    column-gap: 12px;
  }

  .nav-item::before {
    left: -16px;
  }

  .nav-item::after {
    left: 39px;
  }

  .nav-item__index {
    font-size: 1.82rem;
  }

  .nav-item__content {
    min-height: 56px;
    padding-top: 2px;
  }

  .nav-item__content strong {
    font-size: 1.05rem;
  }

  .nav-item__content em {
    margin-top: 6px;
    font-size: 0.88rem;
  }

  .style-switcher {
    position: fixed;
    right: 0;
    top: 50%;
    bottom: auto;
    margin: 0;
    transform: translateX(calc(100% - 56px)) translateY(-50%);
  }

  .style-switcher.is-open {
    transform: translateX(0) translateY(-50%);
  }

  .style-switcher__handle {
    width: 62px;
    min-height: 62px;
    border-radius: 18px 0 0 18px;
    font-size: 1.95rem;
  }

  .hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100svh;
    padding: 86px 16px 250px;
  }

  .hero__copy {
    gap: 0;
  }

  .hero__copy .connector {
    display: none;
  }

  .hero__copy--top {
    margin: 0 0 11px;
  }

  .hero__copy--bottom {
    margin: 11px 0 0;
  }

  .hero__copy--top p,
  .hero__copy--bottom p {
    font-size: 1.03rem;
    line-height: 1;
    letter-spacing: 0.045em;
  }

  .hero__copy--bottom p {
    gap: 0.3em;
  }

  .hero__rotating-prefix {
    min-width: 10.8ch;
  }

  .hero__title-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    margin: 0;
  }

  .hero__logo {
    width: min(82vw, 560px);
    max-width: 100%;
  }

  .hero__badge {
    position: static;
    top: auto;
    transform: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 166px;
    padding: 4px 12px;
    font-size: 0.84rem;
    line-height: 1;
  }

  .countdown {
    --mobile-ring-size: clamp(118px, min(40.5vw, 20svh), 156px);
    position: absolute;
    left: 50%;
    right: auto;
    bottom: clamp(132px, 18svh, 158px);
    z-index: 14;
    display: grid;
    grid-template-columns: repeat(2, var(--mobile-ring-size));
    gap: 0;
    width: calc(var(--mobile-ring-size) * 2);
    margin: 0;
    transform: translateX(-50%);
  }

  .countdown-item {
    position: relative;
    width: var(--mobile-ring-size);
    height: var(--mobile-ring-size);
    text-align: center;
  }

  .countdown-item__label {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(var(--mobile-ring-size) * 0.18);
    z-index: 2;
    margin: 0;
    font-size: clamp(0.74rem, 2.25vw, 0.84rem);
    line-height: 1;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.92);
    pointer-events: none;
  }

  .countdown-item__circle {
    width: var(--mobile-ring-size);
    height: var(--mobile-ring-size);
    margin: 0;
  }

  .countdown-item__circle::before {
    inset: max(5px, calc(var(--mobile-ring-size) * 0.038));
    box-shadow:
      inset 0 0 0 2px rgba(255,255,255,0.95),
      inset 0 0 0 calc(var(--mobile-ring-size) * 0.147) rgba(0,0,0,0.22);
  }

  .countdown-item__circle span {
    display: inline-block;
    padding-top: calc(var(--mobile-ring-size) * 0.128);
    font-size: clamp(1.72rem, 5.3vw, 2.04rem);
  }

  .subscribe-box {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    width: auto;
    margin: 0;
  }

  .subscribe-box__lead {
    margin-bottom: 7px;
    font-size: 0.84rem;
    line-height: 1.02;
  }

  .subscribe-box__whatsapp {
    gap: 10px;
    padding: 9px 11px;
  }

  .subscribe-box__icon {
    flex-basis: 44px;
    width: 44px;
    height: 44px;
  }

  .subscribe-box__icon svg {
    width: 24px;
    height: 24px;
  }

  .subscribe-box__meta {
    gap: 3px;
  }

  .subscribe-box__tag {
    padding: 3px 7px;
    font-size: 0.7rem;
  }

  .subscribe-box__meta strong {
    font-size: 0.95rem;
  }

  .subscribe-box__meta em {
    font-size: 0.86rem;
    letter-spacing: 0.02em;
  }

  .subscribe-box__meta b {
    font-size: 0.96rem;
  }

  .overlay-stage {
    padding: 96px 18px 40px;
  }

  .scene-frame {
    width: 100%;
    padding: 30px 18px 28px;
  }

  .scene-corner--tl,
  .scene-corner--tr {
    top: 34px;
  }

  .scene-corner--bl,
  .scene-corner--br {
    bottom: 16px;
  }

  .scene-frame h2 {
    font-size: clamp(3rem, 14vw, 4.25rem);
  }

  .scene-intro {
    margin-top: 34px;
    margin-bottom: 28px;
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .scene-features,
  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .overlay-panel__close {
    left: 50%;
    right: auto;
    top: 14px;
    transform: translateX(-50%);
  }

  .overlay-panel__close:hover {
    transform: translateX(-50%) rotate(180deg);
  }
}

.nav-item:focus-visible {
  outline: none;
}


@media (max-width: 980px) and (max-height: 760px) {
  .hero {
    padding-top: 82px;
    padding-bottom: 236px;
  }

  .countdown {
    --mobile-ring-size: clamp(112px, min(39vw, 19svh), 148px);
    bottom: clamp(118px, 16svh, 146px);
  }

  .countdown-item__circle span {
    font-size: clamp(1.6rem, 5vw, 1.96rem);
  }
}
