:root {
    --bg:        #070a0e;
    --bg-2:      #0b0f16;
    --bg-3:      #10161f;
    --bg-4:      #141d28;
    --border:    #1c2534;
    --text:      #dde4ee;
    --text-muted:#6b7d96;
    --accent:    #f59e0b;
    --accent-hi: #fbbf24;
    --font:      'Space Grotesk', sans-serif;
    --mono:      'JetBrains Mono', monospace;
    --radius:    8px;
    --max-w:     1200px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* Topbar */
.topbar {
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
    padding: .4rem 2rem;
}
.topbar-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .75rem;
}
.topbar-label {
    color: var(--text-muted);
    font-weight: 500;
}
.topbar-link {
    color: var(--accent-hi);
    font-weight: 600;
    transition: opacity .2s;
}
.topbar-link:hover { opacity: .75; }
.topbar-sep { color: var(--border); }

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    background: rgba(7,10,14,0.93);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}
.nav-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 2rem;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: .75rem; }
.nav-logo { font-size: 1.1rem; font-weight: 700; letter-spacing: -.02em; color: var(--accent-hi); }
.nav-divider { color: var(--border); }
.nav-parent { font-size: .85rem; color: var(--text-muted); font-weight: 500; transition: color .2s; }
.nav-parent:hover { color: var(--text); }
.nav-links { display: flex; align-items: center; gap: 1.5rem; }
.nav-links a { font-size: .875rem; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover { color: var(--text); }
.btn-nav {
    background: var(--accent);
    color: #000 !important;
    padding: .4rem 1rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: .8rem;
    transition: background .2s;
}
.btn-nav:hover { background: var(--accent-hi) !important; }

/* Buttons */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: #000;
    padding: .7rem 1.6rem;
    border-radius: 5px;
    font-weight: 700;
    font-size: .95rem;
    transition: background .2s, transform .15s;
}
.btn-primary:hover { background: var(--accent-hi); transform: translateY(-1px); }
.btn-primary.btn-large { padding: .85rem 2rem; font-size: 1rem; }
.btn-ghost {
    display: inline-block;
    color: var(--text-muted);
    padding: .7rem 1.25rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: .95rem;
    border: 1px solid var(--border);
    transition: color .2s, border-color .2s;
}
.btn-ghost:hover { color: var(--text); border-color: var(--text-muted); }

/* Hero — centered, not split */
.hero {
    padding: 5.5rem 2rem 4rem;
    text-align: center;
}
.hero-inner { max-width: 680px; margin: 0 auto; }
.eyebrow {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 1.25rem;
}
h1 {
    font-size: clamp(2.6rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.07;
    letter-spacing: -.04em;
    margin-bottom: 1.25rem;
}
.hero-lead {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Tabbed screenshot panel */
.panel-section {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
}
.panel-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}
.panel-tabs {
    display: flex;
    gap: 0;
    overflow-x: auto;
    border-bottom: 1px solid var(--border);
    scrollbar-width: none;
}
.panel-tabs::-webkit-scrollbar { display: none; }
.ptab {
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    color: var(--text-muted);
    font-family: var(--font);
    font-size: .82rem;
    font-weight: 600;
    padding: .85rem 1.4rem;
    cursor: pointer;
    white-space: nowrap;
    transition: color .2s, border-color .2s;
    flex-shrink: 0;
    letter-spacing: .02em;
}
.ptab:hover { color: var(--text); }
.ptab.active { color: var(--accent-hi); border-bottom-color: var(--accent); }
.panel-frame {
    position: relative;
    background: var(--bg-3);
    overflow: hidden;
}
.panel-label {
    position: absolute;
    top: .75rem;
    left: 1rem;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    z-index: 2;
    background: rgba(7,10,14,.8);
    padding: .25rem .6rem;
    border-radius: 4px;
    border: 1px solid var(--border);
}
#panel-img {
    height: 420px;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    transition: opacity .2s;
}

/* Summary strip */
.summary-strip {
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 2rem;
}
.summary-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.summary-item {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}
.summary-num {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--accent-hi);
    font-family: var(--mono);
}
.summary-text {
    font-size: .875rem;
    color: var(--text-muted);
    line-height: 1.55;
}

/* Bento grid */
.bento-section {
    padding: 3rem 2rem 4rem;
    border-bottom: 1px solid var(--border);
}
.bento-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: auto;
    gap: 1rem;
}
.bento-card {
    background: var(--bg-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: border-color .2s;
}
.bento-card:hover { border-color: rgba(245,158,11,.3); }
.bento-wide { grid-column: span 2; }
.bento-tall { grid-row: span 1; }
.bento-text {
    padding: 1.5rem 1.5rem 1rem;
}
.bento-tag {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .5rem;
}
.bento-card h2 {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1.25;
    margin-bottom: .5rem;
}
.bento-card p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.bento-img-wrap {
    margin-top: auto;
    border-top: 1px solid var(--border);
    overflow: hidden;
    height: 220px;
    flex-shrink: 0;
}

.bento-wide .bento-img-wrap {
    height: 280px;
}

.bento-img-wrap img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top;
}

/* iDRAC section */
.idrac-section {
    padding: 5rem 2rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.idrac-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 4rem;
    align-items: start;
}
.section-tag {
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}
.idrac-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.idrac-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.check-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}
.check-list li {
    font-size: .9rem;
    color: var(--text-muted);
    padding-left: 1.2rem;
    position: relative;
}
.check-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-size: .8rem;
    font-weight: 700;
}
.idrac-screenshots {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.idrac-main {
    width: 100%;
    max-height: 340px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.idrac-sub {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 1px solid var(--border);
    opacity: .85;
}

/* Hosts section */
.hosts-section {
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border);
}
.hosts-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 5rem;
    align-items: center;
}
.hosts-img img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    object-position: top;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 16px 48px rgba(0,0,0,.5);
}
.hosts-text h2 {
    font-size: clamp(1.6rem, 2.3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.12;
    margin-bottom: 1rem;
}
.hosts-text p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

/* LLM callout */
.llm-section {
    padding: 5rem 2rem;
    background: var(--bg-3);
    border-bottom: 1px solid var(--border);
    text-align: center;
}
.llm-inner { max-width: 640px; margin: 0 auto; }
.llm-badge {
    display: inline-block;
    background: rgba(245,158,11,.12);
    border: 1px solid rgba(245,158,11,.3);
    color: var(--accent-hi);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .9rem;
    border-radius: 100px;
    margin-bottom: 1.25rem;
}
.llm-inner h2 {
    font-size: clamp(1.7rem, 2.8vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 1rem;
}
.llm-inner p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}
.llm-tags {
    display: flex;
    gap: .5rem;
    justify-content: center;
    flex-wrap: wrap;
}
.llm-tags span {
    font-family: var(--mono);
    font-size: .8rem;
    padding: .3rem .9rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent-hi);
    background: var(--bg-2);
}

/* Create VM flow */
.createvm-section {
    padding: 5rem 2rem;
    border-bottom: 1px solid var(--border);
}
.createvm-inner { max-width: var(--max-w); margin: 0 auto; }
.createvm-header {
    max-width: 520px;
    margin-bottom: 2.5rem;
}
.createvm-header h2 {
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}
.createvm-header p {
    color: var(--text-muted);
    font-size: .975rem;
    line-height: 1.7;
}
.createvm-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.step {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}
.step img {
    width: 100%;
    border-radius: 6px;
    border: 1px solid var(--border);
}
.step span {
    font-size: .78rem;
    font-weight: 600;
    color: var(--text-muted);
    font-family: var(--mono);
}

/* Install section */
.install-section {
    padding: 5rem 2rem;
    background: var(--bg-2);
    border-bottom: 1px solid var(--border);
}
.install-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    flex-wrap: wrap;
}
.install-text h2 {
    font-size: clamp(1.7rem, 2.5vw, 2.4rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: 1rem;
}
.install-text p {
    color: var(--text-muted);
    font-size: .975rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
    max-width: 440px;
}
.stack-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .75rem;
}
.stack-items {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}
.stack-items span {
    font-family: var(--mono);
    font-size: .8rem;
    padding: .3rem .75rem;
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: 4px;
    color: var(--accent-hi);
}

/* Footer */
.footer {
    border-top: 1px solid var(--border);
    padding: 2rem;
    background: var(--bg-2);
}
.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}
.footer-brand {
    display: flex;
    align-items: center;
    gap: .75rem;
    font-size: .875rem;
    color: var(--text-muted);
}
.footer-logo { font-weight: 700; color: var(--accent-hi); }
.footer-brand a { color: var(--accent); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
    font-size: .85rem;
    color: var(--text-muted);
    font-weight: 500;
    transition: color .2s;
}
.footer-links a:hover { color: var(--text); }

/* Responsive */
@media (max-width: 1000px) {
    .bento-wide { grid-column: span 3; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-wide { grid-column: span 2; }
}
@media (max-width: 800px) {
    .idrac-inner { grid-template-columns: 1fr; gap: 2rem; }
    .hosts-inner { grid-template-columns: 1fr; gap: 2rem; }
    .summary-inner { grid-template-columns: 1fr; gap: 1.5rem; }
    .bento-grid { grid-template-columns: 1fr; }
    .bento-wide { grid-column: span 1; }
}

/* Security section */
.security-section {
    padding: 5rem 2rem;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.security-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.security-header {
    max-width: 640px;
    margin-bottom: 1.75rem;
}
.sec-eyebrow {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: .75rem;
}
.security-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -.03em;
    margin-bottom: .75rem;
}
.security-header p {
    font-size: .975rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.sec-table {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 2rem;
}
.sec-row {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: baseline;
    padding: 1.1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.sec-row:last-child { border-bottom: none; }
.sec-row-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    padding-top: .15rem;
}
.sec-row-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.65;
}
.exploithound-block {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: 8px;
    padding: 1.75rem 2rem;
    margin-bottom: 1.25rem;
}
.eh-label {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: .4rem;
}
.exploithound-block h3 {
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -.02em;
    margin-bottom: .6rem;
}
.exploithound-block h3 a {
    color: var(--accent-hi);
    text-decoration: none;
}
.exploithound-block h3 a:hover {
    text-decoration: underline;
    text-underline-offset: 3px;
}
.exploithound-block p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.75;
    max-width: 760px;
    margin-bottom: .9rem;
}
.eh-link {
    font-size: .85rem;
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: opacity .2s;
}
.eh-link:hover { opacity: .7; }
.security-note {
    font-size: .8rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
}
@media (max-width: 700px) {
    .sec-row { grid-template-columns: 1fr; gap: .35rem; }
}
/* ===========================
   Why Pay To Use Software?
   =========================== */
.why-free-section {
    padding: 5rem 2rem;
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.why-free-inner {
    max-width: var(--max-w);
    margin: 0 auto;
}
.why-free-inner > .section-tag { margin-bottom: 1rem; }
.why-free-inner > h2 {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    letter-spacing: -.03em;
    color: var(--text);
    margin-bottom: .9rem;
}
.why-free-lead {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 660px;
    margin-bottom: 3rem;
    line-height: 1.7;
}
.why-free-body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    margin-bottom: 3.5rem;
    align-items: start;
}
.why-free-left p {
    color: var(--text-muted);
    font-size: .93rem;
    line-height: 1.75;
    margin-bottom: 1rem;
}
.why-free-list {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .4rem;
}
.why-free-list.no-list li {
    display: flex;
    align-items: center;
    font-size: .91rem;
    color: var(--text-muted);
}
.why-free-list.no-list li::before {
    content: '✕';
    color: #f87171;
    font-size: .75rem;
    font-weight: 700;
    margin-right: .65rem;
    flex-shrink: 0;
}
.why-free-list.value-list li {
    display: flex;
    align-items: center;
    font-size: .91rem;
    color: var(--text-muted);
}
.why-free-list.value-list li::before {
    content: '→';
    color: var(--accent);
    font-size: .85rem;
    margin-right: .65rem;
    flex-shrink: 0;
}
.why-free-origin {
    font-size: .87rem;
    color: var(--text-muted);
    border-left: 2px solid var(--border);
    padding-left: .85rem;
    margin: 1.5rem 0 1.25rem;
    line-height: 1.7;
}
.own-infra-callout {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent);
    border-radius: var(--radius);
    padding: 1.75rem;
}
.own-infra-callout h3 {
    font-size: .95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: .85rem;
    letter-spacing: -.01em;
}
.own-infra-callout > p {
    font-size: .87rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.own-infra-callout ul {
    list-style: none;
    padding: 0;
    margin: 0 0 .75rem;
    display: flex;
    flex-direction: column;
    gap: .3rem;
}
.own-infra-callout ul li {
    font-family: var(--mono);
    font-size: .8rem;
    color: var(--text);
    padding: .15rem 0;
}
.own-infra-callout ul li::before {
    content: '$ ';
    color: var(--accent);
    opacity: .65;
}
.callout-note {
    font-size: .81rem;
    color: var(--text-muted);
    font-style: italic;
    border-top: 1px solid var(--border);
    padding-top: .75rem;
    margin: 0;
}
.hwmm-head {
    margin-bottom: 1.1rem;
}
.hwmm-head h3 {
    font-size: .72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
}
.hwmm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
.hwmm-card {
    background: var(--bg-3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.4rem 1.25rem;
    transition: border-color .2s ease, transform .2s ease;
}
.hwmm-card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}
.hwmm-icon {
    font-size: 1.25rem;
    margin-bottom: .7rem;
    line-height: 1;
}
.hwmm-card h4 {
    font-size: .88rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: .45rem;
    letter-spacing: -.01em;
}
.hwmm-card p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
}
@media (max-width: 960px) {
    .why-free-body { grid-template-columns: 1fr; }
    .hwmm-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
    .why-free-section { padding: 3.5rem 1.25rem; }
    .hwmm-grid { grid-template-columns: 1fr; }
}
