@font-face {
  font-family: "Inter";
  src: url("assets/inter-latin.woff2") format("woff2");
  font-weight: 400 900;
  font-display: swap;
}

@font-face {
  font-family: "Space Grotesk";
  src: url("assets/space-grotesk-latin.woff2") format("woff2");
  font-weight: 400 700;
  font-display: swap;
}

:root {
  color-scheme: dark;
  --black: #000000;
  --orange: #ff6b35;
  --orange-soft: #ff8155;
  --teal: #1d9e75;
  --beige: #d4c5a9;
  --white: #ffffff;
  --surface: #0c0c0c;
  --surface-2: #141414;
  --muted: #817d76;
  --line: rgba(255, 107, 53, 0.18);
  --line-strong: rgba(255, 107, 53, 0.48);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
}

body {
  min-width: 320px;
  min-height: 100vh;
  min-height: 100svh;
  margin: 0;
  color: var(--beige);
  background: var(--black);
  font-family: "Inter", sans-serif;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
label {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
}

.app-shell {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  grid-template-columns: minmax(330px, 38%) minmax(0, 1fr);
  background:
    radial-gradient(circle at 94% 4%, rgba(255, 107, 53, 0.1), transparent 25rem),
    var(--black);
}

.showcase {
  position: sticky;
  top: 0;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  border-right: 1px solid var(--line);
  isolation: isolate;
}

.showcase-image,
.showcase-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.showcase-image {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.86) contrast(1.05);
}

.showcase-shade {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.72) 58%, rgba(0, 0, 0, 0.98)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent);
}

.showcase::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 80% 12%, rgba(255, 107, 53, 0.46), transparent 20rem);
  content: "";
  mix-blend-mode: color;
}

.showcase-logo {
  position: absolute;
  top: 40px;
  left: 40px;
}

.showcase-logo img {
  display: block;
  width: 92px;
  height: auto;
}

.showcase-copy {
  position: absolute;
  right: 36px;
  bottom: 128px;
  left: 40px;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.live-pill i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 5px rgba(29, 158, 117, 0.16);
}

.showcase-copy p {
  margin: 20px 0 12px;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(34px, 3.4vw, 60px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.showcase-copy p strong {
  color: var(--orange);
}

.showcase-copy small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-proof {
  position: absolute;
  right: 40px;
  bottom: 36px;
  left: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 18px;
}

.showcase-proof span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 9px;
}

.showcase-proof b {
  display: block;
  margin-bottom: 3px;
  color: var(--white);
  font-size: 15px;
}

.wizard {
  display: flex;
  min-height: 100vh;
  min-height: 100svh;
  flex-direction: column;
  padding: 0 clamp(24px, 5vw, 74px);
}

.wizard-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.mobile-logo {
  display: none;
}

.wizard-name {
  display: grid;
  gap: 3px;
}

.wizard-name span {
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard-name small {
  color: var(--orange);
  font-size: 9px;
  font-weight: 700;
}

.website-link {
  margin-left: auto;
  color: var(--muted);
  font-size: 11px;
  text-underline-offset: 4px;
}

.progress {
  height: 2px;
  margin: -1px 0 0;
  background: transparent;
}

.progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--orange);
  transition: width 300ms ease;
}

.screen-wrap {
  display: grid;
  width: min(100%, 760px);
  flex: 1;
  align-items: center;
  margin: 0 auto;
  padding: 48px 0;
}

.screen {
  width: 100%;
  animation: screenIn 260ms ease both;
}

.screen[hidden] {
  display: none;
}

@keyframes screenIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.kicker,
.step-label {
  margin: 0 0 13px;
  color: var(--orange);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  color: var(--white);
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

h1 {
  max-width: 700px;
  font-size: clamp(46px, 6vw, 78px);
  line-height: 0.98;
}

h2 {
  max-width: 650px;
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1;
}

h1:focus,
h2:focus {
  outline: none;
}

.intro-copy,
.screen-copy {
  max-width: 630px;
  margin: 20px 0 0;
  color: var(--beige);
  font-size: 15px;
  line-height: 1.65;
}

.service-preview {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 30px 0 34px;
}

.service-preview span {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 13px;
  cursor: pointer;
  font-weight: 800;
  text-decoration: none;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

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

.button:active {
  transform: scale(0.985);
}

.button:disabled {
  cursor: not-allowed;
  filter: grayscale(1);
  opacity: 0.38;
  transform: none;
}

.button-primary {
  color: var(--black);
  background: var(--orange);
}

.button-primary:hover:not(:disabled) {
  background: var(--orange-soft);
}

.button-secondary {
  border-color: var(--line-strong);
  color: var(--white);
  background: var(--surface-2);
}

.button-large {
  min-width: min(100%, 320px);
  min-height: 66px;
  border-radius: 16px;
  font-size: 15px;
}

.microcopy {
  margin: 12px 0 0;
  color: #66625d;
  font-size: 9px;
}

.back-link {
  margin: 0 0 28px;
  padding: 0;
  border: 0;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

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

.choice-wide {
  grid-column: 1 / -1;
}

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

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

.choice-card:has(input:checked) {
  border-color: var(--orange);
  background: rgba(255, 107, 53, 0.1);
  box-shadow: inset 0 0 0 1px rgba(255, 107, 53, 0.2);
}

.choice-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.choice-card:has(input:focus-visible) {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.choice-icon {
  display: grid;
  width: 50px;
  height: 50px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(255, 107, 53, 0.28);
  border-radius: 11px;
  color: var(--orange);
  background: rgba(255, 107, 53, 0.07);
  font-family: "Space Grotesk", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

.choice-card strong,
.choice-card small {
  display: block;
}

.choice-card strong {
  color: var(--white);
  font-size: 13px;
}

.choice-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}

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

.choice-card.compact {
  min-height: 74px;
}

.choice-card.compact .choice-icon {
  width: 42px;
  height: 42px;
}

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

.timing-grid .choice-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.text-field {
  display: grid;
  gap: 8px;
  color: var(--beige);
  font-size: 10px;
  font-weight: 700;
}

.text-field span small {
  color: var(--muted);
  font-weight: 400;
}

.text-field input,
.text-field textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  outline: 0;
  color: var(--white);
  background: var(--surface);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.text-field input {
  height: 52px;
  padding: 0 14px;
}

.text-field textarea {
  min-height: 104px;
  padding: 13px 14px;
  resize: vertical;
}

.text-field input:focus,
.text-field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.12);
}

.textarea-field {
  margin: 0 0 20px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 14px;
}

#contact-form {
  margin-top: 30px;
}

.consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 20px 0;
  color: var(--muted);
  cursor: pointer;
  font-size: 9px;
  line-height: 1.5;
}

.consent input {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin: 0;
  accent-color: var(--orange);
}

.result-icon {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--black);
  background: var(--teal);
  font-size: 25px;
  font-weight: 900;
}

.summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 26px 0 20px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--line);
}

.summary div {
  padding: 14px;
  background: var(--surface);
}

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

.summary small {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 8px;
  text-transform: uppercase;
}

.summary strong {
  color: var(--white);
  font-size: 11px;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.privacy-note {
  max-width: 560px;
  color: #66625d;
  font-size: 8px;
  line-height: 1.5;
}

.honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.form-status {
  margin: 0 0 1rem;
  color: var(--teal);
  font-size: 0.86rem;
  line-height: 1.55;
}

.form-status:empty {
  display: none;
}

.form-status.error {
  display: block;
  padding: 0.9rem 1rem;
  color: #ffb39c;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.28);
  border-radius: 10px;
}

.fallback-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.85rem;
}

.fallback-actions .button {
  width: auto;
  margin: 0;
  padding: 0.7rem 0.9rem;
  font-size: 0.78rem;
}

.restart-link {
  margin: 12px 0 0;
}

.wizard-footer {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  color: #5d5954;
  font-size: 8px;
}

.wizard-footer a {
  text-underline-offset: 3px;
}

.button:focus-visible,
.back-link:focus-visible,
.website-link:focus-visible,
.showcase-logo:focus-visible,
.mobile-logo:focus-visible,
.wizard-footer a:focus-visible,
.consent a:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

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

  .showcase {
    position: relative;
    min-height: 190px;
    height: 190px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .showcase-logo,
  .showcase-proof {
    display: none;
  }

  .showcase-copy {
    right: 22px;
    bottom: 20px;
    left: 22px;
  }

  .showcase-copy p {
    margin: 10px 0 6px;
    font-size: 31px;
  }

  .showcase-copy p br:first-of-type,
  .showcase-copy p br:nth-of-type(2) {
    display: none;
  }

  .showcase-copy small {
    font-size: 8px;
  }

  .wizard {
    min-height: calc(100svh - 190px);
    padding: 0 20px;
  }

  .mobile-logo {
    display: block;
  }

  .mobile-logo img {
    display: block;
    width: 58px;
    height: auto;
  }

  .wizard-header {
    min-height: 72px;
  }

  .screen-wrap {
    padding: 40px 0;
  }

  h1 {
    font-size: clamp(42px, 11vw, 62px);
  }

  h2 {
    font-size: clamp(33px, 9vw, 48px);
  }
}

@media (max-width: 620px) {
  .showcase {
    min-height: 168px;
    height: 168px;
  }

  .wizard {
    min-height: calc(100svh - 168px);
    padding: 0 16px;
  }

  .wizard-name span {
    font-size: 10px;
  }

  .website-link {
    font-size: 9px;
  }

  .choice-grid,
  .compact-grid,
  .timing-grid,
  .field-row {
    grid-template-columns: 1fr;
  }

  .choice-wide {
    grid-column: auto;
  }

  .choice-card,
  .choice-card.compact {
    min-height: 76px;
  }

  .timing-grid .choice-card {
    display: flex;
    justify-items: initial;
    text-align: left;
  }

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

  .result-actions {
    display: grid;
  }

  .result-actions .button,
  #contact-form .button,
  .screen > .button {
    width: 100%;
  }

  .wizard-footer {
    display: grid;
    justify-content: start;
    padding: 14px 0;
  }
}

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