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

:root {
    --primary:        #7c3aed;
    --primary-hover:  #6d28d9;
    --primary-light:  #ede9fe;
    --primary-mid:    #ddd6fe;

    --text-1: #111827;
    --text-2: #374151;
    --text-3: #6b7280;
    --text-4: #9ca3af;

    --border:   #e5e7eb;
    --border-2: #d1d5db;
    --bg:       #f3f4f6;
    --surface:  #ffffff;

    --danger: #dc2626;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;

    --shadow-sm: 0 1px 3px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.04);
    --shadow-md: 0 4px 16px rgba(0,0,0,.09), 0 2px 4px rgba(0,0,0,.04);
    --shadow-lg: 0 20px 48px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.06);

    --font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --mono: 'SF Mono', 'Cascadia Code', 'Fira Code', 'Consolas', monospace;
}

body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text-1);
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
}

/* ── Utilities ── */

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 28px;
}

/* ── Header ── */

.header {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-inner {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    flex-shrink: 0;
}

.logo-icon {
    display: block;
}

.logo-name {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--text-1);
}

.header-tagline {
    font-size: 13px;
    color: var(--text-3);
    border-left: 1px solid var(--border);
    padding-left: 20px;
}

/* ── Hero ── */

.hero {
    background: var(--surface);
    border-bottom: 1px solid var(--border);
    padding: 14px 0;
    text-align: center;
}

.hero-inner {
    max-width: 700px;
}

.hero-chip {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .3px;
    padding: 2px 10px;
    border-radius: 20px;
    margin-bottom: 6px;
}

.hero-title {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -.3px;
    color: var(--text-1);
    line-height: 1.25;
    margin-bottom: 5px;
}

.hero-sub {
    font-size: 13px;
    color: var(--text-3);
    line-height: 1.55;
    max-width: 480px;
    margin: 0 auto 10px;
}

.hero-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.hero-pill {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2px 10px;
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 16px;
    }
    .hero-sub {
        display: none;
    }
}

/* ── Main layout ── */

.main {
    padding-top: 28px;
    padding-bottom: 60px;
}

.layout {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 22px;
    align-items: start;
}

/* ── Builder column ── */

.builder-col {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-sm);
}

.card--cta {
    background: var(--bg);
}

/* ── Section labels ── */

.section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--text-3);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.count-badge {
    background: var(--primary-light);
    color: var(--primary);
    font-size: 11px;
    font-weight: 700;
    padding: 1px 8px;
    border-radius: 20px;
    letter-spacing: 0;
    text-transform: none;
}

/* ── Inputs ── */

.field-group {
    margin-bottom: 12px;
}

.label {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
    margin-bottom: 5px;
}

.optional {
    font-size: 11px;
    font-weight: 400;
    color: var(--text-4);
    margin-left: 4px;
}

.input {
    width: 100%;
    padding: 8px 11px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font);
    color: var(--text-1);
    background: var(--surface);
    outline: none;
    transition: border-color .15s, box-shadow .15s;
}

.input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(124,58,237,.12);
}

.input::placeholder {
    color: var(--text-4);
}

.input.error {
    border-color: var(--danger);
    box-shadow: 0 0 0 3px rgba(220,38,38,.1);
}

.hint {
    font-size: 12px;
    color: var(--text-4);
    margin-top: 6px;
    line-height: 1.5;
}

/* ── Field type grid ── */

.type-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.type-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 12px 6px 10px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: var(--surface);
    cursor: pointer;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    color: var(--text-3);
    transition: all .15s;
    user-select: none;
}

.type-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.type-btn:active {
    transform: translateY(0);
}

.type-icon {
    font-size: 15px;
    font-weight: 700;
    line-height: 1;
}

/* ── Empty hint ── */

.empty-hint {
    text-align: center;
    padding: 24px 16px;
    color: var(--text-4);
    font-size: 13px;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-md);
    line-height: 1.6;
}

/* ── Field list ── */

.fields-wrap {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

/* ── Field card ── */

.field-card {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: box-shadow .15s;
}

.field-card:hover {
    box-shadow: var(--shadow-sm);
}

.field-card-head {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    cursor: pointer;
    user-select: none;
    background: var(--surface);
    transition: background .1s;
}

.field-card-head:hover {
    background: #fafafa;
}

.field-badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .4px;
    text-transform: uppercase;
    padding: 2px 7px;
    border-radius: 20px;
    background: var(--primary-light);
    color: var(--primary);
    flex-shrink: 0;
}

.field-name {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-1);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.field-actions {
    display: flex;
    gap: 2px;
    flex-shrink: 0;
}

.field-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: none;
    border-radius: var(--radius-sm);
    background: none;
    cursor: pointer;
    color: var(--text-4);
    font-size: 12px;
    transition: all .12s;
    line-height: 1;
}

.field-btn:hover {
    background: var(--bg);
    color: var(--text-2);
}

.field-btn:disabled {
    opacity: .3;
    cursor: default;
}

.field-btn--del:hover {
    background: #fee2e2;
    color: var(--danger);
}

.field-body {
    padding: 13px;
    border-top: 1px solid var(--border);
    background: #fafafa;
    display: none;
}

.field-body.open {
    display: block;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 10px;
}

.field-row.full {
    grid-template-columns: 1fr;
}

.field-row:last-child {
    margin-bottom: 0;
}

.sub-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    color: var(--text-3);
    margin-bottom: 4px;
}

.input-sm {
    width: 100%;
    padding: 6px 9px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-family: var(--font);
    color: var(--text-1);
    background: var(--surface);
    outline: none;
    transition: border-color .15s;
}

.input-sm:focus {
    border-color: var(--primary);
}

/* ── Toggle ── */

.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.toggle-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-3);
}

.toggle {
    position: relative;
    width: 34px;
    height: 20px;
    cursor: pointer;
    flex-shrink: 0;
}

.toggle input {
    opacity: 0;
    width: 0;
    height: 0;
    position: absolute;
}

.toggle-track {
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: var(--border-2);
    transition: background .18s;
}

.toggle input:checked + .toggle-track {
    background: var(--primary);
}

.toggle-thumb {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
    transition: transform .18s;
}

.toggle input:checked ~ .toggle-thumb {
    transform: translateX(14px);
}

/* ── Options (for select field) ── */

.options-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 7px;
}

.option-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.option-row .input-sm {
    flex: 1;
}

.opt-del-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-4);
    padding: 4px;
    border-radius: 4px;
    font-size: 11px;
    line-height: 1;
    flex-shrink: 0;
    transition: all .12s;
}

.opt-del-btn:hover {
    color: var(--danger);
    background: #fee2e2;
}

.add-opt-btn {
    width: 100%;
    padding: 6px;
    border: 1.5px dashed var(--border);
    border-radius: var(--radius-sm);
    background: none;
    font-size: 12px;
    font-family: var(--font);
    color: var(--text-3);
    cursor: pointer;
    transition: all .15s;
}

.add-opt-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

/* ── Generate button ── */

.btn-generate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    margin-top: 4px;
    transition: all .15s;
}

.btn-generate:hover {
    background: var(--primary-hover);
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(124,58,237,.35);
}

.btn-generate:active {
    transform: translateY(0);
    box-shadow: none;
}

/* ── Preview column ── */

.preview-col {
    position: sticky;
    top: 72px;
}

.preview-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.preview-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
}

.preview-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .7px;
    text-transform: uppercase;
    color: var(--text-3);
}

.device-toggle {
    display: flex;
    background: var(--bg);
    border-radius: var(--radius-sm);
    padding: 2px;
    gap: 2px;
}

.device-btn {
    padding: 4px 13px;
    font-size: 12px;
    font-family: var(--font);
    font-weight: 500;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background: none;
    color: var(--text-3);
    transition: all .12s;
}

.device-btn.active {
    background: var(--surface);
    color: var(--text-1);
    box-shadow: var(--shadow-sm);
}

/* ── Browser chrome ── */

.browser-chrome {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 5px;
    flex-shrink: 0;
}

.browser-dots span {
    display: block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--border-2);
}

.browser-dots span:first-child { background: #fc5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }

.browser-bar {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: 11px;
    color: var(--text-4);
    text-align: center;
    max-width: 280px;
    margin: 0 auto;
}

/* ── Preview shell ── */

.preview-body {
    background: #e8eaf0;
}

.preview-shell {
    padding: 32px 40px;
    display: flex;
    justify-content: center;
    min-height: 340px;
    transition: padding .2s;
}

.preview-shell.mobile {
    padding: 32px 80px;
}

.preview-form-card {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 32px;
    width: 100%;
    box-shadow: var(--shadow-md);
    transition: all .2s;
}

/* ── Preview form elements (non-interactive) ── */

.pv-title {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: var(--text-1);
    margin-bottom: 4px;
}

.pv-desc {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 22px;
    line-height: 1.55;
}

.pv-field {
    margin-bottom: 16px;
}

.pv-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-2);
    margin-bottom: 5px;
}

.pv-required {
    color: var(--danger);
    margin-left: 2px;
}

.pv-input {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font);
    color: var(--text-4);
    background: var(--surface);
    pointer-events: none;
}

.pv-textarea {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font);
    color: var(--text-4);
    background: var(--surface);
    height: 80px;
    resize: none;
    pointer-events: none;
}

.pv-select {
    width: 100%;
    padding: 8px 30px 8px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-family: var(--font);
    color: var(--text-4);
    background: var(--surface)
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%239ca3af' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round' fill='none'/%3E%3C/svg%3E")
        no-repeat right 12px center;
    appearance: none;
    pointer-events: none;
}

.pv-checkbox-row {
    display: flex;
    align-items: center;
    gap: 9px;
    pointer-events: none;
}

.pv-checkbox-box {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-2);
    border-radius: 4px;
    flex-shrink: 0;
    background: var(--surface);
}

.pv-checkbox-text {
    font-size: 13px;
    color: var(--text-3);
}

.pv-submit {
    width: 100%;
    padding: 11px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font);
    margin-top: 6px;
    cursor: default;
    pointer-events: none;
}

.pv-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--text-4);
    font-size: 13px;
    text-align: center;
    padding: 20px;
}

/* ── Modal ── */

.modal-wrap {
    position: fixed;
    inset: 0;
    background: rgba(17,24,39,.5);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
}

.modal-wrap.open {
    opacity: 1;
    pointer-events: all;
}

.modal {
    background: var(--surface);
    border-radius: var(--radius-lg);
    padding: 30px;
    max-width: 560px;
    width: 100%;
    box-shadow: var(--shadow-lg);
    transform: translateY(10px) scale(.99);
    transition: transform .22s;
}

.modal-wrap.open .modal {
    transform: translateY(0) scale(1);
}

.modal-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
    gap: 12px;
}

.modal-success-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    display: inline-block;
    margin-right: 8px;
    margin-bottom: 2px;
    vertical-align: middle;
}

.modal-title {
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -.3px;
    color: var(--text-1);
    display: inline;
}

.modal-x {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-4);
    padding: 6px;
    border-radius: var(--radius-sm);
    display: flex;
    transition: all .12s;
    flex-shrink: 0;
    margin-top: 2px;
}

.modal-x:hover {
    background: var(--bg);
    color: var(--text-2);
}

.modal-desc {
    font-size: 13px;
    color: var(--text-3);
    margin-bottom: 18px;
    line-height: 1.55;
}

.code-wrap {
    background: #14141f;
    border-radius: var(--radius-md);
    padding: 18px 20px;
    position: relative;
    margin-bottom: 14px;
}

.code-block {
    font-family: var(--mono);
    font-size: 12.5px;
    color: #a5b4fc;
    white-space: pre-wrap;
    word-break: break-all;
    line-height: 1.65;
}

.copy-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 5px 13px;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.14);
    border-radius: var(--radius-sm);
    color: rgba(255,255,255,.75);
    font-size: 12px;
    font-weight: 600;
    font-family: var(--font);
    cursor: pointer;
    transition: all .15s;
}

.copy-btn:hover {
    background: rgba(255,255,255,.18);
    color: white;
}

.copy-btn.copied {
    background: rgba(34,197,94,.18);
    border-color: rgba(34,197,94,.25);
    color: #4ade80;
}

.modal-note {
    font-size: 12px;
    color: var(--text-4);
    line-height: 1.6;
    padding: 12px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
}

.modal-note strong {
    color: var(--text-3);
    font-weight: 600;
}

/* ── Load form ── */

.card--load {
    padding: 12px 16px;
    background: var(--bg);
}

.load-row {
    display: flex;
    gap: 8px;
}

.load-row .input {
    flex: 1;
    font-size: 13px;
    padding: 8px 12px;
}

.btn-load {
    padding: 8px 16px;
    background: var(--surface-2);
    color: var(--text-2);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s;
}

.btn-load:hover { background: var(--border); }
.btn-load:disabled { opacity: 0.6; cursor: not-allowed; }

/* ── Modal form ID ── */

.modal-id-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 14px;
    padding: 10px 14px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    flex-wrap: wrap;
}

.modal-id-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--text-4);
}

.modal-id {
    font-family: monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    background: rgba(124,58,237,.08);
    padding: 2px 8px;
    border-radius: 4px;
}

.modal-id-hint {
    font-size: 11px;
    color: var(--text-4);
}

/* ── Drag handle ── */

.drag-handle {
    color: var(--text-4);
    cursor: grab;
    font-size: 14px;
    padding: 0 2px;
    user-select: none;
    flex-shrink: 0;
    line-height: 1;
}

.drag-handle:active {
    cursor: grabbing;
}

.field-card.dragging {
    opacity: 0.4;
}

.field-card.drag-over {
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(124,58,237,.15);
}

/* ── Color picker ── */

.color-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.color-swatch {
    width: 36px;
    height: 36px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 2px;
    cursor: pointer;
    background: none;
    flex-shrink: 0;
}

.color-hex {
    font-size: 13px;
    font-family: var(--mono);
    color: var(--text-2);
}

/* ── Radio group ── */

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.radio-opt {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.radio-opt input[type="radio"] {
    accent-color: var(--primary);
    width: 15px;
    height: 15px;
    cursor: pointer;
    flex-shrink: 0;
}

.radio-label {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-2);
}

/* ── Sub-label optional tag ── */

.sub-label-opt {
    font-size: 10px;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--text-4);
    margin-left: 3px;
}

/* ── Preview: radio ── */

.pv-radio-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pv-radio-opt {
    display: flex;
    align-items: center;
    gap: 9px;
    pointer-events: none;
}

.pv-radio-circle {
    width: 16px;
    height: 16px;
    border: 1.5px solid var(--border-2);
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--surface);
}

.pv-radio-text {
    font-size: 13px;
    color: var(--text-3);
}

/* ── Preview: helper text ── */

.pv-helper {
    font-size: 12px;
    color: var(--text-4);
    margin-top: 5px;
    line-height: 1.5;
}

/* ── Preview: rating ── */

.pv-rating {
    display: flex;
    gap: 3px;
}

.pv-star {
    font-size: 24px;
    color: var(--primary);
    line-height: 1;
    opacity: 0.25;
}

/* ── Preview: branding ── */

.pv-branding {
    text-align: center;
    font-size: 11px;
    color: var(--text-4);
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
}

.pv-branding strong {
    color: var(--text-3);
    font-weight: 600;
}

/* ── Responsive ── */

@media (max-width: 860px) {
    .layout {
        grid-template-columns: 1fr;
    }
    .preview-col {
        position: static;
    }
    .header-tagline {
        display: none;
    }
    .main {
        padding-top: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .preview-shell {
        padding: 20px;
    }
    .preview-form-card {
        padding: 22px;
    }
}
