/* ============================================================
   iPhone 17 Pro Max frame + in-app demo UI (LIGHT app theme)
   ============================================================ */

.phone {
  --pw: 300px;
  width: var(--pw);
  aspect-ratio: 1320 / 2868;
  position: relative;
  border-radius: 56px;
  padding: 11px;
  background:
    linear-gradient(135deg, #4a4a52 0%, #1c1c20 22%, #2e2e34 50%, #16161a 78%, #3a3a40 100%);
  box-shadow:
    0 2px 2px rgba(255,255,255,0.18) inset,
    0 -2px 2px rgba(0,0,0,0.4) inset,
    var(--shadow-phone);
}
.phone::before { /* titanium side rails */
  content: ''; position: absolute; inset: 3px; border-radius: 53px;
  background: linear-gradient(135deg, rgba(255,255,255,0.16), transparent 30%, transparent 70%, rgba(255,255,255,0.1));
  pointer-events: none; z-index: 3;
}
.phone-screen {
  position: relative; width: 100%; height: 100%; border-radius: 46px; overflow: hidden;
  background: #FFFFFF; display: flex; flex-direction: column; color: var(--text);
  /* explicit light tokens so it never depends on the page theme */
  --text: #16121F; --text-2: #565070; --text-3: #8C87A0;
  --surface: #FFFFFF; --surface-2: #F4F2FB; --surface-3: #ECE9F7; --bg-2: #FFFFFF;
  --hairline: rgba(20,16,40,0.09); --hairline-2: rgba(20,16,40,0.15);
  --violet: #6B5BFF; --cyan: #0FA9CE; --emerald: #10A969; --amber: #E08A1E;
}
/* full-screen real screenshot — contain so no in-app UI is cropped at the edges
   (screenshots vary in aspect ratio; white letterbox blends with the white screen bg) */
.phone-shot { width: 100%; height: 100%; object-fit: contain; object-position: top center; background: #FFFFFF; display: block; }

/* Dynamic Island */
.dynamic-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 32%; height: 26px; background: #000; border-radius: 999px; z-index: 20;
}
/* Status bar */
.status-bar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 13px 24px 6px; font-size: 11px; font-weight: 600; color: var(--text);
  font-family: var(--font-ui); z-index: 15; position: relative;
}
.status-bar .sb-right { display: flex; align-items: center; gap: 5px; }
.status-bar svg { width: 15px; height: 11px; }

.phone-glow {
  position: absolute; inset: -8% -14%; z-index: -1; pointer-events: none;
  background: radial-gradient(50% 42% at 50% 28%, rgba(162,75,255,0.28), transparent 70%);
  filter: blur(34px);
}
.phone-wrap { position: relative; display: inline-block; }

/* floating tilt */
.phone-float { animation: phoneFloat 7s ease-in-out infinite; }
@keyframes phoneFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ============================================================
   In-app: PlugAI chat surface
   ============================================================ */
.app {
  flex: 1; display: flex; flex-direction: column; overflow: hidden;
  font-family: var(--font-ui); min-height: 0;
}
.app-header {
  display: flex; align-items: center; gap: 9px; padding: 4px 18px 12px;
  border-bottom: 1px solid var(--hairline);
}
.app-header .pa-orb { width: 28px; height: 28px; border-radius: 50%; background: var(--plug-grad); display: grid; place-items: center; box-shadow: 0 0 16px -2px rgba(199,125,255,0.6); }
.app-header .pa-orb img { width: 20px; height: 20px; }
.app-header .ti { font-weight: 600; font-size: 14px; color: var(--text); }
.app-header .ti small { display: block; font-size: 9.5px; color: var(--cyan); font-weight: 500; letter-spacing: 0.02em; }
.app-header .hdr-ic { margin-left: auto; color: var(--text-3); display: flex; gap: 14px; }
.app-header .hdr-ic svg { width: 16px; height: 16px; }

.chat { flex: 1; overflow: hidden; padding: 14px 16px 8px; display: flex; flex-direction: column; gap: 11px; background: var(--surface-2); }

.msg { max-width: 84%; font-size: 12.5px; line-height: 1.45; transform: translateY(10px); }
.msg.show { transform: none; transition: transform 0.4s; }
.msg.user { align-self: flex-end; background: var(--violet-cyan); color: #fff; padding: 9px 13px; border-radius: 16px 16px 4px 16px; font-weight: 500; box-shadow: 0 4px 14px -4px rgba(107,91,255,0.4); }
.msg.ai { align-self: flex-start; width: 100%; max-width: 100%; }

/* thinking trace */
.trace { display: flex; flex-direction: column; gap: 0; padding: 11px 13px; background: var(--surface); border: 1px solid var(--hairline); border-radius: 14px; box-shadow: 0 4px 14px -8px rgba(20,16,40,0.18); }
.trace-head { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-2); font-weight: 600; margin-bottom: 8px; }
.trace-head .tlabel { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.trace-head .spark { width: 14px; height: 14px; color: var(--purple); animation: spin 2.4s linear infinite; flex-shrink: 0; }
.trace-head.done .spark { animation: none; color: var(--emerald); }
@keyframes spin { to { transform: rotate(360deg); } }
.trace-step {
  display: flex; align-items: center; gap: 9px; font-size: 11px; color: var(--text-3);
  padding: 0 0; transform: translateX(-6px); height: 0; overflow: hidden;
  transition: transform 0.35s;
}
.trace-step.show { transform: none; height: auto; padding: 4px 0; }
.trace-step > span:last-child { min-width: 0; line-height: 1.3; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.trace-step .tick { width: 14px; height: 14px; border-radius: 50%; border: 1.5px solid var(--text-3); flex-shrink: 0; display: grid; place-items: center; transition: 0.3s; }
.trace-step.active { color: var(--text-2); }
.trace-step.active .tick { border-color: var(--purple); box-shadow: 0 0 10px -1px var(--purple); }
.trace-step.active .tick::after { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--purple); animation: pulse 0.9s ease-in-out infinite; }
.trace-step.complete { color: var(--text-2); }
.trace-step.complete .tick { border-color: var(--emerald); background: var(--emerald); }
.trace-step.complete .tick svg { width: 9px; height: 9px; color: #fff; }
@keyframes pulse { 0%,100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.5); opacity: 0.6; } }

/* chord chart result card */
.chord-card { border: 1px solid var(--hairline); border-radius: 16px; overflow: hidden; background: var(--surface); box-shadow: 0 6px 18px -10px rgba(20,16,40,0.2); }
.chord-card-top { padding: 11px 14px; border-bottom: 1px solid var(--hairline); display: flex; align-items: center; gap: 10px; }
.chord-card-top .ico { width: 30px; height: 30px; border-radius: 9px; background: linear-gradient(135deg, var(--feat-songs-a), var(--feat-songs-b)); display: grid; place-items: center; flex-shrink: 0; }
.chord-card-top .ico svg { width: 16px; height: 16px; color: #fff; }
.chord-card-top .nm { font-weight: 600; font-size: 13px; line-height: 1.2; color: var(--text); }
.chord-card-top .ar { font-size: 10.5px; color: var(--text-3); }
.chord-card-top .key { margin-left: auto; font-family: var(--font-mono); font-size: 10px; color: var(--cyan); border: 1px solid rgba(15,169,206,0.35); padding: 3px 7px; border-radius: 7px; white-space: nowrap; flex-shrink: 0; }

.lyric-lines { padding: 12px 14px; display: flex; flex-direction: column; gap: 9px; }
.lyric-row { font-size: 11.5px; }
.lyric-row .chords { font-family: var(--font-mono); font-size: 11px; font-weight: 700; color: var(--violet); letter-spacing: 0.02em; display: flex; gap: 18px; margin-bottom: 1px; }
.lyric-row .words { color: var(--text-2); }
.lyric-row.reveal-line { transform: translateY(6px); }
.lyric-row.reveal-line.show { transform: none; transition: transform 0.4s; }

.chord-actions { display: flex; gap: 8px; padding: 0 14px 13px; }
.chord-actions button { flex: 1; font-size: 11px; font-weight: 600; padding: 9px; border-radius: 10px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.chord-actions svg { width: 13px; height: 13px; }
.act-save { background: var(--plug-grad); color: #1a0b2e; }
.act-save.saved { background: rgba(16,169,105,0.14); color: var(--emerald); border: 1px solid rgba(16,169,105,0.4); }
.act-play { background: var(--surface-2); color: var(--text); border: 1px solid var(--hairline-2); }

/* input bar */
.app-input { padding: 9px 14px 16px; border-top: 1px solid var(--hairline); display: flex; align-items: center; gap: 9px; background: var(--surface); }
.app-input .field { flex: 1; background: var(--surface-2); border: 1px solid var(--hairline); border-radius: var(--r-pill); padding: 9px 14px; font-size: 11.5px; color: var(--text-3); display: flex; align-items: center; }
.app-input .send { width: 34px; height: 34px; border-radius: 50%; background: var(--plug-grad); display: grid; place-items: center; flex-shrink: 0; }
.app-input .send svg { width: 16px; height: 16px; color: #1a0b2e; }
.caret { display: inline-block; width: 1.5px; height: 13px; background: var(--cyan); margin-left: 1px; animation: blink 1s step-end infinite; vertical-align: middle; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================================
   In-app: Tuner demo
   ============================================================ */
.tuner { flex: 1; display: flex; flex-direction: column; align-items: center; padding: 20px 16px; background: var(--surface); }
.tuner .tu-note { font-family: var(--font-mono); font-size: 64px; font-weight: 700; line-height: 1; margin-top: 18px; transition: color 0.4s; color: var(--text); }
.tuner .tu-note.lock { color: var(--emerald); text-shadow: 0 0 30px rgba(16,169,105,0.4); }
.tuner .tu-freq { font-family: var(--font-mono); font-size: 14px; color: var(--text-2); margin-top: 10px; }
.tuner .tu-cents { font-family: var(--font-mono); font-size: 12px; margin-top: 4px; transition: color 0.4s; color: var(--amber); }
.tuner .tu-cents.lock { color: var(--emerald); }
.tuner-meter { width: 100%; height: 76px; margin-top: 26px; position: relative; }
.tuner-meter .scale { position: absolute; top: 50%; left: 0; right: 0; height: 2px; background: var(--hairline-2); }
.tuner-meter .lockzone { position: absolute; top: calc(50% - 22px); left: calc(50% - 16px); width: 32px; height: 44px; border-radius: 8px; background: rgba(16,169,105,0.1); border: 1px solid rgba(16,169,105,0.3); }
.tuner-meter .needle { position: absolute; top: calc(50% - 28px); left: 50%; width: 3px; height: 56px; border-radius: 3px; background: var(--cyan); box-shadow: 0 0 14px var(--cyan); transition: transform 0.5s cubic-bezier(0.34,1.4,0.6,1), background 0.4s, box-shadow 0.4s; transform: translateX(-50%); }
.tuner-meter .needle.lock { background: var(--emerald); box-shadow: 0 0 18px var(--emerald); }
.tuner-strings { display: flex; gap: 7px; margin-top: 30px; }
.tuner-strings .st { width: 30px; height: 30px; border-radius: 9px; border: 1px solid var(--hairline-2); display: grid; place-items: center; font-family: var(--font-mono); font-size: 11px; color: var(--text-3); transition: 0.3s; }
.tuner-strings .st.active { border-color: var(--violet); color: var(--violet); box-shadow: 0 0 14px -3px var(--violet); }
.tuner-strings .st.done { border-color: var(--emerald); color: var(--emerald); }

/* ============================================================
   In-app: generic screenshot panes (Player/Stems, Live stage)
   ============================================================ */
.app-shot { flex: 1; display: flex; flex-direction: column; padding: 6px 0 0; overflow: hidden; background: var(--surface); }
.stems-head { padding: 10px 18px 2px; font-weight: 600; font-size: 14px; color: var(--text); }
.stems-sub { padding: 0 18px 8px; font-size: 10px; color: var(--text-3); }
.stems { padding: 10px 16px; display: flex; flex-direction: column; gap: 11px; background: var(--surface); flex: 1; }
.stem-row { display: flex; align-items: center; gap: 9px; }
.stem-row .sdot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.stem-row .sname { font-size: 11px; width: 50px; color: var(--text-2); }
.stem-row .swave { flex: 1; height: 20px; border-radius: 5px; overflow: hidden; display: flex; align-items: center; gap: 1.5px; }
.stem-row .swave i { flex: 1; border-radius: 1px; opacity: 0.85; }

.live-stage { flex: 1; display: flex; flex-direction: column; padding: 16px 18px; background: var(--surface); }
.live-stage .ls-meta { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-3); font-family: var(--font-mono); }
.live-stage .ls-song { margin-top: 12px; font-weight: 700; font-size: 17px; color: var(--text); }
.live-stage .ls-artist { font-size: 11px; color: var(--text-3); }
.live-stage .ls-chords { display: flex; gap: 16px; margin-top: 22px; font-family: var(--font-mono); font-weight: 700; }
.live-stage .ls-chords span { font-size: 28px; color: var(--text-3); }
.live-stage .ls-chords span.cur { color: var(--violet); }
.live-stage .ls-bar { height: 3px; border-radius: 3px; background: var(--hairline-2); margin-top: 14px; position: relative; }
.live-stage .ls-bar::after { content: ''; position: absolute; left: 0; top: -2.5px; width: 38%; height: 8px; border-radius: 4px; background: var(--violet); box-shadow: 0 0 12px rgba(107,91,255,0.5); }
.live-stage .ls-lyrics { margin-top: 22px; display: flex; flex-direction: column; gap: 10px; }
.live-stage .ls-lyrics .l { font-size: 13px; color: var(--text-3); }
.live-stage .ls-lyrics .l.cur { color: var(--text); font-weight: 600; }

/* ============================================================
   In-app: Animated home dashboard (hero)
   ============================================================ */
.dash { flex: 1; display: flex; flex-direction: column; min-height: 0; background: #fff; font-family: var(--font-ui); }
.dash-head { display: flex; align-items: center; gap: 8px; padding: 32px 15px 9px; flex-shrink: 0; }
.dash-head .dlogo { width: 23px; height: 23px; }
.dash-head .greet { font-weight: 700; font-size: 13px; color: var(--text); white-space: nowrap; }
.dash-head .sp { flex: 1; }
.dash-head .lv { font-size: 9.5px; font-weight: 600; color: var(--text-2); background: var(--surface-2); border: 1px solid var(--hairline); padding: 3px 8px; border-radius: 999px; white-space: nowrap; }
.dash-head .av { width: 25px; height: 25px; border-radius: 50%; background: linear-gradient(135deg,#5B8DEF,#22D3EE); color: #fff; font-size: 11px; font-weight: 700; display: grid; place-items: center; flex-shrink: 0; }

.dash-body { flex: 1; overflow: hidden; padding: 0 13px; display: flex; flex-direction: column; gap: 9px; min-height: 0; }

/* carousel */
.dcar { position: relative; height: 130px; flex-shrink: 0; }
.dslide { position: absolute; inset: 0; border-radius: 16px; padding: 13px 15px; overflow: hidden; opacity: 0; transition: opacity 0.6s; display: flex; flex-direction: column; }
.dslide.on { opacity: 1; }
.dslide .tag { font-size: 8.5px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.9); background: rgba(255,255,255,0.22); padding: 3px 9px; border-radius: 999px; align-self: flex-start; }
.dslide h5 { color: #fff; font-size: 17px; font-family: var(--font-display); font-weight: 600; line-height: 1.04; margin-top: 9px; max-width: 64%; }
.dslide p { color: rgba(255,255,255,0.9); font-size: 9.5px; margin-top: 3px; max-width: 58%; line-height: 1.3; }
.dslide .cta { font-size: 10px; font-weight: 600; color: #fff; background: rgba(255,255,255,0.24); padding: 5px 12px; border-radius: 999px; align-self: flex-start; margin-top: auto; }
.dslide .lot { position: absolute; right: 6px; bottom: 4px; width: 96px; height: 96px; }
.dslide.s1 { background: linear-gradient(135deg,#F6A05B,#EE7B4D); }
.dslide.s2 { background: linear-gradient(135deg,#2DB9AA,#1E9AB0); }
.dslide.s3 { background: linear-gradient(135deg,#7C6BF0,#5B8DEF); }

.dcar-dots { display: flex; gap: 5px; justify-content: center; flex-shrink: 0; }
.dcar-dots i { width: 5px; height: 5px; border-radius: 50%; background: var(--hairline-2); transition: 0.3s; }
.dcar-dots i.on { background: var(--violet); width: 15px; border-radius: 3px; }

/* practise · play · perform */
.ppp { display: flex; align-items: center; gap: 8px; border: 1px solid var(--hairline); border-left: 3px solid var(--violet); border-radius: 14px; padding: 10px 12px; background: linear-gradient(110deg, rgba(107,91,255,0.06), rgba(34,211,238,0.04)); flex-shrink: 0; position: relative; overflow: hidden; }
.ppp .ppt { font-size: 8px; font-weight: 700; letter-spacing: 0.1em; color: var(--violet); }
.ppp h5 { font-size: 15px; font-weight: 700; color: var(--text); margin-top: 3px; }
.ppp .sub { font-size: 9.5px; color: var(--text-3); margin-top: 1px; }
.ppp .lot { width: 58px; height: 58px; margin-left: auto; flex-shrink: 0; }
.ppp .chev { color: var(--text-3); font-size: 16px; margin-left: 2px; }

/* challenge */
.dchal { border-radius: 14px; padding: 11px 14px; background: linear-gradient(110deg,#10B6A6,#0E9FC0); flex-shrink: 0; overflow: hidden; }
.dchal .ct { font-size: 9px; font-weight: 700; letter-spacing: 0.08em; color: rgba(255,255,255,0.92); }
.dchal h5 { color: #fff; font-size: 14px; font-weight: 700; margin-top: 2px; }
.dchal .xp { float: right; font-size: 9px; color: #fff; background: rgba(255,255,255,0.22); padding: 3px 8px; border-radius: 999px; }

/* plan */
.dplan { border-radius: 14px; padding: 12px 14px; background: linear-gradient(135deg,#2D1B69,#3A2483); flex-shrink: 0; }
.dplan .pills { display: flex; gap: 6px; }
.dplan .pill2 { font-size: 8px; font-weight: 700; color: #fff; background: rgba(255,255,255,0.16); padding: 3px 8px; border-radius: 999px; }
.dplan .pill2.xp { background: rgba(245,158,11,0.25); color: #FCD34D; }
.dplan h5 { color: #fff; font-size: 12.5px; font-weight: 700; margin-top: 8px; line-height: 1.2; }
.dplan .seg { font-size: 9px; color: rgba(255,255,255,0.6); margin-top: 6px; }
.dplan .dots { display: flex; gap: 4px; margin-top: 6px; }
.dplan .dots i { flex: 1; height: 3px; border-radius: 2px; background: rgba(255,255,255,0.22); transition: background 0.4s; }
.dplan .dots i.f { background: #fff; }
.dplan .start { display: inline-flex; align-items: center; gap: 5px; margin-top: 9px; background: #fff; color: #2D1B69; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 999px; }
.dplan .start svg { width: 10px; height: 10px; }

/* stats */
.dstats { display: flex; gap: 7px; flex-shrink: 0; }
.dstats .cell { flex: 1; border: 1px solid var(--hairline); border-radius: 12px; padding: 8px 4px; text-align: center; background: var(--surface); }
.dstats .v { font-weight: 700; font-size: 15px; font-family: var(--font-mono); }
.dstats .l { font-size: 8px; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-top: 1px; }

/* tab bar */
.dtab { display: flex; align-items: flex-end; justify-content: space-between; padding: 7px 18px 9px; border-top: 1px solid var(--hairline); flex-shrink: 0; background: #fff; overflow: visible; position: relative; }
.dtab .ti2 { display: flex; flex-direction: column; align-items: center; gap: 3px; font-size: 8px; color: var(--text-3); font-weight: 500; }
.dtab .ti2.on { color: var(--violet); }
.dtab .ti2 svg { width: 18px; height: 18px; }
.dtab .brain { width: 40px; height: 40px; margin-top: -22px; border-radius: 50%; background: #fff; padding: 3px; box-shadow: 0 -3px 12px rgba(20,16,40,0.12), 0 2px 6px rgba(20,16,40,0.08); }

/* ============================================================
   Grid tile mockups: Daily practice, Chord Lab, Ask PlugAI
   ============================================================ */
.mdash { flex: 1; display: flex; flex-direction: column; background: #fff; }
.mdash .dash-head { padding: 34px 15px 8px; }
.mstats { display: flex; gap: 7px; padding: 2px 15px 12px; }
.mstats .cell { flex: 1; border: 1px solid var(--hairline); border-radius: 12px; padding: 9px 4px; text-align: center; }
.mstats .v { font-weight: 700; font-size: 16px; font-family: var(--font-mono); }
.mstats .l { font-size: 7.5px; letter-spacing: 0.1em; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.mpil { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; padding: 2px 15px; }
.mpil .p { border: 1px solid; border-radius: 15px; padding: 12px; min-height: 84px; }
.mpil .p .pi { width: 31px; height: 31px; border-radius: 9px; display: grid; place-items: center; }
.mpil .p .pi svg { width: 16px; height: 16px; }
.mpil .p .pn { font-weight: 700; font-size: 13px; color: var(--text); margin-top: 9px; }
.mpil .p .ps { font-size: 9.5px; color: var(--text-3); margin-top: 1px; }
.mpil .chords { background: rgba(15,169,206,0.07); border-color: rgba(15,169,206,0.25); } .mpil .chords .pi { background: rgba(15,169,206,0.16); color: #0FA9CE; }
.mpil .rhythm { background: rgba(240,138,30,0.07); border-color: rgba(240,138,30,0.25); } .mpil .rhythm .pi { background: rgba(240,138,30,0.16); color: #F08A1E; }
.mpil .ear { background: rgba(139,92,246,0.07); border-color: rgba(139,92,246,0.25); } .mpil .ear .pi { background: rgba(139,92,246,0.16); color: #8B5CF6; }
.mpil .melody { background: rgba(240,70,140,0.07); border-color: rgba(240,70,140,0.25); } .mpil .melody .pi { background: rgba(240,70,140,0.16); color: #F0468C; }

.clab { flex: 1; background: #fff; padding: 34px 16px 0; display: flex; flex-direction: column; gap: 11px; }
.clab .ct { font-weight: 700; font-size: 16px; color: var(--text); }
.clab .ct small { display: block; font-size: 9.5px; color: var(--text-3); font-weight: 500; margin-top: 1px; }
.clab .ccard { border: 1px solid var(--hairline); border-radius: 14px; padding: 11px 13px; }
.clab .ccard .cn { font-weight: 700; font-size: 14px; color: var(--text); }
.clab .ccard .cs { font-size: 9.5px; color: var(--text-3); }
.clab .seg2 { display: flex; gap: 4px; margin-top: 9px; background: var(--surface-2); border-radius: 10px; padding: 3px; }
.clab .seg2 span { flex: 1; text-align: center; font-size: 10.5px; font-weight: 600; padding: 7px; border-radius: 8px; color: var(--text-2); }
.clab .seg2 span.on { background: #15121F; color: #fff; }
.clab .slabel { font-size: 12px; font-weight: 700; color: var(--text); }
.clab .chips { display: flex; gap: 6px; overflow: hidden; }
.clab .chips span { font-size: 11px; padding: 7px 11px; border-radius: 999px; border: 1px solid var(--hairline-2); color: var(--text-2); flex-shrink: 0; }
.clab .chips span.on { background: var(--violet); color: #fff; border-color: var(--violet); }
.clab .degs { display: flex; justify-content: space-between; border: 1px solid var(--hairline); border-radius: 12px; padding: 10px 12px; }
.clab .degs div { text-align: center; }
.clab .degs .d { font-size: 8px; color: var(--text-3); }
.clab .degs .n { font-weight: 700; font-size: 13px; color: var(--text); font-family: var(--font-mono); margin-top: 2px; }

.pamini { flex: 1; display: flex; flex-direction: column; background: #fff; }
.pamini .pa-hd { display: flex; align-items: center; gap: 9px; padding: 34px 16px 11px; border-bottom: 1px solid var(--hairline); }
.pamini .pa-hd .orb { width: 28px; height: 28px; border-radius: 50%; background: var(--plug-grad); display: grid; place-items: center; flex-shrink: 0; }
.pamini .pa-hd .orb img { width: 20px; height: 20px; }
.pamini .pa-hd .nm { font-weight: 700; font-size: 13.5px; background: var(--plug-grad-text); -webkit-background-clip: text; background-clip: text; color: transparent; }
.pamini .pa-hd .st { display: block; font-size: 9px; color: var(--amber); font-weight: 600; }
.pamini .pa-body { flex: 1; padding: 13px 14px; display: flex; flex-direction: column; gap: 9px; background: var(--surface-2); }
.pamini .ub { align-self: flex-end; background: var(--violet-cyan); color: #fff; font-size: 12px; font-weight: 500; padding: 8px 12px; border-radius: 14px 14px 4px 14px; }
.pamini .acard { background: #fff; border: 1px solid var(--hairline); border-radius: 14px; padding: 11px 13px; box-shadow: 0 4px 14px -8px rgba(20,16,40,0.2); }
.pamini .acard .at { font-weight: 700; font-size: 12.5px; color: var(--text); }
.pamini .acard .aa { font-size: 9.5px; color: var(--text-3); margin-bottom: 9px; }
.pamini .acard .ch { display: flex; gap: 9px; }
.pamini .acard .ch span { font-family: var(--font-mono); font-weight: 700; font-size: 14px; color: var(--violet); }
.pamini .sgg { display: flex; gap: 6px; }
.pamini .sgg span { font-size: 10px; padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--hairline); color: var(--text-2); }
.pamini .pa-in { display: flex; align-items: center; gap: 8px; padding: 9px 14px 14px; border-top: 1px solid var(--hairline); }
.pamini .pa-in .f { flex: 1; background: var(--surface-2); border: 1px solid var(--hairline); border-radius: 999px; padding: 9px 13px; font-size: 11px; color: var(--text-3); }
.pamini .pa-in .s { width: 32px; height: 32px; border-radius: 50%; background: var(--plug-grad); display: grid; place-items: center; flex-shrink: 0; }
.pamini .pa-in .s svg { width: 15px; height: 15px; color: #1a0b2e; }

@media (max-width: 760px) {
  .phone { --pw: 264px; }
}
