:root {
    --ink: #111820;
    --ink-soft: #4b5a66;
    --muted: #71808c;
    --line: #d9e2e8;
    --line-strong: #bac8d2;
    --paper: #f7fafb;
    --white: #ffffff;
    --graphite: #0d141b;
    --graphite-2: #18222c;
    --cyan: #008fc2;
    --cyan-strong: #006f9f;
    --cyan-soft: #e2f5fb;
    --green: #1e9f68;
    --amber: #b7791f;
    --shadow: 0 24px 70px rgba(17, 24, 32, 0.14);
    --radius: 8px;
    --container: 1180px;
    --header-height: 76px;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

body.nav-open {
    overflow: hidden;
}

img {
    display: block;
    max-width: 100%;
}

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

button,
input,
textarea {
    font: inherit;
}

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

.site-header {
    position: fixed;
    z-index: 20;
    top: 0;
    right: 0;
    left: 0;
    height: var(--header-height);
    color: var(--white);
    background: rgba(13, 20, 27, 0.94);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(16px);
}

.header-inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 220px;
}

.brand-mark {
    position: relative;
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    color: #52c7e8;
}

.brand-mark::before,
.brand-mark::after,
.brand-mark span,
.brand-mark span::before,
.brand-mark span::after {
    content: "";
    position: absolute;
    width: 34px;
    height: 2px;
    background: currentColor;
    border-radius: 999px;
    transform-origin: center;
}

.brand-mark::after { transform: rotate(45deg); }
.brand-mark span { transform: rotate(90deg); }
.brand-mark span::before { transform: rotate(45deg); }
.brand-mark span::after { transform: rotate(-45deg); }

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
}

.brand-text small {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.72rem;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 30px;
}

.site-nav a {
    color: rgba(255, 255, 255, 0.76);
    font-size: 0.94rem;
    font-weight: 600;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--white);
}

.nav-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 6px;
    background: transparent;
    color: var(--white);
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    background: currentColor;
    border-radius: 2px;
}

.hero {
    position: relative;
    padding: calc(var(--header-height) + 46px) 0 28px;
    background:
        linear-gradient(90deg, rgba(247, 250, 251, 0.98) 0%, rgba(247, 250, 251, 0.92) 30%, rgba(247, 250, 251, 0.54) 52%, rgba(247, 250, 251, 0.1) 100%),
        linear-gradient(180deg, rgba(247, 250, 251, 0.1) 0%, rgba(247, 250, 251, 0.24) 74%, rgba(247, 250, 251, 0.9) 100%),
        radial-gradient(circle at 80% 32%, rgba(0, 143, 194, 0.12), transparent 36%),
        url("../assets/hspcl-hero-wide.png"),
        linear-gradient(180deg, #f8fbfc 0%, #eaf1f5 100%);
    background-position: center, center, center, center top, center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.hero-grid {
    width: min(100% - 80px, 1440px);
    margin: 0 auto;
    position: relative;
    display: block;
}

.hero-copy {
    position: relative;
    z-index: 3;
    max-width: 820px;
    padding-bottom: 0;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--cyan-strong);
    font-size: 0.86rem;
    font-weight: 800;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin: 0;
    font-family: "Space Grotesk", Inter, sans-serif;
    line-height: 1.05;
}

h1 {
    max-width: 720px;
    font-size: clamp(3.6rem, 7vw, 6.25rem);
    font-weight: 800;
    letter-spacing: -0.01em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: 1.25rem;
}

p {
    color: var(--ink-soft);
}

.hero-subtitle {
    margin: 14px 0 0;
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.25rem);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-lead {
    max-width: 680px;
    margin: 22px 0 0;
    font-size: clamp(1.02rem, 1.7vw, 1.15rem);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    width: min(100%, 640px);
    margin-top: 34px;
}

.hero-actions .button {
    flex: 1 1 240px;
}

.hero-actions .button span {
    white-space: nowrap;
}

.button {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 22px;
    border-radius: 6px;
    border: 1px solid transparent;
    font-weight: 800;
    cursor: pointer;
}

.button svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.button.primary {
    color: var(--white);
    background: var(--cyan);
    box-shadow: 0 12px 28px rgba(0, 143, 194, 0.22);
}

.button.primary:hover,
.button.primary:focus-visible {
    background: var(--cyan-strong);
}

.button.secondary {
    color: var(--graphite);
    background: rgba(255, 255, 255, 0.7);
    border-color: var(--line-strong);
}

.button.secondary:hover,
.button.secondary:focus-visible {
    background: var(--white);
    border-color: var(--cyan);
}

.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
    margin: 28px 0 0;
    padding: 0;
}

.hero-points div {
    display: grid;
    grid-template-columns: 44px 1fr;
    grid-template-rows: auto auto;
    column-gap: 14px;
    row-gap: 2px;
    align-items: center;
}

.hero-points .point-icon {
    grid-row: 1 / 3;
    width: 40px;
    height: 40px;
    color: var(--cyan);
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-points dt {
    margin: 0;
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-points dd {
    margin: 0;
    color: var(--ink-soft);
    font-size: 0.88rem;
    line-height: 1.35;
}

.hero-flag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 26px 0 0;
    padding: 8px 14px 8px 10px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--ink);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-flag .flag-icon {
    display: inline-flex;
    width: 22px;
    height: 14px;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 0 0 1px rgba(17, 24, 32, 0.06);
}

.hero-flag .flag-icon svg {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-visual {
    position: absolute;
    z-index: 1;
    inset: 0;
    pointer-events: none;
}

.hero-visual img {
    display: none;
}

section {
    scroll-margin-top: calc(var(--header-height) + 28px);
}

.status-section,
.audience-section,
.product-section,
.specs-section,
.software-section,
.fit-section,
.partners-section,
.contact-section {
    padding: 96px 0;
}

.status-section {
    padding: 52px 0;
    background:
        linear-gradient(180deg, var(--cyan-soft) 0%, #eef9fd 100%);
    border-top: 3px solid var(--cyan);
    border-bottom: 1px solid var(--line);
}

.status-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: center;
}

.status-main h2 {
    margin: 16px 0 12px;
    font-size: clamp(1.5rem, 2.6vw, 2.1rem);
    line-height: 1.18;
}

.status-main p {
    margin: 0;
    max-width: 640px;
    color: var(--ink);
    font-size: 1.05rem;
}

.status-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 11px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(0, 143, 194, 0.3);
    border-radius: 999px;
    color: var(--cyan-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 143, 194, 0.18);
}

.status-points {
    margin: 0;
    padding-left: 32px;
    border-left: 1px solid rgba(0, 143, 194, 0.25);
    color: var(--ink);
    list-style: none;
}

.status-points li {
    position: relative;
    padding-left: 26px;
    font-weight: 600;
}

.status-points li + li {
    margin-top: 14px;
}

.status-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--cyan);
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
    gap: 70px;
    align-items: start;
}

.section-copy p,
.section-heading p,
.contact-grid > div > p {
    max-width: 680px;
    font-size: 1.08rem;
}

.spec-list {
    display: grid;
    gap: 14px;
}

.spec-list div {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 22px;
    padding: 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.spec-list strong {
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1.05rem;
}

.spec-list span {
    color: var(--ink-soft);
}

.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 42px;
}

.detail-card {
    padding: 30px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.detail-card.accent {
    color: var(--white);
    background: var(--graphite);
    border-color: var(--graphite);
}

.detail-card.accent p {
    color: rgba(255, 255, 255, 0.75);
}

.detail-card ul {
    margin: 18px 0 0;
    padding-left: 20px;
    color: var(--ink-soft);
}

.detail-card li + li {
    margin-top: 10px;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 34px;
}

.section-heading.narrow {
    display: block;
    max-width: 760px;
}

.section-heading.narrow p {
    margin: 18px 0 0;
    font-size: 1.05rem;
}

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

.audience-grid article {
    min-height: 180px;
    padding: 26px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.audience-grid h3 {
    margin-bottom: 12px;
}

.audience-grid p {
    margin: 0;
}

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

.specs-table-wrap {
    overflow-x: auto;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.98rem;
}

.specs-table th,
.specs-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid var(--line);
    vertical-align: top;
}

.specs-table thead th {
    background: var(--paper);
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 0.86rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.specs-table tbody tr:last-child th,
.specs-table tbody tr:last-child td {
    border-bottom: 0;
}

.specs-table tbody th {
    width: 38%;
    color: var(--ink);
    font-weight: 700;
}

.specs-table tbody td {
    color: var(--ink-soft);
}

.status-pill {
    display: inline-block;
    padding: 4px 10px;
    background: var(--cyan-soft);
    border: 1px solid rgba(0, 143, 194, 0.25);
    border-radius: 999px;
    color: var(--cyan-strong);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.specs-note,
.software-note {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.software-section {
    background: var(--graphite);
    color: var(--white);
}

.software-section p {
    color: rgba(255, 255, 255, 0.72);
}

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

.software-grid article {
    min-height: 200px;
    padding: 26px;
    background: var(--graphite-2);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
}

.software-grid span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 4px 10px;
    background: rgba(114, 218, 240, 0.12);
    border: 1px solid rgba(114, 218, 240, 0.28);
    border-radius: 999px;
    color: #72daf0;
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.software-grid span.available {
    background: rgba(46, 201, 138, 0.14);
    border-color: rgba(95, 217, 160, 0.4);
    color: #5fd9a0;
}

.software-grid h3 {
    margin-bottom: 8px;
    color: var(--white);
}

.software-grid p {
    margin: 0;
}

.software-note {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.fit-grid article {
    padding: 26px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.fit-grid h3 {
    margin-bottom: 12px;
}

.fit-grid p {
    margin: 0;
}

.fit-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-top: 22px;
}

.fit-card {
    padding: 30px;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.fit-card.accent {
    color: var(--white);
    background: var(--graphite);
    border-color: var(--graphite);
}

.fit-card-lead {
    margin: 0 0 12px;
    font-weight: 700;
    color: var(--ink);
}

.fit-card.accent .fit-card-lead {
    color: rgba(255, 255, 255, 0.9);
}

.fit-card ul {
    margin: 0;
    padding-left: 20px;
    color: var(--ink-soft);
}

.fit-card.accent ul {
    color: rgba(255, 255, 255, 0.82);
}

.fit-card li + li {
    margin-top: 10px;
}

.fit-note {
    margin: 22px 0 0;
    max-width: 820px;
    color: var(--muted);
    font-size: 0.95rem;
}

.partners-section {
    background: var(--paper);
    border-top: 1px solid var(--line);
}

.partners-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
    gap: 60px;
    align-items: start;
}

.partners-grid .button {
    margin-top: 20px;
}

.partners-list {
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
    list-style: none;
}

.partners-list li {
    display: grid;
    gap: 4px;
    padding: 20px 22px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.partners-list strong {
    color: var(--ink);
    font-family: "Space Grotesk", Inter, sans-serif;
    font-size: 1rem;
}

.partners-list span {
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.contact-section {
    background:
        linear-gradient(90deg, rgba(226, 245, 251, 0.86), transparent),
        var(--white);
    border-top: 1px solid var(--line);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1fr);
    gap: 70px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 10px;
    margin-top: 28px;
    color: var(--ink-soft);
}

.contact-methods a {
    color: var(--cyan-strong);
    font-weight: 800;
}

.contact-form {
    display: grid;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-form label {
    display: grid;
    gap: 8px;
    color: var(--ink);
    font-weight: 700;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    border: 1px solid var(--line-strong);
    border-radius: 6px;
    padding: 13px 14px;
    color: var(--ink);
    background: var(--paper);
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

.contact-form select {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%234b5a66' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 42px;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    outline: 3px solid rgba(0, 143, 194, 0.18);
    border-color: var(--cyan);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.form-note a {
    color: var(--cyan-strong);
    font-weight: 700;
}

/* Honeypot — hidden from real users, catches bots that fill every field. */
.hp-field {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form label.consent {
    grid-template-columns: auto 1fr;
    align-items: start;
    gap: 12px;
    color: var(--ink-soft);
    font-weight: 500;
    font-size: 0.92rem;
    line-height: 1.45;
}

.contact-form label.consent input {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;
    width: 18px;
    height: 18px;
    padding: 0;
    border: 0;
    margin-top: 2px;
    accent-color: var(--cyan);
}

.form-status {
    margin: 0;
    padding: 12px 14px;
    border-radius: 6px;
    font-size: 0.94rem;
    font-weight: 600;
}

.form-status.is-pending {
    color: var(--ink-soft);
    background: var(--paper);
    border: 1px solid var(--line);
}

.form-status.is-success {
    color: #137a4e;
    background: rgba(46, 201, 138, 0.12);
    border: 1px solid rgba(30, 159, 104, 0.35);
}

.form-status.is-error {
    color: #b3261e;
    background: rgba(179, 38, 30, 0.08);
    border: 1px solid rgba(179, 38, 30, 0.3);
}

.site-footer {
    padding: 26px 0;
    color: rgba(255, 255, 255, 0.72);
    background: var(--graphite);
}

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

.footer-inner div {
    display: grid;
    gap: 4px;
    max-width: 760px;
}

.footer-inner strong {
    color: var(--white);
    font-family: "Space Grotesk", Inter, sans-serif;
}

.footer-inner small {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.82rem;
    line-height: 1.4;
}

.footer-inner a {
    color: #72daf0;
    font-weight: 800;
}

@media (max-width: 1180px) {
    .audience-grid,
    .software-grid,
    .fit-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1080px) {
    .split,
    .contact-grid,
    .partners-grid,
    .status-inner,
    .fit-compare {
        display: grid;
        grid-template-columns: 1fr;
    }

    .partners-grid {
        gap: 36px;
    }

    .status-inner {
        gap: 28px;
    }

    .status-points {
        padding-left: 0;
        padding-top: 24px;
        border-left: 0;
        border-top: 1px solid rgba(0, 143, 194, 0.25);
    }

    .status-points li {
        padding-left: 24px;
    }
}

@media (max-width: 760px) {
    :root {
        --header-height: 70px;
    }

    .container {
        width: min(100% - 28px, var(--container));
    }

    .hero-grid {
        width: min(100% - 28px, var(--container));
    }

    .brand {
        min-width: 0;
    }

    .brand-text strong {
        font-size: 0.98rem;
    }

    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: fixed;
        top: var(--header-height);
        right: 0;
        left: 0;
        display: grid;
        gap: 0;
        padding: 14px;
        background: rgba(13, 20, 27, 0.98);
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        transform: translateY(-120%);
        transition: transform 220ms ease;
    }

    body.nav-open .site-nav {
        transform: translateY(0);
    }

    .site-nav a {
        padding: 16px 8px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        min-height: auto;
        padding-top: calc(var(--header-height) + 34px);
        padding-bottom: 0;
        background:
            linear-gradient(90deg, rgba(247, 250, 251, 0.97) 0%, rgba(247, 250, 251, 0.85) 46%, rgba(247, 250, 251, 0.35) 100%),
            radial-gradient(circle at 80% 32%, rgba(0, 143, 194, 0.12), transparent 36%),
            linear-gradient(180deg, #f8fbfc 0%, #eaf1f5 100%);
    }

    .hero-grid {
        display: grid;
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .hero-copy {
        padding-bottom: 0;
    }

    h1 {
        font-size: clamp(2.85rem, 14vw, 4.1rem);
    }

    .hero-points,
    .product-detail,
    .audience-grid,
    .software-grid,
    .fit-grid,
    .form-row {
        grid-template-columns: 1fr;
    }

    .hero-points div {
        min-height: auto;
    }

    .hero-visual {
        position: relative;
        inset: auto;
        z-index: 1;
        display: flex;
        min-height: 440px;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
    }

    .hero-visual img {
        display: block;
        width: 100%;
        margin-right: 0;
        border-radius: 6px;
        filter: drop-shadow(0 28px 70px rgba(13, 20, 27, 0.18));
    }

    .hero-visual {
        display: grid;
    }

    .spec-list div {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .status-section {
        padding: 40px 0;
    }

    .status-card {
        padding: 24px 22px;
    }

    .product-section,
    .audience-section,
    .specs-section,
    .software-section,
    .partners-section,
    .contact-section {
        padding: 70px 0;
    }

    .specs-table th,
    .specs-table td {
        padding: 12px 14px;
    }

    .specs-table tbody th {
        width: auto;
    }

    .section-heading {
        display: block;
    }

    .footer-inner {
        align-items: start;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }
}

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