@font-face {
  font-family: "Inclusive Sans";
  src: url("/fonts/InclusiveSans-Variable.ttf") format("truetype");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Fragment Mono";
  src: url("/fonts/FragmentMono-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #000;
  --charcoal: #141414;
  --white: #fff;
  --muted: #999;
  --muted-2: oklch(70.8% 0 0);
  --line: rgba(255, 255, 255, 0.14);
  --amber: #ff5e00;
  --amber-soft: #fa0;
  --danger: #ff5c5c;
  --ok: #57ff53;
  --warn: #fa0;
  --radius: 0.5rem;
  --font: "Inclusive Sans", system-ui, sans-serif;
  --mono: "Fragment Mono", ui-monospace, monospace;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font);
  font-weight: 400;
  color: var(--white);
  background: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

.atmosphere {
  display: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.25rem 1.25rem 0;
  box-sizing: border-box;
}

.brand {
  font-family: var(--font);
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
  text-decoration: none;
  letter-spacing: normal;
}

.top-link {
  color: var(--ink);
  background: var(--white);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 400;
  border-radius: 999px;
  padding: 0.55rem 1.1rem;
  transition: opacity 0.15s var(--ease);
}

.top-link:hover {
  opacity: 0.88;
}

main {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1.25rem 4rem;
  text-align: center;
  width: 100%;
}

.hero {
  padding: 2rem 0 2.5rem;
  animation: rise 0.7s var(--ease) both;
  text-align: left;
}

.hero .lede,
.hero .trust,
.hero .scan-form,
.hero .fine,
.hero .stat-counter,
.hero .status {
  margin-left: 0;
  margin-right: 0;
}

.hero .scan-row {
  justify-content: flex-start;
}

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

.eyebrow {
  margin: 0 0 0.85rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.6) 8%,
    #ff5e00 42%,
    #fff 55%,
    #ff5e00 68%,
    rgba(255, 255, 255, 0.6) 92%
  );
  background-size: 270% 150%;
  background-position: 100% 38%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: eyebrow-shine 4s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

@keyframes eyebrow-shine {
  from {
    background-position: 100% 38%;
  }
  to {
    background-position: 0% 62%;
  }
}

.brand-hero {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(2rem, 6vw, 3rem);
  line-height: 1.2;
  letter-spacing: normal;
  text-wrap: balance;
  max-width: none;
  color: var(--white);
}

.lede {
  margin: 1.15rem auto 0;
  max-width: 36rem;
  font-size: clamp(1rem, 2.4vw, 1.25rem);
  font-weight: 300;
  color: var(--muted-2);
  text-wrap: pretty;
}

.scan-form,
.email-form {
  margin-top: 2rem;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.scan-row {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
}

input,
textarea,
button {
  font: inherit;
}

input[type="url"],
input[type="email"],
input[type="text"],
textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #0a0a0a;
  color: var(--white);
  border-radius: var(--radius);
  padding: 0.95rem 1rem;
  outline: none;
  transition: border-color 0.15s var(--ease), box-shadow 0.15s var(--ease);
}

textarea {
  resize: vertical;
  min-height: 7rem;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

input:focus,
textarea:focus {
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.25);
}

.scan-row input {
  flex: 1 1 14rem;
  border-radius: 999px;
}

.panel input[type="url"],
.panel input[type="email"],
.panel input[type="text"],
.panel textarea {
  background: #000;
  border-color: rgba(255, 255, 255, 0.28);
}

button,
.btn-primary,
.btn-secondary {
  appearance: none;
  border: none;
  cursor: pointer;
  border-radius: 999px;
  padding: 1rem 2rem;
  font-weight: 400;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease);
}

button:hover,
.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.9;
}

#scan-btn,
#unlock-btn,
.btn-primary {
  background: var(--white);
  color: var(--ink);
  box-shadow: none;
}

#scan-btn:hover,
#unlock-btn:hover,
.btn-primary:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}

.btn-primary.wide {
  width: 100%;
  margin-top: 0.5rem;
}

button:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
}

.fine {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted);
}

.stat-counter {
  margin: 1.35rem 0 0;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.stat-counter strong {
  font-weight: 400;
  color: var(--white);
  letter-spacing: 0.02em;
}

.trust {
  margin: 1.75rem auto 0;
  max-width: 36rem;
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55;
}

.trust a {
  color: var(--white);
  text-underline-offset: 3px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 1rem auto 0;
  max-width: 36rem;
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.45;
  color: var(--muted-2);
  cursor: pointer;
  text-align: left;
}

.consent input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  margin: 0.15rem 0 0;
  flex-shrink: 0;
  accent-color: var(--white);
  cursor: pointer;
}

.consent span {
  flex: 1;
}

.status {
  margin-top: 1.25rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius);
  background: var(--charcoal);
  color: var(--white);
  font-size: 0.95rem;
}

.status[data-tone="error"] {
  background: rgba(255, 92, 92, 0.12);
  color: var(--danger);
  border: 1px solid rgba(255, 92, 92, 0.35);
}

.status[data-tone="ok"] {
  background: rgba(87, 255, 83, 0.1);
  color: var(--ok);
  border: 1px solid rgba(87, 255, 83, 0.3);
}

.panel {
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: none;
  animation: rise 0.45s var(--ease) both;
}

#teaser {
  text-align: left;
}

#teaser .email-form {
  margin-left: 0;
  margin-right: 0;
}

#teaser .scan-row {
  justify-content: flex-start;
}

#teaser .consent {
  margin-left: 0;
  margin-right: 0;
}

#teaser .consent a {
  color: var(--white);
  text-underline-offset: 3px;
}

.panel-title {
  margin: 0;
  font-family: var(--font);
  font-size: 1.65rem;
  font-weight: 300;
  letter-spacing: normal;
  color: var(--white);
}

.panel-copy {
  margin: 0.5rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 300;
  font-size: 1.05rem;
  line-height: 1.45;
}

.panel-copy strong {
  color: var(--white);
  font-weight: 500;
}

.teaser-score {
  display: block;
  margin-top: 0.65rem;
}

.teaser-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
  text-align: left;
}

.teaser-list li {
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--line);
  font-weight: 400;
}

.teaser-list li.teaser-error {
  color: var(--danger);
  background: rgba(255, 92, 92, 0.1);
  border-color: rgba(255, 92, 92, 0.35);
}

.teaser-list li.teaser-warn {
  color: #ff8a4c;
  background: rgba(255, 94, 0, 0.1);
  border-color: rgba(255, 94, 0, 0.3);
}

.teaser-list li.teaser-ok {
  color: var(--muted-2);
}

.email-form {
  margin-top: 1.5rem;
}

.email-form > label:not(.consent) {
  display: block;
  font-weight: 500;
  margin-bottom: 0.55rem;
}

.score-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

.score-row > div:first-child {
  flex: 1;
  min-width: 0;
}

.stat-strip {
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

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

.stat-strip div {
  padding: 0.75rem 0.85rem;
  border-radius: var(--radius);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
}

.stat-strip strong {
  display: block;
  font-family: var(--font);
  font-size: 1.15rem;
  font-weight: 500;
  letter-spacing: normal;
}

.stat-strip span {
  display: block;
  margin-top: 0.15rem;
  font-size: 0.7rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.report-block {
  margin-top: 1.5rem;
}

.block-title {
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: normal;
}

.issues-heading {
  margin-top: 1.75rem;
}

.block-note {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 300;
}

.coverage,
.detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  text-align: left;
}

.coverage li,
.detail-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
}

.coverage li p {
  margin: 0.2rem 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 300;
}

.detail-list code {
  font-family: var(--mono);
  font-size: 0.78rem;
  word-break: break-all;
  color: rgba(255, 255, 255, 0.82);
}

.cov-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3.2rem;
  padding: 0.25rem 0.45rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-family: var(--mono);
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.cov-ok {
  background: rgba(87, 255, 83, 0.12);
  color: var(--ok);
}
.cov-warn {
  background: rgba(255, 170, 0, 0.14);
  color: var(--warn);
}
.cov-fail {
  background: rgba(255, 92, 92, 0.14);
  color: var(--danger);
}
.cov-info {
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted-2);
}

.ok-collapse {
  margin-top: 0.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(87, 255, 83, 0.25);
  background: rgba(87, 255, 83, 0.06);
}

.ok-collapse > summary {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  cursor: pointer;
  list-style: none;
  font-weight: 400;
  color: var(--white);
}

.ok-collapse > summary::-webkit-details-marker {
  display: none;
}

.ok-collapse > summary::after {
  content: "+";
  margin-left: auto;
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--muted-2);
}

.ok-collapse[open] > summary::after {
  content: "−";
}

.ok-collapse > .coverage,
.ok-collapse > .detail-list {
  margin: 0;
  padding: 0 0.65rem 0.65rem;
  border-top: 1px solid rgba(87, 255, 83, 0.15);
}

.ok-collapse > .coverage li,
.ok-collapse > .detail-list li {
  margin-top: 0.5rem;
}

.score {
  flex: 0 0 auto;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  background: conic-gradient(
    rgba(255, 255, 255, 0.55) 0%,
    #ff5e00 calc(var(--p, 0) * 0.28%),
    #fff calc(var(--p, 0) * 0.5%),
    #ff5e00 calc(var(--p, 0) * 0.72%),
    rgba(255, 255, 255, 0.7) calc(var(--p, 0) * 1%),
    rgba(255, 255, 255, 0.12) 0
  );
  position: relative;
  animation: pop 0.5s var(--ease) both;
}

.score::before {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 50%;
  background: var(--charcoal);
}

.score span,
.score small {
  position: relative;
  z-index: 1;
}

.score span {
  font-family: var(--font);
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
}

.score small {
  display: block;
  font-size: 0.65rem;
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

@keyframes pop {
  from {
    transform: scale(0.85);
    opacity: 0;
  }
  to {
    transform: none;
    opacity: 1;
  }
}

.issues {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  text-align: left;
}

.issues li {
  padding: 1rem 1.1rem;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  animation: rise 0.4s var(--ease) both;
}

.issues li .sev {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  padding: 0 0.55rem;
  height: 1.5rem;
  box-sizing: border-box;
  border-radius: 999px;
}

.issue-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.45rem;
}

.issue-tags .sev,
.issue-tags .pillar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 1.5rem;
  margin: 0;
  padding: 0 0.55rem;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1;
  border-radius: 999px;
  box-sizing: border-box;
  vertical-align: middle;
}

.pillar {
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-2);
}

.pillar-errors {
  background: rgba(255, 92, 92, 0.14);
  color: var(--danger);
}
.pillar-speed {
  background: rgba(255, 170, 0, 0.14);
  color: var(--warn);
}
.pillar-updates {
  background: rgba(255, 94, 0, 0.16);
  color: #ff8a4c;
}

.sev-critical {
  color: var(--danger);
}
.sev-high {
  color: #ff8a4c;
}
.sev-medium {
  color: var(--warn);
}
.sev-info {
  color: var(--muted-2);
}

.issues li strong {
  display: block;
  font-size: 1.05rem;
  font-weight: 500;
}

.issues li p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
}

.cta {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1rem;
  background: var(--white);
  color: var(--ink);
}

.cta.soft {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--line);
}

.cta h3 {
  margin: 0;
  font-family: var(--font);
  font-size: 1.35rem;
  font-weight: 400;
}

.cta p {
  margin: 0.45rem 0 1rem;
  opacity: 0.8;
  font-weight: 300;
}

.cta .btn-primary {
  background: var(--ink);
  color: var(--white);
}

.cta.soft .btn-secondary {
  border-color: var(--line);
}

.offer {
  margin-top: 2.5rem;
  padding: 2rem 1.5rem;
  border-radius: 1.25rem;
  border: 1px solid var(--line);
  background: var(--charcoal);
  text-align: left;
}

.offer-eyebrow {
  margin: 0 0 0.75rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.6) 8%,
    #ff5e00 42%,
    #fff 55%,
    #ff5e00 68%,
    rgba(255, 255, 255, 0.6) 92%
  );
  background-size: 270% 150%;
  background-position: 100% 38%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: eyebrow-shine 4s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.offer-title {
  margin: 0;
  font-family: var(--font);
  font-weight: 300;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  line-height: 1.25;
  text-wrap: balance;
  color: var(--white);
}

.offer-copy {
  margin: 1rem 0 1.25rem;
  max-width: 36rem;
  color: var(--muted-2);
  font-weight: 300;
  font-size: 1.05rem;
}

.offer-exclude {
  margin: 1.25rem 0 0;
  max-width: 36rem;
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--muted);
}

.offer-followup {
  margin: 0 0 1.5rem;
  max-width: 36rem;
  color: var(--muted-2);
  font-weight: 300;
  font-size: 1.05rem;
}

.or-divider {
  margin: 0;
  padding-block: 2.5rem;
  line-height: 1;
  font-family: var(--mono);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}

/* Spacing simmetrico: solo il padding del divider, niente margin extra sull’offer */
#or-divider:not([hidden]) + #check-manuale {
  margin-top: 0;
}

.contact-form {
  margin-top: 0.25rem;
  display: grid;
  gap: 0.85rem;
  text-align: left;
}

.contact-form .consent {
  margin: 0.25rem 0 0;
  max-width: none;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
}

.contact-form .consent > span {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--muted-2);
  line-height: 1.45;
}

.contact-form .consent a {
  color: var(--white);
  text-underline-offset: 3px;
}

.contact-grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 560px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label > span {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}

.contact-form .hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

#contact-status[data-tone="ok"] {
  color: var(--ok);
}

#contact-status[data-tone="error"] {
  color: var(--danger);
}

#contact-status[data-tone="info"] {
  color: var(--muted-2);
}

.foot {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 75rem;
  margin: 0 auto;
  padding: 1.25rem;
  box-sizing: border-box;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 300;
}

.foot-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.foot-disclaimer {
  margin: 0;
  flex: 1 1 16rem;
  line-height: 1.45;
  min-width: 0;
  max-width: 36rem;
  text-wrap: pretty;
}

.foot-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
}

.foot-nav a {
  color: var(--white);
  text-decoration: none;
  text-underline-offset: 3px;
}

.foot-nav a:hover {
  text-decoration: underline;
}

.foot-legal {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
}

.foot a {
  color: var(--white);
  text-underline-offset: 3px;
}

@media (max-width: 720px) {
  .foot {
    align-items: stretch;
    padding: 1.5rem 1.25rem 1.75rem;
  }

  .foot-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .foot-disclaimer {
    flex: none;
    width: 100%;
    max-width: none;
  }

  .foot-legal {
    white-space: normal;
  }
}

[hidden] {
  display: none !important;
}

.next-pillow {
  position: fixed;
  left: 50%;
  bottom: max(1.25rem, env(safe-area-inset-bottom));
  z-index: 40;
  transform: translate3d(-50%, 0, 0) scale(1);
  transform-origin: center bottom;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.05rem 2.4rem;
  border-radius: 999px;
  text-decoration: none;
  color: inherit;
  background: rgba(12, 12, 12, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 14px 44px rgba(0, 0, 0, 0.45);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  opacity: 1;
  pointer-events: auto;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.next-pillow-label {
  font-family: var(--mono);
  font-size: clamp(0.85rem, 2.5vw, 1rem);
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: transparent;
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(
    105deg,
    rgba(255, 255, 255, 0.6) 8%,
    #ff5e00 42%,
    #fff 55%,
    #ff5e00 68%,
    rgba(255, 255, 255, 0.6) 92%
  );
  background-size: 270% 150%;
  background-position: 100% 38%;
  -webkit-background-clip: text;
  background-clip: text;
  animation: eyebrow-shine 4s cubic-bezier(0.45, 0, 0.55, 1) infinite alternate;
}

.next-pillow.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translate3d(-50%, 36px, 0) scale(0.78);
}

@media (max-width: 480px) {
  .next-pillow {
    padding: 0.95rem 1.6rem;
  }

  .next-pillow-label {
    letter-spacing: 0.1em;
  }
}
