:root {
  --green: #08c66a;
  --green-bright: #19dc7d;
  --green-dark: #076f45;
  --forest: #063d2b;
  --ink: #15362b;
  --paper: #f7faf5;
  --mint: #ddf7e9;
  --line: rgba(21, 54, 43, .16);
  --amber: #f0b64d;
  --white: #fff;
  --product-teal: #0db8bd;
  --product-blue: #4f7fd2;
  --product-pink: #ee5571;
  --product-cobalt: #326cc4;
  --display: "Songti SC", "STSong", "Noto Serif SC", serif;
  --body: "PingFang SC", "Microsoft YaHei", sans-serif;
  --shadow: 0 28px 80px rgba(2, 53, 34, .14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { color: inherit; font: inherit; }
img { display: block; max-width: 100%; }
.sr-only {
  position: absolute;
  width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: fixed; left: 16px; top: -80px; z-index: 999;
  padding: 10px 16px; color: #fff; background: var(--forest);
  border-radius: 6px; transition: top .2s;
}
.skip-link:focus { top: 12px; }
.page-shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  border-bottom: 1px solid transparent; transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(247, 250, 245, .9); border-color: var(--line);
  box-shadow: 0 8px 30px rgba(3, 49, 31, .06); backdrop-filter: blur(18px);
}
.nav-shell {
  width: min(1280px, calc(100% - 48px)); height: 86px; margin: 0 auto;
  display: flex; align-items: center; gap: 34px;
}
.brand { width: 166px; margin-right: auto; }
.brand img, .footer-brand img { width: 100%; }
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  position: relative; padding: 12px 17px; font-size: 14px; letter-spacing: .05em;
}
.site-nav a::after {
  content: ""; position: absolute; left: 17px; right: 17px; bottom: 5px;
  height: 2px; background: var(--green); transform: scaleX(0); transform-origin: left; transition: transform .25s;
}
.site-nav a:hover::after, .site-nav a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 16px; padding: 11px 16px 11px 20px;
  color: #fff; background: var(--forest); border-radius: 999px; font-size: 14px;
}
.nav-cta span { color: var(--green-bright); font-size: 18px; }
.menu-toggle { display: none; border: 0; background: transparent; padding: 8px; }
.menu-toggle > span:not(.sr-only) { width: 24px; height: 2px; display: block; margin: 5px 0; background: var(--ink); }

.hero {
  position: relative; min-height: 850px; padding: 170px 0 110px;
  background:
    radial-gradient(circle at 78% 22%, rgba(22, 221, 125, .18), transparent 25%),
    linear-gradient(135deg, #f9fcf6 0%, #eef8ef 56%, #ddf3e5 100%);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0; opacity: .24; pointer-events: none;
  background-image: linear-gradient(rgba(7,111,69,.14) 1px, transparent 1px), linear-gradient(90deg, rgba(7,111,69,.14) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to right, transparent 0%, black 58%, black 100%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 70px; z-index: 1; }
.eyebrow, .section-kicker {
  margin: 0 0 24px; color: var(--green-dark); font-size: 12px; font-weight: 700; letter-spacing: .2em;
}
.eyebrow span { display: inline-block; padding-bottom: 7px; border-bottom: 2px solid var(--green); }
.hero h1, .section-heading h2, .standard-intro h2, .about-sticky h2, .contact-copy h2 {
  margin: 0; font-family: var(--display); font-weight: 700; line-height: 1.08; letter-spacing: -.035em;
}
.hero h1 { font-size: clamp(54px, 6vw, 86px); }
.hero h1 em, .about-sticky h2 em { color: var(--green-dark); font-style: normal; }
.hero-lead { max-width: 640px; margin: 28px 0 34px; color: #4c685f; font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; align-items: center; gap: 32px; }
.button {
  border: 0; cursor: pointer; display: inline-flex; justify-content: center; align-items: center; gap: 22px;
  min-height: 52px; padding: 0 24px; border-radius: 3px; font-weight: 600; transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--green-dark); box-shadow: 0 14px 30px rgba(7,111,69,.2); }
.button-primary:hover { background: var(--forest); box-shadow: 0 18px 38px rgba(6,61,43,.25); }
.text-link { font-size: 15px; font-weight: 600; }
.text-link span { margin-left: 9px; color: var(--green); }
.hero-note { display: flex; align-items: center; gap: 10px; margin-top: 42px; color: #71877f; font-size: 12px; letter-spacing: .08em; }
.pulse-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(8,198,106,.12); }

.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.result-card {
  position: relative; z-index: 3; width: 360px; min-height: 430px; padding: 25px;
  color: #fff; background: var(--forest); box-shadow: var(--shadow); transform: rotate(-3deg);
  border-radius: 6px; overflow: hidden;
}
.result-card::after {
  content: ""; position: absolute; inset: auto -60px -80px auto; width: 230px; height: 230px;
  border: 42px solid rgba(25,220,125,.12); border-radius: 50%;
}
.result-head, .result-foot { display: flex; justify-content: space-between; gap: 16px; font-size: 10px; letter-spacing: .12em; }
.status { display: flex; align-items: center; gap: 6px; color: #8bf0b8; }
.status i { width: 6px; height: 6px; background: var(--green-bright); border-radius: 50%; }
.result-main { margin-top: 70px; }
.mini-logo { width: 72px; height: 72px; display: grid; place-items: center; padding: 11px; background: var(--green); border-radius: 50%; overflow: hidden; }
.mini-logo img { width: 160px; max-width: none; transform: translateX(39px); }
.result-main p { margin: 22px 0 4px; color: #9dbbb0; font-size: 13px; }
.result-main strong { font-family: var(--display); font-size: 46px; letter-spacing: .04em; }
.result-code { display: flex; align-items: end; gap: 5px; height: 58px; margin-top: 35px; }
.result-code i { display: block; width: 7px; background: var(--green-bright); }
.result-code i:nth-child(1) { height: 22%; } .result-code i:nth-child(2) { height: 85%; }
.result-code i:nth-child(3) { height: 52%; } .result-code i:nth-child(4) { height: 100%; }
.result-code i:nth-child(5) { height: 36%; } .result-code i:nth-child(6) { height: 68%; }
.result-code i:nth-child(7) { height: 45%; } .result-code i:nth-child(8) { height: 90%; }
.result-foot { position: absolute; left: 25px; right: 25px; bottom: 22px; color: #79a294; z-index: 1; }
.orbit { position: absolute; border: 1px solid rgba(7,111,69,.24); border-radius: 50%; }
.orbit-one { width: 510px; height: 510px; }
.orbit-two { width: 420px; height: 420px; border-style: dashed; animation: rotate 24s linear infinite; }
.scan-track { position: absolute; z-index: 4; left: -20px; right: -30px; bottom: 8px; display: flex; align-items: center; gap: 13px; color: var(--green-dark); font-size: 10px; letter-spacing: .12em; }
.track-line { position: relative; flex: 1; height: 2px; background: rgba(7,111,69,.25); }
.track-line i { position: absolute; top: -4px; width: 10px; height: 10px; border-radius: 50%; background: var(--green); animation: scan 4s ease-in-out infinite; }
.floating-tag { position: absolute; z-index: 5; padding: 10px 13px; background: rgba(255,255,255,.84); border: 1px solid rgba(7,111,69,.14); box-shadow: 0 10px 30px rgba(6,61,43,.08); backdrop-filter: blur(10px); font-size: 11px; letter-spacing: .12em; }
.tag-one { top: 72px; left: -6px; } .tag-two { top: 44%; right: -7px; } .tag-three { bottom: 88px; left: 40px; }
.hero-index { position: absolute; right: 2.8vw; bottom: 45px; color: rgba(7,111,69,.12); font: 700 170px/1 var(--display); }
.hero-ticker { position: absolute; z-index: 2; left: 0; right: 0; bottom: 0; height: 46px; overflow: hidden; display: flex; align-items: center; color: #b8f2d2; background: var(--forest); font-size: 12px; letter-spacing: .18em; white-space: nowrap; }
.hero-ticker div { min-width: max-content; animation: ticker 25s linear infinite; }

.section { padding: 130px 0; }
.section-heading { display: grid; grid-template-columns: 1fr .7fr; gap: 80px; align-items: end; margin-bottom: 70px; }
.section-heading h2, .standard-intro h2, .about-sticky h2, .contact-copy h2 { font-size: clamp(45px, 5vw, 68px); }
.section-heading > p { margin: 0 0 7px; color: #62766f; line-height: 1.9; }
.product-section { background: #fff; }
.product-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.product-card {
  --product-accent: var(--green-dark);
  width: 100%; padding: 0; display: grid; grid-template-columns: 1fr;
  text-align: left; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 8px;
  overflow: hidden; cursor: pointer; box-shadow: 0 14px 42px rgba(3,63,39,.06);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.product-card--teal { --product-accent: var(--product-teal); }
.product-card--blue { --product-accent: var(--product-blue); }
.product-card--pink { --product-accent: var(--product-pink); }
.product-card--cobalt { --product-accent: var(--product-cobalt); }
.product-card:hover, .product-card:focus-visible {
  transform: translateY(-7px); border-color: var(--product-accent); box-shadow: 0 24px 60px rgba(3,63,39,.13);
}
.product-card:focus-visible { outline: 3px solid color-mix(in srgb, var(--product-accent) 42%, white); outline-offset: 4px; }
.product-card-media { position: relative; min-width: 0; aspect-ratio: 1; overflow: hidden; background: var(--paper); }
.product-card-media::after {
  content: ""; position: absolute; inset: 0; border: 5px solid var(--product-accent); opacity: 0;
  pointer-events: none; transition: opacity .3s ease;
}
.product-card:hover .product-card-media::after, .product-card:focus-visible .product-card-media::after { opacity: .68; }
.product-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.product-card:hover .product-card-media img, .product-card:focus-visible .product-card-media img { transform: scale(1.025); }
.product-card-index {
  position: absolute; top: 16px; left: 16px; padding: 7px 10px; color: #fff; background: rgba(3,43,30,.78);
  border-radius: 3px; backdrop-filter: blur(8px); font-size: 10px; font-weight: 700; letter-spacing: .12em;
}
.product-card-body { min-width: 0; min-height: 340px; display: flex; flex-direction: column; align-items: flex-start; padding: 30px 28px; }
.product-card-category { color: var(--product-accent); font-size: 11px; font-weight: 700; letter-spacing: .14em; }
.product-card-title { margin-top: 10px; font: 700 clamp(25px, 2.2vw, 34px)/1.25 var(--display); letter-spacing: -.02em; }
.product-card-summary { margin-top: 18px; color: #5e736b; font-size: 14px; line-height: 1.8; }
.product-card-points { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.product-card-points > span {
  padding: 6px 9px; color: var(--product-accent); background: color-mix(in srgb, var(--product-accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--product-accent) 24%, white); border-radius: 999px; font-size: 10px; font-weight: 600;
}
.product-card-action {
  width: 100%; display: flex; justify-content: space-between; align-items: center; margin-top: auto; padding-top: 26px;
  color: var(--ink); border-top: 1px solid var(--line); font-size: 13px; font-weight: 700;
}
.product-card-action i { color: var(--product-accent); font-size: 18px; font-style: normal; }
.product-disclaimer { max-width: 850px; margin: 30px 0 0; color: #5d7169; font-size: 12px; line-height: 1.8; }

.standard-section { color: #fff; background: var(--forest); }
.standard-section .page-shell { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; }
.section-kicker.light { color: #75dca4; }
.standard-intro > p:last-child { margin-top: 30px; color: #a7bdb5; line-height: 1.9; }
.standard-list { border-top: 1px solid rgba(255,255,255,.2); }
.standard-item { display: grid; grid-template-columns: 70px 1fr; gap: 30px; padding: 42px 10px; border-bottom: 1px solid rgba(255,255,255,.2); }
.standard-item > span { color: var(--green-bright); font-size: 13px; }
.standard-item h3 { margin: 0 0 8px; font: 700 27px var(--display); }
.standard-item p { margin: 0; color: #9eb5ac; }

.about-section { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 100px; }
.about-sticky { align-self: start; position: sticky; top: 130px; }
.about-mark { margin-top: 50px; padding: 20px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.about-mark span, .about-mark small { display: block; }
.about-mark span { font-size: 14px; font-weight: 600; }
.about-mark small { margin-top: 4px; color: #7c8d87; }
.about-lead { margin: 0 0 60px; font: 600 clamp(24px, 2.3vw, 34px)/1.65 var(--display); }
.center-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.center-card { min-height: 320px; padding: 24px; background: #fff; border: 1px solid transparent; transition: transform .25s, border-color .25s, box-shadow .25s; }
.center-card:hover { transform: translateY(-8px); border-color: rgba(8,198,106,.4); box-shadow: 0 20px 50px rgba(3,63,39,.08); }
.center-card > span { color: var(--green); font-size: 38px; font-family: var(--display); }
.center-card i { display: block; margin-top: 45px; color: #9aaba5; font-size: 9px; font-style: normal; letter-spacing: .12em; }
.center-card h3 { margin: 10px 0 14px; font: 700 22px var(--display); }
.center-card p { color: #73847e; font-size: 14px; }
.brand-quote { position: relative; margin: 60px 0 0; padding: 40px 50px 40px 95px; color: #fff; background: var(--green-dark); }
.brand-quote span { position: absolute; top: 15px; left: 35px; color: var(--green-bright); font: 80px var(--display); }
.brand-quote p { margin: 0; font: 700 25px var(--display); }

.license-section { background: #edf6ef; }
.license-heading { margin-bottom: 58px; }
.license-groups { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
.license-group {
  --license-accent: var(--green-dark);
  padding: 34px; background: #fff; border: 1px solid rgba(21,54,43,.14); border-top: 5px solid var(--license-accent);
  border-radius: 8px; box-shadow: 0 18px 48px rgba(3,63,39,.07);
}
.license-group--merchant { --license-accent: #986c16; }
.license-group-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 24px; }
.license-group-head p { margin: 0 0 7px; color: var(--license-accent); font-size: 10px; font-weight: 700; letter-spacing: .16em; }
.license-group-head h3 { margin: 0; font: 700 31px/1.25 var(--display); }
.license-group-head > span {
  flex: 0 0 auto; display: grid; place-items: center; min-width: 54px; height: 32px; padding: 0 10px;
  color: var(--license-accent); background: color-mix(in srgb, var(--license-accent) 9%, white);
  border: 1px solid color-mix(in srgb, var(--license-accent) 22%, white); border-radius: 999px; font-size: 11px; font-weight: 700;
}
.license-entity { margin: 24px 0 28px; padding: 14px 0; color: #526961; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); font-size: 13px; }
.license-list { border-top: 1px solid var(--line); }
.license-item {
  width: 100%; display: grid; grid-template-columns: 104px minmax(0, 1fr) 26px; gap: 18px; align-items: center;
  padding: 21px 4px; text-align: left; color: var(--ink); background: transparent; border: 0; border-bottom: 1px solid var(--line);
  cursor: pointer; transition: color .22s ease, background .22s ease, padding .22s ease;
}
.license-item:hover { padding-left: 12px; color: var(--license-accent); background: color-mix(in srgb, var(--license-accent) 4%, white); }
.license-item:focus-visible { outline: 3px solid color-mix(in srgb, var(--license-accent) 40%, white); outline-offset: 3px; }
.license-item-type { color: var(--license-accent); font-size: 10px; font-weight: 700; letter-spacing: .08em; }
.license-item-main { min-width: 0; }
.license-item-main strong, .license-item-main small { display: block; }
.license-item-main strong { font: 700 17px/1.45 var(--display); }
.license-item-main small { margin-top: 5px; overflow-wrap: anywhere; color: #687c74; font-size: 11px; line-height: 1.5; }
.license-item-open { color: var(--license-accent); font-size: 19px; }
.license-note { max-width: 850px; margin: 30px 0 0; color: #536a62; font-size: 12px; line-height: 1.8; }

.contact-section { padding: 130px 0; color: #fff; background: var(--green-dark); overflow: hidden; }
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: center; }
.contact-copy > p:not(.section-kicker) { max-width: 490px; margin: 30px 0; color: #b9dbc9; }
.button-light { color: var(--forest); background: #fff; }
.contact-panel { position: relative; padding: 30px 45px; color: var(--ink); background: var(--paper); box-shadow: 28px 28px 0 rgba(2,52,34,.18); }
.contact-row { display: grid; grid-template-columns: 100px 1fr; gap: 30px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.contact-row:last-of-type { border-bottom: 0; }
.contact-row > span { color: var(--green-dark); font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.contact-row strong { font: 700 19px var(--display); }
.contact-row p { margin: 3px 0 0; color: #7a8b85; font-size: 14px; }
.contact-seal { position: absolute; right: -22px; bottom: -27px; width: 94px; height: 94px; display: grid; place-content: center; text-align: center; color: #fff; background: var(--amber); border-radius: 50%; font: 700 20px/1.1 var(--display); transform: rotate(8deg); }
.contact-seal small { font: 8px var(--body); letter-spacing: .1em; }

.site-footer { padding: 65px 0 28px; color: #bfd0c9; background: #032b1e; }
.footer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 50px; }
.footer-brand { width: 180px; filter: brightness(0) invert(1); opacity: .92; }
.footer-nav { display: flex; gap: 34px; font-size: 13px; }
.footer-nav a:hover { color: #fff; }
.footer-credentials { display: grid; grid-template-columns: .55fr 1.45fr; align-items: start; gap: 72px; padding: 42px 0 46px; border-top: 1px solid rgba(255,255,255,.13); }
.footer-credentials-qr { display: flex; justify-content: flex-start; }
.footer-credentials-qr img { display: block; width: min(196px, 100%); height: auto; background: #fff; box-shadow: 0 16px 38px rgba(0,0,0,.16); }
.footer-credentials-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 42px; margin: 0; }
.footer-credentials-list > div { min-width: 0; padding: 0 0 16px; margin: 0 0 16px; border-bottom: 1px solid rgba(255,255,255,.09); }
.footer-credentials-list .footer-credentials-wide { grid-column: 1 / -1; }
.footer-credentials-list dt { margin-bottom: 6px; color: #7fa294; font-size: 9px; font-weight: 700; letter-spacing: .12em; }
.footer-credentials-list dd { margin: 0; overflow-wrap: anywhere; color: #dce8e3; font-size: 12px; line-height: 1.65; }
.footer-credentials-list a { text-decoration: underline; text-decoration-color: rgba(8,198,106,.38); text-underline-offset: 4px; }
.footer-credentials-list a:hover { color: var(--green-bright); }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.13); font-size: 11px; letter-spacing: .05em; }
.footer-bottom p:last-child { max-width: 720px; margin-left: auto; line-height: 1.8; text-align: right; }
.footer-bottom a, .contact-row a { text-decoration: underline; text-decoration-color: rgba(255,255,255,.35); text-underline-offset: 3px; }
.contact-row a { text-decoration-color: rgba(5,107,72,.25); }
.footer-bottom a[href^="tel:"], .contact-row a[href^="tel:"] { white-space: nowrap; }
.footer-bottom a:hover, .contact-row a:hover { color: var(--green-bright); }

.product-dialog { width: min(980px, calc(100% - 32px)); max-height: calc(100vh - 40px); padding: 0; color: var(--ink); background: var(--paper); border: 0; border-radius: 9px; box-shadow: 0 35px 100px rgba(0,0,0,.3); overflow: auto; }
.product-dialog::backdrop { background: rgba(3,43,30,.74); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; z-index: 3; top: 14px; right: 16px; width: 42px; height: 42px; display: grid; place-items: center; color: #fff; background: rgba(3,43,30,.78); border: 1px solid rgba(255,255,255,.28); border-radius: 50%; font-size: 27px; line-height: 1; cursor: pointer; backdrop-filter: blur(8px); }
.dialog-close:focus-visible { outline: 3px solid var(--green-bright); outline-offset: 3px; }
.dialog-product-grid { display: grid; grid-template-columns: minmax(340px, .95fr) 1.05fr; }
.dialog-product-media { min-height: 620px; background: #fff; }
.dialog-product-media img { width: 100%; height: 100%; object-fit: cover; }
.dialog-product-content { display: flex; flex-direction: column; padding: 64px 48px 48px; }
.product-dialog h2 { margin: 0 0 16px; font: 700 clamp(36px, 4vw, 52px)/1.18 var(--display); letter-spacing: -.03em; }
.dialog-intro { margin: 0; color: #5b7168; line-height: 1.85; }
.dialog-feature-list { list-style: none; margin: 30px 0; padding: 0; border-top: 1px solid var(--line); }
.dialog-feature-list li { position: relative; padding: 14px 0 14px 28px; border-bottom: 1px solid var(--line); font-weight: 600; }
.dialog-feature-list li::before { content: ""; position: absolute; left: 2px; top: 22px; width: 8px; height: 8px; background: var(--green); border-radius: 50%; box-shadow: 0 0 0 5px rgba(8,198,106,.11); }
.dialog-service { margin-top: auto; padding: 18px 20px; color: #fff; background: var(--forest); }
.dialog-service span, .dialog-service strong { display: block; }
.dialog-service span { color: #8fe5b5; font-size: 10px; letter-spacing: .14em; }
.dialog-service strong { margin-top: 5px; font-size: 15px; }
.dialog-lab { margin: 14px 0 0; color: var(--green-dark); font-size: 13px; font-weight: 700; }
.dialog-lab::before { content: "LAB / "; color: #748b82; font-size: 10px; letter-spacing: .12em; }
.dialog-note { margin: 0; padding: 14px 24px; color: #69552a; background: #fff3d8; border-top: 1px solid rgba(105,85,42,.14); font-size: 12px; text-align: center; }

.license-dialog {
  width: min(1220px, calc(100% - 32px)); max-height: calc(100vh - 32px); padding: 0;
  color: var(--ink); background: var(--paper); border: 0; border-radius: 9px; box-shadow: 0 35px 100px rgba(0,0,0,.34); overflow: auto;
}
.license-dialog::backdrop { background: rgba(3,43,30,.78); backdrop-filter: blur(5px); }
.license-dialog-head { padding: 44px 72px 34px; color: #fff; background: var(--forest); }
.license-dialog-head .section-kicker { margin-bottom: 12px; color: var(--green-bright); }
.license-dialog-head h2 { max-width: 920px; margin: 0; font: 700 clamp(32px, 4vw, 52px)/1.2 var(--display); }
.license-dialog-head > p:last-child { margin: 13px 0 0; color: #acd2c0; font-size: 13px; letter-spacing: .04em; }
.license-dialog-figure { min-height: 420px; margin: 0; padding: 28px; display: grid; place-items: center; background: #dfe8e1; }
.license-dialog-figure img { display: block; width: auto; max-width: 100%; height: auto; max-height: none; background: #fff; box-shadow: 0 15px 45px rgba(3,43,30,.16); }
.license-dialog-foot { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 20px; padding: 18px 28px; background: #fff; border-top: 1px solid var(--line); }
.license-dialog-foot button { min-height: 42px; padding: 0 16px; color: var(--green-dark); background: transparent; border: 1px solid var(--line); border-radius: 4px; cursor: pointer; }
.license-dialog-foot button:last-child { justify-self: end; }
.license-dialog-foot button:hover { color: #fff; background: var(--green-dark); }
.license-dialog-foot button:focus-visible { outline: 3px solid rgba(8,198,106,.32); outline-offset: 3px; }
.license-dialog-foot span { color: #657a72; font-size: 12px; }
.license-dialog-note { margin: 0; padding: 13px 24px; color: #69552a; background: #fff3d8; border-top: 1px solid rgba(105,85,42,.14); font-size: 12px; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .75s ease, transform .75s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.standard-item:nth-child(2), .center-card:nth-child(2) { transition-delay: .1s; }
.standard-item:nth-child(3), .center-card:nth-child(3) { transition-delay: .2s; }
@keyframes rotate { to { transform: rotate(360deg); } }
@keyframes scan { 0%, 100% { left: 0; } 50% { left: calc(100% - 10px); } }
@keyframes ticker { to { transform: translateX(-50%); } }

@media (max-width: 980px) {
  .nav-shell { height: 74px; }
  .menu-toggle { display: block; z-index: 102; order: 3; }
  .nav-cta { display: none; }
  .site-nav {
    position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center;
    gap: 15px; visibility: hidden; opacity: 0; background: var(--paper); transition: opacity .25s, visibility .25s;
  }
  .site-nav.open { visibility: visible; opacity: 1; }
  .site-nav a { font: 700 34px var(--display); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] > span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] > span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .menu-toggle > span { transition: transform .2s, opacity .2s; }
  .hero { min-height: auto; padding-top: 140px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 720px; }
  .hero-visual { min-height: 520px; }
  .hero-index { display: none; }
  .section-heading, .standard-section .page-shell, .about-grid, .contact-grid, .license-groups { grid-template-columns: 1fr; gap: 55px; }
  .about-sticky { position: static; }
  .contact-panel { margin-right: 24px; }
}
@media (max-width: 820px) {
  .dialog-product-grid { grid-template-columns: 1fr; }
  .dialog-product-media { min-height: auto; max-height: 540px; }
  .dialog-product-media img { height: auto; }
  .dialog-product-content { padding: 42px 32px 32px; }
  .license-dialog-head { padding: 40px 54px 30px; }
}
@media (max-width: 680px) {
  .product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .page-shell, .nav-shell { width: min(100% - 32px, 1180px); }
  .brand { width: 138px; }
  .hero { padding: 118px 0 90px; }
  .hero::before { background-size: 48px 48px; }
  .hero h1 { font-size: 48px; }
  .hero-lead { font-size: 15px; }
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-visual { min-height: 430px; transform: scale(.82); margin: -30px -45px -55px; }
  .result-card { width: 330px; min-height: 390px; }
  .orbit-one { width: 420px; height: 420px; }
  .orbit-two { width: 350px; height: 350px; }
  .scan-track { left: 18px; right: 18px; }
  .tag-one { left: 20px; } .tag-two { right: 20px; }
  .section { padding: 90px 0; }
  .section-heading { gap: 28px; margin-bottom: 45px; }
  .section-heading h2, .standard-intro h2, .about-sticky h2, .contact-copy h2 { font-size: 42px; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-media img { min-height: auto; aspect-ratio: 1; }
  .product-card-body { min-height: 330px; padding: 28px 24px; }
  .product-card-title { font-size: 31px; }
  .standard-section .page-shell { gap: 35px; }
  .standard-item { grid-template-columns: 40px 1fr; gap: 16px; }
  .center-grid { grid-template-columns: 1fr; }
  .center-card { min-height: auto; }
  .center-card i { margin-top: 25px; }
  .brand-quote { padding: 35px 28px 35px 65px; }
  .brand-quote span { left: 19px; }
  .license-group { padding: 26px 20px; }
  .license-group-head h3 { font-size: 27px; }
  .license-item { grid-template-columns: 1fr 24px; gap: 12px; padding: 19px 2px; }
  .license-item-type { grid-column: 1 / -1; }
  .license-item-open { grid-column: 2; grid-row: 2; }
  .contact-section { padding: 90px 0 105px; }
  .contact-panel { padding: 20px 24px; margin-right: 14px; }
  .contact-row { grid-template-columns: 72px 1fr; gap: 16px; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
  .footer-credentials { grid-template-columns: 1fr; gap: 34px; padding: 36px 0 38px; }
  .footer-credentials-qr { justify-content: center; }
  .footer-credentials-qr img { width: 180px; }
  .footer-credentials-list { grid-template-columns: 1fr; }
  .footer-credentials-list .footer-credentials-wide { grid-column: auto; }
  .footer-bottom p:last-child { margin-left: 0; text-align: left; }
  .footer-nav { flex-wrap: wrap; gap: 20px; }
  .product-dialog { width: min(100% - 20px, 980px); max-height: calc(100vh - 20px); }
  .dialog-product-content { padding: 38px 22px 24px; }
  .dialog-note { padding: 13px 18px; text-align: left; }
  .license-dialog { width: calc(100% - 16px); max-height: calc(100vh - 16px); }
  .license-dialog-head { padding: 34px 24px 26px; }
  .license-dialog-head h2 { padding-right: 34px; font-size: 32px; }
  .license-dialog-figure { min-height: 240px; padding: 12px; }
  .license-dialog-foot { grid-template-columns: 1fr 1fr; padding: 14px 12px; }
  .license-dialog-foot span { grid-column: 1 / -1; grid-row: 1; text-align: center; }
  .license-dialog-foot button { grid-row: 2; }
  .license-dialog-note { padding: 12px 16px; text-align: left; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
