:root {
    --background: #05070a;
    --surface: #090d12;
    --surface-2: #0c1118;
    --surface-3: #111821;
    --line: rgba(255, 255, 255, .085);
    --line-red: rgba(237, 28, 36, .28);
    --red: #ed1c24;
    --red-light: #ff343b;
    --red-dark: #a60f15;
    --white: #f8f9fb;
    --text: #c1c7d0;
    --muted: #717c89;
    --green: #3bd28d;
}

* {
    box-sizing: border-box;
}

html {
    background: var(--background);
    color-scheme: dark;
}

body {
    margin: 0;
    min-width: 320px;
    min-height: 100vh;
    overflow-x: hidden;
    background:
        radial-gradient(
            circle at 17% 29%,
            rgba(166, 15, 21, .18),
            transparent 26rem
        ),
        radial-gradient(
            circle at 92% 52%,
            rgba(237, 28, 36, .08),
            transparent 34rem
        ),
        linear-gradient(
            135deg,
            #05070a 0%,
            #070a0e 47%,
            #050609 100%
        );
    color: var(--white);
    font-family:
        "Segoe UI",
        Inter,
        ui-sans-serif,
        -apple-system,
        BlinkMacSystemFont,
        Arial,
        sans-serif;
    -webkit-font-smoothing: antialiased;
}

body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    opacity: .17;
    pointer-events: none;
    background-image:
        linear-gradient(
            rgba(255, 255, 255, .022) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, .018) 1px,
            transparent 1px
        );
    background-size: 62px 62px;
}

a {
    color: inherit;
}

.page-glow {
    position: fixed;
    z-index: -2;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.page-glow-one {
    top: 150px;
    left: -280px;
    background: rgba(237, 28, 36, .09);
}

.page-glow-two {
    right: -300px;
    bottom: 0;
    background: rgba(237, 28, 36, .06);
}


/* HEADER */

.site-header {
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--line);
    background: rgba(5, 7, 10, .88);
    backdrop-filter: blur(20px);
}

.site-header::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 31%;
    height: 1px;
    background:
        linear-gradient(
            90deg,
            transparent,
            var(--red),
            transparent
        );
}

.header-inner {
    width: min(1440px, calc(100% - 72px));
    min-height: 108px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

.avturk-brand {
    width: fit-content;
    display: flex;
    align-items: center;
}

.avturk-brand img {
    width: auto;
    height: 57px;
    max-width: 300px;
    display: block;
    object-fit: contain;
}

.partner-brand {
    min-width: 230px;
    display: grid;
    justify-items: center;
    gap: 4px;
}

.partner-brand img {
    display: block;
    width: auto;
    height: 42px;
    max-width: 240px;
    object-fit: contain;
}

.partner-label {
    color: #515b67;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .23em;
}

.environment-status {
    justify-self: end;
    min-width: 258px;
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background:
        linear-gradient(
            135deg,
            rgba(16, 23, 32, .95),
            rgba(8, 12, 17, .95)
        );
}

.status-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 28, 36, .45);
    border-radius: 6px;
}

.status-icon span {
    width: 9px;
    height: 15px;
    display: block;
    border-right: 2px solid var(--red-light);
    border-bottom: 2px solid var(--red-light);
    transform: translateY(-2px) rotate(45deg);
}

.status-copy {
    flex: 1;
}

.status-copy strong,
.status-copy small {
    display: block;
}

.status-copy strong {
    color: #e8ebef;
    font-size: 10px;
    letter-spacing: .07em;
}

.status-copy small {
    margin-top: 4px;
    color: #64707e;
    font-size: 8px;
    letter-spacing: .1em;
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow:
        0 0 0 4px rgba(59, 210, 141, .07),
        0 0 13px rgba(59, 210, 141, .4);
}


/* HERO */

main {
    width: min(1440px, calc(100% - 72px));
    margin: 0 auto;
}

.hero {
    position: relative;
    padding: 76px 0 54px;
}

.hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 57%;
    width: 1px;
    height: 69%;
    opacity: .36;
    background:
        linear-gradient(
            transparent,
            rgba(237, 28, 36, .7),
            transparent
        );
}

.hero-grid {
    display: grid;
    grid-template-columns:
        minmax(0, 1.16fr)
        minmax(430px, .84fr);
    gap: 82px;
    align-items: center;
}

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

.section-kicker {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--red-light);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .18em;
}

.section-kicker span {
    width: 28px;
    height: 2px;
    display: block;
    background: var(--red);
}

.hero h1 {
    max-width: 760px;
    margin: 20px 0 0;
    color: #f5f6f8;
    font-size: clamp(58px, 5.2vw, 84px);
    font-weight: 750;
    line-height: .98;
    letter-spacing: -.055em;
}

.hero h1 em {
    display: block;
    margin-top: 4px;
    color: var(--red);
    font-style: normal;
    font-weight: 760;
}

.hero-lead {
    max-width: 690px;
    margin: 28px 0 0;
    color: #adb5bf;
    font-size: 15px;
    line-height: 1.75;
}

.campaign-card {
    max-width: 455px;
    min-height: 78px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 31px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background:
        linear-gradient(
            120deg,
            rgba(16, 22, 30, .92),
            rgba(8, 12, 17, .89)
        );
    box-shadow:
        inset 3px 0 0 rgba(237, 28, 36, .75);
}

.campaign-icon {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 28, 36, .55);
    border-radius: 7px;
    background: rgba(237, 28, 36, .055);
}

.campaign-icon span {
    position: relative;
    width: 15px;
    height: 15px;
    display: block;
    transform: rotate(45deg);
    border: 2px solid var(--red);
}

.campaign-icon span::after {
    content: "";
    position: absolute;
    inset: 3px;
    background: var(--red);
}

.campaign-content {
    flex: 1;
}

.campaign-content small,
.campaign-content strong {
    display: block;
}

.campaign-content small {
    color: #6c7682;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .15em;
}

.campaign-content strong {
    margin-top: 6px;
    color: #f3f5f7;
    font-family:
        Consolas,
        "SFMono-Regular",
        monospace;
    font-size: 16px;
    letter-spacing: .08em;
}

.campaign-live {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 6px 8px;
    border: 1px solid rgba(59, 210, 141, .12);
    border-radius: 3px;
    color: #78838f;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .1em;
}

.campaign-live i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}

.capabilities {
    max-width: 790px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 38px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.capability {
    min-height: 112px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 13px;
    align-items: center;
    padding: 23px 22px 23px 0;
    border-right: 1px solid var(--line);
}

.capability + .capability {
    padding-left: 22px;
}

.capability:last-child {
    border-right: 0;
}

.capability-number {
    color: var(--red);
    font-family: Consolas, monospace;
    font-size: 10px;
}

.capability strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
}

.capability p {
    margin: 5px 0 0;
    color: #78828e;
    font-size: 10px;
    line-height: 1.5;
}


/* VALIDATION PANEL */

.validation-panel {
    position: relative;
    overflow: hidden;
    padding: 39px 38px 26px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 9px;
    background:
        radial-gradient(
            circle at 100% 100%,
            rgba(237, 28, 36, .075),
            transparent 44%
        ),
        linear-gradient(
            145deg,
            rgba(13, 19, 26, .97),
            rgba(8, 12, 17, .97)
        );
    box-shadow:
        0 30px 75px rgba(0, 0, 0, .34),
        inset 0 1px 0 rgba(255, 255, 255, .025);
}

.validation-panel::before {
    content: "";
    position: absolute;
    top: 0;
    left: 38px;
    width: 68px;
    height: 2px;
    background: var(--red);
}

.validation-panel::after {
    content: "AVTÜRK LAB";
    position: absolute;
    right: -8px;
    bottom: 85px;
    color: rgba(255, 255, 255, .018);
    font-size: 54px;
    font-weight: 800;
    letter-spacing: -.04em;
    transform: rotate(-90deg);
    pointer-events: none;
}

.panel-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 25px;
}

.panel-eyebrow {
    color: var(--red-light);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.panel-top h2 {
    margin: 10px 0 0;
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -.035em;
}

.shield-symbol {
    width: 51px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 28, 36, .55);
    border-radius: 8px 8px 15px 15px;
    background: rgba(237, 28, 36, .035);
}

.shield-symbol span {
    color: var(--red-light);
    font-size: 17px;
}

.panel-description {
    max-width: 440px;
    margin: 18px 0 26px;
    color: #87919d;
    font-size: 12px;
    line-height: 1.7;
}

.validation-form {
    display: grid;
    gap: 19px;
}

.field-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 8px;
}

.field label {
    color: #d6dbe1;
    font-size: 10px;
    font-weight: 700;
}

.field-heading span {
    color: #59636f;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .1em;
}

.select-wrap,
.code-input {
    position: relative;
}

.select-wrap::after {
    content: "⌄";
    position: absolute;
    top: 50%;
    right: 15px;
    color: #7e8995;
    font-size: 15px;
    transform: translateY(-58%);
    pointer-events: none;
}

.validation-form select,
.validation-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #283440;
    border-radius: 5px;
    outline: 0;
    color: #e7eaee;
    background: #101821;
    font: inherit;
    font-size: 11px;
    transition:
        border-color .18s ease,
        box-shadow .18s ease,
        background .18s ease;
}

.validation-form select {
    appearance: none;
    padding-right: 42px;
}

.validation-form input {
    padding-right: 46px;
    font-family: Consolas, monospace;
    letter-spacing: .04em;
}

.validation-form select:focus,
.validation-form input:focus {
    border-color: rgba(237, 28, 36, .72);
    background: #121b25;
    box-shadow:
        0 0 0 3px rgba(237, 28, 36, .07);
}

.lock-mark {
    position: absolute;
    top: 50%;
    right: 17px;
    color: #586471;
    font-size: 8px;
    transform: translateY(-50%);
}

.primary-action {
    width: 100%;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 5px;
    padding: 0 20px;
    border: 1px solid #ff3f46;
    border-radius: 5px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            #ed1c24,
            #bf1017
        );
    box-shadow:
        0 10px 28px rgba(237, 28, 36, .12);
    font: inherit;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .03em;
    cursor: pointer;
    transition:
        transform .17s ease,
        filter .17s ease,
        box-shadow .17s ease;
}

.primary-action:hover {
    transform: translateY(-1px);
    filter: brightness(1.08);
    box-shadow:
        0 14px 34px rgba(237, 28, 36, .2);
}

.primary-action i {
    font-style: normal;
    font-size: 17px;
    font-weight: 400;
}

.panel-footer {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin: 27px -38px -26px;
    padding: 16px 38px;
    border-top: 1px solid var(--line);
    color: #535e6a;
    background: rgba(0, 0, 0, .12);
    font-family: Consolas, monospace;
    font-size: 7px;
    letter-spacing: .08em;
}

.encrypted {
    display: flex;
    align-items: center;
    gap: 7px;
}

.encrypted i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green);
}


/* ENDPOINT */

.endpoint-area {
    padding: 24px 0 53px;
}

.endpoint-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 25px;
    margin-bottom: 19px;
}

.section-label {
    color: var(--red);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: .17em;
}

.endpoint-title-row h2 {
    margin: 7px 0 0;
    font-size: 24px;
    letter-spacing: -.025em;
}

.endpoint-status {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6d7782;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .12em;
}

.endpoint-status i {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    box-shadow: 0 0 10px rgba(59, 210, 141, .35);
}

.endpoint-card {
    position: relative;
    overflow: hidden;
    min-height: 138px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    padding: 25px 26px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background:
        linear-gradient(
            115deg,
            rgba(13, 19, 26, .97),
            rgba(8, 12, 17, .98)
        );
}

.endpoint-card::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 360px;
    height: 100%;
    pointer-events: none;
    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(237, 28, 36, .035)
        );
}

.windows-mark {
    width: 78px;
    height: 78px;
    display: grid;
    grid-template-columns: repeat(2, 20px);
    grid-template-rows: repeat(2, 20px);
    place-content: center;
    gap: 3px;
    border: 1px solid #27323d;
    border-radius: 7px;
    background:
        linear-gradient(
            145deg,
            #151e27,
            #0c131a
        );
}

.windows-mark span {
    background: #c9d0d8;
}

.endpoint-copy {
    position: relative;
    z-index: 2;
}

.endpoint-heading {
    display: flex;
    align-items: center;
    gap: 12px;
}

.endpoint-heading h3 {
    margin: 0;
    font-size: 18px;
    letter-spacing: -.02em;
}

.version-tag {
    padding: 5px 7px;
    border: 1px solid #27333f;
    border-radius: 3px;
    color: #83909c;
    background: #101821;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .08em;
}

.endpoint-copy p {
    max-width: 690px;
    margin: 8px 0 0;
    color: #7e8995;
    font-size: 11px;
    line-height: 1.65;
}

.utility-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 17px;
    margin-top: 14px;
}

.utility-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #646f7a;
    font-size: 8px;
}

.utility-meta i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--red);
}

.download-agent {
    position: relative;
    z-index: 2;
    min-width: 235px;
    height: 75px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 0 19px;
    border: 1px solid rgba(255, 60, 67, .82);
    border-radius: 6px;
    color: #fff;
    background:
        linear-gradient(
            135deg,
            rgba(237, 28, 36, .96),
            rgba(181, 14, 21, .97)
        );
    text-decoration: none;
    box-shadow:
        0 12px 28px rgba(237, 28, 36, .1);
    transition:
        transform .17s ease,
        filter .17s ease;
}

.download-agent:hover {
    transform: translateY(-2px);
    filter: brightness(1.08);
}

.download-copy small,
.download-copy strong {
    display: block;
}

.download-copy small {
    color: rgba(255, 255, 255, .62);
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .12em;
}

.download-copy strong {
    margin-top: 4px;
    font-size: 13px;
}

.download-arrow {
    font-size: 24px;
    font-weight: 300;
}


/* SECURITY STRIP */

.security-notice {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 45px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.security-notice article {
    min-height: 101px;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 15px;
    align-items: center;
    padding: 24px 25px;
    border-right: 1px solid var(--line);
}

.security-notice article:last-child {
    border-right: 0;
}

.notice-icon {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(237, 28, 36, .34);
    border-radius: 50%;
    color: var(--red);
    font-family: Consolas, monospace;
    font-size: 8px;
}

.security-notice strong {
    display: block;
    color: #c9cfd6;
    font-size: 9px;
    letter-spacing: .07em;
}

.security-notice p {
    margin: 5px 0 0;
    color: #68737f;
    font-size: 9px;
    line-height: 1.55;
}


/* FOOTER */

.site-footer {
    border-top: 1px solid var(--line);
    background: rgba(3, 5, 7, .75);
}

.footer-inner {
    width: min(1440px, calc(100% - 72px));
    min-height: 89px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 30px;
}

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

.footer-brand img {
    width: auto;
    height: 31px;
    max-width: 160px;
    object-fit: contain;
    opacity: .68;
}

.footer-brand span,
.footer-center,
.footer-campaign {
    color: #4c5662;
    font-size: 7px;
    font-weight: 700;
    letter-spacing: .11em;
}

.footer-center {
    text-align: center;
}

.footer-campaign {
    justify-self: end;
}

.footer-campaign strong {
    margin-left: 8px;
    color: #7f8995;
    font-family: Consolas, monospace;
}


/* RESPONSIVE */

@media (max-width: 1120px) {

    .header-inner,
    main,
    .footer-inner {
        width: min(100% - 38px, 1000px);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .hero::after {
        display: none;
    }

    .validation-panel {
        max-width: 720px;
    }

    .hero h1 {
        max-width: 800px;
    }

}

@media (max-width: 820px) {

    .header-inner {
        min-height: 86px;
        grid-template-columns: 1fr auto;
    }

    .avturk-brand img {
        height: 44px;
        max-width: 210px;
    }

    .partner-brand {
        justify-self: end;
        min-width: auto;
    }

    .partner-brand img {
        height: 34px;
        max-width: 160px;
    }

    .partner-label,
    .environment-status {
        display: none;
    }

    .hero {
        padding-top: 52px;
    }

    .hero h1 {
        font-size: clamp(49px, 10vw, 70px);
    }

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

    .capability,
    .capability + .capability {
        min-height: 90px;
        padding: 18px 0;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .capability:last-child {
        border-bottom: 0;
    }

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

    .download-agent {
        grid-column: 1 / -1;
    }

    .security-notice {
        grid-template-columns: 1fr;
    }

    .security-notice article {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .security-notice article:last-child {
        border-bottom: 0;
    }

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 24px 0;
    }

    .footer-center,
    .footer-campaign {
        justify-self: start;
        text-align: left;
    }

}

@media (max-width: 560px) {

    .header-inner,
    main,
    .footer-inner {
        width: calc(100% - 26px);
    }

    .site-header .partner-brand {
        display: none;
    }

    .header-inner {
        grid-template-columns: 1fr;
    }

    .hero {
        padding: 41px 0;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-lead {
        font-size: 13px;
    }

    .campaign-card {
        width: 100%;
    }

    .campaign-live {
        display: none;
    }

    .validation-panel {
        padding: 31px 22px 22px;
    }

    .validation-panel::before {
        left: 22px;
    }

    .panel-footer {
        margin:
            24px -22px -22px;
        padding:
            15px 22px;
    }

    .panel-top h2 {
        font-size: 26px;
    }

    .shield-symbol {
        display: none;
    }

    .endpoint-title-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .endpoint-card {
        grid-template-columns: 1fr;
    }

    .windows-mark {
        width: 64px;
        height: 64px;
    }

    .endpoint-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .download-agent {
        min-width: 0;
        width: 100%;
    }

}

/* FINAL BRAND POLISH */

.partner-brand {
    width: 280px;
    height: 68px;
    overflow: hidden;
    display: grid;
    align-content: center;
    justify-items: center;
}

.partner-brand img {
    height: 52px;
    width: 230px;
    max-width: none;
    object-fit: contain;
    transform: scale(2.05);
    transform-origin: center;
}

.partner-label {
    position: relative;
    z-index: 2;
    margin-bottom: -7px;
    color: #65707c;
    font-size: 8px;
    letter-spacing: .22em;
}

.avturk-brand img {
    height: 62px;
}

.endpoint-card {
    box-shadow:
        0 18px 50px rgba(0,0,0,.16),
        inset 0 1px 0 rgba(255,255,255,.025);
}

.validation-panel {
    box-shadow:
        0 30px 90px rgba(0,0,0,.38),
        0 0 50px rgba(237,28,36,.025),
        inset 0 1px 0 rgba(255,255,255,.03);
}

@media (max-width: 820px) {
    .partner-brand {
        width: 190px;
        height: 54px;
    }

    .partner-brand img {
        width: 160px;
        height: 40px;
        transform: scale(1.8);
    }

    .avturk-brand img {
        height: 46px;
    }
}

/* WatchGuard logo final sizing */
.partner-brand {
    width: 220px;
    height: 58px;
}

.partner-brand img {
    width: 175px;
    height: 42px;
    max-width: 175px;
    object-fit: contain;
    transform: none;
}

@media (max-width: 820px) {
    .partner-brand {
        width: 160px;
        height: 48px;
    }

    .partner-brand img {
        width: 135px;
        height: 34px;
        max-width: 135px;
        transform: none;
    }
}
