/* AI Sticker Pack — Marketing site */
:root {
  --green: #25d366;
  --green-dark: #128c7e;
  --green-deep: #075e54;
  --green-soft: #dcf8c6;
  --green-mist: #e8f8ef;
  --ink: #0b1f1a;
  --ink-soft: #3d524c;
  --cream: #f7fbf8;
  --white: #ffffff;
  --yellow: #ffd93d;
  --shadow: 0 24px 60px rgba(7, 94, 84, 0.18);
  --radius: 28px;
  --font-display: "Fredoka", system-ui, sans-serif;
  --font-body: "Outfit", system-ui, sans-serif;
  --max: 1120px;
  --header-h: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: 0.65rem 1rem;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  border-radius: 10px;
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--green-deep);
  outline-offset: 2px;
}

.scroll-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 150;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.22);
  display: grid;
  place-items: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s, background 0.2s;
}

.scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background: var(--green-deep);
}

.scroll-top:focus-visible {
  outline: 2px solid var(--green-deep);
  outline-offset: 3px;
}

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

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s;
}

.site-header.is-scrolled {
  background: rgba(247, 251, 248, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(7, 94, 84, 0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.02em;
}

.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.2s;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 1.15rem;
  background: var(--green);
  color: var(--white) !important;
  border-radius: 999px;
  font-weight: 600 !important;
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.45);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 12px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  position: relative;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  height: 2px;
  background: var(--ink);
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

/* —— Buttons —— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 14px 32px rgba(11, 31, 26, 0.28);
}

.btn-primary:hover {
  box-shadow: 0 18px 40px rgba(11, 31, 26, 0.35);
}

.btn-light {
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 10px 28px rgba(7, 94, 84, 0.15);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.45);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
}

.store-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 1.15rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 14px;
  min-width: 168px;
  transition: transform 0.2s, opacity 0.2s;
}

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

.store-badge svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}

.store-badge small {
  display: block;
  font-size: 0.65rem;
  opacity: 0.75;
  font-weight: 400;
  line-height: 1.1;
}

.store-badge strong {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.15;
}

/* —— Hero —— */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  color: var(--white);
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 217, 61, 0.22), transparent 55%),
    radial-gradient(ellipse 70% 50% at 15% 80%, rgba(7, 94, 84, 0.45), transparent 50%),
    linear-gradient(155deg, #1fa855 0%, var(--green) 42%, var(--green-dark) 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 60%, rgba(255, 255, 255, 0.06) 0 2px, transparent 3px),
    radial-gradient(circle at 45% 75%, rgba(255, 255, 255, 0.05) 0 1.5px, transparent 2.5px);
  background-size: 120px 120px, 90px 90px, 70px 70px;
  pointer-events: none;
  opacity: 0.7;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 3rem;
  align-items: center;
}

.hero-copy {
  max-width: 36rem;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  animation: rise 0.8s ease both;
}

.hero-brand img {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.hero-brand span {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.1rem;
  animation: rise 0.8s 0.08s ease both;
}

.hero-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  opacity: 0.92;
  max-width: 32rem;
  margin-bottom: 1.75rem;
  animation: rise 0.8s 0.16s ease both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
  animation: rise 0.8s 0.24s ease both;
}

.hero-note {
  font-size: 0.9rem;
  opacity: 0.8;
  animation: rise 0.8s 0.3s ease both;
}

.hero-visual {
  position: relative;
  height: min(52vw, 420px);
  min-height: 280px;
  animation: rise 0.9s 0.2s ease both;
}

.sticker-sheet {
  position: absolute;
  inset: 8% 8% 8% 18%;
  background: rgba(255, 255, 255, 0.14);
  border: 2px solid rgba(255, 255, 255, 0.28);
  border-radius: 24px;
  backdrop-filter: blur(8px);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 6px;
  padding: 10px;
  box-shadow: var(--shadow);
  transform: rotate(-4deg);
  animation: float-sheet 7s ease-in-out infinite;
}

.hero-sheet {
  position: absolute;
  inset: 4% 6% 4% 16%;
  width: calc(100% - 22%);
  height: calc(100% - 8%);
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
  transform: rotate(-4deg);
  animation: float-sheet 7s ease-in-out infinite;
  background: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.sticker-cell {
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: clamp(0.75rem, 2vw, 1.15rem);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transform-origin: center;
  animation: pop-in 0.5s ease both;
}

.sticker-cell:nth-child(odd) {
  animation-delay: calc(0.35s + var(--i, 0) * 0.03s);
}

.peel-sticker {
  position: absolute;
  width: clamp(88px, 18vw, 130px);
  height: clamp(88px, 18vw, 130px);
  border-radius: 50%;
  background: var(--white);
  display: grid;
  place-items: center;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  z-index: 3;
  animation: float-peel 5.5s ease-in-out infinite;
}

.peel-sticker::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: 6%;
  width: 28%;
  height: 28%;
  background: linear-gradient(135deg, transparent 48%, #f0f0f0 50%, #fff 100%);
  border-radius: 0 0 50% 0;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  box-shadow: -2px -2px 6px rgba(0, 0, 0, 0.08);
}

.peel-1 {
  top: 4%;
  right: 0;
  animation-delay: -1s;
}

.peel-2 {
  bottom: 6%;
  left: 0;
  animation-delay: -2.5s;
  animation-duration: 6.5s;
}

.sparkle {
  position: absolute;
  width: 18px;
  height: 18px;
  background: var(--white);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  opacity: 0.85;
  animation: twinkle 2.8s ease-in-out infinite;
}

.sparkle-1 {
  top: 12%;
  left: 8%;
}

.sparkle-2 {
  bottom: 18%;
  right: 12%;
  width: 12px;
  height: 12px;
  animation-delay: -1.2s;
}

/* —— Sections shared —— */
section {
  padding: 5.5rem 0;
}

.section-kicker {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--green-dark);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 0.85rem;
  max-width: 18ch;
}

.section-lead {
  color: var(--ink-soft);
  font-size: 1.1rem;
  max-width: 36rem;
  margin-bottom: 2.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* —— How it works —— */
.how {
  background: var(--white);
}

.steps {
  display: grid;
  gap: 1.5rem;
  counter-reset: step;
}

.step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: start;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(7, 94, 84, 0.1);
}

.step:last-child {
  border-bottom: 1px solid rgba(7, 94, 84, 0.1);
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--green-mist);
  color: var(--green-deep);
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  display: grid;
  place-items: center;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: -0.02em;
}

.step p {
  color: var(--ink-soft);
}

/* —— Features —— */
.features {
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(37, 211, 102, 0.12), transparent 60%),
    var(--cream);
}

.feature-list {
  display: grid;
  gap: 0;
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.75rem 0;
  border-top: 1px solid rgba(7, 94, 84, 0.12);
}

.feature-row:last-child {
  border-bottom: 1px solid rgba(7, 94, 84, 0.12);
}

.feature-row h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.feature-row p {
  color: var(--ink-soft);
  max-width: 40rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.chip {
  padding: 0.4rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--green-deep);
}

/* —— Pricing —— */
.pricing {
  background: var(--green-deep);
  color: var(--white);
}

.pricing .section-kicker {
  color: var(--green);
}

.pricing .section-lead {
  color: rgba(255, 255, 255, 0.78);
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.price-plan {
  padding: 1.75rem 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  transition: transform 0.25s, background 0.25s;
}

.price-plan:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.12);
}

.price-plan.is-popular {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.price-plan.is-popular .plan-tag {
  background: var(--green);
  color: var(--white);
}

.plan-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  margin-bottom: 0.5rem;
}

.price-plan h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}

.price-plan .credits {
  font-size: 2.4rem;
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0.4rem 0;
}

.price-plan .credits span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.price-plan .amount {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-bottom: 0.5rem;
}

.price-plan p {
  font-size: 0.92rem;
  opacity: 0.8;
}

.pricing-note {
  margin-top: 1.75rem;
  font-size: 0.95rem;
  opacity: 0.8;
}

/* —— FAQ —— */
.faq {
  background: var(--cream);
  padding: 5rem 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
  max-width: 720px;
}

.faq-item {
  background: var(--white);
  border: 1px solid rgba(7, 94, 84, 0.12);
  border-radius: 18px;
  padding: 0;
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.1rem;
  letter-spacing: -0.02em;
  padding: 1.15rem 1.35rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 999px;
  background: var(--green-mist);
  color: var(--green-deep);
  display: grid;
  place-items: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.2s, transform 0.2s;
}

.faq-item[open] summary::after {
  content: "–";
  background: var(--green);
  color: var(--white);
}

.faq-item p {
  color: var(--ink-soft);
  padding: 0 1.35rem 1.25rem;
  max-width: 40rem;
}

.faq-item a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* —— CTA band —— */
.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 20%, rgba(255, 217, 61, 0.35), transparent 40%),
    linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  text-align: center;
  padding: 5rem 0;
}

.cta-band .section-title {
  max-width: none;
  margin-inline: auto;
  margin-bottom: 0.75rem;
}

.cta-band .section-lead {
  color: rgba(255, 255, 255, 0.88);
  margin-inline: auto;
  margin-bottom: 2rem;
}

.cta-band .store-row {
  justify-content: center;
}

/* —— Footer —— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.footer-brand img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--green);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.88rem;
}

/* —— Legal pages —— */
.legal-page {
  padding: calc(var(--header-h) + 3rem) 0 5rem;
  background: var(--white);
}

.legal-page .container {
  max-width: 720px;
}

.legal-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  letter-spacing: -0.03em;
  margin-bottom: 0.5rem;
}

.legal-meta {
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
}

.legal-page h2 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 2rem 0 0.65rem;
  letter-spacing: -0.02em;
}

.legal-page h3 {
  font-family: var(--font-display);
  font-size: 1.08rem;
  margin: 1.35rem 0 0.45rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.legal-page p,
.legal-page li {
  color: var(--ink-soft);
  margin-bottom: 0.85rem;
}

.legal-page ul,
.legal-page ol {
  padding-left: 1.25rem;
  margin-bottom: 1rem;
}

.legal-page a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-header .nav-cta {
  display: none;
}

.legal-header.is-scrolled .nav a {
  color: var(--ink-soft);
}

/* —— Animations —— */
@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@keyframes float-sheet {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }
  50% {
    transform: rotate(-2deg) translateY(-12px);
  }
}

@keyframes float-peel {
  0%,
  100% {
    transform: translateY(0) rotate(8deg);
  }
  50% {
    transform: translateY(-14px) rotate(4deg);
  }
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.85) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.15) rotate(20deg);
  }
}

@keyframes pop-in {
  from {
    opacity: 0;
    transform: scale(0.5);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* —— Responsive —— */
@media (min-width: 860px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
  }

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

  .feature-row {
    grid-template-columns: 280px 1fr;
    align-items: baseline;
  }
}

@media (max-width: 900px) {
  .price-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.25rem;
    background: rgba(247, 251, 248, 0.96);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(7, 94, 84, 0.1);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .nav.is-open {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid rgba(7, 94, 84, 0.08);
  }

  .nav-cta {
    margin-top: 0.75rem;
    justify-content: center;
  }

  .hero {
    align-items: start;
    padding-bottom: 3rem;
  }

  .hero-visual {
    order: -1;
    height: 260px;
    min-height: 240px;
  }

  .sticker-sheet {
    inset: 10% 12% 10% 22%;
  }

  .hero-sheet {
    inset: 6% 10% 6% 22%;
  }
}

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

  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
