:root {
  --cream: #f3e8da;
  --paper: #ead8c4;
  --foam: #fff7ee;
  --ink: #261d17;
  --ink-soft: #5c4b3d;
  --muted: #8a7360;
  --ginger: #d4843a;
  --ginger-hot: #e39a4f;
  --ginger-deep: #a85d22;
  --helmet: #141210;
  --helmet-mid: #2a2521;
  --metal: #c9bfb3;
  --metal-bright: #efe7dc;
  --rose: #e8c4b4;
  --visor-blue: #6d90a4;
  --shadow: 0 22px 50px rgba(38, 29, 23, 0.14);
  --display: "Bagel Fat One", "Gluten", system-ui, sans-serif;
  --soft: "Gluten", "Gaegu", system-ui, sans-serif;
  --script: "Gaegu", "Quicksand", cursive;
  --body: "Quicksand", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--body);
  background:
    radial-gradient(1100px 640px at 8% -8%, rgba(227, 154, 79, 0.22), transparent 58%),
    radial-gradient(900px 520px at 100% 8%, rgba(232, 196, 180, 0.2), transparent 52%),
    radial-gradient(780px 480px at 70% 100%, rgba(173, 140, 104, 0.14), transparent 55%),
    var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--ginger);
  outline-offset: 3px;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

.skip {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 80;
  padding: 8px 12px;
  background: var(--helmet);
  color: var(--foam);
  border-radius: 8px;
}

.skip:focus {
  top: 12px;
}

.grain,
.sunwash,
.tabby,
#drift {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#drift {
  z-index: 1;
}

.grain {
  z-index: 18;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 160 160' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.sunwash {
  z-index: 0;
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 244, 226, 0.45), transparent 28%),
    radial-gradient(circle at 78% 36%, rgba(227, 154, 79, 0.08), transparent 24%);
  animation: wash 14s ease-in-out infinite;
}

.tabby {
  z-index: 0;
  opacity: 0.045;
  background: repeating-linear-gradient(
    118deg,
    transparent 0 14px,
    rgba(168, 93, 34, 0.55) 14px 16px,
    transparent 16px 34px
  );
  animation: tabby-drift 36s linear infinite;
}

@keyframes wash {
  0%,
  100% { opacity: 1; transform: translate3d(0, 0, 0); }
  50% { opacity: 0.7; transform: translate3d(-1.5%, 1%, 0); }
}

@keyframes tabby-drift {
  from { background-position: 0 0; }
  to { background-position: 220px 80px; }
}

.iris {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: grid;
  place-items: center;
  background: #0e0c0b;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.iris.is-gone {
  opacity: 0;
  visibility: hidden;
}

.iris-shell {
  text-align: center;
}

.iris-window {
  width: min(220px, 46vw);
  aspect-ratio: 1;
  margin: 0 auto 18px;
  border-radius: 50%;
  overflow: hidden;
  border: 10px solid #1c1a18;
  box-shadow:
    0 0 0 4px #b9b0a4,
    0 0 0 14px #2c2723,
    inset 0 0 30px rgba(0, 0, 0, 0.35);
  animation: iris-open 1.15s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.iris-window img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
}

.iris-word {
  font-family: var(--script);
  font-size: 1.7rem;
  color: #e8d8c4;
  letter-spacing: 0.04em;
  animation: rise-in 0.8s 0.35s both;
}

@keyframes iris-open {
  from { transform: scale(0.35); filter: brightness(0.4); }
  to { transform: scale(1); filter: brightness(1); }
}

.mast {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 28px;
  background: rgba(243, 232, 218, 0.72);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: box-shadow 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.mast.is-scrolled {
  background: rgba(243, 232, 218, 0.92);
  border-bottom-color: rgba(38, 29, 23, 0.08);
  box-shadow: 0 10px 28px rgba(38, 29, 23, 0.06);
}

.brand,
.brand-copy,
.mast-end,
.cta,
.ca-row,
.chart-head,
.foot,
.foot-marks {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  min-width: max-content;
}

.brand-face {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--helmet);
  box-shadow: 0 0 0 2px var(--metal);
}

.brand-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
}

.brand-copy {
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.05;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.brand-copy small {
  font-family: var(--script);
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.links {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-family: var(--soft);
  font-weight: 600;
}

.links a {
  position: relative;
  color: var(--ink-soft);
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--ginger), var(--helmet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.28s ease;
}

.links a:hover,
.links a.is-active {
  color: var(--ink);
}

.links a:hover::after,
.links a.is-active::after {
  transform: scaleX(1);
}

.mast-end {
  gap: 10px;
}

.chip {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--helmet);
  color: var(--foam);
}

.chip img {
  width: 16px;
  filter: invert(1);
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  border-radius: 12px;
  background: var(--foam);
  box-shadow: inset 0 0 0 1px rgba(38, 29, 23, 0.1);
}

.burger i {
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 99px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  font-family: var(--soft);
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 -40%;
  width: 30%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  animation: sheen 4.8s ease-in-out infinite;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-buy {
  background: linear-gradient(180deg, var(--ginger-hot), var(--ginger-deep));
  color: #fff8f1;
  box-shadow: 0 10px 22px rgba(168, 93, 34, 0.28);
}

.btn-ghost {
  background: var(--foam);
  box-shadow: inset 0 0 0 1.5px rgba(38, 29, 23, 0.12);
}

.btn-ghost.light {
  background: rgba(255, 247, 238, 0.16);
  color: #fff8f1;
  box-shadow: inset 0 0 0 1.5px rgba(255, 247, 238, 0.35);
}

.btn-wide {
  min-width: 210px;
}

.mark {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  overflow: hidden;
  flex: 0 0 auto;
}

.mark img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.mark-pump {
  background: #1d3934;
}

.mark-pump img {
  width: 20px;
  height: 20px;
}

.mark-dex {
  background: #10231f;
}

.mark-x {
  background: #111;
}

.mark-x img {
  filter: invert(1);
  width: 14px;
}

.mark-ph {
  background: transparent;
}

.mark-ph img {
  width: 28px;
  height: 28px;
}

.mark-sol {
  width: 64px;
  background: #111;
  padding: 6px 8px;
}

.mark-sol img {
  width: 52px;
  height: auto;
}

.wrap {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.wrap.slim {
  width: min(1080px, calc(100% - 40px));
}

.hero {
  position: relative;
  z-index: 2;
  padding: 36px 20px 88px;
}

.hero-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 48px;
  align-items: center;
}

.visor-wrap {
  position: relative;
  display: grid;
  place-items: center;
}

.orbit {
  position: absolute;
  border-radius: 50%;
  border: 1.5px dashed rgba(42, 37, 33, 0.22);
  animation: spin 28s linear infinite;
}

.orbit-a {
  width: min(460px, 88vw);
  aspect-ratio: 1;
}

.orbit-b {
  width: min(520px, 96vw);
  aspect-ratio: 1;
  animation-duration: 44s;
  animation-direction: reverse;
  border-style: dotted;
}

.whiskers {
  position: absolute;
  width: min(440px, 90vw);
  z-index: 2;
  pointer-events: none;
}

.whisker {
  stroke: rgba(38, 29, 23, 0.28);
  stroke-width: 1.6;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 220;
  stroke-dashoffset: 220;
  animation: draw 1.8s 0.4s forwards;
}

.whisker.delay {
  animation-delay: 0.7s;
}

.visor {
  position: relative;
  z-index: 3;
  width: min(390px, 82vw);
  aspect-ratio: 1;
  margin: 0;
  padding: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 32% 24%, #7a828a 0%, #1c1a18 42%, #0b0a09 100%);
  box-shadow:
    0 0 0 3px var(--metal),
    0 0 0 10px var(--helmet-mid),
    var(--shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  animation: breathe 5.6s ease-in-out infinite;
}

.visor img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
}

.visor figcaption {
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--foam);
  font-family: var(--script);
  font-size: 1rem;
  box-shadow: var(--shadow);
}

.gleam {
  position: absolute;
  inset: 14px;
  border-radius: 50%;
  pointer-events: none;
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.26), transparent 28%, transparent 62%, rgba(255, 255, 255, 0.08));
  animation: gleam-sweep 6s ease-in-out infinite;
}

.rivet {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #fff, #8d857b 55%, #4d4740);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
}

.visor .r1,
.plaque .r1 { top: 18px; left: 18px; }
.visor .r2,
.plaque .r2 { top: 18px; right: 18px; }
.visor .r3,
.plaque .r3 { bottom: 18px; left: 18px; }
.visor .r4,
.plaque .r4 { bottom: 18px; right: 18px; }

.plaque {
  position: relative;
  padding: 34px 34px 30px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, #fbf6ee 0%, #efe3d2 100%);
  border: 1.5px solid #cbbfb0;
  box-shadow:
    inset 0 1px 0 #fff,
    var(--shadow);
}

.script {
  font-family: var(--script);
  font-size: 1.45rem;
  color: var(--ginger-deep);
}

.script.light {
  color: #f3d2b0;
}

.wordmark {
  font-family: var(--display);
  font-size: clamp(4.2rem, 9vw, 7rem);
  line-height: 0.86;
  letter-spacing: 0.01em;
  margin: 6px 0 4px;
  display: flex;
  color: var(--helmet);
}

.oh {
  position: relative;
  display: inline-block;
}

.in-paw {
  position: absolute;
  left: 50%;
  top: 54%;
  width: 0.34em;
  height: 0.34em;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 50% 68%, var(--foam) 0 0.09em, transparent 0.1em),
    radial-gradient(circle at 28% 38%, var(--foam) 0 0.055em, transparent 0.06em),
    radial-gradient(circle at 50% 28%, var(--foam) 0 0.055em, transparent 0.06em),
    radial-gradient(circle at 72% 38%, var(--foam) 0 0.055em, transparent 0.06em);
}

.subplate {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 16px 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, #d8d0c6, #b7aea2);
  color: var(--helmet);
  font-family: var(--soft);
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 8px 0 14px;
  color: var(--ink-soft);
  font-weight: 700;
}

.sol-pill {
  display: inline-flex;
  align-items: center;
  padding: 5px 8px;
  border-radius: 8px;
  background: #111;
}

.sol-pill img {
  height: 14px;
  width: auto;
}

.ticker span {
  font-family: var(--soft);
  color: var(--ink);
}

.ticker em {
  font-style: normal;
  color: var(--muted);
}

.lead,
.prose {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}

.lead {
  max-width: 38ch;
  margin-bottom: 18px;
}

.ca-row {
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 8px 8px 12px;
  border-radius: 16px;
  background: rgba(38, 29, 23, 0.05);
}

.ca-tag {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--ginger-deep);
}

#ca-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 0.86rem;
  color: var(--ink);
}

.ca-btn {
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--helmet);
  color: var(--foam);
  font-weight: 700;
}

.cta {
  flex-wrap: wrap;
  gap: 10px;
}

.descend {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  display: grid;
  justify-items: center;
  gap: 8px;
  font-family: var(--script);
  color: var(--ink-soft);
}

.descend b {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  transform: rotate(45deg);
  animation: bob 1.5s ease-in-out infinite;
}

.about,
.howtobuy,
.chart {
  position: relative;
  z-index: 2;
  padding: 84px 0;
}

.about .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: start;
}

.eyebrow {
  font-family: var(--soft);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--ginger-deep);
  margin-bottom: 8px;
}

.center {
  text-align: center;
}

.display {
  font-family: var(--display);
  font-size: clamp(2.3rem, 5vw, 3.8rem);
  line-height: 0.95;
  margin-bottom: 16px;
}

.display-sm {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.display.light,
.prose.light {
  color: #fff8f1;
}

.prose + .prose {
  margin-top: 12px;
}

.plates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 24px;
}

.plate,
.source,
.step,
.monitor {
  background: linear-gradient(180deg, #fff9f2, #f0e3d3);
  border: 1px solid rgba(38, 29, 23, 0.08);
  box-shadow: var(--shadow);
}

.plate {
  padding: 16px;
  border-radius: 20px;
}

.plate h3,
.step h3 {
  font-family: var(--soft);
  margin-bottom: 6px;
}

.plate p,
.step p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  line-height: 1.5;
}

.source {
  padding: 22px;
  border-radius: 28px;
}

.source-frame {
  margin: 14px 0 12px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--ginger-deep);
  font-weight: 700;
  border-bottom: 1px dashed currentColor;
}

.howtobuy {
  background: linear-gradient(180deg, transparent, rgba(255, 247, 238, 0.55), transparent);
}

.paw-trail {
  list-style: none;
  display: flex;
  align-items: stretch;
  gap: 0;
  margin-top: 36px;
}

.step {
  position: relative;
  flex: 1;
  padding: 22px 18px 20px;
  border-radius: 24px;
  text-align: center;
}

.step .mark {
  width: 42px;
  height: 42px;
  margin: 8px auto 10px;
  border-radius: 12px;
}

.pad {
  position: absolute;
  top: 12px;
  left: 12px;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--helmet);
  color: var(--foam);
  font-family: var(--soft);
  font-size: 0.85rem;
}

.connector {
  width: 46px;
  align-self: center;
  height: 0;
  border-top: 3px dashed rgba(38, 29, 23, 0.2);
  background:
    radial-gradient(circle at 50% 50%, var(--helmet) 0 4px, transparent 5px);
  animation: dash 2.8s linear infinite;
}

.chart-head {
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.monitor {
  border-radius: 28px;
  overflow: hidden;
  background: #161311;
  border: 10px solid #1c1916;
  box-shadow:
    0 0 0 2px #b9b0a4,
    var(--shadow);
}

.monitor-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: #d8cfc4;
  font-family: var(--script);
  background: #211c18;
}

.led {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #6dcf8a;
  box-shadow: 0 0 8px #6dcf8a;
  animation: pulse 1.8s ease-in-out infinite;
}

.led.dim {
  background: #d4843a;
  box-shadow: 0 0 8px #d4843a;
  animation-delay: 0.4s;
}

.monitor iframe {
  width: 100%;
  height: 620px;
  border: 0;
  background: #fff;
}

.joinus {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  place-items: center start;
  overflow: hidden;
  padding: 90px 7vw;
}

.den-banner {
  position: absolute;
  inset: 0;
}

.den-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: ken 22s ease-in-out infinite alternate;
}

.den-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 11, 9, 0.78) 0%, rgba(14, 11, 9, 0.38) 46%, rgba(14, 11, 9, 0.08) 100%);
}

.den-copy {
  position: relative;
  width: min(560px, 100%);
}

.den-cta .btn-ghost.light .mark-x img,
.foot-marks a:first-child img {
  filter: invert(1);
}

.foot {
  position: relative;
  z-index: 2;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 28px 28px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}

.foot .brand.compact .brand-face {
  width: 38px;
  height: 38px;
}

.foot-marks {
  gap: 10px;
}

.foot-marks a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--helmet);
}

.foot-marks a img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.foot-marks a:nth-child(2) img,
.foot-marks a:nth-child(3) img {
  filter: none;
  width: 18px;
}

[data-rise] {
  opacity: 0;
  transform: translateY(22px);
}

[data-rise].is-in {
  animation: rise-in 0.8s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
}

@keyframes rise-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes breathe {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}

@keyframes gleam-sweep {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(45deg); }
  50% { transform: translateY(6px) rotate(45deg); }
}

@keyframes sheen {
  0% { left: -40%; }
  55%, 100% { left: 130%; }
}

@keyframes draw {
  to { stroke-dashoffset: 0; }
}

@keyframes dash {
  to { background-position: 46px 0; }
}

@keyframes pulse {
  50% { opacity: 0.35; }
}

@keyframes ken {
  from { transform: scale(1.04) translate3d(0, 0, 0); }
  to { transform: scale(1.12) translate3d(-1.5%, -1%, 0); }
}

@media (max-width: 980px) {
  .joinus {
    place-items: end start;
    min-height: 520px;
  }

  .den-veil {
    background: linear-gradient(180deg, rgba(14, 11, 9, 0.12) 0%, rgba(14, 11, 9, 0.78) 68%);
  }

  .hero-grid,
  .about .wrap {
    grid-template-columns: 1fr;
  }

  .plaque {
    padding: 26px 22px;
  }

  .plates {
    grid-template-columns: 1fr;
  }

  .paw-trail {
    flex-direction: column;
  }

  .connector {
    width: 3px;
    height: 28px;
    border-top: 0;
    border-left: 3px dashed rgba(38, 29, 23, 0.2);
    margin: 0 auto;
  }

  .monitor iframe {
    height: 460px;
  }
}

@media (max-width: 860px) {
  .links {
    position: fixed;
    inset: 74px 16px auto;
    display: none;
    flex-direction: column;
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 247, 238, 0.96);
    box-shadow: var(--shadow);
  }

  .links.is-open {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .mast {
    padding: 12px 14px;
  }

  .btn-buy span {
    font-size: 0.92rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .iris { display: none; }
}
