/* =========================================================================
   IPXCORE / NETWORK OPERATIONS CENTER
   A redesign in the spirit of dim sysadmin terminals, blueprint paper,
   rack-mount equipment labels and CRT phosphor.
   ========================================================================= */

:root {
    --noc-bg:              #0a0e0c;
    --noc-bg-deep:         #060807;
    --noc-surface:         #11161312;
    --noc-surface-solid:   #131815;
    --noc-surface-2:       #1a201c;
    --noc-border:          #283029;
    --noc-border-bright:   #3a4a3f;
    --noc-grid:            rgba(140, 186, 83, 0.05);
    --noc-grid-strong:     rgba(140, 186, 83, 0.10);

    --noc-phosphor:        #8cba53;          /* brand green, kept */
    --noc-phosphor-bright: #b1de7a;
    --noc-phosphor-dim:    #5e7e3a;
    --noc-phosphor-glow:   rgba(140, 186, 83, 0.45);

    --noc-amber:           #f5b800;
    --noc-amber-glow:      rgba(245, 184, 0, 0.35);
    --noc-cyan:            #5fd1ff;
    --noc-red:             #e84747;

    --noc-text:            #dde4d8;
    --noc-text-dim:        #8a9388;
    --noc-text-faint:      #525c54;

    --font-display: "Big Shoulders Display", "Oswald", "Impact", sans-serif;
    --font-mono:    "Martian Mono", "JetBrains Mono", "Menlo", "Consolas", monospace;
    --font-brand:   "Podkova", serif;
}

/* ---------- reset / base over Bootstrap ---------- */

html, body {
    background: var(--noc-bg);
    color: var(--noc-text);
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.55;
    letter-spacing: 0.01em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    background-color: var(--noc-bg);
    background-image:
        /* subtle warm green vignette top-right */
        radial-gradient(ellipse 1100px 700px at 85% -10%, rgba(140,186,83,0.10), transparent 60%),
        radial-gradient(ellipse 700px 500px at 5% 110%, rgba(245,184,0,0.04), transparent 60%),
        /* graph-paper grid */
        linear-gradient(var(--noc-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--noc-grid) 1px, transparent 1px),
        /* sub-grid */
        linear-gradient(var(--noc-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--noc-grid) 1px, transparent 1px);
    background-size:
        100% 100%,
        100% 100%,
        80px 80px,
        80px 80px,
        16px 16px,
        16px 16px;
    background-position:
        0 0, 0 0,
        -1px -1px, -1px -1px,
        -1px -1px, -1px -1px;
    background-attachment: fixed;
}

/* faint scanline overlay for CRT vibe (very subtle, won't fight readability) */
body::before {
    content: "";
    pointer-events: none;
    position: fixed;
    inset: 0;
    background: repeating-linear-gradient(
        180deg,
        rgba(255,255,255,0.012) 0,
        rgba(255,255,255,0.012) 1px,
        transparent 1px,
        transparent 3px
    );
    z-index: 1;
    mix-blend-mode: overlay;
}

a {
    color: var(--noc-phosphor-bright);
    text-decoration: none;
    transition: color 120ms ease;
}
a:hover, a:focus {
    color: var(--noc-amber);
    text-decoration: none;
}

/* The brand wordmark "ipxcore" — keep Podkova but warm into theme */
.ipxcore {
    font-family: var(--font-brand) !important;
    color: var(--noc-text) !important;
}
.ipxcore + .ipxcore,
[style*="color: #8cba53"] {
    color: var(--noc-phosphor) !important;
    text-shadow: 0 0 12px var(--noc-phosphor-glow);
}

/* Reusable inline wordmark — drop into any prose to render
   "ipxcore" with the brand styling at the surrounding font size.
   Podkova has a smaller x-height than Martian Mono, so it reads small
   at the same px — bump it up to optically match the surrounding text. */
.brand-mark {
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 1.32em;
    line-height: 1;
    letter-spacing: 0;
    vertical-align: baseline;
}
.brand-mark .ipx  { color: var(--noc-text); }
.brand-mark .core {
    color: var(--noc-phosphor);
    text-shadow: 0 0 10px var(--noc-phosphor-glow);
}

p { color: var(--noc-text-dim); }
hr { border-color: var(--noc-border); }

::selection {
    background: var(--noc-phosphor);
    color: var(--noc-bg);
}

/* ---------- thin top status strip ---------- */

.noc-bar {
    position: relative;
    z-index: 30;
    background: var(--noc-bg-deep);
    border-bottom: 1px solid var(--noc-border);
    color: var(--noc-text-dim);
    font-family: var(--font-mono);
    font-size: 10.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 6px 0;
}
.noc-bar .container {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
}
.noc-bar__cluster { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.noc-bar__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.noc-bar__item b {
    color: var(--noc-text);
    font-weight: 600;
}
.noc-led {
    display: inline-block;
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--noc-phosphor);
    box-shadow:
        0 0 6px var(--noc-phosphor-glow),
        0 0 12px var(--noc-phosphor-glow);
    animation: noc-blink 2.4s ease-in-out infinite;
}
.noc-led.amber { background: var(--noc-amber); box-shadow: 0 0 6px var(--noc-amber-glow), 0 0 12px var(--noc-amber-glow); }
.noc-led.red   { background: var(--noc-red);   box-shadow: 0 0 6px rgba(232,71,71,.45); }

@keyframes noc-blink {
    0%, 70%, 100% { opacity: 1; }
    80%, 90%      { opacity: .25; }
}

/* ---------- header / brand ---------- */

#header {
    position: relative;
    z-index: 25;
    background: transparent;
    padding: 14px 0 14px;
    border-bottom: 0;
}
#header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
#header img { display: none; }   /* old raster logo — replaced with markup */

.noc-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-family: var(--font-brand);
    font-weight: 700;
    font-size: 40px;
    letter-spacing: 0;
    line-height: 1;
    color: var(--noc-text);
}
.noc-brand > .ipx,
.noc-brand > .core { line-height: 1; }
.noc-brand .ipx  { color: var(--noc-text); }
.noc-brand .core {
    color: var(--noc-phosphor);
    text-shadow: 0 0 14px var(--noc-phosphor-glow);
}
.noc-brand .slash {
    color: var(--noc-text-faint);
    font-family: var(--font-mono);
    font-weight: 400;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-left: 14px;
    align-self: center;
    /* nudge to optical center of the wordmark cap-height (Podkova has a deep
       descender that biases the line-box center downward) */
    transform: translateY(-0.18em);
}

/* ---------- main nav ---------- */

#main-menu, .navbar-default {
    background: transparent;
    border: 0;
    margin: 0;
    border-radius: 0;
}
#main-menu {
    border-top: 1px solid var(--noc-border);
    border-bottom: 1px solid var(--noc-border);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.015), transparent),
        var(--noc-bg-deep);
    position: relative;
    z-index: 20;
}
.navbar-default .navbar-nav > li > a,
.navbar-nav > li > a {
    color: var(--noc-text-dim);
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    padding: 14px 16px;
    background: transparent;
    border: 0;
    border-bottom: 2px solid transparent;
    transition: color 140ms ease, border-color 140ms ease, background 140ms ease;
}
.navbar-default .navbar-nav > li > a:hover,
.navbar-default .navbar-nav > li > a:focus,
.navbar-default .navbar-nav > .active > a,
.navbar-default .navbar-nav > .open > a {
    color: var(--noc-phosphor-bright);
    background: rgba(140,186,83,0.06);
    border-bottom-color: var(--noc-phosphor);
}
.navbar-default .navbar-nav > li > a::before {
    content: "// ";
    color: var(--noc-text-faint);
    margin-right: 2px;
}
.navbar-default .navbar-nav > li > a:hover::before {
    color: var(--noc-phosphor);
}
.navbar-default .dropdown-menu {
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border-bright);
    border-radius: 0;
    padding: 6px 0;
    box-shadow: 0 12px 32px rgba(0,0,0,.5), 0 0 0 1px rgba(140,186,83,0.06);
}
.navbar-default .dropdown-menu > li > a {
    color: var(--noc-text-dim);
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    padding: 10px 18px;
}
.navbar-default .dropdown-menu > li > a:hover {
    background: rgba(140,186,83,0.08);
    color: var(--noc-phosphor-bright);
}
.navbar-default .navbar-toggle {
    border: 1px solid var(--noc-border-bright);
    background: var(--noc-surface-solid);
    border-radius: 0;
    margin: 8px 16px;
}
.navbar-default .navbar-toggle .icon-bar {
    background: var(--noc-phosphor);
}

/* ---------- generic container width ---------- */
.container { position: relative; z-index: 5; }

/* ---------- section: hero ---------- */

.noc-hero {
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}
.noc-hero__inner {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-items: end;
}
.noc-hero__eyebrow {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--noc-phosphor);
    margin-bottom: 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.noc-hero__eyebrow::before {
    content: "";
    width: 36px; height: 1px; background: var(--noc-phosphor);
    display: inline-block;
}
.noc-hero__title {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: clamp(48px, 7.6vw, 124px);
    line-height: 0.86;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    color: var(--noc-text);
    margin: 0 0 28px;
}
.noc-hero__title .accent {
    color: var(--noc-phosphor);
    text-shadow: 0 0 32px var(--noc-phosphor-glow);
}
.noc-hero__title .stencil {
    -webkit-text-stroke: 1.5px var(--noc-phosphor);
    color: transparent;
    text-shadow: none;
}
.noc-hero__title .row { display: block; }
.noc-hero__title .row + .row { margin-top: 0.04em; }

.noc-hero__lede {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.7;
    color: var(--noc-text-dim);
    max-width: 56ch;
    margin: 0 0 32px;
}
.noc-hero__lede b {
    color: var(--noc-text);
    font-weight: 600;
}

.noc-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* hero terminal panel */
.noc-term {
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border-bright);
    box-shadow:
        0 0 0 1px rgba(140,186,83,0.05),
        0 30px 80px -30px rgba(0,0,0,0.7),
        inset 0 0 60px rgba(140,186,83,0.03);
    font-family: var(--font-mono);
    color: var(--noc-text);
    width: 100%;
}
.noc-term__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    padding: 8px 14px;
    background: var(--noc-bg-deep);
    border-bottom: 1px solid var(--noc-border);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--noc-text-faint);
    white-space: nowrap;
    overflow: hidden;
}
.noc-term__head > * {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
}
.noc-term__head > .noc-term__dots { flex: 0 0 auto; }
.noc-term__dots { display: inline-flex; gap: 6px; }
.noc-term__dots span {
    width: 9px; height: 9px; border-radius: 50%;
    background: var(--noc-border-bright);
}
.noc-term__dots span:nth-child(1) { background: var(--noc-red); }
.noc-term__dots span:nth-child(2) { background: var(--noc-amber); }
.noc-term__dots span:nth-child(3) { background: var(--noc-phosphor); }
.noc-term__body {
    padding: 18px 18px 20px;
    font-size: 12.5px;
    line-height: 1.75;
}
.noc-term__line { display: block; }
.noc-term__prompt {
    color: var(--noc-phosphor);
    margin-right: 8px;
}
.noc-term__cmd { color: var(--noc-text); }
.noc-term__out { color: var(--noc-text-dim); }
.noc-term__out .ok { color: var(--noc-phosphor); }
.noc-term__out .warn { color: var(--noc-amber); }
.noc-term__out .label { color: var(--noc-text-faint); }
.noc-cursor {
    display: inline-block;
    width: 8px; height: 14px;
    background: var(--noc-phosphor);
    margin-left: 4px;
    vertical-align: middle;
    animation: noc-cursor 1s steps(1) infinite;
}
@keyframes noc-cursor {
    50% { opacity: 0; }
}

/* ---------- buttons ---------- */

.noc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    padding: 14px 22px;
    border: 1px solid var(--noc-phosphor);
    background: transparent;
    color: var(--noc-phosphor);
    cursor: pointer;
    position: relative;
    transition: color 140ms ease, background 140ms ease, transform 140ms ease, box-shadow 140ms ease;
}
.noc-btn::after {
    content: "→";
    transition: transform 140ms ease;
}
.noc-btn:hover {
    background: var(--noc-phosphor);
    color: var(--noc-bg);
    text-decoration: none;
    box-shadow:
        0 0 0 4px rgba(140,186,83,0.12),
        0 0 32px var(--noc-phosphor-glow);
}
.noc-btn:hover::after { transform: translateX(4px); }

.noc-btn--primary {
    background: var(--noc-phosphor);
    color: var(--noc-bg);
}
.noc-btn--primary:hover {
    background: var(--noc-phosphor-bright);
    color: var(--noc-bg);
}
.noc-btn--ghost {
    border-color: var(--noc-border-bright);
    color: var(--noc-text);
}
.noc-btn--ghost:hover {
    background: var(--noc-surface-2);
    color: var(--noc-phosphor-bright);
    box-shadow: none;
    border-color: var(--noc-phosphor);
}
.noc-btn--amber {
    border-color: var(--noc-amber);
    color: var(--noc-amber);
}
.noc-btn--amber:hover {
    background: var(--noc-amber);
    color: var(--noc-bg);
    box-shadow: 0 0 0 4px rgba(245,184,0,.12), 0 0 32px var(--noc-amber-glow);
}

/* ---------- section frames ---------- */

.noc-section { padding: 80px 0; position: relative; }
.noc-section--alt {
    background:
        linear-gradient(180deg, transparent, rgba(0,0,0,0.25) 30%, rgba(0,0,0,0.25) 70%, transparent);
}
.noc-section__head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 32px;
    margin-bottom: 44px;
    padding-bottom: 18px;
    border-bottom: 1px dashed var(--noc-border-bright);
}
.noc-section__tag {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-phosphor);
    text-transform: uppercase;
    letter-spacing: 0.32em;
    margin-bottom: 10px;
}
.noc-section__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(34px, 4.4vw, 64px);
    line-height: 0.94;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: var(--noc-text);
    margin: 0;
}
.noc-section__title em {
    font-style: normal;
    color: var(--noc-phosphor);
    text-shadow: 0 0 18px var(--noc-phosphor-glow);
}
.noc-section__sub {
    color: var(--noc-text-dim);
    font-size: 13px;
    max-width: 48ch;
    margin: 12px 0 0;
    line-height: 1.65;
}
.noc-section__index {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--noc-text-faint);
    white-space: nowrap;
}

/* ---------- pricing rack ---------- */

.noc-rack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.noc-unit {
    --u-accent: var(--noc-phosphor);
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border);
    position: relative;
    padding: 22px 22px 0;
    display: flex;
    flex-direction: column;
    transition: border-color 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.noc-unit:hover {
    border-color: var(--u-accent);
    transform: translateY(-3px);
    box-shadow:
        0 16px 40px -16px rgba(0,0,0,0.7),
        0 0 0 1px var(--u-accent),
        0 0 36px rgba(140,186,83,0.18);
}
.noc-unit--featured {
    --u-accent: var(--noc-amber);
    border-color: var(--noc-amber);
    background:
        linear-gradient(180deg, rgba(245,184,0,0.05), transparent 40%),
        var(--noc-surface-solid);
}
.noc-unit--featured::before {
    content: "RECOMMENDED";
    position: absolute;
    top: -10px; left: 22px;
    background: var(--noc-amber);
    color: var(--noc-bg);
    font-family: var(--font-mono);
    font-size: 9.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    padding: 3px 8px;
}

/* Adaptive rack — auto-fits as many columns as fit at minmax 240px.
   Use on listing pages where there are 4–5 plans to display in full. */
.noc-rack--auto {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.noc-rack--auto .noc-unit__name { font-size: 30px; }
.noc-rack--auto .noc-unit__price .amount { font-size: 48px; }

/* Spec columns block — 3 lists side-by-side with mono labels. */
.noc-speccols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border: 1px solid var(--noc-border);
    background: var(--noc-surface-solid);
}
.noc-speccols__col {
    padding: 24px 24px 26px;
    border-right: 1px solid var(--noc-border);
}
.noc-speccols__col:last-child { border-right: 0; }
.noc-speccols__col h4 {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-phosphor);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0 0 14px;
    padding-bottom: 10px;
    border-bottom: 1px dashed var(--noc-border);
}
.noc-speccols__col ul {
    list-style: none;
    padding: 0; margin: 0;
}
.noc-speccols__col li {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--noc-text-dim);
    padding: 6px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}
.noc-speccols__col li::before {
    content: "└";
    color: var(--noc-text-faint);
    font-size: 11px;
}
@media (max-width: 900px) {
    .noc-speccols { grid-template-columns: 1fr; }
    .noc-speccols__col { border-right: 0; border-bottom: 1px solid var(--noc-border); }
    .noc-speccols__col:last-child { border-bottom: 0; }
}

/* Geographic POP / facility grid — airport codes as the main read */
.noc-pops {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--noc-border);
    background: var(--noc-surface-solid);
}
.noc-pop {
    padding: 28px 22px;
    border-right: 1px solid var(--noc-border);
    border-bottom: 1px solid var(--noc-border);
    position: relative;
    transition: background 200ms ease;
}
.noc-pop:hover { background: rgba(140,186,83,0.05); }
.noc-pop:nth-child(4n) { border-right: 0; }
.noc-pop:nth-last-child(-n+3) { border-bottom: 0; }
.noc-pop__code {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 56px;
    line-height: 0.9;
    color: var(--noc-text);
    letter-spacing: 0;
}
.noc-pop__city {
    font-family: var(--font-mono);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--noc-text-dim);
    margin-top: 6px;
}
.noc-pop__meta {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--noc-text-faint);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}
@media (max-width: 1000px) {
    .noc-pops { grid-template-columns: 1fr 1fr; }
    .noc-pop { border-right: 1px solid var(--noc-border); border-bottom: 1px solid var(--noc-border); }
    .noc-pop:nth-child(4n) { border-right: 1px solid var(--noc-border); }
    .noc-pop:nth-child(2n) { border-right: 0; }
    .noc-pop:nth-last-child(-n+2) { border-bottom: 0; }
    .noc-pop:nth-last-child(-n+3):nth-child(odd) { border-bottom: 1px solid var(--noc-border); }
}
@media (max-width: 600px) {
    .noc-pops { grid-template-columns: 1fr; }
    .noc-pop { border-right: 0; }
    .noc-pop:not(:last-child) { border-bottom: 1px solid var(--noc-border); }
}

/* Closing CTA band */
.noc-cta {
    border: 1px solid var(--noc-border-bright);
    background:
        linear-gradient(135deg, rgba(140,186,83,0.08), transparent 50%),
        var(--noc-surface-solid);
    padding: 44px 44px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}
.noc-cta__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.005em;
    color: var(--noc-text);
    margin: 0 0 8px;
}
.noc-cta__title em {
    font-style: normal;
    color: var(--noc-phosphor);
    text-shadow: 0 0 18px var(--noc-phosphor-glow);
}
.noc-cta__sub {
    font-family: var(--font-mono);
    font-size: 12.5px;
    color: var(--noc-text-dim);
    margin: 0;
    max-width: 56ch;
    line-height: 1.6;
}
@media (max-width: 800px) {
    .noc-cta { grid-template-columns: 1fr; padding: 28px 22px; }
}

/* Hidden additional rack units, revealed by .is-expanded toggle */
.noc-rack .noc-unit--more { display: none; }
.noc-rack.is-expanded .noc-unit--more {
    display: flex;
    animation: noc-rise 600ms cubic-bezier(.22,.85,.36,1) both;
}
.noc-rack.is-expanded .noc-unit--more:nth-of-type(2) { animation-delay:  60ms; }
.noc-rack.is-expanded .noc-unit--more:nth-of-type(3) { animation-delay: 140ms; }

.noc-rack__toggle {
    margin-top: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 24px;
    background: var(--noc-surface-solid);
    border: 1px dashed var(--noc-border-bright);
    color: var(--noc-text);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}
.noc-rack__toggle:hover {
    border-color: var(--noc-phosphor);
    color: var(--noc-phosphor-bright);
    background: rgba(140,186,83,0.04);
}
.noc-rack__toggle .label { display: inline-flex; align-items: center; gap: 12px; }
.noc-rack__toggle .label::before {
    content: "[+]";
    color: var(--noc-phosphor);
    font-weight: 700;
}
.noc-rack__toggle.is-expanded .label::before { content: "[−]"; }
.noc-rack__toggle .count { color: var(--noc-text-faint); font-weight: 400; }
.noc-rack__toggle .arrow {
    color: var(--noc-phosphor);
    transition: transform 200ms ease;
}
.noc-rack__toggle.is-expanded .arrow { transform: rotate(180deg); }

.noc-rack__toggle--amber .label::before { color: var(--noc-amber); }
.noc-rack__toggle--amber .arrow         { color: var(--noc-amber); }
.noc-rack__toggle--amber:hover {
    border-color: var(--noc-amber);
    color: var(--noc-amber);
    background: rgba(245,184,0,0.04);
}

.noc-unit__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
    border-bottom: 1px dashed var(--noc-border);
    margin-bottom: 18px;
}
.noc-unit__id {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--noc-text-faint);
}
.noc-unit__leds { display: inline-flex; gap: 5px; }
.noc-unit__leds .noc-led { width: 6px; height: 6px; }

.noc-unit__name {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    color: var(--noc-text);
    margin: 0 0 16px;
}
.noc-unit__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
    color: var(--noc-phosphor);
}
.noc-unit__price .currency {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--noc-text-dim);
}
.noc-unit__price .amount {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1;
    color: var(--u-accent);
}
.noc-unit__price .period {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--noc-text-dim);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}
.noc-unit__yearly {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-text-faint);
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 22px;
}
.noc-unit__specs {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    border-top: 1px dashed var(--noc-border);
}
.noc-unit__specs li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 9px 0;
    border-bottom: 1px dashed var(--noc-border);
    font-family: var(--font-mono);
    font-size: 11.5px;
}
.noc-unit__specs .k {
    color: var(--noc-text-faint);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 10.5px;
}
.noc-unit__specs .v { color: var(--noc-text); font-weight: 600; }
.noc-unit__cta {
    margin: 0 -22px;
    padding: 16px 22px;
    background: var(--noc-bg-deep);
    border-top: 1px solid var(--noc-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--noc-text);
    transition: background 160ms ease, color 160ms ease;
}
.noc-unit__cta::after { content: "→"; transition: transform 160ms ease; }
.noc-unit:hover .noc-unit__cta {
    background: var(--u-accent);
    color: var(--noc-bg);
}
.noc-unit:hover .noc-unit__cta::after { transform: translateX(4px); }

/* ---------- ports / patch panel: shortcuts ---------- */

.noc-shortcuts {
    border: 1px solid var(--noc-border);
    background:
        linear-gradient(180deg, rgba(140,186,83,0.04), transparent 40%),
        var(--noc-surface-solid);
    display: grid;
    grid-template-columns: 220px repeat(4, 1fr);
    align-items: stretch;
}
.noc-shortcuts__title {
    padding: 22px 22px;
    border-right: 1px solid var(--noc-border);
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-text-faint);
    text-transform: uppercase;
    letter-spacing: 0.22em;
}
.noc-shortcuts__title b {
    display: block;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 22px;
    color: var(--noc-text);
    letter-spacing: 0.01em;
    margin-bottom: 4px;
}
.noc-shortcut {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    padding: 22px 22px;
    border-right: 1px solid var(--noc-border);
    color: var(--noc-text);
    transition: background 160ms ease, color 160ms ease;
    position: relative;
}
.noc-shortcut:last-child { border-right: 0; }
.noc-shortcut:hover {
    background: rgba(140,186,83,0.08);
    color: var(--noc-phosphor-bright);
    text-decoration: none;
}
.noc-shortcut__port {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--noc-text-faint);
    text-transform: uppercase;
}
.noc-shortcut__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 19px;
    text-transform: uppercase;
    letter-spacing: 0.01em;
}
.noc-shortcut__arrow {
    font-family: var(--font-mono);
    color: var(--noc-phosphor);
    font-size: 14px;
    align-self: flex-end;
    margin-top: -28px;
}

/* ---------- modules grid ---------- */

.noc-modules {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid var(--noc-border);
    background: var(--noc-surface-solid);
}
.noc-mod {
    padding: 28px 26px 32px;
    border-right: 1px solid var(--noc-border);
    border-bottom: 1px solid var(--noc-border);
    position: relative;
    overflow: hidden;
    transition: background 200ms ease;
}
.noc-mod:nth-child(3n) { border-right: 0; }
.noc-mod:nth-last-child(-n+3) { border-bottom: 0; }
.noc-mod:hover {
    background: rgba(140,186,83,0.04);
}
.noc-mod__num {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.22em;
    color: var(--noc-text-faint);
    text-transform: uppercase;
    margin-bottom: 12px;
    display: flex;
    justify-content: space-between;
}
.noc-mod__num .status {
    color: var(--noc-phosphor);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.noc-mod__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 24px;
    text-transform: uppercase;
    color: var(--noc-text);
    margin: 0 0 10px;
    letter-spacing: 0.005em;
    line-height: 1.05;
}
.noc-mod__body {
    color: var(--noc-text-dim);
    font-size: 12.5px;
    line-height: 1.65;
    margin: 0;
}
.noc-mod__icon {
    position: absolute;
    top: 22px; right: 22px;
    color: var(--noc-text-faint);
    font-size: 16px;
    opacity: 0.7;
    transition: color 200ms ease, opacity 200ms ease;
}
.noc-mod:hover .noc-mod__icon { color: var(--noc-phosphor); opacity: 1; }

/* ---------- vital signs / dashboard band ---------- */

.noc-vitals {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    border: 1px solid var(--noc-border);
    background: var(--noc-surface-solid);
}
.noc-vital {
    padding: 24px 24px;
    border-right: 1px solid var(--noc-border);
    position: relative;
}
.noc-vital:last-child { border-right: 0; }
.noc-vital__label {
    font-family: var(--font-mono);
    font-size: 10px;
    color: var(--noc-text-faint);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.noc-vital__value {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 44px;
    line-height: 1;
    color: var(--noc-phosphor);
    text-shadow: 0 0 18px var(--noc-phosphor-glow);
}
.noc-vital__value .unit {
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--noc-text-dim);
    letter-spacing: 0.14em;
    text-shadow: none;
    margin-left: 4px;
}
.noc-vital__sparkline {
    height: 24px;
    margin-top: 12px;
    background:
        repeating-linear-gradient(
            90deg,
            var(--noc-phosphor-dim) 0 2px,
            transparent 2px 6px
        );
    mask-image: linear-gradient(180deg, transparent, #000 60%);
}

/* ---------- domain search panel ---------- */

.noc-domain {
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border-bright);
    padding: 36px 36px 32px;
    position: relative;
}
.noc-domain::before {
    content: "$ DIG +SHORT";
    position: absolute;
    top: -10px; left: 28px;
    background: var(--noc-bg);
    padding: 0 10px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-phosphor);
    letter-spacing: 0.22em;
}
.noc-domain__row {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--noc-border-bright);
    background: var(--noc-bg-deep);
    transition: border-color 160ms ease, box-shadow 160ms ease;
}
.noc-domain__row:focus-within {
    border-color: var(--noc-phosphor);
    box-shadow: 0 0 0 4px rgba(140,186,83,0.10);
}
.noc-domain__prompt {
    padding: 0 14px;
    display: flex;
    align-items: center;
    color: var(--noc-phosphor);
    font-family: var(--font-mono);
    font-size: 14px;
    border-right: 1px solid var(--noc-border);
    background: transparent;
}
.noc-domain__input {
    flex: 1;
    background: transparent;
    border: 0;
    outline: 0;
    color: var(--noc-text);
    font-family: var(--font-mono);
    font-size: 16px;
    padding: 18px 16px;
    letter-spacing: 0.02em;
}
.noc-domain__input::placeholder { color: var(--noc-text-faint); }
.noc-domain__btn {
    border: 0;
    border-left: 1px solid var(--noc-border);
    padding: 0 24px;
    background: transparent;
    color: var(--noc-phosphor);
    font-family: var(--font-mono);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease;
}
.noc-domain__btn:hover {
    background: var(--noc-phosphor);
    color: var(--noc-bg);
}
.noc-domain__btn--alt { color: var(--noc-amber); }
.noc-domain__btn--alt:hover { background: var(--noc-amber); color: var(--noc-bg); }

.noc-domain__tlds {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 18px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--noc-text-faint);
}
.noc-domain__tlds span b { color: var(--noc-text); font-weight: 600; }

/* ─────────────────────────────────────────────────────────────────────
   Content-page primitives (about, auptos, etc.) — page header + prose
   document container, TOC columns, anchored sections.
   ───────────────────────────────────────────────────────────────────── */

.noc-pagehead {
    padding: 56px 0 36px;
    border-bottom: 1px dashed var(--noc-border-bright);
    margin-bottom: 0;
    position: relative;
}
.noc-pagehead__inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: end;
}
.noc-pagehead__eyebrow {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.32em;
    color: var(--noc-phosphor);
    margin-bottom: 14px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.noc-pagehead__eyebrow::before {
    content: ""; width: 36px; height: 1px;
    background: var(--noc-phosphor);
    display: inline-block;
}
.noc-pagehead__title {
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(40px, 6vw, 88px);
    line-height: 0.92;
    letter-spacing: -0.005em;
    text-transform: uppercase;
    color: var(--noc-text);
    margin: 0 0 18px;
}
.noc-pagehead__title em {
    font-style: normal;
    color: var(--noc-phosphor);
    text-shadow: 0 0 22px var(--noc-phosphor-glow);
}
.noc-pagehead__lede {
    font-family: var(--font-mono);
    font-size: 14px;
    line-height: 1.7;
    color: var(--noc-text-dim);
    max-width: 64ch;
    margin: 0;
}
.noc-pagehead__meta {
    font-family: var(--font-mono);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--noc-text-faint);
    text-align: right;
    line-height: 1.9;
    white-space: nowrap;
}
.noc-pagehead__meta b { color: var(--noc-text); font-weight: 600; }
.noc-pagehead__meta .ok { color: var(--noc-phosphor); }

@media (max-width: 800px) {
    .noc-pagehead { padding: 36px 0 24px; }
    .noc-pagehead__inner { grid-template-columns: 1fr; }
    .noc-pagehead__meta { text-align: left; }
}

/* Document body wrapper: comfortable measure, mono prose */
.noc-doc { padding: 56px 0 24px; }
.noc-doc__grid {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 56px;
    align-items: start;
}
.noc-doc__aside {
    position: sticky;
    top: 24px;
    font-family: var(--font-mono);
    font-size: 10.5px;
    line-height: 1.85;
    color: var(--noc-text-faint);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    border-left: 1px solid var(--noc-border);
    padding-left: 22px;
}
.noc-doc__aside h6 {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-phosphor);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 22px 0 8px;
    font-weight: 700;
}
.noc-doc__aside h6:first-child { margin-top: 0; }
.noc-doc__aside a {
    display: block;
    color: var(--noc-text-dim);
    padding: 3px 0;
    border-left: 2px solid transparent;
    margin-left: -22px;
    padding-left: 20px;
    transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}
.noc-doc__aside a:hover {
    color: var(--noc-phosphor-bright);
    border-left-color: var(--noc-phosphor);
    background: rgba(140,186,83,0.04);
}

.noc-doc__body { max-width: 78ch; }
.noc-doc__intro p {
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--noc-text);
    margin: 0 0 18px;
}
.noc-doc__intro .alert {
    border: 1px solid var(--noc-amber);
    background: rgba(245,184,0,0.05);
    padding: 14px 18px;
    color: var(--noc-text);
    font-size: 13px;
    line-height: 1.65;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin: 24px 0;
    position: relative;
}
.noc-doc__intro .alert::before {
    content: "[!] DISCLAIMER";
    display: block;
    font-size: 10.5px;
    color: var(--noc-amber);
    letter-spacing: 0.22em;
    margin-bottom: 8px;
}

/* anchored legal sections */
.noc-doc__sec {
    padding: 26px 0 4px;
    border-top: 1px dashed var(--noc-border);
    margin-top: 26px;
}
.noc-doc__sec:first-of-type { border-top: 0; margin-top: 8px; padding-top: 8px; }
.noc-doc__sec h3 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    text-transform: uppercase;
    letter-spacing: 0;
    color: var(--noc-text);
    margin: 0 0 4px;
    line-height: 1.1;
    scroll-margin-top: 24px;
}
.noc-doc__sec h3 .anchor {
    font-family: var(--font-mono);
    font-size: 10.5px;
    color: var(--noc-text-faint);
    letter-spacing: 0.22em;
    margin-right: 12px;
    font-weight: 400;
    vertical-align: 0.18em;
}
.noc-doc__sec p,
.noc-doc__sec ul {
    font-size: 13.5px;
    line-height: 1.75;
    color: var(--noc-text-dim);
    margin: 12px 0;
}
.noc-doc__sec ul { padding-left: 22px; }
.noc-doc__sec ul li { margin: 6px 0; }
.noc-doc__sec table {
    width: 100%;
    border-collapse: collapse;
    margin: 14px 0;
    font-size: 12.5px;
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border);
}
.noc-doc__sec table td,
.noc-doc__sec table th {
    border: 1px solid var(--noc-border);
    padding: 10px 14px;
    color: var(--noc-text-dim);
    vertical-align: top;
    line-height: 1.7;
}
.noc-doc__sec table th {
    background: var(--noc-bg-deep);
    color: var(--noc-text);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10.5px;
    text-align: left;
}

@media (max-width: 1000px) {
    .noc-doc__grid { grid-template-columns: 1fr; gap: 36px; }
    .noc-doc__aside {
        position: static;
        border-left: 0;
        padding-left: 0;
        column-count: 2;
        column-gap: 36px;
    }
    .noc-doc__aside a { margin-left: 0; padding-left: 0; border-left: 0; }
    .noc-doc__aside h6 { column-span: all; }
}
@media (max-width: 600px) {
    .noc-doc__aside { column-count: 1; }
}

/* About page two-column layout */
.noc-about {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 56px;
    align-items: start;
    padding: 56px 0;
}
.noc-about__prose p {
    font-size: 14.5px;
    line-height: 1.8;
    color: var(--noc-text-dim);
    margin: 0 0 18px;
}
.noc-about__prose p:first-child {
    font-size: 16px;
    color: var(--noc-text);
}

/* "boot log" timeline panel */
.noc-bootlog {
    background: var(--noc-surface-solid);
    border: 1px solid var(--noc-border-bright);
    box-shadow:
        0 0 0 1px rgba(140,186,83,0.05),
        0 30px 80px -30px rgba(0,0,0,0.7);
    font-family: var(--font-mono);
}
.noc-bootlog__head {
    padding: 8px 14px;
    background: var(--noc-bg-deep);
    border-bottom: 1px solid var(--noc-border);
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--noc-text-faint);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    overflow: hidden;
}
.noc-bootlog__body { padding: 14px 18px 18px; font-size: 12px; line-height: 1.75; }
.noc-bootlog__row { display: grid; grid-template-columns: 70px 1fr; gap: 14px; padding: 4px 0; }
.noc-bootlog__row .ts {
    color: var(--noc-text-faint);
    font-size: 10.5px;
    letter-spacing: 0.12em;
    padding-top: 3px;
    text-transform: uppercase;
    text-align: right;
}
.noc-bootlog__row .msg { color: var(--noc-text-dim); }
.noc-bootlog__row .msg b { color: var(--noc-text); font-weight: 600; }
.noc-bootlog__row .msg .ok { color: var(--noc-phosphor); }
.noc-bootlog__row .msg .warn { color: var(--noc-amber); }
.noc-bootlog__row.is-now {
    background: linear-gradient(90deg, rgba(140,186,83,0.06), transparent 70%);
    border-left: 2px solid var(--noc-phosphor);
    padding-left: 8px;
    margin-left: -10px;
}

@media (max-width: 1000px) {
    .noc-about { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- footer ---------- */

#footer {
    background: var(--noc-bg-deep);
    border-top: 1px solid var(--noc-border);
    padding: 28px 0;
    margin-top: 48px;
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--noc-text-faint);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
#footer .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    text-align: left !important;
}
#footer center { text-align: left !important; }
#footer a { color: var(--noc-text-dim); }
#footer a:hover { color: var(--noc-phosphor); }

/* ---------- staggered load animations ---------- */

@keyframes noc-rise {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes noc-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes noc-scan {
    from { transform: scaleX(0); transform-origin: left; }
    to   { transform: scaleX(1); transform-origin: left; }
}

[data-anim] {
    opacity: 0;
    animation: noc-rise 700ms cubic-bezier(.22,.85,.36,1) forwards;
}
[data-anim="1"]  { animation-delay:  60ms; }
[data-anim="2"]  { animation-delay: 140ms; }
[data-anim="3"]  { animation-delay: 220ms; }
[data-anim="4"]  { animation-delay: 300ms; }
[data-anim="5"]  { animation-delay: 380ms; }
[data-anim="6"]  { animation-delay: 460ms; }
[data-anim="7"]  { animation-delay: 540ms; }
[data-anim="8"]  { animation-delay: 620ms; }
[data-anim="9"]  { animation-delay: 700ms; }
[data-anim="10"] { animation-delay: 780ms; }
[data-anim="11"] { animation-delay: 860ms; }

.noc-hero__title .row {
    overflow: hidden;
}
.noc-hero__title .row span {
    display: inline-block;
    transform: translateY(110%);
    animation: noc-rise 800ms cubic-bezier(.22,.85,.36,1) forwards;
}
.noc-hero__title .row:nth-child(1) span { animation-delay: 120ms; }
.noc-hero__title .row:nth-child(2) span { animation-delay: 220ms; }
.noc-hero__title .row:nth-child(3) span { animation-delay: 320ms; }

/* ---------- responsive ---------- */

@media (max-width: 1100px) {
    .noc-hero__inner { grid-template-columns: 1fr; gap: 40px; }
    .noc-rack { grid-template-columns: 1fr 1fr; }
    .noc-modules { grid-template-columns: 1fr 1fr; }
    .noc-mod:nth-child(3n) { border-right: 1px solid var(--noc-border); }
    .noc-mod:nth-child(2n) { border-right: 0; }
    .noc-mod:nth-last-child(-n+3) { border-bottom: 1px solid var(--noc-border); }
    .noc-mod:nth-last-child(-n+2) { border-bottom: 0; }
    .noc-vitals { grid-template-columns: 1fr 1fr; }
    .noc-vital:nth-child(2) { border-right: 0; }
    .noc-vital:nth-child(1), .noc-vital:nth-child(2) { border-bottom: 1px solid var(--noc-border); }
    .noc-shortcuts { grid-template-columns: 1fr 1fr; }
    .noc-shortcuts__title {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid var(--noc-border);
    }
    .noc-shortcut { border-right: 1px solid var(--noc-border); border-bottom: 1px solid var(--noc-border); }
    .noc-shortcut:nth-child(2n) { border-right: 0; }
    .noc-shortcut:nth-last-child(-n+2) { border-bottom: 0; }
}

@media (max-width: 720px) {
    .noc-rack { grid-template-columns: 1fr; }
    .noc-modules { grid-template-columns: 1fr; }
    .noc-mod { border-right: 0 !important; border-bottom: 1px solid var(--noc-border) !important; }
    .noc-mod:last-child { border-bottom: 0 !important; }
    .noc-vitals { grid-template-columns: 1fr; }
    .noc-vital { border-right: 0; border-bottom: 1px solid var(--noc-border); }
    .noc-vital:last-child { border-bottom: 0; }
    .noc-section__head { flex-direction: column; align-items: flex-start; }
    .noc-domain { padding: 30px 18px 24px; }
    .noc-domain__row { flex-wrap: wrap; }
    .noc-domain__prompt { padding: 14px 14px; border-right: 0; border-bottom: 1px solid var(--noc-border); width: auto; }
    .noc-domain__input { width: 100%; }
    .noc-domain__btn {
        flex: 1;
        padding: 14px 16px;
        border-left: 0;
        border-top: 1px solid var(--noc-border);
    }
}

/* ---------- override the legacy backstretch on the domain band ---------- */
.home-banner { background-image: none !important; padding: 0 !important; }
