:root {
  --bg: #0e0d0b;
  --bg-2: #16140f;
  --ink: #f3efe6;
  --muted: #c4beb2;
  --dim: #9a9488;
  --line: rgba(243, 239, 230, 0.12);
  --line-strong: rgba(243, 239, 230, 0.22);
  --lime: #e4f56a;
  --lime-ink: #16180c;
  --blue: #a9c0ff;
  --rose: #ffb4a8;
  --card: rgba(243, 239, 230, 0.028);
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.38);
  --sans: "Segoe UI", "Noto Sans", "Liberation Sans", "DejaVu Sans", system-ui, sans-serif;
  --mono: "SFMono-Regular", "Cascadia Code", "Liberation Mono", "DejaVu Sans Mono", ui-monospace, monospace;
  --max: 1120px;
  --header: 68px;
  color-scheme: dark;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: auto; }

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body::before,
body::after {
  content: "";
  position: fixed;
  z-index: 0;
  pointer-events: none;
  width: 52vw;
  height: 52vw;
  border-radius: 50%;
  filter: blur(8px);
}

body::before {
  top: -18vw;
  right: -12vw;
  background: radial-gradient(circle, rgba(228, 245, 106, 0.16), transparent 62%);
}

body::after {
  bottom: -20vw;
  left: -16vw;
  background: radial-gradient(circle, rgba(169, 192, 255, 0.12), transparent 64%);
}

@media (prefers-reduced-motion: no-preference) {
  html { scroll-behavior: smooth; }
  body::before { animation: drift 22s ease-in-out infinite alternate; }
  body::after { animation: drift 28s ease-in-out infinite alternate-reverse; }
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(-6%, 8%, 0) scale(1.12); }
}

img { max-width: 100%; display: block; }
button, input { font: inherit; color: inherit; }
button { cursor: pointer; }
a { color: inherit; }

::selection { background: var(--lime); color: var(--lime-ink); }

:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  z-index: 80;
  background: var(--lime);
  color: var(--lime-ink);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
}

.skip:focus { top: 12px; }

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin-inline: auto;
}

.site-header,
main,
.site-footer { position: relative; z-index: 1; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 13, 11, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
}

.bar {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: var(--header);
  position: relative;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.04em;
  font-size: 1.05rem;
  flex: none;
}

.logo img { width: 28px; height: 28px; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.92rem;
  padding: 8px 10px;
  border-radius: 999px;
}

.nav a:hover { color: var(--ink); }

.nav a[aria-current="page"] { color: var(--ink); }

.nav .btn { margin-left: 6px; }

.lang {
  display: inline-flex;
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.25);
  flex: none;
}

.lang button {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 12px;
  letter-spacing: 0.06em;
}

.lang button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: transparent;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex: none;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  background: var(--lime);
  color: var(--lime-ink);
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.btn--small { padding: 9px 14px; font-size: 0.92rem; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--line-strong);
}

.btn--block { width: 100%; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .btn:hover { transform: translateY(-1px); filter: brightness(1.06); }
}

.hero {
  display: grid;
  gap: 28px;
  padding: 36px 0 20px;
}

.eyebrow,
.kicker {
  margin: 0 0 12px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1, h2, .hero__title {
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.hero__title {
  margin: 0;
  font-size: clamp(2.15rem, 5.4vw, 4.55rem);
}

.hero__title span { display: block; }
.hero__title-em { color: #ddd6c8; }

.lead {
  margin: 16px 0 0;
  max-width: 42rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.points {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.points li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
}

.points li::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-top: 0.55em;
  border-radius: 2px;
  background: var(--lime);
  flex: none;
}

.trust {
  margin: 14px 0 0;
  color: var(--dim);
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.form {
  margin-top: 22px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(14, 13, 11, 0.55);
  display: grid;
  gap: 12px;
}

.field { display: grid; gap: 6px; }

.field label {
  font-size: 13px;
  color: var(--muted);
}

.field input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0c0b09;
  border-radius: 12px;
  padding: 12px 12px;
  font-size: 16px;
  outline: none;
}

.field input:focus { border-color: rgba(228, 245, 106, 0.7); }

.field input.is-bad { border-color: var(--rose); }

.field input:-webkit-autofill {
  -webkit-text-fill-color: var(--ink);
  caret-color: var(--ink);
  transition: background-color 9999s ease-out;
}

.err {
  margin: 0;
  color: var(--rose);
  font-size: 13px;
}

.form__note,
.fine {
  margin: 16px 0 0;
  color: var(--dim);
  font-size: 13px;
  line-height: 1.45;
}

.fine + .fine { margin-top: 6px; }

body.nav-lock { overflow: hidden; }

.form__status {
  margin: 0;
  min-height: 0;
  color: var(--muted);
  font-size: 14px;
}

.form__status:empty { display: none; }

.stage {
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 28%),
    linear-gradient(180deg, #1c1a14, #12110e);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  overflow: hidden;
  min-width: 0;
}

.stage__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 44px;
  padding: 0 12px;
  border-bottom: 1px solid var(--line);
}

.dots { display: inline-flex; gap: 5px; }
.dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3a3832;
  display: block;
}
.dots i:first-child { background: #6d6840; }

.stage__brand {
  font-weight: 650;
  letter-spacing: -0.04em;
}

.stage__search {
  margin-left: auto;
  color: var(--dim);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  min-width: 92px;
}

.stage__online {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
}

.pulse {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--lime);
  display: inline-block;
}

.stage__body {
  display: grid;
  grid-template-columns: 52px minmax(0, 1.15fr) minmax(0, 0.85fr);
  grid-template-rows: minmax(230px, auto) minmax(190px, auto);
}

.rail {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 0;
  border-right: 1px solid var(--line);
}

.rail__btn {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--dim);
}

.rail__btn.is-on {
  color: var(--lime-ink);
  background: var(--lime);
}

.rail svg { width: 16px; height: 16px; display: block; }

.pane { min-width: 0; padding: 12px; }

.pane--mail {
  grid-column: 2;
  grid-row: 1;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pane--call {
  grid-column: 3;
  grid-row: 1;
  border-bottom: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pane--board {
  grid-column: 2 / span 2;
  grid-row: 2;
}

.pane__h {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 650;
}

.pane__h b {
  color: var(--ink);
  font-family: var(--mono);
  letter-spacing: 0;
  font-weight: 500;
}

.inbox { position: relative; display: grid; gap: 4px; }

.inbox__hl {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 72px;
  border-radius: 12px;
  background: rgba(228, 245, 106, 0.08);
  box-shadow: inset 0 0 0 1px rgba(228, 245, 106, 0.16);
  z-index: 0;
}

.thread {
  position: relative;
  z-index: 1;
  height: 72px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  padding: 0 8px;
}

.avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #2a281f;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.thread strong,
.deal strong,
.caller strong {
  display: block;
  font-size: 14px;
  font-weight: 650;
  letter-spacing: -0.02em;
}

.thread p,
.deal p,
.caller span,
.day p,
.int p,
.plan li,
.faq p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.thread p,
.deal p {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.when {
  color: var(--dim);
  font-family: var(--mono);
  font-size: 11px;
}

.caller {
  display: flex;
  gap: 10px;
  align-items: center;
}

.timer {
  margin: 0;
  font-family: var(--mono);
  font-variant-numeric: tabular-nums;
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: -0.06em;
  line-height: 1;
  color: var(--lime);
}

.dur {
  margin: -4px 0 0;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wave {
  display: flex;
  align-items: flex-end;
  gap: 3px;
  height: 46px;
}

.wave i {
  display: block;
  width: 3px;
  height: var(--h, 40%);
  border-radius: 99px;
  background: linear-gradient(var(--lime), var(--blue));
  transform-origin: center bottom;
}

.callstate { margin: 0; color: var(--ink); font-size: 14px; }

.chips { display: flex; gap: 8px; }
.chips span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  color: var(--muted);
}

.board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.col {
  background: rgba(0, 0, 0, 0.22);
  border-radius: 12px;
  padding: 8px;
  min-height: 132px;
}

.col h3 {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 650;
}

.deal {
  background: #221f18;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px;
}

.deal + .deal { margin-top: 8px; }

.marquee { padding: 10px 0 28px; overflow: hidden; }

.marquee__label {
  text-align: center;
  color: var(--dim);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 8px 0 14px;
}

.marquee__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track { display: flex; width: max-content; }

.marquee__list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}

.marquee__list li {
  padding: 0 26px;
  color: var(--muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 13px;
  white-space: nowrap;
}

.section { padding: 72px 0; }

.section__head { max-width: 44rem; margin-bottom: 28px; }

h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 3.15rem);
}

.cards,
.plans,
.ints,
.days {
  display: grid;
  gap: 12px;
}

.cards { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.ints { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.plans { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }

.card,
.int,
.plan,
.day,
.sheet {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--card);
  padding: 18px;
  min-width: 0;
}

.idx {
  font-family: var(--mono);
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.14em;
}

.card h3,
.int h3,
.plan h3,
.day h3,
.sheet h2 {
  margin: 8px 0;
  letter-spacing: -0.03em;
  font-size: 1.2rem;
  line-height: 1.2;
}

.int__mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #241f14;
  color: var(--lime);
  font-size: 12px;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.day time {
  display: block;
  margin-bottom: 8px;
  color: var(--lime);
  font-family: var(--mono);
  font-size: 13px;
}

.plan { display: flex; flex-direction: column; gap: 8px; }
.plan--hot {
  border-color: rgba(228, 245, 106, 0.5);
  background: linear-gradient(180deg, rgba(228, 245, 106, 0.09), rgba(255, 255, 255, 0.02));
}
.plan__top { display: flex; justify-content: space-between; gap: 8px; align-items: center; }
.plan h3 { margin: 0; }
.badge {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--lime-ink);
  background: var(--lime);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}
.plan__price {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}
.plan__price small {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  letter-spacing: 0;
  color: var(--dim);
  font-weight: 400;
}
.plan__note { margin: 0; color: var(--muted); min-height: 3.2em; }
.plan ul { margin: 0; padding: 0 0 8px; list-style: none; display: grid; gap: 8px; }
.plan li { padding-left: 14px; position: relative; }
.plan li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--lime);
  position: absolute;
  left: 0;
  top: 0.5em;
}
.plan .btn { margin-top: auto; }

.faq { border-top: 1px solid var(--line); }
.faq summary {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  cursor: pointer;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--muted);
  border-bottom: 1.5px solid var(--muted);
  transform: rotate(45deg);
  flex: none;
}
.faq[open] summary::after { transform: rotate(225deg); }
.faq p { margin: 0 0 18px; max-width: 46rem; }

.strip {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr) auto;
  gap: 22px;
  align-items: end;
  padding: 22px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(243, 239, 230, 0.03);
}

.facts { display: grid; gap: 10px; margin: 0; }
.facts div { display: grid; gap: 2px; }
.facts dt {
  margin: 0;
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.facts dd { margin: 0; }
.facts a { text-underline-offset: 0.18em; }

.site-footer {
  border-top: 1px solid var(--line);
  padding-bottom: 28px;
}

.foot {
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 1.1fr;
  gap: 28px;
  padding-top: 36px;
}

.foot h2 {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim);
  font-weight: 650;
  margin: 0 0 12px;
}

.foot p,
.foot a { color: var(--muted); }
.foot ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.foot a { text-decoration: none; }
.foot a:hover { color: var(--ink); }
.legal { color: var(--dim); font-family: var(--mono); font-size: 12px; }
.subfoot {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--dim);
  font-size: 13px;
}

.page-hero { padding: 48px 0 12px; }
.page-hero h1 { margin: 0; font-size: clamp(2.2rem, 6vw, 4.2rem); }

.contact-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 14px;
  padding-bottom: 14px;
}

.sheet h2 { font-size: 1.35rem; }
.sheet + .sketch { margin-top: 0; }

.stack { display: grid; gap: 16px; margin: 8px 0 0; }
.stack div { display: grid; gap: 3px; }
.stack dt {
  color: var(--dim);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.stack dd { margin: 0; }
.stack a { text-underline-offset: 0.18em; }

.sketch {
  position: relative;
  min-height: 320px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 30% 40%, rgba(228, 245, 106, 0.07), transparent 36%),
    linear-gradient(#17160f, #100f0c);
  overflow: hidden;
  margin: 0 0 28px;
}

.sketch__blvd,
.sketch__arm {
  position: absolute;
  border-radius: 99px;
}

.sketch__blvd {
  left: 7%;
  right: 7%;
  top: 46%;
  height: 22px;
  background: rgba(243, 239, 230, 0.16);
}

.sketch__arm {
  top: 16%;
  bottom: 12%;
  left: 62%;
  width: 16px;
  background: rgba(169, 192, 255, 0.38);
}

.sketch__arm span {
  left: 26px;
  top: 42%;
  width: 11rem;
  color: var(--blue);
}

.sketch__blvd span,
.sketch__arm span,
.sketch__metro,
.sketch__pin {
  position: absolute;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sketch__blvd span {
  left: 0;
  top: -22px;
  color: var(--dim);
}

.sketch__metro {
  left: 16px;
  top: 16px;
  color: var(--blue);
  background: rgba(14, 13, 11, 0.8);
  border: 1px solid rgba(169, 192, 255, 0.4);
  border-radius: 999px;
  padding: 4px 8px;
  white-space: nowrap;
}

.sketch__pin {
  left: calc(62% + 24px);
  top: 64%;
  background: var(--lime);
  color: var(--lime-ink);
  border-radius: 14px;
  padding: 10px 12px;
  text-transform: none;
  letter-spacing: -0.02em;
  display: grid;
  gap: 2px;
  min-width: 140px;
}

.sketch__pin b { font-size: 14px; }
.sketch figcaption {
  position: absolute;
  left: 16px;
  bottom: 12px;
  color: var(--dim);
  font-size: 12px;
}

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

@media (min-width: 800px) {
  .days { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1120px) {
  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: 36px;
    min-height: calc(100svh - var(--header));
    padding-top: 18px;
  }
}

@media (max-width: 1120px) {
  .cards,
  .ints,
  .plans,
  .contact-grid,
  .foot,
  .strip { grid-template-columns: 1fr 1fr; }
  .strip { align-items: start; }
  .nav-toggle { display: inline-flex; }
  .nav {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(16, 15, 12, 0.96);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }
  .is-open .nav { display: flex; }
  .nav .btn { margin: 6px 0 0; }
}

@media (max-width: 420px) {
  .lang button { padding: 6px 7px; }
  .logo { font-size: 0.95rem; gap: 8px; }
}

@media (max-width: 720px) {
  .cards,
  .ints,
  .plans,
  .days,
  .contact-grid,
  .foot,
  .strip,
  .board { grid-template-columns: 1fr; }
  .stage__body { display: flex; flex-direction: column; }
  .rail { display: none; }
  .pane--mail,
  .pane--call { border-right: 0; }
  .stage__search { display: none; }
  .sketch__pin { left: auto; right: 12px; top: auto; bottom: 42px; }
  .sketch__arm { left: 34%; }
  .sketch { min-height: 280px; }
  .col { min-height: 0; }
  .section { padding: 52px 0; }
  .plan__note { min-height: 0; }
}

@media (prefers-reduced-motion: no-preference) {
  .rise {
    animation-name: rise;
    animation-duration: 0.9s;
    animation-timing-function: cubic-bezier(0.16, 0.84, 0.24, 1);
    animation-fill-mode: both;
  }
  .d1 { animation-delay: 0.04s; }
  .d2 { animation-delay: 0.12s; }
  .d3 { animation-delay: 0.2s; }
  .d4 { animation-delay: 0.28s; }
  .d5 { animation-delay: 0.38s; }
  .d6 { animation-delay: 0.48s; }
  .marquee__track { animation: ticker 36s linear infinite; }
  .inbox__hl { animation: hl 8s ease-in-out infinite; }
  .wave i { animation: eq 1.05s ease-in-out infinite; }
  .wave i:nth-child(odd) { animation-duration: 0.86s; }
  .pulse { animation: blink 2.4s ease-out infinite; }
  .deal.is-pop { animation: pop 0.45s ease; }
  @supports (animation-timeline: view()) {
    .reveal {
      animation: reveal linear both;
      animation-timeline: view();
      animation-range: entry 0% cover 24%;
    }
  }
}

@keyframes rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}

@keyframes ticker {
  to { transform: translateX(-50%); }
}

@keyframes hl {
  0%, 18% { transform: translateY(0); }
  34%, 52% { transform: translateY(76px); }
  68%, 86% { transform: translateY(152px); }
  100% { transform: translateY(0); }
}

@keyframes eq {
  0%, 100% { transform: scaleY(0.35); }
  50% { transform: scaleY(1); }
}

@keyframes blink {
  0% { box-shadow: 0 0 0 0 rgba(228, 245, 106, 0.55); }
  100% { box-shadow: 0 0 0 8px rgba(228, 245, 106, 0); }
}

@keyframes pop {
  from { opacity: 0.15; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}

@keyframes reveal {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

.wave i:nth-child(1) { --h: 30%; animation-delay: 0.02s; }
.wave i:nth-child(2) { --h: 72%; animation-delay: 0.12s; }
.wave i:nth-child(3) { --h: 46%; animation-delay: 0.2s; }
.wave i:nth-child(4) { --h: 90%; animation-delay: 0.08s; }
.wave i:nth-child(5) { --h: 54%; animation-delay: 0.18s; }
.wave i:nth-child(6) { --h: 80%; animation-delay: 0.04s; }
.wave i:nth-child(7) { --h: 38%; animation-delay: 0.16s; }
.wave i:nth-child(8) { --h: 96%; animation-delay: 0.1s; }
.wave i:nth-child(9) { --h: 58%; animation-delay: 0.22s; }
.wave i:nth-child(10) { --h: 76%; animation-delay: 0.06s; }
.wave i:nth-child(11) { --h: 44%; animation-delay: 0.14s; }
.wave i:nth-child(12) { --h: 68%; animation-delay: 0.24s; }

@media (hover: hover) and (prefers-reduced-motion: no-preference) {
  .int:hover,
  .card:hover,
  .day:hover,
  .plan:hover { transform: translateY(-3px); border-color: rgba(228, 245, 106, 0.38); }
  .plan--hot { transform: translateY(-8px); }
  .plan--hot:hover { transform: translateY(-12px); }
}

@media (prefers-reduced-motion: reduce) {
  .marquee__track { transform: none; flex-wrap: wrap; width: auto; justify-content: center; }
  .marquee__list + .marquee__list { display: none; }
  .marquee__viewport { mask-image: none; }
  .btn:hover,
  .int:hover,
  .card:hover,
  .day:hover,
  .plan:hover,
  .plan--hot,
  .plan--hot:hover { transform: none; }
}
