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

:root {
    --grad-start: #ef5e7d;
    --grad-end: #945ba4;
    --black: #111111;
    --mid: #555555;
    --light: #f7f7f7;
    --border: #e8e8e8;
}

body {
    font-family: 'Nunito', sans-serif;
    background: #ffffff;
    color: var(--black);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* NAV */
nav {
    width: 100%;
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-logo svg {
    height: 26px;
    width: auto;
}

.nav-wordmark {
    font-size: 17px;
    font-weight: 700;
    color: var(--black);
}

.nav-section {
    font-size: 13px;
    color: var(--mid);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    gap: 24px;
}

.nav-links a {
    font-size: 13px;
    font-weight: 600;
    color: var(--mid);
    text-decoration: none;
    transition: color 0.15s;
}

.nav-links a:hover { color: var(--black); }

/* HOMEPAGE MAIN */
main {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 24px 120px;
    text-align: center;
}

.logo {
    width: 72px;
    height: auto;
    margin-bottom: 28px;
    animation: fadeUp 0.5s ease both;
}

.wordmark {
    font-size: 32px;
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    animation: fadeUp 0.5s 0.08s ease both;
}

.tagline {
    font-size: 14px;
    color: var(--mid);
    font-weight: 600;
    margin-bottom: 48px;
    animation: fadeUp 0.5s 0.16s ease both;
}

.body-text {
    font-size: 14px;
    line-height: 1.75;
    color: var(--mid);
    max-width: 360px;
    margin-bottom: 40px;
    animation: fadeUp 0.5s 0.28s ease both;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 14px;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
    animation: fadeUp 0.5s 0.34s ease both;
}

.cta:hover { opacity: 0.85; transform: translateY(-1px); }

.cta svg {
    width: 14px;
    height: 14px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* HERO (security/report page) */
.hero {
    background: var(--light);
    border-bottom: 1px solid var(--border);
    padding: 64px 40px;
    text-align: center;
    animation: fadeUp 0.5s ease both;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.hero-badge svg {
    width: 12px;
    height: 12px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero h1 {
    font-size: 36px;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--black);
    margin-bottom: 14px;
}

.hero p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    max-width: 520px;
    margin: 0 auto;
}

/* CONTENT (security/report page) */
.content {
    flex: 1;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 64px 40px 80px;
}

.section {
    margin-bottom: 56px;
    animation: fadeUp 0.5s ease both;
}

.section:nth-child(2) { animation-delay: 0.05s; }
.section:nth-child(3) { animation-delay: 0.1s; }
.section:nth-child(4) { animation-delay: 0.15s; }
.section:nth-child(5) { animation-delay: 0.2s; }
.section:nth-child(6) { animation-delay: 0.25s; }

.section-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.section-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.section-icon svg {
    width: 18px;
    height: 18px;
    stroke: white;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section h2 {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: var(--black);
}

.section p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--mid);
    padding-left: 52px;
}

.divider {
    width: 100%;
    height: 1px;
    background: var(--border);
    margin-bottom: 56px;
}

/* REPORT BOX */
.report-box {
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    animation: fadeUp 0.5s 0.3s ease both;
}

.report-box h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 8px;
}

.report-box p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 20px;
}

.report-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
    color: #fff;
    font-family: 'Nunito', sans-serif;
    font-size: 13px;
    font-weight: 700;
    padding: 11px 24px;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.15s, transform 0.15s;
}

.report-btn:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}

.report-btn svg {
    width: 13px;
    height: 13px;
    stroke: white;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* FOOTER (shared) */
footer {
    width: 100%;
    border-top: 1px solid var(--border);
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copy { font-size: 11px; color: #ccc; }

.footer-links { display: flex; gap: 20px; }

.footer-links a {
    font-size: 11px;
    color: #ccc;
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover { color: var(--mid); }

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* RESPONSIVE (combined breakpoints) */
@media (max-width: 600px) {
    nav { padding: 0 20px; }
    .hero { padding: 48px 24px; }
    .hero h1 { font-size: 28px; }
    .content { padding: 48px 24px 64px; }
    .section p { padding-left: 0; margin-top: 10px; }
    footer { padding: 20px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
    .nav-links { gap: 16px; }
}