:root {
  --navy: #0b1e33;
  --navy-2: #102943;
  --blue: #1769d2;
  --blue-bright: #2986ff;
  --cyan: #39b7d4;
  --ink: #142031;
  --muted: #647386;
  --line: #d9e2eb;
  --surface: #eef3f7;
  --white: #fff;
  --success: #1d9b63;
  --radius: 6px;
  --shadow: 0 12px 32px rgba(11, 30, 51, .1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(rgba(11, 30, 51, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 30, 51, .035) 1px, transparent 1px),
    var(--surface);
  background-size: 32px 32px;
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }
.shell { width: min(1560px, calc(100% - 40px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

.utility-bar { background: var(--navy); color: #aab9c8; font-size: .75rem; letter-spacing: .035em; }
.utility-bar__inner { min-height: 31px; display: flex; align-items: center; justify-content: space-between; }
.utility-links { display: flex; gap: 24px; }
.utility-links a:hover { color: var(--white); }

.site-header { background: var(--white); box-shadow: 0 2px 16px rgba(11, 30, 51, .08); position: relative; z-index: 20; }
.header-main { min-height: 98px; display: grid; grid-template-columns: minmax(220px, 300px) minmax(280px, 640px) auto; align-items: center; gap: clamp(24px, 4vw, 72px); }
.brand img { display: block; width: 290px; max-height: 68px; object-fit: contain; }
.site-search { height: 48px; margin:0; display: grid; grid-template-columns: 1fr 52px; border: 1px solid #bbc8d5; border-radius: var(--radius); overflow: hidden; background: #f8fafc; transition: border-color .2s, box-shadow .2s; }
.site-search:focus-within { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23, 105, 210, .12); }
.site-search input { border: 0; outline: 0; background: transparent; padding: 0 16px; min-width: 0; color: var(--ink); }
.site-search button { border: 0; background: var(--blue); color: var(--white); cursor: pointer; display: grid; place-items: center; }
.site-search button:hover { background: #105bb8; }
.site-search svg, .header-actions svg { width: 22px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.header-actions { justify-self: end; display: flex; gap: 9px; }
.icon-link, .cart-link { min-height: 48px; display: flex; align-items: center; gap: 9px; padding: 0 13px; border: 1px solid var(--line); border-radius: var(--radius); font-size: .84rem; font-weight: 600; }
.icon-link:hover { border-color: var(--blue); color: var(--blue); }
.cart-link { background: var(--navy); border-color: var(--navy); color: var(--white); }
.cart-link:hover { background: var(--blue); border-color: var(--blue); }
.cart-link b { min-width: 22px; height: 22px; padding: 0 6px; border-radius: 11px; display: grid; place-items: center; background: var(--blue-bright); font-size: .7rem; }

.primary-nav { background: var(--navy-2); color: #dce8f2; border-bottom: 3px solid var(--blue); }
.primary-nav__inner { min-height: 49px; display: flex; align-items: stretch; }
.nav-links { display: flex; align-items: stretch; width: 100%; }
.nav-links > a, .products-menu__toggle { display: flex; align-items: center; padding: 0 clamp(13px, 1.55vw, 26px); text-transform: uppercase; font-family: "Barlow Condensed", sans-serif; font-size: .91rem; font-weight: 700; letter-spacing: .06em; position: relative; }
.nav-links > a::after, .products-menu__toggle::after { content: ""; position: absolute; left: 50%; right: 50%; bottom: -3px; height: 3px; background: var(--cyan); transition: left .2s, right .2s; }
.nav-links a:hover, .nav-links a.active { background: rgba(255,255,255,.055); color: var(--white); }
.nav-links > a:hover::after, .nav-links > a.active::after, .products-menu__toggle:hover::after, .products-menu__toggle[aria-expanded="true"]::after { left: 15px; right: 15px; }
.nav-links .nav-sale { margin-left: auto; color: #8fcdff; }
.menu-toggle { display: none; border: 0; color: var(--white); background: transparent; font-family: "Barlow Condensed", sans-serif; text-transform: uppercase; letter-spacing: .08em; font-weight: 700; }
.products-menu { display: flex; position: relative; }
.products-menu__toggle { border: 0; color: inherit; background: transparent; cursor: pointer; }
.products-menu__toggle span { margin-left: 7px; color: #75c9f3; font-size: .78rem; transition: transform .2s; }
.products-menu__toggle[aria-expanded="true"] span { transform: rotate(180deg); }
.mega-menu { position: fixed; z-index: 30; left: 50%; top: 178px; width: min(1500px, calc(100% - 40px)); max-height: min(590px, calc(100vh - 200px)); padding: 22px; overflow: auto; color: var(--ink); background: var(--white); border: 1px solid #c9d5df; border-top: 3px solid var(--blue-bright); box-shadow: 0 20px 42px rgba(4,20,35,.24); transform: translate(-50%, -8px); opacity: 0; visibility: hidden; pointer-events: none; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 24px; transition: transform .2s, opacity .2s, visibility .2s; }
.mega-menu.is-open { transform: translate(-50%, 0); opacity: 1; visibility: visible; pointer-events: auto; }
.mega-menu section { min-width: 0; display: flex; flex-direction: column; align-items: stretch; }
.mega-menu a { padding: 5px 0; color: var(--muted); background: transparent; font-family: Inter, sans-serif; font-size: .75rem; font-weight: 500; text-transform: none; letter-spacing: 0; line-height: 1.35; }
.mega-menu a:hover { color: var(--blue); background: transparent; }
.mega-menu .mega-menu__heading { min-height: 42px; padding: 0 0 8px; margin-bottom: 5px; color: var(--ink); border-bottom: 1px solid var(--line); font-family: "Barlow Condensed", sans-serif; font-size: .95rem; font-weight: 700; line-height: 1.12; }
.mega-menu .mega-menu__more { margin-top: 3px; color: var(--blue); font-size: .67rem; font-weight: 700; }
.mega-menu__other { grid-column: 1 / -1; display: grid !important; grid-template-columns: repeat(4, 1fr); gap: 4px 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.mega-menu__other .mega-menu__heading { grid-column: 1 / -1; min-height: 0; border: 0; }

.page-grid { display: grid; grid-template-columns: minmax(210px, 1fr) minmax(520px, 2fr) minmax(220px, 1fr); grid-template-areas: "left content right"; align-items: start; gap: clamp(14px, 1.4vw, 24px); padding-block: 26px 42px; }
.left-rail { grid-area: left; }
.content { grid-area: content; min-width: 0; background: var(--white); padding: clamp(18px, 2vw, 30px); box-shadow: var(--shadow); border-top: 3px solid var(--blue); }
.right-rail { grid-area: right; }
.left-rail, .right-rail { display: grid; gap: 18px; }
.rail-card, .stock-card, .help-card, .ad-card { background: var(--white); border: 1px solid var(--line); box-shadow: 0 7px 22px rgba(11,30,51,.065); }
.panel-heading { padding: 17px 19px 14px; border-bottom: 1px solid var(--line); }
.eyebrow { color: var(--blue); text-transform: uppercase; font-family: "Barlow Condensed", sans-serif; font-size: .76rem; font-weight: 700; letter-spacing: .13em; }
.panel-heading h2, .section-heading h2, .help-card h2 { margin: 2px 0 0; font-family: "Barlow Condensed", sans-serif; font-size: 1.45rem; line-height: 1.05; letter-spacing: .015em; }

.category-list { display: grid; }
.category-tree__item { border-bottom: 1px solid #e7edf2; }
.category-tree__main { display: grid; grid-template-columns: 1fr auto; align-items: stretch; }
.category-tree__main > a { display: flex; align-items: center; min-height: 45px; padding: 7px 8px 7px 19px; font-size: .79rem; font-weight: 600; line-height: 1.28; }
.category-tree__main > a:hover { color: var(--blue); background: #f4f8fc; }
.category-tree__toggle { width: 42px; border: 0; border-left: 1px solid #e7edf2; color: #718394; background: transparent; cursor: pointer; font-size: 1.05rem; }
.category-tree__toggle:hover, .category-tree__toggle[aria-expanded="true"] { color: var(--blue); background: #edf5fc; }
.category-tree__children { display: none; padding: 5px 0 8px; background: #f5f8fb; border-top: 1px solid #e5ecf2; }
.category-tree__item.is-open .category-tree__children { display: grid; }
.category-tree__children a { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 33px; gap: 8px; padding: 5px 13px 5px 25px; color: #56687a; font-size: .7rem; line-height: 1.25; }
.category-tree__children a:hover { color: var(--blue); background: #eaf2f9; }
.category-tree__children small { min-width: 24px; padding: 2px 5px; text-align: center; color: #778a9c; background: #e1e9f0; border-radius: 10px; font-size: .58rem; }
.category-tree__all { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 47px; padding: 0 17px 0 19px; color: var(--blue); font-size: .79rem; font-weight: 700; }

.ad-card { display: block; padding: 24px 20px; overflow: hidden; position: relative; }
.ad-card--blue { color: var(--white); background: linear-gradient(145deg, var(--navy-2), #174c7a); border-color: #245882; }
.ad-card--blue::after { content: ""; position: absolute; width: 150px; height: 150px; right: -65px; top: -62px; border: 18px solid rgba(74,177,255,.14); border-radius: 50%; }
.ad-label { display: block; color: #80caff; text-transform: uppercase; font-size: .72rem; letter-spacing: .12em; font-weight: 700; }
.ad-card strong { display: block; margin-top: 3px; font-family: "Barlow Condensed", sans-serif; font-size: 1.65rem; }
.ad-card p { color: #c6d9e8; font-size: .84rem; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: var(--white); font-size: .82rem; font-weight: 700; }
.ad-card:hover .text-link b { transform: translateX(4px); }

.stock-card { padding: 18px 19px; }
.stock-card__meter { height: 5px; background: #dce5eb; margin-bottom: 14px; overflow: hidden; }
.stock-card__meter span { display: block; width: var(--stock); height: 100%; background: linear-gradient(90deg, var(--success), #45c687); }
.stock-card__scope { display: block; margin-bottom: 4px; }
.stock-card strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; }
.stock-card p { margin: 2px 0 0; color: var(--muted); font-size: .81rem; }

.hero-card { min-height: 310px; display: grid; grid-template-columns: 1.15fr .85fr; overflow: hidden; color: var(--white); background: linear-gradient(125deg, #0a1c2e 0%, #102e4b 57%, #0b2540 100%); position: relative; }
.hero-card::before { content: ""; position: absolute; inset: 0; opacity: .13; background: repeating-linear-gradient(115deg, transparent 0 20px, #7dc8ff 21px, transparent 22px 43px); mask-image: linear-gradient(90deg, transparent 25%, #000); }
.hero-card__copy { padding: clamp(28px, 4vw, 48px); position: relative; z-index: 2; align-self: center; }
.eyebrow--light { color: #69c8f3; }
.hero-card h1 { max-width: 580px; margin: 7px 0 12px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(2.05rem, 3.2vw, 3.3rem); line-height: .98; letter-spacing: .005em; }
.hero-card p { max-width: 560px; color: #c8d9e7; font-size: .92rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.button { min-height: 44px; display: inline-flex; align-items: center; padding: 0 18px; border-radius: 4px; font-size: .8rem; font-weight: 700; }
.button--primary { background: var(--blue-bright); color: var(--white); box-shadow: 0 5px 18px rgba(41,134,255,.25); }
.button--primary:hover { background: #52a0ff; }
.button--ghost { border: 1px solid #678198; color: #e9f5ff; }
.button--ghost:hover { border-color: #c1def5; }

.hero-card__visual { position: relative; min-height: 300px; }
.focus-ring { position: absolute; border: 1px solid rgba(104,204,255,.32); border-radius: 50%; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.focus-ring::before, .focus-ring::after { content: ""; position: absolute; background: rgba(89,194,244,.5); }
.focus-ring::before { width: 28px; height: 1px; top: 50%; left: -14px; }
.focus-ring::after { width: 1px; height: 28px; left: 50%; top: -14px; }
.focus-ring--one { width: 230px; height: 230px; }
.focus-ring--two { width: 170px; height: 170px; border-style: dashed; animation: rotate 24s linear infinite; }
.camera-module { position: absolute; width: 112px; height: 92px; left: 50%; top: 50%; transform: translate(-50%,-50%); border-radius: 8px; background: linear-gradient(145deg, #8090a0, #243748 45%, #0d1721); box-shadow: 0 22px 45px rgba(0,0,0,.42), inset 0 1px 0 rgba(255,255,255,.38); }
.camera-module i { position: absolute; width: 7px; height: 7px; background: #8d9ba8; border-radius: 50%; }
.camera-module i:nth-of-type(1) { left: 8px; top: 8px; }.camera-module i:nth-of-type(2) { right: 8px; top: 8px; }.camera-module i:nth-of-type(3) { left: 8px; bottom: 8px; }.camera-module i:nth-of-type(4) { right: 8px; bottom: 8px; }
.camera-lens { position: absolute; width: 70px; height: 70px; left: 21px; top: 11px; border: 8px solid #162737; border-radius: 50%; background: radial-gradient(circle at 42% 38%, #64c8e2 0 5%, #19475a 13%, #07121d 45%, #02070b 64%); box-shadow: 0 0 0 3px #778998, inset 0 0 16px #1f7e9c; }
.data-line { position: absolute; color: #7dcaf0; font-family: monospace; font-size: .68rem; letter-spacing: .08em; }
.data-line--top { top: 22%; right: 8%; }.data-line--bottom { bottom: 21%; left: 7%; }
@keyframes rotate { to { transform: translate(-50%,-50%) rotate(360deg); } }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 16px; padding: 29px 0 15px; }
.section-heading h2 { font-size: 1.75rem; }
.section-heading > a { color: var(--blue); font-size: .8rem; font-weight: 700; }
.section-heading > a span { margin-left: 5px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.product-card { position: relative; padding: 16px; border: 1px solid var(--line); transition: transform .2s, box-shadow .2s, border-color .2s; }
.product-card:hover { transform: translateY(-3px); border-color: #aec5db; box-shadow: 0 12px 24px rgba(11,30,51,.09); }
.product-badge { position: absolute; z-index: 2; left: 12px; top: 12px; padding: 4px 8px; color: var(--white); background: var(--blue); text-transform: uppercase; font-size: .61rem; font-weight: 800; letter-spacing: .08em; }
.product-badge--new { background: #087b82; }
.product-card .product-image { height: 164px; display: grid; place-items: center; background: linear-gradient(145deg, #f8fafc, #eef3f6); }
.product-card .product-image img { max-height: 144px; max-width: 90%; object-fit: contain; mix-blend-mode: multiply; }
.product-meta { margin-top: 13px; color: #7b8a99; text-transform: uppercase; font-size: .63rem; font-weight: 700; letter-spacing: .055em; }
.product-card h3 { min-height: 44px; margin: 6px 0 8px; font-size: .91rem; line-height: 1.35; }
.product-card h3 a:hover { color: var(--blue); }
.availability { margin: 0; color: var(--success); font-size: .72rem; font-weight: 600; }
.availability span { display: inline-block; width: 7px; height: 7px; margin-right: 5px; border-radius: 50%; background: var(--success); }
.product-bottom { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 14px; padding-top: 12px; border-top: 1px solid #e5ebf0; }
.product-bottom strong { font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; }
.add-to-cart { min-height: 35px; padding: 0 12px; border: 0; border-radius: 3px; background: var(--blue); color: var(--white); cursor: pointer; font-size: .72rem; font-weight: 700; }
.add-to-cart:hover { background: var(--navy); }

.service-strip { margin-top: 18px; display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); background: #f6f9fb; }
.service-strip > div { min-height: 75px; display: flex; align-items: center; gap: 11px; padding: 12px; border-right: 1px solid var(--line); }
.service-strip > div:last-child { border-right: 0; }
.service-strip b { color: #adc0d1; font-family: "Barlow Condensed", sans-serif; font-size: 1.5rem; }
.service-strip span { color: var(--muted); font-size: .62rem; }
.service-strip strong { display: block; color: var(--ink); font-size: .72rem; }

.article-panel { padding-bottom: 17px; }
.lead-article { padding: 17px 18px 14px; }
.article-graphic { height: 122px; position: relative; overflow: hidden; margin-bottom: 14px; background: linear-gradient(135deg, #123250, #216fa4); }
.article-graphic::before { content: ""; position: absolute; width: 130px; height: 130px; border: 26px solid rgba(117,204,243,.13); border-radius: 50%; right: -35px; bottom: -48px; }
.article-graphic::after { content: "CAM 01  ·  SIGNAL OK"; position: absolute; left: 12px; bottom: 10px; color: #84d7ff; font-family: monospace; font-size: .62rem; letter-spacing: .07em; }
.article-graphic span { position: absolute; inset: 24px 39px; border: 1px solid rgba(139,218,255,.38); }
.article-graphic span::before, .article-graphic span::after { content: ""; position: absolute; background: #76c9ef; opacity: .6; }
.article-graphic span::before { width: 100%; height: 1px; top: 50%; }.article-graphic span::after { width: 1px; height: 100%; left: 50%; }
.article-tag { color: var(--blue); text-transform: uppercase; font-size: .64rem; font-weight: 800; letter-spacing: .08em; }
.lead-article h3 { margin: 6px 0 6px; font-size: 1rem; line-height: 1.3; }
.lead-article p { margin: 0; color: var(--muted); font-size: .75rem; }
.article-list { border-top: 1px solid var(--line); }
.article-list a { position: relative; display: block; padding: 13px 34px 13px 18px; border-bottom: 1px solid #e7edf2; }
.article-list a span { display: block; color: #8493a1; text-transform: uppercase; font-size: .59rem; font-weight: 700; letter-spacing: .08em; }
.article-list a strong { display: block; margin-top: 2px; font-size: .77rem; line-height: 1.35; }
.article-list a b { position: absolute; right: 16px; top: 50%; color: var(--blue); transform: translateY(-50%); }
.article-list a:hover { color: var(--blue); background: #f5f9fc; }
.all-articles { display: inline-block; margin: 15px 18px 0; color: var(--blue); font-size: .75rem; font-weight: 700; }

.help-card { padding: 20px 18px; display: flex; gap: 13px; }
.help-card__icon { flex: 0 0 37px; height: 37px; display: grid; place-items: center; border: 1px solid var(--blue); color: var(--blue); border-radius: 50%; font-family: "Barlow Condensed", sans-serif; font-size: 1.3rem; font-weight: 700; }
.help-card h2 { font-size: 1.3rem; }
.help-card p { margin: 8px 0 12px; color: var(--muted); font-size: .75rem; }
.help-card a { display: block; color: var(--blue); font-family: "Barlow Condensed", sans-serif; font-size: 1.25rem; font-weight: 700; }
.help-card small { color: #81909e; font-size: .66rem; }

.site-footer { background: var(--navy); color: #b9c8d5; border-top: 4px solid var(--blue); padding: 0 20px; }
.footer-grid { min-height: 190px; display: grid; grid-template-columns: 1.6fr repeat(3, 1fr); gap: 35px; align-items: center; font-size: .8rem; }
.footer-grid > div { display: flex; flex-direction: column; gap: 6px; }
.footer-grid img { width: 235px; filter: brightness(0) invert(1); opacity: .86; }
.footer-grid p, .footer-grid span { margin: 0; }
.footer-grid strong { color: var(--white); font-family: "Barlow Condensed", sans-serif; font-size: 1rem; letter-spacing: .03em; }
.footer-grid a:hover { color: var(--white); }

.toast-region { position: fixed; z-index: 1000; top: 12px; left: 50%; width: min(440px, calc(100% - 28px)); transform: translateX(-50%); display: grid; gap: 8px; pointer-events: none; }
.toast { display: grid; grid-template-columns: 30px 1fr 28px; gap: 10px; align-items: center; padding: 12px 12px; color: var(--white); background: rgba(11,30,51,.97); border: 1px solid #31506d; border-left: 4px solid var(--blue-bright); box-shadow: 0 14px 35px rgba(0,0,0,.25); transform: translateY(-140%); opacity: 0; pointer-events: auto; transition: transform .3s cubic-bezier(.2,.8,.2,1), opacity .3s; }
.toast.is-visible { transform: translateY(0); opacity: 1; }
.toast.is-leaving { transform: translateY(-120%); opacity: 0; }
.toast__icon { width: 27px; height: 27px; border-radius: 50%; display: grid; place-items: center; background: rgba(41,134,255,.18); color: #79b8ff; font-weight: 800; }
.toast__message { font-size: .82rem; font-weight: 600; }
.toast__close { width: 28px; height: 28px; border: 0; color: #aebdca; background: transparent; cursor: pointer; font-size: 1.2rem; }
.toast__close:hover { color: var(--white); }

@media (max-width: 1120px) {
  .header-main { grid-template-columns: 230px 1fr auto; gap: 18px; }
  .icon-link span { display: none; }
  .page-grid { grid-template-columns: minmax(190px, .78fr) minmax(480px, 2fr); grid-template-areas: "left content" "right content"; }
  .right-rail { align-self: start; }
  .hero-card { grid-template-columns: 1fr .65fr; }
  .mega-menu { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .mega-menu__other { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 800px) {
  .shell { width: 100%; }
  .utility-bar { display: none; }
  .header-main { min-height: 78px; grid-template-columns: 1fr auto; }
  .brand img { width: 250px; }
  .site-search { grid-row: 2; grid-column: 1 / -1; margin-bottom: 12px; }
  .icon-link { display: none; }
  .cart-link span { display: none; }
  .primary-nav__inner { min-height: 45px; display: block; }
  .menu-toggle { height: 45px; display: flex; align-items: center; gap: 5px; }
  .menu-toggle span { width: 4px; height: 4px; border-radius: 50%; background: #7bc8f2; }
  .nav-links { display: none; padding: 5px 0 12px; flex-direction: column; }
  .nav-links.is-open { display: flex; }
  .nav-links > a, .products-menu__toggle { width: 100%; min-height: 42px; padding: 0 10px; }
  .nav-links .nav-sale { margin-left: 0; }
  .products-menu { display: block; }
  .products-menu__toggle { justify-content: space-between; }
  .mega-menu { position: static; width: 100%; max-height: none; display: none; grid-template-columns: 1fr; padding: 12px 14px; color: var(--white); background: #0d2338; border: 0; border-left: 2px solid var(--blue-bright); box-shadow: none; transform: none; opacity: 1; visibility: visible; pointer-events: auto; transition: none; }
  .mega-menu.is-open { display: grid; transform: none; }
  .mega-menu a { color: #bacbd8; }
  .mega-menu .mega-menu__heading { min-height: 0; color: var(--white); border-color: #294157; }
  .mega-menu__other { grid-column: auto; grid-template-columns: 1fr; border-color: #294157; }
  .page-grid { grid-template-columns: 1fr; grid-template-areas: "content" "left" "right"; gap: 16px; padding-top: 16px; }
  .hero-card { grid-template-columns: 1fr; }
  .hero-card__visual { min-height: 205px; order: -1; }
  .hero-card__copy { padding-top: 10px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); padding-block: 32px; }
}

@media (max-width: 520px) {
  .shell { width: 100%; }
  .header-main { gap: 9px;padding:10px; }
  .brand img { width: 220px; }
  .content { padding: 12px;padding-top:0; }
  .hero-card h1 { font-size: 2.05rem; }
  .hero-card__visual { min-height: 175px; }
  .focus-ring--one { width: 160px; height: 160px; }
  .focus-ring--two { width: 120px; height: 120px; }
  .camera-module { transform: translate(-50%,-50%) scale(.78); }
  .hero-actions { display: grid; }
  .button { justify-content: center; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card h3 { min-height: auto; }
  .service-strip { grid-template-columns: 1fr; }
  .service-strip > div { border-right: 0; border-bottom: 1px solid var(--line); }
  .service-strip > div:last-child { border-bottom: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 23px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
}
