/* ================================================================
   lovebot.dev — retro vapor gradients
   palette: #f8d4b4 #ffffff #c8c0d8 #2a2040 #e8b4f8 #ff6b8a #b4d8f8 #b4f8d8
   typography: Space Grotesk, Plus Jakarta Sans, Recursive
   ================================================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: "Plus Jakarta Sans", system-ui, sans-serif;
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 400;
    color: #2a2040;
    background: #e8b4f8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.dream {
    display: block;
    width: 100%;
}

/* ----------------------------------------------------------------
   reusable: chat-bubble outline
   ---------------------------------------------------------------- */

.bubble {
    background: rgba(255, 255, 255, 0.06);
    border: 2px solid #ffffff;
    border-radius: 22px;
    padding: 1.6rem 1.8rem;
    position: relative;
    color: #2a2040;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.bubble-meta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Recursive", "Plus Jakarta Sans", monospace;
    font-variation-settings: "MONO" 0.6, "CASL" 0.4;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #2a2040;
    opacity: 0.85;
    margin-bottom: 0.85rem;
}

.bubble-label {
    font-weight: 500;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff6b8a;
    box-shadow: 0 0 10px rgba(255, 107, 138, 0.7);
    display: inline-block;
}

.dot-mint {
    background: #b4f8d8;
    box-shadow: 0 0 10px rgba(180, 248, 216, 0.9);
}

/* heart pulse — realistic double-beat */
.heart-pulse {
    color: #ff6b8a;
    display: inline-block;
    transform-origin: center;
    animation: heartbeat 1.5s ease-in-out infinite;
    font-size: 0.95em;
    line-height: 1;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    15%      { transform: scale(1.18); }
    30%      { transform: scale(1); }
    45%      { transform: scale(1.10); }
    60%      { transform: scale(1); }
}

/* ----------------------------------------------------------------
   HERO — the interface
   ---------------------------------------------------------------- */

.hero {
    min-height: 100vh;
    background: linear-gradient(180deg, #e8b4f8 0%, #c8c0d8 55%, #b4d8f8 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 6rem 1.5rem 3rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    /* faint vaporwave grid */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(42, 32, 64, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(42, 32, 64, 0.06) 1px, transparent 1px);
    background-size: 48px 48px;
    background-position: center bottom;
    transform: perspective(700px) rotateX(62deg);
    transform-origin: center 100%;
    bottom: -10%;
    height: 55%;
    top: auto;
    opacity: 0.55;
    pointer-events: none;
}

.hero::after {
    /* soft sun disk */
    content: "";
    position: absolute;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle at 50% 45%, #f8d4b4 0%, #ff6b8a 55%, transparent 75%);
    top: 18%;
    left: 50%;
    transform: translateX(-50%);
    filter: blur(8px);
    opacity: 0.55;
    pointer-events: none;
    animation: sunpulse 8s ease-in-out infinite;
}

@keyframes sunpulse {
    0%, 100% { opacity: 0.55; transform: translateX(-50%) scale(1); }
    50%      { opacity: 0.70; transform: translateX(-50%) scale(1.04); }
}

.hero-stage {
    position: relative;
    width: min(92vw, 720px);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-bubble {
    width: clamp(260px, 50vw, 420px);
    padding: 2.2rem 2rem 2rem;
    background: rgba(255, 255, 255, 0.55);
    border: 2px solid #ffffff;
    border-radius: 24px;
    box-shadow: 0 20px 50px -20px rgba(42, 32, 64, 0.25);
    text-align: center;
    z-index: 3;
    position: relative;
}

.main-bubble::after {
    /* tail */
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.55);
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: translateX(-50%) rotate(45deg);
    border-bottom-right-radius: 6px;
}

.domain {
    font-family: "Space Grotesk", "Plus Jakarta Sans", sans-serif;
    font-weight: 500;
    font-size: clamp(1.8rem, 5vw, 3.2rem);
    color: #2a2040;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.domain-dot {
    color: #ff6b8a;
}

.tagline {
    margin-top: 0.65rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
    color: #2a2040;
    opacity: 0.78;
}

.tagline em {
    font-style: italic;
    color: #ff6b8a;
}

.cursor-line {
    margin-top: 1.1rem;
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    font-size: 0.85rem;
    color: #c8c0d8;
}

.caret {
    color: #ff6b8a;
    animation: blink 1.1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

/* heart bubble */
.heart-bubble {
    position: absolute;
    top: 8%;
    right: 4%;
    width: 72px;
    height: 72px;
    padding: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    animation: bob 3s ease-in-out infinite;
    box-shadow: 0 12px 30px -10px rgba(255, 107, 138, 0.45);
}

.heart-glyph {
    color: #ff6b8a;
    font-size: 1.6rem;
    line-height: 1;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes bob {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-12px); }
}

/* mini bubbles */
.mini-bubble {
    position: absolute;
    padding: 0.45rem 0.95rem;
    border-radius: 16px;
    border: 2px solid #ffffff;
    background: rgba(255, 255, 255, 0.55);
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 0.4, "CASL" 0.6;
    font-size: 0.78rem;
    color: #2a2040;
    z-index: 2;
}

.mini-bubble::after {
    content: "";
    position: absolute;
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.55);
    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    border-bottom-right-radius: 3px;
}

.mini-bubble-a {
    background: #f8d4b4cc;
    border-color: #f8d4b4;
    top: 14%;
    left: 6%;
    animation: float-a 6s ease-in-out infinite;
}

.mini-bubble-a::after {
    background: #f8d4b4cc;
    border-color: #f8d4b4;
    bottom: -6px;
    right: 16px;
}

.mini-bubble-b {
    background: #b4f8d8cc;
    border-color: #b4f8d8;
    bottom: 14%;
    left: 12%;
    animation: float-b 7s ease-in-out infinite;
}

.mini-bubble-b::after {
    background: #b4f8d8cc;
    border-color: #b4f8d8;
    bottom: -6px;
    left: 18px;
}

@keyframes float-a {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(6px, -8px); }
}

@keyframes float-b {
    0%, 100% { transform: translate(0, 0); }
    50%      { transform: translate(-6px, -10px); }
}

/* floating glyphs */
.ascii-floats {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.float-glyph {
    position: absolute;
    font-family: "Recursive", monospace;
    color: #ffffff;
    opacity: 0.55;
    font-size: 1.4rem;
    text-shadow: 0 2px 14px rgba(255, 107, 138, 0.4);
}

.float-glyph-1 { top: 22%; left: 26%; animation: drift1 9s linear infinite; }
.float-glyph-2 { bottom: 28%; right: 18%; animation: drift2 11s linear infinite; }
.float-glyph-3 { top: 70%; left: 28%; animation: drift1 13s linear infinite; }
.float-glyph-4 { top: 8%; left: 60%; animation: drift2 8s linear infinite; }

@keyframes drift1 {
    0%   { transform: translateY(0) rotate(0); opacity: 0.2; }
    50%  { transform: translateY(-18px) rotate(180deg); opacity: 0.7; }
    100% { transform: translateY(0) rotate(360deg); opacity: 0.2; }
}

@keyframes drift2 {
    0%   { transform: translate(0, 0) rotate(0); opacity: 0.3; }
    50%  { transform: translate(10px, -12px) rotate(-180deg); opacity: 0.65; }
    100% { transform: translate(0, 0) rotate(-360deg); opacity: 0.3; }
}

.hero-scroll {
    position: absolute;
    bottom: 1.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 0.6;
    font-size: 0.78rem;
    color: #2a2040;
    opacity: 0.7;
    letter-spacing: 0.08em;
    text-transform: lowercase;
}

.hero-scroll .arrow {
    color: #ff6b8a;
    animation: bob 2s ease-in-out infinite;
}

/* ----------------------------------------------------------------
   EMOTION SPECTRUM — stacked, gradient bleed
   each section is a 100% gradient that begins where the previous ended
   ---------------------------------------------------------------- */

.emotion {
    padding: 7rem 1.5rem;
    position: relative;
}

.emotion-inner {
    max-width: 980px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(120px, 220px) 1fr;
    gap: 3rem;
    align-items: center;
}

.emotion-inner.reverse {
    grid-template-columns: 1fr minmax(120px, 220px);
}

.emotion-inner.reverse .emotion-face { order: 2; }
.emotion-inner.reverse .emotion-copy { order: 1; }

.emotion-face {
    width: 100%;
    max-width: 220px;
    aspect-ratio: 1 / 1;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #ffffff;
    border-radius: 50%;
    padding: 1.6rem;
    box-shadow: 0 18px 40px -16px rgba(42, 32, 64, 0.25);
    transition: transform 0.6s ease;
}

.emotion-face:hover {
    transform: rotate(-4deg) scale(1.04);
}

.emotion-tag {
    display: inline-block;
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    font-size: 0.75rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #ff6b8a;
    margin-bottom: 0.6rem;
}

.emotion-title {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    color: #2a2040;
    line-height: 1.1;
    letter-spacing: -0.015em;
    margin-bottom: 1rem;
}

.emotion-text {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.98rem;
    line-height: 1.75;
    color: #2a2040;
    max-width: 56ch;
    margin-bottom: 1.4rem;
}

.emotion-text code {
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    font-size: 0.86em;
    background: rgba(255, 255, 255, 0.55);
    padding: 0.1rem 0.45rem;
    border-radius: 6px;
    border: 1px solid rgba(42, 32, 64, 0.08);
    color: #2a2040;
}

.snippet {
    display: inline-block;
    padding: 0.85rem 1.1rem;
    background: rgba(255, 255, 255, 0.6);
    border: 2px solid #ffffff;
    border-radius: 14px;
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    font-size: 0.88rem;
    color: #2a2040;
    box-shadow: 0 14px 30px -16px rgba(42, 32, 64, 0.25);
    position: relative;
    transition: transform 0.4s ease;
}

.snippet:hover {
    transform: translateY(-3px);
}

.snippet .prompt   { color: #ff6b8a; margin-right: 0.4rem; }
.snippet .key      { color: #2a2040; font-weight: 600; }
.snippet .fn       { color: #ff6b8a; }
.snippet .num      { color: #2a2040; }
.snippet .op       { color: #c8c0d8; }
.snippet .str      { color: #2a2040; opacity: 0.78; }
.snippet .comment  { color: #c8c0d8; font-style: italic; }

/* Gradient bleed between sections */
.emotion-joy {
    background: linear-gradient(180deg, #b4d8f8 0%, #b4f8d8 100%);
}

.emotion-tender {
    background: linear-gradient(180deg, #b4f8d8 0%, #f8d4b4 100%);
}

.emotion-melancholy {
    background: linear-gradient(180deg, #f8d4b4 0%, #c8c0d8 100%);
}

.emotion-curiosity {
    background: linear-gradient(180deg, #c8c0d8 0%, #e8b4f8 100%);
}

.emotion-love {
    background: linear-gradient(180deg, #e8b4f8 0%, #ff6b8a 100%);
}

.emotion-love .emotion-text,
.emotion-love .emotion-tag {
    color: #ffffff;
}

.emotion-love .emotion-tag { color: #ffffff; opacity: 0.95; }

.emotion-love .emotion-title {
    color: #ffffff;
}

.emotion-love .emotion-face {
    background: rgba(255, 255, 255, 0.65);
}

.emotion-love .snippet {
    background: rgba(255, 255, 255, 0.85);
}

/* ----------------------------------------------------------------
   API
   ---------------------------------------------------------------- */

.api {
    background: linear-gradient(180deg, #ff6b8a 0%, #e8b4f8 100%);
    padding: 7rem 1.5rem;
}

.api-inner {
    max-width: 1080px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.api-bubble {
    background: rgba(42, 32, 64, 0.92);
    border-color: #ffffff;
    color: #f4eefa;
    padding: 1.4rem 1.5rem 1.5rem;
    box-shadow: 0 24px 60px -22px rgba(42, 32, 64, 0.55);
    position: relative;
}

.api-bubble::after {
    content: "";
    position: absolute;
    bottom: 22px;
    left: -14px;
    width: 22px;
    height: 22px;
    background: rgba(42, 32, 64, 0.92);
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(45deg);
    border-bottom-left-radius: 6px;
}

.api-bubble .bubble-meta {
    color: #b4f8d8;
    opacity: 1;
}

.api-bubble .bubble-label {
    color: #b4f8d8;
}

.code {
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    font-size: 0.92rem;
    line-height: 1.7;
    color: #f4eefa;
    overflow-x: auto;
    white-space: pre;
}

.code .key      { color: #e8b4f8; }
.code .str      { color: #b4f8d8; }
.code .fn       { color: #f8d4b4; }
.code .num      { color: #f8d4b4; }
.code .comment  { color: #c8c0d8; font-style: italic; }

.api-copy .emotion-tag { color: #ffffff; }
.api-copy .emotion-title { color: #ffffff; }
.api-copy .emotion-text { color: #ffffff; opacity: 0.92; }

.api-list {
    list-style: none;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.api-list li {
    display: grid;
    grid-template-columns: 130px 1fr;
    align-items: center;
    gap: 0.8rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.95rem;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 12px;
    padding: 0.5rem 0.85rem;
    transition: transform 0.4s ease, background 0.4s ease;
}

.api-list li:hover {
    transform: translateX(4px);
    background: rgba(255, 255, 255, 0.28);
}

.key-tag {
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 1;
    color: #ffe6f0;
    font-size: 0.86rem;
    background: rgba(42, 32, 64, 0.3);
    padding: 0.1rem 0.55rem;
    border-radius: 8px;
    text-align: center;
}

/* ----------------------------------------------------------------
   TRANSCRIPT — connection log
   ---------------------------------------------------------------- */

.transcript {
    background: linear-gradient(180deg, #e8b4f8 0%, #c8c0d8 100%);
    padding: 6rem 1.5rem 4rem;
}

.transcript-header {
    max-width: 560px;
    margin: 0 auto 2rem;
    text-align: center;
}

.transcript-lede {
    margin-left: auto;
    margin-right: auto;
}

.chat {
    max-width: 540px;
    margin: 0 auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid #ffffff;
    border-radius: 22px;
    box-shadow: 0 24px 60px -28px rgba(42, 32, 64, 0.35);
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 280px;
}

.msg {
    max-width: 78%;
    padding: 0.7rem 1rem;
    font-family: "Recursive", "Plus Jakarta Sans", sans-serif;
    font-variation-settings: "MONO" 0, "CASL" 0.5;
    font-size: 0.92rem;
    line-height: 1.55;
    position: relative;
    color: #2a2040;
    animation: msgIn 0.5s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.msg span { display: block; }

.msg.human {
    background: #f8d4b4;
    margin-left: auto;
    margin-right: 0;
    border-radius: 18px 18px 6px 18px;
}

.msg.human::after {
    content: "";
    position: absolute;
    right: -6px;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: #f8d4b4;
    clip-path: polygon(0 0, 100% 100%, 0 100%);
}

.msg.bot {
    background: #b4f8d8;
    margin-right: auto;
    margin-left: 0;
    border-radius: 18px 18px 18px 6px;
}

.msg.bot::after {
    content: "";
    position: absolute;
    left: -6px;
    bottom: 0;
    width: 14px;
    height: 14px;
    background: #b4f8d8;
    clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.botname {
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 0.5;
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    text-transform: lowercase;
    color: #2a2040;
    opacity: 0.75;
    margin-bottom: 0.2rem;
}

.botname .heart-pulse {
    font-size: 0.85em;
}

.msg.typing { color: #2a2040; opacity: 0.85; }

.msg.typing .dots {
    display: inline-block;
    letter-spacing: 0.18em;
}

.msg.typing .dots span {
    display: inline-block;
    animation: typing 1.2s ease-in-out infinite;
}

.msg.typing .dots span:nth-child(2) { animation-delay: 0.15s; }
.msg.typing .dots span:nth-child(3) { animation-delay: 0.3s; }

@keyframes typing {
    0%, 60%, 100% { opacity: 0.25; transform: translateY(0); }
    30%           { opacity: 1;    transform: translateY(-3px); }
}

@keyframes msgIn {
    from { opacity: 0; transform: translateY(10px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* composer */
.composer {
    max-width: 540px;
    margin: 1.2rem auto 0;
    display: flex;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.7);
    border: 2px solid #ffffff;
    border-radius: 100px;
    padding: 0.4rem 0.4rem 0.4rem 1.2rem;
    align-items: center;
}

.composer input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: "Recursive", "Plus Jakarta Sans", sans-serif;
    font-variation-settings: "MONO" 0.2, "CASL" 0.6;
    font-size: 0.95rem;
    color: #2a2040;
    padding: 0.55rem 0;
    outline: none;
}

.composer input::placeholder {
    color: #c8c0d8;
}

.composer button {
    border: none;
    background: linear-gradient(135deg, #ff6b8a, #e8b4f8);
    color: #ffffff;
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.6rem 1.2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 6px 16px -8px rgba(255, 107, 138, 0.65);
}

.composer button:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px -10px rgba(255, 107, 138, 0.85);
}

.composer button:active {
    transform: translateY(0);
}

/* ----------------------------------------------------------------
   FOOTER
   ---------------------------------------------------------------- */

.foot {
    background: linear-gradient(180deg, #c8c0d8 0%, #2a2040 100%);
    padding: 4rem 1.5rem 2.5rem;
    color: #ffffff;
}

.foot-inner {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.foot-mark {
    font-family: "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 1.4rem;
    color: #ffffff;
}

.foot-line {
    font-family: "Recursive", monospace;
    font-variation-settings: "MONO" 0.5;
    font-size: 0.86rem;
    color: #c8c0d8;
    letter-spacing: 0.06em;
}

.foot-line .sep { color: #ff6b8a; }

.foot-meta {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 0.8rem;
    color: #c8c0d8;
    opacity: 0.75;
}

/* ----------------------------------------------------------------
   reveal-on-scroll
   ---------------------------------------------------------------- */

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

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

/* ----------------------------------------------------------------
   responsive
   ---------------------------------------------------------------- */

@media (max-width: 760px) {
    .emotion { padding: 5rem 1.2rem; }
    .emotion-inner,
    .emotion-inner.reverse {
        grid-template-columns: 1fr;
        gap: 1.6rem;
        text-align: left;
    }
    .emotion-inner.reverse .emotion-face { order: 0; }
    .emotion-inner.reverse .emotion-copy { order: 0; }
    .emotion-face { max-width: 140px; padding: 1rem; }

    .api { padding: 5rem 1.2rem; }
    .api-inner {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .api-bubble::after { left: 50%; bottom: -12px; transform: translateX(-50%) rotate(45deg); }

    .heart-bubble { top: 4%; right: 4%; width: 56px; height: 56px; }
    .mini-bubble-a { top: 6%; left: 4%; }
    .mini-bubble-b { bottom: 6%; left: 4%; }

    .code { font-size: 0.82rem; }
    .api-list li { grid-template-columns: 110px 1fr; }
}

@media (max-width: 460px) {
    .hero { padding: 5rem 1rem 3rem; }
    .main-bubble { padding: 1.6rem 1.4rem; }
    .composer { padding: 0.4rem 0.4rem 0.4rem 0.9rem; }
    .composer button { padding: 0.55rem 0.95rem; font-size: 0.85rem; }
    .api-list li { grid-template-columns: 100px 1fr; padding: 0.5rem 0.7rem; font-size: 0.88rem; }
}
