:root {
  --navy: #274d7b;
  --gold: #bf9859;
  --white: #f8f6f1;
  --desktop-bg: url("https://res.cloudinary.com/dmwf5xxxg/image/upload/v1781730544/ChatGPT_Image_17_de_jun._de_2026_17_12_01_lwtala.png");
  --mobile-bg: url("https://res.cloudinary.com/dmwf5xxxg/image/upload/v1781731380/ChatGPT_Image_15_de_jun._de_2026_15_50_07_thlgwz.png");
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--white);
  background: #081017;
  font-family: "Inter", Arial, sans-serif;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: 9999;
  content: "";
  pointer-events: none;
  opacity: 0.24;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.86' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.72'/%3E%3C/svg%3E");
  background-size: 135px 135px;
}

body.modal-open {
  overflow: hidden;
}

.capture-page {
  min-height: 100vh;
  overflow-x: hidden;
  background: #081017;
}

.top-bar {
  position: relative;
  z-index: 3;
  display: flex;
  min-height: 67px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  background:
    linear-gradient(90deg, rgba(7, 16, 27, 0.28) 0%, rgba(18, 48, 82, 0.9) 16%, var(--navy) 50%, rgba(18, 48, 82, 0.9) 84%, rgba(7, 16, 27, 0.28) 100%);
  text-align: center;
  animation: reveal-blur 720ms ease both;
}

.top-bar p {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(16px, 1.35vw, 21px);
  line-height: 1.1;
  letter-spacing: 0;
}

.desktop-only {
  display: inline;
}

.hero {
  position: relative;
  z-index: 20;
  display: flex;
  min-height: calc(100vh - 67px);
  align-items: flex-start;
  background-image: var(--desktop-bg);
  background-position: 54% top;
  background-size: 112% auto;
  background-repeat: no-repeat;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  display: block;
  height: 260px;
  content: "";
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(16, 18, 19, 0) 0%,
      rgba(16, 18, 19, 0.16) 22%,
      rgba(16, 18, 19, 0.54) 55%,
      rgba(16, 18, 19, 0.9) 82%,
      #101213 100%
    );
}

.hero::before {
  display: none;
}

.hero__shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76) 0%, rgba(0, 0, 0, 0.52) 30%, rgba(0, 0, 0, 0.08) 66%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.22) 67%, rgba(0, 0, 0, 0.72) 100%);
}

.bottom-blur {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  z-index: 2;
  height: 190px;
  pointer-events: none;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background:
    linear-gradient(180deg, rgba(8, 16, 23, 0) 0%, rgba(8, 16, 23, 0.16) 34%, rgba(8, 16, 23, 0.72) 100%);
  mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 24%, #000 72%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.28) 24%, #000 72%);
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(650px, calc(100% - 48px));
  margin: 104px 0 0 12.3%;
}

.visitor-badge {
  display: inline-flex;
  width: fit-content;
  min-width: 224px;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0 0 28px;
  padding: 0 16px;
  border: 0;
  border-radius: 8px;
  color: #6f7778;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 19px;
  line-height: 1;
  animation: reveal-blur 720ms 120ms ease both;
}

.visitor-badge::before {
  width: 24px;
  height: 24px;
  content: "";
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23828b8c' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 12s3.5-6 10-6 10 6 10 6-3.5 6-10 6S2 12 2 12Z'/%3E%3Ccircle cx='12' cy='12' r='3'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#viewer-count {
  display: inline-block;
  min-width: 2ch;
  color: #6f7778;
}

h1,
h2,
p {
  margin-top: 0;
}

h1 {
  max-width: 610px;
  margin-bottom: 28px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(32px, 2.4vw, 44px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: 0;
  text-transform: uppercase;
  animation: reveal-blur 780ms 220ms ease both;
}

h2 {
  max-width: 505px;
  margin-bottom: 36px;
  font-family: "Inter", Arial, sans-serif;
  font-size: clamp(16px, 1.35vw, 22px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0;
  animation: reveal-blur 780ms 340ms ease both;
}

.cta-button {
  position: relative;
  display: inline-flex;
  width: min(435px, 100%);
  min-height: 82px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 10px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 19px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(18px, 1.3vw, 24px);
  line-height: 1;
  overflow: hidden;
  text-align: center;
  text-decoration: none;
  transition: background-color 220ms ease, box-shadow 220ms ease, transform 220ms ease;
  animation: reveal-blur-static 780ms 460ms ease both;
}

.cta-button::before {
  position: absolute;
  top: 10px;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  width: 62px;
  content: "";
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.96), rgba(248, 246, 241, 0.88)),
    radial-gradient(circle at 35% 20%, rgba(191, 152, 89, 0.2), transparent 46%);
  box-shadow:
    inset 0 0 18px rgba(255, 255, 255, 0.28),
    0 0 18px rgba(191, 152, 89, 0.24);
  transition:
    width 440ms cubic-bezier(0.22, 1, 0.36, 1),
    background 260ms ease,
    box-shadow 260ms ease;
}

.cta-button::after {
  position: absolute;
  top: 50%;
  right: 27px;
  z-index: 3;
  width: 27px;
  height: 27px;
  content: "";
  background-color: #8a642f;
  filter: drop-shadow(0 0 6px rgba(191, 152, 89, 0.2));
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  transform: translateY(-50%);
  transition: background-color 260ms ease, transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.cta-button__fill {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  z-index: 0;
  width: calc(100% - 86px);
  border-radius: 11px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 243, 175, 0.52), transparent 42%),
    radial-gradient(circle, rgba(255, 246, 190, 0.22) 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(255, 238, 132, 0.82) 0%, rgba(201, 89, 31, 0.78) 43%, var(--gold) 100%),
    linear-gradient(135deg, #d4b06d 0%, var(--gold) 48%, #a87b3f 100%);
  background-size: auto, 15px 15px, auto, auto;
  box-shadow:
    inset 0 0 30px rgba(255, 244, 152, 0.44),
    inset 0 -18px 28px rgba(255, 236, 118, 0.28),
    0 0 24px rgba(191, 152, 89, 0.34);
  transition:
    width 440ms cubic-bezier(0.22, 1, 0.36, 1),
    background 220ms ease,
    box-shadow 220ms ease;
}

.cta-button__label {
  position: relative;
  display: inline-flex;
  z-index: 1;
  min-height: 60px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 0;
  border-radius: 11px;
  background: transparent;
  box-shadow: none;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0;
  margin-right: 72px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.cta-button__label::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -60%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  animation: button-shine 2.8s ease-in-out infinite;
}

@keyframes button-shine {
  0%,
  42% {
    left: -62%;
  }

  72%,
  100% {
    left: 122%;
  }
}

.cta-button:hover,
.cta-button:focus-visible,
.cta-button.is-activating {
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(138, 100, 47, 0.22);
  transform: translateY(-1px);
}

.cta-button:hover .cta-button__label,
.cta-button:focus-visible .cta-button__label,
.cta-button.is-activating .cta-button__label {
  color: rgba(248, 246, 241, 0.92);
}

.cta-button:hover .cta-button__fill,
.cta-button:focus-visible .cta-button__fill,
.cta-button.is-activating .cta-button__fill {
  width: calc(100% - 86px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 229, 148, 0.42), transparent 42%),
    radial-gradient(circle, rgba(255, 244, 180, 0.18) 1px, transparent 1.4px),
    linear-gradient(180deg, rgba(218, 171, 73, 0.88) 0%, rgba(165, 78, 36, 0.86) 45%, #9b6d36 100%),
    linear-gradient(135deg, #b88d48 0%, #9f7138 48%, #7b532c 100%);
  background-size: auto, 15px 15px, auto, auto;
  box-shadow:
    inset 0 0 30px rgba(255, 228, 127, 0.32),
    inset 0 -18px 26px rgba(111, 72, 36, 0.28),
    0 0 26px rgba(138, 100, 47, 0.32);
}

.cta-button:hover::before,
.cta-button:focus-visible::before,
.cta-button.is-activating::before {
  width: 118px;
  background:
    linear-gradient(135deg, rgba(248, 246, 241, 0.96), rgba(245, 240, 230, 0.9)),
    radial-gradient(circle at 35% 20%, rgba(138, 100, 47, 0.24), transparent 46%);
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    0 0 24px rgba(138, 100, 47, 0.28);
}

.cta-button:hover::after,
.cta-button:focus-visible::after,
.cta-button.is-activating::after {
  background-color: #6f4c25;
  transform: translateX(-2px) translateY(calc(-50% - 2px));
}

.cta-button:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 4px;
}

.notice {
  width: min(370px, 100%);
  margin: 15px 0 0;
  color: rgba(248, 246, 241, 0.82);
  font-family: "Inter", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  animation: reveal-blur-static 780ms 540ms ease both;
}

.signup-toast {
  display: none;
}

.section-transition {
  display: none;
}

.about-section {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 96px 24px 88px;
  background: #101213;
}

.about-section::before {
  display: none;
}

.about-inner {
  width: min(900px, 100%);
  margin: 0 auto;
}

.section-kicker {
  position: relative;
  z-index: 0;
  margin: -8px 0 0;
  color: transparent;
  font-family: "Instrument Serif", Georgia, serif;
  text-align: center;
  text-transform: uppercase;
  animation: title-glow-pulse 3.8s ease-in-out infinite;
}

.section-kicker span {
  display: block;
  color: transparent;
  background: linear-gradient(180deg, rgba(248, 246, 241, 0.74) 0%, rgba(128, 132, 132, 0.48) 42%, rgba(16, 18, 19, 0) 92%);
  -webkit-background-clip: text;
  background-clip: text;
  line-height: 0.78;
}

.section-kicker span:first-child {
  transform: translateY(-0.22em);
  font-size: clamp(78px, 13vw, 172px);
}

.section-kicker span:last-child {
  margin-top: -0.18em;
  font-size: clamp(128px, 22vw, 292px);
}

.about-card {
  position: relative;
  z-index: 1;
  width: min(520px, 100%);
  margin: -22px auto 0;
  padding: 22px 24px 18px;
  overflow: hidden;
  border-radius: 22px;
  color: #333838;
  background: rgba(248, 246, 241, 0.94);
  box-shadow:
    inset 22px 0 40px rgba(39, 77, 123, 0.14),
    inset -22px 0 40px rgba(191, 152, 89, 0.18),
    0 18px 46px rgba(0, 0, 0, 0.24);
}

.about-card::before,
.about-card::after {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  content: "";
  pointer-events: none;
}

.about-card::before {
  left: 0;
  background: linear-gradient(90deg, rgba(39, 77, 123, 0.22), transparent);
}

.about-card::after {
  right: 0;
  background: linear-gradient(270deg, rgba(191, 152, 89, 0.24), transparent);
}

.profile-row {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 auto 26px;
}

.profile-photo-frame {
  position: relative;
  width: clamp(72px, 8vw, 92px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  padding: 3px;
  border-radius: 50%;
  background: conic-gradient(from 215deg, #feda75 0deg, #fa7e1e 70deg, #d62976 145deg, #962fbf 230deg, #4f5bd5 305deg, #feda75 360deg);
}

.profile-photo-frame::after {
  display: none;
}

.profile-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.profile-meta h2 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 5px;
  color: #2f3434;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(26px, 3.2vw, 36px);
  font-weight: 400;
  line-height: 1;
  animation: none;
}

.profile-meta p {
  margin: 0;
  color: #6a6f6f;
  font-size: clamp(13px, 1.4vw, 15px);
  font-weight: 600;
}

.verified-badge {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background-color: #3897f0;
  clip-path: polygon(50% 0%, 61% 15%, 78% 10%, 83% 27%, 100% 34%, 90% 50%, 100% 66%, 83% 73%, 78% 90%, 61% 85%, 50% 100%, 39% 85%, 22% 90%, 17% 73%, 0% 66%, 10% 50%, 0% 34%, 17% 27%, 22% 10%, 39% 15%);
  position: relative;
}

.verified-badge::after {
  position: absolute;
  inset: 0;
  content: "";
  background-color: #fff;
  clip-path: polygon(39% 52%, 47% 60%, 64% 39%, 70% 44%, 48% 71%, 32% 57%);
}

.about-copy {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
}

.about-copy p {
  margin: 0 0 18px;
  color: #3c4242;
  font-size: clamp(14px, 1.45vw, 17px);
  font-weight: 700;
  line-height: 1.5;
}

.signature {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  color: #2f3434;
  font-family: "WindSong", cursive;
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  transform: rotate(-2deg);
}

@keyframes title-glow-pulse {
  0%,
  100% {
    opacity: 0.72;
    filter: brightness(0.94);
  }

  50% {
    opacity: 0.92;
    filter: brightness(1.12);
  }
}

.site-footer {
  position: relative;
  z-index: 1;
  padding: 26px 18px 34px;
  background: #101213;
  text-align: center;
}

.site-footer p {
  margin: 0;
  color: rgba(248, 246, 241, 0.46);
  font-size: 12px;
  line-height: 1.4;
}

.reveal-on-scroll {
  opacity: 0;
  filter: blur(16px);
  transform: translateY(34px);
  transition: opacity 850ms ease, filter 850ms ease, transform 850ms ease;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

@keyframes reveal-blur {
  from {
    opacity: 0;
    filter: blur(12px);
    transform: translateY(14px);
  }

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

@keyframes reveal-blur-static {
  from {
    opacity: 0;
    filter: blur(12px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.form-modal {
  position: fixed;
  inset: 0;
  z-index: 20000;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.form-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.form-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 8, 13, 0);
  backdrop-filter: blur(0);
  -webkit-backdrop-filter: blur(0);
  transition: background-color 280ms ease, backdrop-filter 280ms ease, -webkit-backdrop-filter 280ms ease;
}

.form-modal.is-open .form-modal__backdrop {
  background: rgba(3, 8, 13, 0.58);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.form-card {
  position: relative;
  z-index: 1;
  width: min(390px, 100%);
  padding: 28px 18px 24px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  filter: blur(8px);
  transform: translateY(18px) scale(0.97);
  transition: opacity 280ms ease, filter 280ms ease, transform 280ms ease;
}

.form-modal.is-open .form-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.form-card__close {
  position: absolute;
  top: -4px;
  right: 10px;
  width: 34px;
  height: 34px;
  border: 0;
  color: var(--white);
  background: transparent;
  font-size: 34px;
  line-height: 1;
  cursor: pointer;
}

.form-step {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.form-card h3 {
  margin: 0 0 20px;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(25px, 3vw, 32px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.lead-form {
  display: grid;
  gap: 13px;
}

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

.lead-form label {
  display: grid;
  gap: 7px;
}

.lead-form span {
  font-size: 13px;
  font-weight: 700;
}

.lead-form input {
  width: 100%;
  height: 48px;
  border: 1px solid rgba(248, 246, 241, 0.34);
  border-radius: 8px;
  color: var(--white);
  background: transparent;
  font: 600 16px/1 "Inter", Arial, sans-serif;
  outline: 0;
  padding: 0 15px;
}

.lead-form input::placeholder {
  color: rgba(248, 246, 241, 0.45);
}

.lead-form input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(191, 152, 89, 0.2);
}

.lead-form button {
  position: relative;
  display: inline-flex;
  min-height: 72px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  padding: 8px;
  border: 1px solid rgba(248, 246, 241, 0.12);
  border-radius: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  cursor: pointer;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 20px;
  line-height: 1;
  overflow: hidden;
  overflow-wrap: anywhere;
  transition: background-color 180ms ease, transform 180ms ease;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.lead-form button::after {
  width: 28px;
  height: 28px;
  content: "";
  flex: 0 0 auto;
  background-color: #f3d584;
  filter: drop-shadow(0 0 8px rgba(243, 213, 132, 0.34));
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 3h6v6'/%3E%3Cpath d='M10 14 21 3'/%3E%3Cpath d='M21 14v5a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V5a2 2 0 0 1 2-2h5'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.form-button__label {
  position: relative;
  display: inline-flex;
  min-height: 54px;
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(255, 238, 155, 0.42);
  border-radius: 10px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 239, 188, 0.42), transparent 48%),
    linear-gradient(135deg, #d4b06d 0%, var(--gold) 48%, #a87b3f 100%);
  box-shadow:
    inset 0 0 26px rgba(255, 240, 143, 0.4),
    0 0 24px rgba(191, 152, 89, 0.34);
  color: #3f4443;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 22px;
  font-weight: 400;
  white-space: nowrap;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.form-button__label::before {
  position: absolute;
  top: -35%;
  bottom: -35%;
  left: -60%;
  width: 42%;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
  transform: skewX(-18deg);
  animation: button-shine 2.8s ease-in-out infinite;
}

.lead-form button:hover,
.lead-form button:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

.lead-form button:hover .form-button__label,
.lead-form button:focus-visible .form-button__label {
  color: #4f5352;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 232, 0.96), rgba(255, 244, 154, 0.86) 44%, transparent 72%),
    linear-gradient(135deg, #fff6a8 0%, #f5dc5d 46%, #d8a83b 100%);
  box-shadow:
    inset 0 0 34px rgba(255, 255, 214, 0.82),
    0 0 34px rgba(245, 220, 93, 0.66);
}

.form-message {
  min-height: 18px;
  margin: 0;
  color: rgba(248, 246, 241, 0.78);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;
}

.form-message.is-success {
  color: #c8e6c9;
}

.form-message.is-error {
  color: #ffcdd2;
}

@media (max-width: 900px) {
  .top-bar {
    min-height: 56px;
    padding-inline: 18px;
  }

  .top-bar p {
    max-width: 330px;
    font-size: 15px;
  }

  .desktop-only {
    display: none;
  }

  .hero {
    min-height: calc(100vh - 56px);
    justify-content: center;
    background-image: var(--mobile-bg);
    background-position: center top;
    background-size: cover;
  }

  .hero::after {
    height: 240px;
  }

  .hero::before {
    display: none;
  }

  .hero__shade {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.42) 22%, rgba(0, 0, 0, 0.08) 50%, rgba(0, 0, 0, 0) 62%),
      linear-gradient(180deg, rgba(0, 0, 0, 0.24) 0%, rgba(0, 0, 0, 0.05) 35%, rgba(0, 0, 0, 0.2) 69%, rgba(0, 0, 0, 0.48) 100%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.22) 100%);
  }

  .hero__content {
    width: min(325px, calc(100% - 34px));
    margin: 44px auto 0;
    padding-bottom: 132px;
    text-align: center;
  }

  .visitor-badge {
    width: min(204px, 100%);
    min-width: 0;
    min-height: 36px;
    gap: 4px;
    margin: 0 auto 22px;
    padding: 0 12px;
    border-radius: 3px;
    font-size: 13px;
  }

  .visitor-badge::before {
    width: 19px;
    height: 19px;
  }

  h1 {
    max-width: 325px;
    margin-bottom: 14px;
    font-size: clamp(21px, 6.5vw, 28px);
    line-height: 1.02;
  }

  h2 {
    display: none;
  }

  .cta-button {
    position: fixed;
    right: 50%;
    bottom: 50px;
    z-index: 10020;
    width: min(326px, calc(100% - 34px));
    min-height: 74px;
    gap: 10px;
    padding: 8px;
    border-radius: 17px;
    transform: translateX(50%);
  }

  .cta-button::after {
    right: 22px;
    width: 24px;
    height: 24px;
  }

  .cta-button::before {
    top: 8px;
    right: 8px;
    bottom: 8px;
    width: 54px;
    border-radius: 12px;
  }

  .cta-button__fill {
    top: 8px;
    bottom: 8px;
    left: 8px;
    width: calc(100% - 70px);
    border-radius: 10px;
  }

  .cta-button__label {
    min-height: 56px;
    border-radius: 10px;
    font-size: 19px;
    margin-right: 58px;
  }

  .cta-button:hover .cta-button__fill,
  .cta-button:focus-visible .cta-button__fill,
  .cta-button.is-activating .cta-button__fill {
    width: calc(100% - 70px);
  }

  .cta-button:hover::before,
  .cta-button:focus-visible::before,
  .cta-button.is-activating::before {
    width: 96px;
  }

  .signup-toast {
    position: fixed;
    right: 50%;
    bottom: 132px;
    z-index: 10021;
    display: block;
    width: fit-content;
    max-width: calc(100% - 24px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    color: rgba(174, 181, 181, 0.9);
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    font-size: 11px;
    font-weight: 500;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    transform: translateX(50%);
    animation: signup-reveal-blur 780ms 620ms ease both;
    transition: opacity 180ms ease, transform 180ms ease, filter 180ms ease;
  }

  .signup-toast.is-ready {
    animation: none;
  }

  .signup-toast.is-changing {
    opacity: 0;
    filter: blur(6px);
    transform: translateX(50%) translateY(4px);
  }

  #signup-name {
    color: rgba(229, 232, 229, 0.94);
    font-weight: 800;
  }

  @keyframes signup-reveal-blur {
    from {
      opacity: 0;
      filter: blur(12px);
      transform: translateX(50%) translateY(8px);
    }

    to {
      opacity: 1;
      filter: blur(0);
      transform: translateX(50%);
    }
  }

  .cta-button:hover,
  .cta-button:focus-visible {
    transform: translateX(50%) translateY(-1px);
  }

  .notice {
    position: fixed;
    right: 50%;
    bottom: 25px;
    z-index: 10020;
    width: min(272px, calc(100% - 48px));
    margin: 13px auto 0;
    font-size: 9px;
    font-weight: 600;
    line-height: 1.02;
    transform: translateX(50%);
  }

  .bottom-blur {
    display: block;
    position: fixed;
    height: 145px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }

  .form-modal {
    padding: 18px;
  }

  .form-card {
    width: min(370px, 100%);
    padding: 26px 14px 22px;
  }

  .form-card h3 {
    font-size: 25px;
  }

  .lead-form button {
    min-height: 68px;
  }

  .form-button__label {
    min-height: 50px;
    font-size: 18px;
  }

  .section-transition {
    display: none;
  }

  .about-section {
    margin-top: 0;
    padding: 78px 22px 76px;
  }

  .section-kicker {
    margin: 0;
  }

  .section-kicker span:first-child {
    font-size: clamp(64px, 20vw, 94px);
  }

  .section-kicker span:last-child {
    margin-top: -0.2em;
    font-size: clamp(112px, 34vw, 156px);
  }

  .about-card {
    width: min(390px, 100%);
    margin-top: -12px;
    padding: 18px 20px 16px;
    border-radius: 20px;
  }

  .profile-row {
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
  }

  .profile-photo-frame {
    width: 74px;
  }

  .verified-badge {
    width: 18px;
    height: 18px;
  }

  .about-copy p {
    font-size: 14px;
  }

  .signature {
    margin-top: 20px;
    font-size: 28px;
  }
}

@media (max-width: 420px) {
  .capture-page {
    min-height: 100svh;
  }

  .hero {
    min-height: calc(100svh - 56px);
    background-size: cover;
  }

  .hero__content {
    margin-top: 44px;
  }
}

@media (min-width: 1400px) {
  .top-bar {
    min-height: 76px;
  }

  .hero {
    min-height: calc(100vh - 76px);
  }

  .hero__content {
    margin-top: 12vh;
  }
}
