:root {
  --text: #ffffff;
  --muted: rgba(255, 255, 255, 0.7);
  --cursor-pointer-accent: #f0a013;
}

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

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  position: relative;
  isolation: isolate;
  background-color: #20130b;
  background-image: linear-gradient(to bottom right, rgba(16, 8, 5, 0.08), rgba(16, 8, 5, 0.2));
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: hidden;
}

body.page-ready {
  overflow-y: hidden;
}

body.page-ready.scroll-unlocked {
  overflow-y: auto;
}

body.page-ready.scroll-unlocked.no-scroll-needed {
  overflow-y: hidden;
}

.site-bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s ease, transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

.cursor-dot,
.cursor-follower {
  display: none;
}

@media (pointer: fine) {
  body {
    cursor: none !important;
  }

  input,
  button,
  a,
  .brand {
    cursor: none !important;
  }

  .cursor-dot {
    display: block;
    width: 6px;
    height: 6px;
    background: #fff;
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 999px;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, border-radius 0.2s, background-color 0.2s, border-color 0.2s, box-shadow 0.2s;
  }

  .cursor-follower {
    display: block;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    position: fixed;
    top: 0;
    left: 0;
    border-radius: 999px;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: opacity 0.2s;
  }

  .cursor-dot.guiding {
    width: 20px;
    height: 20px;
    background: transparent;
    transform: translate(-50%, -50%) rotate(var(--cursor-angle, 0deg));
  }

  .cursor-dot.guiding::after {
    content: '→';
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: block;
    line-height: 1;
  }

  .cursor-dot.active {
    transform: translate(-50%, -50%) scale(0.75);
  }

  .cursor-dot.typing {
    width: 2px;
    height: 22px;
    border-radius: 0;
  }

  .cursor-follower.typing {
    opacity: 0;
  }

  .cursor-dot.is-pointer {
    width: 12px;
    height: 12px;
    background-color: transparent;
    border: 1.5px solid var(--cursor-pointer-accent);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.35);
    mix-blend-mode: difference;
    animation: cursorPulse 1.2s infinite ease-in-out;
  }

  @keyframes cursorPulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
    }

    50% {
      transform: translate(-50%, -50%) scale(1.15);
    }

    100% {
      transform: translate(-50%, -50%) scale(1);
    }
  }

  .cursor-follower.hover-active {
    opacity: 0;
  }
}







.screen {
  position: relative;
  z-index: 1;
  opacity: 0;
  transform: translateY(10px) scale(0.995);
  min-height: 100vh;
  min-height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: clamp(1rem, 3vh, 3rem) clamp(1rem, 3vw, 3rem);
  overflow: hidden;
}

body.page-ready .screen {
  animation: screenReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes screenReveal {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.995);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.topbar {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  user-select: none;
}

.brand img {
  height: 34px;
  width: auto;
}

.topbar nav {
  display: flex;
  gap: 1rem;
}

.topbar nav a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 400;
  transition: opacity 0.2s;
}

.topbar nav a:hover {
  opacity: 0.7;
}

.hero {
  flex: 0 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: clamp(0.75rem, 6vh, 8vh);
  margin-bottom: auto;
  /* Pushes the waitlist to the bottom */
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(2.6rem, 8.6vw, 6.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: clamp(0.7rem, 1.2vw, 1rem);
  letter-spacing: 0.3em;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 500;
}

.waitlist {
  width: min(96vw, 420px);
  max-width: 100%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  /* For popover positioning */
  padding-bottom: clamp(1.35rem, 4vh, 2.8rem);
  min-height: clamp(7.2rem, 15vh, 9rem);
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}


.waitlist>.waitlist-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  color: var(--muted);
}

.waitlist-form {
  display: flex;
  gap: 0;
  width: 100%;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.waitlist-form:focus-within {
  border-color: rgba(255, 255, 255, 0.6);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}

.waitlist-form input {
  flex: 1;
  flex-basis: auto;
  min-width: 0;
  height: 52px;
  border: 0;
  background: transparent;
  color: #ffffff;
  padding: 0 0.85rem;
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  outline: none;
  letter-spacing: 0;
  transition: flex-basis 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    opacity 0.35s ease,
    transform 0.45s cubic-bezier(0.23, 1, 0.32, 1),
    padding 0.35s ease;
}

.waitlist-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
  transition: opacity 0.3s ease;
}

.waitlist-form input:focus::placeholder {
  opacity: 0.2;
}

.waitlist-form input:-webkit-autofill,
.waitlist-form input:-webkit-autofill:hover,
.waitlist-form input:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff;
  -webkit-box-shadow: 0 0 0 1000px transparent inset;
  transition: background-color 9999s ease-in-out 0s;
}

.waitlist-form button {
  width: 52px;
  height: 52px;
  border: 0;
  padding: 0;
  background: #ffffff;
  color: #1a0f08;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: none !important;
  /* Ensure native cursor is hidden */
  position: relative;
  overflow: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, background-color 0.4s cubic-bezier(0.23, 1, 0.32, 1),
    width 0.45s cubic-bezier(0.23, 1, 0.32, 1), border-radius 0.45s cubic-bezier(0.23, 1, 0.32, 1);
}

.waitlist-form.has-valid button {
  display: flex;
}

.waitlist-form button svg {
  position: relative;
  z-index: 2;
  transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1), color 0.3s ease;
  display: block;
}

.waitlist-form button:hover {
  background-color: #ffffff;
  color: #1a0f08;
}

.waitlist-form button:hover svg {
  animation: none;
}

@keyframes arrowShoot {
  0% {
    transform: translateX(0);
    opacity: 1;
  }

  30% {
    transform: translateX(20px);
    opacity: 0;
  }

  31% {
    transform: translateX(-20px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.waitlist-form button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: 1;
}

.waitlist-form button:hover::after {
  width: 0;
  height: 0;
}

.waitlist-legal {
  margin: 0.68rem auto 0;
  width: min(100%, 390px);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.66rem;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.62);
  text-align: center;
  text-transform: none;
}

.waitlist-legal a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.15em;
}

.waitlist-legal a:hover,
.waitlist-legal a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.85);
}


.mailerlite-status {
  margin-top: 0.5rem;
  width: 100%;
  max-width: 100%;
  font-size: 0.84rem;
  color: #ffffff;
  opacity: 0;
  display: none;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  text-align: left;
  padding: 0.62rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.06);
  transition: opacity 0.4s ease;
}

.waitlist.is-success .mailerlite-status,
.waitlist.is-error .mailerlite-status {
  display: flex;
  opacity: 1;
}

.waitlist.is-loading .mailerlite-status {
  display: none;
  opacity: 0;
}

.waitlist.is-success .waitlist-form,
.waitlist.is-success .waitlist-kicker,
.waitlist.is-success .waitlist-legal {
  display: none;
}

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

.waitlist-form.is-submitting {
  border-color: transparent;
  box-shadow: 0 0 16px rgba(240, 160, 19, 0.18);
  background: transparent;
}

.waitlist-form.is-submitting input {
  flex-basis: 0;
  width: 0;
  min-width: 0;
  padding-left: 0;
  padding-right: 0;
  opacity: 0;
  transform: scale(0.92);
  pointer-events: none;
}

.waitlist-form.is-submitting button {
  display: flex;
  width: 100%;
  border-radius: 999px;
  pointer-events: none;
  background: transparent;
  color: #ffffff;
}

.waitlist-form.is-submitting button svg {
  opacity: 0;
}

.waitlist-form.is-submitting button::before {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: #ffffff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
  z-index: 3;
}

.waitlist.is-loading .email-popover {
  display: none !important;
}

.waitlist.is-success .mailerlite-status {
  margin: 0;
  width: auto;
  max-width: max-content;
  font-size: 0.84rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(255, 244, 220, 0.84);
  min-height: 42px;
  justify-content: center;
  text-align: center;
  border-color: rgba(245, 187, 74, 0.32);
  background: rgba(245, 187, 74, 0.1);
}

.instagram-success-cta {
  display: none;
  margin-top: 1.1rem;
  border: 1px solid rgba(240, 160, 19, 0.5);
  background: rgba(240, 160, 19, 0.12);
  color: #f5bb4a;
  text-decoration: none;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  align-items: center;
  gap: 0.45rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.instagram-success-cta:hover {
  color: #ffd27b;
  border-color: rgba(245, 187, 74, 0.75);
  background: rgba(240, 160, 19, 0.2);
  transform: translateY(-1px);
}

.waitlist.is-success .instagram-success-cta {
  display: inline-flex;
  margin-top: 0;
  flex-shrink: 0;
  min-height: 42px;
  padding: 0.5rem 0.82rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  color: #1f130d;
  border-color: rgba(255, 255, 255, 0.95);
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.22);
}

.waitlist.is-success .instagram-success-cta:hover {
  color: #1f130d;
  border-color: #ffffff;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
}

.waitlist.is-success .mailerlite-status::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(245, 187, 74, 0.52);
  background: rgba(245, 187, 74, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='14' rx='2'/%3E%3Cpath d='m3 7 9 6 9-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.waitlist.is-success.is-already-inside .mailerlite-status::before {
  border-color: rgba(138, 234, 174, 0.55);
  background: rgba(76, 173, 113, 0.14);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2398ffbf' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px;
}

.waitlist.is-error .mailerlite-status {
  margin: 0.5rem auto 0;
  width: auto;
  max-width: max-content;
  font-size: 0.84rem;
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(255, 186, 186, 0.9);
  min-height: 42px;
  border-color: rgba(255, 136, 136, 0.4);
  background: rgba(255, 92, 92, 0.1);
  justify-content: center;
  text-align: center;
}

.waitlist.is-error .mailerlite-status::before {
  content: '';
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  border: 1px solid rgba(255, 140, 140, 0.55);
  background: rgba(255, 105, 105, 0.18);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23ff8a8a' stroke-width='2.3' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='9'/%3E%3Cpath d='m9 9 6 6'/%3E%3Cpath d='m15 9-6 6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
}

.email-popover {
  display: none;
  margin-top: 0.75rem;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
  animation: pillsFadeIn 0.3s ease;
}

@keyframes pillsFadeIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.email-popover.is-open {
  display: flex;
}

.email-popover button {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  line-height: 1;
  cursor: none;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.email-popover button:hover,
.email-popover button.is-active {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(240, 160, 19, 0.4);
  color: #f0a013;
  transform: translateY(-1px);
}




.footer-minimal {
  padding-top: clamp(0.4rem, 1.4vh, 1rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.3rem;
}

.footer-minimal span {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.56);
}

.footer-minimal a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-minimal a:hover {
  text-decoration: none;
}

.footer-social-link {
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.4rem 0.75rem 0.4rem 0.5rem;
  margin-bottom: 0.2rem;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, background-color 0.25s ease;
}

.footer-social-handle {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-social-link:hover {
  text-decoration: none;
  color: #f0a013;
  border-color: rgba(240, 160, 19, 0.6);
  background-color: rgba(240, 160, 19, 0.12);
  transform: translateY(-1px);
}

.waitlist.is-success+.footer-minimal .footer-social-link {
  display: none;
}

.waitlist.is-success {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.waitlist.is-success.is-already-inside {
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}

@media (max-width: 768px) {
  .screen {
    min-height: 100vh;
    min-height: 100dvh;
    max-height: none;
    padding: clamp(1rem, 2.5vh, 2rem) 1.25rem;
    gap: 1rem;
    overflow: visible;
  }

  .topbar nav {
    display: none;
  }

  .hero-title {
    font-size: clamp(2.45rem, 12.2vw, 4.2rem);
    margin-bottom: 0.5rem;
  }

  .hero-subtitle {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    padding: 0 1rem;
  }

  .waitlist {
    padding-bottom: 1.75rem;
  }

  .waitlist-form {
    flex-direction: row;
    padding: 2px;
    background: rgba(255, 255, 255, 0.04);
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }

  .waitlist-form input {
    height: 48px;
    text-align: left;
    font-size: 16px;
    padding: 0 1rem;
  }

  .waitlist-form button {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
  }

  .waitlist-form.is-submitting input {
    transform: scale(0.94);
  }

  .waitlist-form.is-submitting button {
    width: 100%;
  }

  .waitlist-form.is-submitting button::before {
    width: 16px;
    height: 16px;
  }

  .footer-minimal {
    padding-bottom: 0.5rem;
    gap: 0.7rem;
  }

  .footer-minimal span {
    font-size: 0.62rem;
  }

  .waitlist.is-success {
    justify-content: center;
    gap: 0.4rem;
  }

  .waitlist.is-success.is-already-inside {
    gap: 0.35rem;
  }

  .waitlist.is-success .mailerlite-status {
    font-size: 0.76rem;
    width: auto;
    max-width: max-content;
    min-height: 40px;
    padding: 0.5rem 0.72rem;
  }

  .waitlist.is-success .mailerlite-status::before {
    width: 17px;
    height: 17px;
    background-size: 10px 10px;
  }

  .waitlist.is-error .mailerlite-status {
    font-size: 0.76rem;
    width: auto;
    max-width: max-content;
    min-height: 40px;
    margin-top: 0.45rem;
    padding: 0.5rem 0.72rem;
  }

  .waitlist.is-error .mailerlite-status::before {
    width: 17px;
    height: 17px;
    background-size: 10px 10px;
  }

  .waitlist {
    min-height: 7.4rem;
  }

  .waitlist.is-success .instagram-success-cta {
    justify-self: auto;
  }
}

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

  .cursor-dot,
  .cursor-follower {
    display: none !important;
  }
}

.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;
}

.confirmation-page .screen {
  position: relative;
  z-index: 1;
  justify-content: space-between;
}

.confirmation-page {
  position: relative;
  isolation: isolate;
  background-image: linear-gradient(to bottom right, rgba(16, 8, 5, 0.08), rgba(16, 8, 5, 0.2));
}

.confirmation-bg-image {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: hue-rotate(80deg) saturate(1);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.4s ease, transform 2.4s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: -1;
  pointer-events: none;
}

body.bg-ready .site-bg-image,
body.bg-ready .confirmation-bg-image {
  opacity: 1;
  transform: scale(1);
}

.confirmation-page {
  --cursor-pointer-accent: #65e39c;
}

.confirmation-hero {
  margin-bottom: 0;
  padding-top: clamp(0.75rem, 5vh, 6vh);
}

.confirmation-hero .hero-title {
  margin-bottom: 0.7rem;
}

.confirmation-hero .hero-subtitle {
  letter-spacing: 0.22em;
}

.confirmation-panel {
  width: min(96vw, 480px);
  margin: 0 auto;
  text-align: center;
  padding: clamp(1.1rem, 3vh, 1.6rem) clamp(1rem, 3vw, 1.5rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.13) 0%, rgba(255, 255, 255, 0.03) 100%);
  border-radius: 18px;
  backdrop-filter: blur(5px);
  opacity: 0;
  animation: fadeInUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.3s forwards;
}

.confirmation-copy {
  font-size: clamp(0.9rem, 1.8vw, 1rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0.75rem;
}

.confirmation-instagram-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 42px;
  padding: 0.5rem 0.82rem;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1f130d;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.confirmation-instagram-cta:hover,
.confirmation-instagram-cta:focus-visible {
  color: #1f130d;
  text-decoration: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.28);
}

.confirmation-divider {
  font-size: 1rem;
  line-height: 1;
  color: rgba(255, 255, 255, 0.55);
  margin: 0.95rem 0 0.85rem;
}

.confirmation-signature {
  font-size: clamp(0.86rem, 1.6vw, 0.95rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
}

.confirmation-signature-lead {
  margin-bottom: 0.72rem;
}

.confirmation-signature-main {
  margin-top: 0.1rem;
  font-size: clamp(1.05rem, 2.4vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
}

.confirmation-signature-translation {
  margin-top: 0.12rem;
  font-size: clamp(0.82rem, 1.55vw, 0.92rem);
  font-style: italic;
  color: rgba(255, 255, 255, 0.72);
}

.policy-page {
  --cursor-pointer-accent: #9ac3e8;
}

.policy-page .confirmation-bg-image {
  filter: hue-rotate(200deg) saturate(1);
}

.policy-panel {
  width: min(96vw, 780px);
  text-align: left;
}

.policy-meta {
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
  margin-bottom: 1rem;
}

.policy-copy,
.policy-panel li {
  font-size: 0.92rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
}

.policy-heading {
  margin: 1rem 0 0.35rem;
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
}

.policy-panel ul {
  margin: 0.2rem 0 0.75rem 1.15rem;
  padding: 0;
}

.policy-panel a {
  color: rgba(255, 255, 255, 0.95);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.4);
  text-underline-offset: 0.15em;
}

.policy-panel a:hover,
.policy-panel a:focus-visible {
  color: #ffffff;
  text-decoration-color: rgba(255, 255, 255, 0.8);
}

.policy-subscribe-cta {
  margin-top: 1.05rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: none;
  font-weight: 600;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.25s ease, gap 0.25s ease;
}

.policy-subscribe-cta:hover,
.policy-subscribe-cta:focus-visible {
  color: #ffffff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.8);
  text-underline-offset: 0.16em;
  gap: 0.58rem;
}

.policy-subscribe-cta svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .confirmation-page .screen {
    padding: max(1rem, env(safe-area-inset-top)) clamp(1rem, 4.2vw, 1.25rem) max(0.9rem, env(safe-area-inset-bottom));
    gap: 0.65rem;
    justify-content: space-between;
  }

  .confirmation-hero {
    padding-top: clamp(0.3rem, 2.1vh, 0.75rem);
  }

  .confirmation-hero .hero-title {
    margin-bottom: 0.35rem;
    font-size: clamp(2.05rem, 10.8vw, 2.75rem);
  }

  .confirmation-hero .hero-subtitle {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
  }

  .confirmation-panel {
    width: 100%;
    max-width: 420px;
    padding: 1rem 1.08rem 1.1rem;
    border-radius: 14px;
  }

  .confirmation-copy {
    font-size: 0.86rem;
    line-height: 1.5;
    margin-bottom: 0.58rem;
  }

  .confirmation-divider {
    margin: 0.75rem 0 0.62rem;
  }

  .confirmation-signature {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .confirmation-signature-lead {
    margin-bottom: 0.54rem;
  }

  .confirmation-signature-main {
    font-size: clamp(0.98rem, 4.8vw, 1.16rem);
  }

  .confirmation-signature-translation {
    font-size: 0.78rem;
  }

  .confirmation-instagram-cta {
    margin-top: 0.85rem;
    font-size: 0.66rem;
    padding: 0.48rem 0.76rem;
  }

  .policy-panel {
    width: 100%;
    max-width: 520px;
  }

  .policy-copy,
  .policy-panel li {
    font-size: 0.87rem;
  }

  .policy-subscribe-cta {
    font-size: 0.73rem;
  }

  .confirmation-page .footer-minimal {
    padding-top: 0.3rem;
    gap: 0.48rem;
  }
}
