:root {
  --ink: #102a30;
  --ink-2: #173b42;
  --teal: #117c79;
  --teal-dark: #0b5f5d;
  --mint: #dff2ed;
  --paper: #f7f5ef;
  --white: #ffffff;
  --muted: #607175;
  --line: #d8e1df;
  --amber: #d6a84f;
  --shadow: 0 18px 50px rgba(16, 42, 48, .10);
  --radius: 22px;
  --max: 1160px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }
.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.skip-link { position: fixed; left: 12px; top: -60px; z-index: 100; background: var(--white); padding: 10px 16px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 245, 239, .93);
  border-bottom: 1px solid rgba(16, 42, 48, .08);
  backdrop-filter: blur(16px);
}
.nav-wrap { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
.brand small { display: block; margin-top: -5px; color: var(--muted); font-size: 10px; letter-spacing: .08em; font-weight: 600; }
.nav-toggle {
  position: relative;
  z-index: 72;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  display: block;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span, .nav-toggle::before, .nav-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transform-origin: center;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle span { transform: translate(-50%, -50%); }
.nav-toggle::before { transform: translate(-50%, calc(-50% - 6px)); }
.nav-toggle::after { transform: translate(-50%, calc(-50% + 6px)); }
.nav-toggle[aria-expanded="true"] span { opacity: 0; }
.nav-toggle[aria-expanded="true"]::before { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"]::after { transform: translate(-50%, -50%) rotate(-45deg); }
.site-nav {
  position: fixed;
  z-index: 70;
  inset: 72px 0 0;
  height: calc(100vh - 72px);
  height: calc(100dvh - 72px);
  padding: 28px 20px 48px;
  overflow-y: auto;
  overscroll-behavior: contain;
  background-color: #f7f5ef;
  box-shadow: 0 18px 36px rgba(16, 42, 48, .12);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(100%);
  transition: transform .3s ease, opacity .2s ease, visibility 0s linear .3s;
}
.site-nav.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
  transition-delay: 0s;
}
.site-nav ul { max-width: var(--max); margin: 0 auto; padding: 0; list-style: none; }
.site-nav a { display: block; padding: 14px 4px; border-bottom: 1px solid var(--line); text-decoration: none; font-size: 1.1rem; font-weight: 700; }
.site-nav a[aria-current="page"] { color: var(--teal); }

.eyebrow { margin: 0 0 12px; color: var(--teal-dark); font-size: .78rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
h1, h2, h3 { margin-top: 0; line-height: 1.25; letter-spacing: -.035em; }
h1 { font-size: clamp(2.55rem, 12vw, 5.5rem); }
h2 { font-size: clamp(1.9rem, 7vw, 3.25rem); }
h3 { font-size: 1.25rem; }
.lead { font-size: clamp(1.05rem, 3vw, 1.28rem); color: #40575c; }
.section { padding: 72px 0; }
.section-title { max-width: 740px; margin-bottom: 34px; }
.section-title p:last-child { color: var(--muted); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 11px 20px; border: 1px solid var(--ink); border-radius: 999px; background: var(--ink); color: white; text-decoration: none; font-weight: 750; transition: .2s; }
.button:hover { transform: translateY(-2px); background: var(--ink-2); }
.button.secondary { color: var(--ink); background: transparent; }
.button.secondary:hover { background: white; }
.text-link { color: var(--teal-dark); font-weight: 800; text-underline-offset: 4px; }

.hero { position: relative; overflow: hidden; padding: 66px 0 58px; }
.hero::after { content: ""; position: absolute; width: 360px; height: 360px; right: -170px; top: -80px; border: 75px solid var(--mint); border-radius: 50%; z-index: -1; }
.hero-grid { display: grid; gap: 42px; }
.hero h1 { max-width: 860px; margin-bottom: 22px; }
.hero h1 span { color: var(--teal-dark); }
.hero-copy { max-width: 710px; }
.trust-strip { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; margin-top: 52px; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: var(--line); }
.trust-item { min-height: 106px; padding: 18px; background: rgba(255,255,255,.7); }
.trust-item strong { display: block; margin-bottom: 4px; font-size: .95rem; }
.trust-item span { color: var(--muted); font-size: .82rem; line-height: 1.45; display: block; }

.grid-3, .grid-2, .case-grid { display: grid; gap: 16px; }
.card { padding: 28px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.72); }
.card-number { display: inline-grid; width: 36px; height: 36px; margin-bottom: 24px; place-items: center; border-radius: 50%; background: var(--mint); color: var(--teal-dark); font-weight: 900; }
.card p { color: var(--muted); }
.card ul { padding-left: 20px; color: var(--muted); }
.dark-section { color: white; background: var(--ink); }
.dark-section .eyebrow { color: #79d3c6; }
.dark-section .lead, .dark-section .section-title p:last-child, .dark-section .card p { color: #b9c9c8; }
.dark-section .card { border-color: rgba(255,255,255,.14); background: rgba(255,255,255,.055); }
.dark-section .card-number { background: rgba(121,211,198,.14); color: #91e1d5; }
.case-card { display: flex; min-height: 260px; padding: 26px; flex-direction: column; justify-content: space-between; border-radius: var(--radius); background: white; box-shadow: var(--shadow); }
.case-card .tag { align-self: flex-start; padding: 5px 10px; border-radius: 999px; color: var(--teal-dark); background: var(--mint); font-size: .76rem; font-weight: 800; }
.case-card p { color: var(--muted); }
.case-card strong { color: var(--teal-dark); }
.quote-block { padding: 34px; border-left: 4px solid var(--amber); background: white; border-radius: 0 var(--radius) var(--radius) 0; box-shadow: var(--shadow); }
.quote-block blockquote { margin: 0; font-size: clamp(1.25rem, 4vw, 1.8rem); font-weight: 700; line-height: 1.55; }
.profile-layout { display: grid; gap: 30px; }
.profile-image { aspect-ratio: 4/3; border-radius: var(--radius); object-fit: cover; object-position: center; box-shadow: var(--shadow); }
.facts { display: grid; gap: 12px; margin: 28px 0 0; }
.fact { padding: 18px; border-top: 1px solid var(--line); }
.fact strong { display: block; }
.fact span { color: var(--muted); }
.timeline { display: grid; gap: 0; }
.timeline-item { position: relative; padding: 0 0 34px 30px; border-left: 1px solid var(--line); }
.timeline-item::before { content: ""; position: absolute; left: -6px; top: 7px; width: 11px; height: 11px; border-radius: 50%; background: var(--teal); }
.timeline-item:last-child { border-left-color: transparent; }
.timeline-item p { color: var(--muted); }
.page-hero { padding: 58px 0 42px; }
.page-hero h1 { max-width: 900px; margin-bottom: 18px; font-size: clamp(2.4rem, 10vw, 4.8rem); }
.page-hero .lead { max-width: 780px; }
.service-detail { padding: 28px 0; border-top: 1px solid var(--line); }
.service-detail header { margin-bottom: 18px; }
.service-detail .deliverables { padding: 22px; border-radius: 18px; background: white; }
.service-detail ul { margin: 0; padding-left: 20px; }
.studio-hero { display: grid; overflow: hidden; border-radius: 30px; background: #2c2321; color: white; }
.studio-hero img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }
.studio-copy { padding: 34px; }
.studio-copy .eyebrow { color: #efc5a6; }
.article-list { display: grid; gap: 14px; }
.article { padding: 24px 0; border-top: 1px solid var(--line); }
.article time { color: var(--muted); font-size: .86rem; }
.article p { color: var(--muted); }
.notice { padding: 22px; border: 1px solid #c9ded9; border-radius: 16px; background: var(--mint); }
.notice p:last-child { margin-bottom: 0; }
.policy-layout { display: grid; gap: 42px; }
.policy-index { display: grid; align-content: start; gap: 8px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.policy-index strong { margin-bottom: 6px; }
.policy-index a { color: var(--muted); font-size: .86rem; text-decoration: none; }
.policy-index a:hover { color: var(--teal-dark); }
.policy-content { min-width: 0; }
.policy-content .article { scroll-margin-top: 100px; }
.policy-content li + li { margin-top: 8px; }

.cta { padding: 0 0 72px; }
.cta-box { position: relative; overflow: hidden; padding: 38px 28px; border-radius: 28px; color: white; background: var(--teal-dark); }
.cta-box::after { content: ""; position: absolute; right: -60px; bottom: -110px; width: 220px; height: 220px; border: 42px solid rgba(255,255,255,.09); border-radius: 50%; }
.cta-box h2 { max-width: 720px; }
.cta-box p { max-width: 680px; color: #d4efea; }
.cta-box .button { color: var(--ink); background: white; border-color: white; }
.site-footer { padding: 48px 0 24px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; gap: 28px; }
.footer-brand p { max-width: 420px; color: var(--muted); }
.company-address { margin: 12px 0; color: var(--muted); font-style: normal; }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px 22px; }
.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--teal-dark); }
.copyright { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--line); color: var(--muted); font-size: .78rem; }

/* Security solutions */
.product-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 0;
  background:
    radial-gradient(circle at 83% 20%, rgba(121, 211, 198, .26), transparent 23rem),
    linear-gradient(135deg, #f7f5ef 0%, #eef6f2 100%);
}
.product-hero::before {
  content: "";
  position: absolute;
  right: -150px;
  top: 6%;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(17, 124, 121, .15);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(17, 124, 121, .04), 0 0 0 74px rgba(17, 124, 121, .035);
}
.product-hero__grid { display: grid; gap: 42px; align-items: center; }
.product-hero__copy { position: relative; z-index: 1; max-width: 720px; }
.product-hero h1 { max-width: 720px; margin-bottom: 22px; font-size: clamp(2.55rem, 9vw, 5.25rem); }
.product-hero h1 span { color: var(--teal-dark); }
.product-hero .lead { max-width: 650px; }
.product-hero__note { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-top: 26px; color: var(--muted); font-size: .86rem; }
.product-hero__note strong { color: var(--ink); }
.product-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 5px rgba(17, 124, 121, .13); }
.product-visual { position: relative; min-height: 380px; isolation: isolate; }
.product-visual__orb { position: absolute; border-radius: 50%; opacity: .8; }
.product-visual__orb--one { right: 1%; top: 6%; width: 245px; height: 245px; border: 1px solid rgba(17, 124, 121, .24); box-shadow: 0 0 0 18px rgba(17, 124, 121, .055), 0 0 0 47px rgba(17, 124, 121, .035); }
.product-visual__orb--two { left: 2%; bottom: 7%; width: 98px; height: 98px; background: rgba(214, 168, 79, .16); }
.product-visual__window { position: absolute; z-index: 1; inset: 26px 0 20px 0; overflow: hidden; border: 1px solid rgba(255,255,255,.7); border-radius: 26px; background: rgba(16, 42, 48, .94); box-shadow: 0 26px 70px rgba(16, 42, 48, .2); transform: rotate(2.5deg); }
.product-visual__bar, .product-visual__footer { display: flex; align-items: center; gap: 12px; padding: 16px 18px; color: #b9c9c8; font-size: .68rem; letter-spacing: .1em; }
.product-visual__bar { border-bottom: 1px solid rgba(255,255,255,.1); }
.product-visual__bar b { margin-left: auto; color: #91e1d5; font-size: .56rem; font-weight: 800; }
.product-visual__signal { display: inline-flex; gap: 3px; align-items: end; height: 12px; }
.product-visual__signal i { display: block; width: 3px; border-radius: 3px; background: #91e1d5; }
.product-visual__signal i:nth-child(1) { height: 5px; opacity: .5; }
.product-visual__signal i:nth-child(2) { height: 9px; opacity: .75; }
.product-visual__signal i:nth-child(3) { height: 12px; }
.product-visual__canvas { position: relative; min-height: 265px; }
.product-visual__source, .product-visual__endpoint { position: absolute; display: grid; gap: 2px; width: 105px; padding: 12px; border: 1px solid rgba(145,225,213,.25); border-radius: 12px; background: rgba(255,255,255,.06); color: #fff; }
.product-visual__source span, .product-visual__endpoint span { color: #79d3c6; font-size: .55rem; letter-spacing: .14em; }
.product-visual__source strong, .product-visual__endpoint strong { font-size: .82rem; }
.product-visual__source em, .product-visual__endpoint em { color: #b9c9c8; font-size: .64rem; font-style: normal; }
.product-visual__source--host { left: 8%; top: 22%; }
.product-visual__source--code { left: 8%; bottom: 18%; }
.product-visual__endpoint { right: 7%; bottom: 18%; border-color: rgba(214,168,79,.38); }
.product-visual__endpoint span { color: #efcf84; }
.product-visual__hub { position: absolute; left: 50%; top: 50%; display: grid; width: 116px; height: 116px; place-items: center; align-content: center; border: 1px solid rgba(145,225,213,.42); border-radius: 50%; background: #153e43; color: white; transform: translate(-50%, -50%); box-shadow: 0 0 0 12px rgba(121,211,198,.07), 0 0 38px rgba(121,211,198,.18); }
.product-visual__hub-ring { position: absolute; inset: 10px; border: 1px dashed rgba(145,225,213,.48); border-radius: 50%; }
.product-visual__hub strong { position: relative; font-size: .9rem; }
.product-visual__hub small { position: relative; color: #91e1d5; font-size: .6rem; }
.product-visual__connector { position: absolute; height: 1px; background: linear-gradient(90deg, rgba(121,211,198,.15), #79d3c6, rgba(121,211,198,.15)); transform-origin: left center; }
.product-visual__connector--one { left: 27%; top: 42%; width: 24%; transform: rotate(13deg); }
.product-visual__connector--two { left: 27%; top: 59%; width: 24%; transform: rotate(-13deg); }
.product-visual__footer { justify-content: space-between; border-top: 1px solid rgba(255,255,255,.1); font-size: .58rem; letter-spacing: .04em; }
.product-visual__footer span { display: inline-flex; gap: 5px; align-items: center; }
.product-visual__footer strong { margin-left: auto; color: #efcf84; font-size: .55rem; letter-spacing: .08em; }
.status-dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.status-dot--teal { color: #79d3c6; }
.status-dot--amber { color: #efcf84; }
.status-dot--green { color: #9de0a5; }
.product-hero__rail { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 62px; border-top: 1px solid rgba(16,42,48,.12); }
.product-hero__rail > div { display: grid; grid-template-columns: auto 1fr; column-gap: 10px; padding: 17px 14px 22px 0; }
.product-hero__rail > div + div { padding-left: 14px; border-left: 1px solid rgba(16,42,48,.12); }
.product-hero__rail span { grid-row: span 2; color: var(--teal-dark); font-size: .72rem; font-weight: 900; letter-spacing: .1em; }
.product-hero__rail strong { font-size: .86rem; }
.product-hero__rail small { color: var(--muted); font-size: .7rem; }
.product-section-title { max-width: 790px; }
.product-section-title h2 { margin-bottom: 14px; }
.product-pain { background: #edf1ee; }
.product-pain-grid { display: grid; gap: 14px; }
.product-pain-card { position: relative; min-height: 210px; padding: 26px; overflow: hidden; border: 1px solid rgba(16,42,48,.1); border-radius: var(--radius); background: rgba(255,255,255,.64); }
.product-pain-card::after { content: ""; position: absolute; right: -30px; bottom: -44px; width: 130px; height: 130px; border: 24px solid rgba(17,124,121,.08); border-radius: 50%; }
.product-pain-card__number { display: block; margin-bottom: 28px; color: var(--teal-dark); font-size: .75rem; font-weight: 900; letter-spacing: .12em; }
.product-pain-card strong { display: block; max-width: 220px; font-size: 1.15rem; line-height: 1.4; }
.product-pain-card p { position: relative; z-index: 1; max-width: 300px; margin: 12px 0 0; color: var(--muted); font-size: .92rem; }
.product-products { overflow: hidden; }
.product-products .section-title { margin-bottom: 42px; }
.product-grid { display: grid; gap: 18px; }
.product-card { display: grid; overflow: hidden; border-radius: 28px; background: var(--paper); color: var(--ink); box-shadow: 0 20px 60px rgba(0,0,0,.16); }
.product-card__visual-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 20px 22px; color: #dff2ed; font-size: .66rem; font-weight: 900; letter-spacing: .13em; }
.product-card__visual-top i { color: #79d3c6; font-size: .53rem; font-style: normal; letter-spacing: .08em; }
.hub-visual, .endpoint-visual { min-height: 268px; color: white; }
.hub-visual { background: radial-gradient(circle at 74% 33%, rgba(121,211,198,.25), transparent 9rem), #13373d; }
.hub-visual__flow { display: flex; min-height: 150px; align-items: center; justify-content: center; gap: 12px; padding: 12px 22px; }
.hub-visual__sources { display: grid; gap: 8px; }
.hub-visual__sources span { min-width: 68px; padding: 8px 10px; border: 1px solid rgba(145,225,213,.25); border-radius: 8px; background: rgba(255,255,255,.07); color: #dff2ed; font-size: .72rem; text-align: center; }
.hub-visual__arrow { color: #79d3c6; font-size: 1.4rem; }
.hub-visual__core { display: grid; min-width: 108px; min-height: 108px; place-items: center; align-content: center; border: 1px solid rgba(145,225,213,.45); border-radius: 50%; background: #1b5052; box-shadow: 0 0 0 11px rgba(121,211,198,.06); }
.hub-visual__core strong { font-size: .86rem; }
.hub-visual__core small { color: #91e1d5; font-size: .61rem; }
.hub-visual__statuses { display: flex; justify-content: center; gap: 18px; padding: 5px 22px 20px; color: #b9c9c8; font-size: .66rem; }
.hub-visual__statuses span { display: inline-flex; gap: 5px; align-items: center; }
.endpoint-visual { background: radial-gradient(circle at 18% 17%, rgba(214,168,79,.22), transparent 8rem), #16343a; }
.endpoint-visual__device { display: grid; width: 190px; margin: 12px auto 13px; padding: 13px 18px; grid-template-columns: auto 1fr; column-gap: 10px; align-items: center; border: 1px solid rgba(239,207,132,.34); border-radius: 13px; background: rgba(255,255,255,.06); }
.endpoint-visual__device-light { grid-row: span 2; width: 24px; height: 24px; border: 5px solid rgba(157,224,165,.18); border-top-color: #9de0a5; border-radius: 50%; }
.endpoint-visual__device strong { font-size: .82rem; }
.endpoint-visual__device small { color: #b9c9c8; font-size: .59rem; }
.endpoint-visual__checks { display: grid; gap: 6px; padding: 0 22px 20px; }
.endpoint-visual__checks div { display: flex; align-items: center; justify-content: space-between; padding: 7px 10px; border-top: 1px solid rgba(255,255,255,.1); color: #b9c9c8; font-size: .68rem; }
.endpoint-visual__checks span { display: inline-flex; gap: 6px; align-items: center; }
.endpoint-visual__checks strong { color: #dff2ed; font-size: .66rem; font-weight: 700; }
.product-card__content { padding: 28px 28px 32px; }
.product-card__link { display: inline-block; margin-top: 22px; font-size: .86rem; }
.product-card__label { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; margin-bottom: 12px; }
.product-card__label span { padding: 5px 9px; border-radius: 999px; color: var(--teal-dark); background: var(--mint); font-size: .7rem; font-weight: 900; }
.product-card__label small { color: var(--muted); font-size: .66rem; letter-spacing: .05em; }
.product-card__content h3 { margin-bottom: 10px; font-size: clamp(1.75rem, 4vw, 2.25rem); }
.product-card__content p { min-height: 82px; margin-bottom: 20px; color: var(--muted); }
.product-list { display: grid; gap: 9px; margin: 0; padding: 0; list-style: none; color: var(--ink-2); font-size: .88rem; }
.product-list li { display: flex; gap: 10px; align-items: baseline; }
.product-list li::before { content: "↗"; color: var(--teal); font-weight: 900; }
.securityhub-overview { color: #fff; background: var(--ink); }
.securityhub-overview .eyebrow { color: #79d3c6; }
.securityhub-overview .lead { color: #b9c9c8; }
.securityhub-overview__intro { display: grid; gap: 28px; align-items: end; }
.securityhub-overview__intro h2 { max-width: 790px; margin-bottom: 14px; }
.securityhub-overview__intro .lead { max-width: 760px; }
.securityhub-overview__callout { padding: 24px; border: 1px solid rgba(239,207,132,.45); border-radius: var(--radius); background: rgba(255,255,255,.06); }
.securityhub-overview__callout-code { display: block; margin-bottom: 10px; color: #efcf84; font-size: 1.55rem; font-weight: 900; letter-spacing: .06em; }
.securityhub-overview__callout strong { display: block; font-size: 1.08rem; }
.securityhub-overview__callout p { margin: 10px 0 0; color: #b9c9c8; font-size: .88rem; }
.securityhub-workspace { margin-top: 46px; overflow: hidden; border: 1px solid rgba(121,211,198,.2); border-radius: 18px; background: #0d232a; box-shadow: 0 24px 65px rgba(0,0,0,.24); }
.securityhub-workspace__top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; color: #dff2ed; background: #122f37; font-size: .82rem; }
.securityhub-workspace__top small { margin-left: auto; color: #8ea9ad; font-size: .7rem; }
.securityhub-workspace__dots { display: inline-flex; gap: 4px; }
.securityhub-workspace__dots i { width: 7px; height: 7px; border-radius: 50%; background: #54777c; }
.securityhub-workspace__dots i:first-child { background: #79d3c6; }
.securityhub-tabs { display: flex; gap: 20px; padding: 0 18px; overflow-x: auto; border-top: 1px solid rgba(255,255,255,.08); border-bottom: 1px solid rgba(255,255,255,.1); background: #1c242b; scrollbar-width: thin; }
.securityhub-tabs a { flex: 0 0 auto; padding: 12px 0 10px; border-bottom: 2px solid transparent; color: #aebcc2; font-size: .8rem; text-decoration: none; white-space: nowrap; transition: .2s; }
.securityhub-tabs a:hover { color: #fff; }
.securityhub-tabs a.securityhub-tab--active { border-bottom-color: #efcf84; color: #efcf84; }
.securityhub-workspace__body { display: grid; gap: 18px; padding: 20px; background: #0d232a; }
.securityhub-scan-lane { display: grid; gap: 9px; }
.securityhub-scan-card { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 3px 12px; padding: 14px 16px; border: 1px solid rgba(121,211,198,.23); border-radius: 12px; background: rgba(255,255,255,.05); }
.securityhub-scan-card > span { color: #79d3c6; font-size: .55rem; font-weight: 900; letter-spacing: .12em; }
.securityhub-scan-card strong { font-size: .92rem; }
.securityhub-scan-card small { color: #9eb4b7; font-size: .68rem; }
.securityhub-scan-card b { grid-column: 2; grid-row: 1 / span 2; align-self: center; color: #91e1d5; font-size: .62rem; font-weight: 800; white-space: nowrap; }
.securityhub-scan-card--upload { border-color: rgba(239,207,132,.42); }
.securityhub-scan-card--upload > span, .securityhub-scan-card--upload b { color: #efcf84; }
.securityhub-scan-card--host { border-color: rgba(102,175,230,.35); }
.securityhub-scan-card--host > span, .securityhub-scan-card--host b { color: #94c9ee; }
.securityhub-scan-bar { grid-column: 1 / -1; height: 4px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: rgba(255,255,255,.1); }
.securityhub-scan-bar i { display: block; width: 72%; height: 100%; border-radius: inherit; background: #79d3c6; }
.securityhub-scan-card--upload .securityhub-scan-bar i { width: 48%; background: #efcf84; }
.securityhub-scan-card--host .securityhub-scan-bar i { width: 63%; background: #94c9ee; }
.securityhub-remediation-panel { padding: 16px; border: 1px solid rgba(239,207,132,.36); border-radius: 12px; background: #163b42; }
.securityhub-remediation-panel > div:first-child { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.securityhub-remediation-panel > div:first-child span { color: #efcf84; font-size: .55rem; letter-spacing: .12em; }
.securityhub-remediation-panel > div:first-child strong { font-size: .9rem; }
.securityhub-remediation-panel > p { margin: 5px 0 9px; color: #b9c9c8; font-size: .68rem; }
.securityhub-remediation-panel__item { display: flex; align-items: center; gap: 8px; padding: 7px 0; border-top: 1px solid rgba(255,255,255,.1); color: #c5d7d8; font-size: .7rem; }
.securityhub-remediation-panel__item i { width: 7px; height: 7px; border-radius: 50%; background: #efcf84; }
.securityhub-remediation-panel__item:nth-of-type(2) i { background: #79d3c6; }
.securityhub-remediation-panel__item:nth-of-type(3) i { background: #9de0a5; }
.securityhub-remediation-panel__item strong { margin-left: auto; color: #dff2ed; font-size: .64rem; font-weight: 700; }
.securityhub-workspace__summary { padding: 22px; border-radius: 14px; color: var(--ink); background: var(--paper); }
.securityhub-workspace__summary .eyebrow { margin-bottom: 8px; color: var(--teal-dark); font-size: .68rem; }
.securityhub-workspace__summary h3 { margin-bottom: 10px; font-size: 1.3rem; }
.securityhub-flow-list { display: grid; gap: 0; margin: 20px 0; }
.securityhub-flow-list div { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: center; padding: 10px 0; border-top: 1px solid var(--line); }
.securityhub-flow-list span { color: var(--teal-dark); font-size: .68rem; font-weight: 900; }
.securityhub-flow-list strong { font-size: .82rem; }
.securityhub-flow-list small { color: var(--muted); font-size: .66rem; }
.securityhub-workspace__summary > p:last-child { margin: 0; color: var(--muted); font-size: .82rem; }
.securityhub-module-grid { display: grid; gap: 12px; margin-top: 18px; }
.securityhub-module-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; min-height: 142px; padding: 22px; border: 1px solid rgba(255,255,255,.14); border-radius: 18px; background: rgba(255,255,255,.055); }
.securityhub-module-card__number { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: #91e1d5; background: rgba(121,211,198,.14); font-size: .72rem; font-weight: 900; }
.securityhub-module-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.securityhub-module-card p { margin: 0; color: #b9c9c8; font-size: .84rem; }
.securityhub-module-card--key { border-color: rgba(239,207,132,.55); background: rgba(239,207,132,.08); }
.securityhub-module-card--key .securityhub-module-card__number { color: #efcf84; background: rgba(239,207,132,.14); }
.securityhub-overview__foot { display: grid; gap: 6px; margin-top: 28px; padding: 22px 0 0; border-top: 1px solid rgba(255,255,255,.16); }
.securityhub-overview__foot strong { color: #fff; font-size: 1.06rem; }
.securityhub-overview__foot span { color: #b9c9c8; font-size: .88rem; }
.endpoint-overview { background: #fff; }
.endpoint-overview__intro { display: grid; gap: 28px; align-items: end; }
.endpoint-overview__intro h2 { max-width: 760px; margin-bottom: 14px; }
.endpoint-overview__intro .lead { max-width: 760px; }
.endpoint-overview__callout { padding: 24px; border: 1px solid #c9ded9; border-radius: var(--radius); background: var(--mint); }
.endpoint-overview__callout-code { display: block; margin-bottom: 10px; color: var(--teal-dark); font-size: 1.7rem; font-weight: 900; letter-spacing: -.06em; }
.endpoint-overview__callout strong { display: block; font-size: 1.08rem; }
.endpoint-overview__callout p { margin: 10px 0 0; color: var(--muted); font-size: .88rem; }
.endpoint-workspace { margin-top: 46px; overflow: hidden; border: 1px solid #cdd9e6; border-radius: 18px; background: #eef3f8; box-shadow: var(--shadow); }
.endpoint-workspace__top { display: flex; align-items: center; gap: 10px; padding: 14px 18px; color: #193a56; background: #fff; font-size: .82rem; }
.endpoint-workspace__top small { margin-left: auto; color: #6d8396; font-size: .7rem; }
.endpoint-workspace__dots { display: inline-flex; gap: 4px; }
.endpoint-workspace__dots i { width: 7px; height: 7px; border-radius: 50%; background: #b7c8d7; }
.endpoint-workspace__dots i:first-child { background: #3f94de; }
.endpoint-tabs { display: flex; gap: 8px; padding: 16px 18px; overflow-x: auto; border-top: 1px solid #d7e1ea; border-bottom: 1px solid #d7e1ea; background: #f5f8fb; scrollbar-width: thin; }
.endpoint-tabs a { flex: 0 0 auto; padding: 8px 14px; border: 1px solid #0d6fe8; border-radius: 6px; color: #075fc8; background: #fff; font-size: .82rem; font-weight: 800; text-decoration: none; white-space: nowrap; transition: .2s; }
.endpoint-tabs a:hover { transform: translateY(-1px); background: #eaf3ff; }
.endpoint-tabs a.endpoint-tab--active { color: #fff; background: #0d6fe8; box-shadow: 0 6px 14px rgba(13,111,232,.2); }
.endpoint-workspace__body { display: grid; gap: 18px; padding: 20px; background: #f8fbfd; }
.endpoint-network-map { position: relative; min-height: 260px; overflow: hidden; border: 1px solid #d8e4ee; border-radius: 14px; background-color: #f4f8fb; background-image: linear-gradient(rgba(13,111,232,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(13,111,232,.06) 1px, transparent 1px); background-size: 28px 28px; }
.endpoint-network-line { position: absolute; left: 50%; top: 50%; width: 30%; height: 1px; background: #8cb4d5; transform-origin: left center; }
.endpoint-network-line--one { transform: rotate(-26deg); }
.endpoint-network-line--two { transform: rotate(23deg); }
.endpoint-network-line--three { width: 25%; transform: rotate(180deg); }
.endpoint-node { position: absolute; display: grid; min-width: 82px; padding: 9px 11px; gap: 2px; border: 1px solid #a9c8e2; border-radius: 10px; color: #1b4d76; background: rgba(255,255,255,.92); box-shadow: 0 7px 18px rgba(45,95,130,.1); text-align: center; }
.endpoint-node i { width: 9px; height: 9px; margin: 0 auto 2px; border: 2px solid #55a5e8; border-radius: 50%; background: #dff0ff; }
.endpoint-node strong { font-size: .73rem; }
.endpoint-node small { color: #6d8396; font-size: .59rem; }
.endpoint-node--core { left: 50%; top: 50%; min-width: 112px; padding: 14px 11px; border-color: #0d6fe8; background: #eaf3ff; transform: translate(-50%, -50%); }
.endpoint-node--core i { border-color: #0d6fe8; background: #0d6fe8; box-shadow: 0 0 0 5px rgba(13,111,232,.12); }
.endpoint-node--server { left: 12%; top: 19%; }
.endpoint-node--desktop { left: 13%; bottom: 16%; }
.endpoint-node--remote { right: 10%; top: 41%; }
.endpoint-workspace__summary { padding: 22px; border: 1px solid #d8e4ee; border-radius: 14px; background: #fff; }
.endpoint-workspace__summary .eyebrow { margin-bottom: 8px; color: #0d6fe8; font-size: .68rem; }
.endpoint-workspace__summary h3 { margin-bottom: 10px; color: #193a56; font-size: 1.3rem; }
.endpoint-stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px; margin: 18px 0; }
.endpoint-stat { padding: 12px; border: 1px solid #dce6ee; border-radius: 9px; background: #f7fafc; }
.endpoint-stat strong { display: block; color: #1b4d76; font-size: .84rem; }
.endpoint-stat span { color: #6d8396; font-size: .68rem; }
.endpoint-workspace__summary > p:last-child { margin: 0; color: #6d8396; font-size: .82rem; }
.endpoint-module-grid { display: grid; gap: 12px; margin-top: 18px; }
.endpoint-module-card { display: grid; grid-template-columns: auto 1fr; gap: 16px; min-height: 142px; padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: #f8fafb; }
.endpoint-module-card__number { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--mint); font-size: .72rem; font-weight: 900; }
.endpoint-module-card h3 { margin: 0 0 6px; font-size: 1.1rem; }
.endpoint-module-card p { margin: 0; color: var(--muted); font-size: .84rem; }
.endpoint-module-card--key { border-color: #e1c06e; background: #fffaf0; }
.endpoint-module-card--key .endpoint-module-card__number { color: #74531e; background: #f7e5b7; }
.endpoint-overview__foot { display: grid; gap: 6px; margin-top: 28px; padding: 22px 0 0; border-top: 1px solid var(--line); }
.endpoint-overview__foot strong { color: var(--ink); font-size: 1.06rem; }
.endpoint-overview__foot span { color: var(--muted); font-size: .88rem; }
.product-controls { background: linear-gradient(180deg, #f7f5ef 0%, #eef6f2 100%); }
.product-control-grid { display: grid; gap: 14px; }
.product-control-card { position: relative; display: flex; min-height: 300px; padding: 26px; flex-direction: column; justify-content: space-between; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.7); }
.product-control-card::after { content: ""; position: absolute; right: -70px; top: -64px; width: 170px; height: 170px; border: 30px solid rgba(17,124,121,.07); border-radius: 50%; }
.product-control-card__code { position: relative; z-index: 1; color: var(--teal-dark); font-size: 1.7rem; font-weight: 900; letter-spacing: -.06em; }
.product-control-card h3 { position: relative; z-index: 1; margin: 14px 0 8px; font-size: 1.28rem; }
.product-control-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); font-size: .9rem; }
.product-control-card footer { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 20px; color: var(--muted); font-size: .68rem; }
.product-control-card footer strong { color: var(--teal-dark); font-size: .72rem; }
.product-control-card--feature { border: 2px solid var(--amber); background: #fffdf5; }
.product-control-card__ribbon { position: absolute; z-index: 2; top: 18px; right: 18px; padding: 5px 9px; border-radius: 999px; color: #74531e; background: #f7e5b7; font-size: .62rem; font-weight: 900; }
.product-disclaimer { max-width: 860px; margin: 24px auto 0; color: var(--muted); font-size: .78rem; text-align: center; }
.product-process { background: #fff; }
.product-process-grid { display: grid; gap: 0; }
.product-process-grid article { display: grid; grid-template-columns: auto 1fr; gap: 16px; padding: 20px 0; border-top: 1px solid var(--line); }
.product-process-grid article > span { display: grid; width: 42px; height: 42px; place-items: center; border: 1px solid var(--teal); border-radius: 50%; color: var(--teal-dark); font-size: .74rem; font-weight: 900; }
.product-process-grid h3 { margin: 0 0 5px; font-size: 1.15rem; }
.product-process-grid p { margin: 0; color: var(--muted); font-size: .9rem; }
.product-cta { padding-top: 0; }

@media (max-width: 759px) {
  .endpoint-tabs { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; padding: 12px; overflow: visible; }
  .endpoint-tabs a { min-width: 0; padding: 8px 5px; font-size: .74rem; text-align: center; white-space: nowrap; }
  .endpoint-network-map { display: grid; min-height: 270px; grid-template-columns: 1fr 1.25fr 1fr; grid-template-rows: repeat(3, 1fr); gap: 8px; padding: 18px 12px; align-items: center; }
  .endpoint-network-map::before { content: ""; position: absolute; z-index: 0; right: 20%; left: 20%; top: 50%; height: 1px; background: #8cb4d5; }
  .endpoint-network-map::after { content: ""; position: absolute; z-index: 0; top: 24%; bottom: 24%; left: 50%; width: 1px; background: #8cb4d5; }
  .endpoint-network-line { display: none; }
  .endpoint-node { position: static; z-index: 1; width: 100%; min-width: 0; padding: 9px 6px; }
  .endpoint-node--core { grid-column: 2; grid-row: 2; width: 100%; min-width: 0; padding: 12px 6px; transform: none; }
  .endpoint-node--server { grid-column: 1; grid-row: 1; }
  .endpoint-node--desktop { grid-column: 1; grid-row: 3; }
  .endpoint-node--remote { grid-column: 3; grid-row: 2; }
  .endpoint-workspace__top { padding: 12px 14px; }
  .endpoint-workspace__top small { font-size: .62rem; }
  .endpoint-workspace__body { gap: 14px; padding: 14px; }
  .endpoint-workspace__summary { padding: 18px; }
}

@media (min-width: 760px) {
  .product-hero { padding-top: 104px; }
  .product-hero__grid { grid-template-columns: 1.05fr .95fr; gap: 60px; }
  .product-visual { min-height: 430px; }
  .product-hero__rail { margin-top: 82px; }
  .product-pain-grid, .product-control-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  .securityhub-overview__intro { grid-template-columns: 1.1fr .9fr; gap: 60px; }
  .securityhub-workspace__body { grid-template-columns: 1.15fr .85fr; align-items: stretch; padding: 24px; }
  .securityhub-module-grid { grid-template-columns: repeat(3, 1fr); }
  .endpoint-overview__intro { grid-template-columns: 1.1fr .9fr; gap: 60px; }
  .endpoint-workspace__body { grid-template-columns: 1.25fr .75fr; align-items: stretch; padding: 24px; }
  .endpoint-module-grid { grid-template-columns: repeat(3, 1fr); }
  .endpoint-module-card--key { grid-column: span 1; }
  .product-card__content { padding: 32px; }
  .product-process-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .product-process-grid article { display: block; padding: 0 22px 0 0; border-top: 0; border-right: 1px solid var(--line); }
  .product-process-grid article + article { padding-left: 22px; }
  .product-process-grid article:last-child { border-right: 0; }
  .product-process-grid article > span { margin-bottom: 22px; }
}

@media (min-width: 980px) {
  .product-hero__copy { padding-bottom: 40px; }
  .product-visual__window { inset: 30px 6px 28px 0; }
  .product-card__content p { min-height: 96px; }
}

@media (max-width: 480px) {
  .product-hero__rail > div { grid-template-columns: 1fr; gap: 3px; }
  .product-hero__rail span { grid-row: auto; }
  .product-hero__rail > div + div { padding-left: 10px; }
  .product-visual__footer { gap: 6px; padding-inline: 12px; }
  .product-visual__footer strong { display: none; }
  .product-visual__source, .product-visual__endpoint { width: 91px; padding: 9px; }
  .product-visual__hub { width: 102px; height: 102px; }
  .hub-visual__flow { gap: 7px; padding-inline: 13px; }
  .hub-visual__sources span { min-width: 54px; padding-inline: 6px; font-size: .64rem; }
  .hub-visual__core { min-width: 95px; min-height: 95px; }
}

@media (min-width: 760px) {
  .container { width: min(calc(100% - 72px), var(--max)); }
  .section { padding: 104px 0; }
  .hero { padding: 104px 0 82px; }
  .trust-strip { grid-template-columns: repeat(4, 1fr); }
  .grid-2, .case-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .profile-layout { grid-template-columns: .85fr 1.15fr; align-items: center; gap: 64px; }
  .service-detail { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; padding: 44px 0; }
  .studio-hero { grid-template-columns: 1fr 1fr; }
  .studio-copy { padding: 58px; }
  .footer-grid { grid-template-columns: 1.3fr .7fr; }
  .policy-layout { grid-template-columns: 240px minmax(0, 1fr); align-items: start; }
  .policy-index { position: sticky; top: 94px; }
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
  .site-nav {
    position: static;
    z-index: auto;
    inset: auto;
    height: auto;
    padding: 0;
    overflow: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: none;
  }
  .site-nav ul { display: flex; align-items: center; gap: 28px; }
  .site-nav a { padding: 8px 0; border: 0; font-size: .9rem; }
  .site-nav a::after { content: ""; display: block; width: 0; height: 2px; margin-top: 4px; background: var(--teal); transition: width .2s; }
  .site-nav a:hover::after, .site-nav a[aria-current="page"]::after { width: 100%; }
  .hero-grid { grid-template-columns: 1.55fr .45fr; align-items: end; }
  .hero-aside { padding-bottom: 18px; color: var(--muted); }
  .case-grid { grid-template-columns: repeat(3, 1fr); }
  .cta-box { padding: 58px; }
}

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

/* Cookie consent */
.cookie-banner {
  position: fixed;
  z-index: 1000;
  right: 16px;
  bottom: 16px;
  left: 16px;
  max-width: 1180px;
  margin: auto;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 22px 70px rgba(14, 38, 37, .22);
}
.cookie-banner[hidden], .cookie-reopen[hidden] { display: none; }
.cookie-banner__copy strong { font-size: 1.2rem; }
.cookie-banner__copy p { max-width: 760px; margin: 8px 0 0; color: var(--muted); }
.cookie-banner a { color: var(--teal-dark); font-weight: 800; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 20px; }
.cookie-button, .cookie-reopen {
  min-height: 44px;
  padding: 10px 18px;
  border: 2px solid var(--teal-dark);
  border-radius: 10px;
  color: white;
  background: var(--teal-dark);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}
.cookie-button--outline { color: var(--teal-dark); background: white; }
.cookie-button:hover, .cookie-button:focus-visible, .cookie-reopen:hover, .cookie-reopen:focus-visible { filter: brightness(.92); }
.cookie-reopen { position: fixed; z-index: 900; right: 14px; bottom: 14px; min-height: 38px; padding: 7px 12px; border-width: 1px; border-radius: 999px; font-size: .78rem; box-shadow: var(--shadow); }
.cookie-dialog {
  width: min(calc(100% - 32px), 680px);
  max-height: min(88vh, 760px);
  padding: 0;
  border: 0;
  border-radius: 22px;
  color: var(--ink);
  background: white;
  box-shadow: 0 30px 100px rgba(14, 38, 37, .3);
}
.cookie-dialog::backdrop { background: rgba(14, 38, 37, .62); }
.cookie-dialog form { padding: 26px; }
.cookie-dialog__header { display: flex; justify-content: space-between; gap: 20px; }
.cookie-dialog__header h2 { margin: 0; }
.cookie-dialog__close { width: 42px; height: 42px; border: 0; border-radius: 50%; color: var(--ink); background: #edf1ee; font-size: 1.8rem; cursor: pointer; }
.cookie-category { display: flex; align-items: center; justify-content: space-between; gap: 22px; margin-top: 12px; padding: 18px; border: 1px solid var(--line); border-radius: 14px; }
.cookie-category strong { display: block; }
.cookie-category p, .cookie-category span span { display: block; margin: 4px 0 0; color: var(--muted); font-size: .88rem; line-height: 1.5; }
.cookie-category input { width: 23px; height: 23px; flex: 0 0 auto; accent-color: var(--teal-dark); }
.cookie-required { flex: 0 0 auto; color: var(--teal-dark); font-size: .78rem; font-weight: 800; }
.cookie-dialog__actions { justify-content: flex-end; }

@media (min-width: 860px) {
  .cookie-banner { display: flex; align-items: center; justify-content: space-between; gap: 32px; padding: 26px 30px; }
  .cookie-banner .cookie-actions { flex: 0 0 auto; margin-top: 0; }
}
