:root {
  --paper: #eee7dd;
  --ink: #0c0a08;
  --cyan: #17c7e9;
  --pink: #ff0d7b;
  --white: #fffaf4;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; min-height: 100%; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  overflow-x: hidden;
  user-select: none;
  -webkit-user-select: none;
}
body.modal-open { overflow: hidden; }

img { -webkit-user-drag: none; user-drag: none; }
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
::selection { background: transparent; }

.page { width: 100%; overflow: hidden; }

.cinema {
  width: 100%;
  background: #e7dfd5;
}

.compare {
  --reveal: 2%;
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 1;
  overflow: hidden;
  cursor: ew-resize;
  touch-action: none;
  background: #e8dfd4;
}

.compare-picture,
.compare-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.compare-picture {
  display: block;
}

.compare-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.compare-overlay {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
  will-change: clip-path;
}

.compare-line {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  left: var(--reveal);
  width: 0;
  pointer-events: none;
  will-change: left;
}

.compare-line::before {
  content: "";
  position: absolute;
  left: -1px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 0 0 1px rgba(12,10,8,.08), 0 0 20px rgba(12,10,8,.14);
}

.handle {
  position: absolute;
  top: 50%;
  left: 0;
  width: 42px;
  height: 42px;
  transform: translate(-50%,-50%);
  border-radius: 50%;
  background: rgba(12,10,8,.92);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,.20);
  animation: handle-pulse 1.5s ease-in-out infinite;
}

.chev {
  font-size: 18px;
  line-height: 1;
  opacity: .95;
  transform: translateY(-1px);
}

.handle-core {
  width: 2px;
  height: 13px;
  background: var(--cyan);
}

.hint {
  position: absolute;
  left: 12px;
  top: calc(50% + 32px);
  transform: translateX(-50%);
  padding: 6px 8px 5px;
  background: var(--pink);
  color: white;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: .18em;
  white-space: nowrap;
  animation: hint-pulse 1.5s ease-in-out infinite;
}

.compare.has-moved .handle,
.compare.has-moved .hint { animation: none; }
.compare.has-moved .hint { opacity: 0; transition: opacity .35s ease; }

.ticker {
  height: 54px;
  overflow: hidden;
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
}

.ticker-inner {
  display: flex;
  align-items: center;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  transform: translate3d(0,0,0);
}

.ticker-group {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
}

.ticker-group span {
  white-space: nowrap;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .23em;
}

.ticker-group b { color: var(--pink); font-size: 15px; }

.notify {
  min-height: 430px;
  padding: clamp(40px, 5vw, 75px) 6vw clamp(45px, 5vw, 75px);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, .85fr);
  grid-template-areas:
    "kicker form"
    "title form"
    "copy form";
  column-gap: 8vw;
  align-items: center;
  background: var(--paper);
  border-bottom: 1px solid rgba(12,10,8,.11);
}

.notify-kicker {
  grid-area: kicker;
  align-self: end;
  margin-bottom: 18px;
  font-size: 10px;
  letter-spacing: .24em;
  font-weight: 900;
  color: rgba(12,10,8,.55);
}

.notify h1 {
  grid-area: title;
  margin: 0;
  max-width: 780px;
  font-size: clamp(40px, 4vw, 80px);
  line-height: .78;
  letter-spacing: -.08em;
  font-weight: 950;
}

.notify h1 span { color: var(--pink); }

.notify-copy {
  grid-area: copy;
  max-width: 660px;
  margin: 34px 0 0;
  font-size: clamp(16px, 1.25vw, 21px);
  line-height: 1.55;
  color: rgba(12,10,8,.68);
}

.notify-form-wrap {
  grid-area: form;
  width: 100%;
  align-self: center;
}

.notify-form {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 11px;
  position: relative;
}

.notify-form input[type="email"] {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: clamp(17px, 1.35vw, 21px);
  letter-spacing: .05em;
  padding: 14px 8px 14px 0;
  user-select: text;
  -webkit-user-select: text;
}

.notify-form input::placeholder { color: rgba(12,10,8,.40); }

.notify-form button {
  border: 0;
  background: var(--ink);
  color: white;
  padding: 0 24px;
  min-height: 50px;
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .18em;
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.notify-form button span { color: var(--cyan); font-size: 18px; margin-left: 5px; }
.notify-form button:hover { transform: translateY(-2px); background: #1c1815; }
.notify-form button:disabled { cursor: wait; opacity: .55; transform: none; }

.hp-field {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.microcopy {
  margin: 8px 0 0;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .07em;
  color: rgba(12,10,8,.48);
}

.privacy-consent {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: 16px;
  font-size: 10px;
  line-height: 1.45;
  color: rgba(12,10,8,.62);
  user-select: text;
  -webkit-user-select: text;
}

.privacy-consent input {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.text-link,
.footer-links button {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
  cursor: pointer;
  font: inherit;
}

.text-link {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-message {
  margin: 10px 0 0;
  min-height: 16px;
  font-size: 10px;
  line-height: 1.4;
  letter-spacing: .07em;
  color: var(--ink);
  font-weight: 700;
}
.form-message.success { color: #176b3a; }
.form-message.error { color: #a32121; }

.footer {
  min-height: 108px;
  padding: 28px 6vw;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 28px;
  align-items: center;
  background: var(--paper);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.footer-brand span { color: var(--pink); }
.footer-links { display: flex; gap: 24px; }
.footer-links button { opacity: .58; transition: opacity .2s ease; text-transform: uppercase; letter-spacing: inherit; font-weight: inherit; }
.footer-links button:hover { opacity: 1; }
.footer-copy { text-align: right; opacity: .45; }

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .22s ease, visibility .22s ease;
}
.modal.is-open { opacity: 1; visibility: visible; }
.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12,10,8,.68);
  backdrop-filter: blur(5px);
}
.modal-panel {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  max-height: min(78vh, 720px);
  overflow: auto;
  background: var(--paper);
  border: 1px solid rgba(12,10,8,.12);
  box-shadow: 0 30px 90px rgba(0,0,0,.28);
  padding: clamp(30px, 4vw, 54px);
  user-select: text;
  -webkit-user-select: text;
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-size: 25px;
  line-height: 1;
}
.modal-kicker {
  margin-bottom: 16px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--pink);
}
.modal h2 {
  margin: 0 0 26px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: .9;
  letter-spacing: -.055em;
}
.modal-copy {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(12,10,8,.75);
}
.modal-copy p { margin: 0 0 16px; }
.modal-copy p:last-child { margin-bottom: 0; }
.modal-copy strong { color: var(--ink); }

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

@keyframes handle-pulse {
  0%,100% { transform: translate(-50%,-50%) scale(1); box-shadow: 0 8px 24px rgba(0,0,0,.20), 0 0 0 0 rgba(23,199,233,0); }
  50% { transform: translate(-50%,-50%) scale(1.06); box-shadow: 0 8px 24px rgba(0,0,0,.20), 0 0 0 9px rgba(23,199,233,.11); }
}

@keyframes hint-pulse {
  0%,100% { opacity: .72; }
  50% { opacity: 1; }
}

@media (max-width: 1100px) {
  .compare { aspect-ratio: 2 / 1; }
  .handle { width: 36px; height: 36px; gap: 2px; }
  .chev { font-size: 16px; }
  .handle-core { height: 11px; }
  .hint { display: none; }

  .notify {
    min-height: auto;
    padding: 44px 5vw 50px;
    grid-template-columns: 1fr;
    grid-template-areas: "kicker" "title" "copy" "form";
    gap: 0;
  }
  .notify-kicker { margin-bottom: 14px; }
  .notify h1 { font-size: clamp(38px, 7vw, 64px); line-height: .82; }
  .notify-copy { margin-top: 22px; font-size: clamp(15px, 2.3vw, 18px); }
  .notify-form-wrap { margin-top: 34px; }

  .footer { grid-template-columns: 1fr; text-align: left; }
  .footer-copy { text-align: left; }
}

@media (max-width: 600px) {
  .compare { aspect-ratio: 4 / 3; }
  .compare-image { object-position: center; }
  .handle { width: 32px; height: 32px; }
  .chev { font-size: 14px; }
  .handle-core { height: 10px; }

  .ticker { height: 48px; }
  .ticker-group { gap: 22px; padding-right: 22px; }
  .ticker-group span { font-size: 9px; }

  .notify { padding: 36px 24px 42px; }
  .notify-kicker { font-size: 9px; margin-bottom: 12px; }
  .notify h1 { font-size: clamp(38px, 12vw, 58px); line-height: .84; }
  .notify-copy { margin-top: 18px; font-size: 15px; line-height: 1.5; }
  .notify-form-wrap { margin-top: 30px; }
  .notify-form { grid-template-columns: 1fr; border-bottom: 0; gap: 12px; padding-bottom: 0; }
  .notify-form input[type="email"] { border-bottom: 2px solid var(--ink); }
  .notify-form button { min-height: 52px; }
  .microcopy { margin-top: 7px; font-size: 9px; }
  .privacy-consent { margin-top: 14px; font-size: 9px; }
  .form-message { font-size: 9px; }

  .footer { padding: 26px 24px; gap: 18px; }
  .footer-links { flex-wrap: wrap; gap: 18px; }

  .modal { padding: 14px; }
  .modal-panel { max-height: 84vh; padding: 34px 24px 28px; }
  .modal h2 { font-size: clamp(34px, 12vw, 52px); }
  .modal-copy { font-size: 13px; }
}

@media (prefers-reduced-motion: reduce) {
  *,*::before,*::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
