@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --max: 1180px;
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --navy: #032d4e;
  --navy-2: #00466d;
  --blue: #075b7d;
  --cyan: #bcecff;
  --cyan-soft: #eaf8fc;
  --accent: #c94f88;
  --accent-dark: #a83d6e;
  --accent-start: #c94f88;
  --accent-end: #ee5d7a;
  --accent-gradient: linear-gradient(135deg, #c94f88 0%, #ee5d7a 100%);
  --green: #2f9b68;
  --green-dark: #267f59;
  --green-soft: #f5fcf8;
  --green-soft-2: #eaf7ef;
  --ink: #123b55;
  --ink-strong: #0b2f48;
  --muted: #526a76;
  --line: #dce7ed;
  --surface: #ffffff;
  --canvas: #f7fbfd;
  --shadow-xs: 0 8px 24px rgba(20, 50, 68, .05);
  --shadow-md: 0 18px 48px rgba(14, 46, 64, .11);
  --shadow-lg: 0 26px 76px rgba(14, 46, 64, .16);
  --shadow-cta: 0 12px 28px rgba(201, 79, 136, .25);
  --font: Poppins, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--canvas); color: var(--ink); font: 400 15px/1.6 var(--font); overflow-x: hidden; }
img { max-width: 100%; }
a { color: inherit; }
button { font: inherit; }
.container { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }

.site-header { position: sticky; top: 0; z-index: 20; background: rgba(255,255,255,.9); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(220,231,237,.9); }
.header-inner { position: relative; min-height: 76px; display: flex; align-items: center; gap: 24px; }
.brand { display: inline-flex; flex: 0 0 auto; align-items: center; }
.brand img { display: block; width: 142px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: 21px; margin-left: auto; font-size: 12px; font-weight: 600; }
.desktop-nav a, .mobile-nav a { text-decoration: none; }
.desktop-nav a { position: relative; padding: 28px 0; color: var(--ink); }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: 20px; left: 0; height: 2px; border-radius: 2px; background: var(--accent-gradient); transform: scaleX(0); transform-origin: right; transition: transform .2s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--accent-dark); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.header-cta { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 40px; padding: 0 13px; border: 1px solid rgba(201,79,136,.62); border-radius: 999px; color: var(--accent-dark); font-size: 11px; font-weight: 700; text-decoration: none; white-space: nowrap; transition: background .2s ease, color .2s ease, transform .2s ease; }
.header-cta:hover { background: var(--accent-gradient); color: #fff; transform: translateY(-1px); }
.header-cta svg { width: 14px; height: 14px; }
.menu-toggle { display: none; align-items: center; justify-content: center; gap: 7px; min-height: 42px; padding: 0 13px; border: 1px solid var(--line); border-radius: 999px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 700; cursor: pointer; }
.menu-toggle svg { width: 16px; height: 16px; }
.mobile-nav { display: none; }

.button { display: inline-flex; align-items: center; justify-content: center; gap: 10px; min-height: 50px; padding: 0 20px; border: 0; border-radius: 999px; font-size: 13px; font-weight: 700; text-decoration: none; cursor: pointer; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); }
.button:focus-visible, .header-cta:focus-visible, .menu-toggle:focus-visible, .gallery-arrow:focus-visible, .gallery-dot:focus-visible, summary:focus-visible { outline: 3px solid rgba(3,111,163,.35); outline-offset: 3px; }
.button-primary { background: var(--accent-gradient); color: #fff; box-shadow: var(--shadow-cta); }
.button-primary:hover { background: linear-gradient(135deg, #b74478 0%, #dd4e70 100%); box-shadow: 0 14px 32px rgba(168,61,110,.3); }
.button-outline { min-height: 44px; border: 1px solid var(--navy-2); border-radius: 999px; color: var(--navy-2); background: transparent; }
.button-outline:hover { background: var(--navy-2); color: #fff; }
.button-light { background: #fff; color: var(--accent-dark); box-shadow: 0 10px 24px rgba(0,0,0,.12); }
.button svg { width: 17px; height: 17px; }

.eyebrow { margin: 0 0 16px; color: var(--accent); font-size: 10px; font-weight: 800; letter-spacing: .17em; line-height: 1.25; }
.hero { position: relative; overflow: hidden; padding: 96px 0 86px; color: #fff; background: radial-gradient(circle at 80% 18%, rgba(188,236,255,.2), transparent 28%), radial-gradient(circle at 16% 115%, rgba(0,151,198,.24), transparent 35%), linear-gradient(122deg, var(--navy) 0%, var(--navy-2) 52%, var(--blue) 100%); }
.hero::after { content: ""; position: absolute; z-index: 0; right: -12%; bottom: -50%; width: 650px; height: 650px; border: 1px solid rgba(188,236,255,.14); border-radius: 50%; box-shadow: 0 0 0 34px rgba(188,236,255,.025), 0 0 0 88px rgba(188,236,255,.02); pointer-events: none; }
.hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .94fr) minmax(440px, 1.06fr); gap: 56px; align-items: center; }
.hero .eyebrow { color: var(--cyan); }
.hero h1 { max-width: 670px; margin: 0; color: #fff; font-size: clamp(39px, 5.2vw, 68px); font-weight: 600; line-height: 1.06; letter-spacing: -.055em; }
.hero-lead { max-width: 620px; margin: 24px 0 30px; color: rgba(246,253,255,.86); font-size: 17px; line-height: 1.7; }
.hero-actions { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.hero .button-primary { color: #fff; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: #fff; font-size: 13px; font-weight: 700; text-decoration: none; }
.text-link:hover { color: var(--cyan); }
.text-link svg { width: 15px; height: 15px; }
.proof-row { display: flex; gap: 14px 20px; flex-wrap: wrap; margin-top: 34px; color: rgba(236,250,255,.82); font-size: 11px; }
.proof-row span { display: inline-flex; align-items: center; gap: 7px; }
.proof-row svg { width: 15px; height: 15px; color: var(--cyan); }
.hero-visual { position: relative; min-height: 505px; isolation: isolate; }
.hero-glow { position: absolute; inset: 9% 4% 4% 8%; border-radius: 50%; background: radial-gradient(circle, rgba(188,236,255,.29), rgba(188,236,255,.08) 38%, transparent 70%); filter: blur(4px); }
.hero-orbit { position: absolute; border: 1px solid rgba(188,236,255,.28); border-radius: 50%; transform: rotate(-18deg); pointer-events: none; }
.hero-orbit-one { width: 490px; height: 195px; top: 30%; left: 5%; }
.hero-orbit-two { width: 380px; height: 150px; top: 42%; left: 16%; border-color: rgba(238,93,122,.42); transform: rotate(22deg); }
.hero-product-frame { position: absolute; z-index: 3; left: 12%; bottom: 4%; width: 255px; height: 430px; display: grid; place-items: end center; }
.hero-boxshot { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(18px 28px 20px rgba(0,20,39,.34)); }
.hero-screen-card { position: absolute; z-index: 2; top: 13%; right: 0; width: min(73%, 430px); padding: 9px; border: 1px solid rgba(224,250,255,.5); border-radius: 18px; background: rgba(242,252,255,.18); box-shadow: 0 28px 70px rgba(0,21,43,.3), inset 0 1px 0 rgba(255,255,255,.28); transform: rotate(1.2deg); }
.hero-screen-card img { display: block; width: 100%; border-radius: 11px; }
.hero-tag { position: absolute; z-index: 4; display: inline-flex; align-items: center; gap: 8px; padding: 10px 13px; border: 1px solid rgba(224,250,255,.34); border-radius: 999px; background: rgba(3,45,78,.68); box-shadow: 0 12px 28px rgba(0,20,39,.24); color: #fff; font-size: 11px; font-weight: 700; backdrop-filter: blur(10px); }
.hero-tag svg { width: 16px; height: 16px; color: var(--cyan); }
.hero-tag-one { top: 4%; right: 5%; }
.hero-tag-two { right: 23%; bottom: 3%; }
.hero-tag-two svg { color: var(--accent-end); }

.trust-strip { border-bottom: 1px solid var(--line); background: #fff; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); padding: 23px 0; }
.trust-grid div { display: flex; align-items: center; justify-content: center; gap: 13px; border-right: 1px solid var(--line); }
.trust-grid div:last-child { border-right: 0; }
.trust-grid strong { color: var(--accent); font-size: 23px; font-weight: 600; }
.trust-grid span { color: var(--muted); font-size: 12px; font-weight: 600; }

.section { padding: 104px 0; }
.section-tint { background: #eef7fa; }
.section-intro { max-width: 720px; margin-bottom: 46px; }
.section h2 { max-width: 25ch; margin: 0 0 18px; color: var(--ink-strong); font-size: clamp(30px, 4vw, 47px); font-weight: 600; line-height: 1.1; letter-spacing: -.05em; }
.section-intro > p:last-child, .feature-grid > div > p:not(.eyebrow), .evidence-grid > div > p:not(.eyebrow), .cta-panel p:not(.eyebrow), .notice p { max-width: 70ch; margin: 0; color: var(--muted); font-size: 16px; line-height: 1.72; }

.benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefit-card { position: relative; min-height: 305px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-lg); background: #fff; box-shadow: var(--shadow-xs); transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease; }
.benefit-card::after { content: ""; position: absolute; right: -30px; bottom: -50px; width: 150px; height: 150px; border-radius: 50%; background: radial-gradient(circle, rgba(188,236,255,.36), transparent 70%); pointer-events: none; }
.benefit-card:hover { transform: translateY(-5px); border-color: #bddae6; box-shadow: var(--shadow-md); }
.card-number { display: block; margin-bottom: 24px; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .12em; }
.icon-tile { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 23px; border-radius: 16px; }
.icon-tile svg { width: 24px; height: 24px; stroke-width: 1.8; }
.icon-tile.red { background: #fbeaf2; color: var(--accent-dark); }
.icon-tile.blue { background: var(--cyan-soft); color: var(--navy-2); }
.icon-tile.green { background: var(--green-soft-2); color: var(--green-dark); }
.benefit-card h3 { position: relative; z-index: 1; margin: 0 0 10px; color: var(--ink-strong); font-size: 19px; line-height: 1.25; }
.benefit-card p { position: relative; z-index: 1; margin: 0; color: var(--muted); line-height: 1.65; }

.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 78px; align-items: start; }
.feature-grid > div > p:not(.eyebrow) { margin-bottom: 28px; }
.workflow-list, .feature-list { list-style: none; padding: 0; margin: 0; }
.workflow-list { border-top: 1px solid var(--line); }
.workflow-list li { display: flex; gap: 22px; padding: 21px 0; border-bottom: 1px solid var(--line); }
.workflow-list li > span, .feature-list li > span { flex: 0 0 auto; color: var(--accent); font-size: 11px; font-weight: 800; letter-spacing: .1em; }
.workflow-list strong, .feature-list strong { color: var(--ink-strong); font-size: 16px; }
.workflow-list p, .feature-list p { margin: 6px 0 0; color: var(--muted); font-size: 14px; line-height: 1.55; }

.evidence-section { background: #fff; }
.evidence-grid { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr); gap: 76px; align-items: center; }
.evidence-grid-reverse { grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); }
.evidence-grid-reverse .evidence-media { order: 2; }
.evidence-grid-reverse > div:last-child { order: 1; }
.evidence-media { position: relative; padding: 0; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.evidence-media img { display: block; width: 100%; border-radius: 13px; }
.media-label { position: absolute; left: 25px; bottom: 24px; padding: 8px 11px; border: 1px solid rgba(255,255,255,.4); border-radius: 999px; background: rgba(3,45,78,.83); color: #fff; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.check-list { display: grid; gap: 11px; list-style: none; padding: 0; margin: 27px 0 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 14px 15px; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--canvas); color: var(--muted); line-height: 1.5; }
.check-list li svg { flex: 0 0 auto; width: 19px; height: 19px; margin-top: 1px; padding: 3px; border-radius: 50%; background: var(--green-soft-2); color: var(--green-dark); stroke-width: 3; }

.product-spotlight-section { background: #eef7fa; }
.product-card { position: relative; overflow: hidden; padding: 50px 56px 56px; border-radius: var(--radius-xl); color: #fff; background: radial-gradient(circle at 86% 20%, rgba(188,236,255,.22), transparent 25%), radial-gradient(circle at 8% 110%, rgba(201,79,136,.13), transparent 28%), linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 55%, var(--blue) 100%); box-shadow: var(--shadow-lg); }
.product-card::before { content: ""; position: absolute; right: -70px; bottom: -170px; width: 520px; height: 520px; border: 1px solid rgba(188,236,255,.18); border-radius: 50%; box-shadow: 0 0 0 28px rgba(188,236,255,.025), 0 0 0 76px rgba(188,236,255,.02); pointer-events: none; }
.product-card-header { position: relative; z-index: 1; display: flex; align-items: center; gap: 23px; }
.product-box-frame { flex: 0 0 102px; height: 144px; display: grid; place-items: end center; border: 0; border-radius: 0; background: transparent; box-shadow: none; }
.product-box-frame img { display: block; width: 100%; height: 100%; object-fit: contain; filter: drop-shadow(8px 12px 8px rgba(0,20,39,.28)); }
.product-card .eyebrow { margin-bottom: 8px; color: var(--cyan); }
.product-card h2 { margin: 0; color: #fff; font-size: clamp(35px, 5vw, 58px); letter-spacing: -.055em; }
.product-card-body { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0, .92fr) minmax(360px, 1.08fr); gap: 60px; align-items: start; margin-top: 35px; }
.product-card-body > div > p { max-width: 62ch; margin: 0 0 26px; color: rgba(245,253,255,.86); font-size: 16px; line-height: 1.7; }
.product-card .feature-list { border-top-color: rgba(220,247,255,.24); }
.product-card .feature-list li { border-bottom-color: rgba(220,247,255,.24); }
.product-card .feature-list strong { color: #fff; }
.product-card .feature-list p { color: rgba(235,250,255,.72); }
.product-card .feature-list li > span { color: var(--accent); }
.product-card-cta { padding-left: 38px; padding-right: 38px; }

.gallery-section { background: #fff; }
.gallery { position: relative; }
.gallery-stage { position: relative; width: min(90%, 990px); aspect-ratio: 5 / 3; margin: 0 auto; overflow: visible; }
.gallery-slide { position: absolute; inset: 0; display: none; padding: 10px; border: 1px solid #c9e4ed; border-radius: var(--radius-lg); background: linear-gradient(145deg, #f5fcff, #e7f5f8); box-shadow: var(--shadow-lg); }
.gallery-slide.is-active { display: flex; flex-direction: column; }
.gallery-slide img { display: block; width: 100%; min-height: 0; flex: 1 1 auto; object-fit: contain; border-radius: 13px; background: #fff; cursor: zoom-in; }
.gallery-slide p { flex: 0 0 auto; margin: 10px 4px 1px; color: var(--ink-strong); font-size: 13px; font-weight: 700; }
.gallery-arrow { position: absolute; z-index: 3; top: 50%; display: grid; place-items: center; width: 46px; height: 46px; border: 1px solid rgba(188,236,255,.7); border-radius: 50%; background: var(--navy); color: #fff; box-shadow: var(--shadow-md); cursor: pointer; transform: translateY(-50%); transition: transform .2s ease, background .2s ease; }
.gallery-arrow:hover { background: var(--accent-gradient); transform: translateY(-50%) scale(1.04); }
.gallery-arrow svg { width: 20px; height: 20px; }
.gallery-arrow-prev { left: -24px; }
.gallery-arrow-next { right: -24px; }
.gallery-controls { display: flex; justify-content: center; gap: 9px; margin-top: 23px; }
.gallery-dot { width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #c5d8e0; cursor: pointer; transition: width .2s ease, background .2s ease; }
.gallery-dot.is-active { width: 28px; border-radius: 10px; background: var(--accent-gradient); }

.legal-note { padding-top: 78px; padding-bottom: 78px; background: #fff; }
.notice { padding: 35px 42px; border: 1px solid rgba(188,236,255,.7); border-left: 4px solid var(--cyan); border-radius: var(--radius-lg); background: linear-gradient(135deg, var(--navy), var(--navy-2)); box-shadow: var(--shadow-md); }
.notice h2 { color: #fff; font-size: clamp(27px, 3vw, 39px); }
.notice p { color: rgba(242,252,255,.83); }

.faq-section { background: var(--canvas); }
.faq-section > .narrow { max-width: 1040px; }
.faq-section h2 { margin-bottom: 36px; }
.faq-section details { display: inline-block; vertical-align: top; width: calc(50% - 10px); margin: 0 16px 16px 0; padding: 0; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-xs); overflow: hidden; }
.faq-section details:nth-of-type(even) { margin-right: 0; }
.faq-section summary { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 15px; min-height: 70px; padding: 18px 21px; color: var(--ink-strong); font-size: 14px; font-weight: 700; cursor: pointer; list-style: none; }
.faq-section summary::-webkit-details-marker { display: none; }
.faq-icon { flex: 0 0 auto; width: 22px; height: 22px; color: var(--accent); stroke-width: 2; }
.faq-section details[open] { border-color: rgba(201,79,136,.45); }
.faq-section details[open] summary { color: var(--accent-dark); }
.faq-section details[open] .faq-icon { transform: rotate(45deg); }
.faq-section details p { margin: 0; padding: 0 21px 21px; color: var(--muted); font-size: 14px; line-height: 1.65; }

.cta-panel { display: flex; align-items: center; justify-content: space-between; gap: 35px; padding: 50px 56px; border-radius: var(--radius-xl); color: #fff; background: radial-gradient(circle at 88% 20%, rgba(188,236,255,.18), transparent 28%), linear-gradient(120deg, var(--navy), var(--navy-2)); box-shadow: var(--shadow-lg); }
.cta-panel h2 { color: #fff; }
.cta-panel p:not(.eyebrow) { color: rgba(239,251,255,.78); }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 12px; min-width: 220px; }
.cta-actions .button { width: 100%; white-space: nowrap; text-align: center; }

.site-footer {
  padding: 52px 0 18px;
  border-top: 0;
  background: linear-gradient(135deg, #061b2d 0%, #072d48 58%, #08415d 100%);
  color: #b5c1c7;
  font-size: 13px;
}
.footer-inner { display: grid; grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(120px, .7fr)); gap: 42px; }
.footer-brand img { width: 124px; display: block; margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; margin: 0; color: #b5c1c7; line-height: 1.7; }
.footer-column { display: grid; align-content: start; gap: 6px; }
.footer-column h2 { margin: 0 0 8px; color: #f4f8fa; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a, .footer-column span { min-height: 28px; color: #b5c1c7; font-size: 13px; font-weight: 500; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 16px; border-top: 1px solid rgba(180,235,255,.18); color: #9ab6c4; font-size: 11px; }

.lightbox { position: fixed; z-index: 100; inset: 0; display: grid; place-items: center; padding: 30px; background: rgba(3,22,39,.9); }
.lightbox[hidden] { display: none; }
.lightbox-content { position: relative; width: min(1100px, 100%); padding: 12px; border: 1px solid rgba(188,236,255,.55); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 30px 100px rgba(0,0,0,.4); }
.lightbox img { display: block; width: 100%; border-radius: 11px; }
.lightbox-close { position: absolute; z-index: 2; top: -17px; right: -17px; display: grid; place-items: center; width: 40px; height: 40px; border: 1px solid rgba(238,93,122,.7); border-radius: 50%; background: var(--accent-gradient); color: #fff; cursor: pointer; }
.lightbox-close svg { width: 18px; height: 18px; }

[data-reveal="pending"] { opacity: 0; transform: translateY(24px); }
[data-reveal="pending"].reveal-ready { transition: opacity .72s cubic-bezier(.22,1,.36,1), transform .72s cubic-bezier(.22,1,.36,1); }
[data-reveal="pending"].is-revealed { opacity: 1; transform: none; }

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

@media (max-width: 1040px) {
  .desktop-nav { gap: 14px; }
  .hero-grid { grid-template-columns: minmax(0, .9fr) minmax(390px, 1.1fr); gap: 28px; }
  .hero-visual { transform: scale(.92); transform-origin: center right; margin-left: -24px; }
  .product-card-body { gap: 36px; }
}

@media (max-width: 800px) {
  .container { width: min(var(--max), calc(100% - 32px)); }
  .header-inner { min-height: 68px; gap: 10px; }
  .brand img { width: 124px; }
  .desktop-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; margin-left: auto; }
  .mobile-nav { position: absolute; top: 62px; right: 0; left: 0; display: none; gap: 4px; padding: 10px; border: 1px solid var(--line); border-radius: var(--radius-md); background: #fff; box-shadow: var(--shadow-md); }
  .mobile-nav.is-open { display: grid; }
  .mobile-nav a { padding: 13px; border-radius: 10px; font-size: 13px; font-weight: 600; }
  .mobile-nav a:hover { background: var(--cyan-soft); }
  .hero { padding: 57px 0 42px; }
  .hero-grid, .feature-grid, .evidence-grid, .product-card-body { grid-template-columns: 1fr; gap: 28px; }
  .hero h1 { font-size: clamp(36px, 10vw, 52px); }
  .hero-lead { margin: 19px 0 25px; font-size: 15px; line-height: 1.62; }
  .hero-visual { min-height: 360px; margin: 0; transform: none; }
  .hero-product-frame { left: 6%; bottom: 0; width: 170px; height: 300px; }
  .hero-screen-card { top: 14%; right: -1%; width: 73%; }
  .hero-orbit-one { width: 380px; height: 145px; top: 32%; left: -2%; }
  .hero-orbit-two { width: 290px; height: 115px; top: 43%; left: 10%; }
  .hero-tag { font-size: 10px; padding: 8px 10px; }
  .hero-tag-one { top: 1%; right: 0; }
  .hero-tag-two { right: 19%; bottom: 0; }
  .trust-grid { grid-template-columns: 1fr; gap: 13px; padding: 19px 0; }
  .trust-grid div { justify-content: flex-start; border-right: 0; }
  .section { padding: 74px 0; }
  .section h2 { max-width: none; font-size: 31px; }
  .section-intro { margin-bottom: 31px; }
  .section-intro > p:last-child, .feature-grid > div > p:not(.eyebrow), .evidence-grid > div > p:not(.eyebrow), .cta-panel p:not(.eyebrow), .notice p { font-size: 15px; }
  .benefit-grid { grid-template-columns: 1fr; }
  .benefit-card { min-height: 0; padding: 26px; }
  .evidence-grid-reverse .evidence-media, .evidence-grid-reverse > div:last-child { order: initial; }
  .product-card { padding: 35px 25px 29px; }
  .product-card-header { gap: 16px; }
  .product-box-frame { flex-basis: 78px; height: 110px; }
  .product-card h2 { font-size: 43px; }
  .product-card-body { margin-top: 27px; }
  .product-card-body > div > p { font-size: 15px; }
  .gallery-stage { width: 90%; }
  .gallery-arrow { width: 39px; height: 39px; }
  .gallery-arrow-prev { left: -20px; }
  .gallery-arrow-next { right: -20px; }
  .notice { padding: 28px 24px; }
  .faq-section details { display: block; width: 100%; margin: 0 0 12px; }
  .faq-section details:nth-of-type(even) { margin-right: 0; }
  .cta-panel { display: block; padding: 34px 26px; }
  .cta-actions { margin-top: 25px; flex-direction: row; flex-wrap: wrap; min-width: 0; }
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 30px; }
}

@media (max-width: 420px) {
  .hero { padding-top: 44px; }
  .hero-actions .button { width: 100%; }
  .hero-actions { gap: 15px; }
  .hero-visual { min-height: 315px; }
  .hero-orbit { display: none; }
  .hero-product-frame { left: 2%; width: 138px; height: 255px; }
  .hero-screen-card { top: 13%; width: 78%; }
  .hero-tag-one { right: -4px; }
  .hero-tag-two { right: 12%; }
  .proof-row { gap: 9px 14px; font-size: 10px; }
  .gallery-stage { width: calc(100% - 18px); }
  .gallery-slide { padding: 7px; }
  .gallery-arrow-prev { left: -15px; }
  .gallery-arrow-next { right: -15px; }
  .gallery-slide p { font-size: 11px; }
  .product-card-header { gap: 11px; }
  .product-card-header > div:last-child { min-width: 0; }
  .product-box-frame { flex-basis: 60px; height: 86px; border-radius: 12px; }
  .product-card .eyebrow { margin-bottom: 5px; font-size: 8px; letter-spacing: .11em; }
  .product-card h2 { font-size: 36px; }
  .notice h2 { overflow-wrap: anywhere; }
  .cta-actions .button { width: 100%; padding-inline: 12px; font-size: 12px; white-space: nowrap; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal="pending"] { opacity: 1; transform: none; }
}

/* PC Fresh typography parity: keep the same Poppins scale and hierarchy
   while retaining KeyDepot-specific copy and section structure. */
html, body, button, a, summary { font-family: Poppins, Arial, sans-serif; }
body { font-size: 16px; line-height: 1.6; }
.desktop-nav { font-size: 13px; font-weight: 700; }
.header-cta { font-size: 11px; }
.menu-toggle { font-size: 11px; }
.eyebrow { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.button { font: 700 12px Poppins, Arial, sans-serif; }
.button-primary { min-height: 58px; padding-inline: 28px; font-size: 13px; }
.text-link { font-size: 12px; font-weight: 800; }
.hero h1 { font-size: clamp(38px, 4.4vw, 58px); font-weight: 500; line-height: 1.04; letter-spacing: -.065em; }
.hero-lead { font-size: 18px; line-height: 1.72; }
.proof-row { font-size: 11px; }
.trust-grid strong { font-size: 15px; font-weight: 800; }
.trust-grid span { font-size: 11px; }
.section h2 { font-size: clamp(34px, 4.3vw, 58px); font-weight: 500; line-height: 1.03; letter-spacing: -.065em; }
.section-intro > p:last-child,
.feature-grid > div > p:not(.eyebrow),
.evidence-grid > div > p:not(.eyebrow),
.cta-panel p:not(.eyebrow),
.notice p { font-size: 17px; line-height: 1.75; }
.benefit-card h3 { font-size: 26px; font-weight: 500; line-height: 1.05; letter-spacing: -.06em; }
.benefit-card p { font-size: 14px; line-height: 1.65; }
.workflow-list strong, .feature-list strong { font-size: 14px; }
.workflow-list p, .feature-list p { font-size: 14px; line-height: 1.6; }
.product-card-header h2 { font-size: 27px; font-weight: 500; line-height: 1.08; letter-spacing: -.05em; }
.product-card-body > div > p { font-size: 15px; line-height: 1.7; }
.gallery-slide p { font-size: clamp(16px, 1.6vw, 21px); line-height: 1.25; }
.notice h2 { font-size: 14px; font-weight: 800; line-height: 1.25; letter-spacing: 0; }
.faq-section summary { font-size: 16px; }
.faq-section details p { font-size: 15px; line-height: 1.75; }
.footer-brand p { font-size: 13px; }
.footer-column h2 { font-size: 12px; }
.footer-column a, .footer-column span { font-size: 13px; }
.footer-bottom { font-size: 11px; }

@media (max-width: 800px) {
  .hero h1 { font-size: clamp(38px, 10vw, 52px); }
  .hero-lead { font-size: 15px; line-height: 1.7; }
  .section h2 { font-size: 38px; }
  .section-intro > p:last-child,
  .feature-grid > div > p:not(.eyebrow),
  .evidence-grid > div > p:not(.eyebrow),
  .cta-panel p:not(.eyebrow),
  .notice p { font-size: 17px; line-height: 1.68; }
  .faq-section summary { font-size: 16px; }
  .faq-section details p { font-size: 16px; line-height: 1.68; }
}

.product-card .product-card-cta { padding-left: 38px; padding-right: 38px; }

@media (max-width: 520px) {
  .section h2 { font-size: clamp(31px, 9.6vw, 38px); line-height: 1.06; }
  .section-intro > p:last-child,
  .feature-grid > div > p:not(.eyebrow),
  .evidence-grid > div > p:not(.eyebrow),
  .cta-panel p:not(.eyebrow),
  .notice p { font-size: 17px; line-height: 1.68; }
  .benefit-card h3 { font-size: 23px; }
  .gallery-slide p { font-size: 14px; }
  .faq-section summary, .faq-section details p { font-size: 16px; }
}

/* PC Fresh carousel parity: the approved final treatment uses a quiet
   screenshot-first stage, a shared 5:3 frame, centered captions, and arrows
   attached to the active frame. */
.gallery-stage,
.gallery-stage::before {
  min-height: 0;
  padding: 12px 72px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.gallery-stage::before { display: none; }
.gallery-track,
.gallery-stage .gallery-track { position: relative; z-index: 1; display: block; width: 100%; }
.gallery-figure { position: relative; width: 100%; margin: 0; cursor: zoom-in; }
.gallery-figure:not(.is-active) { display: none; }
.gallery-figure.is-active { display: block; animation: none; }
.gallery-media-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: min(90%, 990px);
  min-height: 0;
  aspect-ratio: 5 / 3;
  overflow: visible;
  margin: 0 auto;
}
.gallery-media-frame img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  margin: 0;
  border-radius: 0;
  background: transparent;
  filter: none;
}
.gallery-figure figcaption {
  display: grid;
  gap: 7px;
  margin: 26px auto 0;
  padding: 0;
  max-width: 760px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--ink);
  text-align: center;
}
.gallery-figure figcaption strong {
  color: var(--ink-strong);
  font: 500 clamp(22px, 3vw, 38px)/1.08 Poppins, Arial, sans-serif;
  letter-spacing: -.055em;
}
.gallery-figure figcaption span {
  color: #62666b;
  font: 400 16px/1.7 Poppins, Arial, sans-serif;
}
.gallery-arrow {
  top: 50%;
  width: 32px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent-dark);
  box-shadow: none;
  font-size: 38px;
  font-weight: 300;
  line-height: 1;
  transform: translateY(-50%);
}
.gallery-arrow:hover {
  background: transparent;
  color: var(--accent);
  transform: translateY(-50%) scale(1.04);
}
.gallery-arrow-prev { left: -48px; }
.gallery-arrow-next { right: -48px; }
.gallery-footer {
  display: grid;
  justify-items: center;
  gap: 0;
  padding-top: 28px;
}
.gallery-dots { display: flex; align-items: center; justify-content: center; gap: 16px; }
.gallery-dot,
.gallery-dot:hover,
.gallery-dot.is-active {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #d0d4d5;
}
.gallery-dot.is-active { background: var(--accent-gradient); }
.gallery-hint { display: none; }

@media (max-width: 800px) {
  .gallery-stage { padding: 8px 48px 0; }
  .gallery-media-frame { width: 90%; }
  .gallery-figure figcaption { margin-top: 20px; }
  .gallery-figure figcaption strong { font-size: clamp(20px, 5.5vw, 30px); }
  .gallery-figure figcaption span { font-size: 14px; line-height: 1.6; }
  .gallery-arrow { width: 30px; height: 44px; font-size: 34px; }
  .gallery-arrow-prev { left: -40px; }
  .gallery-arrow-next { right: -40px; }
  .gallery-footer { padding-top: 22px; }
}

@media (max-width: 520px) {
  .gallery-stage { padding: 4px 38px 0; }
  .gallery-media-frame { width: 90%; }
  .gallery-figure figcaption { margin-top: 16px; }
  .gallery-figure figcaption strong { font-size: 20px; }
  .gallery-figure figcaption span { font-size: 13px; line-height: 1.55; }
  .gallery-arrow { width: 28px; height: 40px; font-size: 30px; }
  .gallery-arrow-prev { left: -34px; }
  .gallery-arrow-next { right: -34px; }
  .gallery-footer { padding-top: 18px; }
}

/* KeyDepot product module: PC Fresh-style blue flip cards for the four
   verified product capabilities, with KeyDepot-specific line illustrations. */
.keydepot-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.keydepot-feature-card {
  min-height: 226px;
  border-radius: 18px;
  filter: drop-shadow(0 14px 24px rgba(103, 206, 242, .22));
}
.keydepot-feature-card .cause-card-inner { min-height: 226px; }
.keydepot-feature-card .cause-face {
  padding: 20px;
  border-radius: 18px;
  border: 1px solid rgba(160,229,249,.28);
  background: linear-gradient(135deg, #003b62 0%, #005e86 48%, #167fae 100%);
}
.keydepot-feature-card .cause-face::before {
  content: '';
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 82% 18%, rgba(166,238,255,.22), transparent 32%), repeating-linear-gradient(132deg, transparent 0 74px, rgba(210,248,255,.05) 75px, transparent 76px 142px);
}
.keydepot-feature-card .cause-face.front .cause-illustration {
  position: absolute;
  z-index: 0;
  top: 21%;
  right: 8%;
  width: 70%;
  height: 58%;
  object-fit: contain;
  opacity: .8;
  filter: drop-shadow(0 0 10px rgba(151,243,255,.46));
  pointer-events: none;
}
.keydepot-feature-card .cause-face.front .number,
.keydepot-feature-card .cause-face.front h3,
.keydepot-feature-card .cause-face.back .number,
.keydepot-feature-card .cause-face.back p,
.keydepot-feature-card .cause-face.back strong { position: relative; z-index: 1; }
.keydepot-feature-card .cause-face.front .number,
.keydepot-feature-card .cause-face.back .number { color: #ffd0b8; }
.keydepot-feature-card .cause-face.front h3 {
  max-width: 92%;
  margin: auto 0 0;
  color: #fff;
  font-size: clamp(18px, 1.45vw, 25px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -.045em;
  text-shadow: 0 2px 16px rgba(0,28,56,.52);
}
.keydepot-feature-card .cause-face.front h3::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin-top: 11px;
  border-radius: 999px;
  background: #b9f2ff;
  box-shadow: 0 0 10px rgba(185,242,255,.65);
}
.keydepot-feature-card .cause-face.back {
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #00324f 0%, #005476 48%, #0b789f 100%);
}
.keydepot-feature-card .cause-face.back p { margin: 0; color: rgba(240,251,255,.9); font-size: 13px; line-height: 1.55; }
.keydepot-feature-card .cause-face.back strong { color: #fff; font-size: 16px; }
@media (hover: hover) and (pointer: fine) {
  .keydepot-feature-card:hover { filter: drop-shadow(0 20px 32px rgba(104, 218, 255, .42)); }
  .keydepot-feature-card:hover .cause-card-inner { transform: rotateY(180deg); }
}
@media (max-width: 800px) {
  .keydepot-feature-grid { gap: 13px; }
  .keydepot-feature-card, .keydepot-feature-card .cause-card-inner { min-height: 215px; }
  .keydepot-feature-card .cause-face { padding: 17px; }
  .keydepot-feature-card .cause-face.front h3 { font-size: 20px; }
}
@media (max-width: 520px) {
  .keydepot-feature-grid { grid-template-columns: 1fr; }
  .keydepot-feature-card, .keydepot-feature-card .cause-card-inner { min-height: 190px; }
  .keydepot-feature-card .cause-face.front .cause-illustration { top: 18%; height: 61%; }
  .keydepot-feature-card .cause-face.front h3 { font-size: 22px; }
}
@media (prefers-reduced-motion: reduce) {
  .keydepot-feature-card .cause-card-inner { transition: none; }
  .keydepot-feature-card:hover .cause-card-inner { transform: none; }
}

/* KeyDepot product section: same editorial hierarchy as PC Fresh #windows-pruefen.
   Product-specific copy and hover-only flip interaction. */
.product-spotlight-section { background: #fff; }
.product-card {
  overflow: visible;
  padding: 0;
  border-radius: 0;
  color: var(--ink-strong);
  background: transparent;
  box-shadow: none;
}
.product-card::before { display: none; }
.product-card-header {
  display: grid;
  grid-template-columns: minmax(430px, .92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 36px;
  margin-bottom: 30px;
}
.product-card .eyebrow { margin-bottom: 16px; color: var(--accent); }
.product-card h2 {
  margin: 0 0 18px;
  color: #202326;
  font-size: clamp(38px, 4.6vw, 58px);
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: -.06em;
}
.product-card-body {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0;
}
.product-card-body > div:first-child { display: contents; }
.product-card-body > p,
.product-card-body > div:first-child > p {
  order: 1;
  max-width: 72ch;
  margin: 0 0 34px;
  color: #62666b;
  font-size: 17px;
  line-height: 1.7;
}
.product-card-body > .keydepot-feature-grid {
  order: 2;
  width: 100%;
}
.product-card-body > div:first-child > .product-card-cta {
  order: 3;
  align-self: flex-start;
  margin-top: 28px;
}
.keydepot-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.keydepot-feature-card,
.keydepot-feature-card .cause-card-inner {
  min-height: 255px;
}
.keydepot-feature-card .cause-face { padding: 22px; }
.keydepot-feature-card .cause-face.front h3 {
  font-size: clamp(18px, 1.55vw, 24px);
}
@media (max-width: 900px) {
  .keydepot-feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 800px) {
  .product-card-header { margin-bottom: 25px; }
  .product-card h2 { font-size: clamp(38px, 10vw, 52px); }
  .product-card-body > p,
  .product-card-body > div:first-child > p { font-size: 17px; }
  .keydepot-feature-card,
  .keydepot-feature-card .cause-card-inner { min-height: 215px; }
}
@media (max-width: 520px) {
  .keydepot-feature-grid { grid-template-columns: 1fr; }
  .product-card h2 { font-size: 38px; }
  .product-card-body > p,
  .product-card-body > div:first-child > p { font-size: 16px; margin-bottom: 26px; }
  .product-card-body > .product-card-cta { width: 100%; }
}

/* KeyDepot limitations panel: a calm, scannable safety-awareness module.
   The wording stays cautious and product-specific; only hierarchy changes. */
.limitations-panel {
  position: relative;
  overflow: hidden;
  padding: 48px 52px 42px;
  border: 1px solid #d7e6ec;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #f6fbfd 0%, #edf7fa 100%);
  box-shadow: var(--shadow-md);
}
.limitations-panel::after {
  content: '';
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 430px;
  height: 430px;
  border: 1px solid rgba(201,79,136,.14);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(201,79,136,.035), 0 0 0 76px rgba(201,79,136,.025);
  pointer-events: none;
}
.limitations-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(250px, .72fr) minmax(0, 1.28fr);
  gap: 48px;
  align-items: start;
}
.limitations-lead h2 {
  max-width: 15ch;
  margin: 0 0 18px;
  color: var(--ink-strong);
  font-size: clamp(28px, 3.4vw, 43px);
  line-height: 1.08;
  letter-spacing: -.05em;
}
.limitations-kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  line-height: 1.3;
}
.limitations-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border: 1px solid rgba(201,79,136,.2);
  border-radius: 16px;
  background: #fff;
  color: var(--accent-dark);
  box-shadow: 0 10px 22px rgba(14,46,64,.07);
}
.limitations-icon svg { width: 25px; height: 25px; stroke-width: 1.8; }
.limitations-intro {
  max-width: 42ch;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}
.limitations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding-top: 46px;
}
.limitations-item {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  min-height: 148px;
  padding: 20px 18px;
  border: 1px solid rgba(215,230,236,.95);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,.8);
  box-shadow: 0 8px 22px rgba(14,46,64,.05);
}
.limitations-item-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: var(--cyan-soft);
  color: var(--navy-2);
}
.limitations-item:nth-child(2) .limitations-item-icon { background: #fbeaf2; color: var(--accent-dark); }
.limitations-item:nth-child(3) .limitations-item-icon { background: var(--green-soft-2); color: var(--green-dark); }
.limitations-item:nth-child(4) .limitations-item-icon { background: #fff3e8; color: #ad693b; }
.limitations-item-icon svg { width: 17px; height: 17px; stroke-width: 1.9; }
.limitations-item h3 {
  margin: 0 0 7px;
  color: var(--ink-strong);
  font-size: 15px;
  line-height: 1.25;
}
.limitations-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.58;
}
.limitations-summary {
  position: relative;
  z-index: 1;
  margin: 30px 0 0;
  padding-top: 19px;
  border-top: 1px solid #d5e5eb;
  color: var(--ink-strong);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}
@media (max-width: 900px) {
  .limitations-panel { padding: 38px 34px 34px; }
  .limitations-layout { grid-template-columns: 1fr; gap: 30px; }
  .limitations-grid { padding-top: 0; }
  .limitations-lead h2 { max-width: 20ch; }
  .limitations-intro { max-width: 70ch; }
}
@media (max-width: 680px) {
  .limitations-grid { grid-template-columns: 1fr; }
  .limitations-item { min-height: 0; }
}
@media (max-width: 420px) {
  .limitations-panel { padding: 30px 20px 27px; border-radius: 20px; }
  .limitations-kicker { font-size: 9px; letter-spacing: .13em; }
  .limitations-icon { width: 46px; height: 46px; margin-bottom: 18px; }
  .limitations-lead h2 { font-size: 30px; }
  .limitations-intro { font-size: 14px; }
  .limitations-item { grid-template-columns: 30px minmax(0, 1fr); gap: 11px; padding: 17px 15px; }
  .limitations-item-icon { width: 30px; height: 30px; border-radius: 9px; }
  .limitations-item-icon svg { width: 15px; height: 15px; }
  .limitations-summary { margin-top: 22px; padding-top: 16px; font-size: 12px; }
}

/* Final flip-card foundation: both faces occupy exactly the same plane.
   Cards flip exclusively on hover. */
.keydepot-feature-card {
  position: relative;
  min-height: 255px;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: transparent;
  cursor: pointer;
  outline: none;
  perspective: 1000px;
}
.keydepot-feature-card .cause-card-inner {
  position: relative;
  width: 100%;
  height: 255px;
  min-height: 255px;
  transform-style: preserve-3d;
  transition: transform .56s cubic-bezier(.2,.75,.2,1);
}
.keydepot-feature-card .cause-face {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(160,229,249,.28);
  border-radius: 18px;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  box-shadow: 0 14px 34px rgba(0,35,65,.18), inset 0 1px 0 rgba(255,255,255,.16);
}
.keydepot-feature-card .cause-face.front {
  z-index: 2;
  background: linear-gradient(135deg, #003b62 0%, #005e86 48%, #167fae 100%);
}
.keydepot-feature-card .cause-face.back {
  z-index: 1;
  justify-content: center;
  gap: 13px;
  transform: rotateY(180deg);
  border-color: #e1e1df;
  background: #fff;
  color: #62666b;
}
.keydepot-feature-card .cause-face.front .cause-illustration {
  top: 8%;
  right: 7%;
  width: 46%;
  height: 44%;
  opacity: .72;
}
.keydepot-feature-card .cause-face.front h3 {
  max-width: 82%;
  margin: auto 0 0;
}
.keydepot-feature-card .cause-face.back .number {
  color: #62666b;
}
.keydepot-feature-card .cause-face.back p {
  max-width: 30ch;
  margin: 0;
  color: #62666b;
}
.keydepot-feature-card .cause-face.back strong {
  margin-top: 2px;
  color: #202326;
}
.keydepot-feature-card:focus-visible {
  outline: 3px solid rgba(201,79,136,.48);
  outline-offset: 5px;
  border-radius: 21px;
}
@media (hover: hover) and (pointer: fine) {
  .keydepot-feature-card:hover { filter: drop-shadow(0 20px 32px rgba(104,218,255,.38)); }
  .keydepot-feature-card:hover .cause-card-inner { transform: rotateY(180deg); }
}
@media (max-width: 900px) {
  .keydepot-feature-card,
  .keydepot-feature-card .cause-card-inner { min-height: 238px; height: 238px; }
}
@media (max-width: 520px) {
  .keydepot-feature-card,
  .keydepot-feature-card .cause-card-inner { min-height: 205px; height: 205px; }
  .keydepot-feature-card .cause-face { padding: 18px; }
  .keydepot-feature-card .cause-face.front .cause-illustration { top: 8%; right: 6%; width: 48%; height: 44%; }
  .keydepot-feature-card .cause-face.front h3 { max-width: 88%; font-size: 21px; }
  .keydepot-feature-card .cause-face.back p { font-size: 13px; color: #62666b; }
}
@media (prefers-reduced-motion: reduce) {
  .keydepot-feature-card .cause-card-inner { transition: none; }
}

/* KeyDepot product bridge: text-led product introduction without header artwork. */
.product-card-header {
  display: block;
  margin-bottom: 30px;
}
@media (max-width: 520px) {
  .product-card-header { margin-bottom: 22px; }
}
/* Shared PC Fresh footer treatment across the landing-page set. */
.site-footer {
  padding: 52px 0 18px;
  border-top: 0;
  background: linear-gradient(135deg, #061b2d 0%, #072d48 58%, #08415d 100%);
  color: #b5c1c7;
  font-size: 13px;
}
.footer-inner {
  display: grid;
  grid-template-columns: minmax(250px, 1.45fr) repeat(3, minmax(120px, .7fr));
  gap: 42px;
}
.footer-brand img { width: 124px; display: block; margin-bottom: 18px; }
.footer-brand p { max-width: 34ch; margin: 0; color: #b5c1c7; line-height: 1.7; }
.footer-column { display: grid; align-content: start; gap: 6px; }
.footer-column h2 { margin: 0 0 8px; color: #f4f8fa; font-size: 12px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.footer-column a, .footer-column span { min-height: 28px; color: #b5c1c7; font-size: 13px; font-weight: 500; text-decoration: none; }
.footer-column a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 16px; border-top: 1px solid rgba(180,235,255,.18); color: #9ab6c4; font-size: 11px; }
@media (max-width: 800px) {
  .footer-inner { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 30px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { margin-top: 30px; }
}
@media (max-width: 520px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { display: grid; gap: 6px; }
}
