/* YSH Modded — premium shell */
:root {
  --bg-deep: #050506;
  --bg0: #08090c;
  --bg1: #0c0e12;
  --bg2: #12151c;
  --surface: rgba(18, 20, 28, 0.65);
  --surface2: rgba(255, 255, 255, 0.04);
  --line: rgba(255, 255, 255, 0.07);
  --line2: rgba(255, 255, 255, 0.12);
  --text: #f0f2f7;
  --muted: #8b95a8;
  --gold: #e8c088;
  --gold2: #f5d4a8;
  --ember: #e85d2a;
  --ember2: #ff8a4c;
  --cyan: #5ec8d4;
  --ok: #4ade9b;
  --danger: #ff6b6b;
  --radius: 16px;
  --radius-sm: 10px;
  --font: "Outfit", system-ui, sans-serif;
  --display: "Bebas Neue", Impact, sans-serif;
  --syne: "Syne", var(--font);
  --shadow-lg: 0 28px 90px rgba(0, 0, 0, 0.55);
  --glow-gold: rgba(232, 192, 136, 0.14);
  --glow-ember: rgba(232, 93, 42, 0.16);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  color: var(--text);
  background: var(--bg-deep);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

body.ysh-body--app {
  overflow-x: hidden;
}

.ysh-aurora {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 480px at 12% -6%, rgba(232, 93, 42, 0.09), transparent 58%),
    radial-gradient(700px 420px at 88% 8%, rgba(232, 192, 136, 0.07), transparent 52%),
    linear-gradient(180deg, #060608 0%, var(--bg0) 35%, #08090d 100%);
}

.ysh-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
  opacity: 0.038;
  z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.55'/%3E%3C/svg%3E");
}

.ysh-wrap {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.ysh-wrap-app {
  width: min(1200px, calc(100% - 32px));
  margin-inline: auto;
  position: relative;
  z-index: 1;
  padding: 0 0 72px;
}

/* ——— Public header ——— */
.ysh-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.78);
  backdrop-filter: blur(18px);
}

.ysh-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.ysh-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.ysh-logo__glyph {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--ember), var(--gold));
  box-shadow: 0 0 28px var(--glow-ember);
  opacity: 0.95;
}

.ysh-logo__glyph--sm {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  flex-shrink: 0;
}

.ysh-logo__mark {
  font-family: var(--display);
  font-size: 1.85rem;
  letter-spacing: 0.08em;
  line-height: 1;
  background: linear-gradient(135deg, var(--text), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.ysh-logo__text {
  font-family: var(--syne);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
}

.ysh-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ysh-nav a:not(.ysh-btn) {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}

.ysh-nav a:not(.ysh-btn):hover {
  color: var(--text);
}

.ysh-main--public {
  position: relative;
  z-index: 1;
}

/* ——— App shell ——— */
.ysh-app {
  display: flex;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.ysh-app__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 45;
  backdrop-filter: blur(4px);
}

body.ysh-nav-open .ysh-app__overlay {
  display: block;
}

.ysh-sidebar {
  width: 252px;
  flex-shrink: 0;
  min-height: 100vh;
  padding: 24px 14px 20px;
  border-right: 1px solid var(--line);
  background: rgba(6, 7, 10, 0.94);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  align-self: flex-start;
  z-index: 50;
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.ysh-sidebar__brand {
  margin-bottom: 22px;
}

.ysh-sidebar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
}

.ysh-sidebar__logo strong {
  font-family: var(--syne);
  font-weight: 800;
  font-size: 1rem;
  display: block;
  line-height: 1.2;
}

.ysh-sidebar__logo small {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gold);
  opacity: 0.9;
}

.ysh-sidebar__nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

.ysh-snav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: var(--radius-sm);
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.15s ease, color 0.15s ease;
  border: 1px solid transparent;
}

.ysh-snav__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(139, 149, 168, 0.55);
  flex-shrink: 0;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.ysh-snav:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
}

.ysh-snav.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.06);
  box-shadow: inset 3px 0 0 var(--gold);
}

.ysh-snav.is-active .ysh-snav__dot {
  background: var(--gold);
  box-shadow: 0 0 10px rgba(232, 192, 136, 0.45);
}

.ysh-sidebar__foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ysh-userchip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px;
  border-radius: var(--radius-sm);
  background: var(--surface2);
  border: 1px solid var(--line);
}

.ysh-userchip__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 10px var(--ok);
  margin-top: 5px;
  flex-shrink: 0;
}

.ysh-userchip__txt strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
}

.ysh-userchip__txt small {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  word-break: break-all;
}

.ysh-sidebar__site {
  font-size: 0.8rem;
  color: var(--muted);
  text-decoration: none;
  text-align: center;
}

.ysh-sidebar__site:hover {
  color: var(--gold);
}

.ysh-app__main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.ysh-app__top {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 16px 0 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 6, 0.75);
  backdrop-filter: blur(14px);
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.ysh-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface2);
  cursor: pointer;
  margin-left: 8px;
  flex-shrink: 0;
}

.ysh-burger span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
}

.ysh-app__top-inner {
  flex: 1;
  min-width: 0;
  padding-right: 16px;
}

.ysh-app__content {
  flex: 1;
  padding-top: 28px;
}

@media (max-width: 1024px) {
  .ysh-burger {
    display: inline-flex;
  }
  .ysh-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    transform: translateX(-102%);
    box-shadow: var(--shadow-lg);
  }
  .ysh-sidebar.is-open {
    transform: translateX(0);
  }
  .ysh-app__top-inner {
    padding-right: 8px;
  }
}

/* Page heading */
.ysh-page-head {
  margin-bottom: 28px;
}

.ysh-page-head--compact {
  margin-bottom: 0;
}

.ysh-page-head__title {
  font-family: var(--display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  letter-spacing: 0.05em;
  margin: 0;
  line-height: 1.08;
  color: var(--text);
  font-weight: 400;
}

.ysh-page-head__sub {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 1rem;
  max-width: 62ch;
}

/* ——— Buttons ——— */
.ysh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.2s ease, border-color 0.15s ease;
}

.ysh-btn--block {
  width: 100%;
}

.ysh-btn--primary {
  background: linear-gradient(135deg, var(--ember) 0%, var(--ember2) 50%, var(--gold) 160%);
  color: #1a0a04;
  box-shadow: 0 14px 40px var(--glow-ember);
}

.ysh-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px var(--glow-ember);
}

.ysh-btn--ghost {
  border-color: var(--line2);
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.ysh-btn--ghost:hover {
  border-color: rgba(232, 192, 136, 0.35);
  background: rgba(255, 255, 255, 0.06);
}

.ysh-btn--sm {
  padding: 8px 14px;
  font-size: 0.8rem;
}

.ysh-btn--danger {
  border-color: rgba(255, 107, 107, 0.45);
  color: #ffb4b4;
  background: rgba(255, 107, 107, 0.08);
}

/* ——— Hero / landing ——— */
.ysh-hero {
  padding: 88px 0 56px;
}

.ysh-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

@media (max-width: 960px) {
  .ysh-hero__grid {
    grid-template-columns: 1fr;
  }
}

.ysh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line2);
  color: var(--muted);
  font-family: var(--syne);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ysh-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  box-shadow: 0 0 12px var(--ok);
}

.ysh-hero h1 {
  font-family: var(--display);
  font-size: clamp(2.75rem, 6.5vw, 4.75rem);
  line-height: 0.95;
  letter-spacing: 0.045em;
  margin: 22px 0 18px;
  color: #fafbfd;
}

.ysh-hero p.lead {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 52ch;
  margin: 0 0 32px;
  line-height: 1.65;
}

.ysh-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ysh-hero__card {
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 40%, transparent 100%);
  padding: 26px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.ysh-hero__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.6;
}

.ysh-hero__card h3 {
  margin: 0 0 10px;
  font-family: var(--syne);
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.ysh-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.82rem;
  color: #c5cee0;
  background: rgba(0, 0, 0, 0.45);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: auto;
}

/* Bento landing */
.ysh-bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 40px;
}

@media (max-width: 900px) {
  .ysh-bento {
    grid-template-columns: 1fr;
  }
}

.ysh-bento__cell {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(12px);
}

.ysh-bento__cell--wide {
  grid-column: span 2;
}

@media (max-width: 900px) {
  .ysh-bento__cell--wide {
    grid-column: span 1;
  }
}

.ysh-bento__stat {
  font-family: var(--display);
  font-size: 2.5rem;
  color: var(--gold2);
  letter-spacing: 0.04em;
  margin: 8px 0 4px;
}

.ysh-section {
  padding: 64px 0;
}

.ysh-section h2 {
  font-family: var(--display);
  font-size: 2.5rem;
  letter-spacing: 0.06em;
  margin: 0 0 12px;
}

.ysh-section .sub {
  color: var(--muted);
  margin: 0 0 32px;
  max-width: 68ch;
  font-size: 1.05rem;
}

.ysh-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}

.ysh-card {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), transparent);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ysh-card:hover {
  border-color: rgba(232, 192, 136, 0.25);
  transform: translateY(-3px);
}

.ysh-card--glow {
  box-shadow: 0 0 0 1px rgba(232, 192, 136, 0.08), 0 24px 60px rgba(0, 0, 0, 0.35);
}

.ysh-card h3 {
  margin: 0;
  font-family: var(--syne);
  font-size: 1.12rem;
  font-weight: 700;
}

.ysh-card .meta {
  color: var(--muted);
  font-size: 0.92rem;
}

.ysh-price {
  font-family: var(--display);
  font-size: 2rem;
  color: var(--gold2);
  letter-spacing: 0.04em;
}

.ysh-badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--syne);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--line);
  color: var(--muted);
}

.ysh-badge--ok {
  border-color: rgba(74, 222, 155, 0.4);
  color: var(--ok);
}

.ysh-badge--warn {
  border-color: rgba(232, 192, 136, 0.45);
  color: var(--gold);
}

/* Stats dashboard */
.ysh-stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.ysh-stat {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 20px 22px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.ysh-stat::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(380px 100px at 100% 0%, rgba(232, 192, 136, 0.06), transparent 65%);
  pointer-events: none;
}

.ysh-stat__label {
  font-size: 0.72rem;
  font-weight: 800;
  font-family: var(--syne);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  position: relative;
}

.ysh-stat__value {
  font-family: var(--display);
  font-size: 2.15rem;
  letter-spacing: 0.04em;
  margin: 6px 0 4px;
  position: relative;
  color: var(--gold2);
}

.ysh-stat__hint {
  font-size: 0.85rem;
  color: var(--muted);
  position: relative;
}

/* License card (client) */
.ysh-lic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 18px;
}

.ysh-lic {
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  padding: 22px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
}

.ysh-lic__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}

.ysh-lic__name {
  font-family: var(--syne);
  font-weight: 800;
  font-size: 1.05rem;
  margin: 0;
}

.ysh-lic dl {
  margin: 0;
  display: grid;
  gap: 8px;
  font-size: 0.88rem;
}

.ysh-lic dt {
  color: var(--muted);
  font-weight: 600;
}

.ysh-lic dd {
  margin: 0;
  font-family: ui-monospace, monospace;
  font-size: 0.82rem;
}

/* Forms */
.ysh-form {
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.ysh-field label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 0.88rem;
  color: var(--muted);
}

.ysh-field input,
.ysh-field select,
.ysh-field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.35);
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ysh-field input:focus,
.ysh-field select:focus,
.ysh-field textarea:focus {
  outline: none;
  border-color: rgba(232, 192, 136, 0.45);
  box-shadow: 0 0 0 3px var(--glow-gold);
}

.ysh-field small {
  color: var(--muted);
  display: block;
  margin-top: 8px;
  font-size: 0.82rem;
}

.ysh-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  font-size: 0.95rem;
}

.ysh-alert--err {
  border-color: rgba(255, 107, 107, 0.45);
  background: rgba(255, 107, 107, 0.08);
  color: #ffc9c9;
}

.ysh-alert--ok {
  border-color: rgba(74, 222, 155, 0.45);
  background: rgba(74, 222, 155, 0.08);
  color: #c8ffe8;
}

/* Tables */
.ysh-table-wrap {
  overflow: auto;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

table.ysh-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.ysh-table th,
.ysh-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.ysh-table th {
  color: var(--muted);
  font-weight: 800;
  font-family: var(--syne);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: rgba(255, 255, 255, 0.02);
}

.ysh-table tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

.ysh-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

@media (max-width: 960px) {
  .ysh-split {
    grid-template-columns: 1fr;
  }
}

.ysh-pillrow {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ysh-footer {
  border-top: 1px solid var(--line);
  margin-top: 72px;
  padding: 36px 0 48px;
  position: relative;
  z-index: 1;
}

.ysh-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
}

@media (max-width: 720px) {
  .ysh-footer__grid {
    grid-template-columns: 1fr;
  }
}

.ysh-footer__brand {
  font-family: var(--syne);
  font-size: 1.1rem;
  display: block;
  margin-bottom: 8px;
}

.ysh-footer__label {
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
}

.ysh-footer__muted {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 8px 0 0;
}

/* Login */
.ysh-login {
  min-height: calc(100vh - 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .ysh-login {
    grid-template-columns: 1fr;
  }
}

.ysh-login__art {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(232, 93, 42, 0.12), transparent 55%),
    linear-gradient(135deg, rgba(232, 192, 136, 0.06), transparent);
}

@media (max-width: 900px) {
  .ysh-login__art {
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 32px 24px;
  }
}

.ysh-login__art h2 {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 16px;
}

.ysh-login__art p {
  color: var(--muted);
  max-width: 40ch;
  margin: 0;
  line-height: 1.65;
}

.ysh-login__form {
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 900px) {
  .ysh-login__form {
    padding: 32px 24px 64px;
  }
}

.ysh-login__box {
  width: 100%;
  max-width: 420px;
}

.ysh-login__box h1 {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.06em;
  margin: 0 0 8px;
}

/* Panel / glass card */
.ysh-glass {
  border-radius: var(--radius);
  border: 1px solid var(--line2);
  background: var(--surface);
  backdrop-filter: blur(14px);
  padding: 24px;
  box-shadow: var(--shadow-lg);
}

.ysh-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-bottom: 20px;
}

.ysh-toolbar form {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

/* Guia / prose */
.ysh-prose {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.ysh-prose h2 {
  font-family: var(--syne);
  color: var(--text);
  font-size: 1.25rem;
  margin: 32px 0 12px;
}

.ysh-prose code {
  font-size: 0.88em;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--line);
}

.ysh-prose pre {
  background: rgba(0, 0, 0, 0.45);
  padding: 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  overflow: auto;
  font-size: 0.85rem;
}

/* ========== Vitrine pública (vendas) ========== */
body.ysh-landing .ysh-aurora {
  background:
    radial-gradient(1100px 560px at 20% -15%, rgba(232, 93, 42, 0.14), transparent 55%),
    radial-gradient(900px 500px at 85% 5%, rgba(232, 192, 136, 0.11), transparent 50%),
    radial-gradient(600px 400px at 50% 110%, rgba(94, 200, 212, 0.05), transparent 45%),
    linear-gradient(180deg, #040405 0%, #0a0b10 50%, #060608 100%);
}

body.ysh-landing .ysh-noise {
  opacity: 0.055;
}

.ysh-btn--xl {
  padding: 15px 28px;
  font-size: 1rem;
}

.ysh-header__cta {
  box-shadow: 0 8px 32px rgba(232, 93, 42, 0.25);
}

@media (max-width: 900px) {
  .ysh-nav {
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px 14px;
  }
  .ysh-header__cta {
    order: 10;
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

@media (max-width: 520px) {
  .ysh-header .ysh-nav a:not(.ysh-btn) {
    font-size: 0.85rem;
  }
}

/* Hero loja */
.ysh-landing-hero {
  position: relative;
  padding: clamp(48px, 10vw, 100px) 0 clamp(56px, 12vw, 120px);
  overflow: hidden;
}

.ysh-landing-hero__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.ysh-landing-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: ysh-orb-float 14s ease-in-out infinite;
}

.ysh-landing-orb--a {
  width: 340px;
  height: 340px;
  background: rgba(232, 93, 42, 0.35);
  top: -80px;
  right: 10%;
  animation-delay: 0s;
}

.ysh-landing-orb--b {
  width: 280px;
  height: 280px;
  background: rgba(232, 192, 136, 0.22);
  bottom: 10%;
  left: -40px;
  animation-delay: -4s;
}

.ysh-landing-orb--c {
  width: 200px;
  height: 200px;
  background: rgba(94, 200, 212, 0.12);
  top: 40%;
  left: 35%;
  animation-delay: -7s;
}

@keyframes ysh-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(20px, -16px) scale(1.04);
  }
  66% {
    transform: translate(-12px, 12px) scale(0.98);
  }
}

.ysh-landing-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 960px) {
  .ysh-landing-hero__grid {
    grid-template-columns: 1fr;
  }
  .ysh-landing-hero__showcase {
    max-width: 420px;
    margin: 0 auto;
  }
}

.ysh-landing-eyebrow {
  display: inline-block;
  font-family: var(--syne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(232, 192, 136, 0.35);
  background: rgba(232, 192, 136, 0.06);
}

.ysh-landing-title {
  margin: 0 0 20px;
  line-height: 0.92;
}

.ysh-landing-title__line {
  display: block;
  font-family: var(--display);
  font-size: clamp(3rem, 8.5vw, 5.75rem);
  letter-spacing: 0.04em;
  color: #fdfefe;
}

.ysh-landing-title__line--accent {
  background: linear-gradient(105deg, #fff 0%, var(--gold2) 42%, var(--ember2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 40px rgba(232, 192, 136, 0.15));
}

.ysh-landing-lead {
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: #a8b0c0;
  max-width: 36rem;
  line-height: 1.65;
  margin: 0 0 32px;
}

.ysh-landing-hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}

.ysh-landing-mini-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ysh-landing-mini-stats__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ysh-landing-mini-stats__item strong {
  font-family: var(--display);
  font-size: 1.65rem;
  color: var(--gold2);
  letter-spacing: 0.04em;
}

.ysh-landing-mini-stats__item span {
  font-size: 0.82rem;
  color: var(--muted);
  max-width: 12rem;
}

/* Stack cards hero */
.ysh-landing-stack {
  position: relative;
  min-height: 320px;
  perspective: 900px;
}

.ysh-landing-stack__card {
  position: absolute;
  left: 0;
  right: 0;
  padding: 22px 24px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(22, 24, 32, 0.92), rgba(12, 14, 18, 0.88));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  animation: ysh-stack-float 6s ease-in-out infinite;
}

.ysh-landing-stack__card--1 {
  top: 0;
  z-index: 3;
  transform: rotateY(-6deg) translateX(-8px);
  animation-delay: 0s;
}

.ysh-landing-stack__card--2 {
  top: 56px;
  z-index: 2;
  opacity: 0.92;
  transform: rotateY(-3deg) translateX(12px) scale(0.98);
  animation-delay: -2s;
}

.ysh-landing-stack__card--3 {
  top: 112px;
  z-index: 1;
  opacity: 0.82;
  transform: rotateY(0deg) translateX(-4px) scale(0.96);
  animation-delay: -4s;
}

@keyframes ysh-stack-float {
  0%,
  100% {
    transform: translateY(0) rotateY(-6deg) translateX(-8px);
  }
  50% {
    transform: translateY(-8px) rotateY(-4deg) translateX(-4px);
  }
}

.ysh-landing-stack__card--2 {
  animation-name: ysh-stack-float-mid;
}

.ysh-landing-stack__card--3 {
  animation-name: ysh-stack-float-back;
}

@keyframes ysh-stack-float-mid {
  0%,
  100% {
    transform: translateY(0) rotateY(-3deg) translateX(12px) scale(0.98);
  }
  50% {
    transform: translateY(-6px) rotateY(-2deg) translateX(8px) scale(0.98);
  }
}

@keyframes ysh-stack-float-back {
  0%,
  100% {
    transform: translateY(0) translateX(-4px) scale(0.96);
  }
  50% {
    transform: translateY(-5px) translateX(0) scale(0.96);
  }
}

.ysh-landing-stack__tag {
  font-family: var(--syne);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ok);
}

.ysh-landing-stack__t {
  margin: 10px 0 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.35;
}

/* Trust strip */
.ysh-landing-trust {
  position: relative;
  z-index: 1;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.25);
  padding: 28px 0;
}

.ysh-landing-trust__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 900px) {
  .ysh-landing-trust__row {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .ysh-landing-trust__row {
    grid-template-columns: 1fr;
  }
}

.ysh-landing-trust__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.ysh-landing-trust__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(232, 192, 136, 0.1);
  border: 1px solid rgba(232, 192, 136, 0.2);
  color: var(--gold2);
  font-size: 0.9rem;
}

.ysh-landing-trust__item strong {
  display: block;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.ysh-landing-trust__item span {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.45;
}

/* Sections */
.ysh-landing-section {
  position: relative;
  z-index: 1;
  padding: clamp(72px, 12vw, 120px) 0;
}

.ysh-landing-section--dim {
  background: rgba(0, 0, 0, 0.2);
  border-block: 1px solid rgba(255, 255, 255, 0.05);
}

.ysh-landing-section__label {
  font-family: var(--syne);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember2);
  margin: 0 0 12px;
}

.ysh-landing-section__title {
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  letter-spacing: 0.05em;
  margin: 0 0 16px;
  max-width: 18ch;
  color: #f4f6fa;
}

.ysh-landing-section__sub {
  margin: 0 0 40px;
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.65;
}

.ysh-landing-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}

.ysh-landing-benefit {
  padding: 28px 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.04), transparent);
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.ysh-landing-benefit:hover {
  border-color: rgba(232, 192, 136, 0.28);
  transform: translateY(-4px);
}

.ysh-landing-benefit__num {
  font-family: var(--display);
  font-size: 2rem;
  color: rgba(232, 192, 136, 0.35);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 12px;
}

.ysh-landing-benefit h3 {
  font-family: var(--syne);
  font-size: 1.05rem;
  margin: 0 0 10px;
}

.ysh-landing-benefit p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.6;
}

/* Steps */
.ysh-landing-steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.ysh-landing-step {
  flex: 1 1 220px;
  max-width: 300px;
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.ysh-landing-step__badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  font-family: var(--syne);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.ysh-landing-step h3 {
  font-family: var(--syne);
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.ysh-landing-step p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.ysh-landing-step__arrow {
  display: none;
  width: 32px;
  align-self: center;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  opacity: 0.4;
}

@media (min-width: 1100px) {
  .ysh-landing-steps {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .ysh-landing-step__arrow {
    display: block;
    flex: 0 0 32px;
    min-width: 24px;
  }
}

/* Product grid */
.ysh-landing-products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 320px), 1fr));
  gap: 28px;
}

.ysh-product-card {
  position: relative;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(0, 0, 0, 0.15) 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}

.ysh-product-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(232, 192, 136, 0.35);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(232, 192, 136, 0.12);
}

.ysh-product-card__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
  transform: skewX(-20deg);
  pointer-events: none;
  animation: ysh-card-shine 7s ease-in-out infinite;
}

@keyframes ysh-card-shine {
  0%,
  60% {
    left: -60%;
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    left: 160%;
    opacity: 0;
  }
}

.ysh-product-card__visual {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0d0f14;
}

.ysh-product-card__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.ysh-product-card:hover .ysh-product-card__visual img {
  transform: scale(1.06);
}

.ysh-product-card__video {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: #06080c;
}

.ysh-product-card__video-inner {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.ysh-product-card__video-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.ysh-product-card__visual--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsl(var(--ph-hue), 42%, 16%) 0%, hsl(calc(var(--ph-hue) + 40), 35%, 10%) 100%);
}

.ysh-product-card__initial {
  font-family: var(--display);
  font-size: 4rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.2);
}

.ysh-product-card__body {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
}

.ysh-product-card__title {
  font-family: var(--syne);
  font-size: 1.2rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.25;
}

.ysh-product-card__desc {
  margin: 0;
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ysh-product-card__foot {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.ysh-product-card__price-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 2px;
}

.ysh-product-card__price-val {
  font-family: var(--display);
  font-size: 1.85rem;
  color: var(--gold2);
  letter-spacing: 0.03em;
}

.ysh-product-card__price-val--ask {
  font-size: 1.35rem;
  color: var(--gold);
}

.ysh-product-card__btn {
  flex-shrink: 0;
}

.ysh-landing-empty {
  text-align: center;
  padding: 64px 24px;
  border-radius: var(--radius);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.ysh-landing-empty__t {
  font-family: var(--display);
  font-size: 2rem;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

.ysh-landing-empty__d {
  color: var(--muted);
  margin: 0 0 24px;
}

/* Final CTA */
.ysh-landing-cta {
  position: relative;
  z-index: 1;
  padding: 80px 0 100px;
}

.ysh-landing-cta__inner {
  border-radius: 24px;
  padding: clamp(40px, 8vw, 64px);
  border: 1px solid rgba(232, 192, 136, 0.25);
  background:
    radial-gradient(800px 200px at 10% 0%, rgba(232, 93, 42, 0.18), transparent 55%),
    radial-gradient(600px 180px at 90% 100%, rgba(232, 192, 136, 0.12), transparent 50%),
    linear-gradient(145deg, rgba(18, 20, 28, 0.95), rgba(8, 9, 12, 0.98));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45);
}

.ysh-landing-cta__title {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: 0.05em;
  margin: 0 0 12px;
}

.ysh-landing-cta__copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 40ch;
  line-height: 1.6;
}

.ysh-landing-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
