/* Richard’s Offer — Sulieman private partner page
   Fun, personal, short. Mobile-first. */

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

:root {
  --ink: #14181c;
  --body: #2f373d;
  --muted: #5e6b74;
  --line: #e4e9ec;
  --cream: #faf8f5;
  --white: #ffffff;
  --navy: #152238;
  --navy-deep: #0f1a2a;
  --fire: #f4511e;
  --ice: #00b4d8;
  --blue: #0077c8;
  --green: #3d9b5f;
  --green-soft: #6fbf8a;
  --green-pastel: #c8e6d0;
  --green-wash: #eef8f1;
  --green-deep: #1e5c38;
  --gold: #c4a35a;
  --sans: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
  --radius: 18px;
  --tap: 48px;
  --wrap: 42rem;
  --wide: 56rem;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}
html.yo-welcome-open,
html.yo-welcome-open body {
  overflow: hidden;
}

body.yo-body {
  font-family: var(--sans);
  color: var(--body);
  background: var(--cream);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.yo-skip {
  position: absolute;
  left: -9999px;
  z-index: 100;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
}
.yo-skip:focus { left: 0.75rem; top: 0.75rem; }

/* —— Header —— */
.yo-top {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.yo-top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.65rem max(1rem, env(safe-area-inset-left)) 0.65rem max(1rem, env(safe-area-inset-right));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.yo-top-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
  flex: 1 1 auto;
}
.yo-brand-mark img {
  height: 34px;
  width: auto;
  max-width: min(140px, 42vw);
  object-fit: contain;
}
/* Large orange — Camera · Mac · Research (top-left of Ron’s offer) */
.yo-research-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: clamp(0.72rem, 2.4vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, #ff8a3d 0%, #f4511e 55%, #e03e0c 100%);
  border: 2px solid #c43a0a;
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.35) inset,
    0 6px 18px rgba(244, 81, 30, 0.45);
  white-space: nowrap;
  flex-shrink: 1;
  line-height: 1.15;
  text-align: center;
}
.yo-research-btn:hover,
.yo-research-btn:focus-visible {
  background: linear-gradient(180deg, #ff9a55 0%, #ff5a24 55%, #f4511e 100%);
  outline: 3px solid rgba(244, 81, 30, 0.45);
  outline-offset: 2px;
  transform: translateY(-1px);
}
@media (max-width: 420px) {
  .yo-research-btn {
    min-height: 44px;
    padding: 0.45rem 0.65rem;
    font-size: 0.68rem;
    letter-spacing: 0.02em;
  }
}
.yo-top-nav {
  display: none;
  gap: 1rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.yo-top-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.35rem 0;
}
.yo-top-nav a:hover,
.yo-top-nav a:focus-visible { color: var(--ink); }

.yo-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: linear-gradient(180deg, #e8f6ec 0%, var(--green-pastel) 100%);
  border: 1px solid rgba(61, 155, 95, 0.35);
  box-shadow: 0 1px 0 rgba(255,255,255,0.7) inset, 0 4px 12px rgba(61,155,95,0.12);
  white-space: nowrap;
}
.yo-pill:hover,
.yo-pill:focus-visible {
  background: linear-gradient(180deg, #f0faf3 0%, #d4eddc 100%);
  outline: 2px solid var(--green-soft);
  outline-offset: 2px;
}

/* —— Layout —— */
.yo-wrap {
  max-width: var(--wide);
  margin: 0 auto;
  padding: 0 1.1rem;
}
.yo-wrap--narrow { max-width: 34rem; }
.yo-wrap--form { max-width: 40rem; }

.yo-section {
  padding: 3rem 0;
}
.yo-section--soft { background: var(--white); }
.yo-section--navy,
.yo-section--close {
  background: linear-gradient(165deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: rgba(255, 255, 255, 0.9);
}
.yo-section h2 {
  font-size: clamp(1.55rem, 5vw, 2.1rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 0.85rem;
}
.yo-section--navy h2,
.yo-section--close h2 { color: #fff; }

.yo-lead {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 1.5rem;
  max-width: 32rem;
}
.yo-section--navy .yo-lead,
.yo-section--close .yo-lead { color: rgba(255,255,255,0.72); }

.yo-kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.75rem;
}

/* —— Hero —— */
.yo-hero {
  padding: 2.5rem 0 2.75rem;
  background:
    radial-gradient(ellipse 80% 60% at 90% 0%, rgba(0,180,216,0.12), transparent 55%),
    radial-gradient(ellipse 70% 50% at 0% 100%, rgba(244,81,30,0.1), transparent 50%),
    var(--cream);
}
.yo-hero h1 {
  font-size: clamp(1.85rem, 7vw, 2.75rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-bottom: 0.5rem;
}
.yo-subhead {
  font-size: clamp(1.1rem, 3.5vw, 1.35rem);
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 1.35rem;
}

.yo-letter {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
  color: var(--body);
  max-width: 36rem;
}
.yo-letter--light { color: rgba(255,255,255,0.82); }
.yo-letter p { line-height: 1.55; }
.yo-sign {
  margin-top: 0.5rem;
  font-weight: 700;
  color: var(--green-deep);
}
.yo-letter--light .yo-sign { color: var(--green-soft); }
.yo-emph { font-weight: 700; color: #fff; }

/* —— Buttons —— */
.yo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--tap);
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  border: 2px solid transparent;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
  cursor: pointer;
  font-family: inherit;
  width: 100%;
  max-width: 22rem;
}
.yo-btn:focus-visible {
  outline: 3px solid var(--green-soft);
  outline-offset: 3px;
}
.yo-btn--primary {
  background: linear-gradient(180deg, var(--green-soft), var(--green));
  color: #fff;
  box-shadow: 0 8px 22px rgba(61, 155, 95, 0.28);
}
.yo-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 155, 95, 0.36);
}
.yo-btn--outline {
  background: #fff;
  color: var(--green-deep);
  border-color: rgba(61, 155, 95, 0.45);
}
.yo-btn--outline:hover {
  background: var(--green-wash);
  transform: translateY(-1px);
}
.yo-btn--outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.45);
}
.yo-btn--ghost {
  background: transparent;
  color: rgba(255,255,255,0.9);
  border-color: rgba(255,255,255,0.28);
  max-width: 18rem;
}
.yo-btn--ghost:hover { background: rgba(255,255,255,0.08); }
.yo-paypal[aria-disabled="true"] {
  opacity: 0.92;
  cursor: pointer;
}

/* —— Icon value list —— */
.yo-icons {
  display: grid;
  gap: 0.55rem;
}
.yo-icons li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--ink);
}
.yo-ic {
  flex-shrink: 0;
  width: 1.6rem;
  height: 1.6rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--green-wash);
  color: var(--green-deep);
  font-size: 0.85rem;
  line-height: 1;
}

/* —— Compare —— */
.yo-compare {
  display: grid;
  gap: 0.85rem;
  margin: 1.5rem 0 1rem;
}
.yo-compare-card {
  padding: 1.25rem 1.15rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
}
.yo-compare-card--friend {
  background: linear-gradient(160deg, #eef8f1, #e2f3e8);
  border-color: rgba(61, 155, 95, 0.4);
  box-shadow: 0 8px 28px rgba(61, 155, 95, 0.12);
}
.yo-compare-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.65rem;
}
.yo-compare-card--friend .yo-compare-label { color: var(--green-deep); }
.yo-compare-price {
  font-size: 1.1rem;
  color: var(--ink);
  margin: 0.25rem 0;
}
.yo-compare-price strong {
  font-size: 1.35rem;
  font-weight: 800;
}
.yo-note {
  font-size: 0.98rem;
  color: var(--body);
  font-weight: 600;
  max-width: 34rem;
}

/* —— Options —— */
.yo-options {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}
.yo-option {
  position: relative;
  padding: 1.5rem 1.2rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: 0 8px 28px rgba(15, 20, 25, 0.04);
}
.yo-option--rec {
  background: linear-gradient(180deg, #f4fbf6 0%, #fff 40%);
  border: 2px solid rgba(61, 155, 95, 0.45);
  box-shadow: 0 12px 36px rgba(61, 155, 95, 0.14);
}
.yo-rec-badge {
  display: inline-block;
  margin-bottom: 0.65rem;
  padding: 0.3rem 0.7rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-pastel);
  border: 1px solid rgba(61, 155, 95, 0.3);
}
.yo-option-num {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.35rem;
}
.yo-option h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -0.02em;
  margin-bottom: 0.65rem;
}
.yo-option-price {
  margin-bottom: 0.15rem;
}
.yo-big {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--green-deep);
  letter-spacing: -0.03em;
  line-height: 1;
}
.yo-option-month {
  font-size: 1.05rem;
  color: var(--body);
  margin-bottom: 0.65rem;
}
.yo-save {
  font-size: 0.92rem;
  line-height: 1.45;
  color: var(--green-deep);
  background: rgba(61, 155, 95, 0.1);
  border: 1px solid rgba(61, 155, 95, 0.28);
  border-radius: 12px;
  padding: 0.7rem 0.85rem;
  margin-bottom: 0.9rem;
}
.yo-save strong {
  font-weight: 800;
}
.yo-option-desc {
  font-size: 1rem;
  color: var(--body);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.yo-list {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1.35rem;
}
.yo-list li {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink);
}
.yo-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 3px var(--green-wash);
}

/* —— Pay —— */
.yo-pay-grid {
  display: grid;
  gap: 1rem;
  margin: 1.5rem 0 1.25rem;
}
.yo-pay-card {
  padding: 1.4rem 1.2rem;
  border-radius: var(--radius);
  background: var(--cream);
  border: 1px solid var(--line);
  text-align: center;
}
.yo-pay-card--rec {
  background: linear-gradient(160deg, #eef8f1, #e8f6ec);
  border: 2px solid rgba(61, 155, 95, 0.45);
}
.yo-pay-card h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.65rem;
}
.yo-pay-line {
  font-size: 1.05rem;
  margin: 0.2rem 0;
  color: var(--body);
}
.yo-pay-card .yo-btn { margin: 1rem auto 0; }

.yo-paypal-note {
  padding: 1.15rem 1.1rem;
  border-radius: 14px;
  background: #fff8e8;
  border: 1px solid rgba(196, 163, 90, 0.4);
  font-size: 0.95rem;
  color: var(--body);
  display: grid;
  gap: 0.5rem;
}
.yo-paypal-note--live {
  background: var(--green-wash);
  border-color: rgba(61, 155, 95, 0.35);
}
.yo-paypal-note a {
  color: var(--green-deep);
  font-weight: 700;
}
.yo-paypal-meta { font-size: 0.9rem; color: var(--muted); }

/* —— Form —— */
.yo-form { margin-top: 0.5rem; }
.yo-fields {
  display: grid;
  gap: 0.9rem;
  margin-bottom: 1rem;
}
.yo-fields label,
.yo-fieldset {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}
.yo-fields span em {
  font-style: normal;
  font-weight: 500;
  color: var(--muted);
}
.yo-fields input[type="text"],
.yo-fields input[type="tel"],
.yo-fields input[type="email"],
.yo-fields input[type="url"],
.yo-fields textarea {
  width: 100%;
  min-height: 48px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  background: var(--white);
}
.yo-fields textarea { min-height: 88px; resize: vertical; }
.yo-fields input:focus,
.yo-fields textarea:focus {
  outline: 2px solid var(--green-soft);
  outline-offset: 1px;
  border-color: var(--green);
}
.yo-fields input[type="file"] {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}
.yo-fieldset {
  border: 0;
  padding: 0;
}
.yo-fieldset legend {
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}
.yo-radio {
  display: inline-flex !important;
  align-items: center;
  gap: 0.4rem;
  margin-right: 1rem;
  font-weight: 600;
  grid-template-columns: none !important;
}
.yo-form-note {
  font-size: 0.88rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.yo-form .yo-btn { border: 0; max-width: none; }

/* —— Close —— */
.yo-ctas {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.5rem;
}
.yo-section--close .yo-btn--outline-light { max-width: 22rem; }

/* —— Foot —— */
.yo-foot {
  background: #0a1018;
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
  padding: 1rem max(1rem, env(safe-area-inset-left));
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
}
.yo-foot-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem;
}
.yo-foot a {
  color: var(--green-soft);
  text-decoration: none;
  font-weight: 600;
}

/* —— Desktop —— */
@media (min-width: 720px) {
  .yo-top-nav { display: flex; }
  .yo-brand-mark img { height: 40px; max-width: 170px; }
  .yo-section { padding: 3.75rem 0; }
  .yo-hero { padding: 3.25rem 0 3.5rem; }
  .yo-icons {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }
  .yo-compare {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }
  .yo-options {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    align-items: start;
  }
  .yo-pay-grid {
    grid-template-columns: 1fr 1fr;
  }
  .yo-btn { width: auto; }
  .yo-ctas {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
  .yo-fields {
    grid-template-columns: 1fr 1fr;
  }
  .yo-span-2 { grid-column: 1 / -1; }
  .yo-fieldset.yo-span-2 { grid-column: 1 / -1; }
}

@media (max-width: 480px) {
  .yo-hero h1 { font-size: 1.7rem; }
  .yo-big { font-size: 2.1rem; }
  .yo-option { padding: 1.25rem 1rem; }
  .yo-pill {
    font-size: 0.58rem;
    padding: 0.35rem 0.6rem;
  }
  .yo-section { padding: 2.25rem 0; }
  .yo-icons li {
    font-size: 0.92rem;
    padding: 0.65rem 0.75rem;
  }
  .yo-pay-card { padding: 1.15rem 1rem; }
  .yo-btn {
    width: 100%;
    max-width: none;
  }
  .yo-ctas {
    width: 100%;
  }
  .yo-ctas .yo-btn {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .yo-btn:hover { transform: none; }
  .yo-welcome-panel { animation: none; }
}

/* ===== FROM RICHARDS EYES gateway (pitch only) ===== */
.yo-gateway {
  padding: 2.75rem 0 3.25rem;
  background:
    radial-gradient(ellipse 70% 80% at 50% 40%, rgba(196, 163, 90, 0.14), transparent 60%),
    radial-gradient(ellipse 90% 50% at 50% 100%, rgba(21, 34, 56, 0.06), transparent 55%),
    linear-gradient(180deg, var(--cream) 0%, #f3efe6 45%, var(--cream) 100%);
  border-top: 1px solid rgba(196, 163, 90, 0.22);
  border-bottom: 1px solid rgba(21, 34, 56, 0.08);
}
.yo-gateway-inner {
  text-align: center;
  max-width: 40rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.15rem;
}
.yo-gateway-above {
  font-size: clamp(0.72rem, 2.2vw, 0.82rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
}
.yo-gateway-below {
  font-size: clamp(0.98rem, 2.6vw, 1.12rem);
  font-weight: 600;
  color: var(--muted);
  font-style: italic;
  margin: 0;
  max-width: 22rem;
  line-height: 1.45;
}
.yo-eyes-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  min-width: min(100%, 22rem);
  width: 100%;
  max-width: 28rem;
  padding: 1.15rem 1.75rem;
  border-radius: 999px;
  text-decoration: none;
  color: #faf6eb;
  background:
    linear-gradient(165deg, #1c2d48 0%, var(--navy-deep) 48%, #0a121f 100%);
  border: 2px solid rgba(196, 163, 90, 0.65);
  box-shadow:
    0 0 0 1px rgba(196, 163, 90, 0.18),
    0 14px 36px rgba(15, 26, 42, 0.35),
    0 0 40px rgba(196, 163, 90, 0.18);
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.28s var(--ease),
    box-shadow 0.28s var(--ease),
    border-color 0.28s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.yo-eyes-btn__glow {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(196, 163, 90, 0.35) 40deg,
    transparent 90deg,
    rgba(111, 191, 138, 0.22) 180deg,
    transparent 230deg,
    rgba(196, 163, 90, 0.28) 300deg,
    transparent 360deg
  );
  animation: yoEyesSpin 9s linear infinite;
  z-index: 0;
  opacity: 0.85;
}
.yo-eyes-btn__shimmer {
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent 30%, rgba(255, 248, 220, 0.14) 48%, transparent 62%);
  background-size: 200% 100%;
  animation: yoEyesShimmer 4.5s ease-in-out infinite;
  z-index: 1;
  pointer-events: none;
}
.yo-eyes-btn__label {
  position: relative;
  z-index: 2;
  font-size: clamp(1.05rem, 3.8vw, 1.35rem);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
}
/* Solid face over the spinning glow so text stays readable */
.yo-eyes-btn::before {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: inherit;
  background: linear-gradient(165deg, #1a2a42 0%, var(--navy-deep) 55%, #0c1522 100%);
  z-index: 1;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.yo-eyes-btn:hover {
  transform: translateY(-4px) scale(1.015);
  border-color: rgba(212, 180, 98, 0.95);
  box-shadow:
    0 0 0 1px rgba(196, 163, 90, 0.3),
    0 18px 42px rgba(15, 26, 42, 0.42),
    0 0 52px rgba(196, 163, 90, 0.32);
}
.yo-eyes-btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
  transform: translateY(-2px);
}
.yo-eyes-btn:active {
  transform: translateY(-1px) scale(0.995);
}
@keyframes yoEyesSpin {
  to { transform: rotate(360deg); }
}
@keyframes yoEyesShimmer {
  0%, 100% { background-position: 120% 0; opacity: 0.55; }
  50% { background-position: -20% 0; opacity: 1; }
}
@media (min-width: 640px) {
  .yo-eyes-btn {
    min-height: 72px;
    padding: 1.25rem 2.25rem;
  }
  .yo-gateway { padding: 3.25rem 0 3.75rem; }
}
@media (max-width: 380px) {
  .yo-eyes-btn__label {
    letter-spacing: 0.08em;
    font-size: 0.98rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .yo-eyes-btn__glow,
  .yo-eyes-btn__shimmer { animation: none; }
  .yo-eyes-btn:hover,
  .yo-eyes-btn:focus-visible { transform: none; }
}

/* ===== Welcome popup ===== */
.yo-welcome {
  position: fixed;
  inset: 0;
  z-index: 2147483000; /* above sticky header + chatbot */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(10px, env(safe-area-inset-top)) max(10px, env(safe-area-inset-right)) max(10px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-left));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.yo-welcome.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.yo-welcome-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 20, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  cursor: pointer;
}
.yo-welcome-panel {
  position: relative;
  z-index: 1;
  width: min(540px, 100%);
  max-height: min(90vh, 860px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 0;
  border-radius: 20px;
  background: linear-gradient(165deg, #1a2332 0%, #121820 55%, #0e141c 100%);
  color: #f3f1ec;
  border: 1px solid rgba(0, 180, 216, 0.32);
  box-shadow:
    0 0 0 1px rgba(244, 81, 30, 0.14),
    0 0 40px rgba(0, 119, 200, 0.2),
    0 0 48px rgba(244, 81, 30, 0.12),
    0 24px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.35s var(--ease);
}
.yo-welcome.is-open .yo-welcome-panel {
  transform: none;
  animation: yoWelcomeIn 0.4s var(--ease) both;
}
@keyframes yoWelcomeIn {
  from { opacity: 0; transform: translateY(18px) scale(0.98); }
  to { opacity: 1; transform: none; }
}
.yo-welcome-scroll {
  position: relative;
  z-index: 1;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 1.35rem 1.2rem 0.75rem;
  flex: 1 1 auto;
  min-height: 0;
}
.yo-welcome-glow {
  position: absolute;
  inset: -30% -20% auto;
  height: 70%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(244, 81, 30, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 180, 216, 0.22), transparent 50%);
  pointer-events: none;
  z-index: 0;
}
.yo-welcome-x {
  position: absolute;
  top: 0.55rem;
  right: 0.6rem;
  z-index: 3;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #f3f1ec;
  font-size: 1.55rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.yo-welcome-x:hover,
.yo-welcome-x:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  outline: 2px solid rgba(0, 180, 216, 0.55);
  outline-offset: 1px;
}
.yo-welcome-title {
  position: relative;
  font-size: clamp(1.4rem, 5vw, 1.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0.15rem 2.5rem 0.75rem 0;
  color: #fff;
}
.yo-welcome-body {
  position: relative;
  font-size: 0.96rem;
  line-height: 1.5;
  color: rgba(243, 241, 236, 0.9);
}
.yo-welcome-body h2 {
  font-size: 1.02rem;
  font-weight: 800;
  color: #7fd4e8;
  margin: 1rem 0 0.4rem;
  letter-spacing: -0.01em;
}
.yo-welcome-body p { margin-bottom: 0.5rem; }
.yo-welcome-lead { font-weight: 600; color: #fff; }
.yo-welcome-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem 0.7rem;
  margin: 0.45rem 0 0.7rem;
  padding-left: 0.1rem;
}
.yo-welcome-list li {
  position: relative;
  padding-left: 0.95rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(243, 241, 236, 0.94);
}
.yo-welcome-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4511e, #00b4d8);
}
.yo-welcome-close-line {
  margin-top: 0.85rem !important;
  margin-bottom: 0.25rem !important;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: rgba(61, 155, 95, 0.14);
  border: 1px solid rgba(111, 191, 138, 0.38);
  color: #e8f6ec !important;
}
.yo-welcome-actions {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.85rem 1.15rem max(0.95rem, env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 24, 32, 0.92), #0e141c 100%);
  flex: 0 0 auto;
}
.yo-welcome-actions .yo-btn {
  max-width: none;
  width: 100%;
  min-height: 48px;
}
.yo-welcome-actions .yo-btn--outline {
  background: transparent;
  color: #e8f6ec;
  border-color: rgba(111, 191, 138, 0.55);
}
.yo-welcome-actions .yo-btn--outline:hover {
  background: rgba(61, 155, 95, 0.18);
}

@media (min-width: 720px) {
  .yo-welcome-scroll { padding: 1.6rem 1.6rem 0.85rem; }
  .yo-welcome-actions {
    flex-direction: row;
    flex-wrap: wrap;
    padding: 1rem 1.6rem 1.25rem;
  }
  .yo-welcome-actions .yo-btn {
    flex: 1 1 calc(50% - 0.35rem);
    width: auto;
  }
}
@media (max-width: 480px) {
  .yo-welcome {
    align-items: flex-end;
    padding: 0;
  }
  .yo-welcome-panel {
    width: 100%;
    max-height: 92vh;
    border-radius: 18px 18px 0 0;
  }
  .yo-welcome-list { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .yo-welcome,
  .yo-welcome-panel {
    transition: none !important;
    animation: none !important;
  }
}
