:root {
    color-scheme: light;
    --ink: #171717;
    --body: #303030;
    --muted: #686868;
    --paper: #fffaf7;
    --card: #ffffff;
    --accent: #f05a35;
    --accent-dark: #bd3d1e;
    --blue: #2457c5;
    --rule: #eadfd9;
    --soft-orange: #fff2ec;
    --soft-blue: #f2f6ff;
    --shadow: 0 18px 55px rgba(69, 39, 27, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: linear-gradient(180deg, #fff5ef 0, var(--paper) 360px);
    color: var(--ink);
    font: 17px/1.65 -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--blue);
    text-underline-offset: 3px;
}

a:hover {
    text-decoration-thickness: 2px;
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid rgba(36, 87, 197, 0.35);
    outline-offset: 3px;
    border-radius: 5px;
}

.site-header {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto;
    padding: 22px 2px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--ink);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-decoration: none;
    text-transform: uppercase;
}

.brand-mark {
    width: 17px;
    height: 17px;
    border-radius: 5px;
    background: var(--accent);
    transform: rotate(12deg);
    box-shadow: 0 4px 10px rgba(240, 90, 53, 0.25);
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    padding: 8px 11px;
    border-radius: 10px;
    color: #3f3f3f;
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
}

main {
    width: min(960px, calc(100% - 32px));
    margin: 24px auto 46px;
    padding: clamp(30px, 6vw, 70px);
    background: var(--card);
    border: 1px solid var(--rule);
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.eyebrow {
    margin: 0 0 10px;
    color: var(--accent-dark);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.11em;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    font-size: clamp(40px, 8vw, 68px);
    line-height: 1.01;
    letter-spacing: -0.05em;
}

.lede {
    max-width: 760px;
    margin: 20px 0 0;
    color: #373737;
    font-size: clamp(19px, 2.6vw, 23px);
    line-height: 1.5;
}

.updated {
    margin: 13px 0 0;
    color: var(--muted);
    font-size: 15px;
}

.summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 34px 0 4px;
}

.summary-card,
.info-card {
    padding: 20px;
    border: 1px solid var(--rule);
    border-radius: 17px;
    background: #fffdfc;
}

.summary-card strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.summary-card span,
.info-card p {
    color: var(--muted);
    font-size: 15px;
}

.summary-card span {
    display: block;
    line-height: 1.45;
}

.notice {
    margin: 30px 0 0;
    padding: 20px 22px;
    border: 1px solid #f4d2c3;
    border-radius: 17px;
    background: var(--soft-orange);
}

.notice strong {
    display: block;
    margin-bottom: 3px;
}

.notice p {
    margin: 0;
}

.policy-section,
.support-section {
    scroll-margin-top: 18px;
}

h2 {
    margin: 42px 0 10px;
    font-size: 25px;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

h3 {
    margin: 0 0 6px;
    font-size: 18px;
    line-height: 1.35;
}

p,
li {
    color: var(--body);
}

p {
    margin: 10px 0;
}

ul,
ol {
    padding-left: 24px;
}

li + li {
    margin-top: 8px;
}

.table-wrap {
    margin-top: 14px;
    overflow-x: auto;
    border: 1px solid var(--rule);
    border-radius: 16px;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 620px;
    font-size: 15px;
}

th,
td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--rule);
    text-align: left;
    vertical-align: top;
}

th {
    width: 25%;
    background: #fffaf7;
    color: var(--ink);
}

tr:last-child th,
tr:last-child td {
    border-bottom: 0;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 28px 0 0;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 13px;
    background: var(--accent);
    color: #fff;
    font-weight: 750;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(240, 90, 53, 0.2);
}

.button:hover {
    background: #dd4a28;
}

.button.secondary {
    border: 1px solid #cfd8ed;
    background: var(--soft-blue);
    color: var(--blue);
    box-shadow: none;
}

.contact-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 18px;
}

.info-card {
    min-height: 100%;
}

.info-card p:last-child {
    margin-bottom: 0;
}

.steps {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
    counter-reset: support-steps;
}

.steps li {
    position: relative;
    min-height: 42px;
    margin: 0;
    padding: 7px 0 18px 48px;
    counter-increment: support-steps;
}

.steps li::before {
    content: counter(support-steps);
    position: absolute;
    left: 0;
    top: 2px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--soft-orange);
    color: var(--accent-dark);
    font-size: 14px;
    font-weight: 800;
    line-height: 34px;
    text-align: center;
}

.contact {
    margin-top: 42px;
    padding: 24px;
    border: 1px solid #f4d2c3;
    border-radius: 18px;
    background: var(--soft-orange);
}

.contact h2 {
    margin-top: 0;
}

.contact p {
    margin: 5px 0;
}

.fine-print {
    color: var(--muted);
    font-size: 14px;
}

.site-footer {
    width: min(960px, calc(100% - 32px));
    margin: 0 auto 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    color: var(--muted);
    font-size: 14px;
}

.site-footer p {
    margin: 0;
    color: inherit;
}

.site-footer div {
    display: flex;
    gap: 15px;
}

@media (max-width: 760px) {
    .summary,
    .contact-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    main {
        padding: 34px 24px;
    }
}

@media (max-width: 520px) {
    body {
        background: var(--card);
    }

    .site-header {
        width: 100%;
        padding: 16px 18px 10px;
    }

    .brand {
        font-size: 13px;
    }

    .site-nav a {
        padding-left: 0;
        padding-right: 16px;
    }

    main {
        width: 100%;
        margin: 0;
        min-height: calc(100vh - 170px);
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .site-footer {
        width: 100%;
        padding: 24px;
        margin: 0;
        background: var(--paper);
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}
