:root {
  --bg: #2b0213;
  --bg-soft: #43081f;
  --cream: #ffffff;
  --page: #f7f3f1;
  --text-dark: #3a0a1c;
  --muted: #6d4a55;
  --orange: #fb5a11;
  --red: #d02d28;
  --burgundy: #6f1436;
  --white: #ffffff;
  --grad: linear-gradient(90deg, #fb5a11 0%, #d02d28 52%, #841538 100%);
  --radius: 32px;
  --max: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  background: var(--page);
  color: var(--text-dark);
  overflow-x: hidden;
}

html.is-scroll-locked,
html.is-scroll-locked body {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

.topbar {
  background: var(--grad);
  text-align: center;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  padding: 0.7rem 1rem;
  color: var(--white);
}

.hero-band {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(1200px 700px at 80% 18%, rgba(132, 21, 56, 0.45), transparent 55%),
    radial-gradient(900px 600px at 10% 80%, rgba(251, 90, 17, 0.12), transparent 50%),
    var(--bg);
  padding-bottom: 7.5rem;
}

.hero-curve {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  width: 100%;
  height: 200px;
  color: var(--page);
  fill: currentColor;
  z-index: 1;
  pointer-events: none;
  display: block;
}

.hero-curve-mobile {
  display: none;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.35rem 0 0.6rem;
  position: relative;
  z-index: 4;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 0;
}

.brand img,
.brand svg {
  width: auto;
  height: var(--logo-size, 52px);
  max-width: min(240px, calc(100vw - 7rem));
  object-fit: contain;
  object-position: left center;
}

.landing-intro {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background:
    radial-gradient(920px 640px at 82% 8%, rgba(251, 90, 17, 0.12), transparent 58%),
    radial-gradient(780px 520px at 8% 92%, rgba(208, 45, 40, 0.08), transparent 52%),
    radial-gradient(640px 420px at 50% 42%, rgba(111, 20, 54, 0.06), transparent 62%),
    #ffffff;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.landing-intro.is-leaving {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.landing-intro-logo {
  width: min(520px, 72vw);
  aspect-ratio: 1920 / 1080;
  height: auto;
}

.landing-intro-logo svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (prefers-reduced-motion: reduce) {
  .landing-intro {
    transition-duration: 0.2s;
  }

  .wizard-sending-fill {
    width: 100%;
    animation: none;
  }
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.header-community {
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.header-community:hover {
  color: #f15a24;
}

.btn-header {
  padding: 0.72rem 1.2rem;
  border-radius: 999px;
  font-size: 0.92rem;
  min-width: auto;
  box-shadow: none;
}

.menu-btn {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  flex-shrink: 0;
  appearance: none;
  -webkit-appearance: none;
}

.menu-btn svg {
  display: block;
  width: 24px;
  height: 18px;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
  padding: 1.2rem 0 0.4rem;
  position: relative;
  z-index: 2;
}

.hero h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(2.3rem, 4.4vw, 3.7rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.hero h1 .accent {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  margin: 0 0 1.6rem;
  font-size: 1.12rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  line-height: 1.5;
}

.hero p strong {
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  cursor: pointer;
  color: white;
  font-weight: 800;
  background: var(--grad);
  border-radius: 16px;
  padding: 0.95rem 1.45rem;
  box-shadow: 0 10px 30px rgba(208, 45, 40, 0.28);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.05);
}

.btn-lg {
  min-width: 210px;
  font-size: 1.05rem;
  padding: 1.05rem 1.6rem;
  border-radius: 18px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 0.85rem;
}

.hero-community {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.62rem 1.05rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  color: #ffffff;
  font-size: 0.92rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.hero-community:hover,
.hero-community:focus-visible {
  border-color: #f15a24;
  background: rgba(241, 90, 36, 0.18);
  color: #ffffff;
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.15rem 0 0 !important;
  font-size: 0.98rem !important;
  color: rgba(255, 255, 255, 0.92) !important;
}

.mini-check {
  width: var(--check-size, 22px);
  height: var(--check-size, 22px);
  display: grid;
  place-items: center;
  background: none;
  flex: 0 0 auto;
}

.mini-check img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
  z-index: 3;
  margin-bottom: -5.5rem;
}

.heart-glow {
  position: absolute;
  width: min(92%, 520px);
  opacity: 0.7;
  pointer-events: none;
  transform: translate(8%, 18%);
}

.phone {
  position: relative;
  width: min(290px, 68%);
  aspect-ratio: 9 / 18.4;
  border-radius: 38px;
  padding: 10px;
  background: linear-gradient(160deg, #2a2a2e, #111);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.45),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  transform: rotate(-6deg);
  z-index: 1;
}

.phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

.hero-photo {
  position: relative;
  z-index: 1;
  width: min(100%, var(--hero-size, 430px));
  max-height: 640px;
  object-fit: contain;
  filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.35));
}

.hero-visual-photo .heart-glow {
  display: none;
}

.page-body {
  background: var(--page);
  color: var(--text-dark);
  margin-top: -1px;
  position: relative;
  z-index: 2;
}

.stack {
  display: grid;
  gap: 1.25rem;
  padding-bottom: 1.2rem;
}

.card {
  border-radius: var(--radius);
}

.card-light,
.card-cream {
  background: #fff;
  color: var(--text-dark);
  border: 1px solid rgba(111, 20, 54, 0.12);
}

.card-dark {
  background: linear-gradient(180deg, #4a0a24, #350617);
  border: 1px solid rgba(251, 90, 17, 0.28);
}

.features-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0.4rem 0.2rem;
  padding: 1.7rem 0.8rem;
  text-align: center;
}

.feature {
  padding: 0.4rem 0.85rem;
}

.feature-icon {
  width: var(--feature-icon-size, 56px);
  height: var(--feature-icon-size, 56px);
  margin: 0 auto 0.85rem;
  display: grid;
  place-items: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.feature h3 {
  margin: 0 0 0.25rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 0.92rem;
  color: #4a2a34;
  line-height: 1.35;
}

.feature-rule {
  width: 1px;
  align-self: stretch;
  background: rgba(58, 10, 28, 0.12);
  margin: 0.4rem 0;
}

.open-card {
  display: grid;
  grid-template-columns: auto 1.15fr auto 1fr;
  gap: 1.4rem;
  align-items: center;
  padding: 1.7rem 1.8rem;
}

.open-card .mark {
  width: var(--mark-size, 74px);
}

.open-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.open-card .sub {
  margin: 0;
  font-size: 1.02rem;
  color: var(--muted);
}

.open-card .rule {
  width: 1px;
  align-self: stretch;
  background: rgba(58, 10, 28, 0.16);
}

.open-card .body {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.45;
  color: #4b2432;
}

.exclusive-card {
  display: grid;
  grid-template-columns: 1.15fr 0.95fr;
  gap: 1.6rem;
  align-items: center;
  padding: 1.7rem 1.8rem;
  background: linear-gradient(105deg, #3a0819 0%, #1a0208 100%);
  color: var(--white);
  border: 1px solid rgba(251, 90, 17, 0.22);
}

.exclusive-copy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.15rem;
  align-items: center;
}

.diamond {
  width: var(--diamond-size, 72px);
  height: var(--diamond-size, 72px);
  display: grid;
  place-items: center;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.diamond img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.exclusive-label {
  margin: 0 0 0.35rem;
  color: #fb7a32;
  font-weight: 800;
  font-size: 0.95rem;
}

.exclusive-card h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.exclusive-card .hi {
  color: #fb7a32;
}

.note-pill {
  display: inline-block;
  padding: 0.38rem 0.85rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.exclusive-side {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(251, 90, 17, 0.45);
}

.benefits {
  list-style: none;
  margin: 0 0 1.1rem;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}

.benefits li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.02rem;
}

.exclusive-side .btn {
  width: 100%;
  max-width: 280px;
}

.social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.45rem 1.8rem;
}

.social-card p {
  margin: 0;
  font-size: 1.22rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.social-card .hi {
  color: var(--orange);
  font-weight: 800;
}

.avatars {
  display: flex;
  align-items: center;
}

.avatars img,
.avatars .more {
  width: var(--avatar-size, 64px);
  height: var(--avatar-size, 64px);
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  margin-left: -14px;
  background: #1a0210;
}

.avatars img:first-child,
.avatars .more:first-child {
  margin-left: 0;
}

.avatars .more {
  display: grid;
  place-items: center;
  padding: 14px;
  background: var(--grad);
  border-color: #fff;
}

.avatars .more img {
  width: 100%;
  height: auto;
  margin: 0;
  border: 0;
  background: transparent;
  border-radius: 0;
}

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

.seo-card {
  padding: 1.6rem 1.4rem 1.8rem;
  color: var(--text-dark);
}

.seo-card h2 {
  margin: 0 0 0.7rem;
  font-size: 1.35rem;
  line-height: 1.25;
  color: var(--text-dark);
}

.seo-card h2 + p {
  margin-top: 0;
}

.seo-card p {
  margin: 0 0 0.85rem;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--muted);
}

.seo-card #faq {
  margin-top: 1.4rem;
}

.seo-faq {
  display: grid;
  gap: 0.55rem;
}

.seo-faq-item {
  border: 1px solid rgba(111, 20, 54, 0.12);
  border-radius: 12px;
  padding: 0.15rem 0.9rem;
  background: #fff;
}

.seo-faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.75rem 0;
  font-weight: 600;
  color: var(--text-dark);
}

.seo-faq-item summary::-webkit-details-marker {
  display: none;
}

.seo-faq-item[open] summary {
  color: #7a1535;
}

.seo-faq-item p {
  margin: 0 0 0.9rem;
  color: var(--muted);
}

.footer {
  text-align: center;
  padding: 0.6rem 1rem 2.4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
  margin: 0 0 0.85rem;
}

.footer-links a {
  color: #7a1535;
  font-weight: 600;
  text-decoration: none;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  text-decoration: underline;
}

.footer .security {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0.45rem;
  margin: 0.4rem 0 1.2rem;
  font-size: 0.95rem;
  color: #8a6b72;
  line-height: 1.45;
  font-weight: 500;
}

.footer-lock {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  margin-top: 0.18rem;
}

.footer-lock img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer .copy {
  margin: 0;
  font-size: 0.95rem;
  color: #2b1018;
  font-weight: 600;
}

.register-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  background: rgba(30, 30, 30, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

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

.register-modal-panel {
  position: relative;
  width: min(460px, 100%);
  max-height: min(92vh, 760px);
  overflow: auto;
  background: #1e1e1e;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
}

.register-close {
  position: absolute;
  top: 0.7rem;
  right: 0.85rem;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.register-close:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.register {
  margin: 0;
  padding: 1.7rem 1.8rem 1.5rem;
}

.register h2 {
  margin: 0 0 0.4rem;
  font-size: 1.5rem;
}

.register .lead {
  margin: 0 0 1.1rem;
  color: var(--muted);
}

.wizard {
  margin: 0;
  padding: 1.7rem 1.45rem 1.35rem;
  background: transparent;
  color: #ffffff;
}

.wizard-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 40px;
  margin: 0 2.4rem 1.1rem 0;
}

.wizard-back-orb {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.45rem;
  line-height: 1;
  cursor: pointer;
  flex: 0 0 40px;
}

.wizard-back-orb-spacer {
  visibility: hidden;
  pointer-events: none;
}

.wizard-progress {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  flex: 1;
}

.wizard-progress i {
  display: block;
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.16);
}

.wizard-progress i.is-on {
  background: #f15a24;
}

.wizard-kicker {
  margin: 0 0 0.4rem;
  color: #f15a24;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wizard h2 {
  margin: 0 0 0.45rem;
  font-size: clamp(1.5rem, 4vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  padding-right: 2.2rem;
  font-weight: 700;
}

.wizard-hint {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.wizard-form {
  display: grid;
  gap: 0.85rem;
}

.wizard-fieldset {
  display: grid;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.wizard-sending {
  margin: 0 0 1rem;
}

.wizard-sending-copy {
  margin: 0 0 0.7rem;
  font-size: 0.92rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.78);
}

.wizard-sending-track {
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.wizard-sending-fill {
  display: block;
  width: 38%;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, #f15a24, #7a1535);
  animation: wizard-send-slide 1.15s ease-in-out infinite;
}

@keyframes wizard-send-slide {
  0% {
    transform: translateX(-130%);
  }
  100% {
    transform: translateX(320%);
  }
}

.wizard-label {
  display: grid;
  gap: 0.45rem;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: #ffffff;
}

.wizard-control {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  padding: 0.95rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.05rem;
  outline: none;
  transition: border-color 0.16s ease, box-shadow 0.16s ease;
}

.wizard-control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.wizard-control:focus {
  border-color: rgba(241, 90, 36, 0.7);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.18);
}

.wizard-location {
  display: grid;
  gap: 0.7rem;
}

.wizard-control-wrap {
  position: relative;
}

.wizard-control-icon {
  padding-right: 2.6rem;
}

.wizard-pin {
  position: absolute;
  top: 50%;
  right: 0.95rem;
  transform: translateY(-50%);
  color: #f15a24;
  font-style: normal;
  font-size: 1.05rem;
  pointer-events: none;
}

.wizard-suggest {
  list-style: none;
  margin: 0;
  padding: 0.25rem 0;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
}

.wizard-suggest-item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.65rem 0.95rem;
  border: 0;
  background: transparent;
  color: #ffffff;
  font-size: 0.95rem;
  text-align: left;
  cursor: pointer;
}

.wizard-suggest-item .wizard-pin {
  position: static;
  transform: none;
}

.wizard-suggest-item:hover,
.wizard-suggest-item:focus {
  background: rgba(241, 90, 36, 0.16);
}

.wizard-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 500;
}

.wizard-toggle input {
  width: 44px;
  height: 26px;
  accent-color: #f15a24;
}

.wizard-status {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.86rem;
}

.wizard-date-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 0.7rem;
}

.wizard-age-mark {
  width: 96px;
  height: 96px;
  margin: 0 auto 0.4rem;
  border: 3px solid #f15a24;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #f15a24;
  font-size: 1.35rem;
  font-weight: 700;
}

.wizard-check {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  line-height: 1.4;
}

.wizard-check input {
  margin-top: 0.2rem;
  accent-color: #f15a24;
  width: 18px;
  height: 18px;
}

.wizard-check a {
  color: #f15a24;
  font-weight: 600;
}

.wizard-options {
  display: grid;
  gap: 0.55rem;
}

.wizard-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 56px;
  padding: 0.75rem 0.95rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
}

.wizard-option.is-on {
  border-color: rgba(241, 90, 36, 0.8);
  background: rgba(241, 90, 36, 0.16);
}

.wizard-option-mark {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  flex: 0 0 22px;
}

.wizard-option.is-on .wizard-option-mark {
  background: #f15a24;
  border-color: #f15a24;
}

.wizard-option-mark.is-check {
  border-radius: 6px;
}

.wizard-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.wizard-error,
.wizard-inline-error {
  min-height: 1.35rem;
  margin: 0;
  color: #ff8a80;
  font-size: 0.86rem;
  font-weight: 600;
}

.wizard-error-spacer {
  visibility: hidden;
}

.wizard-continue {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 16px;
  background: #f15a24;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  margin-bottom: 0.7rem;
  box-sizing: border-box;
}

.wizard-continue-ghost {
  background: transparent;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.28);
}

.wizard-continue:disabled {
  opacity: 0.45;
  cursor: default;
}

.wizard-done .wizard-hint {
  margin-bottom: 1.6rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label,
.opt-label {
  font-size: 0.86rem;
  font-weight: 600;
}

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="number"],
.field input[type="date"],
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(58, 10, 28, 0.12);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
  background: #f7f3f1;
  color: var(--text-dark);
}

.options {
  display: grid;
  gap: 0.45rem;
}

.check {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  font-size: 0.92rem;
}

.alert {
  margin: 0 0 1rem;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: rgba(251, 90, 17, 0.12);
}

.alert.ok {
  background: rgba(46, 160, 90, 0.16);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(16, 1, 8, 0.72);
  z-index: 40;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  color: var(--white);
}

.mobile-menu.open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu nav {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 86vw);
  height: 100%;
  background: #240210;
  padding: 5rem 1.4rem 2rem;
  display: grid;
  align-content: start;
  gap: 1rem;
}

.mobile-menu a {
  font-weight: 700;
  font-size: 1.1rem;
}

@media (max-width: 900px) {
  body {
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .wrap {
    width: min(var(--max), calc(100% - 1.6rem));
  }

  .header {
    gap: 0.4rem;
    padding: 0.85rem 0 0.25rem;
  }

  .brand {
    margin-right: auto;
  }

  .landing-intro-logo {
    width: min(340px, 84vw);
  }

  .header-community {
    display: none;
  }

  .hero-community {
    display: inline-flex;
    min-height: 38px;
    padding: 0.5rem 0.9rem;
    font-size: 0.78rem;
  }

  .btn-header {
    display: inline-flex;
    padding: 0.42rem 0.72rem;
    font-size: 0.68rem;
    border-radius: 999px;
  }

  .menu-btn {
    display: grid;
    width: 36px;
    height: 36px;
  }

  .hero-band {
    padding-bottom: 4.2rem;
  }

  .hero {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 0.55rem;
    align-items: center;
    padding: 0.45rem 0 0;
  }

  .hero h1 {
    font-size: clamp(1.15rem, 4.8vw, 1.55rem);
    line-height: 1.12;
    letter-spacing: -0.035em;
    margin-bottom: 0.55rem;
  }

  .hero p {
    font-size: 0.72rem;
    line-height: 1.35;
    margin-bottom: 0.7rem;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.55rem;
  }

  .btn-lg {
    min-width: 0;
    width: auto;
    padding: 0.62rem 0.85rem;
    font-size: 0.78rem;
    border-radius: 12px;
  }

  .hero-note {
    margin-top: 0.55rem !important;
    font-size: 0.68rem !important;
    gap: 0.4rem;
  }

  .hero-visual {
    min-height: 0;
    margin-bottom: -3.2rem;
  }

  .hero-photo {
    width: 100%;
    max-height: none;
  }

  .phone {
    width: min(160px, 86%);
    transform: rotate(-4deg);
  }

  .hero-curve-mobile {
    display: none;
  }

  .hero-curve-desktop {
    height: 92px;
  }

  .stack {
    gap: 0.75rem;
    padding-bottom: 1.4rem;
  }

  .card {
    border-radius: 22px;
  }

  .features-card {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem 0.4rem;
    padding: 1rem 0.7rem 1.05rem;
    text-align: center;
  }

  .feature {
    padding: 0.15rem 0.35rem;
  }

  .feature-icon {
    width: 42px;
    height: 42px;
    margin: 0 auto 0.45rem;
  }

  .feature h3,
  .feature-copy h3 {
    font-size: 0.92rem;
  }

  .feature p,
  .feature-copy p {
    font-size: 0.72rem;
    line-height: 1.3;
  }

  .feature-rule {
    display: none;
  }

  .open-card {
    grid-template-columns: auto 1fr;
    gap: 0.7rem;
    padding: 1rem;
  }

  .open-card .rule {
    display: none;
  }

  .exclusive-card {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 0.7rem;
    padding: 0.95rem 0.85rem;
    align-items: center;
  }

  .exclusive-copy {
    grid-template-columns: auto 1fr;
    gap: 0.5rem;
    align-items: center;
  }

  .diamond {
    width: 44px;
    height: 44px;
  }

  .exclusive-label {
    font-size: 0.72rem;
    margin-bottom: 0.2rem;
  }

  .exclusive-card h2 {
    font-size: 0.92rem;
    margin-bottom: 0.35rem;
  }

  .note-pill {
    font-size: 0.68rem;
    padding: 0.22rem 0.55rem;
  }

  .exclusive-side {
    padding-left: 0.75rem;
    border-left: 1px solid rgba(251, 90, 17, 0.45);
  }

  .exclusive-side .btn {
    max-width: none;
    padding: 0.58rem 0.7rem;
    font-size: 0.75rem;
    border-radius: 12px;
  }

  .benefits {
    margin-bottom: 0.7rem;
    gap: 0.38rem;
  }

  .benefits li {
    font-size: 0.74rem;
    gap: 0.4rem;
  }

  .social-card {
    flex-direction: row;
    align-items: center;
    gap: 0.7rem;
    padding: 0.85rem 0.9rem;
  }

  .social-card p {
    font-size: 0.82rem;
    line-height: 1.3;
  }

  .avatars img,
  .avatars .more {
    width: 34px;
    height: 34px;
    margin-left: -8px;
    border-width: 2px;
  }

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

  .register-modal {
    padding: 0.65rem;
    align-items: end;
  }

  .register-modal-panel {
    width: 100%;
    max-height: 92vh;
  }

  .register,
  .wizard {
    padding: 1.35rem 1.15rem 1.15rem;
    border-radius: 24px;
  }

  .register-modal-panel {
    border-radius: 24px 24px 0 0;
  }

  .register h2,
  .wizard h2 {
    padding-right: 2.2rem;
  }

  .wizard-control {
    font-size: 16px;
  }

  .footer {
    padding: 0.35rem 0.2rem 2.2rem;
  }

  .footer .security,
  .footer .copy,
  .footer-links a {
    font-size: 0.72rem;
  }

  .seo-card {
    padding: 1.25rem 1rem 1.4rem;
  }

  .seo-card h2 {
    font-size: 1.15rem;
  }

  .footer-lock {
    width: 13px;
    height: 13px;
  }
}
