:root{
  --bg: #f6fbf4; --panel: #ffffff; --panel-2: #ebf4e6; --line: #d5e7ca;
  --accent: #519d25; --accent-soft: #d4e9c9; --accent-dim: #f2f8f0;
  --text: #1c2914; --muted: #5f804d; --muted-2: #a1b894;
}

.tweet-mock{ border: 1px solid var(--line); border-radius: 16px; padding: 16px; background: var(--panel); }
.tweet-top{ display: flex; gap: 10px; align-items: center; }
.tweet-avatar{ width: 42px; height: 42px; border-radius: 50%; background: var(--accent); flex-shrink: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px; }
.tweet-names{ line-height: 1.3; }
.tweet-names .name{ font-weight: 700; font-size: 14px; }
.tweet-names .handle{ font-size: 12.5px; color: var(--muted); }
.tweet-text{ margin: 10px 0 12px; font-size: 14.5px; line-height: 1.4; }

.card-summary{ display: flex; border: 1px solid var(--line); border-radius: 14px; overflow: hidden; }
.card-summary.large{ flex-direction: column; }
.card-img{ background: var(--panel-2); background-size: cover; background-position: center; display: flex; align-items: center; justify-content: center; color: var(--muted-2); font-size: 12px; flex-shrink: 0; }
.card-summary.large .card-img{ width: 100%; height: 220px; }
.card-summary.summary .card-img{ width: 100px; height: 100px; }
.card-summary .card-body{ padding: 12px 14px; flex: 1; }
.card-summary .card-domain{ font-size: 11px; color: var(--muted); text-transform: uppercase; }
.card-summary .card-title{ font-size: 14px; font-weight: 700; margin-top: 3px; line-height: 1.3; }
.card-summary .card-desc{ font-size: 12px; color: var(--muted); margin-top: 3px; line-height: 1.4; }

.field-grid{ margin-top: 22px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 600px){ .field-grid{ grid-template-columns: 1fr; } }
.field-grid .full{ grid-column: 1 / -1; }
.field label{ display: block; font-size: 11px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.field input, .field select, .field textarea{ width: 100%; padding: 9px 11px; border: 1px solid var(--line); border-radius: 7px; font-family: 'Inter', sans-serif; font-size: 13px; background: var(--panel-2); color: var(--text); }
.field input:focus, .field select:focus, .field textarea:focus{ outline: none; border-color: var(--accent); }
.field textarea{ min-height: 56px; max-height: 200px; resize: vertical; overflow: auto; }

.section-title{ font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: var(--muted); margin: 22px 0 8px; }
.output{ background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 14px; font-family: 'JetBrains Mono', monospace; font-size: 12px; line-height: 1.8; white-space: pre-wrap; word-break: break-word; max-height: 260px; overflow: auto; }

.btns{ display: flex; justify-content: flex-end; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.app{ padding: 11px 20px; border: none; border-radius: 6px; cursor: pointer; font-weight: 600; font-size: 13.5px; font-family: 'Inter', sans-serif; color: #fff; background: var(--accent); transition: filter .15s ease; }
.app:hover{ filter: brightness(1.08); }

.note{ margin-top: 14px; font-size: 12px; color: var(--muted); line-height: 1.6; background: var(--panel-2); border: 1px solid var(--line); border-radius: 8px; padding: 10px 14px; }
