:root {
  --start-max: 760px;
  --start-border: rgba(244, 241, 236, 0.14);
  --start-card: rgba(244, 241, 236, 0.05);
  --start-card-hover: rgba(244, 241, 236, 0.08);
  --start-action-border: rgba(226, 201, 134, 0.34);
  --start-action-border-strong: rgba(226, 201, 134, 0.58);
  --start-gold-soft: rgba(198, 167, 94, 0.22);
  --bio-card-visual-width: 64px;
  --bio-card-fan-width: 104px;
}

.start-main {
  min-height: 100dvh;
  padding: 16px 0 32px;
  overflow-x: clip;
}

.start-shell {
  width: min(var(--start-max), calc(100% - 28px));
  margin: 0 auto;
}

.start-panel {
  border: 1px solid var(--start-border);
  border-radius: var(--radius-lg);
  background: linear-gradient(170deg, rgba(14, 19, 40, 0.96), rgba(11, 16, 32, 0.96));
  box-shadow: var(--shadow-soft);
  overflow: visible;
}

.start-content {
  padding: 16px 14px;
  display: grid;
  gap: 16px;
}

.start-hero,
.start-section,
.start-newsletter,
.start-social {
  display: grid;
  gap: 9px;
}

.start-kicker {
  margin: 0 0 4px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.start-title {
  margin: 0;
  font-size: clamp(1.72rem, 8vw, 2.45rem);
  line-height: 1.12;
}

.start-lead,
.start-note,
.start-footer,
.start-section-head p {
  margin: 0;
  color: var(--text-ivory-soft);
}

.start-lead {
  margin-top: 5px;
  font-size: clamp(0.98rem, 3.8vw, 1.05rem);
  line-height: 1.45;
}

.start-trust,
.start-newsletter {
  border: 1px solid var(--start-border);
  border-radius: var(--radius-md);
  background: rgba(244, 241, 236, 0.045);
}

.start-reader-signature {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  margin-top: 0;
}

.start-reader-photo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(198, 167, 94, 0.42);
}

.start-reader-signature strong,
.start-reader-signature span,
.start-trust strong,
.start-trust span {
  display: block;
}

.start-reader-signature strong,
.start-trust strong {
  color: var(--text-ivory);
}

.start-reader-signature span,
.start-trust span {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.start-reader-signature span {
  max-width: 238px;
  color: rgba(244, 241, 236, 0.72);
  font-size: 0.9rem;
  font-style: italic;
  line-height: 1.32;
}

.start-reader-copy {
  display: grid;
  gap: 2px;
}

.start-reader-signature .start-reader-social-proof {
  color: rgba(244, 241, 236, 0.62);
  font-size: 0.8rem;
  font-style: normal;
  line-height: 1.22;
  letter-spacing: 0.01em;
}

.start-trust {
  padding: 6px 9px;
}

.start-trust--social {
  display: flex;
  align-items: center;
  gap: 0;
  width: fit-content;
  max-width: 100%;
  border-radius: calc(var(--radius-md) - 4px);
}

.start-trust--social strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.start-trust--social ul {
  display: flex;
  flex-wrap: wrap;
  gap: 3px 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.start-trust--social li {
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.18;
}

.start-trust--social li::before {
  content: "✓";
  margin-right: 6px;
  color: #e2c986;
  font-weight: 800;
}


.start-section-head {
  display: grid;
  gap: 6px;
}

.start-section-head h2,
.start-social h2 {
  margin: 0;
  font-size: clamp(1.25rem, 5vw, 1.65rem);
}

.start-options,
.start-testimonials {
  display: grid;
  gap: 8px;
}

.start-testimonials blockquote {
  border: 1px solid rgba(244, 241, 236, 0.1);
  border-radius: var(--radius-md);
  background: rgba(244, 241, 236, 0.032);
}

.start-option {
  position: relative;
  min-height: 86px;
  padding: 13px 42px 13px 13px;
  border: 1.5px solid var(--start-action-border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.082), rgba(244, 241, 236, 0.045)),
    var(--start-card);
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(3, 7, 18, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition: background-color var(--speed) var(--ease), box-shadow var(--speed) var(--ease), transform var(--speed) var(--ease), border-color var(--speed) var(--ease);
}

.start-option::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border: 1px solid rgba(226, 201, 134, 0.42);
  border-radius: 999px;
  background: rgba(226, 201, 134, 0.14);
  color: #fff4c5;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1;
}

.start-option:hover,
.start-option:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.11), rgba(226, 201, 134, 0.075)),
    var(--start-card-hover);
  border-color: var(--start-action-border-strong);
  box-shadow: 0 12px 28px rgba(3, 7, 18, 0.28), 0 0 0 1px rgba(226, 201, 134, 0.1);
  transform: translateY(-2px);
}

.start-option:active {
  transform: translateY(0);
}

.start-option-title {
  display: block;
  color: #fffaf0;
  margin-bottom: 5px;
  font-size: clamp(1.03rem, 4.2vw, 1.14rem);
  font-weight: 800;
  line-height: 1.22;
}

.start-option-desc {
  display: block;
  color: rgba(244, 241, 236, 0.68);
  font-size: 0.88rem;
  font-weight: 400;
  line-height: 1.4;
}

.start-note {
  font-size: 0.96rem;
}

.start-explore {
  gap: 10px;
}

.start-options--free .start-option {
  border-color: rgba(255, 226, 151, 0.42);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 226, 151, 0.14), transparent 12rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(244, 241, 236, 0.052));
}

.start-options--explore {
  gap: 8px;
}

.start-option--explore {
  min-height: 72px;
  padding: 11px 42px 11px 12px;
  border-color: rgba(176, 200, 255, 0.28);
  background:
    radial-gradient(circle at 100% 0%, rgba(176, 200, 255, 0.1), transparent 10rem),
    rgba(244, 241, 236, 0.05);
}

.start-option--explore::after {
  border-color: rgba(176, 200, 255, 0.34);
  background: rgba(176, 200, 255, 0.12);
}

.start-option--explore .start-option-title {
  margin-bottom: 4px;
  font-size: clamp(1rem, 4vw, 1.08rem);
}

.start-option--explore .start-option-desc {
  font-size: 0.86rem;
  line-height: 1.38;
}

.start-options--private .start-option {
  border-color: rgba(226, 201, 134, 0.46);
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 201, 134, 0.15), transparent 11rem),
    linear-gradient(135deg, rgba(244, 241, 236, 0.07), rgba(198, 167, 94, 0.055));
}

.start-note--trust {
  color: var(--text-muted);
}

.start-question-differee {
  position: relative;
  padding: 20px 18px;
  border: 1px solid rgba(226, 201, 134, 0.72);
  border-radius: calc(var(--radius-lg) - 4px);
  background:
    radial-gradient(circle at 100% 0%, rgba(226, 201, 134, 0.34), transparent 15rem),
    linear-gradient(180deg, rgba(244, 241, 236, 0.12), rgba(244, 241, 236, 0.055));
  box-shadow: 0 20px 58px rgba(3, 7, 18, 0.42), 0 0 0 1px rgba(226, 201, 134, 0.12);
}

.start-question-differee__badge {
  width: fit-content;
  border: 1px solid rgba(226, 201, 134, 0.72);
  border-radius: 999px;
  padding: 6px 11px;
  background: rgba(226, 201, 134, 0.24);
  color: #fff7d6;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.start-question-differee__benefits {
  display: grid;
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.start-question-differee__benefits li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--text-ivory-soft);
  line-height: 1.35;
}

.start-question-differee__benefits li::before {
  content: "✓";
  color: #e2c986;
  font-weight: 800;
}

.start-question-differee__micro {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.45;
  text-align: center;
}

.start-cta,
.start-newsletter-row button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(198, 167, 94, 0.42);
  background: linear-gradient(180deg, var(--start-gold-soft), rgba(198, 167, 94, 0.08));
  color: var(--text-ivory);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.start-cta {
  width: 100%;
}

.start-cta--question {
  min-height: 54px;
  background: linear-gradient(120deg, rgba(198, 167, 94, 0.95), rgba(226, 201, 134, 0.95));
  color: #171526;
  box-shadow: 0 16px 36px rgba(198, 167, 94, 0.24);
}

.start-cta:hover,
.start-cta:focus-visible,
.start-newsletter-row button:hover,
.start-newsletter-row button:focus-visible {
  border-color: rgba(198, 167, 94, 0.62);
}

.start-testimonials blockquote {
  margin: 0;
  padding: 10px 11px;
  color: rgba(244, 241, 236, 0.68);
  font-size: 0.9rem;
  line-height: 1.36;
}

.start-footer,
.start-newsletter-consent,
.start-newsletter-feedback {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.35;
}

.start-newsletter {
  padding: 14px;
  background:
    radial-gradient(circle at 100% 0%, rgba(198, 167, 94, 0.12), transparent 13rem),
    rgba(244, 241, 236, 0.045);
}

.start-newsletter-form {
  display: grid;
  gap: 8px;
}

.start-newsletter-label {
  color: var(--text-ivory);
  font-weight: 700;
  font-size: 0.9rem;
}

.start-newsletter-row {
  display: grid;
  gap: 10px;
}

.start-newsletter-row input {
  width: 100%;
  min-height: 50px;
  border-radius: 999px;
  border: 1px solid rgba(244, 241, 236, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-ivory);
  font: inherit;
  padding: 0 16px;
}

.start-newsletter-row input::placeholder {
  color: rgba(244, 241, 236, 0.52);
}

.start-newsletter-row input:focus-visible,
.start-newsletter-row button:focus-visible,
.start-newsletter-consent input:focus-visible,
.start-social-links a:focus-visible {
  outline: 2px solid rgba(198, 167, 94, 0.65);
  outline-offset: 3px;
}

.start-newsletter-row button {
  cursor: pointer;
  font: inherit;
  padding: 0 18px;
}

.start-newsletter-row button[aria-busy="true"] {
  cursor: wait;
  opacity: 0.72;
}

.start-newsletter-consent {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px;
  align-items: start;
}

.start-newsletter-consent input {
  margin-top: 3px;
  accent-color: #c6a75e;
}

.start-newsletter-consent a,
.start-social-links a {
  color: var(--text-ivory);
}

.start-newsletter-feedback {
  min-height: 1.2em;
  margin: 0;
}

.start-social {
  border-top: 1px solid var(--start-border);
  padding-top: 16px;
}

.start-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.start-social-links a {
  border: 1px solid var(--start-border);
  border-radius: 999px;
  padding: 10px 14px;
  text-decoration: none;
  background: rgba(244, 241, 236, 0.045);
  font-weight: 700;
}

@media (min-width: 640px) {
  .start-newsletter-row {
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .start-newsletter-row button {
    min-width: 180px;
  }
}

@media (min-width: 760px) {
  .start-main {
    padding: 24px 0 40px;
  }

  .start-content {
    padding: 30px 32px;
    gap: 22px;
  }

  .start-options--free,
  .start-options--explore,
  .start-testimonials {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

.start-sticky-cta {
  display: none;
}

@media (max-width: 759px) {
  .start-main {
    padding-bottom: calc(84px + env(safe-area-inset-bottom));
  }

  .start-sticky-cta {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: calc(12px + env(safe-area-inset-bottom));
    z-index: 1200;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(198, 167, 94, 0.62);
    background: linear-gradient(180deg, rgba(198, 167, 94, 0.35), rgba(198, 167, 94, 0.16));
    color: var(--text-ivory);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.01em;
    padding: 0 18px;
    box-shadow: 0 8px 22px rgba(3, 7, 18, 0.44);
    backdrop-filter: blur(4px);
  }

  .start-sticky-cta:hover,
  .start-sticky-cta:focus-visible {
    border-color: rgba(198, 167, 94, 0.88);
  }
}

.start-option--explore {
  overflow: hidden;
  isolation: isolate;
  border-radius: var(--radius-md);
}

.start-option--explore .start-option-title,
.start-option--explore .start-option-desc {
  position: relative;
  z-index: 3;
  max-width: calc(100% - 118px);
}

.start-deck-visual {
  --deck-radius: 9px;
  --deck-card-width: var(--bio-card-visual-width);
  position: absolute;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 10px 16px rgba(3, 7, 18, 0.34)) drop-shadow(0 0 10px rgba(226, 201, 134, 0.12));
  transform-origin: 50% 62%;
  will-change: transform, filter;
}

.start-deck-visual img,
.start-deck-card {
  display: block;
  border-radius: var(--deck-radius);
  overflow: hidden;
  box-shadow:
    0 16px 30px rgba(3, 7, 18, 0.38),
    0 3px 8px rgba(3, 7, 18, 0.22),
    0 0 0 1px rgba(255, 250, 240, 0.22);
  clip-path: inset(0 round var(--deck-radius));
  backface-visibility: hidden;
}

.start-deck-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.start-deck-visual--single {
  top: 50%;
  right: 50px;
  width: var(--deck-card-width);
  aspect-ratio: 591 / 827;
  transform: translate3d(0, -50%, 0) rotate(1deg);
  animation: start-card-float 6.4s ease-in-out infinite;
}

.start-deck-visual--fan {
  top: 50%;
  right: 40px;
  width: var(--bio-card-fan-width);
  max-width: 110px;
  height: 92px;
  transform: translate3d(0, -50%, 0);
}

.start-deck-card {
  position: absolute;
  top: 1px;
  width: var(--deck-card-width);
  height: auto;
  aspect-ratio: 591 / 827;
  object-fit: contain;
  transform-origin: 50% 86%;
  will-change: transform;
}

.start-deck-card--key {
  left: 12px;
  transform: translate3d(-6px, 0, 0) rotate(-8deg);
  opacity: 0.96;
}

.start-deck-card--heart {
  left: 28px;
  transform: translate3d(8px, 0, 0) rotate(6deg);
}

@keyframes start-card-float {
  0%, 100% { transform: translate3d(0, -50%, 0) rotate(1deg); }
  42% { transform: translate3d(-1px, calc(-50% - 3px), 0) rotate(-1deg); }
  68% { transform: translate3d(1px, calc(-50% - 1px), 0) rotate(0.8deg); }
}

@keyframes start-fan-float {
  0%, 100% { transform: translate3d(0, -50%, 0) rotate(0deg); filter: drop-shadow(0 10px 16px rgba(3, 7, 18, 0.34)) drop-shadow(0 0 10px rgba(226, 201, 134, 0.12)); }
  45% { transform: translate3d(-1px, calc(-50% - 2px), 0) rotate(-0.4deg); filter: drop-shadow(0 12px 18px rgba(3, 7, 18, 0.38)) drop-shadow(0 0 12px rgba(226, 201, 134, 0.16)); }
  72% { transform: translate3d(1px, calc(-50% - 1px), 0) rotate(0.3deg); }
}

@supports (animation-timeline: view()) {
  .start-deck-visual--fan {
    animation-name: start-fan-scroll;
    animation-duration: 1ms;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  }

  .start-deck-visual--fan .start-deck-card--key {
    animation: start-key-scroll 1ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }

  .start-deck-visual--fan .start-deck-card--heart {
    animation: start-heart-scroll 1ms cubic-bezier(0.19, 1, 0.22, 1) both;
    animation-timeline: view();
    animation-range: entry 0% cover 72%;
  }
}

@keyframes start-fan-scroll {
  0%, 100% { transform: translate3d(0, -50%, 0) scale(0.99) rotate(0deg); }
  50% { transform: translate3d(-1px, calc(-50% - 2px), 0) scale(1.005) rotate(-0.4deg); }
}

@keyframes start-key-scroll {
  0%, 100% { transform: translate3d(-6px, 0, 0) rotate(-8deg); }
  50% { transform: translate3d(-8px, 0, 0) rotate(-9deg); }
}

@keyframes start-heart-scroll {
  0%, 100% { transform: translate3d(8px, 0, 0) rotate(6deg); }
  50% { transform: translate3d(10px, 0, 0) rotate(7deg); }
}

@media (max-width: 759px) {
  .start-option--explore {
    min-height: 104px;
    padding-right: 132px;
  }
}

@media (min-width: 760px) {
  .start-option--explore {
    min-height: 112px;
    padding-right: 148px;
  }

  .start-deck-visual--single {
    right: 58px;
  }

  .start-deck-visual--fan {
    right: 46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .start-deck-visual,
  .start-deck-card {
    animation: none !important;
  }

  .start-deck-visual--single {
    transform: translate3d(0, -50%, 0) rotate(0.8deg);
  }

  .start-deck-visual--fan .start-deck-card--key {
    transform: translate3d(-6px, 0, 0) rotate(-8deg);
  }

  .start-deck-visual--fan .start-deck-card--heart {
    transform: translate3d(8px, 0, 0) rotate(6deg);
  }
}
