:root {
    --bg: #ffffff;
    --panel: #ffffff;
    --panel2: #fbfcff;
    --card: #ffffff;
    --text: #0a1220;
    --muted: #5a6b82;
    --line: #e7ecf3;
    --line2: rgba(15, 23, 42, .16);
    --teal: #0AA6A6;
    --navy: #0AA6A6;
    --blue: #3B6CFF;
    --amber: #FFB15C;
    --chip: #f2f6fb;
    --shadow: 0 18px 60px rgba(10, 18, 32, .08);
    --shadow2: 0 10px 26px rgba(10, 18, 32, .08);
    --radius: 18px;
    --radius2: 26px;
    --r: 18px;
    --r2: 26px;
    --max: 1200px;
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    line-height: 1.35;
    font-size: 1rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.container {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 20px;
}

.muted {
    color: var(--muted);
}

.grid {
    display: grid;
    gap: 18px;
}

.row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
}

.card.modern {
    padding: 22px;
    border-radius: 16px;
    border: 1px solid rgba(10, 18, 32, .08);
    background: #fff;
    transition: all .3s ease;
}

.card.modern:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, .08);
}

.card-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(0, 104, 119, .08);
    border: 1px solid rgba(0, 104, 119, .18);
    color: #006877;
    margin-bottom: 14px;
}

.card-icon svg {
    width: 22px;
    height: 22px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--line);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.spark,
.dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--teal);
}

.dot {
    box-shadow: 0 0 0 5px rgba(10, 166, 166, .14);
}

.accent {
    position: relative;
    display: inline-block;
    color: var(--teal);
}

.accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 8px;
    width: 100%;
    height: 8px;
    background: rgba(10, 166, 166, .15);
    z-index: -1;
    border-radius: 4px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 999px;
    font-weight: 600;
    border: 1px solid transparent;
    cursor: pointer;
    transition: .15s ease;
    user-select: none;
    white-space: nowrap;
    will-change: transform;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:focus-visible,
nav a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(11, 107, 255, .30);
    outline-offset: 2px;
    border-radius: 14px;
}

.btn-dark {
    background: var(--text);
    color: #fff;
}

.btn-dark:hover {
    box-shadow: var(--shadow2);
}

.btn-line,
.btn-ghost {
    background: #fff;
    border-color: var(--line);
    color: var(--text);
}

.btn-line:hover,
.btn-ghost:hover {
    border-color: #cdd7e6;
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
}

.btn-teal {
    background: var(--teal);
    color: #fff;
}

.btn-teal:hover {
    box-shadow: var(--shadow2);
}

.btn-primary {
    background: linear-gradient(135deg, rgba(10, 166, 166, 1), rgba(59, 108, 255, 1));
    color: #041018;
    box-shadow: 0 16px 30px rgba(10, 166, 166, .16);
}

/* Header / Nav */
header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .78);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(231, 236, 243, .7);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
}

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

.logo,
.mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
}

.logo {
    background:
        radial-gradient(16px 16px at 30% 30%, rgba(10, 166, 166, .25), transparent 60%),
        radial-gradient(18px 18px at 70% 65%, rgba(11, 107, 255, .18), transparent 60%),
        #fff;
}

.mark {
    background: linear-gradient(135deg, rgba(10, 166, 166, .16), rgba(59, 108, 255, .12));
    box-shadow: 0 10px 26px rgba(2, 8, 20, .08);
    font-weight: 800;
    font-family: Space Grotesk, Inter, sans-serif;
    letter-spacing: -.02em;
}

.brand b {
    display: block;
    font-weight: 900;
    letter-spacing: -.02em;
}

.brand small {
    display: block;
    color: var(--muted);
    margin-top: 2px;
    font-weight: 700;
}

nav {
    display: flex;
    gap: 18px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    padding: 10px 12px;
    border-radius: 999px;
    font-weight: 600;
    color: #231f20;
    font-size: 16px;
    border: 1px solid transparent;
}

nav a:hover {
    background: var(--chip);
    color: var(--text);
}

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

/* Accessibility */
.skip {
    position: absolute;
    left: -999px;
    top: 12px;
    background: #fff;
    border: 1px solid var(--line);
    padding: 10px 14px;
    border-radius: 12px;
    z-index: 999;
    font-weight: 800;
}

.skip:focus {
    left: 12px;
}

section {
    padding: 54px 0;
    scroll-margin-top: 96px;
}

/* Shared layout helpers */
.split {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: center;
}

.twoCol {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.callout {
    padding: 14px;
    border-radius: 14px;
    background: rgba(10, 18, 32, .03);
    border: 1px solid rgba(10, 18, 32, .08);
}

.mini-note {
    font-size: 12px;
    opacity: .75;
    margin-top: 8px;
}

.kchips {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 22px;
}

.kchip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(0, 104, 119, .08);
    border: 1px solid rgba(0, 104, 119, .18);
    font-size: 13px;
}

.kchip .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #006877;
    display: inline-block;
    box-shadow: none;
}

/* Hero */
.hero {
    padding: 44px 0 28px;
    background:
        radial-gradient(900px 420px at 15% 10%, rgba(10, 166, 166, .10), transparent 60%),
        radial-gradient(900px 420px at 85% 0%, rgba(11, 107, 255, .08), transparent 60%),
        linear-gradient(#fff, #fff);
}

.hero-wrap,
.hero-inner,
.hero3 {
    display: grid;
     grid-template-columns: 1.1fr .9fr;
    gap: 22px;
    align-items: center;
    padding: 22px;
}

.hero-left,
.hero-wrap .hero-left {
    padding: 24px 24px 26px;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
}

.hero3-left {
    padding: 0;
}

.hero-right,
.hero3-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
    position: relative;
}

h1 {
    margin: 14px 0 12px;
    font-size: clamp(34px, 4vw, 54px);
    letter-spacing: -.05em;
    line-height: 1.05;
    font-family: Space Grotesk, Inter, sans-serif;
}

.hero .subtitle {
    margin: 12px 0;
    font-weight: 800;
    color: rgba(11, 15, 22, .88);
    letter-spacing: -.01em;
}

.lead {
    margin: 0;
    color: var(--muted);
    font-size: 16px;
    max-width: 62ch;
}

.hero .lead {
    max-width: 70ch;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 18px;
    flex-wrap: wrap;
}

.hero-metrics,
.hero-metrics-v3 {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.metric {
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px;
    background: #fbfdff;
}

.metric b {
    font-size: 12px;
}

.metric .v {
    font-weight: 900;
    font-size: 18px;
    margin-top: 2px;
}

.metric span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    margin-top: 2px;
}

/* Hero Visuals */
.visual {
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background:
        radial-gradient(520px 260px at 55% 20%, rgba(10, 166, 166, .16), transparent 60%),
        radial-gradient(520px 260px at 35% 85%, rgba(11, 107, 255, .10), transparent 60%),
        linear-gradient(#f8fbff, #ffffff);
    box-shadow: var(--shadow);
    overflow: hidden;
    padding: 18px;
    min-height: 100%;
    position: relative;
}

.visual .frame {
    position: absolute;
    inset: 18px;
    border-radius: 20px;
    border: 1px solid rgba(231, 236, 243, .9);
    background:
        radial-gradient(220px 160px at 60% 50%, rgba(255, 99, 71, .16), transparent 60%),
        linear-gradient(135deg, rgba(10, 18, 32, .06), rgba(10, 18, 32, 0));
}

.visual::before {
    content: "";
    position: absolute;
    inset: -40px;
    background:
        radial-gradient(260px 180px at 35% 40%, rgba(255, 177, 92, .18), transparent 60%),
        radial-gradient(320px 220px at 70% 55%, rgba(10, 166, 166, .14), transparent 60%),
        radial-gradient(360px 240px at 55% 20%, rgba(59, 108, 255, .12), transparent 60%);
    filter: blur(6px);
    opacity: .90;
}

.visual .scan,
.hero-device .scan,
.scanline {
    position: absolute;
    left: -10%;
    width: 120%;
    background: rgba(10, 166, 166, .75);
    box-shadow: 0 0 18px rgba(10, 166, 166, .55);
    animation: scan 3.4s linear infinite;
}

.visual .scan {
    top: 38%;
    height: 2px;
}

.hero-device .scan {
    top: 46%;
    height: 1px;
    opacity: .45;
    box-shadow: 0 0 16px rgba(10, 166, 166, .35);
    animation-duration: 3.8s;
}

.scanline {
    left: -20%;
    top: 40%;
    width: 140%;
    height: 2px;
    background: rgba(10, 166, 166, .85);
    box-shadow: 0 0 18px rgba(10, 166, 166, .35);
    animation-duration: 3.1s;
}

.device-img {
    position: absolute;
    inset: 18px;
    width: calc(100% - 36px);
    height: calc(100% - 36px);
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
}

.hero-device-img {
    border: 0;
    filter: contrast(1.05) saturate(1.06);
}

.visual .cap,
.hero-tags {
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 18px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.hero-tags {
    justify-content: center;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 999px;
    border: 1px solid rgba(231, 236, 243, .9);
    background: rgba(255, 255, 255, .8);
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
}

.tag small {
    font-weight: 900;
    color: var(--muted);
}

.hero-device,
.hero-media {
    position: relative;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background:
        radial-gradient(520px 260px at 55% 25%, rgba(10, 166, 166, .14), transparent 60%),
        radial-gradient(520px 260px at 35% 85%, rgba(11, 107, 255, .10), transparent 60%),
        linear-gradient(#fbfdff, #ffffff);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.hero-device {
    /* min-height: 420px; */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 14px;
}

.hero-device img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-device.product-detail img{
    max-width: 360px;
}

.hero-media {
    padding: 14px;
    background: rgba(255, 255, 255, .65);
}

.hero-model {
    position: absolute;
    left: 22px;
    top: 18px;
    font-weight: 800;
    font-size: 12px;
    color: #000;
    letter-spacing: .06em;
    text-transform: uppercase;
    background: #fff;
    border: 1px solid rgba(231, 236, 243, .85);
    border-radius: 999px;
    padding: 8px 12px;
    backdrop-filter: blur(8px);
}

.mini-cta {
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.mini-cta b {
    font-size: 16px;
    letter-spacing: -.02em;
}

.mini-cta p {
    margin: 6px 0 0;
    color: var(--muted);
    max-width: 60ch;
}

/* Hero tiles / scans */
.tiles {
    position: absolute;
    inset: 14px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.tile {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 255, 255, .55));
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 22px rgba(2, 8, 20, .08);
}

.tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(220px 140px at 50% 55%, rgba(10, 166, 166, .10), transparent 60%),
        linear-gradient(90deg, rgba(15, 23, 42, .08), transparent 45%, rgba(15, 23, 42, .04));
    opacity: .55;
    mix-blend-mode: multiply;
}

.tile .label {
    position: absolute;
    left: 12px;
    top: 12px;
    font-size: 12px;
    font-weight: 900;
    color: rgba(11, 15, 22, .86);
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(15, 23, 42, .12);
    box-shadow: 0 8px 18px rgba(2, 8, 20, .06);
}

.tiles .tile img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-scans {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.scan-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(10, 18, 32, .08);
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
}

.scan-card figcaption {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(10, 18, 32, .75);
    background: rgba(10, 18, 32, .02);
    border-bottom: 1px solid rgba(10, 18, 32, .06);
}

.scan-card .dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #006877;
    display: inline-block;
    box-shadow: none;
}

.scan-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

/* Section Head */
.head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    padding: 18px 18px 0;
}

.head h2 {
    margin: 10px 0 0;
    font-size: clamp(24px, 3vw, 34px);
    letter-spacing: -.04em;
    line-height: 1.1;
    font-family: Space Grotesk, Inter, sans-serif;
}

.head p {
    margin: 0;
    color: var(--muted);
    /* max-width: 66ch; */
}

.pad {
    padding: 18px;
}

.kicker,
.app-kicker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

/* Features */
.features {
    grid-template-columns: repeat(4, 1fr);
}

.features .card {
    padding: 18px;
    transition: .2s ease;
}

.features .card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(10, 18, 32, .08);
}

.feature-icon,
.app-icon,
.spec-ico {
    display: inline-grid;
    place-items: center;
    color: var(--teal);
}

.feature-icon {
    width: 26px;
    height: 26px;
    opacity: .92;
}

.feature-icon svg {
    width: 22px;
    height: 22px;
}

.features h3 {
    margin: 10px 0 8px;
    letter-spacing: -.02em;
}

.features p {
    margin: 0;
    color: var(--muted);
    font-weight: 500;
    font-size: .875rem;
}

#technology {
    background: linear-gradient(#ffffff, #f9fbfd);
}

/* Products */
.tabs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    box-shadow: 0 2px 0 rgba(0, 0, 0, .02);
}

.tab {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 900;
    color: var(--muted);
    background: transparent;
    cursor: pointer;
}

.tab.active {
    background: var(--chip);
    border-color: var(--line);
    color: var(--text);
}

.products {
    grid-template-columns: repeat(12, 1fr);
    gap: 16px;
    margin-top: 14px;
}

.product {
    grid-column: span 4;
    overflow: hidden;
    transition: .2s ease;
}

.product:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 45px rgba(10, 18, 32, .10);
}

.product .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product .body {
    padding: 16px;
}

.product h3 {
    margin: 0 0 6px;
    letter-spacing: -.02em;
}

.product p {
    margin: 0;
    color: var(--muted);
    padding: 10px 0;
    font-size: .875rem;
}

.product p.models-inline {
    font-size: 13px;
    font-weight: 700;
    color: var(--muted);
    margin: 6px 0 4px;
    padding: 0;
}

.meta {
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(10, 166, 166, .08);
    border: 1px solid rgba(10, 166, 166, .18);
    font-weight: 600;
    font-size: 12px;
    color: var(--teal);
}

.series-badges .badge {
    padding: 8px 10px;
    font-size: 13px;
    background: rgba(0, 104, 119, .08);
    border: 1px solid rgba(0, 104, 119, .18);
    color: inherit;
}

.series-badges .badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #006877;
    display: inline-block;
    box-shadow: none;
}

.soon {
    background: rgba(90, 107, 130, .10);
    border-color: rgba(90, 107, 130, .18);
    color: #2a3a4f;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    position: relative;
    transition: color .2s ease;
}

.link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: var(--teal);
    transition: width .25s ease;
}

.link .arrow {
    transition: transform .2s ease;
}

.link:hover {
    color: var(--teal);
}

.link:hover::after {
    width: 100%;
}

.link:hover .arrow {
    transform: translateX(4px);
}

.series-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.product.minor {
    opacity: .98;
}

.product.minor .thumb {
    filter: saturate(.85);
}

.app-card {
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.app-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(10, 18, 32, .08);
    border-color: rgba(11, 107, 255, .20);
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: rgba(11, 107, 255, .06);
    border: 1px solid rgba(11, 107, 255, .12);
    flex: 0 0 auto;
}

.app-icon svg {
    display: block;
    width: 18px;
    height: 18px;
}

/* Series */
.series-hero {
    padding: 56px 0 18px;
}

.series-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 18px;
    align-items: center;
}

.series-badges {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

.model-cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 14px;
}

.model-card {
    grid-column: span 6;
    border-radius: 16px;
    border: 1px solid rgba(10, 18, 32, .08);
    background: #fff;
    padding: 18px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, .05);
    transition: .25s ease;
}

.model-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 46px rgba(0, 0, 0, .08);
}

.model-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    align-items: flex-start;
}

.model-top h3 {
    margin: 0;
}

.model-top .tag {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(10, 18, 32, .04);
    border: 1px solid rgba(10, 18, 32, .08);
    white-space: nowrap;
    font-weight: 600;
}

.model-kpis {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.kpi {
    border-radius: 12px;
    padding: 10px 12px;
    background: rgba(10, 18, 32, .03);
    border: 1px solid rgba(10, 18, 32, .08);
}

.kpi b {
    display: block;
    font-size: 12px;
    opacity: .7;
    margin-bottom: 2px;
}

.kpi span {
    font-weight: 600;
}

.model-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 14px;
}

/* FAQ */
.faq {
    border-radius: var(--radius2);
    overflow: hidden;
}

details {
    border-top: 1px solid var(--line);
    padding: 0;
}

details:first-child {
    border-top: none;
}

summary {
    padding: 16px 18px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-weight: 900;
    list-style: none;
}

summary::-webkit-details-marker {
    display: none;
}

.plus {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    background: #fbfdff;
    color: var(--muted);
    font-weight: 900;
}

.faq p {
    margin: 0;
    padding: 0 18px 16px;
    color: var(--muted);
    font-weight: 700;
}

/* Specs */
.specgrid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.spec {
    grid-column: span 4;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 22px rgba(2, 8, 20, .06);
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.spec-txt b {
    display: block;
    font-weight: 700;
    font-size: 1rem;
    color: rgba(10, 18, 32, .85);
}

.spec-txt span,
.spec-txt .muted {
    display: block;
    font-weight: 500;
    font-size: .875rem;
    color: rgba(10, 18, 32, .7);
}

.spec-ico {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(0, 104, 119, .08);
    border: 1px solid rgba(0, 104, 119, .18);
    color: #006877;
    flex: 0 0 34px;
}

.spec-ico svg {
    width: 18px;
    height: 18px;
}

.callout-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

/* Content cards */
.cards {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.cards .card {
    grid-column: span 6;
    padding: 16px;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 10px 22px rgba(2, 8, 20, .06);
}

.cards .card h3 {
    margin: 0;
    font-family: Space Grotesk, Inter, sans-serif;
    letter-spacing: -.02em;
}

.cards .card p {
    margin: 8px 0 0;
    color: var(--muted);
    font-size: .875rem;
}

.bullets {
    margin: 12px 0 0;
    padding-left: 18px;
    color: rgba(11, 15, 22, .82);
}

.bullets li {
    margin: 6px 0;
}

/* Media */
.media {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.imgbox {
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    background:
        radial-gradient(220px 120px at 55% 40%, rgba(10, 166, 166, .12), transparent 60%),
        radial-gradient(240px 140px at 35% 70%, rgba(59, 108, 255, .10), transparent 60%),
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 255, 255, .55));
    min-height: 220px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 26px rgba(2, 8, 20, .08);
}

.imgbox img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.imgbox:hover img {
    transform: scale(1.03);
}

/* Table */
.table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(15, 23, 42, .12);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 26px rgba(2, 8, 20, .06);
}

.table th,
.table td {
    padding: 14px 12px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: rgba(255, 255, 255, .72);
    text-align: left;
    vertical-align: middle;
}

.table th {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .10em;
    color: rgba(11, 15, 22, .58);
    background: rgba(15, 23, 42, .03);
}

.table tr:last-child td {
    border-bottom: none;
}

/* Compare table */
.compare-wrap {
    margin-top: 16px;
    overflow: auto;
    border-radius: 14px;
    border: 1px solid rgba(10, 18, 32, .08);
}

.compare {
    width: 100%;
    border-collapse: collapse;
    min-width: 840px;
    background: #fff;
}

.compare th,
.compare td {
    padding: 12px 14px;
    border: 1px solid rgba(10, 18, 32, .08);
    text-align: left;
    vertical-align: top;
}

.compare th {
    background: rgba(10, 18, 32, .03);
    font-size: 13px;
}

.compare td small {
    opacity: .8;
}

.note {
    font-size: 12px;
    opacity: .75;
    margin-top: 10px;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
    margin-top: 18px;
}

.gallery-card {
    position: relative;
    padding: 0;
    border: 1px solid rgba(10, 18, 32, .08);
    border-radius: 18px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .05);
    transition: transform .3s ease, box-shadow .3s ease;
}

.gallery-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .10);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 18, 32, .55), rgba(10, 18, 32, 0) 45%);
    opacity: .9;
    pointer-events: none;
}

.gallery-label {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 2;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: .01em;
}

.span-7 {
    grid-column: span 7;
    min-height: 260px;
}

.span-5 {
    grid-column: span 5;
    min-height: 260px;
}

.span-4 {
    grid-column: span 4;
    min-height: 210px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all .25s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(6, 12, 20, .82);
    backdrop-filter: blur(4px);
}

.lightbox-dialog {
    position: relative;
    z-index: 2;
    width: min(1100px, 100%);
    max-height: 90vh;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .28);
}

.lightbox-dialog img {
    width: 100%;
    max-height: 78vh;
    object-fit: contain;
    display: block;
    background: #fff;
}

.lightbox-caption {
    padding: 14px 18px;
    font-size: 14px;
    font-weight: 600;
    color: rgba(10, 18, 32, .82);
    border-top: 1px solid rgba(10, 18, 32, .08);
    background: #fff;
}

.lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: rgba(10, 18, 32, .78);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, transform .2s ease;
}

.lightbox-close:hover {
    background: #000;
    transform: scale(1.05);
}

body.lightbox-open {
    overflow: hidden;
}

/* CTA */
.cta {
    padding: 56px 0;
    background:
        radial-gradient(800px 300px at 20% 30%, rgba(10, 166, 166, .10), transparent 60%),
        radial-gradient(800px 300px at 80% 30%, rgba(11, 107, 255, .08), transparent 60%),
        linear-gradient(#fbfdff, #ffffff);
    border-top: 1px solid var(--line);
}

.cta-box {
    padding: 22px;
    border-radius: var(--radius2);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.cta-box h2 {
    margin: 10px 0 0;
    letter-spacing: -.04em;
}

.cta-box p {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 600;
    max-width: 64ch;
    font-size: .875rem;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Footer */
footer {
    padding: 0 0 36px;
}

.foot {
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.foot a {
    color: var(--muted);
    font-weight: 800;
}

.foot a:hover {
    color: var(--text);
}

.foot small {
    color: var(--muted);
    font-weight: 700;
}

/* Utilities */
.p-0{
    padding: 0;
}
.pb-0 {
    padding-bottom: 0 !important;
}

/* Animations */
@keyframes scan {
    0% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(140px);
    }
}

/* Responsive */
@media (min-width: 981px) {
    .product.series {
        grid-column: span 4;
    }

    .product.minor {
        grid-column: span 6;
    }
}

@media (max-width: 991px) {
    .span-7,
    .span-5 {
        grid-column: span 12;
        min-height: 240px;
    }

    .span-4 {
        grid-column: span 6;
        min-height: 200px;
    }
}

@media (max-width: 980px) {
    nav {
        display: none;
    }

    .split,
    .hero-wrap,
    .hero-inner,
    .hero3,
    .series-grid {
        grid-template-columns: 1fr;
    }

    .hero-metrics,
    .hero-metrics-v3,
    .features,
    .hero-scans {
        grid-template-columns: 1fr;
    }

    .hero-device {
        min-height: 360px;
    }

    .product {
        grid-column: span 6;
    }

    .spec {
        grid-column: span 6;
    }

    .cards .card {
        grid-column: span 12;
    }

    .media {
        grid-template-columns: 1fr;
    }

    .scan-card img {
        height: 190px;
    }
}

@media (max-width: 900px) {
    .twoCol {
        grid-template-columns: 1fr;
    }

    .model-card {
        grid-column: span 12;
    }
}

@media (max-width: 640px) {
    .span-4 {
        grid-column: span 12;
        min-height: 200px;
    }
}

@media (max-width: 620px) {
    .product {
        grid-column: span 12;
    }
}

@media (max-width: 560px) {
    .spec {
        grid-column: span 12;
    }
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto;
    }

    .visual .scan,
    .hero-device .scan,
    .scanline {
        animation: none;
    }

    .btn {
        transition: none;
    }
}