:root {
  --bg: #090909;
  --bg-deep: #000000;
  --surface: #111111;
  --surface-2: #181818;
  --surface-3: #222222;
  --ink: #f7f7f7;
  --muted: #929292;
  --soft: #d1d1d1;
  --line: rgba(255, 255, 255, 0.13);
  --line-strong: rgba(255, 255, 255, 0.25);
  --primavera: #f2f2f2;
  --verao: #c8c8c8;
  --outono: #8e8e8e;
  --inverno: #ffffff;
  --success: #d8d8d8;
  --danger: #b8b8b8;
  --selected-bg: rgba(255, 255, 255, 0.09);
  --swatch-inset: rgba(0, 0, 0, 0.3);
  --quiz-canvas: var(--bg);
  --quiz-shadow: 0 34px 90px rgba(0, 0, 0, 0.22);
  --spectrum: linear-gradient(90deg, #ffffff, #c8c8c8, #737373, #f2f2f2);
  --display: "Jost", sans-serif;
  --body: "Jost", sans-serif;
  --header-height: 0px;
  --page-padding: clamp(22px, 4vw, 64px);
  --transition: 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  background: var(--bg);
  color-scheme: dark;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(70% 50% at 90% 8%, rgba(255, 255, 255, 0.045), transparent 70%),
    radial-gradient(60% 60% at 0% 100%, rgba(255, 255, 255, 0.025), transparent 70%),
    var(--bg);
  color: var(--ink);
  font: 400 16px/1.6 var(--body);
  letter-spacing: 0.005em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

button,
input {
  font: inherit;
}

em,
i,
cite {
  font-style: normal;
}

button {
  color: inherit;
}

button,
a,
input,
[tabindex] {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--verao);
  outline-offset: 3px;
}

#question-title:focus-visible {
  outline: none;
}

::selection {
  background: var(--verao);
  color: var(--bg);
}

.grain {
  position: fixed;
  z-index: 20;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 140 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  z-index: 15;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--surface);
  font: 500 23px/1 var(--display);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 14px;
  line-height: 1.25;
  letter-spacing: 0.01em;
}

.brand small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-status {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.04em;
}

.header-status i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--verao);
}

#app {
  min-height: 100vh;
}

.screen {
  min-height: 100vh;
  padding: calc(var(--header-height) + 32px) var(--page-padding) 48px;
  animation: screen-in 480ms var(--transition) both;
}

.screen[hidden] {
  display: none !important;
}

@keyframes screen-in {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: none; }
}

.eyebrow {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow b {
  color: var(--ink);
  font-weight: 700;
}

h1,
h2,
h3,
blockquote {
  font-family: var(--display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 em,
h2 em {
  font-weight: 300;
  font-style: normal;
}

.spectrum-line {
  width: min(430px, 76%);
  height: 5px;
  margin: 30px 0;
  border-radius: 999px;
  background: var(--spectrum);
}

.primary-button,
.outline-button,
.demo-button,
.text-button {
  border: 0;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), color var(--transition);
}

.primary-button:disabled,
.outline-button:disabled,
.demo-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
  filter: grayscale(1);
}

.primary-button.is-loading svg {
  animation: checkout-arrow 900ms ease-in-out infinite alternate;
}

@keyframes checkout-arrow {
  to { transform: translateX(5px); }
}

.primary-button {
  min-height: 58px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.primary-button svg,
.text-button svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.primary-button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--ink);
}

.primary-button.compact {
  min-height: 50px;
  padding: 0 19px;
}

.primary-button.full {
  width: 100%;
}

.outline-button {
  min-height: 48px;
  padding: 0 19px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.outline-button:hover {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--bg);
}

.text-button {
  padding: 12px 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.text-button:hover {
  color: var(--ink);
}

/* Hero */
.screen-hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  padding: 0 var(--page-padding);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.screen-hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.88) 34%, rgba(0, 0, 0, 0.48) 56%, rgba(0, 0, 0, 0.07) 77%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.66) 0%, transparent 42%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, transparent 24%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(710px, 54vw);
  max-width: 710px;
  padding: clamp(30px, 4vh, 54px) 0 38px;
}

.hero-logo {
  width: clamp(230px, 18vw, 260px);
  height: auto;
  margin: 0 0 10px;
  display: block;
  opacity: 0.96;
  filter: drop-shadow(0 5px 24px rgba(0, 0, 0, 0.34));
}

@media (min-width: 861px) {
  .hero-copy h1 {
    margin-top: 10px;
  }

  .hero-copy .spectrum-line {
    margin-block: 16px;
  }

  .hero-copy .hero-lead {
    margin-bottom: 18px;
  }

  .hero-copy .hero-notes {
    margin-top: 20px;
  }
}

.hero-copy h1 {
  max-width: 13.2ch;
  margin: 22px 0 0;
  font-size: clamp(52px, 5.25vw, 76px);
  text-shadow: 0 3px 32px rgba(0, 0, 0, 0.34);
}

.hero-copy h1 em {
  display: block;
  color: var(--soft);
}

.hero-lead {
  max-width: 590px;
  margin-bottom: 34px;
  color: rgba(247, 247, 247, 0.74);
  font-size: clamp(16px, 1.5vw, 19px);
}

.hero-notes {
  margin-top: 42px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-notes span {
  padding: 8px 15px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--muted);
  backdrop-filter: blur(8px);
  font-size: 12px;
}

.hero-notes b {
  margin-right: 4px;
  color: var(--ink);
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
}

.media-placeholder {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 48% 24%, rgba(255, 255, 255, 0.09), transparent 31%),
    linear-gradient(145deg, var(--surface-2), var(--bg-deep));
}

.hero-media {
  position: absolute;
  z-index: 0;
  inset: 0;
  margin: 0;
  overflow: hidden;
  background: #050505;
}

.hero-frame {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: var(--hero-object-position, center center);
  opacity: 0;
  transform: scale(1);
  filter: brightness(1) contrast(1) saturate(1);
  transition: opacity 150ms ease-out;
  will-change: opacity, transform, filter;
}

.hero-frame.is-active,
.hero-frame.is-entering,
.hero-frame.is-leaving {
  z-index: 1;
}

.hero-frame.is-active,
.hero-frame.is-entering {
  opacity: 1;
}

.hero-frame.is-leaving {
  opacity: 0;
}

.hero-frame.is-entering {
  animation: hero-photo-settle 590ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-photo-grain,
.hero-camera-flash {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-photo-grain {
  z-index: 2;
  opacity: 0.075;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.76' numOctaves='4' stitchTiles='stitch' seed='7'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)' opacity='.72'/%3E%3C/svg%3E");
}

.hero-camera-flash {
  z-index: 3;
  opacity: 0;
  background:
    radial-gradient(circle at 70% 38%, rgba(255, 252, 239, 0.98) 0%, rgba(255, 246, 222, 0.9) 24%, rgba(255, 239, 210, 0.54) 58%, rgba(255, 236, 204, 0.14) 100%);
  mix-blend-mode: screen;
}

.hero-media.is-flashing .hero-camera-flash {
  animation: hero-kodak-flash 620ms cubic-bezier(0.2, 0.72, 0.22, 1) both;
}

@keyframes hero-kodak-flash {
  0% { opacity: 0; }
  11% { opacity: 0.16; }
  20% { opacity: 0.88; }
  26% { opacity: 0.74; }
  38% { opacity: 0.18; }
  58%, 100% { opacity: 0; }
}

@keyframes hero-photo-settle {
  0% {
    transform: scale(1.015) rotate(var(--hero-frame-rotation, 0deg));
    filter: brightness(1.2) contrast(1.035) saturate(1.075);
  }
  32% {
    filter: brightness(1.08) contrast(1.02) saturate(1.04);
  }
  100% {
    transform: scale(1) rotate(0deg);
    filter: brightness(1) contrast(1) saturate(1);
  }
}

.result-media::after {
  content: "GUE";
  position: absolute;
  right: -0.08em;
  bottom: -0.22em;
  color: rgba(255, 255, 255, 0.04);
  font: 300 clamp(150px, 20vw, 330px)/0.8 var(--display);
  letter-spacing: -0.08em;
  pointer-events: none;
}

.placeholder-grid {
  position: absolute;
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 54px 54px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 88%);
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}

.placeholder-label {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 4vw, 58px);
  right: clamp(24px, 4vw, 58px);
  bottom: clamp(72px, 10vh, 122px);
}

.placeholder-label span,
.placeholder-label strong,
.placeholder-label small {
  display: block;
}

.placeholder-label span {
  margin-bottom: 7px;
  color: var(--verao);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder-label strong {
  font: 400 clamp(30px, 4vw, 55px)/1 var(--display);
}

.placeholder-label small {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
}

/* Quiz */
.screen-quiz {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--quiz-canvas);
  box-shadow: 0 0 0 100vmax var(--quiz-canvas);
  color: var(--ink);
  clip-path: inset(0 -100vmax);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.screen-quiz[data-theme="light"] {
  --bg: #f7f7f7;
  --bg-deep: #ebebeb;
  --surface: #ffffff;
  --surface-2: #f1f1f1;
  --surface-3: #e6e6e6;
  --ink: #111111;
  --muted: #666666;
  --soft: #2f2f2f;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.25);
  --success: #383838;
  --danger: #656565;
  --selected-bg: rgba(0, 0, 0, 0.07);
  --swatch-inset: rgba(255, 255, 255, 0.36);
  --quiz-canvas: #f7f7f7;
  --quiz-shadow: 0 34px 90px rgba(0, 0, 0, 0.11);
  color-scheme: light;
}

.quiz-progress {
  max-width: 1180px;
  margin: 24px auto 0;
}

.progress-copy {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.progress-copy strong {
  color: var(--ink);
}

.progress-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}

.quiz-theme-switch {
  padding: 3px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface-2);
}

.quiz-theme-switch button {
  min-width: 56px;
  padding: 5px 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

.quiz-theme-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.14);
}

.progress-track {
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.progress-track span {
  display: block;
  width: 6.25%;
  height: 100%;
  border-radius: inherit;
  background: var(--spectrum);
  transition: width 480ms var(--transition);
}

.quiz-layout {
  width: 100%;
  max-width: 1180px;
  min-height: 660px;
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--quiz-shadow);
  overflow: hidden;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.question-aside {
  position: relative;
  padding: 42px 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background:
    radial-gradient(circle at 22% 16%, rgba(255, 255, 255, 0.08), transparent 30%),
    var(--bg-deep);
  transition: background var(--transition), border-color var(--transition);
}

.question-number {
  display: block;
  font: 300 112px/0.8 var(--display);
  color: rgba(255, 255, 255, 0.13);
}

.screen-quiz[data-theme="light"] .question-number {
  color: rgba(0, 0, 0, 0.13);
}

.question-aside p {
  position: relative;
  z-index: 2;
  max-width: 160px;
  color: var(--soft);
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.25;
}

.aside-orbit {
  position: absolute;
  left: -70px;
  bottom: -70px;
  width: 240px;
  height: 240px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.aside-orbit::before,
.aside-orbit::after {
  content: "";
  position: absolute;
  inset: 30px;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.aside-orbit::after {
  inset: 65px;
}

.aside-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--verao);
}

.aside-orbit i:nth-child(1) { top: 24px; left: 84px; }
.aside-orbit i:nth-child(2) { top: 80px; right: 14px; background: var(--primavera); }
.aside-orbit i:nth-child(3) { bottom: 30px; left: 80px; background: var(--inverno); }

.question-panel {
  padding: clamp(36px, 5vw, 68px);
}

.question-panel h2 {
  max-width: 780px;
  margin: 13px 0 9px;
  font-size: clamp(34px, 4vw, 54px);
}

.question-help {
  max-width: 680px;
  color: var(--muted);
  font-size: 14px;
}

.question-media {
  margin: 26px 0 0;
}

.comparison-media {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.compare-placeholder {
  position: relative;
  min-height: 154px;
  padding: 20px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}

.compare-placeholder.warm {
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.18), transparent 48%), var(--surface-2);
}

.compare-placeholder.cool {
  background: radial-gradient(circle at 50% 30%, rgba(0, 0, 0, 0.11), transparent 48%), var(--surface-2);
}

.compare-placeholder::before {
  content: "";
  position: absolute;
  top: 22px;
  left: 50%;
  width: 60px;
  height: 74px;
  transform: translateX(-50%);
  border: 1px solid var(--line-strong);
  border-radius: 50% 50% 44% 44%;
}

.compare-placeholder span {
  position: relative;
  z-index: 1;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.options {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
}

.option {
  min-height: 74px;
  padding: 15px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
  color: var(--soft);
  cursor: pointer;
  text-align: left;
  transition: border-color var(--transition), background var(--transition), color var(--transition), transform var(--transition);
}

.option:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  background: var(--surface-3);
}

.option.is-selected {
  border-color: var(--verao);
  background: var(--selected-bg);
  color: var(--ink);
}

.option-marker {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.option.is-selected .option-marker {
  border-color: var(--verao);
  background: var(--verao);
  color: var(--bg);
}

.option-text {
  display: block;
  font-size: 13.5px;
  line-height: 1.45;
}

.tone-swatch {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px var(--swatch-inset);
}

.validation-message {
  margin-top: 14px;
  color: var(--danger);
  font-size: 12px;
}

.question-actions {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}

/* Contact */
.screen-contact {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(440px, 0.72fr);
  gap: clamp(30px, 6vw, 92px);
  align-items: center;
}

.contact-visual blockquote {
  max-width: 720px;
  margin: 20px 0 36px;
  font-size: clamp(44px, 6vw, 80px);
  font-style: normal;
}

.video-placeholder {
  width: 230px;
  aspect-ratio: 9/12;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--muted);
  text-align: center;
}

.video-placeholder > span {
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--ink);
}

.video-placeholder strong,
.video-placeholder small {
  display: block;
}

.video-placeholder strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
}

.video-placeholder small {
  margin-top: 6px;
  font-size: 10px;
}

.contact-card {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.contact-card h2 {
  margin: 13px 0 12px;
  font-size: clamp(35px, 4vw, 50px);
}

.contact-card > p:not(.eyebrow, .privacy-note) {
  margin-bottom: 27px;
  color: var(--muted);
  font-size: 13px;
}

.field {
  display: block;
  margin-bottom: 14px;
}

.field > span {
  display: block;
  margin-bottom: 7px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.field input {
  width: 100%;
  height: 53px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--ink);
}

.field input::placeholder {
  color: #767676;
}

.field input.is-invalid {
  border-color: var(--danger);
}

.field-error {
  display: block;
  min-height: 15px;
  margin-top: 4px;
  color: var(--danger);
  font-size: 10px;
}

.check-field {
  margin: 16px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--soft);
  font-size: 11px;
  line-height: 1.45;
}

.check-field.optional {
  margin-top: -7px;
  color: var(--muted);
}

.check-field input {
  width: 17px;
  height: 17px;
  margin-top: 1px;
  accent-color: var(--verao);
}

.privacy-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 9.5px;
  text-align: center;
}

/* Analysis */
.screen-analysis {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.analysis-orb {
  position: relative;
  width: 180px;
  height: 180px;
  margin-bottom: 38px;
}

.analysis-orb::before,
.analysis-orb::after,
.analysis-orb span {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  animation: orbit 3.3s linear infinite;
}

.analysis-orb::before { transform: rotateX(62deg); }
.analysis-orb::after { transform: rotateY(62deg); animation-direction: reverse; }
.analysis-orb span:nth-child(1) { inset: 42px; border-color: var(--verao); animation: pulse 1.8s ease-in-out infinite; }
.analysis-orb span:nth-child(2) { transform: rotate(45deg) scaleY(0.38); border-color: var(--primavera); }
.analysis-orb span:nth-child(3) { transform: rotate(-45deg) scaleY(0.38); border-color: var(--inverno); animation-direction: reverse; }

@keyframes orbit { to { rotate: 1turn; } }
@keyframes pulse { 50% { transform: scale(0.74); opacity: 0.55; } }

.screen-analysis h2 {
  max-width: 790px;
  margin: 14px 0 20px;
  font-size: clamp(43px, 6vw, 72px);
}

.screen-analysis > p:not(.eyebrow) {
  color: var(--muted);
}

.analysis-track {
  width: min(520px, 82vw);
  height: 4px;
  margin: 29px 0;
  overflow: hidden;
  border-radius: 999px;
  background: var(--surface-2);
}

.analysis-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: var(--spectrum);
  transition: width 650ms ease;
}

.analysis-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
}

.analysis-list li {
  color: #626262;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color var(--transition);
}

.analysis-list li.is-done {
  color: var(--soft);
}

/* Paywall */
.screen-paywall {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 450px);
  gap: clamp(36px, 7vw, 104px);
  align-items: center;
}

.paywall-teaser h2 {
  max-width: 780px;
  margin: 20px 0 18px;
  font-size: clamp(47px, 6.6vw, 82px);
}

.paywall-teaser > p:not(.eyebrow) {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.reveal-seal {
  width: 88px;
  height: 88px;
  margin-bottom: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--spectrum);
}

.reveal-seal span {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  font: 400 43px/1 var(--display);
}

.locked-preview {
  max-width: 720px;
  margin-top: 37px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--surface);
}

.locked-preview div {
  min-height: 90px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--line);
}

.locked-preview div:nth-child(odd) { border-right: 1px solid var(--line); }
.locked-preview div:nth-last-child(-n+2) { border-bottom: 0; }
.locked-preview span { color: var(--muted); font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.locked-preview strong { margin-top: 4px; font-family: var(--display); font-size: 23px; font-weight: 400; filter: blur(0); }
.locked-preview div:first-child strong { filter: blur(5px); user-select: none; }

.checkout-card {
  padding: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.checkout-badge {
  display: inline-block;
  padding: 6px 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--verao);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-card h3 {
  margin: 17px 0 21px;
  font-size: 36px;
  font-weight: 400;
}

.checkout-card ul {
  display: grid;
  gap: 9px;
  list-style: none;
}

.checkout-card li {
  position: relative;
  padding-left: 20px;
  color: var(--soft);
  font-size: 12.5px;
}

.checkout-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--success);
  font-weight: 700;
}

.price {
  margin: 30px 0 22px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.price small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price strong {
  font: 500 62px/0.8 var(--display);
}

.price sup {
  margin-right: 5px;
  color: var(--muted);
  font: 600 13px/1 var(--body);
}

.price em {
  font-size: 30px;
  font-style: normal;
}

.payment-methods {
  margin-top: 13px;
  display: flex;
  justify-content: center;
  gap: 13px;
  color: var(--muted);
  font-size: 9px;
}

.demo-gate {
  margin-top: 24px;
  padding: 15px;
  border: 1px dashed rgba(255, 255, 255, 0.3);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
}

.demo-gate[hidden],
.demo-button[hidden] {
  display: none !important;
}

.demo-gate > span {
  color: var(--primavera);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.demo-gate p {
  margin: 3px 0 10px;
  color: var(--muted);
  font-size: 10px;
}

.demo-button {
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--soft);
  font-size: 10px;
  font-weight: 700;
}

.demo-button:hover {
  background: var(--ink);
  color: var(--bg);
}

/* Thank you */
.screen-thankyou {
  max-width: 1260px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 440px);
  gap: clamp(42px, 8vw, 118px);
  align-items: center;
}

.confirmation-mark {
  width: 82px;
  height: 82px;
  margin-bottom: 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
}

.confirmation-mark svg {
  width: 36px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
}

.thankyou-copy h2 {
  max-width: 760px;
  margin: 18px 0 18px;
  font-size: clamp(49px, 7vw, 88px);
}

.thankyou-lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 17px;
}

.thankyou-actions {
  margin-top: 33px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.thankyou-actions .outline-button {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 23px;
}

.thankyou-view-result {
  margin-top: 15px;
}

.thankyou-view-result[hidden] {
  display: none;
}

.delivery-receipt {
  padding: clamp(28px, 4vw, 43px);
  border: 1px solid var(--line-strong);
  border-radius: 20px;
  background: linear-gradient(150deg, var(--surface-2), var(--surface));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.26);
}

.delivery-receipt h3 {
  margin: 15px 0 27px;
  font-size: 34px;
  font-weight: 400;
}

.receipt-line {
  padding: 14px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
}

.receipt-line span {
  color: var(--muted);
}

.receipt-line strong {
  color: var(--soft);
  font-weight: 600;
  text-align: right;
}

.delivery-timeline {
  margin: 26px 0;
  display: grid;
}

.delivery-timeline > div {
  position: relative;
  min-height: 62px;
  padding-left: 34px;
  display: flex;
  gap: 13px;
}

.delivery-timeline > div:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 14px;
  bottom: -5px;
  width: 1px;
  background: var(--line-strong);
}

.delivery-timeline i {
  position: absolute;
  left: 0;
  top: 4px;
  width: 11px;
  height: 11px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  background: var(--surface);
}

.delivery-timeline .is-complete i {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.08);
}

.delivery-timeline b,
.delivery-timeline small {
  display: block;
}

.delivery-timeline b {
  color: var(--soft);
  font-size: 12px;
}

.delivery-timeline small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.delivery-receipt .outline-button.full {
  width: 100%;
}

.receipt-help {
  margin-top: 13px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

/* Result */
.screen-result {
  max-width: 1300px;
  margin: 0 auto;
}

.result-hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: clamp(34px, 6vw, 88px);
  align-items: center;
}

.result-overline {
  display: block;
  margin: 30px 0 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.result-hero h2 {
  max-width: 760px;
  font-size: clamp(60px, 9vw, 116px);
}

.result-intention {
  margin-top: 6px;
  color: var(--muted);
  font-family: var(--display);
  font-size: 26px;
}

.result-intention strong {
  color: var(--verao);
  font-weight: 400;
  font-style: normal;
}

.result-summary {
  max-width: 680px;
  color: var(--soft);
  font-size: 17px;
}

.result-media {
  min-height: 560px;
  border-radius: 17px;
}

.result-media .placeholder-label {
  bottom: 42px;
}

.result-media::after {
  font-size: 180px;
}

.result-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.result-card {
  min-height: 340px;
  padding: clamp(27px, 4vw, 43px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}

.result-card-wide {
  grid-column: 1 / -1;
  min-height: auto;
}

.result-card h3,
.delivery-card h3 {
  max-width: 760px;
  margin: 12px 0 18px;
  font-size: clamp(30px, 3.4vw, 45px);
  font-weight: 400;
}

.result-card > p:not(.eyebrow, .caution, .salon-script),
.delivery-card p {
  max-width: 750px;
  color: var(--muted);
  font-size: 14px;
}

.visagism-reading {
  max-width: 1020px;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.visagism-reading > div,
.intention-details > div,
.method-sources > div {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}

.visagism-reading strong,
.result-confirmation strong,
.intention-details strong,
.method-sources strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.visagism-reading p,
.result-confirmation p,
.intention-details p,
.method-sources span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.result-confirmation {
  max-width: 1020px;
  margin-top: 12px;
  padding: 18px;
  border-left: 2px solid var(--outono);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 72%);
}

.result-note {
  max-width: 760px;
  margin-top: 24px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}

.result-note strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.result-note p {
  color: var(--muted);
  font-size: 12px;
}

.profile-facts {
  margin-top: 31px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
}

.profile-facts div {
  padding: 19px 15px 0 0;
}

.profile-facts dt {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.profile-facts dd {
  margin-top: 4px;
  font: 400 22px/1.2 var(--display);
}

.color-directions {
  margin: 25px 0;
  display: grid;
  gap: 10px;
}

.color-direction {
  display: flex;
  align-items: center;
  gap: 13px;
  color: var(--soft);
  font-size: 12px;
}

.color-direction > div {
  min-width: 0;
  display: grid;
  gap: 3px;
}

.color-direction strong {
  color: var(--soft);
  font-size: 12px;
  font-weight: 600;
}

.color-direction small {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.45;
}

.color-direction i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.05);
}

.caution {
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.caution strong {
  color: var(--primavera);
}

.result-card blockquote {
  margin-top: 24px;
  padding-left: 17px;
  border-left: 2px solid var(--verao);
  color: var(--soft);
  font-size: 24px;
  font-style: normal;
}

.intention-details {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.transformation-levels {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.transformation-level {
  padding: 21px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface-2);
}

.transformation-level.is-recommended {
  border-color: rgba(255, 255, 255, 0.48);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), var(--surface-2));
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.transformation-level span {
  color: var(--verao);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.transformation-level h4 {
  margin: 7px 0;
  font-family: var(--display);
  font-size: 24px;
  font-weight: 400;
}

.transformation-level p {
  color: var(--muted);
  font-size: 11px;
}

.salon-card {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), var(--surface));
}

.salon-script {
  margin: 25px 0;
  color: var(--soft);
  font-family: var(--display);
  font-size: 22px;
  font-style: normal;
  line-height: 1.35;
}

.safety-card small {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
}

.method-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.06), transparent 28%),
    var(--surface);
}

.method-card > p:not(.eyebrow) {
  max-width: 980px;
}

.method-sources {
  margin-top: 27px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.method-card > small {
  max-width: 980px;
  margin-top: 22px;
  display: block;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.65;
}

.method-links {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.method-links a {
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--soft);
  font-size: 10px;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.method-links a:hover {
  border-color: var(--line-strong);
  background: var(--surface-2);
  color: var(--ink);
}

.delivery-card {
  margin-top: 15px;
  padding: clamp(28px, 4vw, 44px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bg-deep);
}

.delivery-status {
  min-width: 225px;
  display: grid;
  gap: 9px;
}

.delivery-status span {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--soft);
  font-size: 11px;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.07);
}

.result-actions {
  padding: 42px 0 25px;
  display: flex;
  justify-content: space-between;
  gap: 15px;
}

.toast {
  position: fixed;
  z-index: 50;
  right: 24px;
  bottom: 24px;
  max-width: 370px;
  padding: 13px 17px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  font-size: 12px;
}

.noscript {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--bg);
  color: var(--ink);
}

/* Extended photo protocol */
.screen-photos {
  --photo-canvas: #090909;
  max-width: 1440px;
  margin: 0 auto;
  background: var(--photo-canvas);
  box-shadow: 0 0 0 100vmax var(--photo-canvas);
  clip-path: inset(0 -100vmax);
  color: var(--ink);
  transition: background-color var(--transition), color var(--transition), box-shadow var(--transition);
}

.screen-photos[data-theme="light"] {
  --bg: #f7f7f7;
  --bg-deep: #e8e8e8;
  --surface: #ffffff;
  --surface-2: #f0f0f0;
  --surface-3: #dedede;
  --ink: #111111;
  --muted: #666666;
  --soft: #303030;
  --line: rgba(0, 0, 0, 0.12);
  --line-strong: rgba(0, 0, 0, 0.26);
  --selected-bg: rgba(0, 0, 0, 0.07);
  --photo-canvas: #f7f7f7;
  color-scheme: light;
}

.photo-header {
  max-width: 1240px;
  margin: 20px auto 28px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 40px;
}

.photo-header h2 {
  max-width: 850px;
  margin: 10px 0 12px;
  font-size: clamp(42px, 5.3vw, 78px);
}

.photo-header > div > p:last-child {
  max-width: 760px;
  color: var(--muted);
}

.photo-security {
  min-width: 250px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
}

.photo-security i {
  width: 11px;
  height: 11px;
  flex: 0 0 auto;
  border: 2px solid var(--ink);
  border-radius: 50%;
  box-shadow: 0 0 0 5px var(--selected-bg);
}

.photo-security b,
.photo-security small {
  display: block;
  line-height: 1.3;
}

.photo-security b {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.photo-security small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
}

.photo-workspace {
  max-width: 1240px;
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 28px;
  background: var(--surface);
  box-shadow: 0 40px 110px rgba(0, 0, 0, 0.24);
}

.pose-guide {
  position: relative;
  min-height: 720px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, transparent 55%, var(--selected-bg)),
    var(--bg-deep);
}

.pose-counter {
  display: flex;
  align-items: baseline;
  gap: 9px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.pose-counter span,
.pose-counter small {
  font-size: 10px;
  font-weight: 700;
}

.pose-counter strong {
  color: var(--ink);
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
}

.pose-model {
  width: min(100%, 360px);
  margin: 28px auto 10px;
}

.pose-model svg,
.photo-thumb svg {
  width: 100%;
  display: block;
}

.pose-ink {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pose-axis {
  fill: none;
  stroke: currentColor;
  stroke-width: 0.7;
  stroke-dasharray: 3 7;
  opacity: 0.25;
}

.pose-arrow {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  opacity: 0.75;
}

.pose-arrow + defs path {
  fill: currentColor;
}

.pose-instructions {
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.pose-instructions h3 {
  max-width: 430px;
  margin: 9px 0 13px;
  font-size: clamp(28px, 3.2vw, 43px);
}

.pose-instructions > p:last-child {
  color: var(--muted);
  font-size: 14px;
}

.capture-panel {
  min-width: 0;
  padding: 34px;
  display: flex;
  flex-direction: column;
}

.capture-rules {
  margin-bottom: 18px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.capture-rules span {
  min-height: 46px;
  padding: 9px 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.25;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.capture-rules b {
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
}

.camera-frame {
  position: relative;
  min-height: 350px;
  flex: 1 1 auto;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--bg-deep);
}

.camera-frame::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  pointer-events: none;
}

.camera-grid {
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background:
    linear-gradient(90deg, transparent 33.2%, var(--line) 33.3%, var(--line) 33.6%, transparent 33.7%, transparent 66.2%, var(--line) 66.3%, var(--line) 66.6%, transparent 66.7%),
    linear-gradient(transparent 33.2%, var(--line) 33.3%, var(--line) 33.6%, transparent 33.7%, transparent 66.2%, var(--line) 66.3%, var(--line) 66.6%, transparent 66.7%);
}

.camera-frame > img {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--bg-deep);
}

.camera-empty {
  position: relative;
  z-index: 1;
  padding: 30px;
  text-align: center;
}

.camera-empty strong,
.camera-empty small {
  display: block;
}

.camera-empty strong {
  margin-top: 18px;
  font-size: 14px;
  letter-spacing: 0.03em;
}

.camera-empty small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 11px;
}

.camera-mark {
  width: 72px;
  height: 92px;
  display: inline-block;
  border: 1px solid var(--line-strong);
  border-radius: 50% 50% 42% 42%;
  box-shadow: 0 50px 0 18px var(--selected-bg);
}

.capture-actions {
  margin: 16px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.capture-button {
  min-height: 48px;
  padding-block: 12px;
}

.photo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 8px;
}

.photo-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: var(--bg-deep);
  color: var(--muted);
  cursor: pointer;
}

.photo-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.photo-thumb svg {
  height: 100%;
  padding: 10px;
}

.photo-thumb > span {
  position: absolute;
  left: 7px;
  bottom: 5px;
  color: var(--ink);
  font-size: 9px;
  font-weight: 700;
}

.photo-thumb > i {
  position: absolute;
  top: 7px;
  right: 7px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--muted);
  border-radius: 50%;
  background: var(--surface);
}

.photo-thumb.is-complete > i {
  border-color: var(--ink);
  background: var(--ink);
}

.photo-thumb.is-active {
  border-color: var(--ink);
  box-shadow: 0 0 0 1px var(--ink);
}

.photo-consent {
  margin-top: 16px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: var(--selected-bg);
}

.photo-consent.is-confirmed {
  border-color: var(--line-strong);
}

.photo-navigation {
  margin-top: 16px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--line);
}

.photo-status {
  min-height: 24px;
  margin-top: 9px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
}

.generation-preview {
  position: relative;
  width: min(100%, 620px);
  aspect-ratio: 4 / 3;
  margin: 28px 0;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 18px;
  background: var(--bg-deep);
}

.generation-preview > img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.generation-placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  padding: 30px;
  text-align: center;
}

.generation-placeholder > span {
  width: 76px;
  height: 76px;
  margin: 0 auto 22px;
  border: 1px solid var(--line-strong);
  border-top-color: var(--ink);
  border-radius: 50%;
  animation: generation-spin 1.8s linear infinite;
}

.generation-placeholder strong,
.generation-placeholder small {
  display: block;
}

.generation-placeholder strong {
  font-size: 16px;
}

.generation-placeholder small {
  max-width: 400px;
  margin-top: 7px;
  color: var(--muted);
  font-size: 12px;
}

.is-disabled {
  opacity: 0.42;
  pointer-events: none;
}

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

@media (max-width: 1080px) {
  .photo-header { grid-template-columns: 1fr; }
  .photo-security { width: fit-content; }
  .photo-workspace { grid-template-columns: 300px minmax(0, 1fr); }
  .capture-rules { grid-template-columns: 1fr 1fr; }
  .hero-copy h1 {
    font-size: clamp(51px, 6.5vw, 76px);
  }

  .quiz-layout {
    grid-template-columns: 190px minmax(0, 1fr);
  }

  .question-aside {
    padding: 35px 24px;
  }

  .question-number {
    font-size: 88px;
  }
}

@media (max-width: 860px) {
  :root { --header-height: 0px; }

  .header-status { display: none; }

  .photo-workspace {
    grid-template-columns: 1fr;
  }

  .pose-guide {
    min-height: 410px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .pose-model {
    width: 230px;
    margin: 0 auto;
  }

  .pose-instructions {
    margin-top: 4px;
  }

  .screen-hero {
    min-height: 100svh;
    padding: 0 var(--page-padding) 26px;
    display: flex;
    align-items: flex-end;
  }

  .screen-hero::before {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.2) 27%, rgba(0, 0, 0, 0.83) 61%, rgba(0, 0, 0, 0.98) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.38), transparent 80%);
  }

  .hero-copy {
    width: min(680px, 100%);
    max-width: 680px;
    padding: clamp(210px, 34vh, 320px) 0 24px;
  }

  .hero-logo {
    width: clamp(185px, 36vw, 220px);
    margin-bottom: 12px;
  }

  .hero-copy h1 {
    max-width: 14ch;
    font-size: clamp(47px, 11vw, 74px);
  }

  .hero-media {
    position: absolute;
    inset: 0;
    width: 100%;
    min-height: 100%;
    margin: 0;
  }

  .hero-frame {
    object-position: var(--hero-object-position-mobile, 67% center);
  }

  .quiz-layout {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .question-aside {
    min-height: 130px;
    padding: 20px 27px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .question-number {
    font-size: 75px;
  }

  .question-aside p {
    max-width: 330px;
    margin-left: auto;
    font-size: 18px;
    text-align: right;
  }

  .aside-orbit {
    left: 17%;
    bottom: -125px;
  }

  .screen-contact,
  .screen-paywall,
  .screen-thankyou {
    grid-template-columns: 1fr;
  }

  .contact-visual {
    padding-top: 38px;
  }

  .visagism-reading,
  .method-sources {
    grid-template-columns: 1fr;
  }

  .video-placeholder {
    width: 180px;
  }

  .checkout-card {
    max-width: 540px;
  }

  .delivery-receipt {
    width: min(540px, 100%);
  }

  .result-hero {
    grid-template-columns: 1fr;
  }

  .result-media {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  :root { --page-padding: 18px; }

  .brand small { display: none; }

  .screen {
    padding-top: calc(var(--header-height) + 23px);
  }

  .screen-quiz,
  .screen-photos {
    padding-bottom: calc(100px + env(safe-area-inset-bottom));
  }

  .photo-header {
    margin-top: 4px;
    gap: 18px;
  }

  .photo-header h2 {
    font-size: 39px;
  }

  .photo-security {
    width: 100%;
    min-width: 0;
  }

  .photo-workspace {
    min-height: 0;
    border-radius: 14px;
  }

  .pose-guide {
    min-height: 355px;
    padding: 22px;
  }

  .pose-model {
    width: 180px;
  }

  .pose-instructions {
    padding-top: 16px;
  }

  .pose-instructions h3 {
    font-size: 29px;
  }

  .capture-panel {
    padding: 18px;
  }

  .capture-rules {
    grid-template-columns: 1fr 1fr;
  }

  .capture-rules span {
    min-height: 42px;
    font-size: 9px;
  }

  .camera-frame {
    min-height: 360px;
  }

  .capture-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .capture-actions > * {
    width: 100%;
    justify-content: center;
  }

  .photo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .photo-navigation,
  .question-actions {
    position: sticky;
    z-index: 9;
    bottom: max(8px, env(safe-area-inset-bottom));
    margin-right: -10px;
    margin-left: -10px;
    padding: 12px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: color-mix(in srgb, var(--surface) 92%, transparent);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    backdrop-filter: blur(18px);
  }

  .photo-navigation .primary-button,
  .question-actions .primary-button {
    min-height: 48px;
  }

  .photo-status {
    padding-bottom: 8px;
  }

  .generation-preview {
    aspect-ratio: 3 / 4;
  }

  .screen-hero {
    min-height: max(100svh, 790px);
    padding: var(--header-height) var(--page-padding) 22px;
  }

  .hero-media {
    min-height: 100%;
  }

  .hero-copy h1 {
    max-width: 12.5ch;
    font-size: clamp(42px, 12vw, 56px);
  }

  .hero-copy h1 em {
    display: inline;
  }

  .hero-copy {
    padding: clamp(200px, 29vh, 270px) 0 18px;
  }

  .hero-logo {
    width: 190px;
    margin-bottom: 11px;
  }

  .hero-lead {
    margin-bottom: 26px;
    font-size: 15px;
  }

  .hero-notes {
    margin-top: 25px;
    gap: 7px;
  }

  .hero-notes span {
    padding: 6px 10px;
    font-size: 10px;
  }

  .quiz-progress {
    margin-top: 8px;
  }

  .progress-tools {
    gap: 9px;
  }

  .quiz-theme-switch button {
    min-width: 47px;
    padding-inline: 7px;
  }

  .quiz-layout {
    margin-top: 24px;
    border-radius: 14px;
  }

  .question-aside {
    min-height: 95px;
  }

  .question-aside p {
    max-width: 230px;
    font-size: 15px;
  }

  .question-number {
    position: absolute;
    font-size: 64px;
  }

  .question-panel {
    padding: 27px 20px;
  }

  .question-panel h2 {
    font-size: 36px;
  }

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

  .option {
    min-height: 64px;
  }

  .question-actions {
    gap: 15px;
  }

  .question-actions .primary-button {
    min-width: 148px;
  }

  .comparison-media {
    gap: 8px;
  }

  .compare-placeholder {
    min-height: 130px;
    padding: 12px;
  }

  .contact-visual blockquote {
    font-size: 46px;
  }

  .contact-card {
    padding: 27px 20px;
  }

  .screen-analysis h2 {
    font-size: 45px;
  }

  .analysis-list {
    max-width: 300px;
    gap: 7px 14px;
  }

  .screen-paywall {
    padding-top: calc(var(--header-height) + 40px);
  }

  .screen-thankyou {
    padding-top: calc(var(--header-height) + 40px);
  }

  .thankyou-copy h2 {
    font-size: 49px;
  }

  .thankyou-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .thankyou-actions a,
  .thankyou-view-result {
    width: 100%;
    justify-content: center;
  }

  .delivery-receipt {
    padding: 28px 20px;
  }

  .paywall-teaser h2 {
    font-size: 49px;
  }

  .locked-preview {
    grid-template-columns: 1fr;
  }

  .locked-preview div,
  .locked-preview div:nth-child(odd),
  .locked-preview div:nth-last-child(-n+2) {
    min-height: 75px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .locked-preview div:last-child { border-bottom: 0; }

  .checkout-card {
    padding: 28px 20px;
  }

  .result-hero h2 {
    font-size: 65px;
  }

  .result-media {
    min-height: 430px;
  }

  .result-grid {
    grid-template-columns: 1fr;
    margin-top: 45px;
  }

  .result-card-wide {
    grid-column: auto;
  }

  .profile-facts {
    grid-template-columns: 1fr 1fr;
  }

  .transformation-levels {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .result-actions {
    align-items: stretch;
    flex-direction: column-reverse;
  }

  .result-actions button {
    width: 100%;
  }

  .toast {
    left: 18px;
    right: 18px;
    bottom: 18px;
  }
}

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

  .hero-frame {
    transform: none !important;
    filter: none !important;
    animation: none !important;
    transition: opacity 480ms ease !important;
  }

  .hero-camera-flash {
    display: none !important;
  }
}
