.button,
input,
textarea,
select,
button { font: inherit; }

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 800;
    transition: transform .2s ease, box-shadow .2s ease;
}
.button:hover { transform: translateY(-1px); }
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    box-shadow: 0 14px 28px rgba(37,99,235,0.22);
}
.button-secondary { background: rgba(255,255,255,0.92); border-color: rgba(37,99,235,0.14); color: #274690; }
.button-small {
    min-height: 38px;
    padding: 0 14px;
    font-size: 13px;
}
.button.is-disabled,
.button[disabled] {
    opacity: 0.5;
    pointer-events: none;
    transform: none;
    box-shadow: none;
}
.text-link { font-weight: 800; color: var(--primary-deep); }
.text-link:hover { text-decoration: underline; text-underline-offset: 3px; }

.eyebrow,
.pill,
.kicker,
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    font-weight: 800;
}
.eyebrow,
.pill { background: rgba(37,99,235,0.10); color: var(--primary-deep); }
.eyebrow {
    font-size: 17px;
}
.kicker { background: rgba(245,158,11,0.14); color: #9a6700; }

.cta-row,
.stack { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-panel,
.card,
.metric,
.split-card,
.auth-card,
.timeline-step,
.table-wrap,
.notice,
.product-card {
    background: var(--surface);
    border: 1px solid rgba(255,255,255,0.9);
    box-shadow: var(--shadow);
    border-radius: var(--radius);
}
.hero-panel,
.card,
.split-card,
.auth-card,
.notice,
.product-card,
.table-wrap { padding: 26px; }

.grid-2,
.grid-3,
.grid-4,
.metric-grid,
.footer-grid,
.split-grid,
.docs-grid { display: grid; gap: 20px; }
.metric-grid,
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-2,
.split-grid { grid-template-columns: repeat(2, 1fr); }
.docs-grid { grid-template-columns: repeat(2, 1fr); }

.breadcrumbs { margin-bottom: 12px; font-size: 14px; }
.card h3,
.product-card h3 { margin-top: 0; }
.list-clean,
.footer-links,
.icon-list { margin: 0; padding: 0; list-style: none; }
.list-clean li,
.icon-list li {
    position: relative;
    padding: 12px 0 12px 22px;
    border-bottom: 1px solid rgba(16,33,50,0.08);
}
.list-clean li::before,
.icon-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 20px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--primary));
}

.table { width: 100%; border-collapse: collapse; }
.table th,
.table td {
    padding: 15px 14px;
    border-bottom: 1px solid rgba(16,33,50,0.08);
    text-align: left;
    vertical-align: top;
}
.table th { font-size: 13px; text-transform: uppercase; letter-spacing: 0.08em; }
.badge { padding: 6px 10px; font-size: 12px; }
.badge.success { background: rgba(37,99,235,0.12); color: var(--primary-deep); }
.badge.pending { background: rgba(245,158,11,0.16); color: #9a6700; }
.badge.processing { background: rgba(70,114,255,0.14); color: #1a4cff; }
.badge.failed { background: rgba(214,72,72,0.14); color: #9d1f1f; }
.badge.neutral {
    background: rgba(16,33,50,0.08);
    color: var(--ink);
}
.card p:last-child { margin-bottom: 0; }

.field { margin-bottom: 16px; }
.field label { display: block; margin-bottom: 8px; font-weight: 800; }
.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 15px 16px;
    border-radius: 18px;
    border: 1px solid rgba(16,33,50,0.12);
    background: rgba(255,255,255,0.92);
}
.order-form { display: grid; gap: 18px; }
.form-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
.callout {
    padding: 16px 18px;
    border-radius: 20px;
    border: 1px solid rgba(16,33,50,0.08);
}
.warning-callout { background: rgba(245,158,11,0.12); color: #92400e; }
.info-callout { background: rgba(37,99,235,0.10); color: var(--primary-deep); }
.checkbox-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
}
.legal-checkbox-row {
    align-items: flex-start;
    line-height: 1.6;
}
.legal-checkbox-row span {
    display: inline-block;
}
.checkbox-row input { width: 18px; height: 18px; }

.notice { background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(234,242,255,0.72)); }
.metric { padding: 18px; }
.metric strong { display: block; font-size: 30px; font-family: 'Space Grotesk', sans-serif; }
