:root {
    --bg: #070708;
    --panel: rgba(18, 18, 22, 0.96);
    --panel-2: rgba(25, 25, 31, 0.96);
    --text: #f3efe9;
    --muted: #a6a1aa;
    --line: rgba(255, 255, 255, 0.08);
    --gold-1: #f0b35e;
    --gold-2: #e7a24a;
    --input: rgba(255, 255, 255, 0.04);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
    font-family: Inter, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(240, 179, 94, 0.12), transparent 24%),
        radial-gradient(circle at bottom right, rgba(240, 179, 94, 0.06), transparent 20%),
        linear-gradient(180deg, #060607 0%, #0a0a0d 100%);
    color: var(--text);
}

body {
    padding: 24px;
}

.embed-shell {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
}

.embed-card {
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--panel);
    overflow: hidden;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.32);
}

.embed-top {
    padding: 24px 24px 0;
}

.embed-brand {
    display: flex;
    align-items: center;
    gap: 14px;
}

.embed-logo {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: block;
}

.embed-brand-title {
    font-size: 1.25rem;
    font-weight: 700;
}

.embed-brand-subtitle {
    font-size: 0.95rem;
    color: var(--muted);
}

.embed-copy {
    padding: 20px 24px 10px;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(240, 179, 94, 0.18);
    background: rgba(240, 179, 94, 0.08);
    color: #f0c17f;
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.embed-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 0.96;
    letter-spacing: -0.05em;
}

.embed-copy p {
    margin: 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.6;
    max-width: 620px;
}

.embed-form {
    padding: 24px;
}

.field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.detail-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.detail-field label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--muted);
}

.detail-field input {
    width: 100%;
    min-height: 56px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: var(--input);
    color: var(--text);
    padding: 0 16px;
    font-size: 1rem;
    outline: none;
}

.detail-field input:focus {
    border-color: rgba(240, 179, 94, 0.45);
    box-shadow: 0 0 0 3px rgba(240, 179, 94, 0.08);
}

.embed-actions {
    margin-top: 24px;
}

.btn {
    appearance: none;
    border: 0;
    border-radius: 16px;
    min-height: 56px;
    padding: 0 22px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
}

.btn-primary {
    width: 100%;
    color: #1f160d;
    background: linear-gradient(135deg, var(--gold-1), var(--gold-2));
}

.btn-primary:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.form-message {
    margin: 16px 0 0;
    font-size: 0.98rem;
    color: var(--muted);
}

.form-message.success {
    color: #86de8b;
}

.form-message.error {
    color: #f59c9c;
}

.hidden-honeypot {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

@media (max-width: 720px) {
    body {
        padding: 12px;
    }

    .embed-card {
        border-radius: 22px;
    }

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

    .embed-top,
    .embed-copy,
    .embed-form {
        padding-left: 18px;
        padding-right: 18px;
    }
}