/*(c) HAXTER CORPORATION GLOBAL | ALL RIGHTS RESERVED. */
:root {
    --white: #ffffff;
    --surface: #f6f7f9;
    --surface-2: #eef1f5;
    --text: #0e1624;
    --text-2: #2f3a4a;
    --muted: #687385;
    --line: #d9dee7;
    --line-2: #c7ced9;
    --navy: #07162b;
    --blue: #1e5eff;
    --blue-2: #1746bd;
    --steel: #3e4b5f;
    --success: #0f7a4f;
    --warning: #9a6b00;
    --shadow: 0 20px 60px rgba(14, 22, 36, 0.08);
    --shadow-2: 0 8px 30px rgba(14, 22, 36, 0.07);
    --max: 1180px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: Georgia, "Times New Roman", Times, serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.55;
    overflow-x: hidden;
}

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

.container {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.topbar {
    border-bottom: 1px solid var(--line);
    background: var(--white);
}

.topbar-inner {
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.73rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav {
    position: sticky;
    top: 0;
    z-index: 30;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
}

.nav-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

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

.brand-mark {
    width: 42px;
    height: 42px;
    border: 1px solid var(--navy);
    display: grid;
    place-items: center;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -0.05em;
}

.brand-mark::before {
    content: "H";
    font-size: 1.35rem;
}

.brand strong {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: 0.01em;
}

.brand span {
    display: block;
    margin-top: 2px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--muted);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 24px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    color: var(--text-2);
}

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

.nav-action {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 17px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 700;
}

.hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.91) 52%, rgba(255,255,255,0.72) 100%),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='1400' height='820' viewBox='0 0 1400 820'%3E%3Crect width='1400' height='820' fill='%23eef1f5'/%3E%3Cg fill='none' stroke='%23c7ced9' stroke-width='1'%3E%3Cpath d='M0 610 C250 540 430 690 680 595 S1120 480 1400 560'/%3E%3Cpath d='M0 500 C250 430 420 560 670 485 S1120 390 1400 455'/%3E%3Cpath d='M0 705 C260 640 480 760 760 670 S1180 590 1400 630'/%3E%3C/g%3E%3Cg fill='%2307162b' opacity='.08'%3E%3Ccircle cx='1010' cy='260' r='130'/%3E%3Ccircle cx='1180' cy='320' r='56'/%3E%3Ccircle cx='840' cy='390' r='34'/%3E%3C/g%3E%3Cg fill='%231e5eff' opacity='.14'%3E%3Ccircle cx='965' cy='250' r='4'/%3E%3Ccircle cx='1105' cy='302' r='4'/%3E%3Ccircle cx='835' cy='388' r='4'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
    border-bottom: 1px solid var(--line);
}

.hero-inner {
    min-height: 640px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 56px;
    align-items: center;
    padding: 76px 0;
}

.pretitle {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.76rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--blue-2);
    font-weight: 700;
    margin-bottom: 18px;
}

h1 {
    max-width: 840px;
    font-size: clamp(3rem, 6vw, 5.85rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
    font-weight: 500;
    color: var(--navy);
}

.hero-copy {
    max-width: 720px;
    margin-top: 26px;
    color: var(--text-2);
    font-size: 1.22rem;
    line-height: 1.75;
}

.hero-actions {
    margin-top: 34px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.button {
    font-family: Arial, Helvetica, sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--navy);
    background: var(--navy);
    color: var(--white);
    font-size: 0.88rem;
    font-weight: 700;
}

.button.secondary {
    background: transparent;
    color: var(--navy);
}

.hero-panel {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    padding: 28px;
}

.hero-panel h2 {
    font-size: 1.55rem;
    line-height: 1.16;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 20px;
}

.metric-list {
    display: grid;
    gap: 1px;
    border: 1px solid var(--line);
    background: var(--line);
}

.metric {
    background: var(--white);
    padding: 16px 16px 15px;
}

.metric strong {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.08rem;
    color: var(--navy);
    margin-bottom: 3px;
}

.metric span {
    display: block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.45;
}

section {
    padding: 92px 0;
}

.section-heading {
    max-width: 850px;
    margin-bottom: 42px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading .pretitle {
    margin-bottom: 14px;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.03;
    letter-spacing: -0.045em;
    font-weight: 500;
    color: var(--navy);
}

.section-heading p {
    margin-top: 20px;
    color: var(--text-2);
    font-size: 1.08rem;
    line-height: 1.78;
}

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

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
}

.card {
    background: var(--white);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-2);
    padding: 30px;
}

.card.subtle {
    background: var(--surface);
    box-shadow: none;
}

.card-number {
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blue-2);
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.card h3 {
    font-size: 1.42rem;
    line-height: 1.18;
    letter-spacing: -0.025em;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 500;
}

.card p {
    color: var(--text-2);
    font-size: 0.99rem;
    line-height: 1.75;
}

.card ul {
    list-style: none;
    margin-top: 18px;
    display: grid;
    gap: 10px;
}

.card li {
    position: relative;
    padding-left: 18px;
    color: var(--text-2);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.88rem;
    line-height: 1.55;
}

.card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.62em;
    width: 6px;
    height: 6px;
    background: var(--blue-2);
}

.band {
    background: var(--surface);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.architecture {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 44px;
    align-items: start;
}

.process {
    border: 1px solid var(--line);
    background: var(--white);
}

.process-row {
    display: grid;
    grid-template-columns: 96px 1fr;
    border-bottom: 1px solid var(--line);
}

.process-row:last-child {
    border-bottom: 0;
}

.process-index {
    display: grid;
    place-items: center;
    border-right: 1px solid var(--line);
    font-family: Arial, Helvetica, sans-serif;
    color: var(--blue-2);
    font-weight: 800;
}

.process-content {
    padding: 22px;
}

.process-content h3 {
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 7px;
}

.process-content p {
    color: var(--text-2);
    line-height: 1.68;
    font-size: 0.98rem;
}

.command-visual {
    min-height: 440px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.92)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='600' viewBox='0 0 900 600'%3E%3Crect width='900' height='600' fill='%23eef1f5'/%3E%3Cg stroke='%23c7ced9' stroke-width='1'%3E%3Cpath d='M0 130H900M0 260H900M0 390H900M0 520H900M120 0V600M240 0V600M360 0V600M480 0V600M600 0V600M720 0V600M840 0V600'/%3E%3C/g%3E%3Cg fill='none' stroke='%2307162b' stroke-width='2' opacity='.58'%3E%3Cpath d='M120 460 C220 360 320 390 390 285 C460 180 570 230 650 155 C710 100 780 112 830 80'/%3E%3C/g%3E%3Cg fill='%231e5eff'%3E%3Ccircle cx='120' cy='460' r='6'/%3E%3Ccircle cx='390' cy='285' r='6'/%3E%3Ccircle cx='650' cy='155' r='6'/%3E%3Ccircle cx='830' cy='80' r='6'/%3E%3C/g%3E%3C/svg%3E");
    background-size: cover;
    display: flex;
    align-items: flex-end;
    padding: 24px;
}

.visual-caption {
    max-width: 420px;
    background: var(--white);
    border: 1px solid var(--line);
    padding: 22px;
    box-shadow: var(--shadow-2);
}

.visual-caption strong {
    display: block;
    color: var(--navy);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-weight: 500;
}

.visual-caption span {
    display: block;
    color: var(--muted);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.84rem;
    line-height: 1.55;
}

.quote-section {
    background: var(--navy);
    color: var(--white);
}

.quote-section h2,
.quote-section .section-heading h2 {
    color: var(--white);
}

.quote-section p,
.quote-section .section-heading p {
    color: rgba(255,255,255,0.78);
}

.quote-section .pretitle {
    color: #9fbfff;
}

.statement {
    max-width: 980px;
    font-size: clamp(2rem, 4vw, 3.8rem);
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 500;
}

.compliance-box {
    border-left: 4px solid var(--blue-2);
    background: var(--surface);
    padding: 26px 28px;
}

.compliance-box strong {
    display: block;
    font-size: 1.28rem;
    font-weight: 500;
    color: var(--navy);
    margin-bottom: 8px;
}

.compliance-box p {
    color: var(--text-2);
    line-height: 1.75;
}

.cta {
    border-top: 1px solid var(--line);
    background: var(--white);
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 42px;
}

.cta-card h2 {
    font-size: clamp(2rem, 3vw, 3.2rem);
}

.cta-card p {
    margin-top: 15px;
    max-width: 740px;
    color: var(--text-2);
    line-height: 1.75;
}

@media (max-width: 980px) {
    .hero-inner,
    .architecture,
    .cta-card {
        grid-template-columns: 1fr;
    }

    .grid-3,
    .grid-2 {
        grid-template-columns: 1fr;
    }

    .hero-inner {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .topbar {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .nav-inner {
        min-height: 68px;
    }

    .hero-inner {
        padding: 56px 0;
    }

    section {
        padding: 64px 0;
    }

    .process-row {
        grid-template-columns: 70px 1fr;
    }

    .cta-card {
        padding: 28px;
    }
}

/* GLOBAL TYPOGRAPHY FLOOR: MINIMUM 1.5REM */
body,
body * {
    font-size: max(1.5rem, 1em) !important;
}

h1 {
    font-size: clamp(3rem, 6vw, 5.85rem) !important;
}

h2 {
    font-size: clamp(2.2rem, 4vw, 4rem) !important;
}

.cta-card h2 {
    font-size: clamp(2rem, 3vw, 3.2rem) !important;
}

.statement {
    font-size: clamp(2rem, 4vw, 3.8rem) !important;
}
