/* ================================================================
   YD SERVICES — style.css
   OS Desktop inside a MacBook illustration
================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=DM+Sans:wght@300;400;500;600&family=JetBrains+Mono:wght@400;500&display=swap');

/* ─── TOKENS ─── */
:root {
  --void:   #03030c;
  --ink:    #07071a;
  --panel:  #0d0d24;
  --panel2: #12122e;
  --gold:   #f0b429;
  --gold2:  #ffd166;
  --gold3:  rgba(240,180,41,.12);
  --cyan:   #22d3ee;
  --violet: #8b5cf6;
  --pink:   #f43f5e;
  --green:  #22c55e;
  --orange: #f97316;
  --text:   #f0f4ff;
  --muted:  #7c85a2;
  --soft:   #a8b4cc;
  --b1:     rgba(255,255,255,.06);
  --b2:     rgba(255,255,255,.11);
}

/* ─── RESET ─── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html, body { width: 100%; min-height: 100%; }
body {
  font-family: 'DM Sans', sans-serif;
  background: radial-gradient(ellipse 140% 80% at 50% -10%,
    rgba(240,180,41,.18) 0%, rgba(139,92,246,.12) 40%, transparent 70%),
    linear-gradient(160deg, #03030c 0%, #07071a 50%, #0d0d24 100%);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
  user-select: none;
}
a { text-decoration: none; color: inherit; }

/* ─── CURSOR ─── */
#cx  { position: fixed; width: 12px; height: 12px; border-radius: 50%;
       background: var(--gold); pointer-events: none; z-index: 99999;
       transform: translate(-50%,-50%); mix-blend-mode: difference; }
#cx2 { position: fixed; width: 36px; height: 36px; border-radius: 50%;
       border: 1.5px solid rgba(240,180,41,.55); pointer-events: none; z-index: 99998;
       transform: translate(-50%,-50%);
       transition: left .12s ease, top .12s ease, width .2s, height .2s; }

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar { width: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: rgba(240,180,41,.4); border-radius: 2px; }

/* ─── PAGE LAYOUT ─── */
.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 60px;
  position: relative;
  z-index: 1;
}

/* ─── BACKGROUND CANVAS ─── */
#bgcanvas {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
}

/* ─── FLOATING HEADER (above computer) ─── */
.site-header {
  text-align: center;
  margin-bottom: 28px;
  position: relative; z-index: 2;
}
.site-header h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1;
  color: var(--text);
  text-shadow: 0 0 60px rgba(240,180,41,.25);
}
.site-header h1 b { color: var(--gold); }
.site-header .tagline {
  font-family: 'JetBrains Mono', monospace;
  font-size: .75rem;
  color: rgba(240,180,41,.55);
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-top: 8px;
}
.live-badge {
  display: inline-flex; align-items: center; gap: 7px;
  background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3);
  color: var(--green); padding: 5px 14px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace; font-size: .68rem;
  letter-spacing: .08em; margin-top: 12px;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%;
  background: var(--green); animation: bl 1.8s ease infinite; }
@keyframes bl { 0%,100%{opacity:1;}50%{opacity:.15;} }

/* ════════════════════════════════════
   MACBOOK ILLUSTRATION
════════════════════════════════════ */
.mac-scene {
  position: relative;
  width: min(100%, 1100px);
  z-index: 2;
}

/* ── Screen assembly ── */
.mac-screen-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 63%; /* aspect ratio of screen+bezel */
}
.mac-lid {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, #2a2a3e 0%, #1a1a2e 40%, #141428 100%);
  border-radius: 18px 18px 6px 6px;
  border: 1.5px solid rgba(255,255,255,.12);
  box-shadow:
    0 0 0 1px rgba(0,0,0,.6),
    0 40px 100px rgba(0,0,0,.8),
    0 0 120px rgba(240,180,41,.08),
    0 0 200px rgba(139,92,246,.06),
    inset 0 1px 0 rgba(255,255,255,.1);
}
/* Camera notch */
.mac-camera {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 7px; height: 7px; border-radius: 50%;
  background: #0a0a18;
  box-shadow: 0 0 0 1px rgba(255,255,255,.08);
  z-index: 5;
}
.mac-camera::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 3px; height: 3px; border-radius: 50%;
  background: rgba(34,211,238,.3);
}

/* Screen glass */
.mac-glass {
  position: absolute;
  top: 20px; left: 12px; right: 12px; bottom: 6px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--void);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.06);
}
/* Glass glare */
.mac-glass::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 35%;
  background: linear-gradient(to bottom,
    rgba(255,255,255,.04), rgba(255,255,255,.01) 60%, transparent);
  pointer-events: none; z-index: 100; border-radius: 10px 10px 0 0;
}

/* ── Hinge area ── */
.mac-hinge {
  position: relative;
  height: 14px;
  background: linear-gradient(to bottom, #1e1e32 0%, #141424 100%);
  border-left: 1.5px solid rgba(255,255,255,.08);
  border-right: 1.5px solid rgba(255,255,255,.08);
  box-shadow: 0 2px 8px rgba(0,0,0,.6);
}
.mac-hinge::after {
  content: '';
  position: absolute; bottom: 0; left: 20%; right: 20%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(240,180,41,.2), transparent);
}

/* ── Keyboard base ── */
.mac-base {
  background: linear-gradient(160deg, #222236 0%, #181828 60%, #141428 100%);
  border-radius: 0 0 16px 16px;
  border: 1.5px solid rgba(255,255,255,.1);
  border-top: none;
  box-shadow:
    0 20px 60px rgba(0,0,0,.8),
    0 0 60px rgba(240,180,41,.05),
    inset 0 -1px 0 rgba(255,255,255,.06);
  padding: 14px 20px 12px;
  position: relative;
}
/* Keyboard texture rows */
.mac-keys {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 10px;
}
.mac-key-row {
  display: flex; gap: 3px;
}
.mac-key {
  flex: 1; height: 8px; border-radius: 2px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.04);
}
.mac-key.wide  { flex: 2; }
.mac-key.space { flex: 6; }
.mac-key.xwide { flex: 2.5; }

/* Trackpad */
.mac-trackpad {
  width: 26%; height: 52px;
  margin: 0 auto;
  background: rgba(255,255,255,.04);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}

/* ── Stand shadow ── */
.mac-shadow {
  width: 60%; height: 14px; margin: 0 auto;
  background: radial-gradient(ellipse 80% 100% at 50% 0%,
    rgba(0,0,0,.7), transparent);
}

/* ════════════════════════════════════
   DESKTOP INSIDE THE SCREEN
════════════════════════════════════ */
#desktop {
  width: 100%; height: 100%;
  position: relative;
  background:
    radial-gradient(ellipse 120% 80% at 75% 20%, rgba(240,180,41,.14), transparent 50%),
    radial-gradient(ellipse 80% 100% at 25% 80%, rgba(139,92,246,.1), transparent 50%),
    radial-gradient(ellipse 60% 60% at 50% 50%, rgba(34,211,238,.05), transparent 60%),
    linear-gradient(145deg, #03030e 0%, #07071a 40%, #0a0a22 100%);
  overflow: hidden;
}

/* Wallpaper city silhouette */
#desktop::after {
  content: '';
  position: absolute; bottom: 32px; left: 0; right: 0; height: 100px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 100'%3E%3Cpath d='M0 100V60l20-8V38h14v14l18-6V30h12v18l22-10V20h10v30l16-8V18h18v32l14-6V10h12v50l20-14V15h10v45l24-12V40h8v50l18-8V36h14v50l12-4V28h16v56l20-10V44h10v50l14-6V32h18v62H0z' fill='rgba(20,20,50,.7)'/%3E%3C/svg%3E")
    bottom/cover no-repeat;
  pointer-events: none; z-index: 1;
}

/* Animated nebula */
.desk-nebula {
  position: absolute; border-radius: 50%; pointer-events: none; z-index: 0;
}
.dn1 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(240,180,41,.15), transparent 70%);
  top: -100px; right: -80px;
  animation: dnFloat 9s ease-in-out infinite;
}
.dn2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(139,92,246,.12), transparent 70%);
  bottom: 20px; left: -60px;
  animation: dnFloat 12s ease-in-out infinite reverse;
}
.dn3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(34,211,238,.08), transparent 70%);
  top: 40%; left: 40%;
  animation: dnFloat 15s ease-in-out infinite;
}
@keyframes dnFloat {
  0%,100% { transform: scale(1) translate(0,0); }
  40%     { transform: scale(1.07) translate(15px,-12px); }
  70%     { transform: scale(.95) translate(-10px,15px); }
}

/* Grid lines on wallpaper */
.desk-grid {
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(240,180,41,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(240,180,41,.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black 10%, transparent 100%);
}

/* ─── DESKTOP BRAND (top center of screen) ─── */
.desk-brand {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  text-align: center; z-index: 10; pointer-events: none;
}
.desk-brand-name {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.9rem, 1.8vw, 1.3rem);
  font-weight: 900; letter-spacing: -.04em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 0 20px rgba(240,180,41,.3);
}
.desk-brand-name b { color: var(--gold); }
.desk-brand-sub {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.45rem, .9vw, .62rem);
  color: rgba(240,180,41,.4);
  letter-spacing: .15em;
  text-transform: uppercase;
}

/* ─── ICONS DOCK ─── */
.icon-dock {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; gap: clamp(8px, 2vw, 20px);
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: clamp(6px, 1.2vw, 10px) clamp(10px, 2vw, 18px);
  box-shadow: 0 8px 40px rgba(0,0,0,.5),
    0 0 0 1px rgba(255,255,255,.04);
  z-index: 50;
}

.app-icon {
  display: flex; flex-direction: column; align-items: center;
  gap: 4px; cursor: none; position: relative;
  transition: transform .2s cubic-bezier(.34,1.56,.64,1);
}
.app-icon:hover { transform: translateY(-10px) scale(1.15); }
.app-icon:active { transform: scale(.92); }

.aico {
  width: clamp(36px, 7vw, 58px);
  height: clamp(36px, 7vw, 58px);
  border-radius: clamp(9px, 1.8vw, 14px);
  display: grid; place-items: center;
  position: relative; overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.2);
  transition: box-shadow .25s;
}
.aico::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 45%;
  background: linear-gradient(to bottom, rgba(255,255,255,.22), transparent);
  border-radius: 14px 14px 0 0;
}
.aico i { font-size: clamp(.9rem, 1.8vw, 1.45rem); position: relative; z-index: 1; }
.app-icon:hover .aico {
  box-shadow: 0 12px 35px rgba(0,0,0,.5),
    0 0 0 1.5px rgba(240,180,41,.5),
    0 0 20px rgba(240,180,41,.2);
}

/* Icon colors */
.ic-gold   { background: linear-gradient(145deg,#c47d0e,#f0b429,#ffd166); }
.ic-cyan   { background: linear-gradient(145deg,#0e7490,#22d3ee,#67e8f9); }
.ic-violet { background: linear-gradient(145deg,#5b21b6,#8b5cf6,#a78bfa); }
.ic-orange { background: linear-gradient(145deg,#c2410c,#f97316,#fb923c); }
.ic-pink   { background: linear-gradient(145deg,#9f1239,#f43f5e,#fb7185); }
.ic-green  { background: linear-gradient(145deg,#15803d,#22c55e,#4ade80); }

.app-icon span {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(.4rem, .85vw, .6rem);
  font-weight: 600;
  color: rgba(255,255,255,.85);
  text-align: center;
  text-shadow: 0 1px 4px rgba(0,0,0,.8);
  max-width: 64px; line-height: 1.2;
  white-space: nowrap;
}

/* Notification badge */
.nbadge {
  position: absolute; top: -3px; right: -3px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #f43f5e; color: #fff;
  font-size: .5rem; font-weight: 700;
  display: grid; place-items: center;
  border: 1.5px solid var(--void);
}
.nbadge.gold { background: var(--gold); color: #03030c; }

/* ─── TASKBAR (inside screen) ─── */
#taskbar {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 32px;
  background: rgba(8,8,20,.88);
  backdrop-filter: blur(24px);
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center;
  padding: 0 12px; gap: 10px; z-index: 100;
}
.tb-logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(.55rem, 1.1vw, .8rem);
  font-weight: 900; letter-spacing: -.03em;
}
.tb-logo b { color: var(--gold); }
.tb-sep { width: 1px; height: 14px; background: rgba(255,255,255,.1); }
.tb-offer {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.42rem, .85vw, .6rem);
  color: rgba(240,180,41,.5); letter-spacing: .06em;
}
.tb-clock {
  margin-left: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.42rem, .85vw, .62rem);
  color: rgba(240,180,41,.7);
}
.tb-wa {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(34,197,94,.15); border: 1px solid rgba(34,197,94,.3);
  color: var(--green); padding: 3px 10px; border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(.4rem, .85vw, .58rem);
  cursor: none; transition: background .2s;
}
.tb-wa:hover { background: rgba(34,197,94,.25); }

/* ─── FLOATING WIDGETS on wallpaper ─── */
.desk-widget {
  position: absolute; z-index: 10;
  background: rgba(12,12,30,.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  padding: 10px 14px;
  pointer-events: none;
}
.w-weather {
  top: 14%; right: 3%;
  min-width: 110px;
}
.w-weather .ww-title {
  font-family: 'JetBrains Mono', monospace;
  font-size: .5rem; color: var(--muted);
  letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 4px;
}
.w-weather .ww-val {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem; font-weight: 900;
  color: var(--gold);
}
.w-weather .ww-sub { font-size: .58rem; color: var(--muted); }

.w-stats {
  top: 14%; left: 3%;
}
.ws-row {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 5px;
}
.ws-row:last-child { margin-bottom: 0; }
.ws-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.ws-label { font-family: 'JetBrains Mono', monospace; font-size: .52rem;
  color: var(--muted); min-width: 55px; }
.ws-bar  { flex: 1; height: 3px; background: rgba(255,255,255,.08); border-radius: 999px; overflow: hidden; }
.ws-fill { height: 100%; border-radius: 999px; }

/* Scanning line on wallpaper */
.desk-scan {
  position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,transparent,rgba(0,229,255,.25),transparent);
  pointer-events: none; z-index: 2;
  animation: deskScan 6s linear infinite;
}
@keyframes deskScan { 0%{top:0;opacity:1;} 90%{opacity:.5;} 100%{top:100%;opacity:0;} }

/* ════════════════════════════════════
   WINDOWS / MODALS
════════════════════════════════════ */
.win-overlay {
  position: fixed; inset: 0; z-index: 5000;
  background: rgba(3,3,14,.6);
  backdrop-filter: blur(14px);
  display: flex; align-items: center; justify-content:center;
  opacity: 0; visibility: hidden;
  transition: opacity .35s ease, visibility .35s ease;
  padding: 20px;
}
.win-overlay.open { opacity: 1; visibility: visible; }

.window {
  width: min(96vw, 860px);
  max-height: 85vh;
  background: linear-gradient(145deg, #0d0d24, #12122e);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 40px 120px rgba(0,0,0,.75),
    0 0 0 1px rgba(255,255,255,.06),
    0 0 80px rgba(var(--wc), .1);
  transform: scale(.93) translateY(18px);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
  display: flex; flex-direction: column;
}
.win-overlay.open .window { transform: scale(1) translateY(0); }

.win-bar {
  height: 42px; background: rgba(0,0,0,.3);
  border-bottom: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 7px; padding: 0 14px;
  flex-shrink: 0;
}
.wd { width: 12px; height: 12px; border-radius: 50%; cursor: none; }
.wd.r { background: #ff5f57; box-shadow: 0 0 7px rgba(255,95,87,.5); }
.wd.y { background: #ffbd2e; box-shadow: 0 0 7px rgba(255,189,46,.5); }
.wd.g { background: #28c840; box-shadow: 0 0 7px rgba(40,200,64,.5); }
.win-title {
  flex: 1; text-align: center;
  font-family: 'JetBrains Mono', monospace; font-size: .72rem;
  color: rgba(255,255,255,.4); margin-left: -60px;
}
.win-x {
  background: none; border: none; cursor: none;
  color: rgba(255,255,255,.3); font-size: .8rem;
  padding: 4px; transition: color .2s;
}
.win-x:hover { color: #ff5f57; }

.win-body {
  overflow-y: auto; flex: 1;
  scrollbar-width: thin;
  scrollbar-color: rgba(240,180,41,.3) transparent;
}
.win-body::-webkit-scrollbar { width: 4px; }
.win-body::-webkit-scrollbar-thumb { background: rgba(240,180,41,.3); border-radius: 2px; }

/* Window content */
.wc { padding: 28px; }
.wc-hero {
  text-align: center; padding: 30px 20px 24px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 24px;
}
.wc-ico {
  width: 60px; height: 60px; border-radius: 16px;
  display: inline-grid; place-items: center;
  font-size: 1.5rem; margin-bottom: 14px;
  box-shadow: 0 8px 28px rgba(0,0,0,.4),
    inset 0 1px 0 rgba(255,255,255,.2);
}
.wc-h {
  font-family: 'Syne', sans-serif; font-size: 1.7rem; font-weight: 900;
  letter-spacing: -.04em; color: #f0f4ff; margin-bottom: 8px;
}
.wc-sub { color: rgba(168,180,208,.8); font-size: .95rem;
  max-width: 480px; margin: 0 auto; }

/* Grids */
.wc-grid {
  display: grid; grid-template-columns: repeat(2,1fr);
  gap: 14px; margin-bottom: 22px;
}
.wc-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 12px; padding: 18px;
  transition: border-color .25s, transform .25s;
}
.wc-card:hover { border-color: rgba(240,180,41,.3); transform: translateY(-3px); }
.wc-card-ico { font-size: 1.25rem; margin-bottom: 9px; display: block; }
.wc-card h4 {
  font-family: 'Syne', sans-serif; font-size: .92rem; font-weight: 800;
  color: #f0f4ff; margin-bottom: 6px;
}
.wc-card p { font-size: .84rem; color: rgba(168,180,208,.8); line-height: 1.65; }

/* Steps */
.wc-steps { display: flex; flex-direction: column; gap: 12px; margin-bottom: 22px; }
.wc-step {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 15px; background: rgba(255,255,255,.03);
  border-radius: 10px; border-left: 3px solid var(--gold);
}
.wc-step-n {
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  color: #03030e; font-family: 'Syne',sans-serif; font-size: .85rem;
  font-weight: 900; display: grid; place-items: center;
}
.wc-step h4 { font-family: 'Syne',sans-serif; font-size: .92rem;
  font-weight: 800; color: #f0f4ff; margin-bottom: 4px; }
.wc-step p { font-size: .84rem; color: rgba(168,180,208,.8); line-height: 1.6; }

/* Price card */
.wc-price {
  background: linear-gradient(145deg,#1c1400,#150e00);
  border: 1px solid rgba(240,180,41,.4); border-radius: 14px;
  padding: 30px; text-align: center;
  box-shadow: 0 0 60px rgba(240,180,41,.1);
  margin-bottom: 18px; position: relative; overflow: hidden;
}
.wc-price::before {
  content: ''; position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle,rgba(240,180,41,.18),transparent 70%);
  pointer-events: none;
}
.wc-price-tag {
  display: inline-block;
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  color: #03030e; padding: 6px 18px; border-radius: 999px;
  font-weight: 800; font-size: .74rem; text-transform: uppercase;
  letter-spacing: .08em; margin-bottom: 16px;
}
.wc-price-n {
  font-family: 'Syne', sans-serif; font-size: 5rem; font-weight: 900;
  background: linear-gradient(135deg,var(--gold),var(--gold2));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  line-height: .88; letter-spacing: -.07em;
  filter: drop-shadow(0 0 22px rgba(240,180,41,.4));
}
.wc-price-n sup { font-size: 2rem; vertical-align: super; }
.wc-price-d {
  color: rgba(240,180,41,.6); font-size: .84rem;
  text-transform: uppercase; letter-spacing: .1em; margin: 10px 0 20px;
}
.wc-price-list {
  display: flex; flex-direction: column; gap: 6px; margin-bottom: 22px;
  list-style: none;
}
.wc-price-list li {
  font-size: .86rem; color: rgba(200,210,240,.8);
  display: flex; align-items: center; gap: 8px;
}
.wc-price-list i { color: var(--gold); font-size: .7rem; }

/* CTA button */
.wc-cta {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px; border-radius: 10px; font-weight: 800; font-size: .98rem;
  width: 100%; cursor: none;
  background: linear-gradient(135deg,#16a34a,#22c55e); color: #fff;
  box-shadow: 0 0 36px rgba(34,197,94,.3);
  transition: transform .2s, box-shadow .25s;
}
.wc-cta:hover { transform: translateY(-3px); box-shadow: 0 0 55px rgba(34,197,94,.55); }

/* Portfolio slides */
.pslide { display: none; }
.pslide.active { display: block; }
.slide-nav {
  display: flex; gap: 7px; justify-content: center; margin-top: 12px;
}
.sdot {
  width: 7px; height: 7px; border-radius: 50%;
  background: rgba(255,255,255,.18); cursor: none; transition: background .2s;
}
.sdot.active { background: var(--gold); box-shadow: 0 0 7px rgba(240,180,41,.5); }

/* Mockup browser inside window */
.wc-mock {
  border-radius: 10px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.09);
  background: #07071a; margin-bottom: 16px;
}
.wm-bar {
  height: 26px; background: rgba(255,255,255,.04);
  display: flex; align-items: center; gap: 5px; padding: 0 10px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.wmd { width: 8px; height: 8px; border-radius: 50%; }
.wm-screen { padding: 14px; display: flex; flex-direction: column; gap: 7px; }
.wm-line { height: 5px; border-radius: 2px; background: rgba(255,255,255,.1); }

/* FAQ inside window */
.wc-faq { display: flex; flex-direction: column; gap: 8px; }
.fq-item {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 9px; overflow: hidden; transition: border-color .25s;
}
.fq-item.open { border-color: rgba(240,180,41,.3); }
.fq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 15px 17px; cursor: none; gap: 12px;
}
.fq-q span { font-weight: 600; color: #f0f4ff; font-size: .88rem; }
.fq-q i { color: var(--gold); font-size: .8rem; transition: transform .3s; flex-shrink: 0; }
.fq-item.open .fq-q i { transform: rotate(45deg); }
.fq-a { height: 0; overflow: hidden; transition: height .3s ease; }
.fq-ai { padding: 0 17px 15px; color: rgba(168,180,208,.8); font-size: .85rem; line-height: 1.75; }

/* ─── INFO BAR below computer ─── */
.info-bar {
  display: flex; flex-wrap: wrap; gap: 16px;
  justify-content: center; align-items: center;
  margin-top: 28px; position: relative; z-index: 2;
}
.info-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px; padding: 8px 18px;
  font-size: .82rem; color: var(--soft);
  transition: border-color .2s, color .2s;
}
.info-chip i { color: var(--gold); font-size: .78rem; }
.info-chip:hover { border-color: rgba(240,180,41,.3); color: var(--text); }
.info-chip.wa {
  background: rgba(34,197,94,.1); border-color: rgba(34,197,94,.3);
  color: var(--green); cursor: none;
}
.info-chip.wa:hover { background: rgba(34,197,94,.18); }

/* ─── WELCOME SCREEN ─── */
#welcome {
  position: fixed; inset: 0; z-index: 10000;
  background: #03030e;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 24px;
  transition: opacity .7s ease, visibility .7s ease;
}
#welcome.gone { opacity: 0; visibility: hidden; pointer-events: none; }
.wl-logo {
  font-family: 'Syne', sans-serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900; letter-spacing: -.06em;
  color: var(--text); animation: wlGlow 2s ease infinite;
}
.wl-logo b { color: var(--gold); text-shadow: 0 0 40px rgba(240,180,41,.6); }
@keyframes wlGlow { 0%,100%{filter:brightness(1);}50%{filter:brightness(1.15);} }
.wl-sub {
  font-family: 'JetBrains Mono', monospace; font-size: .78rem;
  color: rgba(240,180,41,.45); letter-spacing: .2em; text-transform: uppercase;
}
.wl-bar { width: 200px; height: 2px; background: rgba(255,255,255,.06);
  border-radius: 999px; overflow: hidden; }
.wl-fill { height: 100%; width: 0;
  background: linear-gradient(90deg,var(--gold),var(--cyan));
  animation: wlLoad 2.5s ease forwards; }
@keyframes wlLoad { to { width: 100%; } }
.wl-msg {
  font-family: 'JetBrains Mono', monospace; font-size: .66rem;
  color: rgba(255,255,255,.25); letter-spacing: .1em;
}

/* ─── MOBILE ─── */
@media (max-width: 860px) {
  body { cursor: auto; overflow-y: auto; }
  #cx, #cx2 { display: none; }
  .mac-keys, .mac-trackpad { display: none; }
  .mac-base { padding: 8px 14px 10px; }
  .w-weather, .w-stats { display: none; }
  .page { padding: 24px 12px 40px; }
  .aico { width: 40px; height: 40px; border-radius: 10px; }
  .aico i { font-size: .95rem; }
  .icon-dock { gap: 10px; padding: 6px 12px; }
  .wc-grid { grid-template-columns: 1fr; }
  .window { max-height: 88vh; }
}
