/* Rephorm — site styles (v3). Superpower component language, Rephorm tokens. */
@font-face { font-family: "Serif"; src: url("fonts/SourceSerif4-400.woff2") format("woff2"); font-weight: 400; font-display: swap; }
@font-face { font-family: "Serif"; src: url("fonts/SourceSerif4-600.woff2") format("woff2"); font-weight: 600; font-display: swap; }
:root {
  --ink: #111111; --ink-2: #1D1D1F; --orange: #FF6A00; --accent: #E8824F;
  --muted: #6E6E73; --dim: #A1A1A6; --border: #E7E7E7; --surface: #F7F7F7; --bg: #FFFFFF;
  --red: #F04438; --amber: #F5A623; --green: #17B26A; --blue: #2F6FE4;
  --font-head: "Space Grotesk", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --container: 1180px; --nav-h: 64px; --ease: cubic-bezier(.2, .8, .2, 1);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-size: 16px; line-height: 1.5; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 500; letter-spacing: -0.025em; line-height: 1.08; margin: 0; }
p { margin: 0; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }
.h1 { font-size: clamp(42px, 5.4vw, 72px); letter-spacing: -0.03em; line-height: 1.02; }
.h2 { font-size: clamp(30px, 3.4vw, 46px); }
.h3 { font-size: clamp(19px, 1.6vw, 22px); letter-spacing: -0.015em; }
#faq .h2, #cfaq .h2 { font-size: clamp(28px, 2.6vw, 34px); }
#reviews .h2, #creviews .h2, #pain .h2 { font-size: clamp(30px, 3vw, 40px); }
.lead { font-size: clamp(16px, 1.25vw, 18px); color: var(--muted); line-height: 1.5; max-width: 52ch; }
.on-dark .lead { color: rgba(255,255,255,.72); }
.label { font-size: 13px; color: var(--muted); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; padding: 13px 22px; font-family: var(--font-head); font-weight: 500; font-size: 15px; letter-spacing: -0.01em; border: 1px solid transparent; transition: background .15s, color .15s, transform .15s var(--ease), box-shadow .15s var(--ease); white-space: nowrap; }
.btn:active { transform: scale(.985); }
.btn-primary { background: var(--ink); color: #fff; } .btn-primary:hover { background: #2a2a2a; transform: translateY(-1px); box-shadow: 0 10px 24px -12px rgba(0,0,0,.45); }
.btn-orange { background: var(--orange); color: #fff; } .btn-orange:hover { background: #F06300; transform: translateY(-1px); box-shadow: 0 10px 24px -10px rgba(255,106,0,.6); }
.btn-ghost { background: transparent; border-color: var(--border); color: var(--ink); } .btn-ghost:hover { background: var(--surface); }
.on-dark .btn-ghost { border-color: rgba(255,255,255,.22); color: #fff; } .on-dark .btn-ghost:hover { background: rgba(255,255,255,.08); }
.btn-white { background: #fff; color: var(--ink); }
.btn-glass { background: rgba(255,255,255,.16); color: #fff; backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-color: rgba(255,255,255,.14); } .btn-glass:hover { background: rgba(255,255,255,.24); }
.btn-sm { padding: 10px 16px; font-size: 13.5px; }

/* nav */
.nav { position: fixed; inset: 0 0 auto 0; height: var(--nav-h); z-index: 100; background: rgba(255,255,255,.84); backdrop-filter: saturate(180%) blur(14px); -webkit-backdrop-filter: saturate(180%) blur(14px); border-bottom: 1px solid transparent; transition: border-color .3s; }
.nav.solid { border-bottom-color: var(--border); }
.nav-links a.on { color: var(--ink); }
.nav .container { height: 100%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 22px; }
.nav .mode-toggle { order: 3; justify-self: end; } .nav .nav-right { order: 2; }
.brand { display: flex; align-items: center; gap: 9px; font-family: var(--font-head); font-weight: 600; font-size: 18px; letter-spacing: -0.02em; }
.brand img { width: 28px; height: 28px; border-radius: 7px; }
.mode-toggle { display: inline-flex; padding: 3px; border-radius: 999px; background: var(--surface); position: relative; }
.mode-toggle .pill { position: absolute; top: 3px; bottom: 3px; left: 3px; width: 80px; border-radius: 999px; background: var(--ink); transition: transform .3s var(--ease), width .3s var(--ease); }
.mode-toggle button { position: relative; z-index: 1; flex: 1; background: transparent; border: 0; padding: 7px 15px; border-radius: 999px; font-size: 13px; font-weight: 500; color: var(--muted); white-space: nowrap; transition: color .2s; }
.mode-toggle button[aria-selected="true"] { color: #fff; }
.nav-right { display: flex; justify-content: flex-end; align-items: center; gap: 22px; }
.nav-links { display: flex; gap: 20px; font-size: 13.5px; color: var(--muted); white-space: nowrap; }
.nav-links a:hover { color: var(--ink); }
.nav-links[hidden] { display: none; }
@media (max-width: 1100px) { .nav-links { display: none !important; } }
@media (max-width: 720px) { .nav .container { grid-template-columns: auto 1fr auto; gap: 10px; } .brand span { display: none; } .mode-toggle button { padding: 7px 10px; font-size: 12px; } }

.mode-panel { display: none; } .mode-panel.active { display: block; }
.reveal { opacity: 0; transform: translateY(14px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .08s; } .reveal[data-delay="2"] { transition-delay: .16s; } .reveal[data-delay="3"] { transition-delay: .24s; }
.reveal-card { opacity: 0; transform: translateY(14px) scale(.96); transition: opacity .7s var(--ease), transform .8s var(--ease); }
.reveal-card.in { opacity: 1; transform: none; }
.reveal-photo { clip-path: inset(0 0 100% 0 round 16px); transition: clip-path .9s var(--ease); }
.reveal-photo.in { clip-path: inset(0 round 16px); }

.section { padding: clamp(64px, 7vw, 104px) 0; }
.section.tight { padding-top: 56px; padding-bottom: 40px; }
.app-head { margin-top: 64px; }
.section-surface { background: var(--surface); }
.head { max-width: 680px; margin-bottom: clamp(32px, 4vw, 52px); }
.head .lead { margin-top: 14px; }
.head.center { margin-left: auto; margin-right: auto; text-align: center; }
.head.center .lead { margin-left: auto; margin-right: auto; }

/* glass primitives (Superpower) */
.glass { background: rgba(20,20,20,.5); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); color: #fff; border-radius: 8px; box-shadow: 0 2px 2px rgba(0,0,0,.1); }
.plus { width: 30px; height: 30px; border-radius: 4px; background: rgba(255,255,255,.1); display: grid; place-items: center; flex-shrink: 0; transition: transform .3s var(--ease), background .2s; }
.plus svg { width: 20px; height: 20px; }
.num-badge { position: absolute; top: 14px; left: 14px; width: 36px; height: 36px; border-radius: 6px; background: rgba(60,60,60,.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); color: #fff; display: grid; place-items: center; font-size: 15px; z-index: 2; }

/* hero */
.hero { padding: calc(var(--nav-h) + 48px) 0 32px; background: #fff; overflow: hidden; position: relative; }
.hero .container { display: grid; grid-template-columns: 1fr 1fr; grid-template-areas: "copy visual" "actions visual"; align-items: center; column-gap: clamp(24px, 4vw, 64px); row-gap: 0; }
.hero-copy { grid-area: copy; align-self: end; } .hero-actions { grid-area: actions; align-self: start; } .hero-visual { grid-area: visual; }
.hero h1 { max-width: 11ch; }
.hero .lead { margin-top: 20px; font-family: var(--font-head); font-weight: 500; letter-spacing: -0.01em; color: #4A4A4F; }
.hero .ctas { display: flex; gap: 10px; margin-top: 28px; flex-wrap: wrap; }
.hero .sub { margin-top: 16px; font-size: 13px; color: var(--dim); }
.hero .trust { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 14px; font-family: var(--font-head); font-weight: 500; letter-spacing: -0.005em; }
.hero .stars { display: inline-flex; gap: 2px; }
.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 520px; }
.hero-visual video { width: min(560px, 100%); position: relative; z-index: 1; -webkit-mask-image: radial-gradient(ellipse 58% 62% at 50% 50%, #000 58%, transparent 80%); mask-image: radial-gradient(ellipse 58% 62% at 50% 50%, #000 58%, transparent 80%); }
.glow { position: absolute; inset: 0; pointer-events: none; }
.glow span { position: absolute; border-radius: 50%; filter: blur(60px); opacity: .5; will-change: transform; background: radial-gradient(circle, var(--orange) 0%, rgba(232,130,79,.5) 40%, rgba(232,130,79,0) 70%); }
.glow .g1 { width: 420px; height: 420px; left: 6%; top: 18%; animation: g1 18s ease-in-out infinite alternate; }
.glow .g2 { width: 320px; height: 320px; right: 4%; bottom: 8%; animation: g2 22s ease-in-out infinite alternate; opacity: .35; }
@keyframes g1 { to { transform: translate(90px, 70px) scale(1.15); } }
@keyframes g2 { to { transform: translate(-110px, -60px) scale(.85); } }
@media (max-width: 900px) { .hero { padding-top: calc(var(--nav-h) + 32px); padding-bottom: 8px; } .hero .container { grid-template-columns: 1fr; grid-template-areas: "copy" "visual" "actions"; } .hero-copy .lead { display: none; } .hero h1 { max-width: none; text-align: center; font-size: clamp(38px, 11vw, 48px); } .hero-visual { min-height: 0; margin: 6px 0 0; } .hero-visual video { width: min(290px, 78%); } .hero-actions { text-align: center; } .hero-actions .ctas { margin-top: 4px; justify-content: center; } .hero .trust { justify-content: center; margin-top: 14px; } .hero-actions .sub { text-align: center; } .glow .g1 { width: 240px; height: 240px; left: 12%; top: 12%; } .glow .g2 { width: 180px; height: 180px; } }

/* icon strip */
.strip { padding: 28px 0 40px; }
.strip .label { text-align: center; display: block; margin-bottom: 18px; font-family: var(--font-head); font-weight: 500; font-size: 14px; }
.marquee { display: flex; overflow: hidden; padding: 8px 0; -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%); mask-image: linear-gradient(90deg, transparent 0%, #000 22%, #000 78%, transparent 100%); }
.marquee-track { display: flex; gap: 18px; padding-right: 18px; animation: marquee 48s linear infinite; flex-shrink: 0; }
.marquee.reverse .marquee-track { animation-direction: reverse; }
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-100%); } }
.marquee img { width: 52px; height: 52px; border-radius: 13px; box-shadow: 0 1px 2px rgba(0,0,0,.08), 0 0 0 1px rgba(0,0,0,.04); opacity: .5; filter: saturate(.55); transition: opacity .25s var(--ease), filter .25s var(--ease), transform .25s var(--ease); }
.marquee img:hover { opacity: 1; filter: none; transform: translateY(-2px) scale(1.06); }

/* how it works: photo cards */
.hiw { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.hiw .card { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 1/1; background: #111; }
.hiw .card img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.hiw .card:hover img { transform: scale(1.03); }
.hiw .over { position: absolute; left: 14px; right: 14px; bottom: 14px; padding: 12px 14px; font-size: 12.5px; line-height: 1.35; }
.hiw .over .row { display: flex; align-items: center; gap: 10px; }
.hiw .over .ic { width: 34px; height: 34px; border-radius: 8px; background: rgba(255,255,255,.12); display: grid; place-items: center; flex-shrink: 0; overflow: hidden; }
.hiw .over .ic img { width: 34px; height: 34px; }
.hiw .over b { font-weight: 500; display: block; }
.hiw .over small { color: rgba(255,255,255,.65); font-size: 11.5px; }
.hiw .over .tick { margin-left: auto; width: 18px; height: 18px; border-radius: 50%; background: #fff; display: grid; place-items: center; flex-shrink: 0; }
.hiw .over .kv { display: flex; justify-content: space-between; padding: 7px 0; border-top: 1px solid rgba(255,255,255,.14); }
.hiw .over .kv:first-child { border-top: 0; padding-top: 0; }
.hiw .over .kv span:last-child { font-variant-numeric: tabular-nums; }
.hiw .over .sw { display: flex; gap: 6px; margin-top: 10px; }
.hiw .over .sw i { flex: 1; height: 5px; border-radius: 3px; background: rgba(255,255,255,.18); }
.hiw .over .sw i.on { background: var(--orange); }
.hiw .over .diff { display: flex; align-items: center; gap: 8px; margin-top: 8px; padding-top: 8px; border-top: 1px solid rgba(255,255,255,.14); }
.hiw .over .diff s { color: rgba(255,255,255,.5); }
.hiw .over .btn-mini { margin-left: auto; background: #fff; color: #111; border-radius: 999px; padding: 5px 10px; font-size: 11.5px; }
.hiw h3 { margin: 18px 0 8px; }
.hiw p { color: var(--muted); font-size: 15px; }
@media (max-width: 1000px) { .hiw { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hiw { grid-template-columns: 1fr; } }

/* phones */
.phones-wrap { position: relative; }
.phones-sticky { position: sticky; top: calc(var(--nav-h) + 12px); }
.phones-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.dots { display: flex; gap: 6px; } .dots i { width: 6px; height: 6px; border-radius: 3px; background: #D9D9DC; transition: width .3s var(--ease), background .3s; } .dots i.on { width: 20px; background: var(--ink); }
.phones { overflow: hidden; padding: 12px 0 8px; cursor: grab; }
.phones-track { display: flex; gap: 28px; will-change: transform; }
@media (max-width: 999px) {
  .phones-wrap { height: auto !important; } .phones-sticky { position: static; }
  .phones { overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; scroll-padding-inline: calc(50% - 150px); }
  .phones::-webkit-scrollbar { display: none; }
  .phones-track { transform: none !important; padding: 0 calc(50% - 150px); gap: 20px; }
  .phone-item { width: 300px; scroll-snap-align: center; }
  .phone-item .phone { transform: scale(.909); transform-origin: top left; margin-bottom: -65px; }
  .phones-head .tctrl { display: none; }
}
.phone-item { flex: 0 0 auto; scroll-snap-align: start; width: 330px; }
.phone-item .cap { margin-top: 18px; }
.phone-item .cap b { font-family: var(--font-head); font-weight: 500; font-size: 17px; display: block; margin-bottom: 3px; letter-spacing: -0.01em; }
.phone-item .cap p { color: var(--muted); font-size: 14.5px; }
.phone { position: relative; width: 330px; height: 715px; border-radius: 54px; background: #0B0B0B; padding: 11px; box-shadow: 0 30px 60px -30px rgba(0,0,0,.45), inset 0 0 0 1.5px #3A3A3A; }
.phone::after { content: ""; position: absolute; top: 22px; left: 50%; transform: translateX(-50%); width: 100px; height: 28px; border-radius: 999px; background: #000; z-index: 6; }
.screen { position: relative; width: 100%; height: 100%; border-radius: 44px; background: #fff; overflow: hidden; padding: 66px 17px 0; font-size: 12px; }
.screen .ttl { display: flex; justify-content: space-between; align-items: center; font-family: var(--font-head); font-weight: 700; font-size: 20px; letter-spacing: -0.02em; height: 34px; }
.screen .ttl svg { width: 20px; height: 20px; }
.screen .divider { height: 1px; background: var(--border); margin: 10px -17px 0; }
.tabbar { position: absolute; left: 14px; right: 14px; bottom: 16px; height: 64px; display: flex; gap: 8px; z-index: 5; }
.tabbar .pillbar { flex: 1; height: 100%; border-radius: 999px; background: rgba(255,255,255,.96); border: 1px solid var(--border); box-shadow: 0 8px 24px -12px rgba(0,0,0,.35); display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 5px; }
.tabbar .pillbar div { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; height: 52px; border-radius: 999px; font-size: 9px; font-weight: 600; color: #6E6E73; }
.tabbar .pillbar div.on { background: #0A0A0A; color: #fff; }
.tabbar .pillbar svg { width: 17px; height: 17px; }
.tabbar .rbtn { width: 48px; height: 48px; border-radius: 50%; background: #111; align-self: center; display: grid; place-items: center; box-shadow: 0 6px 14px -6px rgba(0,0,0,.5); }
.tabbar .rbtn img { width: 30px; height: 30px; border-radius: 7px; }
.gauge { position: relative; width: 100%; aspect-ratio: 200/128; margin: 2px 0 0; }
.gauge svg { width: 100%; height: 100%; overflow: visible; }
.gauge .track { fill: none; stroke: #E9E9EA; stroke-width: 9; stroke-linecap: round; }
.gauge .arc { fill: none; stroke: url(#gaugeGrad); stroke-width: 9; stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(255,120,0,.35)); }
.gauge .num { position: absolute; left: 0; right: 0; top: 44%; text-align: center; font-family: var(--font-head); font-weight: 700; font-size: 46px; letter-spacing: -0.04em; line-height: 1; color: #5B9E12; }
.gauge .lbl { position: absolute; left: 0; right: 0; top: 86%; text-align: center; font-size: 10px; letter-spacing: .3em; color: #6E6E73; font-weight: 500; }
.gauge .lbl i { display: inline-block; width: 11px; height: 11px; border: 1px solid #A1A1A6; border-radius: 50%; font-size: 8px; line-height: 10px; font-style: normal; letter-spacing: 0; margin-left: 6px; vertical-align: 1px; color: #A1A1A6; }
.acard { background: #F5F5F5; border-radius: 22px; padding: 16px; }
.acard.line { background: #fff; border: 1px solid var(--border); }
.today .top { display: flex; justify-content: space-between; align-items: flex-end; padding-bottom: 12px; border-bottom: 1px solid #E3E3E3; }
.today .top small { display: block; color: #8E8E93; font-size: 10px; text-transform: uppercase; letter-spacing: .06em; font-weight: 500; }
.today .top b { font-family: var(--font-head); font-size: 18px; letter-spacing: -0.02em; display: block; margin-top: 2px; font-weight: 700; }
.today .top span { font-size: 11.5px; font-weight: 600; color: #3A3A3C; }
.today .row { display: flex; justify-content: space-between; align-items: center; padding-top: 12px; gap: 10px; }
.today .row b { font-family: var(--font-head); font-size: 18px; letter-spacing: -0.02em; display: block; line-height: 1.1; font-weight: 700; }
.today .row small { display: block; font-size: 8.5px; font-weight: 700; letter-spacing: .08em; color: #6E6E73; margin-top: 5px; }
.today .row small em { font-style: normal; font-weight: 500; letter-spacing: 0; font-size: 10px; }
.pillbtn { background: #0A0A0A; color: #fff; border: 0; border-radius: 999px; padding: 12px 18px; font-size: 11px; font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.addbtn { margin-top: 12px; width: 100%; border: 0; border-radius: 999px; height: 44px; background: linear-gradient(90deg, #FF6A00, #FF7A1F); color: #fff; font-weight: 700; font-size: 13px; box-shadow: 0 10px 22px -10px rgba(255,106,0,.7); }
.card-title { font-family: var(--font-head); font-weight: 600; font-size: 14px; text-align: center; }
.legend { display: flex; justify-content: center; gap: 12px; font-size: 9.5px; color: #3A3A3C; margin-top: 6px; }
.legend i { display: inline-block; width: 7px; height: 7px; border-radius: 50%; margin-right: 4px; }
.seg { display: inline-flex; padding: 3px; border-radius: 999px; background: #F5F5F5; border: 1px solid var(--border); font-size: 11.5px; font-weight: 600; margin: 10px auto 0; }
.seg button { border: 0; background: transparent; padding: 7px 16px; border-radius: 999px; color: #3A3A3C; }
.seg button.on { background: #0A0A0A; color: #fff; }
.acard.mr { position: relative; overflow: hidden; background-image: linear-gradient(#F0F0F0 1px, transparent 1px), linear-gradient(90deg, #F0F0F0 1px, transparent 1px); background-size: 64px 64px; background-position: -10px 12px; }
.acard.mr::before { content: ""; position: absolute; left: 50%; top: 96px; bottom: 0; border-left: 1px dashed #DCDCDC; pointer-events: none; }
.acard.mr > * { position: relative; }
.mchips { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; margin-top: 10px; }
.mchips span { font-size: 10.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; border: 1px solid; }
.mchips .r { color: #E0433C; border-color: #F6C3C0; background: #FDECEB; } .mchips .a { color: #D98A12; border-color: #F8DCA8; background: #FFF6E5; } .mchips .n { color: #111; border-color: #111; background: #fff; padding: 5px 9px; }
.statboxes { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 12px; }
.statboxes div { border-radius: 18px; padding: 14px 14px 30px; display: flex; justify-content: space-between; align-items: center; font-size: 9.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: #8E8E93; }
.statboxes .sb1 { background: #EEF2FA; } .statboxes .sb2 { background: #EAF6EE; } .statboxes .sb2 span { color: #17B26A; } .statboxes span { font-size: 16px; font-weight: 400; letter-spacing: 0; }
.body-stage { position: relative; height: 300px; margin-top: 2px; }
.body-stage canvas { width: 100% !important; height: 100% !important; }
.body-hint { text-align: center; font-size: 9.5px; color: #8E8E93; margin-top: 2px; }
.sheet { position: absolute; left: 0; right: 0; bottom: 0; background: #fff; border-radius: 30px 30px 0 0; padding: 12px 18px 22px; box-shadow: 0 -20px 40px -20px rgba(0,0,0,.35); transform: translateY(105%); transition: transform .45s var(--ease); z-index: 7; }
.sheet.open { transform: none; }
.sheet .grab { width: 36px; height: 4px; border-radius: 2px; background: #D1D1D6; margin: 0 auto 12px; }
.sheet .x { position: absolute; right: 16px; top: 22px; width: 30px; height: 30px; border-radius: 50%; background: #F5F5F5; display: grid; place-items: center; font-size: 14px; color: #3A3A3C; cursor: pointer; }
.sheet small { font-size: 9px; letter-spacing: .12em; text-transform: uppercase; color: #6E6E73; font-weight: 600; }
.sheet h5 { font-family: var(--font-head); font-size: 26px; margin: 2px 0 8px; letter-spacing: -0.03em; font-weight: 700; }
.sheet .state { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; padding: 5px 10px; border-radius: 999px; }
.sheet .state i { width: 6px; height: 6px; border-radius: 50%; }
.sheet .ring { display: grid; grid-template-columns: 108px 1fr; gap: 14px; align-items: center; margin-top: 14px; }
.sheet .ring svg { width: 108px; height: 108px; transform: rotate(-90deg); }
.sheet .ring circle { fill: none; stroke-width: 10; }
.sheet .ring .t { stroke: #EDEDED; } .sheet .ring .p { stroke-linecap: round; stroke-dasharray: 289; stroke-dashoffset: 289; transition: stroke-dashoffset 1.2s var(--ease); }
.sheet .ring .c { position: relative; }
.sheet .ring .c b { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-size: 30px; letter-spacing: -0.03em; font-weight: 700; }
.sheet .ring .c em { position: absolute; left: 0; right: 0; top: 64%; text-align: center; font-size: 7.5px; letter-spacing: .18em; color: #6E6E73; font-style: normal; font-weight: 600; }
.sheet .ring p { font-size: 10.5px; color: #6E6E73; line-height: 1.4; }
.sheet .ring p b { font-family: var(--font-head); color: #0A0A0A; font-size: 13px; display: block; margin-bottom: 3px; font-weight: 700; }
.sheet .metric { margin-top: 10px; } .sheet .metric .lab { display: flex; justify-content: space-between; font-size: 11px; font-weight: 600; margin-bottom: 4px; }
.bar { height: 8px; border-radius: 999px; background: #EDEDED; overflow: hidden; }
.bar i { display: block; height: 100%; width: 100%; border-radius: 999px; transform: scaleX(0); transform-origin: left; transition: transform 1s var(--ease); }
.range { display: grid; grid-template-columns: repeat(4,1fr); padding: 3px; border-radius: 999px; background: #F5F5F5; font-size: 11px; font-weight: 600; margin: 8px 0 12px; }
.range span { text-align: center; padding: 9px 0; border-radius: 999px; color: #3A3A3C; }
.range span.on { background: #0A0A0A; color: #fff; }
.trend small { font-size: 9px; letter-spacing: .14em; color: #6E6E73; font-weight: 600; }
.trend h4 { font-size: 18px; margin: 3px 0 10px; letter-spacing: -0.02em; font-weight: 700; }
.trend .tabs { display: flex; padding: 3px; background: #F5F5F5; border-radius: 999px; font-size: 10.5px; font-weight: 600; margin-bottom: 6px; }
.trend .tabs span { flex: 1; text-align: center; padding: 7px 0; border-radius: 999px; color: #3A3A3C; }
.trend .tabs span.on { background: #fff; color: var(--orange); box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.chart { width: 100%; height: 122px; }
.chart .grid { stroke: #E9E9EA; stroke-width: 1; }
.chart .ln { fill: none; stroke: var(--orange); stroke-width: 3.5; stroke-linejoin: round; stroke-linecap: round; }
.chart .fl { fill: url(#chartFill); }
.chart .pt { fill: var(--orange); }
.chart .axis { font-size: 8.5px; fill: #6E6E73; font-family: var(--font-body); }
.trend .note { font-size: 10px; color: #6E6E73; margin-top: 6px; line-height: 1.4; }
.balance h4 { font-size: 17px; margin: 3px 0 10px; letter-spacing: -0.02em; font-weight: 700; }
.balance .track { height: 9px; border-radius: 999px; background: linear-gradient(90deg, #2F6FE4, #DCE2EA 50%, #FF6A00); position: relative; margin: 8px 0 8px; }
.balance .track b { position: absolute; top: -5px; left: 66%; width: 4px; height: 19px; border-radius: 2px; background: #FF6A00; transform: translateX(-50%); box-shadow: 0 0 8px rgba(255,106,0,.6); }
.balance .lab { display: flex; justify-content: space-between; font-size: 10.5px; font-weight: 600; }
.balance .lab .bl { color: var(--blue); } .balance .lab .or { color: var(--orange); } .balance .lab .mid { color: #8E8E93; font-size: 8.5px; letter-spacing: .12em; }
.seg2 { display: flex; padding: 3px; border-radius: 999px; background: #F5F5F5; font-size: 12px; font-weight: 600; margin-top: 10px; }
.seg2 span { flex: 1; text-align: center; padding: 10px 0; border-radius: 999px; color: #3A3A3C; }
.seg2 span.on { background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.08); }
.month { text-align: center; margin: 16px 0 10px; }
.month b { font-family: var(--font-head); font-size: 20px; letter-spacing: -0.02em; display: block; font-weight: 700; }
.month small { color: #6E6E73; font-size: 10.5px; }
.cal { display: grid; grid-template-columns: repeat(7, 1fr); gap: 7px 4px; text-align: center; font-size: 10.5px; margin-top: 12px; }
.cal .dow { color: #8E8E93; font-weight: 500; font-size: 10px; }
.cal .day { width: 32px; height: 32px; margin: 0 auto; border-radius: 50%; border: 2px solid #E3E3E3; display: grid; place-items: center; font-weight: 600; position: relative; }
.cal .day.done { border-color: #22C55E; background: #E9F9EF; } .cal .day.plan { border-color: #FFD3B3; background: #FFF4EB; } .cal .day.today { background: #0A0A0A; color: #fff; border-color: #0A0A0A; } .cal .day.dim { opacity: .35; }
.cal .day::after { content: ""; position: absolute; right: -4px; bottom: -4px; width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: #0A0A0A; box-shadow: 0 0 0 1px #E3E3E3; }
.cal .day.done::after { background: #22C55E; } .cal .day.rest::after { display: none; }
.cal .day.pop { animation: pop .45s var(--ease); }
@keyframes pop { 0% { transform: scale(.7); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }
.cal-legend { display: flex; justify-content: center; gap: 10px; font-size: 9px; color: #3A3A3C; margin-top: 12px; }
.cal-legend i { display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 3px; vertical-align: -1px; }
.cnote { background: #FFF6EE; border: 1px solid #FFDCC3; border-radius: 16px; padding: 12px 14px; margin-top: 12px; }
.cnote small { font-size: 8.5px; letter-spacing: .12em; color: var(--orange); font-weight: 700; }
.cnote small em { color: #6E6E73; font-style: normal; letter-spacing: 0; font-weight: 500; }
.cnote b { display: block; font-family: var(--font-head); font-size: 14px; margin: 5px 0 3px; letter-spacing: -0.01em; font-weight: 700; }
.cnote p { font-size: 11px; color: #3A3A3C; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cnote .acts { display: flex; gap: 14px; margin-top: 8px; font-size: 11px; font-weight: 600; color: var(--orange); }
.ask { display: flex; justify-content: space-between; align-items: baseline; margin-top: 16px; }
.ask b { font-family: var(--font-head); font-size: 18px; letter-spacing: -0.02em; font-weight: 700; } .ask span { font-size: 11px; color: #6E6E73; }
.chat { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.msg { max-width: 88%; padding: 10px 14px; border-radius: 18px; font-size: 12px; line-height: 1.45; opacity: 0; transform: translateY(6px); animation: msgin .45s var(--ease) forwards; }
.msg.me { align-self: flex-end; background: #F5F5F5; border-bottom-right-radius: 6px; }
.msg.ai { align-self: flex-start; padding: 2px 0; }
@keyframes msgin { to { opacity: 1; transform: none; } }
.typing { display: inline-flex; gap: 4px; padding: 6px 0; } .typing i { width: 6px; height: 6px; border-radius: 50%; background: #C7C7CC; animation: blink 1.2s infinite; } .typing i:nth-child(2) { animation-delay: .2s; } .typing i:nth-child(3) { animation-delay: .4s; }
@keyframes blink { 0%,80%,100% { opacity: .3; } 40% { opacity: 1; } }
.pupdate { border: 1px solid var(--border); border-radius: 16px; padding: 12px 14px; opacity: 0; animation: msgin .45s var(--ease) forwards; }
.pupdate .hd { display: flex; justify-content: space-between; font-size: 8.5px; letter-spacing: .12em; font-weight: 700; color: var(--orange); }
.pupdate .hd span { color: #6E6E73; letter-spacing: 0; font-weight: 500; font-size: 10px; }
.pupdate b { display: block; font-family: var(--font-head); font-size: 14px; margin: 5px 0 3px; font-weight: 700; }
.pupdate p { font-size: 11px; color: #3A3A3C; }
.pupdate .diff { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 6px; margin: 10px 0; font-size: 12px; font-weight: 700; }
.pupdate .diff small { display: block; font-size: 8.5px; letter-spacing: .1em; color: #6E6E73; font-weight: 600; margin-bottom: 2px; }
.pupdate .diff span { color: #6E6E73; }
.pupdate .acts { display: flex; gap: 8px; }
.pupdate .acts button { border-radius: 999px; padding: 11px 14px; font-size: 12px; font-weight: 600; border: 1px solid var(--border); background: #fff; }
.pupdate .acts .ok { flex: 1; background: var(--orange); color: #fff; border: 0; transition: background .3s; }
.pupdate .acts .ok.done { background: var(--green); }
.cinput { position: absolute; left: 16px; right: 16px; bottom: 16px; height: 50px; border-radius: 999px; border: 1px solid var(--border); background: #fff; display: flex; align-items: center; padding: 0 6px 0 16px; font-size: 12.5px; color: #8E8E93; gap: 10px; z-index: 5; }
.cinput span { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; border-left: 1px solid var(--border); padding-left: 12px; }
.cinput .up { width: 38px; height: 38px; border-radius: 50%; background: #F5F5F5; display: grid; place-items: center; color: #8E8E93; }

/* feature: full-bleed photo + glass rows + numbered nav */
.feature { position: relative; min-height: 660px; color: #fff; overflow: hidden; display: flex; align-items: center; background: #0a0a0a; }
.feature .bg { position: absolute; inset: 0; }
.feature .bg img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; transition: opacity 1s var(--ease); }
.feature .bg img.on { opacity: 1; }
.feature .bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.4) 45%, rgba(0,0,0,.35) 100%); }
.feature .container { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, 460px) 1fr auto; gap: 40px; align-items: center; padding-top: 64px; padding-bottom: 64px; }
.feature h2 { font-size: clamp(30px, 3.2vw, 40px); }
.feature .lead { margin-top: 12px; color: rgba(255,255,255,.88); max-width: 42ch; font-size: 16.5px; }
.feature .rows { margin-top: 40px; display: grid; gap: 8px; max-width: 450px; }
.feature .row { padding: 0; border: 0; text-align: left; overflow: hidden; }
.feature .row .q { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 11px 11px 11px 19px; font-size: 15px; min-height: 52px; cursor: pointer; }
.feature .row .a { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .4s var(--ease); }
.feature .row .a > div { overflow: hidden; }
.feature .row .a p { padding: 0 19px 16px; font-size: 14px; color: rgba(255,255,255,.8); line-height: 1.5; }
.feature .row.open .a { grid-template-rows: 1fr; }
.feature .row.open .plus { transform: rotate(45deg); }
.feature .side { display: grid; gap: 14px; justify-items: end; }
.feature .side button { position: relative; background: none; border: 0; padding: 0 0 0 15px; display: flex; gap: 12px; align-items: baseline; font-size: 16px; color: rgba(255,255,255,.55); border-left: 2px solid rgba(255,255,255,.15); transition: color .2s, border-color .2s; }
.feature .side button::before { content: ""; position: absolute; left: -2px; top: 0; width: 2px; height: 0; background: #fff; }
.feature .side button.on::before { animation: sideprog 8s linear forwards; }
.feature.paused .side button.on::before { animation-play-state: paused; }
@keyframes sideprog { to { height: 100%; } }
@keyframes sideprogx { to { width: 100%; } }
.feature .side button span:last-child { font-size: 15px; color: rgba(255,255,255,.4); font-variant-numeric: tabular-nums; }
.feature .side button.on { color: #fff; }
.feature .side button.on span:last-child { color: #fff; }
.feature .ui { justify-self: center; width: min(380px, 100%); }
.fcard { padding: 16px 18px; font-size: 13px; animation: msgin .5s var(--ease) both; }
.fcard .hd { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; color: rgba(255,255,255,.7); font-size: 12px; }
.fcard .hd b { color: #fff; font-weight: 500; font-size: 14px; }
.fcard .met { margin-top: 10px; } .fcard .met .lab { display: flex; justify-content: space-between; margin-bottom: 5px; }
.fcard .bar { background: rgba(255,255,255,.14); height: 6px; }
.fcard .big { font-family: var(--font-head); font-size: 30px; letter-spacing: -0.03em; line-height: 1; }
.fcard .big small { font-size: 13px; color: rgba(255,255,255,.65); margin-left: 6px; letter-spacing: 0; font-family: var(--font-body); }
.fcard .kv { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-top: 12px; }
.fcard .kv div { background: rgba(255,255,255,.08); border-radius: 8px; padding: 8px 10px; } .fcard .kv small { display: block; color: rgba(255,255,255,.6); font-size: 11px; } .fcard .kv b { font-weight: 500; font-size: 15px; }
.fcard .spark { width: 100%; height: 56px; margin-top: 6px; } .fcard .spark path { fill: none; stroke: var(--orange); stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.fcard .diff { display: grid; grid-template-columns: 1fr auto 1fr; gap: 8px; align-items: center; padding: 10px 0; border-top: 1px solid rgba(255,255,255,.12); }
.fcard .diff small { display: block; color: rgba(255,255,255,.55); font-size: 11px; margin-bottom: 2px; } .fcard .diff span { color: rgba(255,255,255,.5); }
.fcard .acts { display: flex; gap: 8px; margin-top: 12px; }
.fcard .acts button { flex: 1; border-radius: 999px; padding: 9px; font-size: 12.5px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; }
.fcard .acts .ok { background: #fff; color: #111; border-color: #fff; transition: background .3s, color .3s; } .fcard .acts .ok.done { background: var(--green); border-color: var(--green); color: #fff; }
.fcard .chips { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 6px; } .fcard .chips span { font-size: 11.5px; padding: 4px 8px; border-radius: 999px; background: rgba(255,255,255,.1); }
.fcard .note { margin-top: 12px; padding-top: 10px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
@media (max-width: 1000px) {
  .feature { min-height: 0; }
  .feature .container { grid-template-columns: 1fr; gap: 22px; padding-top: 48px; padding-bottom: 48px; }
  .feature .side { order: -1; display: flex; gap: 18px; overflow-x: auto; scrollbar-width: none; justify-items: start; padding-bottom: 2px; }
  .feature .side::-webkit-scrollbar { display: none; }
  .feature .side button { flex: 0 0 auto; padding: 0 0 8px; border-left: 0; border-bottom: 2px solid rgba(255,255,255,.15); font-size: 14px; gap: 8px; }
  .feature .side button::before { left: 0; top: auto; bottom: -2px; height: 2px; width: 0; }
  .feature .side button.on::before { animation-name: sideprogx; }
  .feature .side button span:last-child { font-size: 12px; }

  .feature h2 { font-size: 30px; } .feature .rows { margin-top: 22px; }
  .feature .ui { width: 100%; }
}

/* MCP (orange/black plume) */
.mcp { position: relative; background: #050505; color: #fff; overflow: hidden; }
.mcp .plume { position: absolute; inset: 0; background: url("assets/orange-plume.jpg") center bottom / cover no-repeat; opacity: .6; animation: plume 24s ease-in-out infinite alternate; }
@keyframes plume { from { transform: scale(1) translateY(0); } to { transform: scale(1.08) translateY(-2%); } }
.mcp .plume::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, #050505 0%, rgba(5,5,5,.25) 35%, rgba(5,5,5,.55) 100%); }
.mcp .container { position: relative; z-index: 1; }
.mcp-head { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 5vw, 72px); align-items: end; margin-bottom: 40px; }
.mcp-head .lead { margin-top: 14px; }
.mcp-points { display: grid; gap: 14px; font-size: 15px; }
.mcp-points b { font-family: var(--font-head); font-weight: 500; display: block; margin-bottom: 2px; }
.mcp-points p { color: rgba(255,255,255,.65); }
@media (max-width: 900px) { .mcp-head { grid-template-columns: 1fr; } }
.mcp-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 40px; margin-top: 44px; border-top: 1px solid rgba(255,255,255,.14); }
.mcp-list div { padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); font-size: 14.5px; }
.mcp-list b { font-family: var(--font-head); font-weight: 500; display: block; margin-bottom: 3px; font-size: 15.5px; }
.mcp-list p { color: rgba(255,255,255,.65); }
.mcp-list small { display: block; color: rgba(255,255,255,.4); font-size: 12px; margin-top: 5px; }
@media (max-width: 900px) { .mcp-list { grid-template-columns: 1fr; } }

.mo { display: none; }
/* Claude (dark) replica */
.claude { display: grid; grid-template-columns: 210px 1fr; border-radius: 14px; overflow: hidden; background: #262624; color: #ECEAE3; border: 1px solid #3a3937; box-shadow: 0 40px 100px -40px rgba(0,0,0,.8); font-size: 13.5px; height: 580px; }
.claude .sb { background: #1F1E1D; padding: 12px 10px; display: flex; flex-direction: column; font-size: 13px; border-right: 1px solid #2f2e2c; overflow: hidden; }
.claude .sb .logo { font-family: "Serif", Georgia, serif; font-size: 20px; padding: 2px 8px 14px; color: #F5F3EC; }
.claude .sb .it { display: flex; align-items: center; gap: 10px; padding: 7px 10px; border-radius: 7px; color: #D9D7D0; }
.claude .sb .it.on { background: #2b2b29; }
.claude .sb .it svg { width: 15px; height: 15px; opacity: .8; }
.claude .sb .hd { font-size: 12px; color: #8b8983; padding: 16px 10px 6px; }
.claude .sb .ch { padding: 6px 10px; color: #cfccc4; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 12.5px; display: flex; align-items: center; gap: 8px; }
.claude .sb .ch::before { content: ""; width: 5px; height: 5px; border-radius: 50%; border: 1px solid #6b6a66; flex-shrink: 0; }
.claude .sb .ch.on { background: #2b2b29; border-radius: 6px; color: #fff; }
.claude .sb .user { margin-top: auto; display: flex; align-items: center; gap: 8px; padding: 6px 8px; font-size: 12.5px; color: #cfccc4; }
.claude .sb .user i { width: 20px; height: 20px; border-radius: 50%; background: #3a3937; display: grid; place-items: center; font-size: 10px; font-style: normal; }
.claude .main { display: flex; flex-direction: column; min-width: 0; min-height: 0; overflow: hidden; }
.claude .top { display: flex; align-items: center; justify-content: space-between; padding: 10px 14px; font-size: 13px; color: #ECEAE3; }
.claude .top .share { border: 1px solid #4a4946; border-radius: 8px; padding: 4px 10px; font-size: 12.5px; }
.claude .thread { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: none; padding: 14px 44px 8px; display: flex; flex-direction: column; gap: 16px; max-width: 760px; width: 100%; margin: 0 auto; }
.claude .u { align-self: flex-end; max-width: 78%; background: #3a3937; border-radius: 14px; padding: 9px 14px; font-size: 13.5px; color: #F0EEE7; }
.claude .a { font-family: "Serif", Georgia, serif; font-size: 15px; line-height: 1.5; color: #ECEAE3; }
.claude .a p + p { margin-top: 10px; }
.claude .a b { font-weight: 600; }
.claude .a ul { margin: 6px 0 0; padding-left: 20px; } .claude .a li { margin: 3px 0; }
.claude .tool { display: inline-flex; align-items: center; gap: 8px; background: #2c2b29; border: 1px solid #3d3c39; border-radius: 9px; padding: 6px 10px; font-size: 12.5px; color: #cfccc4; font-family: var(--font-body); }
.claude .tool img { width: 15px; height: 15px; border-radius: 4px; }
.claude .tool .st { color: #8b8983; }
.claude .tool .chev { color: #8b8983; margin-left: 2px; font-size: 10px; }
.claude .tool.busy .st::after { content: ""; display: inline-block; width: 9px; height: 9px; border: 1.5px solid #4a4946; border-top-color: #D97757; border-radius: 50%; animation: spin 1s linear infinite; margin-left: 6px; vertical-align: -1px; }
@keyframes spin { to { transform: rotate(360deg); } }
.claude .spark { width: 20px; height: 20px; }
.claude .cin-wrap { padding: 8px 44px 10px; max-width: 760px; width: 100%; margin: 0 auto; }
.claude .cin { background: #30302e; border: 1px solid #45443f; border-radius: 12px; display: flex; align-items: center; gap: 12px; padding: 0 12px; height: 44px; color: #9a9890; font-size: 13.5px; }
.claude .cin .plus-i { color: #cfccc4; font-size: 18px; line-height: 1; }
.claude .cin .ph { flex: 1; border-left: 1px solid #45443f; padding-left: 10px; }
.claude .cin .mic { width: 14px; height: 14px; color: #cfccc4; }
.claude .cin .dot { width: 6px; height: 6px; border-radius: 50%; background: #3fd9a3; }
.claude .foot { display: flex; justify-content: space-between; font-size: 11.5px; color: #8b8983; padding: 6px 2px 0; }
.claude .foot b { color: #cfccc4; font-weight: 500; } .claude .foot b span { color: #8b8983; margin-left: 5px; }
 .gpt .gin .send .wave { width: 18px; height: 18px; } .claude .mcpcard { grid-template-columns: 1fr; gap: 10px; } .claude .mcpcard .gauge { max-width: 190px; margin: 0 auto; } .claude .mcpcard .kv { grid-template-columns: 1fr 1fr; } }

.claude .thread::-webkit-scrollbar, .gpt .thread::-webkit-scrollbar { display: none; }
.claude .mcpcard { font-family: var(--font-body); background: #2c2b29; border: 1px solid #3d3c39; border-radius: 12px; padding: 14px 16px; display: grid; grid-template-columns: 190px 1fr; gap: 18px; align-items: center; margin: 4px 0; }
.claude .mcpcard .gauge .track { stroke: #3d3c39; } .claude .mcpcard .gauge .lbl { color: #9a9890; } .claude .mcpcard .gauge .lbl i { border-color: #6b6a66; color: #6b6a66; } .claude .mcpcard .gauge .num { font-size: 40px; }
.claude .mcpcard .rw { position: relative; width: 104px; height: 104px; }
.claude .mcpcard .rw svg { width: 104px; height: 104px; transform: rotate(-90deg); }
.claude .mcpcard .rw circle { fill: none; stroke-width: 9; } .claude .mcpcard .rw .t { stroke: #3d3c39; } .claude .mcpcard .rw .p { stroke: url(#gaugeGrad); stroke-linecap: round; stroke-dasharray: 289; stroke-dashoffset: 289; transition: stroke-dashoffset 1.6s var(--ease); }
.claude .mcpcard .rw b { position: absolute; inset: 0; display: grid; place-items: center; font-family: var(--font-head); font-size: 30px; font-weight: 500; color: #9CE04A; letter-spacing: -0.03em; padding-bottom: 8px; }
.claude .mcpcard .rw small { position: absolute; left: 0; right: 0; top: 66%; text-align: center; font-size: 7.5px; letter-spacing: .2em; color: #8b8983; }
.claude .mcpcard .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 14px; font-size: 12.5px; color: #cfccc4; }
.claude .mcpcard .kv b { color: #ECEAE3; font-weight: 500; float: right; }
.claude .mcpcard .ft { grid-column: 1 / -1; display: flex; align-items: center; gap: 8px; font-size: 11.5px; color: #8b8983; border-top: 1px solid #3d3c39; padding-top: 10px; }
.claude .mcpcard .ft img { width: 14px; height: 14px; border-radius: 4px; }
/* ChatGPT replica */
.gpt { border-radius: 14px; overflow: hidden; background: #fff; color: #0D0D0D; border: 1px solid #E5E5E5; box-shadow: 0 40px 100px -40px rgba(0,0,0,.5); display: flex; flex-direction: column; height: 580px; }
.gpt .gbar { display: flex; align-items: center; justify-content: space-between; padding: 12px 16px; font-size: 14px; font-weight: 500; }
.gpt .gbar .m { display: flex; align-items: center; gap: 6px; } .gpt .gbar .m span { color: #8E8E8E; font-weight: 400; }
.gpt .gbar .r { display: flex; gap: 8px; align-items: center; } .gpt .gbar .r i { width: 26px; height: 26px; border-radius: 50%; background: #F1F1F1; display: block; }
.gpt .thread { flex: 1; min-height: 0; overflow-y: auto; scrollbar-width: none; padding: 6px 26px 12px; display: flex; flex-direction: column; gap: 16px; line-height: 1.55; font-size: 14.5px; }
.gpt .u { align-self: flex-end; max-width: 72%; background: #F4F4F4; border-radius: 18px; padding: 10px 16px; }
.gpt .a { max-width: 96%; }
.gpt .a p + p { margin-top: 10px; }
.gpt .a ul { margin: 6px 0 0; padding-left: 18px; }
.gpt .tool { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; color: #5D5D5D; }
.gpt .tool img { width: 18px; height: 18px; border-radius: 5px; }
.gpt .tool.busy { color: #8E8E8E; }
.gpt .tool.busy::after { content: ""; width: 10px; height: 10px; border: 1.5px solid #E5E5E5; border-top-color: #0D0D0D; border-radius: 50%; animation: spin 1s linear infinite; }
.gpt .gin { margin: 6px 16px 14px; border: 1px solid #E5E5E5; border-radius: 26px; padding: 12px 14px 10px; box-shadow: 0 2px 10px rgba(0,0,0,.04); }
.gpt .gin .ph { color: #8E8E8E; font-size: 14.5px; padding: 2px 4px 8px; }
.gpt .gin .row { display: flex; align-items: center; gap: 8px; }
.gpt .gin .ic { width: 32px; height: 32px; border-radius: 50%; border: 1px solid #E5E5E5; display: grid; place-items: center; font-size: 16px; }
.gpt .gin .tools { font-size: 13px; color: #5D5D5D; display: flex; align-items: center; gap: 4px; }
.gpt .gin .send { margin-left: auto; width: 32px; height: 32px; border-radius: 50%; background: #0D0D0D; display: grid; place-items: center; }
.fade { opacity: 0; animation: msgin .4s var(--ease) forwards; }
.win-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; align-items: start; }
@media (max-width: 960px) { .win-pair { grid-template-columns: 1fr; } }

/* value + membership (Superpower) */
.value h2 { text-align: center; max-width: 640px; margin: 0 auto; }
.value .kicker { text-align: center; color: var(--muted); font-size: 15px; margin-bottom: 14px; }
.vrows { max-width: 760px; margin: 40px auto 0; }
.vrow { display: grid; grid-template-columns: 1fr 1.2fr auto; gap: 24px; align-items: center; padding: 14px 20px; border-radius: 8px; font-size: 15px; }
.vrow:nth-child(odd) { background: var(--surface); }
.vrow span:nth-child(2) { color: var(--muted); }
.vrow s { color: var(--dim); font-variant-numeric: tabular-nums; }
.vtotal-line { max-width: 760px; margin: 6px auto 0; display: flex; justify-content: space-between; align-items: baseline; padding: 18px 20px 0; border-top: 1px solid var(--border); font-size: 15px; }
.vtotal-line b { font-family: var(--font-head); font-weight: 500; font-size: 30px; letter-spacing: -0.03em; display: flex; align-items: baseline; gap: 10px; }
.vtotal-line s { color: var(--dim); font-size: 18px; } .vtotal-line em { font-style: normal; } .vtotal-line small { font-size: 14px; color: var(--muted); }
@media (max-width: 640px) {
  .vrow { grid-template-columns: 1fr auto; grid-template-areas: "t p" "d d"; gap: 2px 14px; align-items: baseline; padding: 14px 16px; }
  .vrow > span:first-child { grid-area: t; font-weight: 500; }
  .vrow > span:nth-child(2) { grid-area: d; font-size: 14px; }
  .vrow > s { grid-area: p; font-size: 14px; }
  .vtotal-line { flex-direction: column; align-items: flex-start; gap: 4px; padding: 16px 16px 0; }
  .vtotal-line b { font-size: 28px; }
  .reveal-photo { clip-path: none !important; }
  .member { margin-top: 32px; }
}
.member { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); align-items: center; margin-top: clamp(40px, 5vw, 64px); }
.member .pic { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 4/4.4; background: #111; color: #fff; }
.member .pic img { width: 100%; height: 100%; object-fit: cover; }
.member .pic::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,0) 40%, rgba(0,0,0,0) 70%, rgba(0,0,0,.35)); }
.member .pic h3 { position: absolute; left: 24px; top: 24px; font-size: clamp(26px, 2.6vw, 34px); line-height: 1.1; max-width: 12ch; z-index: 1; }
.member .pic .chips { position: absolute; left: 20px; right: 20px; bottom: 20px; display: flex; flex-wrap: wrap; gap: 8px; z-index: 1; }
.member .pic .chip { display: inline-flex; align-items: center; gap: 7px; padding: 7px 12px 7px 8px; border-radius: 999px; font-size: 12.5px; background: rgba(20,20,20,.45); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.14); }
.member .pic .chip svg { width: 14px; height: 14px; }
.member .meta { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.member .avs { display: flex; } .member .avs img { width: 24px; height: 24px; border-radius: 50%; border: 2px solid #fff; object-fit: cover; margin-left: -8px; } .member .avs img:first-child { margin-left: 0; }
.member .switch { display: inline-flex; padding: 3px; background: var(--surface); border-radius: 999px; font-size: 13px; margin-top: 18px; }
.member .switch button { border: 0; background: transparent; padding: 6px 12px; border-radius: 999px; color: var(--muted); }
.member .switch button.on { background: #fff; color: var(--ink); box-shadow: 0 1px 4px rgba(0,0,0,.08); }
.member h3.t { font-size: clamp(28px, 3vw, 40px); }
.member .desc { margin-top: 10px; color: var(--muted); font-size: 15.5px; max-width: 44ch; }
.member .price { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 4px; flex-wrap: wrap; }
.member .price b { font-family: var(--font-head); font-weight: 500; font-size: 48px; letter-spacing: -0.04em; line-height: 1; }
.member .price s { color: var(--dim); font-size: 18px; }
.member .price span { color: var(--muted); font-size: 14px; }
.member .price .tag { background: #FFF1E8; color: var(--orange); font-size: 12px; padding: 4px 8px; border-radius: 6px; }
.member ul { list-style: none; padding: 0; margin: 20px 0 22px; display: grid; gap: 10px; font-size: 14.5px; }
.member li { display: flex; gap: 10px; align-items: flex-start; }
.member li svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }
.member .btn { width: 100%; }
.member .fine { display: flex; gap: 18px; justify-content: center; margin-top: 12px; font-size: 12.5px; color: var(--muted); flex-wrap: wrap; }
@media (max-width: 900px) { .member { grid-template-columns: 1fr; } }

/* testimonials (Superpower) */
.thead { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 30px; }
.tctrl { display: flex; gap: 8px; }
.tctrl button { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--border); background: #fff; display: grid; place-items: center; }
.tctrl button:hover { background: var(--surface); }
.ttrack { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: 6px; }
.ttrack::-webkit-scrollbar { display: none; }
.testi { flex: 0 0 min(440px, 86vw); scroll-snap-align: start; }
.testi .pic { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; background: #111; }
.tchip { position: absolute; right: 12px; top: 12px; padding: 6px 10px; border-radius: 999px; font-size: 12px; color: #fff; background: rgba(20,20,20,.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255,255,255,.14); }
.testi .pic img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.testi .who { margin-top: 16px; font-size: 14px; }
.testi blockquote { margin: 6px 0 0; font-size: 16px; line-height: 1.45; }
.testi .res { margin-top: 8px; font-size: 13.5px; color: var(--muted); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { list-style: none; cursor: pointer; padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-size: 16.5px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary .plus { background: var(--surface); }
.faq summary .plus svg path { fill: var(--ink); }
.faq details.is-open summary .plus { transform: rotate(45deg); }
.faq .ans { display: grid; grid-template-rows: 1fr; transition: grid-template-rows .3s var(--ease); } .faq details:not(.is-open) .ans { grid-template-rows: 0fr; } .faq .ans > div { overflow: hidden; }
.faq p { color: var(--muted); padding: 0 0 20px; max-width: 66ch; font-size: 15px; }

/* final */
.final { background: #050505; color: #fff; overflow: hidden; text-align: center; padding: clamp(100px, 13vw, 170px) 0; position: relative; }
.final .bgimg { position: absolute; inset: 0; background: url("assets/p-track-bw.jpg") center / cover no-repeat; opacity: .5; }
.final .bgimg::after { content: ""; position: absolute; inset: 0; background: radial-gradient(60% 80% at 50% 50%, rgba(5,5,5,.25), rgba(5,5,5,.85)); }
.final .container { position: relative; z-index: 1; }
.final h2 { font-size: clamp(44px, 6.5vw, 92px); letter-spacing: -0.04em; }
.final .lead { margin: 18px auto 30px; }
.final .btns { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

footer { background: #050505; color: rgba(255,255,255,.6); padding: 52px 0 32px; border-top: 1px solid rgba(255,255,255,.08); font-size: 14px; }
.fgrid { display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 32px; }
.fgrid h4 { color: #fff; font-size: 13px; margin-bottom: 12px; font-family: var(--font-body); font-weight: 500; }
.fgrid ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.fgrid a:hover { color: #fff; }
.fbottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.08); font-size: 12.5px; color: rgba(255,255,255,.4); flex-wrap: wrap; }
.sr { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.fgrid > div { min-width: 0; }
@media (max-width: 800px) { .fgrid { grid-template-columns: 1fr; gap: 28px; } .fgrid > div:first-child { padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.08); } }

/* commercial */
.pains { max-width: 820px; }
.pain { display: grid; grid-template-columns: 1fr 1.3fr; gap: 24px; padding: 16px 20px; border-radius: 8px; font-size: 15px; }
.pain:nth-child(odd) { background: var(--surface); }
.pain p { color: var(--muted); } .pain p b { color: var(--ink); font-weight: 500; }
@media (max-width: 640px) { .pain { grid-template-columns: 1fr; gap: 6px; } }
.dash { border-radius: 14px; border: 1px solid var(--border); background: #fff; box-shadow: 0 40px 80px -50px rgba(0,0,0,.3); overflow: hidden; }
.dash-top { display: flex; align-items: center; gap: 14px; padding: 12px 18px; border-bottom: 1px solid var(--border); font-size: 13px; }
.dash-top .brand { font-size: 14px; } .dash-top .brand img { width: 22px; height: 22px; border-radius: 6px; }
.dash-top .tabs { display: flex; gap: 2px; margin-left: 12px; } .dash-top .tabs span { padding: 6px 10px; border-radius: 999px; color: var(--muted); } .dash-top .tabs span.on { background: var(--surface); color: var(--ink); }
.dash-top .live { margin-left: auto; color: var(--muted); font-size: 12.5px; }
.dash-body { display: grid; grid-template-columns: 1.5fr 1fr; }
.roster { border-right: 1px solid var(--border); }
.roster .hd, .client { display: grid; grid-template-columns: 1.6fr .9fr 1fr 1fr 1.2fr; gap: 10px; align-items: center; padding: 11px 18px; font-size: 13.5px; }
.roster .hd { font-size: 12px; color: var(--dim); border-bottom: 1px solid var(--border); }
.client { border-bottom: 1px solid var(--border); cursor: pointer; transition: background .15s; }
.client:hover, .client.on { background: #FAFAFA; }
.client .nm { display: flex; align-items: center; gap: 10px; font-weight: 500; }
.client .nm img, .client .nm .av { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.client .nm .av { background: var(--surface); color: var(--muted); display: grid; place-items: center; font-size: 11px; }
.client .nm small { display: block; color: var(--muted); font-weight: 400; font-size: 11.5px; }
.fi { font-family: var(--font-head); font-weight: 500; }
.mini-body { display: flex; gap: 3px; } .mini-body i { width: 9px; height: 9px; border-radius: 2.5px; }
.compl { display: flex; align-items: center; gap: 8px; font-size: 12.5px; } .compl .bar { width: 64px; height: 5px; }
.flag { font-size: 12.5px; display: inline-flex; align-items: center; gap: 6px; } .flag i { width: 7px; height: 7px; border-radius: 50%; }
.detail { padding: 18px; display: grid; gap: 14px; align-content: start; }
.detail h4 { font-size: 18px; display: flex; align-items: center; gap: 10px; }
.detail h4 img { width: 30px; height: 30px; border-radius: 50%; object-fit: cover; }
.detail h4 .flag { margin-left: auto; font-size: 12px; }
.detail .kv { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.detail .kv div { background: var(--surface); border-radius: 10px; padding: 11px 12px; font-size: 12px; color: var(--muted); }
.detail .kv b { display: block; font-family: var(--font-head); font-weight: 500; font-size: 19px; color: var(--ink); letter-spacing: -0.02em; margin-top: 2px; }
.detail .chart { height: 90px; }
.detail .insight { background: var(--surface); border-radius: 10px; padding: 12px 14px; font-size: 13.5px; line-height: 1.5; }
.detail .insight small { display: block; color: var(--muted); font-size: 12px; margin-bottom: 4px; }
.detail .acts { display: flex; gap: 8px; flex-wrap: wrap; }
.detail .acts button { border-radius: 999px; padding: 9px 14px; font-size: 13px; border: 1px solid var(--border); background: #fff; }
.detail .acts .ok { background: var(--ink); color: #fff; border-color: var(--ink); }
@media (max-width: 960px) {
  .dash-body { grid-template-columns: 1fr; } .roster { border-right: 0; }
  .dash-top .tabs span:not(.on), .dash-top .live { display: none; }
  .roster .hd { display: none; }
  .client { grid-template-columns: 1fr auto; grid-template-areas: "nm fi" "rec flag"; gap: 6px 10px; padding: 12px 16px; }
  .client .nm { grid-area: nm; } .client .fi { grid-area: fi; font-size: 16px; text-align: right; }
  .client .mini-body { grid-area: rec; } .client .compl { display: none; } .client > div:last-child { grid-area: flag; text-align: right; }
  .detail { padding: 16px; }
}
.cmp { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.cmp th, .cmp td { padding: 14px 12px; border-bottom: 1px solid var(--border); text-align: left; vertical-align: top; }
.cmp th { font-weight: 500; font-size: 14px; }
.cmp th.us, .cmp td.us { background: #F1FAF4; color: #12833A; font-weight: 500; }
.cmp th.us .thb { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 500; } .cmp th.us .thb img { width: 22px; height: 22px; border-radius: 6px; }
.cmp td.us svg { width: 14px; height: 14px; vertical-align: -2px; margin-right: 6px; }
.cmp td.no { color: var(--dim); }
.cmp td:not(.us) { color: var(--muted); }
.cmp td.no { color: rgba(17,17,17,.4); }
.cmp td:first-child, .cmp th:first-child { position: sticky; left: 0; background: #fff; z-index: 1; }
.cmp tbody tr { transition: background .15s; } .cmp tbody tr:hover td { background: #FAFAFA; } .cmp tbody tr:hover td.us { background: #E8F6EC; }
.cmp-wrap { overflow-x: auto; }
@media (max-width: 760px) {
  .cmp, .cmp tbody, .cmp tr, .cmp td { display: block; }
  .cmp thead { display: none; }
  .cmp tr { border: 1px solid var(--border); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: #fff; }
  .cmp td { border-bottom: 1px solid var(--border); padding: 10px 14px; display: flex; justify-content: space-between; gap: 12px; }
  .cmp td:first-child { font-weight: 500; background: #fff; border-bottom: 1px solid var(--border); display: block; }
  .cmp td:last-child { border-bottom: 0; }
  .cmp td:not(:first-child)::before { content: attr(data-label); color: var(--muted); font-size: 12.5px; flex: 0 0 46%; }
  .cmp td.us::before { color: #12833A; }
  .cmp td.us svg { margin-left: auto; }
}
.tiers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.tier { border: 1px solid var(--border); border-radius: 14px; padding: 26px; background: #fff; display: flex; flex-direction: column; }
.tier.hot { border-color: var(--ink); }
.tier h3 { font-size: 20px; } .tier .sub { color: var(--muted); font-size: 14px; margin-top: 4px; }
.tier .price { font-family: var(--font-head); font-weight: 500; font-size: 40px; letter-spacing: -0.04em; margin: 18px 0 2px; } .tier .price span { font-size: 15px; color: var(--muted); letter-spacing: 0; font-family: var(--font-body); }
.tier ul { list-style: none; padding: 0; margin: 16px 0 22px; flex: 1; display: grid; gap: 9px; font-size: 14px; }
.tier li { display: flex; gap: 9px; align-items: flex-start; } .tier li svg { width: 15px; height: 15px; flex-shrink: 0; margin-top: 3px; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr; } }
.mcta { display: none; }
.appstore { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; padding: 8px 14px 8px 10px; border-radius: 10px; background: #111; border: 1px solid rgba(255,255,255,.2); color: #fff; line-height: 1.05; }
.appstore small { display: block; font-size: 9px; color: rgba(255,255,255,.7); } .appstore span { font-size: 15px; font-weight: 500; }
.fform { display: flex; gap: 8px; margin-top: 18px; max-width: 360px; }
.fform input { flex: 1; min-width: 0; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); border-radius: 999px; padding: 10px 14px; color: #fff; font: inherit; font-size: 13.5px; }
.fform input::placeholder { color: rgba(255,255,255,.4); }
.fform .ok { color: var(--green); font-size: 13px; margin-top: 10px; }
@media (max-width: 900px) {
  .mcta { display: flex; position: fixed; left: 16px; right: 16px; bottom: 16px; z-index: 90; justify-content: center; padding: 15px; border-radius: 999px; background: var(--ink); color: #fff; font-weight: 500; box-shadow: 0 12px 30px -10px rgba(0,0,0,.5); transform: translateY(130%); transition: transform .35s var(--ease); }
  .mcta.show { transform: none; }
  footer { padding-bottom: 96px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal, .reveal-card, .reveal-photo { opacity: 1; transform: none; clip-path: none; }
}

/* mobile chat chrome (must stay last) */
@media (max-width: 900px) {
  .mo { display: inline-flex; }
  .claude { grid-template-columns: 1fr; height: 560px; border-radius: 22px; }
  .claude .sb { display: none; }
  .claude .top { padding: 12px 14px; } .claude .top .ttl { flex: 1; text-align: center; font-size: 14px; } .claude .top .share { display: none; }
  .claude .top .ico { width: 30px; height: 30px; align-items: center; justify-content: center; color: #ECEAE3; } .claude .top .ico svg { width: 20px; height: 20px; }
  .claude .thread { padding: 10px 14px 8px; gap: 12px; } .claude .a { font-size: 14px; }
  .claude .cin-wrap { padding: 8px 12px 12px; } .claude .cin, .claude .foot { display: none; }
  .claude .cin-m { display: block; background: #30302e; border: 1px solid #45443f; border-radius: 22px; padding: 12px 12px 10px 16px; }
  .claude .cin-m .ph { color: #9a9890; font-size: 15px; padding-bottom: 12px; }
  .claude .cin-m .row { display: flex; align-items: center; gap: 10px; }
  .claude .cin-m .plus-b { width: 30px; height: 30px; border-radius: 8px; border: 1px solid #45443f; display: grid; place-items: center; color: #ECEAE3; font-size: 18px; }
  .claude .cin-m .model { font-size: 13px; color: #cfccc4; padding: 6px 10px; border-radius: 8px; background: #3a3937; }
  .claude .cin-m .sp { flex: 1; } .claude .cin-m .mic { width: 20px; height: 20px; color: #cfccc4; }
  .claude .cin-m .send { width: 34px; height: 34px; border-radius: 50%; background: #D97757; display: grid; place-items: center; }
  .claude .mcpcard { grid-template-columns: 1fr; gap: 10px; } .claude .mcpcard .gauge { max-width: 190px; margin: 0 auto; } .claude .mcpcard .kv { grid-template-columns: 1fr 1fr; }
  .gpt { height: 560px; border-radius: 22px; }
  .gpt .gbar { padding: 12px 14px; } .gpt .gbar .m { flex: 1; justify-content: center; font-size: 16px; } .gpt .gbar .r { display: none; }
  .gpt .gbar .ico { width: 30px; height: 30px; align-items: center; justify-content: center; } .gpt .gbar .ico svg { width: 22px; height: 22px; }
  .gpt .thread { padding: 6px 16px 10px; font-size: 14.5px; }
  .gpt .gin { display: flex; align-items: center; gap: 8px; border-radius: 999px; padding: 6px 6px 6px 8px; margin: 6px 12px 12px; }
  .gpt .gin .ph { flex: 1; padding: 0 4px; order: 2; font-size: 15px; } .gpt .gin .row { display: contents; }
  .gpt .gin .ic { order: 1; } .gpt .gin .tools { display: none; } .gpt .gin .gmic { order: 3; width: 22px; height: 22px; color: #0D0D0D; } .gpt .gin .send { order: 4; margin-left: 0; width: 34px; height: 34px; }
  .gpt .gin .send .arrow-d { display: none; }
