:root {
  color-scheme: light dark;
  --bg: #f5f6f8;
  --surface: #eceff3;
  --surface-raised: #fcfcfd;
  --text: #19222f;
  --muted: #596372;
  --line: #d2d7de;
  --accent: #cf3b4c;
  --accent-hover: #b62f3f;
  --accent-soft: #f7dfe3;
  --on-accent: #fffafb;
  --error: #b42332;
  --focus: #c93443;
  --radius: 18px;
  --shadow: 0 22px 55px rgba(41, 49, 62, 0.14);
  --max-width: 1240px;
  font-family: "Aptos", "Segoe UI Variable Text", "Segoe UI", Arial, sans-serif;
  font-synthesis: none;
}

@media (prefers-color-scheme: dark) {
  :root {
    --bg: #151922;
    --surface: #1f2530;
    --surface-raised: #252c38;
    --text: #f1f3f6;
    --muted: #b9c0cb;
    --line: #444c59;
    --accent: #ff7d8a;
    --accent-hover: #ff9aa4;
    --accent-soft: #472b31;
    --on-accent: #241014;
    --error: #ff9098;
    --focus: #ff929a;
    --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  }
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 10;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--text);
  color: var(--bg);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: min(100% - 40px, var(--max-width));
  min-height: 72px;
  margin: 0 auto;
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 24px;
  border: 1px solid var(--accent);
  border-radius: 12px;
  background: var(--accent);
  color: var(--on-accent);
  font-weight: 750;
  text-decoration: none;
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button:hover {
  border-color: var(--accent-hover);
  background: var(--accent-hover);
}

.button:active {
  transform: translateY(1px) scale(0.99);
}

.button:focus-visible,
.text-link:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--focus) 42%, transparent);
  outline-offset: 3px;
}

.button-small {
  min-height: 42px;
  padding: 0 18px;
  font-size: 0.9rem;
}

.hero {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.82fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: center;
  width: min(100% - 40px, var(--max-width));
  min-height: calc(100dvh - 72px);
  margin: 0 auto;
  padding: 44px 0 68px;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border-radius: 16px;
  transform: rotate(2deg);
}

.hero::before {
  top: 9%;
  right: 1%;
  width: min(33vw, 405px);
  height: min(55vw, 640px);
  background: var(--accent-soft);
}

.hero::after {
  display: none;
}

.hero-copy {
  max-width: 710px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  font-family: "Aptos Display", "Segoe UI Variable Display", "Segoe UI", Arial, sans-serif;
  margin-top: 0;
  letter-spacing: -0.045em;
  line-height: 1.01;
}

h1 {
  max-width: none;
  margin-bottom: 24px;
  font-size: clamp(3rem, 4.2vw, 3.9rem);
  font-weight: 800;
}

.headline-highlight {
  color: var(--accent);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.3rem, 4.4vw, 4.5rem);
  font-weight: 780;
}

h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.hero-text {
  max-width: 48ch;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-media {
  position: relative;
  display: grid;
  justify-items: center;
  margin: 0;
}

.video-frame {
  width: min(100%, 398px);
  padding: 7px;
  border-radius: 18px;
  background: var(--surface-raised);
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
}

.hero-media video {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 170px);
  aspect-ratio: 478 / 850;
  border-radius: 12px;
  background: #172030;
  object-fit: cover;
}

.hero-media figcaption {
  margin-top: 14px;
  padding: 0;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
}

.section {
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: clamp(84px, 11vw, 148px) 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading p,
.emotion-copy p,
.form-intro > p {
  max-width: 62ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.how-it-works {
  margin-top: 28px;
  padding: clamp(74px, 9vw, 112px) clamp(20px, 5vw, 70px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.process-grid article {
  padding: 2px clamp(24px, 4vw, 54px);
  text-align: center;
}

.process-grid article + article {
  border-left: 1px solid var(--line);
}

.process-grid h3::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin: 0 auto 22px;
  border-radius: 2px;
  background: var(--accent);
}

.process-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.emotion-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: center;
}

.emotion-copy h2 {
  max-width: 12ch;
}

.emotion-tags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 28px;
  row-gap: 0;
  margin: 30px 0 34px;
}

.emotion-tags span {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 720;
}

.emotion-tags span::before {
  content: "+";
  margin-right: 9px;
  color: var(--accent);
}

.reaction-collage {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(130px, 0.85fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 14px;
  height: min(68vw, 660px);
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.reaction-collage figure {
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 12px;
}

.reaction-main {
  grid-row: 1 / 3;
}

.reaction-collage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reaction-main img {
  object-position: 48% center;
}

.text-link {
  display: inline-flex;
  padding: 4px 0;
  border: 0;
  border-bottom: 2px solid var(--accent);
  background: transparent;
  color: var(--text);
  font-weight: 760;
  text-decoration: none;
  cursor: pointer;
}

.text-link:hover {
  color: var(--accent);
}

.form-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.form-intro {
  position: sticky;
  top: 116px;
  padding: 28px 0 0;
  border-top: 4px solid var(--accent);
}

.form-intro h2 {
  max-width: 11ch;
}

.privacy-note {
  margin-top: 40px;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
}

.privacy-note h3 {
  font-size: 1rem;
  letter-spacing: -0.01em;
}

.privacy-note p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.form-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface-raised);
  box-shadow: 0 18px 46px rgba(41, 49, 62, 0.09);
}

form {
  padding: clamp(24px, 5vw, 56px);
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0 0 44px;
  border: 0;
}

fieldset + fieldset {
  padding-top: 44px;
  border-top: 1px solid var(--line);
}

legend {
  width: 100%;
  margin-bottom: 26px;
  padding: 0;
  color: var(--text);
  font-size: 1.42rem;
  font-weight: 760;
  letter-spacing: -0.025em;
}

.field-grid {
  display: grid;
  gap: 22px;
}

.field-grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field-span-2 {
  grid-column: span 2;
}

.field {
  min-width: 0;
}

label {
  color: var(--text);
  font-size: 0.94rem;
  font-weight: 680;
}

.optional {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 520;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
}

input,
select {
  min-height: 50px;
  padding: 0 14px;
}

textarea {
  min-height: 120px;
  padding: 13px 14px;
  resize: vertical;
}

input::placeholder,
textarea::placeholder {
  color: color-mix(in srgb, var(--muted) 88%, var(--bg));
}

input[aria-invalid="true"],
select[aria-invalid="true"],
textarea[aria-invalid="true"] {
  border-color: var(--error);
}

.helper,
.counter,
.field-error {
  margin: 6px 0 0;
  font-size: 0.8rem;
  line-height: 1.45;
}

.helper,
.counter {
  color: var(--muted);
}

.field-error {
  min-height: 1.15em;
  color: var(--error);
  font-weight: 650;
}

.field-meta {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.counter {
  white-space: nowrap;
}

.choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.choice-card {
  position: relative;
  display: flex;
  min-height: 72px;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.choice-card:hover {
  border-color: var(--accent);
}

.choice-card:active {
  transform: translateY(1px);
}

.choice-card:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px var(--accent);
}

.choice-card input {
  width: 18px;
  min-height: 18px;
  margin: 0 12px 0 0;
  accent-color: var(--accent);
}

.choice-card span {
  line-height: 1.35;
}

.check-row {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 18px;
  color: var(--text);
  font-weight: 540;
  line-height: 1.5;
}

.check-row input {
  width: 20px;
  min-height: 20px;
  margin: 2px 0 0;
  accent-color: var(--accent);
}

.submit-area {
  display: grid;
  gap: 14px;
}

.submit-button {
  min-width: 190px;
}

.submit-button[disabled] {
  cursor: wait;
  opacity: 0.72;
}

.submit-note {
  max-width: 58ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-status {
  margin-top: 22px;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 0.9rem;
}

.form-status-error {
  border: 1px solid color-mix(in srgb, var(--error) 45%, var(--line));
  background: color-mix(in srgb, var(--error) 10%, var(--surface-raised));
  color: var(--error);
}

.honeypot {
  position: fixed;
  top: 0;
  left: 0;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  width: min(100% - 40px, var(--max-width));
  margin: 0 auto;
  padding: 44px 0 52px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer p {
  margin: 0;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-logo-link {
  flex: 0 0 auto;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #ffffff;
}

.footer-logo {
  width: 150px;
  height: auto;
}

.footer-kicker {
  margin-bottom: 5px !important;
  color: var(--text);
  font-weight: 760;
}

.footer-instagram {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.footer-instagram:hover {
  color: var(--accent);
}

.confirmation-main {
  display: grid;
  place-items: center;
  min-height: calc(100dvh - 218px);
  padding: clamp(54px, 8vw, 100px) 20px;
}

.confirmation-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 820px);
  overflow: hidden;
  padding: clamp(34px, 7vw, 76px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--surface-raised);
  box-shadow: var(--shadow);
}

.confirmation-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -72px;
  right: -54px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: var(--accent-soft);
}

.confirmation-mark {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  font-size: 1.55rem;
  font-weight: 850;
}

.confirmation-card h1 {
  max-width: 12ch;
  margin-bottom: 22px;
  font-size: clamp(2.7rem, 7vw, 5.3rem);
}

.confirmation-lead {
  max-width: 60ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.confirmation-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: clamp(40px, 7vw, 62px) 0 36px;
  padding: 0;
  list-style: none;
}

.confirmation-steps li {
  min-width: 0;
  padding: 0 24px;
  border-left: 1px solid var(--line);
}

.confirmation-steps li:first-child {
  padding-left: 0;
  border-left: 0;
}

.confirmation-steps strong,
.confirmation-steps span {
  display: block;
}

.confirmation-steps strong {
  margin-bottom: 7px;
  color: var(--accent);
  font-size: 0.76rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.confirmation-steps span {
  color: var(--text);
  font-weight: 700;
  line-height: 1.38;
}

[hidden] {
  display: none !important;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    animation: reveal-in 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }

  .reveal-delay {
    animation-delay: 110ms;
  }

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

@media (max-width: 900px) {
  .hero,
  .emotion-section,
  .form-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-copy {
    max-width: 720px;
  }

  h1 {
    max-width: 15ch;
  }

  .hero-media {
    width: min(92%, 720px);
    margin: 0 auto;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .process-grid article {
    padding: 0;
  }

  .process-grid article + article {
    padding-top: 38px;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .reaction-collage {
    width: min(100%, 760px);
    height: min(92vw, 650px);
    margin-left: auto;
  }

  .form-intro {
    position: static;
  }

  .form-intro h2 {
    max-width: 14ch;
  }
}

@media (max-width: 640px) {
  .site-header,
  .hero,
  .section,
  .site-footer {
    width: min(100% - 32px, var(--max-width));
  }

  .site-header {
    min-height: 66px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  .hero {
    gap: 38px;
    padding: 36px 0 58px;
  }

  h1 {
    font-size: clamp(2.85rem, 14vw, 4.2rem);
  }

  h2 {
    font-size: clamp(2.15rem, 10vw, 3.25rem);
  }

  .hero-media,
  .reaction-collage {
    width: 100%;
  }

  .hero::before {
    top: 39%;
    right: 2%;
    width: 88%;
    height: 50%;
  }

  .hero::after {
    right: auto;
    bottom: 4%;
    left: 0;
    width: 110px;
    height: 84px;
  }

  .video-frame {
    width: min(86vw, 330px);
  }

  .hero-media video {
    max-height: none;
  }

  .section {
    padding: 76px 0;
  }

  .how-it-works {
    padding: 64px 16px;
  }

  .emotion-tags {
    grid-template-columns: 1fr 1fr;
  }

  .reaction-collage {
    grid-template-columns: minmax(0, 1.25fr) minmax(100px, 0.75fr);
    gap: 9px;
    height: min(120vw, 510px);
    padding: 9px;
    border-radius: 16px;
  }

  .reaction-collage figure {
    border-radius: 10px;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .field-grid-2,
  .choice-grid {
    grid-template-columns: 1fr;
  }

  .field-span-2 {
    grid-column: span 1;
  }

  form {
    padding: 26px 20px;
  }

  fieldset {
    padding-bottom: 36px;
  }

  fieldset + fieldset {
    padding-top: 36px;
  }

  .field-meta {
    display: block;
  }

  .counter {
    text-align: right;
  }

  .submit-button {
    width: 100%;
  }

  .site-footer,
  .footer-brand {
    grid-template-columns: 1fr;
  }

  .site-footer {
    align-items: start;
  }

  .footer-brand {
    display: grid;
  }

  .confirmation-steps {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .confirmation-steps li,
  .confirmation-steps li:first-child {
    padding: 0 0 0 18px;
    border-left: 2px solid var(--line);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
