* {
    box-sizing: border-box;
}

:root {
    --ink: #061f2c;
    --ink-soft: #173747;
    --muted: #6d7f87;
    --line: #dfe7e9;
    --line-strong: #cad7da;
    --surface: #ffffff;
    --surface-soft: #f5f9f9;
    --teal: #0ea8c0;
    --teal-dark: #087d94;
    --navy: #031a25;
    --green: #4fa88a;
    --radius-lg: 28px;
    --radius-md: 18px;
    --shadow: 0 28px 70px rgba(12, 40, 51, 0.10);
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    background: var(--surface);
    color: var(--ink);
    font-family: "Inter", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

/* Header */

.site-header {
    position: relative;
    z-index: 10;
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(12, 43, 55, 0.08);
}

.nav-wrap {
    min-height: 86px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    width: fit-content;
}

.brand-text {
    font-family: "Manrope", "Inter", sans-serif;
    font-weight: 600;
    letter-spacing: -0.03em;
    font-size: 20px;
}

/* Hewett Analytics Logo */

.brand-mark {
    position: relative;
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal-dark), var(--teal));
    box-shadow: 0 7px 18px rgba(8, 125, 148, 0.20);
}

.brand-mark::before {
    content: "";
    position: absolute;
    width: 22px;
    height: 22px;
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 6px;
    transform: rotate(45deg);
}

.brand-mark::after {
    content: "";
    position: absolute;
    width: 5px;
    height: 5px;
    top: 5px;
    right: 5px;
    border-radius: 50%;
    background: #c4f6fb;
}

.logo-h,
.logo-a {
    position: relative;
    z-index: 1;
    color: #fff;
    font-family: "Manrope", "Inter", sans-serif;
    font-weight: 700;
    line-height: 1;
}

.logo-h {
    font-size: 14px;
    letter-spacing: -0.08em;
}

.logo-a {
    margin-left: -2px;
    margin-top: 9px;
    color: #c4f6fb;
    font-size: 8px;
}

.main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
}

.main-nav a {
    position: relative;
    padding: 31px 0 28px;
    color: #405963;
    font-size: 14px;
    font-weight: 500;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    height: 2px;
    border-radius: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transition: transform .2s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--ink);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.login-btn {
    justify-self: end;
    padding: 12px 18px;
    border: 1px solid #b9c9cd;
    border-radius: 999px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
    transition: .2s ease;
}

.login-btn:hover {
    border-color: var(--teal);
    color: var(--teal-dark);
    transform: translateY(-1px);
}

/* Main verify hero */

.verify-section {
    position: relative;
    overflow: hidden;
    padding: 112px 0 126px;
    background:
        radial-gradient(circle at 14% 15%, rgba(14,168,192,.11), transparent 27%),
        radial-gradient(circle at 82% 45%, rgba(14,168,192,.06), transparent 29%),
        linear-gradient(180deg, #fbfdfd 0%, #ffffff 100%);
}

.verify-section::before {
    content: "";
    position: absolute;
    width: 500px;
    height: 500px;
    right: -280px;
    top: -160px;
    border: 1px solid rgba(14,168,192,.12);
    border-radius: 50%;
}

.verify-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 510px;
    align-items: center;
    gap: 86px;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--teal-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.verify-copy h1 {
    max-width: 630px;
    margin: 0;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(46px, 5.2vw, 72px);
    line-height: .99;
    letter-spacing: -0.055em;
    font-weight: 600;
}

.verify-copy > p {
    max-width: 590px;
    margin: 27px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.75;
}

.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 13px;
    border: 1px solid #d9e5e7;
    border-radius: 999px;
    background: rgba(255,255,255,.78);
    color: #45606b;
    font-size: 12px;
    font-weight: 600;
}

.trust-chip svg {
    width: 15px;
    height: 15px;
    fill: var(--teal-dark);
}

.verify-card {
    position: relative;
    padding: 32px;
    background: rgba(255,255,255,.92);
    border: 1px solid rgba(7, 44, 59, 0.11);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
}

.verify-card::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(145deg, rgba(14,168,192,.06), transparent 38%);
}

.verify-card form {
    position: relative;
    z-index: 1;
}

.field + .field {
    margin-top: 21px;
}

.field label {
    display: block;
    margin-bottom: 10px;
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}

.field label > span {
    color: #d85757;
}

.field label small {
    margin-left: 6px;
    color: #94a3a8;
    font-size: 11px;
    font-weight: 500;
}

.field input {
    width: 100%;
    height: 56px;
    padding: 0 16px;
    outline: none;
    border: 1px solid var(--line-strong);
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 14px;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input::placeholder {
    color: #98a7ac;
}

.field input:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(14,168,192,.10);
}

.verify-btn {
    width: 100%;
    height: 56px;
    margin-top: 27px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    cursor: pointer;
    border: 0;
    border-radius: 13px;
    background: linear-gradient(135deg, #0c95ac, #0cb9cf);
    color: white;
    box-shadow: 0 12px 28px rgba(12, 155, 180, .22);
    font: inherit;
    font-size: 14px;
    font-weight: 700;
    transition: transform .18s ease, box-shadow .18s ease;
}

.verify-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(12, 155, 180, .28);
}

.verify-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Partner section */

.partner-section {
    padding: 18px 0 112px;
    background: #fff;
}

.partner-panel {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 62px;
    padding: 66px 72px;
    border-radius: 32px;
    background: var(--navy);
    color: white;
    box-shadow: 0 32px 80px rgba(2, 28, 39, .16);
}

.status-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 23px;
    padding: 8px 11px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    background: rgba(255,255,255,.05);
    color: #c9d8dc;
    font-size: 11px;
    font-weight: 600;
}

.status-pill i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6dd4a4;
    box-shadow: 0 0 0 4px rgba(109,212,164,.10);
}

.partner-copy h2 {
    max-width: 560px;
    margin: 0;
    font-family: "Manrope", "Inter", sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.04;
    letter-spacing: -0.045em;
    font-weight: 600;
}

.partner-copy p {
    max-width: 560px;
    margin: 22px 0 0;
    color: #aebfc5;
    font-size: 15px;
    line-height: 1.75;
}

.feature-list {
    display: grid;
    align-content: center;
    gap: 16px;
}

.feature {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 16px;
    padding: 19px;
    border: 1px solid rgba(255,255,255,.09);
    border-radius: 16px;
    background: rgba(255,255,255,.035);
}

.feature-icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(13,173,196,.13);
    color: #43d2e7;
}

.feature-icon svg {
    width: 21px;
    height: 21px;
    fill: currentColor;
}

.feature h3 {
    margin: 1px 0 5px;
    font-size: 14px;
    font-weight: 700;
}

.feature p {
    margin: 0;
    color: #98adb5;
    font-size: 12px;
    line-height: 1.55;
}

/* Footer */

.site-footer {
    padding: 74px 0 26px;
    background: #f5f8f8;
    border-top: 1px solid #e5ecee;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 48px;
    padding-bottom: 58px;
}

.brand.light .brand-text {
    color: var(--ink);
}

.footer-brand p {
    max-width: 340px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    margin: 0 0 4px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.footer-column a {
    color: #61747c;
    font-size: 13px;
}

.footer-column a:hover {
    color: var(--teal-dark);
}

.footer-bottom {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-top: 1px solid #dfe7e9;
    color: #819097;
    font-size: 12px;
}

.footer-bottom div {
    display: flex;
    align-items: center;
    gap: 22px;
}

.footer-bottom a:hover {
    color: var(--teal-dark);
}

/* Responsive */

@media (max-width: 980px) {
    .nav-wrap {
        grid-template-columns: 1fr auto;
    }

    .main-nav {
        display: none;
    }

    .verify-section {
        padding: 86px 0 94px;
    }

    .verify-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .verify-copy {
        text-align: center;
    }

    .verify-copy > p {
        margin-left: auto;
        margin-right: auto;
    }

    .trust-row {
        justify-content: center;
    }

    .verify-card {
        width: min(600px, 100%);
        margin: 0 auto;
    }

    .partner-panel {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr;
    }

    .footer-column:last-child {
        grid-column: 2 / 4;
    }
}

@media (max-width: 680px) {
    .container {
        width: min(100% - 30px, 1180px);
    }

    .site-header {
        position: static;
    }

    .nav-wrap {
        min-height: 72px;
    }

    .brand-text {
        font-size: 17px;
    }

    .brand-mark {
        transform: scale(.88);
        transform-origin: left center;
        margin-right: -2px;
    }

    .login-btn {
        padding: 10px 13px;
        font-size: 12px;
    }

    .verify-section {
        padding: 66px 0 72px;
    }

    .verify-copy h1 {
        font-size: clamp(41px, 13vw, 58px);
    }

    .verify-copy > p {
        font-size: 15px;
    }

    .trust-row {
        gap: 8px;
    }

    .trust-chip {
        width: 100%;
        justify-content: center;
    }

    .verify-card {
        padding: 23px;
        border-radius: 22px;
    }

    .partner-section {
        padding-bottom: 72px;
    }

    .partner-panel {
        padding: 38px 26px;
        border-radius: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 38px 28px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .footer-column:last-child {
        grid-column: auto;
    }

    .footer-bottom {
        padding: 19px 0;
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 430px) {
    .brand-text {
        font-size: 15px;
    }

    .login-btn {
        padding: 9px 10px;
    }

    .verify-copy h1 {
        font-size: 42px;
    }

    .verify-card {
        padding: 19px;
    }

    .field input,
    .verify-btn {
        height: 53px;
    }

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