:root {
    --navy: #0c2340;
    --navy-deep: #07182c;
    --red: #ce1141;
    --purple: #552583;
    --gold: #fdb927;
    --ink: #122033;
    --muted: #5d6877;
    --surface: #ffffff;
    --soft: #f3f5f8;
    --line: #dfe4eb;
    --shadow: 0 24px 60px rgba(12, 35, 64, 0.12);
    --radius: 22px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

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

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    padding: 10px 16px;
    color: white;
    background: var(--navy);
    border-radius: 8px;
    transform: translateY(-150%);
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(12, 35, 64, 0.08);
    backdrop-filter: blur(18px);
}

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

.brand { display: block; flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }

nav {
    display: flex;
    align-items: center;
    gap: 34px;
    color: var(--navy);
    font-size: 0.93rem;
    font-weight: 700;
}

nav a { transition: color 160ms ease, transform 160ms ease; }
nav a:hover { color: var(--red); }

.nav-cta {
    padding: 10px 19px;
    color: white;
    background: var(--navy);
    border-radius: 999px;
}

nav .nav-cta:hover {
    color: white;
    background: var(--red);
    transform: translateY(-1px);
}

.hero {
    position: relative;
    min-height: 690px;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(12, 35, 64, 0.035) 1px, transparent 1px),
        linear-gradient(rgba(12, 35, 64, 0.035) 1px, transparent 1px),
        linear-gradient(135deg, #ffffff 45%, #f7f3fb 100%);
    background-size: 44px 44px, 44px 44px, auto;
}

.hero::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -190px;
    width: 470px;
    height: 470px;
    border: 80px solid rgba(253, 185, 39, 0.11);
    border-radius: 50%;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.11;
    pointer-events: none;
}

.hero-glow-red {
    top: -150px;
    left: -180px;
    width: 430px;
    height: 430px;
    background: var(--red);
}

.hero-glow-purple {
    top: 80px;
    right: 3%;
    width: 430px;
    height: 430px;
    background: var(--purple);
}

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: clamp(52px, 7vw, 100px);
    padding-block: 94px 102px;
}

.eyebrow,
.section-kicker {
    margin: 0 0 18px;
    color: var(--purple);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
}

.eyebrow span {
    width: 22px;
    height: 4px;
    background: var(--red);
    border-radius: 99px;
}

h1, h2, h3, p { text-wrap: pretty; }

h1, h2, h3 {
    margin-top: 0;
    color: var(--navy);
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    margin-bottom: 26px;
    font-size: clamp(3rem, 5.8vw, 5.25rem);
}

h1 span {
    color: var(--purple);
    background: linear-gradient(90deg, var(--purple), var(--red));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-lead {
    max-width: 640px;
    margin: 0;
    color: var(--muted);
    font-size: 1.14rem;
    line-height: 1.75;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 52px;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover { transform: translateY(-2px); }

.button-primary {
    color: white;
    background: var(--red);
    box-shadow: 0 12px 28px rgba(206, 17, 65, 0.22);
}

.button-primary:hover { box-shadow: 0 16px 34px rgba(206, 17, 65, 0.3); }

.button-secondary {
    color: var(--navy);
    background: white;
    border-color: var(--line);
}

.button-secondary:hover { border-color: var(--purple); }

.capability-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin: 32px 0 0;
    padding: 0;
    color: var(--navy);
    font-size: 0.86rem;
    font-weight: 750;
    list-style: none;
}

.capability-list li { display: flex; align-items: center; gap: 7px; }

.check {
    display: grid;
    width: 19px;
    height: 19px;
    color: white;
    background: var(--gold);
    border-radius: 50%;
    place-items: center;
    font-size: 0.7rem;
    font-weight: 900;
}

.security-visual {
    position: relative;
    padding: 22px;
    overflow: hidden;
    color: white;
    background:
        radial-gradient(circle at 92% 8%, rgba(253, 185, 39, 0.25), transparent 32%),
        linear-gradient(145deg, #0d294a, var(--navy-deep));
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 30px;
    box-shadow: var(--shadow), 18px 18px 0 rgba(85, 37, 131, 0.09);
}

.security-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.12;
    background-image: radial-gradient(rgba(255, 255, 255, 0.8) 1px, transparent 1px);
    background-size: 18px 18px;
    pointer-events: none;
}

.visual-topline,
.visual-metrics,
.network-map { position: relative; z-index: 1; }

.visual-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 3px 17px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    color: #d6deea;
    font-size: 0.78rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status { display: flex; align-items: center; gap: 7px; color: white; }

.status i {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(253, 185, 39, 0.16);
}

.network-map { height: 330px; }

.core-node,
.network-node {
    position: absolute;
    z-index: 3;
    display: grid;
    text-align: center;
    place-items: center;
}

.core-node {
    top: 50%;
    left: 50%;
    width: 154px;
    height: 154px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    box-shadow: 0 0 0 15px rgba(85, 37, 131, 0.13), 0 0 40px rgba(253, 185, 39, 0.12);
    transform: translate(-50%, -50%);
}

.shield-mark {
    display: grid;
    width: 54px;
    height: 54px;
    color: white;
    background: linear-gradient(135deg, var(--red), var(--purple));
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 17px 17px 24px 24px;
    place-items: center;
    font-size: 1.25rem;
    font-style: italic;
    font-weight: 900;
    transform: translateY(5px);
}

.core-node strong { font-size: 0.92rem; line-height: 1; }
.core-node > span { color: #aebbd0; font-size: 0.68rem; transform: translateY(-5px); }

.network-node {
    width: 58px;
    height: 58px;
    background: #132f51;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 18px;
    box-shadow: 0 9px 22px rgba(0, 0, 0, 0.22);
}

.network-node::before {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--gold);
    border-radius: 50%;
}

.network-node span {
    position: absolute;
    top: calc(100% + 5px);
    color: #c7d1df;
    font-size: 0.64rem;
    font-weight: 700;
}

.node-cloud { top: 25px; left: 34px; }
.node-users { top: 31px; right: 35px; }
.node-sites { bottom: 31px; left: 32px; }
.node-data { right: 32px; bottom: 27px; }
.node-cloud::before { background: var(--red); }
.node-users::before { background: var(--purple); }
.node-sites::before { background: var(--gold); }
.node-data::before { background: white; }

.network-line {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 50%;
    width: 155px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.07), rgba(253, 185, 39, 0.6));
    transform-origin: left center;
}

.line-one { transform: rotate(217deg); }
.line-two { transform: rotate(319deg); }
.line-three { transform: rotate(139deg); }
.line-four { transform: rotate(41deg); }

.visual-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.visual-metrics div {
    display: grid;
    gap: 3px;
    padding: 14px 12px;
    background: rgba(7, 24, 44, 0.76);
}

.visual-metrics strong { color: var(--gold); font-size: 0.8rem; }
.visual-metrics span { color: #9facc0; font-size: 0.61rem; line-height: 1.3; }

.services-section { padding-block: 112px; background: var(--soft); }

.section-heading {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: end;
    gap: 80px;
    margin-bottom: 52px;
}

.section-heading h2,
.approach-copy h2,
.contact-card h2 {
    margin-bottom: 0;
    font-size: clamp(2.2rem, 4vw, 3.65rem);
}

.section-heading > p {
    margin: 0 0 3px;
    color: var(--muted);
    font-size: 1.04rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    --accent: var(--navy);
    position: relative;
    min-height: 286px;
    padding: 30px;
    overflow: hidden;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--accent);
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: 0 18px 36px rgba(12, 35, 64, 0.09);
    transform: translateY(-5px);
}

.accent-red { --accent: var(--red); }
.accent-purple { --accent: var(--purple); }
.accent-gold { --accent: var(--gold); }
.accent-navy { --accent: var(--navy); }

.service-number {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 27px;
    color: var(--accent);
    background: #f5f3f8;
    border-radius: 12px;
    place-items: center;
    font-size: 0.78rem;
    font-weight: 900;
}

.service-card h3 { margin-bottom: 13px; font-size: 1.25rem; letter-spacing: -0.02em; }
.service-card p { margin: 0; color: var(--muted); font-size: 0.93rem; }

.service-tag {
    position: absolute;
    bottom: 26px;
    left: 30px;
    color: var(--accent);
    font-size: 0.74rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.approach-section {
    position: relative;
    overflow: hidden;
    padding-block: 112px;
    color: white;
    background: linear-gradient(115deg, rgba(85, 37, 131, 0.68), transparent 42%), var(--navy-deep);
}

.approach-section::before {
    content: "23";
    position: absolute;
    top: 50%;
    left: 7%;
    color: rgba(255, 255, 255, 0.025);
    font-size: 27rem;
    font-style: italic;
    font-weight: 950;
    line-height: 1;
    transform: translateY(-50%);
}

.approach-grid {
    position: relative;
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    align-items: center;
    gap: 100px;
}

.section-kicker.light { color: var(--gold); }
.approach-copy h2 { color: white; }

.approach-copy > p:not(.section-kicker) {
    max-width: 520px;
    color: #bdc7d5;
    font-size: 1.04rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 17px;
    color: var(--gold);
    font-weight: 800;
}

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

.approach-steps li {
    display: grid;
    grid-template-columns: 54px 1fr;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(255, 255, 255, 0.11);
    border-radius: 18px;
}

.approach-steps li > span {
    display: grid;
    width: 48px;
    height: 48px;
    color: var(--navy);
    background: var(--gold);
    border-radius: 15px;
    place-items: center;
    font-weight: 900;
}

.approach-steps h3 { margin-bottom: 5px; color: white; font-size: 1.15rem; }
.approach-steps p { margin: 0; color: #aeb9c8; font-size: 0.91rem; }

.contact-section { padding-block: 90px; background: white; }

.contact-card {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 60px;
    padding: 52px 58px;
    overflow: hidden;
    color: white;
    background: linear-gradient(120deg, var(--purple), #39165f);
    border-radius: 28px;
    box-shadow: 0 24px 60px rgba(85, 37, 131, 0.2);
}

.contact-card::after {
    content: "";
    position: absolute;
    top: -110px;
    right: -70px;
    width: 300px;
    height: 300px;
    border: 55px solid rgba(253, 185, 39, 0.14);
    border-radius: 50%;
}

.contact-card > * { position: relative; z-index: 1; }
.contact-card .section-kicker { color: var(--gold); }
.contact-card h2 { color: white; }
.contact-card p:not(.section-kicker) { max-width: 680px; margin-bottom: 0; color: #e3dced; }

.button-gold {
    color: var(--navy);
    background: var(--gold);
    white-space: nowrap;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

footer { padding-block: 37px; color: #aab4c2; background: var(--navy-deep); }

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.footer-inner p { margin: 0; font-size: 0.77rem; }
.footer-brand strong { display: block; margin-bottom: 3px; color: white; letter-spacing: -0.01em; }
.footer-brand strong span { color: var(--gold); font-style: italic; }

a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }

@media (max-width: 980px) {
    .hero-grid,
    .approach-grid { grid-template-columns: 1fr; }
    .hero-grid { padding-block: 75px 88px; }
    .security-visual { width: min(600px, 100%); }
    .section-heading { grid-template-columns: 1fr; gap: 20px; }
    .section-heading > p { max-width: 680px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .approach-grid { gap: 55px; }
    .contact-card { grid-template-columns: 1fr; gap: 30px; }
    .button-gold { justify-self: start; }
}

@media (max-width: 680px) {
    .container { width: min(100% - 28px, 1160px); }
    .header-inner { min-height: 78px; }
    .brand img { width: 160px; }
    nav { gap: 10px; }
    nav > a:not(.nav-cta) { display: none; }
    .nav-cta { padding: 9px 16px; font-size: 0.84rem; }
    .hero { min-height: auto; }
    .hero-grid { gap: 55px; padding-block: 58px 70px; }
    h1 { font-size: clamp(2.65rem, 13vw, 4rem); }
    .hero-lead { font-size: 1rem; }
    .hero-actions, .hero-actions .button { width: 100%; }
    .capability-list { gap: 11px 17px; }
    .security-visual { padding: 17px; border-radius: 22px; }
    .network-map { height: 285px; transform: scale(0.92); }
    .network-line { width: 120px; }
    .visual-metrics { grid-template-columns: 1fr; }
    .services-section, .approach-section { padding-block: 78px; }
    .services-grid { grid-template-columns: 1fr; }
    .service-card { min-height: 270px; }
    .approach-steps li { grid-template-columns: 46px 1fr; gap: 15px; padding: 20px; }
    .approach-steps li > span { width: 43px; height: 43px; }
    .contact-section { padding-block: 58px; }
    .contact-card { padding: 38px 25px; border-radius: 22px; }
    .contact-card .button { width: 100%; white-space: normal; }
    .footer-inner { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; }
}
