:root {
    --green: #1b7340;
    --green-dark: #0d3f27;
    --green-deep: #082f1d;
    --green-soft: #e9f3ed;
    --red: #a83a32;
    --ink: #173027;
    --muted: #5d6d66;
    --line: #d8e1dc;
    --paper: #f7f8f4;
    --white: #ffffff;
    --shadow: 0 24px 70px rgba(8, 47, 29, 0.12);
    --radius-lg: 24px;
    --radius-md: 15px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-underline-offset: 0.2em;
    text-decoration-thickness: 1px;
}

a:focus-visible {
    outline: 3px solid #efb94c;
    outline-offset: 4px;
    border-radius: 3px;
}

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2,
h3 {
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    line-height: 1.1;
    text-wrap: balance;
}

h1 {
    max-width: 760px;
    margin-bottom: 24px;
    font-size: clamp(2.75rem, 7vw, 5.6rem);
    letter-spacing: -0.045em;
}

h2 {
    margin-bottom: 18px;
    font-size: clamp(2rem, 5vw, 3.45rem);
    letter-spacing: -0.035em;
}

h3 {
    margin-bottom: 0;
    font-size: 1.4rem;
    letter-spacing: -0.015em;
}

.container {
    width: min(100% - 40px, 1200px);
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    color: var(--white);
    background: var(--green-deep);
    transform: translateY(-160%);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid rgba(27, 115, 64, 0.12);
    background: rgba(255, 255, 255, 0.96);
}

.header-inner {
    display: flex;
    min-height: 84px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.brand {
    display: inline-flex;
    min-width: 0;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.brand img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
}

.brand-copy {
    display: grid;
    min-width: 0;
}

.brand-name {
    color: var(--green);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
}

.product-label {
    overflow: hidden;
    max-width: 230px;
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.3;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.main-site-link {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 8px;
    color: var(--green-dark);
    font-size: 0.82rem;
    font-weight: 750;
    text-decoration: none;
}

.main-site-link span:last-child {
    color: var(--green);
    font-size: 1.1rem;
}

.hero {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 56px 0 68px;
    background:
        radial-gradient(circle at 8% 8%, rgba(27, 115, 64, 0.13), transparent 27rem),
        linear-gradient(135deg, #f8faf6 0%, #edf4ef 100%);
}

.hero::after {
    position: absolute;
    z-index: -1;
    right: -9rem;
    bottom: -11rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(27, 115, 64, 0.13);
    border-radius: 50%;
    box-shadow: 0 0 0 3rem rgba(27, 115, 64, 0.035), 0 0 0 7rem rgba(27, 115, 64, 0.025);
    content: "";
}

.hero-pattern {
    position: absolute;
    z-index: -2;
    inset: 0;
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(27, 115, 64, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 115, 64, 0.045) 1px, transparent 1px);
    background-size: 32px 32px;
    mask-image: linear-gradient(to right, #000, transparent 80%);
}

.hero-grid {
    display: grid;
    align-items: center;
    gap: 44px;
}

.hero-copy {
    min-width: 0;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 23px;
    padding: 7px 11px;
    border: 1px solid #dbb3ae;
    border-radius: 999px;
    color: #7f2e28;
    background: #fff8f7;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.075em;
    line-height: 1.4;
    text-transform: uppercase;
}

.status-badge span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--red);
    box-shadow: 0 0 0 0 rgba(168, 58, 50, 0.3);
    animation: status-pulse 2.8s ease-out infinite;
}

.hero-lead {
    max-width: 700px;
    margin-bottom: 18px;
    color: #264c3a;
    font-size: clamp(1.13rem, 2vw, 1.35rem);
    line-height: 1.55;
}

.hero-detail {
    max-width: 660px;
    margin-bottom: 30px;
    color: var(--muted);
    font-size: 0.98rem;
}

.domain-card {
    display: inline-flex;
    max-width: 100%;
    align-items: center;
    gap: 13px;
    padding: 13px 18px 13px 14px;
    border: 1px solid rgba(27, 115, 64, 0.2);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 10px 30px rgba(8, 47, 29, 0.07);
}

.domain-card > span:last-child {
    display: grid;
    min-width: 0;
}

.domain-card small {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 750;
    letter-spacing: 0.075em;
    text-transform: uppercase;
}

.domain-card strong {
    overflow-wrap: anywhere;
    color: var(--green-dark);
    font-size: 0.94rem;
}

.domain-mark {
    position: relative;
    width: 35px;
    height: 40px;
    flex: 0 0 35px;
    border-radius: 50% 50% 48% 48% / 36% 36% 64% 64%;
    background: var(--green);
}

.domain-mark::after {
    position: absolute;
    top: 12px;
    left: 11px;
    width: 10px;
    height: 5px;
    border-bottom: 2px solid var(--white);
    border-left: 2px solid var(--white);
    content: "";
    transform: rotate(-45deg);
}

.hero-visual {
    position: relative;
    margin: 0;
    overflow: hidden;
    min-height: 340px;
    border: 9px solid rgba(255, 255, 255, 0.9);
    border-radius: 20px 20px 62px 20px;
    background: var(--green-dark);
    box-shadow: var(--shadow);
}

.hero-visual::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 47, 29, 0.04), rgba(8, 47, 29, 0.54));
    content: "";
}

.hero-visual img {
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: 62% center;
}

.hero-visual figcaption {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 18px;
    left: 18px;
    padding: 16px 18px;
    border-left: 3px solid #71ba8e;
    color: var(--white);
    background: rgba(8, 47, 29, 0.88);
    backdrop-filter: blur(8px);
}

.hero-visual figcaption strong {
    display: block;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1rem;
    line-height: 1.35;
}

.caption-kicker {
    display: block;
    margin-bottom: 4px;
    color: #bde1ca;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.section {
    padding: 72px 0;
}

.section-heading {
    max-width: 770px;
    margin-bottom: 40px;
}

.section-heading p:last-child {
    max-width: 680px;
    margin-bottom: 0;
    color: var(--muted);
}

.eyebrow,
.card-kicker {
    margin-bottom: 9px;
    color: var(--green);
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.preview-section {
    background: var(--white);
}

.preview-section .section-heading {
    max-width: 720px;
    margin-inline: auto;
    text-align: center;
}

.lookup-card {
    max-width: 1040px;
    margin-inline: auto;
    min-width: 0;
    border: 1px solid rgba(27, 115, 64, 0.24);
    border-radius: var(--radius-lg);
}

.lookup-card {
    padding: 26px;
    background:
        linear-gradient(rgba(27, 115, 64, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27, 115, 64, 0.035) 1px, transparent 1px),
        #fbfcfa;
    background-size: 26px 26px;
    box-shadow: 0 22px 60px rgba(8, 47, 29, 0.1);
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 28px;
}

.card-number {
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--green);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
}

.card-heading p {
    margin-bottom: 4px;
}

.lookup-controls label {
    display: block;
    margin: 0;
    color: var(--green-dark);
    font-size: 0.84rem;
    font-weight: 780;
}

.lookup-field {
    display: grid;
    min-width: 0;
    gap: 9px;
}

.control-row {
    display: grid;
    gap: 10px;
}

.control-row button {
    grid-column: 1 / -1;
    width: 100%;
    align-self: end;
}

.field-requirement {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.78rem;
    line-height: 1.5;
}

input,
button {
    min-height: 52px;
    border-radius: 10px;
    font: inherit;
}

input {
    width: 100%;
    min-width: 0;
    padding: 12px 15px;
    border: 1px solid #bfcac4;
    color: #52615b;
    background: #f1f3f1;
}

input::placeholder {
    color: #5f6d66;
    opacity: 1;
}

button {
    padding: 12px 23px;
    border: 1px solid #81958a;
    color: #ffffff;
    background: #667a70;
    font-weight: 800;
}

input:disabled,
button:disabled {
    cursor: not-allowed;
    opacity: 1;
}

.notice {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    margin: 20px 0 0;
    padding: 14px;
    border: 1px solid #e3cac7;
    border-radius: 11px;
    color: #6e3632;
    background: #fff7f6;
    font-size: 0.84rem;
    line-height: 1.55;
}

.notice-icon {
    display: grid;
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    place-items: center;
    border-radius: 50%;
    color: var(--white);
    background: var(--red);
    font-size: 0.74rem;
    font-weight: 900;
}

.lookup-guide {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.lookup-guide h3 {
    margin-bottom: 17px;
    font-size: 1.12rem;
}

.lookup-steps {
    display: grid;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.lookup-steps li {
    display: grid;
    grid-template-columns: 34px minmax(0, 1fr);
    min-width: 0;
    align-items: center;
    gap: 11px;
}

.step-number {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid rgba(27, 115, 64, 0.28);
    border-radius: 50%;
    color: var(--green);
    background: var(--green-soft);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 0.9rem;
    font-weight: 700;
}

.lookup-steps p {
    margin: 0;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.5;
}

.lookup-steps strong {
    display: block;
    color: var(--green-dark);
    font-size: 0.76rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.trust-section {
    padding: 38px 0;
    color: var(--white);
    background: var(--green-deep);
}

.trust-strip {
    display: grid;
    gap: 22px;
}

.eyebrow.light {
    color: #91caa7;
}

.trust-heading h2 {
    margin-bottom: 0;
    color: var(--white);
    font-size: clamp(1.55rem, 3vw, 2rem);
}

.trust-points {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.12);
    list-style: none;
}

.trust-points > li {
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    gap: 11px;
    padding: 14px;
    background: rgba(255, 255, 255, 0.045);
}

.trust-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    color: #a9d7ba;
    font-size: 0.66rem;
    font-weight: 800;
}

.trust-points p {
    margin: 0;
    color: #e5efe9;
    font-size: 0.8rem;
    line-height: 1.45;
}

.trust-points strong {
    overflow-wrap: anywhere;
    color: var(--white);
}

.trust-points a {
    color: #b9e4c8;
    font-weight: 750;
}

.site-footer {
    padding: 38px 0 24px;
    color: #cedbd3;
    background: #061f15;
}

.footer-grid {
    display: grid;
    gap: 24px;
    align-items: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-brand img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.footer-brand strong {
    display: block;
    color: var(--white);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
    line-height: 1.2;
}

.footer-brand p,
.footer-domain,
.footer-bottom p {
    margin: 0;
}

.footer-brand p {
    color: #91aa9c;
    font-size: 0.72rem;
}

.footer-domain {
    overflow-wrap: anywhere;
    font-size: 0.8rem;
    font-weight: 720;
}

.footer-domain span {
    display: block;
    color: #759284;
    font-size: 0.65rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
}

.footer-links a {
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 8px 20px;
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #789184;
    font-size: 0.7rem;
}

@keyframes status-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(168, 58, 50, 0.32);
    }
    55%,
    100% {
        box-shadow: 0 0 0 7px rgba(168, 58, 50, 0);
    }
}

@media (min-width: 640px) {
    .container {
        width: min(100% - 64px, 1200px);
    }

    .control-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    button {
        min-width: 150px;
    }

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

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

@media (min-width: 768px) {
    .header-inner {
        min-height: 94px;
    }

    .brand img {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
    }

    .product-label {
        max-width: none;
        font-size: 0.76rem;
    }

    .main-site-link {
        padding: 9px 14px;
        border: 1px solid rgba(27, 115, 64, 0.2);
        border-radius: 999px;
    }

    .hero {
        padding: 76px 0 86px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 430px;
    }

    .section {
        padding: 84px 0;
    }

    .lookup-card {
        padding: 38px;
    }

    .lookup-steps {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 0;
    }

    .lookup-steps li {
        align-items: start;
        padding-right: 20px;
    }

    .lookup-steps li + li {
        padding-right: 20px;
        padding-left: 20px;
        border-left: 1px solid var(--line);
    }

    .trust-section {
        padding: 42px 0;
    }

    .trust-points {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: minmax(250px, 1fr) auto auto;
    }

    .footer-links {
        grid-column: auto;
        justify-content: flex-end;
    }
}

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
        gap: clamp(50px, 7vw, 94px);
    }

    .hero-visual,
    .hero-visual img {
        min-height: 500px;
    }

    .trust-strip {
        grid-template-columns: minmax(230px, 0.65fr) minmax(0, 1.75fr);
        align-items: center;
        gap: 38px;
    }
}

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

    .header-inner {
        min-height: 76px;
    }

    .brand img {
        width: 47px;
        height: 47px;
        flex-basis: 47px;
    }

    .brand-name {
        font-size: 1.1rem;
    }

    .product-label {
        max-width: 145px;
        overflow: visible;
        font-size: 0.61rem;
        text-overflow: clip;
        white-space: normal;
    }

    .main-site-link span:first-child {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        clip-path: inset(50%);
        white-space: nowrap;
    }

    .main-site-link span:last-child {
        display: grid;
        width: 36px;
        height: 36px;
        place-items: center;
        border: 1px solid rgba(27, 115, 64, 0.2);
        border-radius: 50%;
    }

    .status-badge {
        align-items: flex-start;
        border-radius: 12px;
    }

    .status-badge span {
        margin-top: 3px;
        flex: 0 0 8px;
    }

    .hero-visual,
    .hero-visual img {
        min-height: 315px;
    }

    .hero-visual figcaption {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }

    .lookup-card {
        padding: 22px;
    }
}


/* Functional verification states */
.status-badge.active {
    border-color: rgba(27, 115, 64, 0.28);
    color: var(--green-dark);
    background: var(--green-soft);
}

.status-badge.active span {
    background: var(--green);
    box-shadow: none;
    animation: none;
}

.lookup-controls input {
    color: var(--ink);
    background: var(--white);
}

.lookup-controls input:focus-visible,
.lookup-controls button:focus-visible {
    outline: 3px solid #efb94c;
    outline-offset: 3px;
}

.lookup-controls button {
    border-color: var(--green);
    background: var(--green);
    cursor: pointer;
    transition: background-color 160ms ease, transform 160ms ease;
}

.lookup-controls button:hover {
    background: var(--green-dark);
    transform: translateY(-1px);
}

.lookup-controls .has-error {
    border-color: #bd4a41;
}

.validation-errors {
    margin: 18px 0 0;
    padding: 13px 15px;
    border: 1px solid #e3cac7;
    border-radius: 11px;
    color: #6e3632;
    background: #fff7f6;
    font-size: 0.86rem;
}

.search-outcome {
    margin-top: 30px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.search-outcome > h3 {
    margin-bottom: 18px;
}

.record-results {
    display: grid;
    gap: 16px;
}

.record-result {
    overflow: hidden;
    border: 1px solid rgba(27, 115, 64, 0.2);
    border-radius: 15px;
    background: var(--white);
    box-shadow: 0 12px 30px rgba(8, 47, 29, 0.07);
}

.record-result-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    border-bottom: 1px solid var(--line);
}

.record-result-heading h4 {
    margin: 0;
    color: var(--green-dark);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.25rem;
}

.verification-status {
    flex: 0 0 auto;
    padding: 5px 10px;
    border-radius: 999px;
    color: #145530;
    background: #dff1e6;
    font-size: 0.72rem;
    font-weight: 850;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.verification-status.revoked {
    color: #7f2e28;
    background: #f8dfdc;
}

.record-fields {
    display: grid;
    margin: 0;
}

.record-fields div {
    min-width: 0;
    padding: 14px 20px;
    border-top: 1px solid #edf1ee;
}

.record-fields div:first-child {
    border-top: 0;
}

.record-fields dt {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.record-fields dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: var(--ink);
    font-weight: 700;
}

.revoked-note,
.no-match {
    margin: 0;
    padding: 16px 20px;
    color: #6e3632;
    background: #fff7f6;
    font-size: 0.86rem;
}

@media (min-width: 640px) {
    .control-row {
        grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
    }

    .control-row button {
        grid-column: auto;
        width: auto;
    }

    .record-fields {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .record-fields div:nth-child(2) {
        border-top: 0;
    }

    .record-fields div:nth-child(even) {
        border-left: 1px solid #edf1ee;
    }
}

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

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}


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

    .status-badge span {
        animation: none;
    }
}
