/* Mcun studio portal — Warm Continuity + UX polish */
:root {
  --gold: #d4a857;
  --gold-light: #e8c06a;
  --gold-dark: #b8923f;
  --ink: #0c0b0a;
  --ink-elevated: #161412;
  --text: #f4efe6;
  --text-secondary: rgba(244, 239, 230, 0.72);
  --text-muted: rgba(244, 239, 230, 0.48);
  --glass-bg: rgba(212, 168, 87, 0.06);
  --glass-border: rgba(212, 168, 87, 0.16);
  --chrome: rgba(24, 20, 16, 0.72);
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --dur-press: 140ms;
  --dur-fast: 180ms;
  --dur-normal: 240ms;
  --ease-inout: cubic-bezier(0.77, 0, 0.175, 1);
  --radius: 14px;
  --font-sans: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-display: "Bricolage Grotesque", "PingFang SC", "Microsoft YaHei", sans-serif;
  --max: 1120px;
  --focus: 0 0 0 2px var(--ink), 0 0 0 4px rgba(232, 192, 106, 0.75);
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--ink);
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

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

button {
  font: inherit;
  color: inherit;
}

:focus-visible {
  outline: none;
  box-shadow: var(--focus);
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 0;
  z-index: 100;
  transform: translateY(-120%);
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--gold);
  color: #1a1408;
  font-weight: 650;
  font-size: 14px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.skip-link:focus {
  transform: translateY(12px);
  box-shadow: var(--focus);
}

.icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ——— Nav ——— */
.nav {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px clamp(16px, 4vw, 40px);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition:
    background var(--dur-normal) var(--ease-out),
    border-color var(--dur-normal) var(--ease-out),
    backdrop-filter var(--dur-normal) var(--ease-out);
}

.nav.is-scrolled {
  background: var(--chrome);
  backdrop-filter: blur(20px) saturate(1.25);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-transparency: reduce) {
  .nav.is-scrolled {
    background: var(--ink-elevated);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
}

.nav-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: 8px;
  transition: opacity var(--dur-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-brand:hover {
    opacity: 0.88;
  }
}

.nav-brand:active {
  transform: scale(0.98);
}

.nav-logo {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
  filter: drop-shadow(0 0 10px rgba(212, 168, 87, 0.25));
  transition: transform var(--dur-fast) var(--ease-out), filter var(--dur-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .nav-brand:hover .nav-logo {
    transform: translateY(-1px) rotate(-4deg);
    filter: drop-shadow(0 0 14px rgba(212, 168, 87, 0.45));
  }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-secondary);
  cursor: pointer;
  transition:
    transform var(--dur-press) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn:active {
  transform: scale(0.95);
}

@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover {
    color: var(--text);
    border-color: rgba(212, 168, 87, 0.35);
    background: rgba(212, 168, 87, 0.1);
  }
}

.icon-btn::after {
  content: attr(aria-label);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(20, 16, 12, 0.94);
  border: 1px solid rgba(212, 168, 87, 0.22);
  color: var(--text);
  font-size: 12px;
  font-weight: 550;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-fast) var(--ease-out),
    transform var(--dur-fast) var(--ease-out);
  z-index: 60;
}

@media (hover: hover) and (pointer: fine) {
  .icon-btn:hover::after,
  .icon-btn:focus-visible::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

html[data-theme="dark"] .icon-btn .icon-sun,
html:not([data-theme="light"]) .icon-btn .icon-sun {
  display: none;
}

html[data-theme="light"] .icon-btn .icon-moon {
  display: none;
}

html[data-theme="light"] .icon-btn .icon-sun {
  display: block;
}

html:not([data-theme="light"]) .icon-btn .icon-moon {
  display: block;
}

/* Light theme */
html[data-theme="light"] {
  color-scheme: light;
}

html[data-theme="light"] body {
  --ink: #f6f1e8;
  --ink-elevated: #fffdf8;
  --text: #1a1510;
  --text-secondary: rgba(26, 21, 16, 0.72);
  --text-muted: rgba(26, 21, 16, 0.48);
  --glass-bg: rgba(180, 130, 50, 0.06);
  --glass-border: rgba(140, 100, 40, 0.18);
  --chrome: rgba(255, 252, 246, 0.82);
  --focus: 0 0 0 2px #f6f1e8, 0 0 0 4px rgba(180, 130, 50, 0.55);
  background: var(--ink);
  color: var(--text);
}

html[data-theme="light"] .hero-brand {
  background: linear-gradient(105deg, #5a3d12 0%, #b8923f 40%, #8a6428 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  filter: none;
}

html[data-theme="light"] .field-vignette {
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, transparent 40%, rgba(246, 241, 232, 0.28) 100%),
    linear-gradient(90deg, rgba(246, 241, 232, 0.28), transparent 28%, transparent 72%, rgba(246, 241, 232, 0.14));
}

html[data-theme="light"] .icon-btn {
  border-color: rgba(26, 21, 16, 0.12);
  background: rgba(26, 21, 16, 0.04);
}

html[data-theme="light"] .icon-btn::after {
  background: rgba(255, 252, 246, 0.96);
  border-color: rgba(140, 100, 40, 0.22);
  color: #1a1510;
}

html[data-theme="light"] .nav.is-scrolled {
  border-bottom-color: rgba(26, 21, 16, 0.08);
}

html[data-theme="light"] .btn-ghost {
  color: var(--text);
  border-color: rgba(26, 21, 16, 0.14);
  background: rgba(26, 21, 16, 0.04);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 650;
  cursor: pointer;
  transition:
    transform var(--dur-press) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    filter var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

.btn-sm {
  min-height: 40px;
  padding: 0 14px;
}

.btn:active {
  transform: scale(0.97);
}

.btn.is-disabled,
a.btn.is-disabled {
  opacity: 0.55;
  pointer-events: none;
  cursor: not-allowed;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #1a1408;
  background: linear-gradient(165deg, #f0d08a 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow:
    0 8px 24px rgba(212, 168, 87, 0.28),
    0 0 0 0 rgba(232, 192, 106, 0.4);
  animation: none;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255, 255, 255, 0.55) 48%,
    transparent 66%
  );
  transform: translateX(-120%);
  animation: btn-shine 3.2s var(--ease-inout) infinite;
  pointer-events: none;
}

@keyframes btn-shine {
  0%,
  55% {
    transform: translateX(-120%);
  }
  75%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes btn-pulse {
  0%,
  100% {
    box-shadow:
      0 8px 24px rgba(212, 168, 87, 0.28),
      0 0 0 0 rgba(232, 192, 106, 0);
  }
  50% {
    box-shadow:
      0 10px 28px rgba(212, 168, 87, 0.4),
      0 0 28px 2px rgba(232, 192, 106, 0.28);
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn-primary:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
  }
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
}

@media (hover: hover) and (pointer: fine) {
  .btn-ghost:hover {
    border-color: rgba(212, 168, 87, 0.4);
    background: rgba(212, 168, 87, 0.08);
  }
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding: clamp(48px, 10vh, 120px) clamp(16px, 4vw, 40px) clamp(40px, 8vh, 80px);
  overflow: hidden;
}

.hero-product {
  min-height: 100vh;
  min-height: 100dvh;
  padding-top: 24px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  will-change: transform;
  overflow: hidden;
  background: #0a0806;
}

.hero-field .field-sky {
  position: absolute;
  inset: 0;
  transition: opacity 1.6s var(--ease-inout);
  pointer-events: none;
}

.hero-field .field-sky--night {
  background:
    radial-gradient(ellipse 90% 55% at 70% 8%, rgba(255, 186, 90, 0.28), transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 20%, rgba(80, 70, 30, 0.22), transparent 50%),
    linear-gradient(
      180deg,
      #12100c 0%,
      #1c1610 22%,
      #2a2214 42%,
      #3a3820 58%,
      #454828 72%,
      #2e3420 88%,
      #1a2014 100%
    );
  opacity: 1;
}

.hero-field .field-sky--day {
  background:
    radial-gradient(ellipse 70% 50% at 78% 14%, rgba(255, 220, 120, 0.85), transparent 55%),
    radial-gradient(ellipse 50% 35% at 15% 30%, rgba(180, 220, 255, 0.35), transparent 50%),
    linear-gradient(
      180deg,
      #7eb6e8 0%,
      #b9d7f2 28%,
      #e8dfa8 48%,
      #d4c24a 62%,
      #b8a832 78%,
      #8f9a38 92%,
      #6e7a2c 100%
    );
  opacity: 0;
}

html[data-theme="light"] .hero-field .field-sky--day {
  opacity: 1;
}

html[data-theme="light"] .hero-field .field-sky--night {
  opacity: 0;
}

@media (prefers-reduced-motion: reduce) {
  .hero-field .field-sky {
    transition: none;
  }
}

.hero-field .field-haze {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      transparent 38%,
      rgba(40, 48, 22, 0.28) 65%,
      rgba(18, 24, 12, 0.55) 85%,
      rgba(8, 12, 6, 0.78) 100%
    ),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(140, 150, 60, 0.12), transparent 60%);
  pointer-events: none;
}

html[data-theme="light"] .hero-field .field-haze {
  background:
    linear-gradient(
      180deg,
      transparent 42%,
      rgba(200, 185, 70, 0.18) 62%,
      rgba(120, 130, 45, 0.28) 82%,
      rgba(90, 100, 35, 0.4) 100%
    ),
    radial-gradient(ellipse 70% 45% at 78% 10%, rgba(255, 240, 180, 0.35), transparent 60%);
}

html[data-theme="light"] .hero-bg {
  background: #cfe3f5;
}

html[data-theme="light"] .hero {
  color: #1a1510;
}

html[data-theme="light"] .hero-lead,
html[data-theme="light"] .hero-sub,
html[data-theme="light"] .hero-welcome {
  color: rgba(26, 21, 16, 0.78);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.35);
}

html[data-theme="light"] [data-hero-rotate] {
  color: var(--gold-dark);
  text-shadow: none;
}

.hero-field .field-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.hero-field .field-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 75% 70% at 50% 45%, transparent 30%, rgba(8, 6, 4, 0.55) 100%),
    linear-gradient(90deg, rgba(8, 6, 4, 0.45), transparent 28%, transparent 72%, rgba(8, 6, 4, 0.25));
  pointer-events: none;
}

.field-hint {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: clamp(12px, 3vh, 28px);
  transform: translateX(-50%);
  margin: 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 550;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.55);
  background: rgba(12, 10, 8, 0.35);
  border: 1px solid rgba(212, 168, 87, 0.18);
  backdrop-filter: blur(8px);
  pointer-events: none;
  opacity: 0;
  transition: opacity 400ms var(--ease-out);
}

.field-hint.is-on {
  opacity: 1;
}

.hero {
  cursor: crosshair;
}

.hero .hero-inner,
.hero .hero-inner * {
  cursor: auto;
}

.hero .btn {
  cursor: pointer;
}

@media (hover: none), (pointer: coarse) {
  .hero {
    cursor: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .field-hint {
    display: none;
  }
}

/* legacy ambient layers kept inert if present */
.hero-orb,
.hero-sparkles,
.hero-ring,
.hero-particles {
  display: none;
}

@keyframes grid-drift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-56px, -56px, 0);
  }
}

@keyframes orb-a {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.55;
  }
  50% {
    transform: translate3d(-10%, 12%, 0) scale(1.28);
    opacity: 0.9;
  }
}

@keyframes orb-b {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate3d(14%, -16%, 0) scale(1.2);
    opacity: 0.75;
  }
}

@keyframes orb-c {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    transform: translate3d(-18%, 10%, 0) scale(1.25);
    opacity: 0.8;
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.35;
    filter: brightness(1);
  }
  50% {
    opacity: 1;
    filter: brightness(1.4);
  }
}

.hero-ring {
  position: absolute;
  top: 18%;
  right: 12%;
  width: min(38vw, 280px);
  height: min(38vw, 280px);
  border-radius: 50%;
  border: 1px solid rgba(232, 192, 106, 0.28);
  box-shadow:
    0 0 40px rgba(212, 168, 87, 0.15) inset,
    0 0 60px rgba(212, 168, 87, 0.12);
  animation: ring-spin 18s linear infinite;
  pointer-events: none;
}

.hero-ring::before,
.hero-ring::after {
  content: "";
  position: absolute;
  inset: 18%;
  border-radius: 50%;
  border: 1px solid rgba(232, 192, 106, 0.18);
}

.hero-ring::after {
  inset: 34%;
  border-color: rgba(255, 220, 150, 0.22);
  animation: ring-spin 12s linear infinite reverse;
}

@keyframes ring-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.hero-enter > * {
  opacity: 0;
  transform: translateY(14px);
  animation: hero-in 700ms var(--ease-out) forwards;
}

.hero-enter > *:nth-child(1) {
  animation-delay: 40ms;
}
.hero-enter > *:nth-child(2) {
  animation-delay: 110ms;
}
.hero-enter > *:nth-child(3) {
  animation-delay: 180ms;
}
.hero-enter > *:nth-child(4) {
  animation-delay: 250ms;
}

@keyframes hero-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-enter > * {
    animation: none;
    opacity: 1;
    transform: none;
  }

  .hero-brand,
  .btn-primary,
  .btn-primary::after {
    animation: none !important;
  }

  [data-hero-rotate] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .hero-orb,
  .hero-sparkles,
  .hero-ring,
  .hero-particles {
    display: none !important;
  }

  .btn-primary {
    box-shadow: 0 8px 24px rgba(212, 168, 87, 0.28);
  }
}

.hero-kicker {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.hero-brand {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: clamp(44px, 8vw, 84px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.045em;
  background: linear-gradient(
    105deg,
    #fff8ea 0%,
    var(--gold-light) 28%,
    #fff 48%,
    var(--gold-light) 68%,
    var(--gold) 100%
  );
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: brand-shine 8s var(--ease-inout) infinite;
  filter: drop-shadow(0 0 18px rgba(232, 192, 106, 0.22));
}

@keyframes brand-shine {
  0%,
  100% {
    background-position: 120% 50%;
  }
  50% {
    background-position: -20% 50%;
  }
}

.hero-sub {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(18px, 2.6vw, 24px);
  font-weight: 650;
  letter-spacing: 0.04em;
  color: var(--gold-light);
}

.hero-welcome {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35em 0.55em;
  margin: 0 0 28px;
  max-width: 36em;
  font-size: clamp(16px, 2.4vw, 20px);
  color: var(--text-secondary);
  line-height: 1.45;
}

.hero-rotate {
  display: inline-grid;
  vertical-align: baseline;
  min-width: 7.5em;
}

.hero-rotate-item,
[data-hero-rotate] {
  display: inline-block;
  font-weight: 700;
  color: var(--gold-light);
  opacity: 0;
  transform: translateY(0.35em);
  transition:
    opacity 280ms var(--ease-out),
    transform 280ms var(--ease-out);
}

.hero-rotate-item.is-on,
[data-hero-rotate].is-on {
  opacity: 1;
  transform: translateY(0);
}

.hero-lead {
  margin: 0 0 28px;
  max-width: 34em;
  font-size: clamp(16px, 2.2vw, 19px);
  color: var(--text-secondary);
  line-height: 1.5;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ——— Crumb ——— */
.crumb {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: 18px clamp(16px, 4vw, 40px) 0;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.crumb a {
  color: var(--text-secondary);
  border-radius: 4px;
  transition: color var(--dur-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .crumb a:hover {
    color: var(--gold-light);
  }
}

.crumb-sep {
  opacity: 0.5;
}

/* ——— Sections ——— */
.section {
  width: min(100%, var(--max));
  margin: 0 auto;
  padding: clamp(48px, 8vh, 96px) clamp(16px, 4vw, 40px);
}

.section-tight {
  padding-top: 8px;
}

.section-kicker {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.section-title {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 750;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-desc {
  margin: 0 0 32px;
  max-width: 38em;
  color: var(--text-secondary);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(20px, 4vw, 48px);
  align-items: start;
}

.about-copy {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.65;
}

@media (max-width: 720px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* ——— Products ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  perspective: 1200px;
}

@media (max-width: 720px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

.product {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  min-height: 100%;
  padding: 22px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  text-align: left;
  cursor: pointer;
  transform-style: preserve-3d;
  opacity: 0;
  transform: translateY(28px) scale(0.94);
  transition:
    opacity 520ms var(--ease-out),
    transform 520ms var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-fast) var(--ease-out);
}

a.product {
  cursor: pointer;
}

.product.is-in {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product:nth-child(1) {
  transition-delay: 0ms;
}
.product:nth-child(2) {
  transition-delay: 70ms;
}
.product:nth-child(3) {
  transition-delay: 140ms;
}
.product:nth-child(4) {
  transition-delay: 210ms;
}

@media (prefers-reduced-motion: reduce) {
  .product {
    opacity: 1;
    transform: none;
    transition:
      border-color var(--dur-fast) var(--ease-out),
      background var(--dur-fast) var(--ease-out);
  }
}

@media (hover: hover) and (pointer: fine) {
  .product:hover {
    border-color: rgba(212, 168, 87, 0.55);
    background: rgba(212, 168, 87, 0.14);
    box-shadow:
      0 22px 50px rgba(0, 0, 0, 0.4),
      0 0 0 1px rgba(232, 192, 106, 0.2),
      0 0 36px rgba(212, 168, 87, 0.18);
  }

  .product.is-in:hover {
    transform: translateY(-8px) scale(1.02);
  }

  .product:hover .product-icon {
    transform: translateY(-3px) scale(1.12) rotate(-4deg);
    color: #ffe6a8;
    box-shadow: 0 10px 24px rgba(212, 168, 87, 0.35);
  }

  .product:hover .product-go {
    color: var(--gold-light);
  }

  .product:hover .product-go .icon {
    transform: translateX(6px);
  }
}

.product-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 14px;
  border-radius: 11px;
  color: var(--gold-light);
  background: rgba(212, 168, 87, 0.1);
  border: 1px solid rgba(212, 168, 87, 0.2);
  transition:
    transform var(--dur-normal) var(--ease-out),
    color var(--dur-fast) var(--ease-out),
    box-shadow var(--dur-normal) var(--ease-out);
}

.product:active {
  transform: scale(0.985);
}

.product.is-in:active {
  transform: scale(0.985);
}

.product[data-soon] {
  cursor: default;
}

.product[data-soon].is-in {
  opacity: 0.82;
}

.product-icon svg {
  width: 22px;
  height: 22px;
}

.product-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-bottom: 8px;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  margin-bottom: 4px;
  padding: 3px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.05);
}

.product-tag.is-live {
  color: #1a1408;
  background: var(--gold);
}

.product h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: -0.025em;
}

.product-name {
  margin: 0;
  font-size: 13px;
  color: var(--gold-light);
}

.product-desc {
  margin: 0 0 16px;
  font-size: 14px;
  color: var(--text-secondary);
  flex: 1;
}

.product-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  font-size: 13px;
  font-weight: 650;
  color: var(--text);
}

.product-go .icon {
  transition: transform var(--dur-fast) var(--ease-out);
}

.product-go.muted {
  color: var(--text-muted);
  font-weight: 550;
}

/* ——— Features ——— */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

@media (max-width: 860px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}

.feature {
  padding: 20px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out),
    border-color var(--dur-fast) var(--ease-out),
    background var(--dur-fast) var(--ease-out);
}

.feature.is-in {
  opacity: 1;
  transform: translateY(0);
}

.feature:nth-child(1) {
  transition-delay: 0ms;
}
.feature:nth-child(2) {
  transition-delay: 50ms;
}
.feature:nth-child(3) {
  transition-delay: 100ms;
}

@media (prefers-reduced-motion: reduce) {
  .feature {
    opacity: 1;
    transform: none;
    transition: border-color var(--dur-fast) var(--ease-out), background var(--dur-fast) var(--ease-out);
  }
}

@media (hover: hover) and (pointer: fine) {
  .feature:hover {
    border-color: rgba(212, 168, 87, 0.35);
    background: rgba(212, 168, 87, 0.1);
    transform: translateY(-3px);
  }

  .feature.is-in:hover {
    transform: translateY(-3px);
  }

  .feature:hover .feature-icon {
    transform: scale(1.08);
  }
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 12px;
  border-radius: 9px;
  color: var(--gold-light);
  background: rgba(212, 168, 87, 0.1);
  transition: transform var(--dur-normal) var(--ease-out);
}

.feature-icon svg {
  width: 18px;
  height: 18px;
}

.feature h3 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 17px;
  letter-spacing: -0.02em;
}

.feature p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ——— Download ——— */
.download-panel {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 20px;
  align-items: stretch;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background:
    radial-gradient(ellipse 60% 80% at 100% 0%, rgba(212, 168, 87, 0.14), transparent 55%),
    rgba(22, 20, 18, 0.85);
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.download-panel.is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .download-panel {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 860px) {
  .download-panel {
    grid-template-columns: 1fr;
  }
}

.download-copy {
  margin-bottom: 16px;
}

.download-meta {
  margin: 12px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.req-panel {
  padding: 18px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.22);
}

.req-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 16px;
}

.req-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.req-list li {
  position: relative;
  padding-left: 16px;
  font-size: 14px;
  color: var(--text-secondary);
}

.req-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.account-band {
  text-align: center;
  padding: clamp(40px, 7vh, 72px) clamp(16px, 4vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.account-copy {
  margin-left: auto;
  margin-right: auto;
}

/* ——— Footer ——— */
.footer {
  margin-top: auto;
  padding: 28px clamp(16px, 4vw, 40px) 40px;
  color: var(--text-muted);
  font-size: 13px;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-brand strong {
  color: var(--text-secondary);
  font-weight: 650;
}

.footer-brand a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold-light);
  width: fit-content;
  border-radius: 4px;
  transition: opacity var(--dur-fast) var(--ease-out);
}

@media (hover: hover) and (pointer: fine) {
  .footer-brand a:hover {
    opacity: 0.85;
  }
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
}

@media (max-width: 560px) {
  .footer-meta {
    align-items: flex-start;
    text-align: left;
  }
}

/* ——— Toast ——— */
.toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  z-index: 50;
  transform: translateX(-50%) translateY(12px);
  max-width: min(92vw, 360px);
  padding: 12px 16px;
  border-radius: 10px;
  background: rgba(28, 24, 20, 0.94);
  border: 1px solid rgba(212, 168, 87, 0.28);
  color: var(--text);
  font-size: 14px;
  font-weight: 550;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.toast.is-on {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .toast {
    transition: opacity var(--dur-fast) var(--ease-out);
  }

  .toast.is-on {
    transform: translateX(-50%);
  }
}

/* generic reveal (exclude surfaces with their own enter styles) */
.reveal:not(.product):not(.download-panel) {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity var(--dur-normal) var(--ease-out),
    transform var(--dur-normal) var(--ease-out);
}

.reveal:not(.product):not(.download-panel).is-in {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal:not(.product):not(.download-panel) {
    opacity: 1;
    transform: none;
  }
}


.section-title {
  position: relative;
}

.fx-max .section-title::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  margin-top: 10px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
  transition: width 700ms var(--ease-out);
}

.fx-max .reveal.is-in .section-title::after,
.fx-max .about-layout.is-in .section-title::after {
  width: min(120px, 40%);
}

.fx-max .section-kicker {
  animation: kicker-flicker 2.4s var(--ease-inout) infinite;
}

@keyframes kicker-flicker {
  0%, 100% { opacity: 0.75; text-shadow: none; }
  50% { opacity: 1; text-shadow: 0 0 12px rgba(232, 192, 106, 0.45); }
}

.fx-max .product.is-in .product-tag.is-live {
  animation: live-blink 1.8s var(--ease-inout) infinite;
}

@keyframes live-blink {
  0%, 100% { box-shadow: 0 0 0 0 rgba(232, 192, 106, 0); }
  50% { box-shadow: 0 0 14px 1px rgba(232, 192, 106, 0.55); }
}

/* ——— Mobile / narrow ——— */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

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

  .nav {
    padding: 10px 14px;
    padding-top: max(10px, env(safe-area-inset-top));
    gap: 10px;
  }

  .nav-brand span {
    font-size: 15px;
  }

  .nav-logo {
    width: 28px;
    height: 28px;
  }

  .nav-actions {
    gap: 8px;
  }

  .icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 12px;
  }

  .hero {
    min-height: 100svh;
    align-items: flex-end;
    padding: 72px 16px max(28px, env(safe-area-inset-bottom));
  }

  .hero-product {
    min-height: 88svh;
    padding-top: 12px;
  }

  .hero-brand {
    font-size: clamp(34px, 11vw, 48px);
    margin-bottom: 6px;
    filter: drop-shadow(0 0 14px rgba(232, 192, 106, 0.18));
  }

  .hero-sub {
    font-size: 18px;
    letter-spacing: 0.06em;
    margin-bottom: 12px;
  }

  .hero-welcome {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .hero-rotate {
    min-width: 6.5em;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
    width: 100%;
  }

  .hero-cta .btn {
    width: 100%;
  }

  .field-hint {
    left: 16px;
    right: 16px;
    width: auto;
    transform: none;
    bottom: max(12px, env(safe-area-inset-bottom));
    font-size: 12px;
    text-align: center;
  }

  .crumb {
    padding: 14px 16px 0;
    font-size: 12px;
  }

  .section {
    padding: 40px 16px;
  }

  .section-tight {
    padding-top: 4px;
  }

  .section-title {
    font-size: clamp(24px, 7vw, 32px);
  }

  .section-desc {
    margin-bottom: 22px;
    font-size: 14px;
  }

  .product-grid {
    gap: 12px;
    perspective: none;
  }

  .product {
    padding: 18px 16px;
    transform-style: flat;
    min-height: 0;
  }

  .product.is-in {
    transform: none;
  }

  .product:active,
  .product.is-in:active {
    transform: scale(0.985);
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .download-panel {
    padding: 20px 16px;
    gap: 14px;
  }

  .download-panel .btn {
    width: 100%;
  }

  .account-band {
    padding: 36px 16px;
  }

  .footer {
    padding: 24px 16px max(28px, env(safe-area-inset-bottom));
  }

  .footer-inner {
    flex-direction: column;
    gap: 12px;
  }

  .toast {
    bottom: max(20px, env(safe-area-inset-bottom));
    left: 16px;
    right: 16px;
    max-width: none;
    transform: translateY(12px);
  }

  .toast.is-on {
    transform: translateY(0);
  }

  /* quieter motion on small screens */
  .fx-max .section-kicker {
    animation: none;
  }

  .hero-brand {
    animation-duration: 12s;
  }
}

@media (max-width: 380px) {
  .nav-brand span {
    max-width: 9.5em;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .hero-brand {
    font-size: 30px;
  }

  .icon-btn {
    width: 40px;
    height: 40px;
  }
}

/* Touch: no sticky hover leftovers */
@media (hover: none), (pointer: coarse) {
  .product-grid {
    perspective: none;
  }

  .product {
    transform-style: flat;
  }

  .btn-primary {
    animation: none;
  }
}

/* ——— Account modal ——— */
body.account-modal-open {
  overflow: hidden;
}

.icon-btn.is-authed {
  color: var(--gold-light);
  border-color: rgba(212, 168, 87, 0.45);
  background: rgba(212, 168, 87, 0.12);
}

.account-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) 16px max(16px, env(safe-area-inset-bottom));
}

.account-modal[hidden] {
  display: none;
}

.account-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 6, 4, 0.72);
  backdrop-filter: blur(6px);
}

.account-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 420px);
  max-height: min(90vh, 640px);
  overflow: auto;
  padding: 22px 20px 24px;
  border-radius: 16px;
  border: 1px solid var(--glass-border);
  background: var(--ink-elevated);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
}

.account-modal-x {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--text-muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.account-modal-x:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.account-modal-title {
  margin: 0 0 6px;
  padding-right: 36px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.02em;
}

.account-modal-desc {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.45;
}

.account-form {
  display: grid;
  gap: 12px;
}

.account-form[hidden] {
  display: none !important;
}

.account-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 2px;
}

.account-footer-link {
  padding: 0;
  border: none;
  background: none;
  color: var(--gold-light);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.account-footer-link:hover {
  text-decoration: underline;
}

.account-form-ok {
  margin: 0;
  font-size: 13px;
  color: var(--gold-light);
  line-height: 1.45;
}

.account-verify-pending[hidden] {
  display: none !important;
}

.account-verify-pending .btn-ghost {
  width: 100%;
}

.account-pending[hidden] {
  display: none !important;
}

.account-pending {
  display: grid;
  gap: 12px;
  justify-items: stretch;
}

.account-pending-icon {
  width: 52px;
  height: 52px;
  margin: 4px auto 0;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 24px;
  color: #1a1408;
  background: linear-gradient(165deg, #f0d08a 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 8px 20px rgba(180, 130, 40, 0.25);
}

.account-pending-lead {
  margin: 0;
  text-align: center;
  font-size: 14px;
  line-height: 1.55;
  color: var(--text-secondary);
}

.account-pending-email {
  margin: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  color: var(--gold-light);
  word-break: break-all;
}

.account-pending-steps {
  margin: 4px 0 2px;
  padding: 12px 12px 12px 30px;
  border-radius: 12px;
  border: 1px solid rgba(212, 168, 87, 0.28);
  background: rgba(212, 168, 87, 0.08);
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.65;
}

.account-pending-steps li + li {
  margin-top: 4px;
}

.account-field {
  display: grid;
  gap: 6px;
  font-size: 13px;
  color: var(--text-secondary);
}

.account-field input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: var(--text);
  font: inherit;
}

html[data-theme="light"] .account-field input {
  background: rgba(26, 21, 16, 0.04);
  border-color: rgba(26, 21, 16, 0.14);
}

.account-field input:focus {
  outline: none;
  box-shadow: var(--focus);
}

.account-form-error {
  margin: 0;
  font-size: 13px;
  color: #f0a0a0;
}

.account-submit {
  width: 100%;
  margin-top: 4px;
}

/* Signed-in dropdown under nav account button */
.account-dropdown {
  position: fixed;
  z-index: 90;
  max-height: min(78vh, 560px);
  overflow: auto;
  border-radius: 14px;
  border: 1px solid var(--glass-border);
  background: var(--ink-elevated);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.38);
}

.account-dropdown[hidden] {
  display: none !important;
}

.account-dropdown-inner {
  display: grid;
  gap: 12px;
  padding: 14px;
}

.account-profile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

html[data-theme="light"] .account-profile {
  border-color: rgba(26, 21, 16, 0.1);
  background: rgba(26, 21, 16, 0.03);
}

.account-avatar {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: #1a1408;
  background: linear-gradient(165deg, #f0d08a 0%, var(--gold) 55%, var(--gold-dark) 100%);
  box-shadow: 0 6px 16px rgba(180, 130, 40, 0.28);
}

.account-profile-text {
  min-width: 0;
  display: grid;
  gap: 1px;
}

.account-signed-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-signed-handle {
  margin: 0;
  font-size: 12px;
  color: var(--text-muted);
}

.account-signed-email {
  margin: 0;
  font-size: 12px;
  color: var(--gold-light);
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-signed-email:hover {
  text-decoration: underline;
}

.account-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.01em;
}

.account-badge.is-ok {
  color: #2f6b3a;
  background: rgba(70, 160, 90, 0.14);
  border: 1px solid rgba(70, 160, 90, 0.28);
}

.account-badge.is-warn {
  color: #8a5a12;
  background: rgba(212, 168, 87, 0.16);
  border: 1px solid rgba(212, 168, 87, 0.35);
}

html[data-theme="dark"] .account-badge.is-ok,
html:not([data-theme="light"]) .account-badge.is-ok {
  color: #9be0a8;
}

html[data-theme="dark"] .account-badge.is-warn,
html:not([data-theme="light"]) .account-badge.is-warn {
  color: #f0d08a;
}

.account-verify-box {
  display: grid;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(212, 168, 87, 0.1);
  border: 1px solid rgba(212, 168, 87, 0.28);
}

.account-verify-box[hidden] {
  display: none !important;
}

.account-verify-banner {
  margin: 0;
  color: var(--text-secondary);
  font-size: 13px;
  line-height: 1.45;
}

.account-menu {
  display: grid;
  gap: 6px;
}

.account-menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  border-radius: 11px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
}

html[data-theme="light"] .account-menu-item {
  border-color: rgba(26, 21, 16, 0.1);
  background: rgba(26, 21, 16, 0.03);
}

.account-menu-item:hover {
  border-color: rgba(212, 168, 87, 0.4);
  background: rgba(212, 168, 87, 0.1);
}

.account-menu-item.is-open {
  border-color: rgba(212, 168, 87, 0.45);
  background: rgba(212, 168, 87, 0.12);
}

.account-menu-chevron {
  font-size: 18px;
  line-height: 1;
  color: var(--text-muted);
  transition: transform 0.18s ease;
}

.account-menu-item.is-open .account-menu-chevron {
  transform: rotate(90deg);
  color: var(--gold);
}

.account-menu-danger {
  color: #c45c5c;
}

.account-menu-danger:hover {
  border-color: rgba(196, 92, 92, 0.35);
  background: rgba(196, 92, 92, 0.08);
}

.account-change-wrap {
  padding: 2px 0 4px;
}

.account-change-wrap[hidden] {
  display: none !important;
}

.account-change {
  margin: 0;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.12);
}

html[data-theme="light"] .account-change {
  border-color: rgba(26, 21, 16, 0.08);
  background: rgba(26, 21, 16, 0.03);
}



