:root {
    --ink: #151f2b;
    --muted: #738095;
    --orange: #ff5b43;
    --orange-2: #ff7656;
    --orange-soft: #fff4ee;
    --line: #ffe0d8;
    --green: #18b981;
    --green-soft: #e8fff6;
    --bg: #fff8f4;
    --shadow: 0 22px 70px rgba(255, 91, 67, .14);
    --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
    scroll-behavior: smooth;
    touch-action: manipulation;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--ink);
    background: #fff;
    font-family: var(--font);
}

button,
input { font: inherit; }
a { color: inherit; text-decoration: none; }

.notice {
    min-height: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
    justify-content: center;
    padding: 7px 14px;
    color: #f7d3c9;
    background: #182230;
    font-size: 13px;
    font-weight: 750;
    text-align: center;
}

.notice strong { color: #ffb3a4; }

.header {
    border-bottom: 1px solid #f1f3f5;
    background: rgba(255, 255, 255, .94);
    backdrop-filter: blur(14px);
}

.nav {
    width: min(1160px, calc(100% - 32px));
    min-height: 70px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink);
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.logo img {
    width: 42px;
    height: auto;
    display: block;
}

.nav-cta,
.primary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-2));
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 18px 32px rgba(255, 91, 67, .22);
}

.nav-cta { padding: 0 20px; }

.hero {
    background:
        radial-gradient(circle at 88% 18%, rgba(255, 91, 67, .20), transparent 34%),
        linear-gradient(180deg, #fffaf7 0, var(--bg) 100%);
}

.hero-inner {
    width: min(1160px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 500px);
    gap: 56px;
    align-items: center;
}

h1 {
    margin: 0 0 12px;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.14;
    letter-spacing: 0;
}

.time-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 12px;
}

.time-list span {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border: 1px solid #ffd2c7;
    border-radius: 10px;
    color: var(--orange);
    background: #fff;
    font-size: 18px;
    font-weight: 950;
    box-shadow: 0 8px 18px rgba(255, 91, 67, .10);
}

.hero-note {
    margin: 0;
    max-width: 580px;
    color: #303949;
    font-size: 14px;
    line-height: 1.45;
    font-weight: 800;
}

.form-card {
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .92);
    box-shadow: var(--shadow);
}

.form-title {
    margin: 0 0 12px;
    font-size: 16px;
    font-weight: 900;
}

.input-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 56px;
    padding: 0 10px 0 16px;
    border: 1.5px solid #e3e7ef;
    border-radius: 16px;
    background: #fff;
}

.input-row:focus-within {
    border-color: var(--orange);
    box-shadow: 0 0 0 4px rgba(255, 91, 67, .10);
}

input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    color: var(--ink);
    background: transparent;
    font-size: 14px;
    font-weight: 750;
}

input::placeholder { color: #9aa3af; }

.paste-btn {
    min-height: 38px;
    padding: 0 14px;
    border: 0;
    border-radius: 12px;
    color: #5f6673;
    background: #f2f4f7;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
}

.primary-btn {
    width: 100%;
    min-height: 56px;
    margin-top: 14px;
    border-radius: 14px;
    font-size: 15px;
    text-transform: uppercase;
    gap: 9px;
}

.btn-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 auto;
}

.status,
.error {
    display: none;
    margin-top: 12px;
    text-align: center;
    font-size: 13px;
    font-weight: 850;
}

.status { color: #138a63; }
.error { color: #dc2626; }

.below {
    width: min(760px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 0 34px;
}

.info-card {
    padding: 15px 16px;
    border: 1px solid #edf0f4;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(21, 31, 43, .05);
}

.info-card + .info-card,
.voucher-img { margin-top: 16px; }

.info-card h2 {
    margin: 0 0 9px;
    font-size: 16px;
    line-height: 1.25;
}

.guide,
.issues {
    margin: 0;
    color: #303949;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 650;
}

.guide { padding-left: 18px; }
.issues { padding-left: 0; list-style: none; }
.issues li { margin-top: 5px; }

.voucher-img {
    width: 100%;
    display: block;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 12px 32px rgba(21, 31, 43, .05);
    transform-origin: center;
    animation: voucherPulse 4.8s ease-in-out infinite;
}

@keyframes voucherPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.018); }
}

.voucher-times {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    margin-top: 5px;
}

.time-list {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.time-list strong {
    display: inline-flex;
    width: max-content;
    min-height: 24px;
    align-items: center;
    padding: 0 8px;
    border-radius: 8px;
    color: var(--ink);
    background: #fff4ee;
    font-size: 12px;
}

@media (max-width: 900px) {
    .nav { min-height: 64px; }

    .hero-inner {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 30px 0 30px;
    }

}

@media (max-width: 560px) {
    .notice { font-size: 10px; }

    .nav,
    .hero-inner,
    .below {
        width: min(100% - 20px, 460px);
    }

    .logo { font-size: 21px; }
    .logo img { width: 38px; }
    .nav-cta { min-height: 40px; padding: 0 14px; font-size: 13px; }
    h1 { font-size: 22px; margin-bottom: 10px; }
    .time-list { gap: 6px; margin-bottom: 10px; }
    .time-list span { min-height: 30px; padding: 0 9px; font-size: 14px; border-radius: 8px; }
    .form-card { padding: 15px; border-radius: 18px; }
    .input-row { padding-left: 14px; }
            .primary-btn { min-height: 48px; font-size: 14px; }
    .paste-btn { padding: 0 12px; }
    .below { padding-top: 14px; }
    .info-card { padding: 13px; }
    .info-card h2 { font-size: 15px; }
    .guide, .issues { font-size: 12px; }
    .voucher-img { margin-top: 13px; border-radius: 12px; }
}
