/* 蜓云四页统一样式：由 index.css 与 auth.css 合并。 */
@font-face {
   font-family: MiSans;
   src: url("../MiSans-Regular.ttf") format("truetype");
   font-weight: 100 900;
   font-style: normal;
   font-display: swap;
}
:root {
   --ink: #151936;
   --muted: #75809a;
   --line: #dbe3ff;
   --blue: #1769ff;
   --indigo: #4c47ff;
   --purple: #7b4dff;
   --cyan: #20c6ff;
   --soft: #f5f8ff;
   --glow: rgba(83, 79, 255, .18);
   --shadow: 0 18px 55px rgba(58, 74, 150, .10);
}
* {
   box-sizing: border-box;
}
html {
   scroll-behavior: smooth;
   scroll-padding-top: 88px;
}
body {
   margin: 0px;
   color: var(--ink);
   background: rgb(255, 255, 255);
   font-family: MiSans, "Microsoft YaHei", sans-serif;
   font-size: 16px;
   line-height: 1.65;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
}
button, input {
   font: inherit;
}
a {
   color: inherit;
   text-decoration: none;
}
.container {
   width: 1200px;
   max-width: calc(-64px + 100vw);
   margin: 0px auto;
}
.section {
   padding: 94px 0px;
   position: relative;
   overflow: hidden;
}
.section.alt {
   background: rgb(248, 250, 255);
}
.section-title {
   margin: 0px;
   text-align: center;
   font-size: 34px;
   line-height: 1.3;
   letter-spacing: -0.6px;
   font-weight: 700;
}
.section-title .accent {
   color: rgb(23, 105, 255);
   background: linear-gradient(90deg, rgb(23, 105, 255), rgb(109, 86, 255));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}
.section-subtitle {
   margin: 15px auto 48px;
   color: rgb(146, 155, 176);
   text-align: center;
   font-size: 14px;
}
.nav {
   height: 74px;
   background: rgba(255, 255, 255, 0.94);
   display: flex;
   align-items: center;
   position: relative;
   z-index: 20;
   border-bottom: 1px solid rgb(237, 241, 255);
}
.nav-inner {
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.brand {
   display: flex;
   align-items: center;
   gap: 12px;
   font-weight: 700;
   font-size: 19px;
}
.brand-logo {
   display: block;
   width: 148px;
   height: auto;
   object-fit: contain;
}
.brand-mark {
   width: 38px;
   height: 38px;
   border-radius: 13px;
   background: linear-gradient(135deg, var(--purple), var(--blue) 55%, var(--cyan));
   position: relative;
   box-shadow: rgba(67, 88, 255, 0.3) 0px 10px 28px;
}
.brand-mark::before, .brand-mark::after {
   content: "";
   position: absolute;
   background: white;
   border-radius: 10px;
   transform: rotate(-32deg);
}
.brand-mark::before {
   width: 19px;
   height: 5px;
   left: 10px;
   top: 11px;
}
.brand-mark::after {
   width: 5px;
   height: 19px;
   left: 17px;
   top: 10px;
}
.brand small {
   display: block;
   margin-top: -4px;
   color: rgb(139, 148, 170);
   font-weight: 400;
   font-size: 9px;
   letter-spacing: 1.5px;
}
.nav-links {
   display: flex;
   align-items: center;
   gap: 30px;
   font-size: 16px;
   font-weight: 700;
}
.nav-links a {
   position: relative;
}
.nav-links a.active {
   color: var(--blue);
   font-weight: 700;
}
.nav-links a.active::after {
   content: "";
   position: absolute;
   height: 3px;
   border-radius: 4px;
   left: 0px;
   right: 0px;
   bottom: -24px;
   background: linear-gradient(90deg, var(--blue), var(--purple));
}
.nav-actions {
   display: flex;
   gap: 12px;
}
.btn {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   min-width: 104px;
   height: 40px;
   padding: 0px 22px;
   border-radius: 9px;
   border: 1px solid rgb(203, 215, 255);
   background: white;
   color: var(--blue);
   cursor: pointer;
   text-decoration: none;
   transition: 0.25s;
}
.btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 24px var(--glow);
}
.btn.primary {
   color: white;
   border: 0px;
   background: linear-gradient(100deg, var(--blue), var(--purple));
}
.hero {
   min-height: 675px;
   background: radial-gradient(circle at 78% 24%, rgba(126, 91, 255, 0.16), transparent 25%), radial-gradient(circle at 91% 68%, rgba(31, 190, 255, 0.15), transparent 30%), linear-gradient(120deg, rgb(246, 249, 255) 0%, rgb(255, 255, 255) 46%, rgb(242, 245, 255) 100%);
   overflow: hidden;
   position: relative;
}
.hero::before {
   content: "";
   width: 900px;
   height: 900px;
   border-radius: 50%;
   border: 1px solid rgba(89, 100, 255, 0.12);
   position: absolute;
   right: -290px;
   top: -300px;
   box-shadow: rgba(255, 255, 255, 0.15) 0px 0px 0px 90px inset, rgba(88, 91, 255, 0.024) 0px 0px 0px 180px inset;
}
.hero-inner {
   display: grid;
   grid-template-columns: 510px 1fr;
   align-items: center;
   min-height: 600px;
   gap: 55px;
}
.eyebrow {
   color: var(--blue);
   font-weight: 700;
   font-size: 15px;
   letter-spacing: 0.5px;
   margin-bottom: 17px;
}
.hero h1 {
   margin: 0px;
   font-size: 50px;
   line-height: 1.22;
   letter-spacing: -1.5px;
}
.hero h1 span {
   color: rgb(23, 105, 255);
   background: linear-gradient(90deg, rgb(23, 105, 255), rgb(109, 86, 255));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}
.hero-copy {
   margin: 19px 0px 30px;
   color: rgb(105, 115, 141);
   font-size: 15px;
   line-height: 1.9;
}
.hero-buttons {
   display: flex;
   gap: 14px;
}
.hero-buttons .btn {
   height: 48px;
   min-width: 136px;
}
.hero-visual {
   height: 460px;
   position: relative;
   perspective: 1200px;
}
.platform {
   position: absolute;
   left: 28px;
   right: 8px;
   height: 150px;
   bottom: 13px;
   border-radius: 50%;
   background: radial-gradient(rgba(82, 95, 255, 0.16), rgba(255, 255, 255, 0.68) 52%, transparent 70%);
   border-bottom: 2px solid rgba(54, 106, 255, 0.15);
}
.dash {
   position: absolute;
   right: 12px;
   top: 20px;
   width: 276px;
   height: 405px;
   border-radius: 26px;
   padding: 25px;
   background: linear-gradient(155deg, rgb(32, 23, 111), rgb(17, 27, 89) 55%, rgb(8, 44, 98));
   color: white;
   box-shadow: rgba(28, 43, 116, 0.28) 0px 35px 60px, rgba(255, 255, 255, 0.13) 0px 0px 0px 1px inset;
   transform: rotateY(-7deg) rotateZ(2deg);
}
.dash-top {
   display: flex;
   justify-content: space-between;
   align-items: center;
}
.dash-title {
   font-size: 15px;
   font-weight: 700;
}
.shield {
   width: 42px;
   height: 48px;
   display: grid;
   place-items: center;
   border-radius: 16px 16px 20px 20px;
   background: linear-gradient(135deg, rgb(110, 79, 255), rgb(14, 191, 255));
   box-shadow: rgba(37, 176, 255, 0.55) 0px 0px 30px;
   font-weight: 800;
}
.score-row {
   margin-top: 24px;
   display: flex;
   justify-content: space-between;
   align-items: end;
}
.score-row strong {
   font-size: 30px;
   letter-spacing: 1px;
}
.score-row span {
   color: rgb(143, 217, 255);
   font-size: 12px;
}
.meter {
   margin-top: 20px;
}
.meter-label {
   display: flex;
   justify-content: space-between;
   color: rgb(189, 200, 245);
   font-size: 11px;
   margin-bottom: 8px;
}
.bar {
   height: 6px;
   background: rgba(255, 255, 255, 0.11);
   border-radius: 20px;
   overflow: hidden;
}
.bar i {
   height: 100%;
   display: block;
   border-radius: inherit;
   background: linear-gradient(90deg, rgb(95, 82, 255), rgb(30, 215, 255));
   box-shadow: rgb(42, 175, 255) 0px 0px 15px;
}
.dash-list {
   margin-top: 23px;
   display: grid;
   gap: 13px;
   font-size: 11px;
   color: rgb(199, 211, 255);
}
.dash-list div {
   display: flex;
   align-items: center;
   gap: 9px;
}
.dot {
   width: 7px;
   height: 7px;
   border-radius: 50%;
   background: rgb(38, 202, 255);
   box-shadow: rgb(38, 202, 255) 0px 0px 9px;
}
.report-card {
   position: absolute;
   width: 322px;
   height: 284px;
   left: 10px;
   top: 35px;
   padding: 23px;
   border-radius: 24px;
   background: rgba(255, 255, 255, 0.92);
   box-shadow: rgba(68, 87, 165, 0.18) 0px 24px 55px;
   border: 1px solid rgba(203, 215, 255, 0.8);
   transform: rotateY(7deg) rotateZ(-1deg);
}
.report-head {
   display: flex;
   justify-content: space-between;
   color: rgb(105, 115, 141);
   font-size: 11px;
}
.report-number {
   font-size: 27px;
   font-weight: 700;
   margin-top: 18px;
}
.report-number small {
   font-size: 11px;
   color: rgb(143, 152, 173);
   margin-left: 4px;
}
.chart {
   height: 82px;
   margin-top: 18px;
   display: flex;
   align-items: flex-end;
   gap: 9px;
   border-bottom: 1px solid rgb(219, 227, 255);
   position: relative;
}
.chart::before, .chart::after {
   content: "";
   position: absolute;
   left: 0px;
   right: 0px;
   height: 1px;
   background: rgb(237, 241, 255);
}
.chart::before {
   top: 25px;
}
.chart::after {
   top: 51px;
}
.chart b {
   width: 25px;
   border-radius: 8px 8px 0px 0px;
   background: linear-gradient(rgb(126, 90, 255), rgb(31, 140, 255));
   position: relative;
   z-index: 1;
}
.donut {
   position: absolute;
   right: 20px;
   bottom: 18px;
   width: 82px;
   height: 82px;
   border-radius: 50%;
   background: conic-gradient(var(--purple) 0 28%, var(--blue) 28% 72%, var(--cyan) 72% 91%, #e7ebff 91%);
   box-shadow: rgba(82, 87, 217, 0.18) 0px 8px 22px;
}
.donut::after {
   content: "86";
   position: absolute;
   inset: 14px;
   border-radius: 50%;
   background: white;
   display: grid;
   place-items: center;
   font-weight: 700;
   font-size: 20px;
}
.ai-chip {
   position: absolute;
   left: 272px;
   bottom: 59px;
   width: 92px;
   height: 92px;
   border-radius: 24px;
   display: grid;
   place-items: center;
   color: white;
   font-size: 32px;
   font-weight: 700;
   background: linear-gradient(145deg, rgb(116, 84, 255), rgb(20, 92, 255) 55%, rgb(33, 200, 255));
   box-shadow: rgba(42, 88, 255, 0.35) 0px 20px 40px, rgba(255, 255, 255, 0.45) 0px 0px 0px 2px inset;
   transform: rotate(-4deg);
}
.float-stat {
   position: absolute;
   left: -22px;
   top: 190px;
   width: 105px;
   height: 82px;
   background: white;
   border: 1px solid rgb(220, 229, 255);
   border-radius: 18px;
   padding: 13px;
   box-shadow: rgba(63, 80, 150, 0.13) 0px 18px 35px;
}
.float-stat small {
   color: rgb(137, 147, 170);
   font-size: 10px;
}
.float-stat strong {
   display: block;
   color: var(--blue);
   font-size: 26px;
   line-height: 1.15;
}
.hero-stats {
   width: 1200px;
   position: absolute;
   left: 50%;
   transform: translateX(-50%);
   bottom: 0px;
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   gap: 18px;
}
.hero-stat {
   height: 88px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 15px;
   background: white;
   border: 1px solid rgb(224, 231, 255);
   border-radius: 14px 14px 0px 0px;
   box-shadow: rgba(53, 73, 151, 0.05) 0px -8px 28px;
}
.hero-stat strong {
   display: block;
   font-size: 21px;
   line-height: 1.1;
}
.hero-stat span {
   color: rgb(139, 148, 170);
   font-size: 11px;
}
.cta {
   margin: 95px auto;
   min-height: 245px;
   border-radius: 24px;
   padding: 52px 65px;
   color: white;
   position: relative;
   overflow: hidden;
   background: linear-gradient(105deg, rgb(48, 48, 182), rgb(78, 66, 237) 45%, rgb(17, 127, 232));
   box-shadow: rgba(57, 61, 188, 0.22) 0px 25px 55px;
}
.cta::before {
   content: "";
   position: absolute;
   width: 420px;
   height: 420px;
   border-radius: 50%;
   right: -100px;
   top: -180px;
   background: rgba(255, 255, 255, 0.08);
   box-shadow: rgba(255, 255, 255, 0.035) 0px 0px 0px 80px;
}
.cta::after {
   content: "";
   position: absolute;
   width: 290px;
   height: 290px;
   border-radius: 50%;
   right: 130px;
   bottom: -235px;
   border: 1px solid rgba(255, 255, 255, 0.14);
}
.cta-content {
   position: relative;
   z-index: 1;
   display: flex;
   align-items: center;
   justify-content: space-between;
}
.cta small {
   color: rgb(169, 207, 255);
}
.cta h2 {
   margin: 6px 0px 2px;
   font-size: 34px;
}
.cta p {
   margin: 0px;
   color: rgb(191, 206, 255);
   font-size: 15px;
}
.cta-actions {
   display: flex;
   gap: 15px;
}
.cta .btn {
   min-width: 135px;
   border: 0px;
   color: var(--blue);
   font-weight: 700;
}
.cta .btn.ghost {
   background: transparent;
   color: white;
   border: 1px solid rgba(255, 255, 255, 0.65);
}
.cta-points {
   position: relative;
   z-index: 1;
   display: flex;
   gap: 62px;
   margin-top: 38px;
   color: rgb(215, 225, 255);
   font-size: 11px;
}
footer {
   background: linear-gradient(rgb(251, 252, 255), rgb(244, 247, 255));
   border-top: 1px solid rgb(237, 241, 255);
   padding-top: 68px;
}
.footer-grid {
   display: grid;
   grid-template-columns: 1.45fr repeat(3, 0.8fr) 1.3fr;
   gap: 52px;
   padding-bottom: 52px;
}
.footer-brand p {
   color: rgb(140, 149, 170);
   font-size: 11px;
   margin: 14px 0px 25px;
}
.qr-row {
   display: flex;
   gap: 20px;
}
.qr {
   width: 82px;
}
.qr-box {
   width: 70px;
   height: 70px;
   background: repeating-conic-gradient(rgb(32, 39, 67) 0deg, rgb(32, 39, 67) 25%, white 0deg, white 50%) 50% center / 14px 14px;
   border: 6px solid white;
   box-shadow: rgba(38, 49, 98, 0.12) 0px 5px 17px;
}
.qr span {
   display: block;
   margin-top: 7px;
   color: rgb(141, 150, 170);
   font-size: 9px;
   text-align: center;
}
.footer-col h4 {
   font-size: 14px;
   margin: 0px 0px 19px;
}
.footer-col a {
   display: block;
   color: rgb(140, 149, 170);
   font-size: 11px;
   margin: 10px 0px;
}
.contact-card h3 {
   margin: 0px 0px 18px;
}
.contact-line {
   display: flex;
   gap: 12px;
   margin: 16px 0px;
   align-items: center;
}
.contact-line .icon {
   width: 34px;
   height: 34px;
   font-size: 14px;
   border-radius: 10px;
}
.contact-line strong {
   display: block;
   font-size: 14px;
}
.contact-line span {
   color: rgb(140, 149, 170);
   font-size: 10px;
}
.copyright {
   height: 68px;
   border-top: 1px solid rgb(227, 233, 247);
   display: flex;
   align-items: center;
   justify-content: space-between;
   color: rgb(141, 150, 170);
   font-size: 10px;
}
.copyright-left {
   display: flex;
   gap: 25px;
}
.section-subtitle {
   color: rgb(104, 115, 138);
   font-size: 16px;
}
.hero-copy {
   color: rgb(79, 92, 118);
   font-size: 17px;
}
.hero-stat span, .report-head, .report-number small, .footer-brand p, .footer-col a {
   color: rgb(93, 104, 126);
   font-size: 13px;
}
.float-stat small, .contact-line span, .copyright {
   color: rgb(98, 109, 131);
   font-size: 12px;
}
.qr span {
   color: rgb(95, 106, 128);
   font-size: 11px;
}
.cta p {
   color: rgb(224, 230, 255);
   font-size: 17px;
}
.cta-points {
   color: rgb(240, 243, 255);
   font-size: 13px;
}
:root {
   --edge: rgba(139, 154, 220, .34);
   --edge-strong: rgba(101, 119, 205, .48);
   --shadow-sm: 0 8px 18px rgba(38, 51, 111, .07), 0 2px 5px rgba(45, 57, 116, .05);
   --shadow-md: 0 18px 38px rgba(43, 56, 126, .11), 0 5px 12px rgba(50, 63, 128, .06);
   --shadow-lg: 0 28px 65px rgba(42, 53, 123, .16), 0 8px 20px rgba(52, 64, 132, .08);
   --inner-highlight: inset 0 1px 0 rgba(255, 255, 255, .95);
}
body {
   background: radial-gradient(circle at 15% 8%, rgba(64, 103, 255, 0.043), transparent 19%), radial-gradient(circle at 88% 23%, rgba(121, 76, 255, 0.05), transparent 20%), rgb(255, 255, 255);
}
.section {
   isolation: isolate;
   border-top: 1px solid rgba(210, 220, 248, 0.55);
   background: linear-gradient(rgba(249, 251, 255, 0.72), rgba(255, 255, 255, 0.98) 18%, rgb(255, 255, 255) 82%, rgba(247, 249, 255, 0.74));
}
.section.alt {
   background: radial-gradient(circle at 8% 12%, rgba(78, 116, 255, 0.067), transparent 24%), radial-gradient(circle at 92% 82%, rgba(126, 75, 255, 0.055), transparent 25%), linear-gradient(rgb(242, 245, 255), rgb(250, 251, 255) 34%, rgb(245, 247, 255));
   box-shadow: rgba(255, 255, 255, 0.95) 0px 1px 0px inset, rgba(194, 205, 240, 0.55) 0px -1px 0px inset;
}
.section > .container {
   position: relative;
   z-index: 1;
}
.section-title {
   text-shadow: rgb(255, 255, 255) 0px 1px 0px, rgba(50, 63, 135, 0.08) 0px 8px 22px;
}
.section-title::after {
   content: "";
   display: block;
   width: 48px;
   height: 4px;
   margin: 17px auto 0px;
   border-radius: 8px;
   background: linear-gradient(90deg, var(--blue), var(--purple));
   box-shadow: rgba(76, 71, 255, 0.26) 0px 5px 13px;
}
.section-subtitle {
   margin-top: 10px;
}
.section-title-accent {
   width: 48px;
   height: 3px;
   margin: 13px auto 12px;
   border-radius: 999px;
   background: linear-gradient(90deg, transparent, rgb(8, 116, 255) 28%, rgb(112, 82, 255) 72%, transparent);
   box-shadow: rgba(73, 89, 255, 0.18) 0px 3px 10px;
}
.section-title-accent + .section-subtitle {
   margin-top: 0px;
}
.btn {
   position: relative;
   overflow: hidden;
   border-color: rgba(115, 137, 225, 0.48);
   background: linear-gradient(rgb(255, 255, 255), rgb(245, 247, 255));
   box-shadow: var(--inner-highlight), 0 5px 12px rgba(45, 64, 139, .08);
   font-weight: 600;
}
.btn::before {
   content: "";
   position: absolute;
   left: 10%;
   right: 10%;
   top: 0px;
   height: 1px;
   background: rgba(255, 255, 255, 0.9);
}
.btn:hover {
   transform: translateY(-3px);
   border-color: rgba(86, 99, 225, 0.68);
   box-shadow: var(--inner-highlight), 0 14px 25px rgba(55, 69, 153, .16);
}
.btn:active {
   transform: translateY(0px);
   box-shadow: rgba(34, 46, 112, 0.12) 0px 2px 6px inset;
}
.btn.primary {
   border: 1px solid rgba(55, 68, 210, 0.35);
   background: linear-gradient(135deg, rgb(27, 131, 255) 0%, rgb(66, 96, 255) 48%, rgb(121, 80, 255) 100%);
   box-shadow: rgba(255, 255, 255, 0.36) 0px 1px 0px inset, rgba(33, 35, 133, 0.18) 0px -2px 4px inset, rgba(65, 70, 235, 0.27) 0px 10px 23px;
   text-shadow: rgba(34, 33, 112, 0.28) 0px 1px 2px;
}
.btn.primary:hover {
   box-shadow: rgba(255, 255, 255, 0.42) 0px 1px 0px inset, rgba(33, 35, 133, 0.18) 0px -2px 4px inset, rgba(65, 70, 235, 0.34) 0px 16px 31px;
}
.nav-actions .btn.primary::before, .hero-buttons .btn.primary::before, .case-copy .btn.primary::before, .cta-actions .btn::before {
   display: none;
}
.cta {
   border: 1px solid rgba(116, 135, 255, 0.52);
   background: linear-gradient(110deg, rgb(36, 37, 157), rgb(79, 61, 225) 43%, rgb(22, 136, 237));
   box-shadow: rgba(255, 255, 255, 0.28) 0px 1px 0px inset, rgba(25, 30, 123, 0.24) 0px -5px 13px inset, rgba(47, 49, 165, 0.25) 0px 34px 72px, rgba(46, 52, 154, 0.12) 0px 9px 20px;
}
.cta .btn {
   box-shadow: rgb(255, 255, 255) 0px 1px 0px inset, rgba(25, 31, 128, 0.22) 0px 12px 25px;
}
.cta .btn.ghost {
   background: rgba(255, 255, 255, 0.08);
   border-color: rgba(255, 255, 255, 0.7);
   box-shadow: rgba(255, 255, 255, 0.22) 0px 1px 0px inset, rgba(24, 28, 112, 0.18) 0px 10px 22px;
   backdrop-filter: blur(8px);
}
footer {
   border-top: 1px solid rgba(170, 187, 232, 0.65);
   background: radial-gradient(circle at 90% 20%, rgba(97, 88, 255, 0.08), transparent 25%), linear-gradient(rgb(250, 251, 255), rgb(238, 242, 251));
   box-shadow: rgb(255, 255, 255) 0px 1px 0px inset;
}
.contact-card {
   padding: 20px;
   border: 1px solid rgba(135, 151, 216, 0.4);
   border-radius: 14px;
   background: rgba(255, 255, 255, 0.72);
   box-shadow: rgb(255, 255, 255) 0px 1px 0px inset, rgba(51, 65, 135, 0.09) 0px 13px 30px;
}
:root {
   --blue: #086dff;
   --indigo: #335dff;
   --purple: #6658ff;
   --cyan: #10c8ff;
   --line: #dce7ff;
   --edge: rgba(154, 178, 235, .34);
   --edge-strong: rgba(92, 139, 235, .48);
   --shadow-sm: 0 7px 18px rgba(48, 91, 166, .06);
   --shadow-md: 0 15px 36px rgba(45, 84, 157, .09);
   --shadow-lg: 0 23px 55px rgba(39, 75, 151, .13);
}
body {
   background: rgb(255, 255, 255);
}
.nav {
   height: 68px;
   border-bottom-color: rgb(237, 243, 255);
   box-shadow: rgba(62, 100, 165, 0.035) 0px 4px 18px;
}
.brand-mark {
   background: linear-gradient(145deg, rgb(25, 124, 255), rgb(7, 95, 255) 58%, rgb(50, 201, 255));
   box-shadow: rgba(28, 105, 255, 0.23) 0px 8px 20px;
}
.nav-links a.active::after {
   bottom: -22px;
   background: rgb(36, 120, 255);
   box-shadow: none;
}
.nav-links a {
   padding: 24px 0px 22px;
   transition: color 0.22s, text-shadow 0.22s;
}
.nav-links a::after {
   content: "";
   position: absolute;
   left: 50%;
   right: 50%;
   bottom: 0px;
   height: 3px;
   border-radius: 999px;
   background: linear-gradient(90deg, rgb(8, 116, 255), rgb(66, 96, 255));
   box-shadow: rgba(28, 104, 255, 0.28) 0px 5px 12px;
   transition: left 0.25s, right 0.25s;
}
.nav-links a:hover, .nav-links a:focus-visible {
   color: rgb(8, 110, 255);
   text-shadow: rgba(8, 110, 255, 0.18) 0px 6px 16px;
}
.nav-links a:hover::after, .nav-links a:focus-visible::after, .nav-links a.active::after {
   left: 20%;
   right: 20%;
   bottom: 0px;
}
.btn {
   border-color: rgb(158, 195, 255);
   background: rgb(255, 255, 255);
   box-shadow: none;
   border-radius: 7px;
}
.btn:hover {
   transform: translateY(-2px);
   border-color: rgb(75, 142, 255);
   box-shadow: rgba(37, 104, 230, 0.13) 0px 9px 20px;
}
.btn.primary {
   border-color: rgb(14, 105, 246);
   background: linear-gradient(100deg, rgb(8, 111, 255), rgb(39, 94, 255));
   box-shadow: rgba(19, 94, 235, 0.2) 0px 9px 20px;
   text-shadow: none;
}
.btn.primary:hover {
   box-shadow: rgba(19, 94, 235, 0.27) 0px 13px 26px;
}
.hero {
   min-height: 640px;
   background: radial-gradient(circle at 77% 31%, rgba(92, 115, 255, 0.15), transparent 22%), radial-gradient(circle at 92% 74%, rgba(26, 194, 255, 0.16), transparent 31%), linear-gradient(110deg, rgb(244, 248, 255) 0%, rgb(255, 255, 255) 47%, rgb(240, 245, 255) 100%);
}
.hero::before {
   width: 820px;
   height: 820px;
   right: -205px;
   top: -300px;
   border-color: rgba(69, 126, 255, 0.1);
   box-shadow: rgba(255, 255, 255, 0.13) 0px 0px 0px 86px inset, rgba(43, 122, 255, 0.024) 0px 0px 0px 172px inset;
}
.hero::after {
   content: "";
   position: absolute;
   right: 0px;
   bottom: 0px;
   width: 670px;
   height: 290px;
   background: linear-gradient(135deg, transparent 22%, rgba(98, 91, 255, 0.035) 22%, rgba(98, 91, 255, 0.035) 23%, transparent 23%, transparent 56%, rgba(18, 178, 255, 0.05) 56%, rgba(18, 178, 255, 0.05) 57%, transparent 57%);
   pointer-events: none;
}
.hero-inner {
   grid-template-columns: 555px 1fr;
   gap: 20px;
   min-height: 552px;
   align-items: center;
}
.eyebrow {
   display: none;
}
.hero h1 {
   font-size: 48px;
   line-height: 1.27;
   letter-spacing: -1px;
   white-space: nowrap;
   margin-top: -18px;
}
.hero h1 span {
   background: linear-gradient(90deg, rgb(8, 116, 255) 0%, rgb(49, 95, 255) 55%, rgb(107, 86, 255) 100%) text;
}
.hero-copy {
   width: 520px;
   margin: 18px 0px 27px;
   color: rgb(101, 112, 137);
   font-size: 14px;
   line-height: 1.85;
}
.hero-buttons {
   gap: 18px;
}
.hero-buttons .btn {
   height: 47px;
   min-width: 139px;
   border-radius: 7px;
}
.hero-copy-column {
   position: relative;
   z-index: 3;
}
.hero-visual {
   height: 485px;
   margin-top: -5px;
   perspective: 1300px;
}
.platform {
   left: 55px;
   right: 4px;
   bottom: 7px;
   height: 165px;
   background: radial-gradient(rgba(44, 116, 255, 0.19), rgba(255, 255, 255, 0.78) 47%, transparent 69%);
   border-bottom: 2px solid rgba(30, 116, 255, 0.18);
   box-shadow: rgba(32, 91, 205, 0.08) 0px 22px 45px;
}
.report-card {
   left: 5px;
   top: 48px;
   width: 350px;
   height: 294px;
   padding: 25px;
   border-radius: 23px;
   background: rgba(255, 255, 255, 0.94);
   border: 1px solid rgba(197, 216, 255, 0.88);
   box-shadow: rgba(50, 91, 170, 0.16) 0px 25px 52px;
   transform: rotateY(5deg) rotateZ(-0.8deg);
}
.report-number {
   margin-top: 19px;
   font-size: 29px;
}
.chart {
   height: 88px;
   margin-top: 16px;
   gap: 10px;
}
.chart b {
   width: 28px;
   background: linear-gradient(rgb(102, 92, 255), rgb(22, 133, 255));
   box-shadow: rgba(41, 104, 242, 0.12) 0px 4px 10px;
}
.donut {
   right: 22px;
   bottom: 17px;
   width: 90px;
   height: 90px;
   background: conic-gradient(rgb(109, 88, 255) 0deg, rgb(109, 88, 255) 27%, rgb(8, 117, 255) 27%, rgb(8, 117, 255) 71%, rgb(17, 199, 255) 71%, rgb(17, 199, 255) 91%, rgb(231, 239, 255) 91%);
   box-shadow: rgba(40, 92, 187, 0.14) 0px 10px 24px;
}
.donut::after {
   inset: 15px;
}
.dash {
   right: 0px;
   top: 27px;
   width: 290px;
   height: 415px;
   padding: 26px;
   border-radius: 24px;
   background: linear-gradient(155deg, rgb(16, 41, 104) 0%, rgb(11, 36, 92) 45%, rgb(6, 63, 112) 100%);
   box-shadow: rgba(18, 54, 117, 0.28) 0px 34px 60px, rgba(105, 181, 255, 0.18) 0px 0px 0px 1px inset;
   transform: rotateY(-5deg) rotateZ(1.5deg);
}
.shield {
   background: linear-gradient(135deg, rgb(20, 94, 255), rgb(17, 207, 255));
   box-shadow: rgba(28, 176, 255, 0.48) 0px 0px 27px;
}
.bar i {
   background: linear-gradient(90deg, rgb(37, 122, 255), rgb(18, 214, 255));
   box-shadow: rgba(31, 190, 255, 0.8) 0px 0px 12px;
}
.ai-chip {
   left: 296px;
   bottom: 48px;
   width: 88px;
   height: 88px;
   border-radius: 22px;
   background: linear-gradient(145deg, rgb(82, 104, 255), rgb(5, 110, 255) 58%, rgb(25, 207, 255));
   box-shadow: rgba(29, 94, 225, 0.3) 0px 19px 37px, rgba(255, 255, 255, 0.38) 0px 0px 0px 2px inset;
}
.float-stat {
   left: -24px;
   top: 205px;
   border-color: rgb(216, 230, 255);
   box-shadow: rgba(45, 89, 170, 0.12) 0px 16px 32px;
}
.hero-stats {
   position: static;
   width: 1200px;
   max-width: calc(-64px + 100vw);
   transform: none;
   margin-top: 48px;
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 14px;
}
.hero-stat {
   min-height: 86px;
   padding: 16px 18px;
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: flex-start;
   gap: 14px;
   border-color: rgba(151, 189, 255, 0.56);
   border-radius: 18px;
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.94) 0%, rgba(246, 249, 255, 0.92) 100%);
   box-shadow: rgba(255, 255, 255, 0.92) 0px 1px 0px inset, rgba(37, 78, 155, 0.11) 0px 14px 30px;
   backdrop-filter: blur(10px);
}
.hero-stat .stat-icon {
   width: 42px;
   height: 42px;
   display: block;
   color: rgb(8, 116, 255);
   fill: none;
   stroke: currentcolor;
   stroke-width: 1.8;
   stroke-linecap: round;
   stroke-linejoin: round;
   flex: 0 0 auto;
   filter: drop-shadow(rgba(8, 116, 255, 0.18) 0px 8px 14px);
   transition: color 0.25s, transform 0.25s, filter 0.25s;
}
.hero-stat:hover .stat-icon {
   color: rgb(49, 88, 255);
   transform: translateY(-2px);
   filter: drop-shadow(rgba(49, 88, 255, 0.26) 0px 12px 18px);
}
.hero-stat strong {
   font-size: 25px;
   line-height: 1.1;
   text-align: left;
}
.hero-stat > div > span {
   display: block;
   width: 100%;
   margin-top: 5px;
   color: rgb(102, 116, 143);
   font-size: 13px;
   font-weight: 700;
   line-height: 1.25;
   text-align: left;
   white-space: nowrap;
}
.section {
   border-top: 0px;
   background: linear-gradient(rgb(255, 255, 255) 0%, rgb(251, 253, 255) 50%, rgb(247, 250, 255) 100%);
}
.section.alt {
   background: radial-gradient(circle at 8% 18%, rgba(49, 118, 255, 0.055), transparent 27%), radial-gradient(circle at 94% 80%, rgba(105, 91, 255, 0.043), transparent 26%), linear-gradient(rgb(244, 248, 255) 0%, rgb(248, 250, 255) 48%, rgb(242, 246, 255) 100%);
   box-shadow: none;
}
.section + .section {
   margin-top: 0px;
}
.section-title {
   text-shadow: none;
}
.section-title::after {
   display: none;
}
.section-subtitle {
   margin-top: 15px;
}
.cta {
   border-color: rgba(72, 139, 255, 0.44);
   background: linear-gradient(105deg, rgb(15, 80, 198) 0%, rgb(18, 106, 232) 48%, rgb(21, 158, 255) 100%);
   box-shadow: rgba(19, 94, 206, 0.22) 0px 28px 62px;
}
footer {
   border-top: 0px;
   background: radial-gradient(circle at 91% 24%, rgba(28, 125, 255, 0.07), transparent 27%), linear-gradient(rgb(251, 253, 255), rgb(242, 247, 255));
   box-shadow: none;
}
:root {
   --impact-blue: #075dff;
   --impact-indigo: #4a38ff;
   --impact-cyan: #08c7ff;
   --impact-ink: #101a45;
   --impact-glow: 0 30px 80px rgba(31, 86, 224, .20);
}
.nav {
   position: sticky;
   top: 0px;
   z-index: 50;
   background: rgba(255, 255, 255, 0.88);
   backdrop-filter: blur(18px) saturate(145%);
   box-shadow: rgba(37, 77, 148, 0.07) 0px 8px 28px;
}
.nav-actions .btn.primary {
   box-shadow: rgba(16, 91, 235, 0.24) 0px 10px 24px;
}
.hero {
   min-height: 620px;
   background: radial-gradient(circle at 80% 28%, rgba(77, 67, 255, 0.22), transparent 23%), radial-gradient(circle at 94% 72%, rgba(8, 199, 255, 0.22), transparent 30%), radial-gradient(circle at 55% 5%, rgba(34, 116, 255, 0.09), transparent 24%), linear-gradient(112deg, rgb(238, 245, 255) 0%, rgb(255, 255, 255) 43%, rgb(237, 243, 255) 100%);
}
.hero-inner {
   min-height: 600px;
}
.hero h1 {
   color: var(--impact-ink);
   font-size: 55px;
   line-height: 1.2;
   font-weight: 900;
   letter-spacing: -2px;
   text-shadow: rgba(31, 57, 125, 0.09) 0px 8px 28px;
}
.hero h1 span {
   background: linear-gradient(90deg, rgb(5, 120, 255) 0%, rgb(49, 88, 255) 46%, rgb(123, 66, 255) 100%) text;
   filter: drop-shadow(rgba(62, 66, 255, 0.18) 0px 10px 18px);
}
.hero-copy {
   width: 535px;
   color: rgb(78, 93, 123);
   font-size: 16px;
}
.hero-buttons .btn {
   height: 50px;
   min-width: 148px;
   font-weight: 700;
}
.hero-buttons .btn.primary {
   background: linear-gradient(105deg, rgb(8, 110, 255) 0%, rgb(53, 85, 255) 56%, rgb(105, 75, 255) 100%);
   box-shadow: rgba(32, 84, 230, 0.3) 0px 16px 34px;
}
.hero-visual {
   transform: scale(1.035);
   transform-origin: center center;
}
.report-card {
   border-color: rgba(158, 185, 255, 0.95);
   box-shadow: rgba(38, 78, 169, 0.23) 0px 34px 74px;
}
.dash {
   background: linear-gradient(150deg, rgb(17, 27, 100) 0%, rgb(7, 28, 85) 42%, rgb(4, 61, 115) 100%);
   box-shadow: rgba(12, 43, 112, 0.38) 0px 42px 82px, rgba(31, 119, 255, 0.12) 0px 0px 52px, rgba(107, 191, 255, 0.24) 0px 0px 0px 1px inset;
}
.ai-chip {
   box-shadow: rgba(24, 88, 231, 0.38) 0px 24px 48px, rgba(20, 196, 255, 0.22) 0px 0px 34px, rgba(255, 255, 255, 0.42) 0px 0px 0px 2px inset;
}
.hero-stat {
   border-color: rgba(177, 201, 247, 0.75);
   box-shadow: rgba(37, 78, 155, 0.1) 0px 14px 30px;
   transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.hero-stat:hover {
   transform: translateY(-5px);
   border-color: rgba(93, 143, 240, 0.68);
   box-shadow: rgba(37, 78, 155, 0.15) 0px 22px 42px;
}
.hero-stat strong {
   color: rgb(21, 32, 74);
   font-weight: 800;
}
.section {
   padding: 108px 0px;
}
.section-title {
   color: rgb(22, 32, 72);
   font-size: 38px;
   font-weight: 800;
   letter-spacing: -1px;
}
.section-title .accent {
   filter: drop-shadow(rgba(48, 76, 255, 0.15) 0px 7px 12px);
}
.exposure-shift {
   position: relative;
   overflow: hidden;
}
.exposure-shift::before {
   content: "";
   position: absolute;
   inset: 34px auto auto 50%;
   width: 520px;
   height: 220px;
   transform: translateX(-50%);
   border-radius: 50%;
   background: radial-gradient(circle, rgba(42, 103, 255, 0.1), transparent 68%);
   pointer-events: none;
}
.exposure-shift .section-title {
   font-size: 46px;
   font-weight: 900;
   letter-spacing: -1.4px;
   color: rgb(16, 26, 69);
}
.exposure-shift .section-subtitle {
   max-width: 620px;
   color: rgb(76, 90, 120);
   font-size: 17px;
   font-weight: 700;
}
#solutions {
   background: radial-gradient(circle at 12% 12%, rgba(83, 104, 255, 0.12), transparent 28%), radial-gradient(circle at 92% 76%, rgba(32, 198, 255, 0.1), transparent 27%), linear-gradient(rgb(246, 249, 255) 0%, rgb(251, 252, 255) 50%, rgb(242, 246, 255) 100%);
}
.cta {
   min-height: 252px;
   padding: 49px 54px 35px;
   border-color: rgba(112, 165, 255, 0.62);
   background: radial-gradient(circle at 82% 20%, rgba(40, 212, 255, 0.25), transparent 24%), linear-gradient(108deg, rgb(11, 49, 155) 0%, rgb(21, 73, 212) 40%, rgb(92, 50, 232) 72%, rgb(7, 143, 223) 100%);
   box-shadow: rgba(25, 65, 174, 0.3) 0px 38px 84px, rgba(255, 255, 255, 0.28) 0px 1px 0px inset;
}
.cta h2 {
   font-size: 38px;
   font-weight: 800;
   letter-spacing: -0.8px;
   text-shadow: rgba(3, 23, 95, 0.28) 0px 10px 24px;
}
.cta .btn {
   height: 48px;
   min-width: 150px;
}
.cta .btn:first-child {
   box-shadow: rgba(4, 29, 116, 0.26) 0px 16px 34px;
}
.hero {
   background-color: rgb(237, 244, 255);
   background-image: linear-gradient(90deg, rgba(237, 244, 255, 0.98) 0%, rgba(237, 244, 255, 0.94) 28%, rgba(237, 244, 255, 0.76) 43%, rgba(237, 244, 255, 0.2) 59%, rgba(237, 244, 255, 0) 72%), url("../img/hero-banner-1920x1024.png");
   background-repeat: no-repeat;
   background-position: center center, right center;
   background-size: 100% 100%, auto 100%;
}
.hero::before, .hero::after {
   display: none;
}
.hero-inner {
   position: relative;
   z-index: 1;
}
.hero-copy-column {
   text-shadow: rgba(255, 255, 255, 0.82) 0px 2px 18px;
   transform: translateY(62px);
}
.hero-visual {
   display: none;
}
@media (prefers-reduced-motion: no-preference) {
  .hero-copy-column {
     animation: 0.7s ease-out 0s 1 normal both running impact-rise-shifted;
  }
  .hero-visual {
     animation: 0.85s ease-out 0.08s 1 normal both running impact-visual;
  }
  @keyframes impact-rise {
      0% {
       opacity: 0;
       transform: translateY(18px);
    }
      100% {
       opacity: 1;
       transform: translateY(0px);
    }
  }
  @keyframes impact-visual {
      0% {
       opacity: 0;
       transform: translateY(22px) scale(0.985);
    }
      100% {
       opacity: 1;
       transform: translateY(0px) scale(1.035);
    }
  }
}
@keyframes impact-rise-shifted {
    0% {
     opacity: 0;
     transform: translateY(84px);
  }
    100% {
     opacity: 1;
     transform: translateY(62px);
  }
}
@media (max-width: 1280px) {
  .container {
     width: 1200px;
     max-width: calc(-64px + 100vw);
  }
  .nav-links {
     gap: 28px;
  }
  .hero {
     background-position: center center, right center;
     background-size: 100% 100%, auto 100%;
  }
  .hero-inner {
     grid-template-columns: 455px 1fr;
  }
  .hero-stats {
     width: 1200px;
     max-width: calc(-64px + 100vw);
  }
  .hero-stat {
     min-height: 82px;
     padding: 14px;
     gap: 10px;
  }
  .hero-stat .stat-icon {
     width: 36px;
     height: 36px;
  }
  .hero-stat strong {
     font-size: 22px;
  }
  .hero-stat > div > span {
     font-size: 12px;
  }
  .hero h1 {
     font-size: 48px;
  }
  .hero-copy {
     width: 455px;
  }
  .hero-visual {
     transform: scale(0.94);
     transform-origin: right center;
  }
  @media (prefers-reduced-motion: no-preference) {
    .hero-visual {
       animation-name: none;
    }
  }
}
.option-a-shift {
   padding-top: 82px;
   background: radial-gradient(circle at 50% 8%, rgba(23, 105, 255, 0.12), transparent 34%), linear-gradient(rgb(246, 250, 255) 0%, rgb(238, 246, 255) 100%);
}
.option-a-shift::before {
   width: 620px;
   height: 250px;
   background: radial-gradient(circle, rgba(23, 105, 255, 0.13), transparent 68%);
}
.option-a-shift .section-title {
   max-width: 1200px;
   margin-left: auto;
   margin-right: auto;
}
.option-a-shift .section-title .accent {
   color: rgb(23, 105, 255);
   background: linear-gradient(90deg, rgb(23, 105, 255), rgb(109, 86, 255));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}
.option-a-hero {
   position: relative;
   height: 410px;
   margin: 36px auto 28px;
   border-radius: 26px;
   overflow: hidden;
   border: 1px solid rgba(174, 199, 242, 0.78);
   background: rgb(233, 244, 255);
   box-shadow: rgba(48, 90, 178, 0.16) 0px 34px 80px;
}
.option-a-hero img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   display: block;
}
.option-a-hero::before {
   content: "";
   position: absolute;
   inset: 0px;
   background: linear-gradient(rgba(246, 250, 255, 0.08) 0%, rgba(246, 250, 255, 0.28) 100%), linear-gradient(90deg, rgba(255, 255, 255, 0.38) 0%, rgba(255, 255, 255, 0) 30%, rgba(7, 24, 70, 0.08) 100%);
   pointer-events: none;
}
.option-a-check {
   position: relative;
   min-height: 510px;
   padding: 52px 0px;
   overflow: hidden;
   background: radial-gradient(circle at 18% 48%, rgba(23, 105, 255, 0.18), transparent 29%), radial-gradient(circle at 72% 40%, rgba(25, 200, 255, 0.17), transparent 24%), linear-gradient(90deg, rgb(230, 242, 255) 0%, rgb(249, 252, 255) 55%, rgb(237, 245, 255) 100%);
}
.option-a-check::after {
   content: "";
   position: absolute;
   inset: 0px;
   background: linear-gradient(90deg, rgba(230, 242, 255, 0.04) 0%, rgba(255, 255, 255, 0.68) 48%, rgba(237, 245, 255, 0.18) 100%);
   pointer-events: none;
}
.option-a-form {
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 10px;
   padding: 12px;
   border: 1px solid rgba(181, 202, 242, 0.76);
   border-radius: 18px;
   background: rgba(255, 255, 255, 0.78);
   box-shadow: rgba(50, 91, 174, 0.13) 0px 22px 52px;
   backdrop-filter: blur(14px);
}
.option-a-field {
   min-height: 68px;
   padding: 12px 13px;
   border-radius: 12px;
   background: rgb(255, 255, 255);
   border: 1px solid rgb(224, 233, 251);
}
.option-a-field label {
   display: block;
   color: rgb(113, 128, 154);
   font-size: 12px;
   font-weight: 850;
}
.option-a-cta {
   border: 0px;
   border-radius: 13px;
   color: rgb(255, 255, 255);
   background: linear-gradient(100deg, var(--blue), var(--purple));
   font-size: 15px;
   font-weight: 900;
   box-shadow: rgba(23, 105, 255, 0.25) 0px 16px 32px;
   cursor: pointer;
}
@media (max-width: 900px) {
  .exposure-shift .container {
     width: calc(100% - 32px);
  }
  .option-a-form {
     grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}
@media (max-width: 620px) {
  .option-a-shift {
     padding-top: 58px;
  }
  .option-a-hero {
     height: 300px;
     border-radius: 18px;
  }
  .option-a-form {
     grid-template-columns: 1fr;
  }
}
.option-a-shift {
   padding: 64px 0px 56px;
   background: radial-gradient(circle at 50% 4%, rgba(23, 105, 255, 0.1), transparent 30%), linear-gradient(rgb(247, 250, 255) 0%, rgb(238, 246, 255) 100%);
}
.option-a-shift .section-title {
   max-width: 880px;
   font-size: 40px;
   letter-spacing: 0px;
}
.option-a-shift .section-subtitle {
   margin-bottom: 26px;
}
.option-a-hero {
   height: 250px;
   margin: 28px auto 0px;
   border-radius: 20px;
   background: radial-gradient(circle at 76% 45%, rgba(23, 105, 255, 0.12), transparent 36%), linear-gradient(110deg, rgb(255, 255, 255) 0%, rgb(243, 248, 255) 42%, rgb(233, 244, 255) 100%);
   box-shadow: rgba(48, 90, 178, 0.12) 0px 22px 54px;
}
.option-a-hero img {
   position: absolute;
   right: 0px;
   top: 0px;
   width: 65%;
   height: 100%;
   object-fit: contain;
   object-position: right center;
}
.option-a-hero::before {
   z-index: 1;
   background: linear-gradient(90deg, rgba(255, 255, 255, 0.96) 0%, rgba(255, 255, 255, 0.8) 38%, rgba(255, 255, 255, 0.12) 66%, rgba(255, 255, 255, 0) 100%);
}
.option-a-check {
   min-height: auto;
   padding: 62px 0px 20px;
   border-top: 0px;
   border-bottom: 0px;
   background: linear-gradient(rgb(238, 246, 255) 0%, rgb(247, 251, 255) 20%, rgb(255, 255, 255) 100%);
}
.option-a-check::after {
   display: none;
}
.option-a-check-heading {
   position: relative;
   z-index: 2;
}
.option-a-check-heading .section-subtitle {
   margin-bottom: 34px;
}
.option-a-form {
   display: grid;
   grid-template-columns: 1fr;
   gap: 18px;
   padding: 0px;
   border: 0px;
   border-radius: 0px;
   background: transparent;
   box-shadow: none;
   backdrop-filter: none;
}
.option-a-fields {
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 22px;
}
.option-a-field {
   min-height: auto;
   padding: 0px;
   border: 0px;
   border-radius: 0px;
   background: transparent;
}
.option-a-control {
   height: 44px;
   margin-top: 10px;
   display: flex;
   align-items: center;
   padding: 0px 13px;
   border-radius: 8px;
   background: rgb(255, 255, 255);
   border: 1px solid rgb(217, 229, 251);
   box-shadow: rgba(255, 255, 255, 0.9) 0px 1px 0px inset;
}
.option-a-field input, .option-a-field select {
   width: 100%;
   padding: 0px;
   border: 0px;
   outline: 0px;
   color: rgb(23, 33, 61);
   background: transparent;
   font-style: inherit;
   font-variant: inherit;
   font-stretch: inherit;
   line-height: inherit;
   font-family: inherit;
   font-optical-sizing: inherit;
   font-size-adjust: inherit;
   font-kerning: inherit;
   font-feature-settings: inherit;
   font-variation-settings: inherit;
   font-language-override: inherit;
   font-size: 13px;
   font-weight: 700;
}
.option-a-field select {
   appearance: none;
   background: transparent;
   cursor: pointer;
}
.option-a-field input::placeholder {
   color: rgb(154, 168, 190);
}
.option-a-field label {
   color: rgb(17, 24, 39);
   font-size: 12px;
   font-weight: 900;
}
.option-a-field.is-invalid .option-a-control {
   border-color: rgb(255, 122, 122);
   box-shadow: rgba(255, 92, 92, 0.1) 0px 0px 0px 3px;
}
.option-a-field.is-invalid label {
   color: rgb(194, 47, 66);
}
.option-a-cta {
   min-height: 56px;
   width: min(420px, 100%);
   justify-self: center;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   gap: 14px;
   border-radius: 9px;
   font-size: 22px;
   line-height: 1;
   letter-spacing: 0px;
   background: linear-gradient(100deg, var(--blue) 0%, var(--indigo) 52%, var(--purple) 100%);
   box-shadow: rgba(67, 79, 255, 0.22) 0px 15px 30px;
}
.option-a-cta.is-submitting {
   cursor: wait;
   filter: saturate(0.92) brightness(0.98);
   opacity: 0.88;
}
.option-a-cta::before {
   content: "";
   width: 30px;
   height: 30px;
   border-radius: 999px;
   border: 3px solid rgba(255, 255, 255, 0.42);
   box-shadow: rgba(255, 255, 255, 0.2) 0px 0px 0px 7px inset;
}
.option-a-proof {
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 14px;
   align-items: center;
   color: rgb(113, 128, 154);
   font-size: 11px;
   font-weight: 800;
}
.option-a-message {
   min-height: 22px;
   margin: -6px 0px 0px;
   color: rgb(95, 111, 138);
   text-align: center;
   font-size: 13px;
   font-weight: 800;
}
.option-a-message.is-error {
   color: rgb(194, 47, 66);
}
.option-a-message.is-success {
   color: rgb(23, 105, 255);
}
.option-a-proof span {
   display: flex;
   align-items: center;
   gap: 8px;
   white-space: nowrap;
}
.option-a-proof span::before {
   content: "";
   width: 14px;
   height: 14px;
   flex: 0 0 auto;
   border-radius: 999px;
   border: 2px solid rgb(27, 117, 255);
   box-shadow: rgb(255, 255, 255) 0px 0px 0px 3px inset;
   background: rgb(234, 243, 255);
}
@media (max-width: 900px) {
  .option-a-hero {
     height: 230px;
  }
  .option-a-hero img {
     width: 58%;
     opacity: 0.72;
  }
  .option-a-fields, .option-a-proof {
     grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
}
@media (max-width: 620px) {
  .option-a-shift .section-title {
     font-size: 29px;
  }
  .option-a-hero {
     height: auto;
     min-height: 240px;
     padding: 24px;
  }
  .option-a-hero img {
     width: 100%;
     height: 150px;
     opacity: 0.52;
  }
  .option-a-fields, .option-a-proof, .option-a-form {
     grid-template-columns: 1fr;
  }
  .option-a-cta {
     width: min(360px, 100%);
     min-height: 52px;
     font-size: 19px;
  }
}
.option-a-shift {
   padding: 62px 0px 58px;
}
.option-a-shift .section-title {
   max-width: 860px;
   font-size: 38px;
}
.option-a-shift .section-subtitle {
   max-width: 690px;
   margin-bottom: 28px;
}
.option-a-hero {
   height: auto;
   min-height: 0px;
   display: grid;
   grid-template-columns: minmax(0px, 1fr) 72px minmax(0px, 1fr);
   align-items: stretch;
   gap: 18px;
   margin: 28px auto 0px;
   padding: 0px;
   border: 0px;
   border-radius: 0px;
   background: transparent;
   box-shadow: none;
   overflow: visible;
}
.option-a-hero::before, .option-a-hero > img {
   display: none;
}
.shift-card {
   position: relative;
   min-height: 264px;
   padding: 24px;
   border-radius: 22px;
   overflow: hidden;
   border: 1px solid rgba(159, 190, 246, 0.82);
   background: rgba(255, 255, 255, 0.86);
   box-shadow: rgba(48, 90, 178, 0.14) 0px 24px 58px, rgba(255, 255, 255, 0.74) 0px 1px 0px inset;
   transform: translateY(0px);
   transition: transform 0.34s, border-color 0.34s, box-shadow 0.34s, background-position 0.34s;
}
.shift-card::before {
   content: "";
   position: absolute;
   inset: 0px;
   pointer-events: none;
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.16) 48%, rgba(255, 255, 255, 0) 70%);
   z-index: 1;
   transition: opacity 0.34s, transform 0.34s;
}
.shift-card::after {
   content: "";
   position: absolute;
   inset: auto 22px 18px auto;
   width: 180px;
   height: 132px;
   border-radius: 40px;
   pointer-events: none;
   opacity: 0.72;
   z-index: 0;
   filter: blur(1px);
   transition: opacity 0.34s, transform 0.34s, filter 0.34s;
}
.option-a-hero .shift-card-shot {
   position: absolute;
   z-index: 2;
   right: 18px;
   top: 50%;
   width: 210px;
   height: 230px;
   object-fit: contain;
   border-radius: 16px;
   border: 1px solid rgba(187, 207, 244, 0.72);
   box-shadow: rgba(31, 78, 160, 0.12) 0px 18px 32px;
   transform: translateY(-50%);
   transition: transform 0.34s, filter 0.34s;
}
.option-a-hero .shift-card.ai .shift-card-shot {
   transform: translateY(-50%);
}
.shift-card.search {
   background: radial-gradient(circle at 18% 18%, rgba(105, 210, 255, 0.34), transparent 31%), radial-gradient(circle at 84% 76%, rgba(117, 91, 255, 0.22), transparent 36%), linear-gradient(145deg, rgba(244, 251, 255, 0.98) 0%, rgba(225, 242, 255, 0.97) 48%, rgba(240, 235, 255, 0.94) 100%), url("../img/compare-search-era-bg.png") right bottom / 62% no-repeat;
   box-shadow: rgba(63, 104, 190, 0.15) 0px 22px 54px, rgba(255, 255, 255, 0.6) 0px 0px 0px 1px inset, rgba(191, 222, 255, 0.22) 0px -42px 70px inset;
}
.shift-card.search::before {
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.08) 46%, rgba(108, 149, 255, 0.08) 100%), radial-gradient(circle at 70% 44%, rgba(255, 255, 255, 0.42), transparent 28%);
}
.shift-card.search::after {
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(86, 172, 255, 0.22)) 0% 0% / auto, linear-gradient(90deg, rgba(70, 122, 255, 0.18) 1px, transparent 1px) 0% 0% / 22px 22px, linear-gradient(rgba(70, 122, 255, 0.14) 1px, transparent 1px) 0% 0% / 22px 22px;
   border: 1px solid rgba(130, 183, 255, 0.3);
   box-shadow: rgba(88, 145, 225, 0.12) 0px 18px 42px;
}
.shift-card.ai {
   color: rgb(255, 255, 255);
   border-color: rgba(148, 183, 255, 0.58);
   background: radial-gradient(circle at 84% 20%, rgba(43, 220, 255, 0.36), transparent 31%), radial-gradient(circle at 42% 108%, rgba(132, 75, 255, 0.46), transparent 42%), linear-gradient(135deg, rgba(9, 28, 91, 0.98) 0%, rgba(31, 83, 218, 0.96) 48%, rgba(104, 67, 229, 0.94) 100%), url("../img/compare-ai-era-bg.png") right bottom / 64% no-repeat;
   box-shadow: rgba(44, 76, 213, 0.3) 0px 30px 72px, rgba(101, 76, 255, 0.14) 0px 0px 46px, rgba(255, 255, 255, 0.26) 0px 1px 0px inset;
}
.shift-card.ai::before {
   background: linear-gradient(145deg, rgba(8, 19, 66, 0.76), rgba(24, 68, 175, 0.26) 58%, rgba(255, 255, 255, 0)), linear-gradient(90deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0) 30%);
}
.shift-card.ai::after {
   width: 210px;
   height: 150px;
   background: radial-gradient(circle at 30% 22%, rgba(126, 236, 255, 0.28), transparent 32%), radial-gradient(circle at 74% 70%, rgba(169, 119, 255, 0.26), transparent 40%), linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0));
   border: 1px solid rgba(179, 219, 255, 0.16);
   box-shadow: rgba(123, 87, 255, 0.2) 0px 0px 48px;
}
.shift-card-content {
   position: relative;
   z-index: 2;
   max-width: 290px;
}
.shift-label {
   display: inline-flex;
   align-items: center;
   position: relative;
   gap: 8px;
   isolation: isolate;
   overflow: hidden;
   padding: 8px 13px;
   border-radius: 999px;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(231, 242, 255, 0.72)), radial-gradient(circle at 12% 12%, rgba(87, 174, 255, 0.24), transparent 36%);
   color: rgb(49, 82, 118);
   border: 1px solid rgba(125, 178, 255, 0.84);
   box-shadow: rgba(65, 120, 205, 0.14) 0px 10px 24px, rgba(255, 255, 255, 0.72) 0px 0px 0px 1px inset, rgba(124, 187, 255, 0.13) 0px -10px 18px inset;
   font-size: 12px;
   font-weight: 900;
   letter-spacing: 0.02em;
   transition: transform 0.34s, border-color 0.34s, box-shadow 0.34s, background 0.34s;
}
.shift-label::before {
   content: "";
   width: 8px;
   height: 8px;
   border-radius: 999px;
   background: rgb(109, 168, 255);
   box-shadow: rgba(109, 168, 255, 0.16) 0px 0px 0px 4px, rgba(109, 168, 255, 0.42) 0px 0px 16px;
   flex: 0 0 auto;
}
.shift-label::after {
   content: "";
   width: 26px;
   height: 1px;
   border-radius: 999px;
   background: linear-gradient(90deg, rgba(75, 132, 229, 0.42), rgba(75, 132, 229, 0));
   flex: 0 0 auto;
}
.shift-card.ai .shift-label {
   color: rgb(245, 251, 255);
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(128, 93, 255, 0.18)), radial-gradient(circle at 15% 18%, rgba(67, 220, 255, 0.32), transparent 38%);
   border: 1px solid rgba(153, 226, 255, 0.46);
   box-shadow: rgba(30, 210, 255, 0.18) 0px 12px 28px, rgba(255, 255, 255, 0.16) 0px 0px 0px 1px inset, rgba(107, 74, 255, 0.2) 0px -12px 20px inset;
}
.shift-card.ai .shift-label::before {
   background: rgb(55, 228, 255);
   box-shadow: rgba(55, 228, 255, 0.18) 0px 0px 0px 4px, rgba(55, 228, 255, 0.64) 0px 0px 18px;
}
.shift-card.ai .shift-label::after {
   background: linear-gradient(90deg, rgba(115, 232, 255, 0.62), rgba(170, 128, 255, 0));
}
.shift-card h3 {
   margin: 17px 0px 9px;
   font-size: 26px;
   line-height: 1.22;
   font-weight: 900;
   letter-spacing: 0px;
}
.shift-card p {
   margin: 0px;
   color: rgb(96, 112, 140);
   font-size: 14px;
   line-height: 1.7;
   font-weight: 650;
}
.shift-card.ai p {
   color: rgba(235, 245, 255, 0.82);
}
.shift-tags {
   display: flex;
   flex-wrap: wrap;
   gap: 8px;
   margin-top: 18px;
}
.shift-tags span {
   padding: 6px 9px;
   border-radius: 999px;
   color: rgb(83, 103, 132);
   background: rgba(255, 255, 255, 0.66);
   border: 1px solid rgba(180, 203, 244, 0.8);
   box-shadow: rgba(80, 126, 214, 0.07) 0px 8px 18px;
   font-size: 11px;
   font-weight: 850;
   transition: transform 0.28s, border-color 0.28s, box-shadow 0.28s, background 0.28s;
}
.shift-card.ai .shift-tags span {
   color: rgb(234, 247, 255);
   background: rgba(255, 255, 255, 0.12);
   border-color: rgba(138, 214, 255, 0.28);
}
@media (hover: hover) and (pointer: fine) {
  .shift-card:hover, .shift-card:focus-visible {
     transform: translateY(-8px);
  }
  .shift-card.search:hover, .shift-card.search:focus-visible {
     border-color: rgba(75, 146, 255, 0.92);
     box-shadow: rgba(63, 104, 190, 0.2) 0px 32px 70px, rgba(255, 255, 255, 0.78) 0px 0px 0px 1px inset, rgba(191, 222, 255, 0.3) 0px -42px 70px inset;
  }
  .shift-card.ai:hover, .shift-card.ai:focus-visible {
     border-color: rgba(153, 226, 255, 0.72);
     box-shadow: rgba(44, 76, 213, 0.36) 0px 38px 86px, rgba(101, 76, 255, 0.2) 0px 0px 58px, rgba(255, 255, 255, 0.34) 0px 1px 0px inset;
  }
  .shift-card:hover::before, .shift-card:focus-visible::before {
     opacity: 0.82;
  }
  .shift-card:hover::after, .shift-card:focus-visible::after {
     opacity: 0.92;
     filter: blur(0px);
     transform: translate3d(-8px, -6px, 0px) scale(1.04);
  }
  .option-a-hero .shift-card:hover .shift-card-shot, .option-a-hero .shift-card:focus-visible .shift-card-shot {
     filter: drop-shadow(0 18px 28px rgba(38, 77, 159, 0.16));
     transform: translateY(-50%) translateX(-10px) scale(1.035);
  }
  .option-a-hero .shift-card.ai:hover .shift-card-shot, .option-a-hero .shift-card.ai:focus-visible .shift-card-shot {
     filter: drop-shadow(0 18px 28px rgba(38, 77, 159, 0.16));
  }
  .shift-card:hover .shift-label, .shift-card:focus-visible .shift-label {
     transform: translateY(-2px);
  }
  .shift-card:hover .shift-tags span, .shift-card:focus-visible .shift-tags span {
     transform: translateY(-2px);
     border-color: rgba(125, 178, 255, 0.92);
     box-shadow: rgba(80, 126, 214, 0.12) 0px 10px 22px;
  }
  .shift-card.ai:hover .shift-tags span, .shift-card.ai:focus-visible .shift-tags span {
     border-color: rgba(153, 226, 255, 0.46);
     box-shadow: rgba(30, 210, 255, 0.12) 0px 10px 22px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .shift-card, .shift-card::before, .shift-card::after, .option-a-hero .shift-card-shot, .shift-label, .shift-tags span {
     transition: none;
  }
}
.shift-bridge {
   display: grid;
   place-items: center;
   align-self: center;
   width: 72px;
   height: 72px;
   border-radius: 50%;
   color: rgb(255, 255, 255);
   background: linear-gradient(135deg, var(--blue), var(--purple));
   box-shadow: rgba(23, 105, 255, 0.08) 0px 0px 0px 12px, rgba(39, 91, 228, 0.24) 0px 18px 34px;
   font-size: 24px;
   font-weight: 900;
}
.shift-caption {
   margin: 18px auto 0px;
   max-width: 760px;
   color: rgb(88, 103, 129);
   text-align: center;
   font-size: 14px;
   line-height: 1.7;
   font-weight: 700;
}
@media (max-width: 900px) {
  .option-a-hero {
     grid-template-columns: 1fr;
  }
  .shift-bridge {
     margin: -2px auto;
     transform: rotate(90deg);
  }
}
@media (max-width: 620px) {
  .option-a-hero {
     padding: 0px;
  }
  .shift-card {
     min-height: 250px;
     padding: 20px;
  }
  .shift-card-content {
     max-width: 100%;
  }
  .option-a-hero .shift-card-shot {
     position: relative;
     right: auto;
     bottom: auto;
     width: 100%;
     height: auto;
     margin-top: 16px;
     transform: none;
  }
  .shift-card h3 {
     font-size: 22px;
  }
}
.cta {
   margin: 72px auto 68px;
}
footer {
   padding-top: 48px;
}
.footer-grid {
   gap: 34px;
   padding-bottom: 42px;
}
.contact-card {
   border-color: rgba(185, 211, 255, 0.78);
   background: linear-gradient(145deg, rgb(255, 255, 255), rgb(243, 248, 255));
   box-shadow: rgba(46, 91, 174, 0.1) 0px 18px 42px;
}
.full-link-solution-redesign {
   --blue: #1769ff;
   --cyan: #20c6ff;
   --purple: #6d56ff;
   --ink: #101a45;
   --muted: #62718b;
   --line: #c8dcff;
   --card: rgba(255,255,255,.88);
}
.full-link-solution-redesign, .full-link-solution-redesign * {
   box-sizing: border-box;
}
.full-link-solution-redesign {
   margin: 0px;
   min-height: 100vh;
   background: linear-gradient(rgba(248, 251, 255, 0) 0%, rgb(246, 250, 255) 9%, rgb(238, 246, 255) 48%, rgb(247, 251, 255) 91%, rgba(255, 255, 255, 0) 100%), radial-gradient(circle at 14% 14%, rgba(23, 105, 255, 0.16), transparent 32%), radial-gradient(circle at 88% 10%, rgba(109, 86, 255, 0.13), transparent 34%), radial-gradient(circle at 72% 86%, rgba(32, 198, 255, 0.12), transparent 30%), linear-gradient(rgb(248, 251, 255) 0%, rgb(238, 246, 255) 54%, rgb(255, 255, 255) 100%);
   font-family: MiSans, -apple-system, BlinkMacSystemFont, "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
   color: var(--ink);
}
#solutions.full-link-solution-redesign {
   background: linear-gradient(rgba(248, 251, 255, 0) 0%, rgb(246, 250, 255) 9%, rgb(238, 246, 255) 48%, rgb(247, 251, 255) 91%, rgba(255, 255, 255, 0) 100%), radial-gradient(circle at 14% 14%, rgba(23, 105, 255, 0.16), transparent 32%), radial-gradient(circle at 88% 10%, rgba(109, 86, 255, 0.13), transparent 34%), radial-gradient(circle at 72% 86%, rgba(32, 198, 255, 0.12), transparent 30%), linear-gradient(rgb(248, 251, 255) 0%, rgb(238, 246, 255) 54%, rgb(255, 255, 255) 100%);
   overflow: hidden;
}
.fls-section {
   width: 100%;
   max-width: none;
   margin: 0px;
   padding: 76px 0px 72px;
}
.fls-head, .fls-board {
   width: 1200px;
   max-width: calc(-64px + 100vw);
   margin-left: auto;
   margin-right: auto;
   position: relative;
   z-index: 1;
}
.solution-visual-accent {
   position: absolute;
   top: 34px;
   right: max(22px, calc((100vw - 1200px) / 2 - 42px));
   z-index: 0;
   width: min(560px, 46vw);
   opacity: 0.32;
   pointer-events: none;
   filter: drop-shadow(0 24px 42px rgba(51, 104, 210, 0.16));
   transform: translate3d(0, 0, 0);
}
@media (max-width: 900px) {
  .solution-visual-accent {
     top: 24px;
     right: -150px;
     width: 430px;
     opacity: 0.16;
  }
}
.fls-head {
   text-align: center;
   margin-bottom: 38px;
}
.fls-head h1 {
   margin: 0px;
   font-size: 34px;
   line-height: 1.22;
   font-weight: 950;
   letter-spacing: 0px;
}
.fls-accent {
   width: 50px;
   height: 3px;
   margin: 16px auto 14px;
   border-radius: 999px;
   background: linear-gradient(90deg, var(--blue), var(--purple));
   box-shadow: rgba(23, 105, 255, 0.22) 0px 0px 18px;
}
.fls-head p {
   margin: 0px;
   color: rgb(104, 117, 141);
   font-size: 15px;
   line-height: 1.7;
   font-weight: 650;
}
.fls-board {
   display: grid;
   grid-template-columns: repeat(2, minmax(0px, 1fr));
   gap: 20px;
}
.fls-card {
   min-height: 286px;
   display: grid;
   grid-template-columns: 184px minmax(0px, 1fr);
   gap: 22px;
   position: relative;
   overflow: hidden;
   padding: 24px;
   border: 1px solid rgba(173, 204, 255, 0.86);
   border-radius: 24px;
   background: radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--accent-a) 13%, transparent), transparent 34%),
              linear-gradient(145deg, rgba(255,255,255,.97), rgba(246,250,255,.92) 58%, rgba(233,242,255,.9));
   box-shadow: rgba(255, 255, 255, 0.96) 0px 1px 0px inset, rgba(44, 91, 178, 0.12) 0px 24px 56px;
   isolation: isolate;
   transform: translateY(0px);
   transition: transform 0.32s, border-color 0.32s, box-shadow 0.32s, background 0.32s;
}
.fls-card::before {
   content: "";
   position: absolute;
   inset: 0px;
   z-index: 0;
   opacity: 0;
   background: radial-gradient(circle at 18% 12%, color-mix(in srgb, var(--accent-b) 14%, transparent), transparent 36%),
              linear-gradient(135deg, color-mix(in srgb, var(--accent-a) 8%, #ffffff), color-mix(in srgb, var(--accent-b) 10%, #f6fbff));
   transition: opacity 0.32s;
}
.fls-card::after {
   content: attr(data-index);
   position: absolute;
   right: 24px;
   top: 18px;
   color: rgba(23, 105, 255, 0.11);
   font-size: 40px;
   font-weight: 950;
   z-index: 0;
   transition: color 0.32s, transform 0.32s;
}
.fls-card:hover {
   transform: translateY(-10px);
   border-color: color-mix(in srgb, var(--accent-b) 30%, #d9e8ff);
   box-shadow: inset 0 1px 0 rgba(255,255,255,.82),
              0 26px 58px color-mix(in srgb, var(--accent-a) 14%, transparent);
}
.fls-card:hover::before {
   opacity: 1;
}
.fls-card:hover::after {
   color: color-mix(in srgb, var(--accent-a) 16%, rgba(23, 105, 255, 0.08));
   transform: translate(-4px, 4px) scale(1.08);
}
.fls-card:hover .fls-card-main h2, .fls-card:hover .fls-step-copy b, .fls-card:hover .fls-partner-copy b {
   color: rgb(16, 26, 69);
   text-shadow: none;
}
.fls-card:hover .fls-card-main p, .fls-card:hover .fls-metric em, .fls-card:hover .fls-caption, .fls-card:hover .fls-caption span, .fls-card:hover .fls-resource-panel span, .fls-card:hover .fls-step-copy em, .fls-card:hover .fls-partner-copy em {
   color: rgb(82, 98, 126);
   text-shadow: none;
}
.fls-card:hover .fls-metric b {
   color: var(--accent-a);
   text-shadow: 0 10px 20px color-mix(in srgb, var(--accent-a) 12%, transparent);
}
.fls-card:hover .fls-card-main button {
   color: rgb(255, 255, 255);
   border: 1px solid color-mix(in srgb, var(--accent-a) 18%, #ffffff);
   background: linear-gradient(100deg, color-mix(in srgb, var(--accent-a) 86%, #ffffff), color-mix(in srgb, var(--accent-b) 82%, #ffffff));
   box-shadow: rgba(255, 255, 255, 0.38) 0px 1px 0px inset, color-mix(in srgb, var(--accent-a) 16%, transparent) 0px 14px 28px;
   backdrop-filter: blur(8px);
}
.fls-card:hover .fls-resource-row, .fls-card:hover .fls-partner-item {
   border-bottom-color: color-mix(in srgb, var(--accent-a) 14%, rgba(80, 130, 220, 0.14));
}
.fls-card:hover .fls-brand-more {
   color: var(--accent-a);
   border-color: color-mix(in srgb, var(--accent-a) 20%, #dbe7ff);
   background: color-mix(in srgb, var(--accent-a) 8%, #ffffff);
}
.fls-card:hover .fls-icon-box {
   border-color: color-mix(in srgb, var(--accent-a) 22%, #d9e8ff);
   background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0) 42%), color-mix(in srgb, var(--accent-a) 8%, #ffffff);
   box-shadow: rgba(255, 255, 255, 0.78) 0px 1px 0px inset, color-mix(in srgb, var(--accent-a) 12%, transparent) 0px 18px 34px;
   transform: translateY(-3px) scale(1.04);
}
.fls-card.fls-article {
   --accent-a: #1769ff;
   --accent-b: #3f74ff;
}
.fls-card.fls-geo {
   --accent-a: #6748ff;
   --accent-b: #405cff;
}
.fls-card.fls-video {
   --accent-a: #1b7cff;
   --accent-b: #4c64ff;
}
.fls-card.fls-partner {
   --accent-a: #6d56ff;
   --accent-b: #2f6fff;
}
.fls-card-main, .fls-card-detail {
   position: relative;
   z-index: 1;
}
.fls-card-main {
   display: flex;
   flex-direction: column;
   align-items: flex-start;
   gap: 14px;
}
.fls-title-row {
   display: flex;
   align-items: center;
   gap: 12px;
   min-width: 0px;
}
.fls-icon-box {
   width: 52px;
   height: 52px;
   flex: 0 0 52px;
   display: grid;
   place-items: center;
   border-radius: 17px;
   position: relative;
   border: 1px solid color-mix(in srgb, var(--accent-a) 18%, #d9e8ff);
   background: radial-gradient(circle at 32% 24%, rgba(255,255,255,.96), rgba(255,255,255,0) 35%),
              linear-gradient(145deg, color-mix(in srgb, var(--accent-a) 12%, #fff), color-mix(in srgb, var(--accent-b) 16%, #eef7ff));
   box-shadow: inset 0 1px 0 rgba(255,255,255,.92), 0 16px 32px color-mix(in srgb, var(--accent-a) 16%, transparent);
   transition: transform 0.32s, border-color 0.32s, background 0.32s, box-shadow 0.32s;
}
.fls-icon-box::before, .fls-icon-box::after {
   content: "";
   position: absolute;
   box-sizing: border-box;
}
.fls-icon-box.has-png::before, .fls-icon-box.has-png::after {
   display: none;
}
.fls-icon-img {
   width: 36px;
   height: 36px;
   display: block;
   object-fit: contain;
   filter: drop-shadow(0 8px 14px color-mix(in srgb, var(--accent-a) 18%, transparent));
   transition: transform 0.32s, filter 0.32s;
}
.fls-card:hover .fls-icon-img {
   transform: scale(1.07);
   filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.16));
}
.fls-article .fls-icon-box::before {
   inset: 13px 15px 10px;
   border: 3px solid var(--accent-a);
   border-radius: 7px 7px 10px 10px;
   background: linear-gradient(135deg, transparent 0 72%, color-mix(in srgb, var(--accent-b) 44%, transparent) 73%),
              linear-gradient(180deg, transparent 0 34%, var(--accent-b) 35% 41%, transparent 42% 57%, var(--accent-a) 58% 64%, transparent 65%);
}
.fls-article .fls-icon-box::after {
   right: 12px;
   bottom: 14px;
   width: 18px;
   height: 5px;
   border-radius: 999px;
   background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
}
.fls-geo .fls-icon-box::before {
   inset: 13px;
   border: 3px solid var(--accent-a);
   border-radius: 999px;
   box-shadow: inset 0 0 0 7px color-mix(in srgb, var(--accent-b) 16%, transparent),
              0 0 0 5px color-mix(in srgb, var(--accent-a) 8%, transparent);
}
.fls-geo .fls-icon-box::after {
   inset: 22px;
   border-radius: 999px;
   background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
   box-shadow: rgba(255, 255, 255, 0.72) 0px 0px 0px 5px;
}
.fls-video .fls-icon-box::before {
   inset: 14px 12px;
   border: 3px solid var(--accent-a);
   border-radius: 12px;
   background: linear-gradient(180deg, color-mix(in srgb, var(--accent-b) 22%, transparent), transparent 58%),
              linear-gradient(90deg, var(--accent-a) 0 5px, transparent 5px calc(100% - 5px), var(--accent-b) calc(100% - 5px));
}
.fls-video .fls-icon-box::after {
   inset: 22px 20px 18px 24px;
   clip-path: polygon(0px 0px, 100% 50%, 0px 100%);
   border-radius: 4px;
   background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
}
.fls-partner .fls-icon-box::before {
   inset: 15px 10px;
   border: 0px;
   border-radius: 999px;
   background: radial-gradient(circle at 16% 50%, var(--accent-a) 0 5px, transparent 6px),
              radial-gradient(circle at 84% 50%, var(--accent-b) 0 5px, transparent 6px),
              linear-gradient(90deg, var(--accent-a), var(--accent-b)) center/72% 4px no-repeat;
}
.fls-partner .fls-icon-box::after {
   inset: 15px 20px;
   border: 3px solid var(--accent-a);
   border-radius: 10px;
   background: linear-gradient(90deg, transparent 0 40%, var(--accent-b) 41% 59%, transparent 60%),
              linear-gradient(180deg, transparent 0 44%, var(--accent-b) 45% 55%, transparent 56%);
}
.fls-card-main h2 {
   margin: 0px;
   font-size: 22px;
   line-height: 1.25;
   font-weight: 950;
   letter-spacing: 0px;
}
.fls-card-main p {
   margin: 0px;
   color: rgb(94, 107, 132);
   font-size: 13px;
   line-height: 1.72;
   font-weight: 650;
}
.fls-card-main button {
   width: 138px;
   height: 38px;
   margin-top: auto;
   border: 1px solid transparent;
   border-radius: 13px;
   color: rgb(255, 255, 255);
   background: linear-gradient(100deg, var(--accent-a), var(--accent-b));
   box-shadow: 0 14px 28px color-mix(in srgb, var(--accent-a) 22%, transparent);
   font-size: 13px;
   font-weight: 900;
   cursor: pointer;
   overflow: hidden;
   position: relative;
   transition: transform 0.24s, color 0.24s, border-color 0.24s, background 0.24s, box-shadow 0.24s, filter 0.24s;
}
.fls-card-main button::before {
   content: "";
   position: absolute;
   inset: -2px;
   background: linear-gradient(110deg, transparent 0px, transparent 30%, rgba(255, 255, 255, 0.46) 46%, transparent 62%, transparent 100%);
   transform: translateX(-120%);
   transition: transform 0.58s;
}
.fls-card-main button:hover {
   transform: translateY(-3px);
   filter: saturate(1.1);
   box-shadow: 0 18px 34px color-mix(in srgb, var(--accent-a) 32%, transparent);
}
.fls-card-main button:hover::before {
   transform: translateX(120%);
}
.fls-card-main button:active {
   transform: translateY(-1px) scale(0.98);
}
.fls-card-main button.is-clicked {
   animation: 0.42s ease 0s 1 normal none running fls-button-pop;
}
@keyframes fls-button-pop {
    0% {
     transform: translateY(-3px) scale(1);
  }
    45% {
     transform: translateY(-3px) scale(1.05);
  }
    100% {
     transform: translateY(-3px) scale(1);
  }
}
.fls-resource-panel {
   display: grid;
   gap: 13px;
   padding-top: 3px;
}
.fls-resource-row {
   display: grid;
   grid-template-columns: 92px minmax(0px, 1fr);
   gap: 12px;
   align-items: center;
   padding-bottom: 12px;
   border-bottom: 1px dashed rgba(80, 130, 220, 0.18);
}
.fls-resource-row:last-child {
   padding-bottom: 0px;
   border-bottom: 0px;
}
.fls-metric {
   display: grid;
   gap: 4px;
}
.fls-metric em {
   color: rgb(83, 99, 128);
   font-size: 14px;
   line-height: 1;
   font-style: normal;
   font-weight: 850;
}
.fls-metric b {
   color: var(--accent-a);
   font-size: 24px;
   line-height: 1;
   font-weight: 950;
   font-variant-numeric: tabular-nums;
   text-shadow: 0 10px 20px color-mix(in srgb, var(--accent-a) 16%, transparent);
   transition: color 0.32s, text-shadow 0.32s;
}
.fls-platform-strip {
   display: grid;
   gap: 7px;
}
.fls-article .fls-platform-strip, .fls-video .fls-platform-strip {
   transform: translateX(20px);
}
.fls-logo-cluster {
   display: flex;
   align-items: center;
}
.fls-platform-icon {
   width: 32px;
   height: 32px;
   display: block;
   object-fit: contain;
   filter: drop-shadow(0 9px 16px color-mix(in srgb, var(--accent-a) 18%, transparent));
}
.fls-platform-icon + .fls-platform-icon {
   margin-left: -6px;
}
.fls-card:hover .fls-platform-icon {
   filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.18));
}
.fls-caption {
   display: flex;
   align-items: center;
   gap: 6px;
   color: rgb(123, 136, 158);
   font-size: 12px;
   line-height: 1;
   font-weight: 800;
   white-space: nowrap;
}
.fls-caption i {
   width: 22px;
   height: 2px;
   border-radius: 999px;
   background: linear-gradient(90deg, var(--accent-a), var(--accent-b));
   opacity: 0.42;
}
.fls-geo-steps {
   position: relative;
   display: grid;
   grid-template-columns: repeat(2, minmax(0px, 1fr));
   gap: 22px 18px;
   padding-top: 4px;
}
.fls-geo-step {
   display: grid;
   grid-template-columns: 32px minmax(0px, 1fr);
   gap: 10px;
   align-items: center;
   min-height: 58px;
}
.fls-step-num {
   width: 32px;
   height: 32px;
   display: grid;
   place-items: center;
   border-radius: 999px;
   color: rgb(255, 255, 255);
   background: radial-gradient(circle at 32% 24%, rgba(255,255,255,.46), transparent 34%),
              linear-gradient(135deg, var(--accent-a), var(--accent-b));
   box-shadow: inset 0 1px 0 rgba(255,255,255,.36), 0 9px 18px color-mix(in srgb, var(--accent-a) 20%, transparent);
   font-size: 12px;
   font-weight: 950;
}
.fls-step-copy {
   display: grid;
   gap: 4px;
   min-width: 0px;
}
.fls-step-copy b {
   color: color-mix(in srgb, var(--accent-a) 82%, #112456);
   font-size: 15px;
   line-height: 1.15;
   font-weight: 950;
}
.fls-step-copy em {
   color: rgb(116, 129, 152);
   font-size: 11px;
   line-height: 1.3;
   font-style: normal;
   font-weight: 750;
}
.fls-partner-options {
   display: grid;
   gap: 14px;
   padding-top: 4px;
}
.fls-partner-item {
   display: grid;
   grid-template-columns: 42px minmax(0px, 1fr);
   gap: 12px;
   align-items: center;
   padding: 13px 0px;
   border-bottom: 1px dashed rgba(80, 130, 220, 0.18);
}
.fls-partner-item:last-child {
   border-bottom: 0px;
}
.fls-partner-mark {
   width: 42px;
   height: 42px;
   display: grid;
   place-items: center;
   border-radius: 14px;
   color: rgb(255, 255, 255);
   background: linear-gradient(135deg, var(--accent-a), var(--accent-b));
   box-shadow: 0 12px 22px color-mix(in srgb, var(--accent-a) 20%, transparent);
   font-size: 13px;
   font-weight: 950;
}
.fls-partner-copy {
   display: grid;
   gap: 5px;
}
.fls-partner-copy b {
   color: color-mix(in srgb, var(--accent-a) 82%, #112456);
   font-size: 16px;
   line-height: 1.1;
   font-weight: 950;
}
.fls-partner-copy em {
   color: rgb(116, 129, 152);
   font-size: 12px;
   line-height: 1.35;
   font-style: normal;
   font-weight: 750;
}
@media (max-width: 980px) {
  .full-link-solution-redesign.fls-section {
     width: 100%;
     max-width: none;
     padding: 58px 0px 60px;
  }
  .fls-head, .fls-board {
     max-width: calc(-40px + 100vw);
  }
  .fls-board {
     grid-template-columns: 1fr;
  }
  .fls-card {
     min-height: 0px;
     grid-template-columns: minmax(0px, 1fr);
  }
  .fls-card-main {
     min-height: 210px;
  }
  .fls-card-main button {
     margin-top: 10px;
  }
  .fls-card-detail {
     min-width: 0px;
  }
  .fls-article .fls-platform-strip, .fls-video .fls-platform-strip {
     transform: none;
  }
}
@media (max-width: 620px) {
  .full-link-solution-redesign.fls-section {
     width: 100%;
     max-width: none;
  }
  .fls-head, .fls-board {
     max-width: calc(-28px + 100vw);
  }
  .fls-head h1 {
     font-size: 28px;
  }
  .fls-head p {
     font-size: 13px;
  }
  .fls-card {
     padding: 20px;
     border-radius: 20px;
  }
  .fls-resource-row {
     grid-template-columns: minmax(0px, 1fr);
     gap: 9px;
  }
  .fls-caption {
     white-space: normal;
     line-height: 1.35;
  }
  .fls-geo-steps {
     grid-template-columns: 1fr;
     gap: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .fls-card, .fls-card::before, .fls-card::after, .fls-icon-box, .fls-card-main button, .fls-card-main button::before {
     transition: none;
     animation: auto ease 0s 1 normal none running none;
  }
}
@media (max-width: 620px) {
  .container {
     width: min(100% - 32px, 100%);
     max-width: calc(-32px + 100vw);
  }
  .nav {
     height: auto;
     padding: 12px 0px;
  }
  .nav-inner {
     gap: 12px;
     flex-wrap: wrap;
  }
  .nav-links {
     order: 3;
     width: 100%;
     gap: 8px;
     overflow-x: auto;
     padding: 4px 0px 2px;
     font-size: 13px;
     scrollbar-width: none;
  }
  .nav-links a {
     flex: 0 0 auto;
     padding: 7px 10px;
     border-radius: 999px;
     background: rgba(244, 248, 255, 0.82);
  }
  .nav-links a.active::after {
     display: none;
  }
  .nav-actions {
     margin-left: auto;
     gap: 8px;
  }
  .nav-actions .btn {
     min-width: 68px;
     height: 34px;
     padding: 0px 12px;
     border-radius: 8px;
     font-size: 12px;
  }
  .hero-stats, .footer-grid, .copyright, .copyright-left {
     width: 100%;
     max-width: 100%;
  }
  .hero-inner, .hero-copy-column, .hero-copy, .hero-buttons, .hero-stats {
     width: 100%;
     max-width: 100%;
     min-width: 0px;
  }
  .hero-inner {
     grid-template-columns: minmax(0px, 1fr);
  }
  .hero-copy-column {
     grid-column: 1;
  }
  .hero h1 {
     max-width: 100%;
  }
  .hero-buttons {
     flex-wrap: wrap;
  }
  .hero-buttons .btn {
     flex: 1 1 132px;
     min-width: 0px;
  }
  .hero-stats {
     left: 0px;
     transform: none;
     grid-template-columns: repeat(2, minmax(0px, 1fr));
  }
  .hero-stat {
     min-width: 0px;
  }
  .footer-grid {
     grid-template-columns: 1fr;
  }
  .contact-card {
     width: 100%;
     min-width: 0px;
  }
  .footer-col, .contact-line, .contact-line > div {
     min-width: 0px;
  }
  .contact-line strong, .contact-line span {
     overflow-wrap: anywhere;
  }
  .cta-content, .cta-actions, .cta-points {
     flex-direction: column;
     align-items: stretch;
  }
  .cta-actions .btn {
     width: 100%;
  }
}
.diagnosis-redesign {
   padding: 56px 0px 54px;
   background: radial-gradient(circle at 18% 16%, rgba(23, 105, 255, 0.1), transparent 30%), radial-gradient(circle at 86% 34%, rgba(32, 198, 255, 0.12), transparent 32%), linear-gradient(rgb(248, 251, 255) 0%, rgb(238, 246, 255) 58%, rgb(255, 255, 255) 100%);
}
.diagnosis-redesign .section-title {
   font-size: 40px;
   line-height: 1.18;
   letter-spacing: 0px;
   font-weight: 900;
}
.diagnosis-redesign .section-title .accent {
   color: rgb(23, 105, 255);
   background: linear-gradient(90deg, rgb(23, 105, 255), rgb(109, 86, 255));
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}
.diagnosis-redesign .section-subtitle {
   max-width: 760px;
   margin-bottom: 26px;
   color: rgb(84, 99, 125);
   font-size: 16px;
   font-weight: 650;
}
.diagnosis-visual-accent {
   position: absolute;
   top: 32px;
   left: max(18px, calc((100vw - 1200px) / 2 - 54px));
   z-index: 0;
   width: min(540px, 44vw);
   opacity: 0.3;
   pointer-events: none;
   filter: drop-shadow(0 24px 42px rgba(51, 104, 210, 0.14));
   transform: translate3d(0, 0, 0);
}
.diagnosis-shell {
   position: relative;
   z-index: 1;
   display: grid;
   grid-template-columns: minmax(0px, 1.18fr) minmax(420px, 0.82fr);
   gap: 34px;
   align-items: stretch;
}
@media (max-width: 900px) {
  .diagnosis-visual-accent {
     top: 22px;
     left: -156px;
     width: 420px;
     opacity: 0.16;
  }
}
.diagnosis-shell::before {
   content: "";
   position: absolute;
   inset: 22px -18px 62px;
   border-radius: 30px;
   background: linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(240, 247, 255, 0.92)), radial-gradient(circle at 7% 24%, rgba(23, 105, 255, 0.1), transparent 28%);
   border: 1px solid rgba(165, 203, 255, 0.56);
   box-shadow: rgba(48, 94, 183, 0.13) 0px 34px 80px;
}
.diagnosis-report, .diagnosis-form-card, .diagnosis-flow {
   position: relative;
   z-index: 1;
}
.diagnosis-report {
   position: relative;
   min-height: 0px;
   display: flex;
   align-items: center;
   justify-content: center;
   overflow: hidden;
   border: 0px;
   border-radius: 0px;
   background: transparent;
   box-shadow: none;
   transform: none;
   transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s;
   will-change: transform, filter;
}
.diagnosis-report::after {
   content: "";
   position: absolute;
   inset: 7% 3% 3% 4%;
   pointer-events: none;
   background: linear-gradient(110deg, transparent 18%, rgba(255, 255, 255, 0.45) 42%, transparent 62%);
   opacity: 0;
   transform: translateX(-36%) skewX(-12deg);
   transition: opacity 0.32s, transform 0.72s cubic-bezier(0.22, 1, 0.36, 1);
}
.diagnosis-report-image {
   width: 100%;
   height: auto;
   display: block;
   object-fit: contain;
   transform: translateZ(0px);
   transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), filter 0.45s;
   will-change: transform, filter;
}
.diagnosis-form-card {
   align-self: center;
   min-height: 0px;
   padding: 24px 30px;
   gap: 6px;
   border: 1px solid rgba(189, 211, 242, 0.88);
   border-radius: 24px;
   background: rgba(255, 255, 255, 0.92);
   box-shadow: rgba(46, 91, 174, 0.14) 0px 30px 72px, rgba(255, 255, 255, 0.92) 0px 1px 0px inset;
   backdrop-filter: blur(14px);
   transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}
.diagnosis-form-head small {
   color: rgb(23, 105, 255);
   font-size: 12px;
   font-weight: 950;
   letter-spacing: 0.08em;
}
.diagnosis-form-head h3 {
   margin: 4px 0px;
   color: rgb(16, 26, 69);
   font-size: 21px;
   line-height: 1.28;
   font-weight: 950;
}
.diagnosis-form-head h3 span {
   color: rgb(23, 105, 255);
}
.diagnosis-form-head p {
   margin: 0px 0px 6px;
   color: rgb(102, 117, 142);
   font-size: 13px;
   line-height: 1.45;
   font-weight: 700;
}
.diagnosis-form-card .option-a-fields {
   grid-template-columns: repeat(2, minmax(0px, 1fr));
   gap: 8px 18px;
}
.diagnosis-form-card .option-a-field label {
   color: rgb(23, 33, 61);
   font-size: 12px;
   font-weight: 950;
}
.diagnosis-form-card .option-a-control {
   height: 38px;
   margin-top: 6px;
   padding: 0px 16px;
   border-radius: 10px;
   border-color: rgb(212, 226, 246);
   background: rgba(255, 255, 255, 0.96);
   box-shadow: rgba(49, 91, 168, 0.04) 0px 8px 20px;
}
.diagnosis-form-card .option-a-field input, .diagnosis-form-card .option-a-field select {
   font-size: 14px;
   font-weight: 750;
}
.diagnosis-form-card .option-a-cta {
   position: relative;
   width: 100%;
   min-height: 50px;
   margin-top: 2px;
   border-radius: 11px;
   font-size: 22px;
   font-weight: 950;
   overflow: hidden;
   box-shadow: rgba(47, 79, 255, 0.25) 0px 18px 38px;
   transform: translateZ(0px);
   transition: transform 0.24s, box-shadow 0.24s, filter 0.24s;
}
.diagnosis-form-card .option-a-cta::before {
   display: none;
}
.diagnosis-form-card .option-a-cta::after {
   content: "";
   position: absolute;
   inset: -45% -28%;
   pointer-events: none;
   background: linear-gradient(110deg, transparent 32%, rgba(255, 255, 255, 0.42) 48%, transparent 64%);
   opacity: 0;
   transform: translateX(-42%) rotate(8deg);
   transition: opacity 0.2s, transform 0.5s;
}
.diagnosis-form-card .option-a-cta span {
   position: relative;
   z-index: 1;
   font-size: 24px;
   transform: translateY(-1px);
   transition: transform 0.24s;
}
.diagnosis-form-card .option-a-message {
   min-height: 18px;
   margin: 4px 0px 0px;
   font-size: 12px;
}
.diagnosis-form-card .option-a-message:empty {
   display: none;
}
.diagnosis-safe-note {
   margin: 0px 0px 6px;
   color: rgb(124, 138, 163);
   text-align: center;
   font-size: 12px;
   font-weight: 850;
}
.diagnosis-safe-note::before {
   content: "✓";
   margin-right: 6px;
   color: rgb(23, 105, 255);
   font-size: 10px;
}
.diagnosis-form-card .option-a-proof {
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 10px;
}
.diagnosis-form-card .option-a-proof span {
   min-height: 46px;
   flex-direction: column;
   justify-content: center;
   gap: 5px;
   padding: 7px 6px;
   border: 1px solid rgb(220, 232, 251);
   border-radius: 13px;
   color: rgb(33, 48, 77);
   background: rgb(248, 251, 255);
   text-align: center;
   white-space: normal;
   font-size: 12px;
   font-weight: 950;
}
.diagnosis-form-card .option-a-proof span::before {
   content: "✓";
   width: 22px;
   height: 22px;
   display: grid;
   place-items: center;
   border: 0px;
   border-radius: 9px;
   color: rgb(255, 255, 255);
   background: linear-gradient(135deg, rgb(23, 105, 255), rgb(32, 198, 255));
   box-shadow: rgba(23, 105, 255, 0.2) 0px 8px 16px;
   font-size: 15px;
   line-height: 1;
}
.diagnosis-flow {
   grid-column: 1 / -1;
   display: grid;
   grid-template-columns: 1fr minmax(90px, 0.55fr) 1fr minmax(90px, 0.55fr) 1fr;
   align-items: center;
   gap: 22px;
   margin: 6px auto 0px;
   width: calc(100% - 88px);
   padding: 15px 26px;
   border: 1px solid rgba(205, 223, 249, 0.92);
   border-radius: 20px;
   background: rgba(255, 255, 255, 0.86);
   box-shadow: rgba(53, 94, 174, 0.1) 0px 18px 44px;
   backdrop-filter: blur(10px);
}
.diagnosis-flow-step {
   display: grid;
   grid-template-columns: 54px minmax(0px, 1fr);
   column-gap: 12px;
   align-items: center;
}
.diagnosis-flow-step b {
   grid-row: span 2;
   width: 54px;
   height: 54px;
   display: grid;
   place-items: center;
   border-radius: 50%;
   color: rgb(255, 255, 255);
   background: linear-gradient(135deg, rgb(23, 105, 255), rgb(109, 86, 255));
   box-shadow: rgba(23, 105, 255, 0.2) 0px 12px 24px;
   font-size: 18px;
}
.diagnosis-flow-step span {
   color: rgb(23, 33, 61);
   font-size: 15px;
   font-weight: 950;
}
.diagnosis-flow-step em {
   color: rgb(123, 137, 160);
   font-size: 12px;
   font-style: normal;
   font-weight: 700;
}
.diagnosis-flow-line {
   height: 2px;
   background: repeating-linear-gradient(90deg, rgba(23, 105, 255, 0.28) 0px, rgba(23, 105, 255, 0.28) 8px, transparent 8px, transparent 16px);
}
@media (hover: hover) and (pointer: fine) {
  .diagnosis-shell:hover .diagnosis-report {
     transform: translateY(-8px);
     filter: drop-shadow(rgba(23, 105, 255, 0.18) 0px 24px 34px);
  }
  .diagnosis-shell:hover .diagnosis-report-image {
     transform: scale(1.018);
     filter: saturate(1.06) contrast(1.02);
  }
  .diagnosis-shell:hover .diagnosis-report::after {
     opacity: 0.9;
     transform: translateX(56%) skewX(-12deg);
  }
  .diagnosis-shell:hover .diagnosis-form-card {
     transform: translateY(-3px);
     border-color: rgba(119, 169, 255, 0.9);
     box-shadow: rgba(46, 91, 174, 0.18) 0px 34px 78px, rgba(255, 255, 255, 0.96) 0px 1px 0px inset;
  }
  .diagnosis-form-card .option-a-cta:hover, .diagnosis-form-card .option-a-cta:focus-visible {
     transform: translateY(-3px);
     filter: saturate(1.08) brightness(1.04);
     box-shadow: rgba(47, 79, 255, 0.34) 0px 24px 46px, rgba(255, 255, 255, 0.24) 0px 0px 0px 1px inset;
  }
  .diagnosis-form-card .option-a-cta:hover::after, .diagnosis-form-card .option-a-cta:focus-visible::after {
     opacity: 1;
     transform: translateX(46%) rotate(8deg);
  }
  .diagnosis-form-card .option-a-cta:hover span, .diagnosis-form-card .option-a-cta:focus-visible span {
     transform: translate(5px, -1px);
  }
}
@media (prefers-reduced-motion: reduce) {
  .diagnosis-report, .diagnosis-report::after, .diagnosis-report-image, .diagnosis-form-card, .diagnosis-form-card .option-a-cta, .diagnosis-form-card .option-a-cta::after, .diagnosis-form-card .option-a-cta span {
     transition: none;
  }
}
.media-resource-redesign {
   position: relative;
   overflow: hidden;
   padding-top: 82px;
   background: radial-gradient(circle at 16% 12%, rgba(23, 105, 255, 0.09), transparent 30%), radial-gradient(circle at 86% 8%, rgba(32, 198, 255, 0.08), transparent 30%), linear-gradient(rgb(248, 251, 255) 0%, rgb(242, 247, 255) 48%, rgb(255, 255, 255) 100%);
}
.media-resource-redesign::before {
   display: none;
}
.media-resource-redesign .container {
   position: relative;
   z-index: 1;
}
.media-visual-accent {
    position: absolute;
    top: 36px;
    right: max(24px, calc((100vw - 1200px) / 2 - 28px));
    z-index: 0;
    width: min(560px, 46vw);
    height: auto;
    opacity: .34;
    pointer-events: none;
    filter: drop-shadow(0 24px 44px rgba(23, 105, 255, .12));
}
@media (max-width: 900px) {
  .media-visual-accent {
        top: 28px;
        right: -150px;
        width: 430px;
        opacity: .18;
  }
}
.media-command {
   margin-top: 34px;
}
.media-metric-grid {
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 16px;
   margin-bottom: 22px;
}
.media-metric-card {
   min-height: 126px;
   display: grid;
   grid-template-columns: 72px minmax(0px, 1fr);
   grid-template-rows: auto auto auto;
   column-gap: 18px;
   align-items: start;
   padding: 20px 22px;
   border: 1px solid rgba(198, 218, 248, 0.92);
   border-radius: 18px;
   background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
   box-shadow: rgba(255, 255, 255, 0.98) 0px 1px 0px inset, rgba(49, 91, 168, 0.08) 0px 18px 42px;
}
.media-metric-icon {
   grid-row: 1 / span 3;
   width: 72px;
   height: 72px;
   display: block;
   object-fit: contain;
   align-self: start;
}
.media-metric-card small {
   display: block;
   color: rgb(104, 117, 141);
   font-size: 13px;
   font-weight: 800;
}
.media-metric-card strong {
   display: block;
   margin-top: 10px;
   color: rgb(23, 105, 255);
   font-size: 34px;
   line-height: 1;
   font-weight: 950;
   letter-spacing: 0px;
}
.media-metric-card span {
   display: block;
   margin-top: 10px;
   color: rgb(138, 150, 170);
   font-size: 12px;
   font-weight: 750;
}
.media-matrix {
   display: grid;
   grid-template-columns: minmax(0px, 1.6fr) minmax(340px, 1fr);
   gap: 8px;
   padding: 20px;
   border: 1px solid rgba(190, 213, 248, 0.88);
   border-radius: 24px;
   background: rgba(255, 255, 255, 0.72);
   box-shadow: rgba(47, 90, 170, 0.1) 0px 24px 58px;
   backdrop-filter: blur(12px);
}
.media-logo-panel {
   min-height: 382px;
   padding: 20px 18px;
   border: 1px solid rgba(213, 226, 248, 0.92);
   border-radius: 18px;
   background: linear-gradient(rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.92));
   box-shadow: rgba(255, 255, 255, 0.96) 0px 1px 0px inset;
}
.media-logo-head {
   display: flex;
   flex-direction: column;
   align-items: center;
   justify-content: center;
   gap: 8px;
   margin-bottom: 22px;
   text-align: center;
}
.media-logo-head h3 {
   margin: 0px;
   color: rgb(6, 20, 59);
   font-size: 20px;
   line-height: 1.2;
   font-weight: 950;
}
.media-logo-head h3::after {
   content: "";
   display: block;
   width: 42px;
   height: 3px;
   margin: 10px auto 0px;
   border-radius: 999px;
   background: linear-gradient(90deg, rgb(23, 105, 255), rgb(109, 86, 255));
   box-shadow: rgba(23, 105, 255, 0.24) 0px 0px 14px;
}
.media-logo-head span {
   display: none;
   color: rgb(122, 136, 160);
   font-size: 12px;
   font-weight: 800;
   white-space: nowrap;
}
.media-logo-wall {
   display: grid;
   grid-template-columns: repeat(5, minmax(0px, 1fr));
   gap: 20px 8px;
}
.media-logo-tile, .client-logo-tile {
   min-width: 0px;
   height: 52px;
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 7px;
   border: 1px solid rgba(218, 229, 248, 0.96);
   border-radius: 12px;
   color: rgb(28, 41, 70);
   background: linear-gradient(rgb(255, 255, 255), rgb(247, 250, 255));
   font-size: 14px;
   font-weight: 900;
   box-shadow: rgba(255, 255, 255, 0.92) 0px 1px 0px inset;
   transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}
.media-logo-tile {
   padding: 0px;
   border: 1px solid rgba(216, 228, 248, 0.96);
   border-radius: 8px;
   background: rgba(255, 255, 255, 0.76);
   box-shadow: rgba(255, 255, 255, 0.92) 0px 1px 0px inset;
}
.media-logo-tile img {
   width: calc(100% - 14px);
   height: calc(100% - 14px);
   display: block;
   object-fit: contain;
}
.media-logo-more {
   appearance: none;
   width: 100%;
   cursor: pointer;
   text-align: center;
   background: linear-gradient(135deg, rgba(245, 250, 255, 0.98), rgb(255, 255, 255));
   color: rgb(23, 105, 255);
   border-style: dashed;
   border-color: rgba(87, 150, 255, 0.62);
}
.media-logo-more span {
   width: 100%;
   margin: 0px;
   color: rgb(23, 105, 255) !important;
   font-weight: 950 !important;
   text-align: center;
}
.media-logo-panel.is-platform-wall .media-logo-wall {
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   gap: 10px;
}
.media-logo-panel.is-platform-wall {
   min-height: 382px;
}
.media-logo-panel.is-platform-wall .media-logo-tile {
   height: 86px;
   flex-direction: column;
   gap: 6px;
   padding: 8px 6px 7px;
   border-radius: 8px;
}
.media-logo-panel.is-platform-wall .media-logo-tile img {
   width: 50px;
   height: 50px;
   flex: 0 0 50px;
   object-fit: contain;
}
.media-logo-panel.is-platform-wall .media-logo-tile span {
   max-width: 100%;
   color: rgb(35, 49, 79);
   font-size: 12px;
   line-height: 1.1;
   font-weight: 800;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.media-logo-panel.is-platform-wall .media-logo-more span {
   margin-left: 0px;
}
.publish-flow {
   display: grid;
   grid-template-columns: repeat(4, minmax(0px, 1fr));
   align-items: center;
   gap: 0px;
   margin: 24px auto 0px;
   padding: 22px 24px;
   border: 1px solid rgba(203, 221, 249, 0.92);
   border-radius: 20px;
   background: radial-gradient(circle at 12% 22%, rgba(23, 105, 255, 0.08), transparent 28%), linear-gradient(rgba(255, 255, 255, 0.92), rgba(247, 250, 255, 0.84));
   box-shadow: rgba(255, 255, 255, 0.96) 0px 1px 0px inset, rgba(48, 91, 172, 0.09) 0px 18px 42px;
   backdrop-filter: blur(10px);
}
.publish-step {
   position: relative;
   display: grid;
   grid-template-columns: 54px minmax(0px, 1fr);
   gap: 14px;
   align-items: center;
}
.publish-step:not(:last-child)::after {
   content: "";
   position: absolute;
   left: calc(100% - 30px);
   right: 14px;
   top: 50%;
   height: 3px;
   transform: translateY(-50%);
   border-radius: 999px;
   background: linear-gradient(90deg, rgba(23, 105, 255, 0.7), rgba(109, 86, 255, 0.54), rgba(32, 198, 255, 0));
   box-shadow: rgba(23, 105, 255, 0.16) 0px 0px 16px;
}
.publish-step b {
   position: relative;
   width: 58px;
   height: 58px;
   display: grid;
   place-items: center;
   border: 0px;
   border-radius: 16px;
   background: transparent;
   box-shadow: none;
}
.publish-step b::after {
   display: none;
}
.publish-step-icon {
   width: 58px;
   height: 58px;
   display: block;
   object-fit: contain;
   filter: drop-shadow(rgba(47, 79, 255, 0.18) 0px 12px 18px);
}
.publish-step span {
   display: inline-block;
   color: rgb(23, 105, 255);
   background: linear-gradient(90deg, rgb(23, 105, 255) 0%, rgb(109, 86, 255) 62%, rgb(32, 169, 255) 100%) text;
   -webkit-text-fill-color: transparent;
   font-size: 16px;
   font-weight: 950;
}
.publish-step small {
   display: block;
   margin-top: 4px;
   color: rgb(125, 138, 160);
   font-size: 12px;
   font-weight: 750;
}
.client-logo-section {
   background: linear-gradient(rgb(255, 255, 255) 0%, rgb(247, 251, 255) 100%);
}
.client-logo-board {
   display: grid;
   grid-template-columns: repeat(5, minmax(0px, 1fr));
   gap: 14px;
   margin-top: 34px;
   padding: 24px;
   border: 1px solid rgba(203, 221, 249, 0.92);
   border-radius: 24px;
   background: radial-gradient(circle at 50% 0%, rgba(23, 105, 255, 0.07), transparent 38%), rgba(255, 255, 255, 0.86);
   box-shadow: rgba(47, 90, 170, 0.08) 0px 20px 52px;
}
.client-logo-tile {
   height: 92px;
   color: rgb(81, 96, 120);
   background: rgba(255, 255, 255, 0.76);
   font-size: 15px;
   letter-spacing: 0px;
   padding: 0px;
   overflow: hidden;
}
.client-logo-tile img {
   width: 100%;
   height: 100%;
   display: block;
   object-fit: contain;
}
@media (hover: hover) and (pointer: fine) {
  .media-logo-tile:hover, .client-logo-tile:hover {
     transform: translateY(-3px);
     border-color: rgba(119, 169, 255, 0.86);
     box-shadow: rgba(47, 90, 170, 0.1) 0px 14px 28px;
  }
}
.insight-news-section {
   position: relative;
   padding-top: 86px;
   padding-bottom: 86px;
   background: radial-gradient(circle at 12% 22%, rgba(47, 158, 255, 0.1), transparent 28%), radial-gradient(circle at 88% 28%, rgba(112, 78, 255, 0.09), transparent 26%), linear-gradient(rgb(251, 253, 255) 0%, rgb(246, 249, 255) 100%);
   overflow: hidden;
}
.insight-news-section::before {
   content: "";
   position: absolute;
   left: 50%;
   top: 166px;
   width: min(1180px, 100% - 64px);
   height: 1px;
   transform: translateX(-50%);
   background: linear-gradient(90deg, transparent, rgba(68, 116, 235, 0.22), transparent);
   pointer-events: none;
}
.insight-news-section .container {
   position: relative;
   z-index: 1;
}
.insight-news-section .section-subtitle {
   margin-bottom: 34px;
}
.insight-board {
   display: grid;
   grid-template-columns: 352px minmax(0px, 1fr);
   gap: 22px;
   align-items: stretch;
}
.platform-news-panel, .knowledge-panel {
   border: 1px solid rgba(182, 211, 255, 0.86);
   border-radius: 18px;
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(247, 250, 255, 0.96)), linear-gradient(135deg, rgba(34, 119, 255, 0.12), rgba(111, 77, 255, 0.08));
   box-shadow: rgba(255, 255, 255, 0.92) 0px 1px 0px inset, rgba(42, 85, 170, 0.1) 0px 22px 56px;
}
.platform-news-panel {
   position: relative;
   min-height: 458px;
   padding: 28px 26px;
   overflow: hidden;
}
.platform-news-panel::before {
   content: "";
   position: absolute;
   inset: 0px;
   background: linear-gradient(rgba(21, 111, 255, 0.1), transparent 38%), radial-gradient(circle at 82% 12%, rgba(83, 73, 255, 0.18), transparent 30%);
   pointer-events: none;
}
.knowledge-panel {
   padding: 28px 30px 30px;
}
.insight-panel-head {
   position: relative;
   z-index: 1;
   display: flex;
   align-items: flex-end;
   justify-content: space-between;
   gap: 16px;
   margin-bottom: 22px;
   padding-bottom: 16px;
   border-bottom: 1px solid rgba(181, 207, 252, 0.72);
}
.insight-panel-head span {
   order: 2;
   display: inline-flex;
   align-items: center;
   height: 28px;
   padding: 0px 12px;
   border: 1px solid rgba(110, 151, 255, 0.38);
   border-radius: 999px;
   background: rgba(241, 246, 255, 0.86);
   color: rgb(49, 104, 216);
   font-size: 12px;
   font-weight: 800;
}
.insight-panel-head h3 {
   margin: 0px;
   color: rgb(16, 26, 67);
   font-size: 22px;
   line-height: 1.2;
   font-weight: 950;
   letter-spacing: 0px;
}
.platform-news-list {
   position: relative;
   z-index: 1;
   display: grid;
   gap: 14px;
}
.platform-news-list::before {
   content: "";
   position: absolute;
   left: 7px;
   top: 17px;
   bottom: 18px;
   width: 1px;
   background: linear-gradient(rgba(41, 123, 255, 0.82), rgba(110, 78, 255, 0.18));
}
.platform-news-item {
   position: relative;
   display: grid;
   gap: 8px;
   min-height: 72px;
   padding: 0px 0px 0px 29px;
   color: inherit;
   text-decoration: none;
}
button.platform-news-item, button.knowledge-item {
   width: 100%;
   font: inherit;
   text-align: left;
   cursor: pointer;
   appearance: none;
}
button.platform-news-item {
   border: 0px;
   background: transparent;
}
.platform-news-item::before {
   content: "";
   position: absolute;
   left: 2px;
   top: 8px;
   width: 11px;
   height: 11px;
   border: 3px solid rgb(255, 255, 255);
   border-radius: 50%;
   background: linear-gradient(135deg, rgb(23, 105, 255), rgb(107, 77, 255));
   box-shadow: rgba(63, 125, 255, 0.34) 0px 0px 0px 1px, rgba(38, 104, 238, 0.18) 0px 8px 16px;
}
.platform-news-item time, .knowledge-item time {
   color: rgb(122, 136, 168);
   font-size: 13px;
   font-weight: 700;
   white-space: nowrap;
}
.platform-news-item strong {
   color: rgb(24, 36, 82);
   font-size: 16px;
   line-height: 1.55;
   font-weight: 900;
   transition: color 0.22s;
}
.platform-news-item:hover strong {
   color: rgb(23, 105, 255);
}
.knowledge-list {
   display: grid;
   grid-template-columns: repeat(2, minmax(0px, 1fr));
   gap: 10px 16px;
}
.knowledge-item {
   display: grid;
   grid-template-columns: 46px minmax(0px, 1fr) 94px;
   align-items: center;
   gap: 14px;
   min-height: 76px;
   padding: 0px 16px 0px 12px;
   border: 1px solid rgba(215, 228, 250, 0.92);
   border-radius: 13px;
   background: rgba(255, 255, 255, 0.78);
   color: inherit;
   text-decoration: none;
   box-shadow: rgba(255, 255, 255, 0.92) 0px 1px 0px inset;
   transition: transform 0.24s, border-color 0.24s, box-shadow 0.24s, background 0.24s;
}
.knowledge-item em {
   display: inline-flex;
   align-items: center;
   justify-content: center;
   width: 42px;
   height: 42px;
   border-radius: 12px;
   background: linear-gradient(135deg, rgba(23, 105, 255, 0.12), rgba(107, 77, 255, 0.12));
   color: rgb(34, 104, 232);
   font-size: 15px;
   font-style: normal;
   font-weight: 950;
}
.knowledge-item strong {
   min-width: 0px;
   color: rgb(23, 34, 78);
   font-size: 15px;
   line-height: 1.5;
   font-weight: 850;
   transition: color 0.22s;
}
.knowledge-item:hover {
   transform: translateY(-3px);
   border-color: rgba(96, 148, 255, 0.72);
   background: rgba(255, 255, 255, 0.96);
   box-shadow: rgba(255, 255, 255, 0.95) 0px 1px 0px inset, rgba(45, 93, 180, 0.12) 0px 18px 34px;
}
.knowledge-item:hover strong {
   color: rgb(23, 105, 255);
}
:root {
   --type-ink: #101a43;
   --type-body: #34425f;
   --type-muted: #5a6780;
   --type-soft: #6f7f98;
   --type-blue: #1769ff;
   --type-section-title: 40px;
   --type-section-subtitle: 17px;
   --type-card-title: 21px;
   --type-panel-title: 22px;
   --type-body-size: 15px;
   --type-small: 13px;
}
body {
   color: var(--type-ink);
   font-size: 16px;
}
.section-title, .exposure-shift .section-title {
   color: var(--type-ink);
   font-size: var(--type-section-title);
   line-height: 1.28;
   font-weight: 950;
   letter-spacing: 0px;
}
.section-subtitle, .exposure-shift .section-subtitle {
   color: var(--type-muted);
   font-size: var(--type-section-subtitle);
   line-height: 1.8;
   font-weight: 500;
}
.hero h1 {
   color: var(--type-ink);
   font-size: 56px;
   line-height: 1.18;
   letter-spacing: 0px;
}
.hero-copy {
   color: var(--type-body);
   font-size: 17px;
   line-height: 1.9;
}
.eyebrow, .shift-label, .report-head, .cta small, .insight-panel-head span {
   font-size: var(--type-small);
   font-weight: 800;
}
.brand {
   color: var(--type-ink);
   font-size: 20px;
   font-weight: 800;
}
.brand small {
   color: var(--type-muted);
   font-size: 11px;
   font-weight: 600;
}
.nav-links {
   color: var(--type-ink);
   font-size: 16px;
   font-weight: 800;
}
.nav-item {
   position: relative;
   display: flex;
   align-items: center;
}
.nav-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 24px 0px 22px;
    color: inherit;
}
.nav-dropdown-trigger svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    transition: transform 0.22s ease;
}
.nav-item:hover .nav-dropdown-trigger, .nav-item:focus-within .nav-dropdown-trigger, .nav-item.is-open .nav-dropdown-trigger {
    color: rgb(8, 110, 255);
}
.nav-item:hover .nav-dropdown-trigger svg, .nav-item:focus-within .nav-dropdown-trigger svg, .nav-item.is-open .nav-dropdown-trigger svg {
    transform: rotate(180deg);
}
.nav-dropdown {
    position: absolute;
    left: 50%;
    top: calc(100% + 10px);
    width: 190px;
    padding: 10px;
    border: 1px solid rgba(204, 220, 255, 0.78);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: rgba(33, 74, 145, 0.16) 0px 18px 40px;
    backdrop-filter: blur(16px) saturate(145%);
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 8px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
}
.nav-dropdown::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -7px;
    width: 12px;
    height: 12px;
    border-left: 1px solid rgba(204, 220, 255, 0.78);
    border-top: 1px solid rgba(204, 220, 255, 0.78);
    background: rgba(255, 255, 255, 0.96);
    transform: translateX(-50%) rotate(45deg);
}
.nav-item:hover .nav-dropdown, .nav-item:focus-within .nav-dropdown, .nav-item.is-open .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0px);
}
.nav-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    color: rgb(31, 45, 77);
    font-size: 14px;
    font-weight: 800;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}
.nav-dropdown a::after {
    display: none;
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible {
    color: rgb(8, 110, 255);
    background: linear-gradient(90deg, rgba(232, 241, 255, 0.92), rgba(245, 248, 255, 0.74));
    transform: translateX(2px);
    text-shadow: none;
}
.nav-menu-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    color: rgb(24, 113, 255);
    background: linear-gradient(145deg, rgba(231, 241, 255, 0.98), rgba(247, 250, 255, 0.94));
}
.nav-menu-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}
@media (max-width: 620px) {
  .nav-item {
        flex: 0 0 auto;
        display: block;
  }
  .nav-dropdown-trigger {
        padding: 7px 10px;
        border-radius: 999px;
        background: rgba(244, 248, 255, 0.82);
  }
  .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 7px;
        padding: 7px;
        border-radius: 12px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: rgba(33, 74, 145, 0.1) 0px 10px 24px;
  }
  .nav-dropdown::before {
        display: none;
  }
  .nav-dropdown a {
        padding: 8px 9px;
        font-size: 13px;
  }
  .nav-menu-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
  }
}
.btn, button {
   font-size: 15px;
}
:where(.media-logo-head, .insight-panel-head, .diagnosis-form-card, .platform-news-panel, .knowledge-panel) h3 {
   color: var(--type-ink);
   font-size: var(--type-panel-title);
   line-height: 1.35;
   font-weight: 950;
}
:where(.question-card, .compare, .solution-card, .case-copy, .article-body, .shift-card-content, .diagnosis-form-card) p {
   color: var(--type-body);
   font-size: var(--type-body-size);
   line-height: 1.8;
}
:where(.learn, .tag, .mini-tags span, .audit-points, .audit-flow, .diagnosis-safe-note, .diagnosis-pillbar span, .field div, .media-logo-head span, .media-stat span, .publish-step small, .platform-news-item time, .knowledge-item time, .client-logo-caption, .qr span, .copyright, .contact-line span) {
   color: var(--type-soft);
   font-size: var(--type-small);
   line-height: 1.55;
}
:where(.fls-card p, .fls-step-copy em, .fls-partner-copy em, .fls-resource-name span, .fls-resource-panel span) {
   color: var(--type-muted);
   font-size: var(--type-small);
   line-height: 1.55;
}
:where(.fls-title-row h2, .fls-card h2) {
   color: var(--type-ink);
   font-size: 22px;
   line-height: 1.35;
   font-weight: 950;
}
:where(.shift-card h3, .compare h3) {
   font-size: 28px;
   line-height: 1.35;
   font-weight: 950;
}
:where(.media-metric-copy span, .media-stat-label, .publish-step span, .knowledge-item strong, .platform-news-item strong) {
   color: var(--type-ink);
}
.media-logo-tile span {
   color: rgb(31, 45, 77);
   font-size: 13px;
   font-weight: 800;
}
.cta h2 {
   font-size: 40px;
   line-height: 1.25;
   font-weight: 950;
}
.cta p {
   color: rgba(236, 243, 255, 0.92);
   font-size: 17px;
   line-height: 1.8;
}
.cta-points {
   color: rgba(244, 248, 255, 0.92);
   font-size: 14px;
   font-weight: 700;
}
footer#about[data-auth-footer-page="login"],
footer#about[data-auth-footer-page="register"] {
   position: relative;
   isolation: isolate;
   margin-top: 0px;
   padding-top: 76px;
   color: rgba(238, 246, 255, 0.92);
   border-top: 2px solid #168bff;
   background: #081838;
   box-shadow: inset 0 -2px 0 rgba(22, 139, 255, 0.82);
   overflow: hidden;
}
footer#about::before {
   content: "";
   position: absolute;
   left: 0px;
   top: 0px;
   width: 100%;
   height: 2px;
   transform: none;
   background: none;
   box-shadow: none;
   pointer-events: none;
}
footer#about::after {
   content: "";
   position: absolute;
   inset: 0px;
   z-index: -1;
   background: none;
   opacity: 1;
   mask-image: none;
   pointer-events: none;
}
footer#about .footer-grid {
   position: relative;
   z-index: 1;
   grid-template-columns: 1.46fr 0.68fr 0.68fr 0.68fr minmax(300px, 1.48fr);
   gap: 34px;
   align-items: start;
   min-height: 335px;
   padding-bottom: 22px;
}
footer#about .brand {
   display: inline-flex;
   width: fit-content;
   max-width: max-content;
   color: rgb(255, 255, 255);
}
footer#about .brand-logo {
   width: 166px;
}
footer#about .brand small {
   color: rgba(169, 185, 210, 0.9);
}
footer#about .brand-mark {
   box-shadow: rgba(255, 255, 255, 0.34) 0px 1px 0px inset, rgba(10, 102, 255, 0.34) 0px 18px 34px, rgba(32, 139, 255, 0.1) 0px 0px 0px 8px;
}
footer#about .footer-brand p {
   max-width: 330px;
   margin: 18px 0px 28px;
   color: rgba(169, 185, 210, 0.9);
   font-size: 15px;
   line-height: 1.8;
}
footer#about .qr-row {
   gap: 18px;
}
footer#about .qr {
   width: 112px;
   padding: 12px 12px 11px;
   border: 1px solid rgba(49, 89, 130, 0.95);
   border-radius: 16px;
   background: #0a1e45;
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 50px rgba(0, 8, 34, 0.34);
}
footer#about .qr-box {
   width: 88px;
   height: 88px;
   border-color: rgba(255, 255, 255, 0.94);
   border-radius: 8px;
   background-color: rgb(255, 255, 255);
   box-shadow: rgba(0, 8, 34, 0.24) 0px 12px 24px;
}
footer#about .qr span {
   margin-top: 9px;
   color: rgba(169, 185, 210, 0.9);
   font-size: 11px;
   font-weight: 700;
}
footer#about .footer-col {
   min-height: 260px;
   padding-left: 28px;
   border-left: 1px solid rgba(49, 89, 130, 0.76);
}
footer#about .footer-col h4, footer#about .contact-card h3 {
   position: relative;
   margin-bottom: 22px;
   color: rgb(255, 255, 255);
   font-size: 18px;
   font-weight: 900;
}
footer#about .footer-col h4::after, footer#about .contact-card h3::after {
   content: "";
   position: absolute;
   left: 0px;
   bottom: -10px;
   width: 26px;
   height: 3px;
   border-radius: 999px;
   background: #168bff;
   box-shadow: none;
}
footer#about .footer-col a {
   width: max-content;
   max-width: 100%;
   color: rgba(169, 185, 210, 0.9);
   font-size: 15px;
   line-height: 1.45;
   margin: 17px 0px;
   text-decoration: none;
   transition: color 0.22s, transform 0.22s;
}
footer#about .footer-col a:hover {
   color: rgb(255, 255, 255);
   transform: translateX(3px);
}
footer#about .contact-card {
   position: relative;
   padding: 30px 28px 28px;
   border: 1px solid rgba(49, 89, 130, 0.95);
   border-radius: 22px;
   background: #0a1e45;
   box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 22px 50px rgba(0, 8, 34, 0.34);
   backdrop-filter: blur(12px);
   overflow: hidden;
   transform: scale(0.9);
   transform-origin: top center;
}
footer#about .contact-card::before {
   content: "BRAND GROWTH";
   position: absolute;
   right: 18px;
   top: 20px;
   color: rgba(49, 89, 130, 0.34);
   font-size: 11px;
   font-weight: 900;
   letter-spacing: 2px;
}
footer#about .contact-line {
   display: flex;
   align-items: center;
   gap: 14px;
   margin: 22px 0px;
}
footer#about .contact-line > div {
   min-width: 0;
}
footer#about .contact-line .icon,
footer#about .contact-line .contact-icon {
   width: 44px;
   height: 44px;
   flex: 0 0 44px;
   border-radius: 14px;
   color: rgb(255, 255, 255);
   background: linear-gradient(135deg, rgb(23, 105, 255), rgb(32, 198, 255));
   box-shadow: rgba(19, 116, 255, 0.28) 0px 12px 26px;
}
footer#about .contact-line strong {
   display: block;
   color: rgb(255, 255, 255);
   font-size: 18px;
   line-height: 1.35;
   white-space: nowrap;
}
footer#about .contact-line span {
   display: block;
   color: rgba(169, 185, 210, 0.9);
   font-size: 12px;
   line-height: 1.65;
   white-space: nowrap;
}
footer#about .contact-card .btn {
   width: 100%;
   height: 54px;
   margin-top: 20px;
   border: 0px;
   color: rgb(255, 255, 255);
   font-size: 18px;
   font-weight: 900;
   background: #168bff;
   box-shadow: 0 14px 30px rgba(22, 139, 255, 0.24);
}
footer#about .contact-card .btn::before {
   display: none;
}
footer#about .contact-card .btn:hover {
   transform: translateY(-2px);
   box-shadow: 0 18px 36px rgba(22, 139, 255, 0.3);
}
footer#about .copyright {
   position: relative;
   z-index: 1;
   height: 74px;
   border-top: 1px solid rgba(49, 89, 130, 0.72);
   color: rgba(169, 185, 210, 0.9);
   font-size: 12px;
}
footer#about .copyright-left {
   gap: 22px;
   align-items: center;
}
footer#about .copyright-left span:first-child {
   display: inline-flex;
   align-items: center;
   height: 30px;
   padding: 0px 12px;
   border: 1px solid rgba(49, 89, 130, 0.95);
   border-radius: 999px;
   background: #0c224b;
   color: rgba(196, 210, 234, 0.94);
}
footer#about .copyright-left strong {
   color: #168bff !important;
}
.section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title {
   font-size: 40px;
   line-height: 1.28;
   color: var(--type-ink);
   font-weight: 950;
   letter-spacing: 0px;
}
.section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle {
   font-size: 17px;
   line-height: 1.8;
   color: var(--type-muted);
}
.diagnosis-form-card h3 {
   font-size: 21px;
   line-height: 1.42;
   color: var(--type-ink);
   font-weight: 900;
}
.media-logo-head h3, .insight-panel-head h3 {
   font-size: 22px;
   line-height: 1.35;
   color: var(--type-ink);
   font-weight: 950;
}
.shift-card p, .diagnosis-form-card p {
   font-size: 15px;
   line-height: 1.8;
   color: var(--type-body);
}
.shift-tags span, .diagnosis-redesign label, .diagnosis-redesign small, .diagnosis-redesign em, .diagnosis-safe-note, .fls-resource-panel span, .fls-step-copy em, .fls-partner-copy em, .media-logo-head span, .media-logo-tile span, .publish-step small, .platform-news-item time, .knowledge-item time, footer#about .brand small, footer#about .qr span, footer#about .contact-line span, footer#about .copyright {
   font-size: 13px;
   line-height: 1.55;
}
.fls-step-num, footer#about .contact-line .icon {
   font-size: 12px;
}
.shift-tags span, .fls-step-copy em, .fls-partner-copy em, .fls-resource-panel span, .publish-step small {
   color: var(--type-muted);
}
.diagnosis-redesign label, .media-logo-tile span {
   color: rgb(33, 48, 77);
   font-weight: 800;
}
footer#about .footer-col h4, footer#about .contact-card h3 {
   font-size: 18px;
   line-height: 1.35;
}
footer#about .footer-col a {
   font-size: 15px;
   color: rgba(218, 230, 255, 0.78);
}
header .brand small, footer#about .brand small, .option-a-check label, .option-a-check small, .option-a-check em, .option-a-check .diagnosis-pillbar span, .media-resource-redesign .media-logo-head span, .media-resource-redesign .media-logo-tile span, .media-resource-redesign .publish-step small, .option-a-proof span, .media-metric-card > span, .fls-step-num {
   font-size: 13px !important;
   line-height: 1.55;
}
.option-a-check label, .option-a-check .diagnosis-pillbar span, .media-resource-redesign .media-logo-tile span {
   color: rgb(33, 48, 77) !important;
   font-weight: 800;
}
:root {
   --space-section-y: 88px;
   --space-heading-accent: 14px;
   --space-heading-subtitle: 16px;
   --space-heading-content: 40px;
   --space-card-gap: 24px;
   --space-cta-y: 64px;
}
main > .section, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
   padding-top: var(--space-section-y);
   padding-bottom: var(--space-section-y);
}
.option-a-check.diagnosis-redesign {
   padding-top: var(--space-section-y);
   padding-bottom: var(--space-section-y);
}
.section-title {
   margin-bottom: 0px;
}
.section-title-accent {
   margin-top: var(--space-heading-accent);
   margin-bottom: var(--space-heading-subtitle);
}
.section-title-accent + .section-subtitle, .section-subtitle {
   margin-top: 0px;
}
.section-subtitle {
   margin-bottom: var(--space-heading-content);
}
.option-a-hero, .diagnosis-shell, .fls-board, .media-command, .client-logo-board, .insight-board {
   margin-top: 0px;
}
.client-logo-board {
   gap: var(--space-card-gap);
}
.media-command {
   display: grid;
   gap: var(--space-card-gap);
}
.media-matrix {
   margin-top: 0px;
   gap: var(--space-card-gap);
}
.publish-flow {
   width: 100%;
   box-sizing: border-box;
   margin-top: var(--space-card-gap);
}
.insight-news-section .section-subtitle, .diagnosis-redesign .section-subtitle, .option-a-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle {
   margin-bottom: var(--space-heading-content);
}
.diagnosis-shell, .insight-board, .media-command, .client-logo-board, .fls-board, .option-a-hero {
   transform: none;
}
.cta {
   margin-top: var(--space-cta-y);
   margin-bottom: var(--space-cta-y);
}
footer#about[data-auth-footer-page="login"],
footer#about[data-auth-footer-page="register"] {
   margin-top: 0px;
}
:root {
   --space-cta-y: var(--space-section-y);
}
main {
   background: linear-gradient(rgb(237, 244, 255) 0%, rgb(251, 253, 255) 9%, rgb(246, 250, 255) 100%);
}
main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
   position: relative;
   border-top: 0px;
   box-shadow: none;
}
main > .section::after, .option-a-check.diagnosis-redesign::after, #solutions.full-link-solution-redesign::after, .section.media-resource-redesign::after, .section.client-logo-section::after, .section.insight-news-section::after {
   content: "";
   position: absolute;
   left: 0px;
   right: 0px;
   bottom: -1px;
   z-index: 0;
   height: 72px;
   background: linear-gradient(rgba(255, 255, 255, 0), rgba(246, 250, 255, 0.72));
   pointer-events: none;
}
main > .section > .container, .option-a-check.diagnosis-redesign > .container, #solutions.full-link-solution-redesign > :not(.solution-visual-accent), .section.media-resource-redesign > .container, .section.client-logo-section > .container, .section.insight-news-section > .container {
   position: relative;
   z-index: 1;
}
main > .section:not(.exposure-shift):has(.question-grid) {
   background: radial-gradient(circle at 12% 12%, rgba(23, 105, 255, 0.043), transparent 28%), linear-gradient(rgb(251, 253, 255) 0%, rgb(247, 251, 255) 100%);
}
.exposure-shift {
   background: radial-gradient(circle at 8% 18%, rgba(49, 118, 255, 0.055), transparent 27%), radial-gradient(circle at 94% 80%, rgba(105, 91, 255, 0.043), transparent 26%), linear-gradient(rgb(247, 251, 255) 0%, rgb(244, 249, 255) 100%);
}
.option-a-check.diagnosis-redesign {
   background: radial-gradient(circle at 18% 16%, rgba(23, 105, 255, 0.1), transparent 30%), radial-gradient(circle at 86% 34%, rgba(32, 198, 255, 0.1), transparent 32%), linear-gradient(rgb(244, 249, 255) 0%, rgb(248, 251, 255) 100%);
}
#solutions.full-link-solution-redesign {
   padding-top: var(--space-section-y);
   padding-bottom: var(--space-section-y);
   background: radial-gradient(circle at 14% 14%, rgba(23, 105, 255, 0.08), transparent 30%), radial-gradient(circle at 88% 70%, rgba(109, 86, 255, 0.067), transparent 31%), linear-gradient(rgb(248, 251, 255) 0%, rgb(238, 246, 255) 48%, rgb(248, 251, 255) 100%);
}
.section.media-resource-redesign {
   background: radial-gradient(circle at 16% 12%, rgba(23, 105, 255, 0.08), transparent 30%), radial-gradient(circle at 86% 8%, rgba(32, 198, 255, 0.07), transparent 30%), linear-gradient(rgb(248, 251, 255) 0%, rgb(243, 248, 255) 100%);
}
.section.client-logo-section {
   background: radial-gradient(circle at 18% 8%, rgba(32, 198, 255, 0.043), transparent 28%), linear-gradient(rgb(243, 248, 255) 0%, rgb(251, 253, 255) 100%);
}
.section.insight-news-section {
   background: radial-gradient(circle at 12% 22%, rgba(47, 158, 255, 0.09), transparent 28%), radial-gradient(circle at 88% 28%, rgba(112, 78, 255, 0.08), transparent 26%), linear-gradient(rgb(251, 253, 255) 0%, rgb(245, 249, 255) 100%);
}
.cta {
   margin-top: var(--space-cta-y);
   margin-bottom: var(--space-cta-y);
}
.insight-news-section::before {
   display: none;
}
.media-logo-panel, .client-logo-board {
   border-color: rgba(173, 204, 255, 0.72);
   background: linear-gradient(rgba(255, 255, 255, 0.98), rgba(250, 253, 255, 0.96));
   box-shadow: rgba(42, 92, 178, 0.08) 0px 20px 54px;
}
.media-logo-tile, .client-logo-tile {
   border-color: rgba(205, 222, 248, 0.86);
   background: rgb(255, 255, 255);
   box-shadow: rgba(45, 86, 160, 0.043) 0px 8px 20px;
}
.media-logo-tile:hover, .client-logo-tile:hover {
   border-color: rgba(112, 166, 255, 0.76);
   box-shadow: rgba(45, 93, 180, 0.1) 0px 14px 30px;
}
.section.client-logo-section {
   background: radial-gradient(circle at 18% 8%, rgba(32, 198, 255, 0.05), transparent 28%), linear-gradient(rgb(245, 249, 255) 0%, rgb(251, 253, 255) 100%);
}
.section.insight-news-section {
   background: radial-gradient(circle at 12% 22%, rgba(47, 158, 255, 0.1), transparent 28%), radial-gradient(circle at 88% 26%, rgba(103, 72, 255, 0.07), transparent 26%), linear-gradient(rgb(251, 253, 255) 0%, rgb(242, 247, 255) 100%);
}
.insight-board, .platform-news-panel, .knowledge-panel {
   border-color: rgba(173, 204, 255, 0.72);
   background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(248, 251, 255, 0.96));
   box-shadow: rgba(42, 85, 170, 0.09) 0px 22px 56px;
}
.cta {
   border-color: rgba(104, 170, 255, 0.58);
   background: radial-gradient(circle at 82% 18%, rgba(32, 198, 255, 0.24), transparent 26%), radial-gradient(circle at 65% 62%, rgba(109, 86, 255, 0.16), transparent 34%), linear-gradient(108deg, rgb(11, 79, 216) 0%, rgb(23, 105, 255) 48%, rgb(32, 170, 255) 100%);
   box-shadow: rgba(18, 100, 220, 0.28) 0px 34px 78px;
}
.hero-stats {
   width: 822px;
   max-width: calc(100vw - 64px);
   margin-left: 0px;
   margin-right: auto;
   justify-content: start;
}
.hero-stat {
    background: linear-gradient(145deg, rgba(255,255,255,.68), rgba(255,255,255,.42));
    border-color: rgba(255,255,255,.72);
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.72),
      0 18px 42px rgba(37, 78, 155, .12);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
}
.media-metric-card {
    position: relative;
    overflow: hidden;
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease, background .28s ease;
}
.media-metric-card::after {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    background:
      radial-gradient(circle at 22% 14%, rgba(32,198,255,.16), transparent 32%),
      linear-gradient(135deg, rgba(23,105,255,.08), rgba(109,86,255,.07));
    transition: opacity .28s ease;
}
.media-metric-card:hover {
    transform: translateY(-7px);
    border-color: rgba(95, 151, 255, .82);
    background: linear-gradient(145deg, rgba(255,255,255,.98), rgba(244,249,255,.95));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.98),
      0 24px 54px rgba(37, 91, 185, .16);
}
.media-metric-card:hover::after {
    opacity: 1;
}
.media-metric-card:hover .media-metric-icon {
    transform: translateY(-2px) scale(1.05);
    filter: drop-shadow(0 12px 18px rgba(23,105,255,.18));
}
.media-metric-card:hover strong {
    color: #1262f0;
}
.media-metric-icon, .media-metric-card strong {
    position: relative;
    z-index: 1;
    transition: transform .28s ease, color .28s ease, filter .28s ease;
}
.client-logo-tile {
    transition: transform .26s ease, border-color .26s ease, box-shadow .26s ease, background .26s ease;
}
.client-logo-tile img {
    transition: transform .26s ease, filter .26s ease;
}
.client-logo-tile:hover {
    transform: translateY(-8px) scale(1.035);
    border-color: rgba(77, 143, 255, .92);
    background: #fff;
    box-shadow:
      0 22px 46px rgba(37, 91, 185, .18),
      0 0 0 4px rgba(23,105,255,.055);
}
.client-logo-tile:hover img {
    transform: scale(1.08);
    filter: saturate(1.08) contrast(1.04);
}
.client-logo-section .section-subtitle {
    margin-bottom: 26px;
}
.client-proof-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
    align-items: center;
    gap: 18px;
    margin: 0 auto 34px;
    padding: 17px 24px;
    border: 1px solid rgba(189, 213, 248, .86);
    border-radius: 18px;
    background:
      linear-gradient(145deg, rgba(255,255,255,.9), rgba(247,251,255,.82));
    box-shadow:
      inset 0 1px 0 rgba(255,255,255,.92),
      0 18px 44px rgba(42, 85, 170, .08);
}
.client-proof-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    min-width: 0;
}
.client-proof-item strong {
    flex: 0 0 auto;
    color: #1769ff;
    background: linear-gradient(135deg, #1769ff 0%, #18a8ff 48%, #6b4dff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 50px;
    line-height: 1;
    font-weight: 500;
    letter-spacing: 0;
}
.client-proof-item strong span {
    margin-left: 3px;
    font-size: 22px;
    font-weight: 700;
    vertical-align: 18px;
}
.client-proof-item div {
    min-width: 0;
}
.client-proof-item b, .client-proof-item em {
    display: block;
    font-style: normal;
    letter-spacing: 0;
}
.client-proof-item b {
    color: #17224a;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 900;
}
.client-proof-item em {
    margin-top: 6px;
    color: #64728d;
    font-size: 13px;
    line-height: 1.45;
    font-weight: 700;
    white-space: nowrap;
}
.client-proof-divider {
    width: 1px;
    height: 38px;
    background: linear-gradient(180deg, transparent, rgba(139, 157, 190, .42), transparent);
    transform: skewX(-22deg);
}
.client-visual-accent {
    position: absolute;
    top: 34px;
    left: max(20px, calc((100vw - 1200px) / 2 - 36px));
    z-index: 0;
    width: min(560px, 46vw);
    height: auto;
    opacity: .34;
    pointer-events: none;
    filter: drop-shadow(0 24px 44px rgba(23, 105, 255, .12));
}
@media (max-width: 900px) {
  .client-visual-accent {
        top: 28px;
        left: -150px;
        width: 430px;
        opacity: .18;
  }
}
.insight-board {
    background: transparent;
    border: 0;
    box-shadow: none;
    gap: 24px;
}
.platform-news-panel, .knowledge-panel {
    overflow: hidden;
    isolation: isolate;
    background: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(188, 212, 248, .9);
    box-shadow: 0 20px 48px rgba(42, 85, 170, .10);
}
.platform-news-panel::before {
    border-radius: inherit;
}
.insight-visual-accent {
    position: absolute;
    top: 42px;
    right: max(24px, calc((100vw - 1200px) / 2 - 12px));
    z-index: 0;
    width: min(520px, 43vw);
    height: auto;
    opacity: .44;
    pointer-events: none;
    filter: drop-shadow(0 26px 46px rgba(23, 105, 255, .13));
}
@media (max-width: 900px) {
  .insight-visual-accent {
        top: 32px;
        right: -120px;
        width: 420px;
        opacity: .22;
  }
}
.shift-card.ai {
    color: #fff;
    border-color: rgba(170, 203, 255, .64);
    background:
      radial-gradient(circle at 84% 20%, rgba(75, 225, 255, .38), transparent 31%),
      radial-gradient(circle at 42% 108%, rgba(156, 113, 255, .40), transparent 42%),
      linear-gradient(135deg, rgba(26, 60, 150, .97) 0%, rgba(51, 108, 230, .95) 48%, rgba(122, 84, 235, .92) 100%),
      url("../img/compare-ai-era-bg.png") right bottom / 64% no-repeat;
    box-shadow:
      0 28px 68px rgba(44, 76, 213, .24),
      0 0 42px rgba(101, 76, 255, .12),
      inset 0 1px 0 rgba(255, 255, 255, .30);
}
.shift-card.ai::before {
    background:
      linear-gradient(145deg, rgba(19, 43, 126, .48), rgba(50, 107, 224, .20) 58%, rgba(255, 255, 255, 0)),
      linear-gradient(90deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, 0) 30%);
}
.shift-card.ai p {
    color: rgba(244, 250, 255, .88);
}
.cta {
    isolation: isolate;
    min-height: 238px;
    padding: 34px 40px 28px;
    border: 1px solid rgba(142, 209, 255, .54);
    border-radius: 26px;
    background:
      radial-gradient(circle at 88% 12%, rgba(52, 231, 255, .35), transparent 27%),
      radial-gradient(circle at 4% 92%, rgba(112, 81, 255, .26), transparent 32%),
      linear-gradient(116deg, #062d8f 0%, #126bff 46%, #13c6ff 100%);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .38),
      inset 0 -36px 70px rgba(3, 23, 104, .22),
      0 34px 82px rgba(23, 105, 255, .26),
      0 12px 28px rgba(5, 28, 95, .16);
}
.cta::before {
    content: "";
    position: absolute;
    inset: 1px;
    z-index: -1;
    border-radius: inherit;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, .22), rgba(255, 255, 255, 0) 42%),
      linear-gradient(90deg, rgba(255, 255, 255, .08) 1px, transparent 1px) 0 0 / 44px 44px,
      linear-gradient(rgba(255, 255, 255, .07) 1px, transparent 1px) 0 0 / 44px 44px;
    pointer-events: none;
}
.cta::after {
    content: "";
    position: absolute;
    right: 34px;
    top: 26px;
    width: 150px;
    height: 150px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .2);
    background: radial-gradient(circle, rgba(255, 255, 255, .15), transparent 68%);
    box-shadow: 0 0 0 42px rgba(255, 255, 255, .035);
    pointer-events: none;
}
.cta-content {
    align-items: flex-start;
    gap: 28px;
}
.cta-copy {
    max-width: 620px;
}
.cta h2 {
    margin: 0 0 8px;
    font-size: 34px;
    line-height: 1.22;
    font-weight: 950;
    letter-spacing: 0;
    text-shadow: 0 12px 28px rgba(2, 20, 88, .32);
}
.cta p {
    max-width: 590px;
    color: rgba(239, 247, 255, .9);
    font-size: 15px;
    line-height: 1.7;
}
.cta-actions {
    position: relative;
    z-index: 2;
    padding-top: 8px;
}
.cta .btn {
    height: 46px;
    min-width: 142px;
    border-radius: 12px;
    font-weight: 900;
}
.cta .btn:not(.ghost) {
    color: #075dff;
    background: linear-gradient(180deg, #ffffff 0%, #eaf7ff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .92), 0 18px 34px rgba(3, 28, 105, .24);
}
.cta .btn.ghost {
    border: 1px solid rgba(255, 255, 255, .48);
    color: #fff;
    background: rgba(255, 255, 255, .11);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .2);
    backdrop-filter: blur(10px);
}
.cta-points {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    font-weight: 850;
}
.cta-points span {
    min-width: 0;
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(255, 255, 255, .2), rgba(255, 255, 255, .08));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .22), 0 16px 34px rgba(3, 25, 91, .13);
    backdrop-filter: blur(12px);
}
.cta-point-icon {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 10px 16px rgba(2, 27, 96, .18));
}
.cta, .cta::before, .cta::after, .cta-points span, .cta-point-icon, .cta .btn {
    transition: transform .32s ease, box-shadow .32s ease, border-color .32s ease, filter .32s ease, background-position .45s ease;
}
.cta:hover {
    transform: translateY(-6px);
    border-color: rgba(174, 226, 255, .72);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, .42),
      inset 0 -34px 68px rgba(3, 23, 104, .22),
      0 42px 96px rgba(23, 105, 255, .3),
      0 16px 34px rgba(5, 28, 95, .18);
}
.cta:hover::before {
    transform: translate3d(0, -4px, 0);
}
.cta:hover::after {
    animation: none;
    transform: translate3d(-10px, 8px, 0) scale(1.05);
}
.cta-points span:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, .34);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .3), 0 20px 38px rgba(3, 25, 91, .18);
}
.cta-points span:hover .cta-point-icon {
    transform: translateY(-2px) scale(1.08);
    filter: drop-shadow(0 14px 20px rgba(2, 27, 96, .24));
}
.cta .btn:hover, .cta .btn:focus-visible {
    transform: translateY(-3px);
}
@keyframes cta-soft-float {
    0%, 100% {
     transform: translate3d(0, 0, 0);
  }
    50% {
     transform: translate3d(0, -8px, 0);
  }
}
@keyframes cta-point-rise {
    0% {
     opacity: 0;
     transform: translateY(14px);
  }
    100% {
     opacity: 1;
     transform: translateY(0);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .cta::after {
        animation: cta-soft-float 5.8s ease-in-out infinite;
  }
  .cta-points span {
        animation: cta-point-rise .52s ease both;
  }
  .cta-points span:nth-child(2) {
     animation-delay: .06s;
  }
  .cta-points span:nth-child(3) {
     animation-delay: .12s;
  }
  .cta-points span:nth-child(4) {
     animation-delay: .18s;
  }
}
@media (prefers-reduced-motion: reduce) {
  .cta, .cta::before, .cta::after, .cta-points span, .cta-point-icon, .cta .btn {
        transition: none;
        animation: none;
  }
}
@media (max-width: 900px) {
  .cta {
        padding: 32px 22px 26px;
  }
  .cta-content {
        flex-direction: column;
        align-items: stretch;
  }
  .cta h2 {
        font-size: 28px;
  }
  .cta-actions {
        flex-direction: column;
        align-items: stretch;
  }
  .cta-points {
        grid-template-columns: 1fr;
  }
}
.section.insight-news-section {
    padding-bottom: 68px;
}
.cta {
    margin-top: 52px;
    margin-bottom: 42px;
}
@media (max-width: 900px) {
  .section.insight-news-section {
        padding-bottom: 52px;
  }
  .cta {
        margin-top: 36px;
        margin-bottom: 32px;
  }
}
.shift-card.ai .shift-tags span {
    color: rgb(242, 249, 255);
    background: rgba(255, 255, 255, .16);
    border-color: rgba(166, 222, 255, .34);
}
/* 全站视觉规范覆盖：统一 1200px 主体宽度与板块文字层级 */
:root {
    --site-content-width: 1200px;
    --site-content-gutter: 64px;
    --site-title-size: 40px;
    --site-title-line: 1.28;
    --site-subtitle-size: 17px;
    --site-subtitle-line: 1.72;
    --site-body-size: 15px;
    --site-body-line: 1.78;
}
.container, .fls-head, .fls-board, .exposure-shift .container, .option-a-check.diagnosis-redesign > .container, .media-resource-redesign > .container, .client-logo-section > .container, .insight-news-section > .container, .cta, footer#about > .container {
    width: var(--site-content-width);
    max-width: calc(100vw - var(--site-content-gutter));
    margin-left: auto;
    margin-right: auto;
}
.section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1 {
    max-width: 980px;
    margin-left: auto;
    margin-right: auto;
    color: var(--type-ink);
    font-size: var(--site-title-size);
    line-height: var(--site-title-line);
    font-weight: 950;
    letter-spacing: 0;
    text-align: center;
    text-wrap: balance;
}
.section-subtitle, .exposure-shift .section-subtitle, .option-a-check .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    color: var(--type-muted);
    font-size: var(--site-subtitle-size);
    line-height: var(--site-subtitle-line);
    font-weight: 600;
    text-align: center;
    text-wrap: pretty;
}
.exposure-shift .section-title {
    max-width: 1000px;
}
.media-resource-redesign .section-subtitle, .insight-news-section .section-subtitle {
    max-width: 760px;
}
.client-logo-section .section-subtitle {
    max-width: 680px;
}
.shift-card p, .diagnosis-form-card p, .fls-card-main p, .media-metric-card span, .platform-news-item strong, .knowledge-item strong, .cta p {
    font-size: var(--site-body-size);
    line-height: var(--site-body-line);
    text-wrap: pretty;
}
.fls-card-main p {
    max-width: 176px;
}
.shift-card h3, .fls-card-main h2, .media-logo-head h3, .insight-panel-head h3, .diagnosis-form-card h3 {
    letter-spacing: 0;
    text-wrap: balance;
}
/* Quick entry section */
.quick-entry-index {
    --qe-ink: #0d1734;
    --qe-muted: #657390;
    --qe-blue: #1769ff;
    --qe-purple: #6b55ff;
    --qe-soft-line: rgba(183, 205, 241, 0.72);
    --qe-shadow: 0 22px 48px rgba(51, 82, 144, 0.12);
    position: relative;
    width: 100%;
    min-width: 1200px;
    min-height: 652px;
    margin: 0;
    overflow: hidden;
    padding: 82px max(0px, calc((100vw - 1200px) / 2)) 12px;
    color: var(--qe-ink);
    background:
      radial-gradient(circle at 12% 12%, rgba(23, 105, 255, 0.055), transparent 28%),
      radial-gradient(circle at 90% 3%, rgba(32, 198, 255, 0.065), transparent 30%),
      linear-gradient(180deg, #edf4ff 0%, #f5f9ff 26%, #f4f8ff 100%);
    box-shadow: rgba(255, 255, 255, 0.95) 0 1px 0 inset;
    isolation: isolate;
}
.quick-entry-index::selection {
    background: rgba(23, 105, 255, 0.18);
}
.quick-entry-index *, .quick-entry-index *::before, .quick-entry-index *::after {
    box-sizing: border-box;
}
.quick-entry-index::before {
    content: "";
    display: none;
}
.quick-entry-index .qe-bg-arc {
    display: none;
}
.quick-entry-index::after {
    content: "";
    position: absolute;
    left: max(17px, calc((100vw - 1200px) / 2 + 17px));
    top: 81px;
    width: 86px;
    height: 86px;
    opacity: 0.52;
    background-image: radial-gradient(circle, rgba(93, 145, 255, 0.44) 1px, transparent 1.5px);
    background-size: 10px 10px;
    pointer-events: none;
}
.quick-entry-index .qe-header::after {
    content: "";
    position: absolute;
    right: -174px;
    top: -235px;
    z-index: -1;
    width: 540px;
    height: 395px;
    border-radius: 0 0 0 360px;
    border: 1px solid rgba(111, 163, 255, 0.14);
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(218, 234, 255, 0.16));
    transform: rotate(-10deg);
    pointer-events: none;
}
.quick-entry-index button, .quick-entry-index input {
    font: inherit;
}
.quick-entry-index button {
    cursor: pointer;
}
.quick-entry-index .qe-header {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 1200px;
    margin: 0 auto;
}
.quick-entry-index .qe-header::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -24px;
    z-index: -1;
    width: 1200px;
    height: 170px;
    transform: translateX(-50%);
    background: url("../img/title-bg.png") center top / 1200px 170px no-repeat;
    mask-image: linear-gradient(90deg, transparent 0%, #000 5%, #000 95%, transparent 100%);
    pointer-events: none;
}
.quick-entry-index .qe-header h1 {
    margin: 0;
    color: #0b142f;
    font-size: 40px;
    line-height: 1.28;
    font-weight: 950;
    letter-spacing: 0;
    text-wrap: balance;
}
.quick-entry-index .qe-header .accent {
    margin-left: 12px;
    color: var(--qe-blue);
    background: linear-gradient(90deg, #1769ff, #315eff 50%, #6d56ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 8px 14px rgba(50, 93, 255, 0.16));
    white-space: nowrap;
}
.quick-entry-index .qe-header p {
    max-width: 760px;
    margin: 10px auto 45px;
    color: #52617d;
    font-size: 17px;
    line-height: 1.72;
    font-weight: 600;
    text-wrap: pretty;
}
.quick-entry-index .entry-grid {
    position: relative;
    z-index: 1;
    display: grid;
    width: 1200px;
    margin: 0 auto;
    grid-template-columns: 452px 234px 232px 234px;
    gap: 16px;
    align-items: start;
}
.quick-entry-index .glass-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--qe-soft-line);
    border-radius: 14px;
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.78)),
      radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.86), transparent 38%);
    box-shadow: var(--qe-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
}
.quick-entry-index .glass-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.72) 43%, transparent 58%),
      radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--entry-color, #1769ff) 16%, transparent), transparent 42%);
    transform: translateX(-42%);
    transition: opacity 0.28s ease, transform 0.58s ease;
    pointer-events: none;
}
.quick-entry-index .glass-card > * {
    position: relative;
    z-index: 1;
}
.quick-entry-index .scan-card {
    min-height: 459px;
    padding: 17px 22px 10px;
    border-radius: 14px;
    --entry-color: #1769ff;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
.quick-entry-index .scan-card:hover {
    transform: translateY(-7px) scale(1.01);
    border-color: rgba(80, 142, 255, 0.78);
    box-shadow: 0 34px 70px rgba(45, 91, 178, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.98);
}
.quick-entry-index .scan-card:hover::before, .quick-entry-index .entry-card:hover::before, .quick-entry-index .entry-card.is-active::before {
    opacity: 1;
    transform: translateX(38%);
}
.quick-entry-index .recommend {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    height: 39px;
    display: flex;
    align-items: flex-start;
    padding: 8px 0 0 13px;
    color: #fff;
    background: linear-gradient(135deg, #196aff, #7357ff);
    clip-path: polygon(0 0, 100% 0, 70% 100%, 0 100%);
    font-size: 14px;
    font-weight: 900;
    box-shadow: 0 12px 22px rgba(65, 84, 255, 0.22);
}
.quick-entry-index .brand-title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin: 0 0 7px;
    color: #0e1836;
    font-size: 23px;
    line-height: 1.1;
    font-weight: 950;
}
.quick-entry-index .wave-icon {
    width: 31px;
    height: 31px;
    color: #1769ff;
}
.quick-entry-index .scan-card > p {
    margin: 0 0 9px;
    color: #485777;
    text-align: center;
    font-size: 15px;
    line-height: 1.5;
    font-weight: 650;
    letter-spacing: 0.01em;
}
.quick-entry-index .scan-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 88px;
    height: 32px;
    overflow: hidden;
    border: 1px solid #d5e2f6;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 9px 20px rgba(58, 85, 139, 0.07), inset 0 1px 3px rgba(45, 75, 120, 0.04);
}
.quick-entry-index .input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    padding: 0 13px;
    color: #8b98ad;
}
.quick-entry-index .input-wrap svg {
    width: 16px;
    height: 16px;
    flex: 0 0 auto;
}
.quick-entry-index .input-wrap input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    color: #1c2a49;
    background: transparent;
    font-size: 14px;
    font-weight: 650;
}
.quick-entry-index .input-wrap input::placeholder {
    color: #98a4b7;
}
.quick-entry-index .scan-form button, .quick-entry-index .main-scan-btn {
    border: 0;
    color: #fff;
    background: linear-gradient(135deg, #1769ff, #255fff 58%, #5f54ff);
    font-weight: 950;
    transition: transform 0.2s, filter 0.2s, box-shadow 0.2s;
}
.quick-entry-index .scan-form button {
    font-size: 14px;
}
.quick-entry-index .scan-form button:hover, .quick-entry-index .main-scan-btn:hover {
    filter: brightness(1.05) saturate(1.03);
}
.quick-entry-index .scan-panel {
    position: relative;
    margin-top: 9px;
    padding: 8px 11px 6px;
    border: 1px solid #d8e5f7;
    border-radius: 8px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.91), rgba(247, 251, 255, 0.78));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.96);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.quick-entry-index .scan-panel::after {
    content: "";
    position: absolute;
    left: -28%;
    top: 0;
    width: 28%;
    height: 100%;
    opacity: 0;
    background: linear-gradient(90deg, transparent, rgba(46, 152, 255, 0.16), transparent);
    transform: skewX(-18deg);
    pointer-events: none;
}
.quick-entry-index .scan-card:hover .scan-panel, .quick-entry-index.is-scanning .scan-panel {
    transform: translateY(-2px);
    border-color: rgba(106, 166, 255, 0.84);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(241, 248, 255, 0.9));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.98), 0 18px 36px rgba(55, 101, 185, 0.13);
}
.quick-entry-index .scan-card:hover .scan-panel::after, .quick-entry-index.is-scanning .scan-panel::after {
    opacity: 1;
    animation: qePanelSweep 1.55s ease-in-out infinite;
}
.quick-entry-index .scan-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #53617c;
    font-size: 11px;
    line-height: 1.4;
    font-weight: 850;
}
.quick-entry-index .scan-meta span:last-child {
    color: #7f8a9f;
    font-weight: 650;
}
.quick-entry-index .progress-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 64px;
    gap: 15px;
    align-items: center;
    margin-top: 8px;
}
.quick-entry-index .progress-track {
    height: 12px;
    overflow: hidden;
    border-radius: 999px;
    background: #dce8f9;
}
.quick-entry-index .progress-fill {
    width: var(--scan-progress, 68%);
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #155fff, #32b8ff, #155fff);
    background-size: 210% 100%;
    box-shadow: 0 8px 15px rgba(25, 111, 255, 0.25);
    transition: width 0.45s ease;
    animation: qeProgressFlow 2.2s linear infinite;
}
.quick-entry-index .score {
    color: #1769ff;
    text-align: right;
    font-size: 22px;
    line-height: 1;
    font-weight: 950;
    font-variant-numeric: tabular-nums;
    transition: transform 0.22s ease, text-shadow 0.22s ease;
}
.quick-entry-index .score.is-rolling {
    transform: translateY(-1px) scale(1.06);
    text-shadow: 0 10px 22px rgba(23, 105, 255, 0.22);
}
.quick-entry-index .dashboard {
    display: grid;
    grid-template-columns: 126px minmax(0, 1fr);
    gap: 10px;
    align-items: center;
    margin-top: 10px;
}
.quick-entry-index .radar-art {
    width: 122px;
    height: 124px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.34s ease, filter 0.34s ease;
}
.quick-entry-index .core-metrics-art {
    display: block;
    width: 100%;
    max-width: 252px;
    height: auto;
    justify-self: center;
    object-fit: contain;
    mix-blend-mode: multiply;
    filter: drop-shadow(0 9px 18px rgba(59, 83, 140, 0.08));
}
.quick-entry-index .scan-card:hover .radar-art, .quick-entry-index.is-scanning .radar-art {
    filter: drop-shadow(0 14px 20px rgba(23, 105, 255, 0.15));
}
.quick-entry-index .scan-card:hover .core-metrics-art, .quick-entry-index.is-scanning .core-metrics-art {
    filter: drop-shadow(0 14px 24px rgba(59, 83, 140, 0.12));
}
.quick-entry-index .metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
}
.quick-entry-index .metric-title {
    grid-column: 1 / -1;
    margin: 0;
    color: #17213d;
    text-align: center;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 950;
}
.quick-entry-index .metric {
    min-height: 49px;
    padding: 6px 7px 5px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 9px 20px rgba(59, 83, 140, 0.08);
    border: 1px solid rgba(220, 230, 246, 0.82);
    transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}
.quick-entry-index .scan-card:hover .metric, .quick-entry-index.is-scanning .metric {
    transform: translateY(-2px);
    border-color: rgba(181, 211, 255, 0.95);
    box-shadow: 0 14px 26px rgba(59, 83, 140, 0.11);
}
.quick-entry-index .metric span {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #43506a;
    font-size: 10px;
    white-space: nowrap;
    font-weight: 850;
}
.quick-entry-index .metric svg {
    width: 13px;
    height: 13px;
    color: var(--metric-color);
    flex: 0 0 auto;
}
.quick-entry-index .metric b {
    display: block;
    margin-top: 3px;
    color: #1769ff;
    text-align: center;
    font-size: 16px;
    line-height: 1;
    font-weight: 950;
}
.quick-entry-index .metric small {
    margin-left: 2px;
    font-size: 9px;
    font-weight: 800;
}
.quick-entry-index .metric em {
    display: block;
    margin-top: 3px;
    color: #7e8a9d;
    text-align: center;
    font-style: normal;
    font-size: 10px;
    line-height: 1;
    font-weight: 700;
}
.quick-entry-index .metric i {
    color: #10aa90;
    font-style: normal;
    font-weight: 900;
}
.quick-entry-index .main-scan-btn {
    width: 100%;
    height: 34px;
    margin-top: 9px;
    border-radius: 8px;
    box-shadow: 0 13px 24px rgba(57, 82, 255, 0.26);
    font-size: 16px;
}
.quick-entry-index .main-scan-btn:active, .quick-entry-index .entry-button:active {
    transform: translateY(1px);
}
.quick-entry-index .secure-note {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    margin-top: 7px;
    color: #8b98aa;
    font-size: 12px;
    line-height: 1.2;
    font-weight: 650;
}
.quick-entry-index .secure-note svg {
    width: 16px;
    height: 16px;
    color: #91a4c5;
}
.quick-entry-index .entry-card {
    height: 416px;
    min-height: 0;
    margin-top: 29px;
    padding: 14px 18px 15px;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, border-color 0.3s ease, filter 0.3s ease;
}
.quick-entry-index .entry-card:hover {
    transform: translateY(-11px) scale(1.025);
    border-color: color-mix(in srgb, var(--entry-color) 45%, #d4e2f8);
    box-shadow: 0 36px 72px color-mix(in srgb, var(--entry-color) 20%, rgba(51, 82, 144, 0.16)), inset 0 1px 0 rgba(255, 255, 255, 0.98);
    filter: saturate(1.05);
}
.quick-entry-index .entry-card.is-active {
    border-color: color-mix(in srgb, var(--entry-color) 45%, #d4e2f8);
    box-shadow: 0 28px 58px rgba(51, 82, 144, 0.17), inset 0 1px 0 rgba(255, 255, 255, 0.96);
}
.quick-entry-index .entry-visual {
    width: 100%;
    height: 136px;
    display: grid;
    place-items: center;
    margin-bottom: 11px;
}
.quick-entry-index .entry-visual img {
    display: block;
    max-width: 100%;
    max-height: 132px;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.34s ease, filter 0.34s ease;
}
.quick-entry-index .entry-card:hover .entry-visual img, .quick-entry-index .entry-card.is-active .entry-visual img {
    filter: drop-shadow(0 16px 22px color-mix(in srgb, var(--entry-color) 20%, transparent));
}
.quick-entry-index .entry-title {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: #101a36;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 950;
}
.quick-entry-index .entry-title img {
    width: 24px;
    height: 24px;
    display: block;
    flex: 0 0 auto;
    filter: drop-shadow(0 7px 12px color-mix(in srgb, var(--entry-color) 20%, transparent));
}
.quick-entry-index .entry-card p {
    margin: 7px 0 10px;
    color: #4d5b78;
    font-size: 14px;
    line-height: 1.62;
    font-weight: 700;
    text-wrap: pretty;
    transition: color 0.24s ease;
}
.quick-entry-index .entry-card:hover p {
    color: #263756;
}
.quick-entry-index .features {
    display: grid;
    gap: 8px;
    margin: 0 0 14px;
    padding: 0;
    list-style: none;
}
.quick-entry-index .features li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #31405d;
    font-size: 13px;
    line-height: 1.3;
    font-weight: 650;
    transition: transform 0.24s ease;
}
.quick-entry-index .entry-card:hover .features li {
    transform: translateX(3px);
}
.quick-entry-index .check {
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    color: #fff;
    background: var(--entry-color);
    font-size: 11px;
    line-height: 1;
    font-weight: 950;
}
.quick-entry-index .entry-button {
    width: 100%;
    height: 34px;
    border: 1px solid color-mix(in srgb, var(--entry-color) 34%, #d7e5f7);
    border-radius: 8px;
    color: var(--entry-color);
    background: linear-gradient(180deg, #ffffff, color-mix(in srgb, var(--entry-color) 6%, #ffffff));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.92);
    font-size: 14px;
    font-weight: 950;
    transition: color 0.2s, background 0.2s, box-shadow 0.2s, transform 0.2s;
}
.quick-entry-index .entry-button:hover, .quick-entry-index .entry-card.is-active .entry-button, .quick-entry-index .entry-button.is-filled {
    color: #fff;
    background: linear-gradient(135deg, var(--entry-color), color-mix(in srgb, var(--entry-color) 74%, #6656ff));
    box-shadow: 0 12px 22px color-mix(in srgb, var(--entry-color) 20%, transparent);
}
.quick-entry-index .entry-card:hover .entry-button {
    transform: translateY(-2px);
}
.quick-entry-index .trust {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-top: 13px;
    padding: 0;
    border: 0;
    color: #52627f;
    background: transparent;
    box-shadow: none;
    font-size: 14px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0.08em;
}
.quick-entry-index .trust svg {
    width: 23px;
    height: 23px;
    color: #849bd0;
}
.quick-entry-index .trust span {
    position: relative;
}
.quick-entry-index .trust span + span::before {
    content: "";
    position: absolute;
    left: -11px;
    top: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #8fa3cf;
    transform: translateY(-50%);
}
.quick-entry-index .toast {
    position: absolute;
    left: 50%;
    bottom: 24px;
    z-index: 5;
    min-width: 280px;
    padding: 12px 18px;
    border: 1px solid rgba(176, 203, 244, 0.9);
    border-radius: 999px;
    color: #172548;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 38px rgba(44, 79, 150, 0.14);
    text-align: center;
    font-size: 13px;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 14px);
    transition: opacity 0.22s ease, transform 0.22s ease;
    backdrop-filter: blur(10px);
}
.quick-entry-index .toast.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
}
@keyframes qeProgressFlow {
    0% {
     background-position: 0% 50%;
  }
    100% {
     background-position: 210% 50%;
  }
}
@keyframes qePanelSweep {
    0% {
     left: -30%;
  }
    54%, 100% {
     left: 110%;
  }
}
@media (max-width: 1200px) {
  .quick-entry-index {
        transform: scale(calc(100vw / 1200));
        transform-origin: top left;
  }
}
/* Responsive adaptive repair layer: keep desktop design, fix tablet/mobile overflow */
html, body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img, video, canvas {
    max-width: 100%;
}
img {
    height: auto;
}
button, input, select, textarea {
    max-width: 100%;
}
.container, .fls-head, .fls-board, .exposure-shift .container, .option-a-check.diagnosis-redesign > .container, .media-resource-redesign > .container, .client-logo-section > .container, .insight-news-section > .container, .cta, footer#about > .container {
    width: min(var(--site-content-width), calc(100% - var(--site-content-gutter)));
    max-width: var(--site-content-width);
}
.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(199, 217, 249, 0.92);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: rgba(39, 84, 162, 0.08) 0 10px 24px;
    color: rgb(16, 26, 67);
    align-content: center;
    justify-items: center;
    gap: 4px;
}
.nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 0.22s ease, opacity 0.22s ease;
}
.nav.is-menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav.is-menu-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}
.nav.is-menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}
.hero, .section, .option-a-check.diagnosis-redesign, .full-link-solution-redesign, .media-resource-redesign, .client-logo-section, .insight-news-section, footer#about {
    max-width: 100%;
}
.media-logo-tile img, .client-logo-tile img, .media-metric-icon, .publish-step-icon, .contact-icon, .cta-point-icon, .fls-icon-img, .fls-platform-icon, .quick-entry-index img {
    object-fit: contain;
}
.quick-entry-index {
    min-width: 0;
    width: 100%;
    transform: none !important;
}
.quick-entry-index .qe-header, .quick-entry-index .entry-grid {
    width: min(1200px, 100%);
    max-width: 100%;
}
.quick-entry-index .entry-card {
    height: auto;
    min-height: 416px;
}
.hero h1, .section-title, .fls-head h1, .quick-entry-index .qe-header h1, .cta h2 {
    overflow-wrap: anywhere;
}
.hero-copy, .section-subtitle, .quick-entry-index .qe-header p, .shift-card p, .fls-card-main p, .diagnosis-form-card p, .media-metric-card span, .platform-news-item strong, .knowledge-item strong, footer#about p, footer#about a, footer#about span {
    overflow-wrap: anywhere;
}
@media (max-width: 1200px) {
  :root {
        --site-content-gutter: 48px;
        --space-section-y: 76px;
  }
  .container, .fls-head, .fls-board, .exposure-shift .container, .option-a-check.diagnosis-redesign > .container, .media-resource-redesign > .container, .client-logo-section > .container, .insight-news-section > .container, .cta, footer#about > .container {
        width: min(calc(100% - var(--site-content-gutter)), var(--site-content-width));
  }
  .nav-links {
        gap: 22px;
  }
  .nav-actions .btn {
        min-width: 92px;
        padding-inline: 18px;
  }
  .hero-inner {
        grid-template-columns: minmax(0, 470px) minmax(0, 1fr);
        gap: 24px;
  }
  .hero h1 {
        white-space: normal;
        font-size: 48px;
  }
  .hero-copy {
        width: 100%;
        max-width: 510px;
  }
  .hero-stats {
        width: min(822px, 100%);
        max-width: 100%;
  }
  .quick-entry-index {
        min-height: auto;
        padding: 76px max(24px, calc((100vw - 1200px) / 2)) 34px;
  }
  .quick-entry-index .qe-header::before {
        width: 100%;
        background-size: 100% 170px;
  }
  .quick-entry-index .entry-grid {
        grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
        gap: 18px;
  }
  .quick-entry-index .scan-card {
        grid-column: 1 / -1;
        min-height: 0;
  }
  .quick-entry-index .entry-card {
        min-height: 0;
        margin-top: 0;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-matrix {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
  }
  .media-logo-panel, .media-logo-panel.is-platform-wall {
        min-height: 0;
  }
  .client-logo-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .client-proof-bar {
        gap: 14px;
        padding-inline: 20px;
  }
  footer#about .footer-grid {
        grid-template-columns: 1.3fr repeat(3, minmax(130px, 0.75fr));
  }
  footer#about .contact-card {
        grid-column: 1 / -1;
  }
}
@media (max-width: 992px) {
  :root {
        --site-content-gutter: 40px;
        --space-section-y: 68px;
        --site-title-size: 34px;
        --site-subtitle-size: 16px;
  }
  .hero {
        min-height: 0;
        padding: 68px 0 58px;
        background-image: linear-gradient(180deg, rgba(237, 244, 255, 0.98), rgba(246, 250, 255, 0.96));
        background-size: 100% 100%, auto 66%;
        background-position: center center, right top;
  }
  .hero-inner {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
  }
  .hero-copy-column {
        width: 100%;
        max-width: 680px;
        transform: none !important;
        animation: none !important;
  }
  .hero h1 {
        font-size: clamp(38px, 5.2vw, 46px);
        line-height: 1.2;
        letter-spacing: 0;
  }
  .hero-copy {
        max-width: 620px;
  }
  .hero-visual {
        display: block;
        width: 100%;
        max-width: 640px;
        height: 430px;
        margin: 0 auto;
        transform: none !important;
        animation: none !important;
  }
  .report-card {
        left: 0;
        width: min(58vw, 350px);
  }
  .dash {
        right: 0;
        width: min(46vw, 290px);
  }
  .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        margin-top: 30px;
  }
  .option-a-hero {
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
  }
  .shift-bridge {
        width: 46px;
        height: 46px;
        margin: -4px auto;
        transform: rotate(90deg);
  }
  .diagnosis-shell {
        grid-template-columns: minmax(0, 1fr);
        gap: 24px;
  }
  .diagnosis-shell::before {
        inset: 14px -10px 44px;
  }
  .diagnosis-report {
        max-width: 720px;
        margin: 0 auto;
  }
  .diagnosis-visual-accent, .solution-visual-accent, .media-visual-accent, .client-visual-accent, .insight-visual-accent {
        display: none;
  }
  .diagnosis-form-card {
        width: 100%;
        max-width: 720px;
        margin: 0 auto;
  }
  .diagnosis-flow {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px;
  }
  .diagnosis-flow-line {
        width: 2px;
        height: 24px;
        justify-self: center;
  }
  .fls-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .fls-card {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
  }
  .fls-card-main {
        min-height: 0;
  }
  .fls-card-main p {
        max-width: none;
  }
  .publish-flow {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px 20px;
  }
  .publish-step:not(:last-child)::after {
        display: none;
  }
  .insight-board {
        grid-template-columns: minmax(0, 1fr);
  }
  .platform-news-panel {
        min-height: 0;
  }
  footer#about .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        min-height: 0;
  }
  footer#about .footer-brand, footer#about .contact-card {
        grid-column: 1 / -1;
  }
  footer#about .footer-col {
        min-height: 0;
  }
  footer#about .copyright {
        height: auto;
        min-height: 74px;
        padding-block: 18px;
        gap: 14px;
        flex-wrap: wrap;
  }
  footer#about .copyright-left {
        flex-wrap: wrap;
        gap: 10px 16px;
  }
}
@media (max-width: 768px) {
  :root {
        --site-content-gutter: 32px;
        --space-section-y: 58px;
        --site-title-size: 30px;
        --site-subtitle-size: 15px;
  }
  .nav {
        height: auto;
        min-height: 64px;
        padding: 0;
  }
  .nav-inner {
        min-height: 64px;
        gap: 10px;
        flex-wrap: wrap;
  }
  .brand {
        min-width: 0;
        font-size: 18px;
  }
  .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        flex: 0 0 auto;
  }
  .nav-toggle {
        display: inline-grid;
        margin-left: auto;
  }
  .nav-links, .nav-actions {
        display: none;
  }
  .nav.is-menu-open .nav-links {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 10px 0 4px;
        overflow: visible;
  }
  .nav.is-menu-open .nav-actions {
        order: 4;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-bottom: 12px;
        margin-left: 0;
  }
  .nav-links > a, .nav-dropdown-trigger {
        width: 100%;
        padding: 11px 12px;
        border-radius: 12px;
        background: rgba(244, 248, 255, 0.9);
  }
  .nav-links a.active::after, .nav-links a::after {
        display: none;
  }
  .nav-item {
        width: 100%;
        display: block;
  }
  .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: rgba(33, 74, 145, 0.1) 0 10px 24px;
  }
  .nav-dropdown::before {
        display: none;
  }
  .hero {
        padding: 52px 0 46px;
        background-image: linear-gradient(180deg, rgba(237, 244, 255, 0.98), rgba(246, 250, 255, 0.96));
  }
  .hero h1 {
        font-size: clamp(32px, 8.4vw, 38px);
        line-height: 1.24;
  }
  .hero-copy {
        font-size: 15px;
        line-height: 1.78;
  }
  .hero-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
  }
  .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        height: 44px;
        padding-inline: 12px;
  }
  .hero-visual {
        height: 380px;
  }
  .report-card {
        width: min(66vw, 310px);
        height: auto;
        min-height: 262px;
        padding: 20px;
  }
  .dash {
        width: min(52vw, 268px);
        height: auto;
        min-height: 374px;
        padding: 22px;
  }
  .ai-chip {
        left: 44%;
        width: 72px;
        height: 72px;
        font-size: 26px;
  }
  .quick-entry-index {
        padding: 56px 16px 28px;
  }
  .quick-entry-index::after, .quick-entry-index .qe-header::after {
        display: none;
  }
  .quick-entry-index .qe-header::before {
        width: 100%;
        height: 138px;
        background-size: 100% 138px;
  }
  .quick-entry-index .entry-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .quick-entry-index .scan-card {
        padding: 18px;
  }
  .quick-entry-index .dashboard {
        grid-template-columns: minmax(110px, 0.8fr) minmax(0, 1.2fr);
  }
  .quick-entry-index .entry-visual {
        height: 118px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 116px;
  }
  .shift-card {
        min-height: 0;
  }
  .option-a-hero .shift-card-shot {
        max-height: 220px;
        object-fit: contain;
  }
  .diagnosis-form-card .option-a-fields, .diagnosis-form-card .option-a-proof, .option-a-fields, .option-a-proof {
        grid-template-columns: minmax(0, 1fr);
  }
  .diagnosis-form-card {
        padding: 22px;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
  }
  .media-metric-card {
        grid-template-columns: 58px minmax(0, 1fr);
        column-gap: 14px;
        padding: 18px;
  }
  .media-metric-icon {
        width: 58px;
        height: 58px;
  }
  .media-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .client-proof-bar {
        grid-template-columns: minmax(0, 1fr);
  }
  .client-proof-divider {
        display: none;
  }
  .client-logo-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 18px;
  }
  .knowledge-list {
        grid-template-columns: minmax(0, 1fr);
  }
  .knowledge-item {
        grid-template-columns: 42px minmax(0, 1fr) auto;
  }
  .cta {
        padding: 34px 24px;
  }
  .cta-content {
        display: grid;
        gap: 20px;
  }
  .cta-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
  }
}
@media (max-width: 576px) {
  :root {
        --site-content-gutter: 28px;
        --space-section-y: 48px;
        --site-title-size: 27px;
        --site-subtitle-size: 14px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        font-size: var(--site-title-size);
        line-height: 1.32;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p, .quick-entry-index .qe-header p {
        font-size: var(--site-subtitle-size);
        line-height: 1.72;
  }
  .hero {
        padding-top: 42px;
  }
  .hero h1 {
        font-size: clamp(29px, 8.6vw, 34px);
  }
  .hero-buttons {
        grid-template-columns: minmax(0, 1fr);
  }
  .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .hero-stat {
        min-height: 76px;
        padding: 12px;
        gap: 9px;
  }
  .hero-stat .stat-icon {
        width: 30px;
        height: 30px;
  }
  .hero-stat strong {
        font-size: 19px;
  }
  .hero-stat > div > span {
        white-space: normal;
        font-size: 11px;
  }
  .hero-visual {
        height: 335px;
        overflow: hidden;
  }
  .platform {
        left: 0;
        right: 0;
        height: 110px;
  }
  .report-card {
        left: 0;
        top: 38px;
        width: min(72vw, 280px);
        min-height: 226px;
        padding: 16px;
        border-radius: 18px;
  }
  .report-number {
        font-size: 22px;
  }
  .chart {
        height: 62px;
        gap: 6px;
  }
  .chart b {
        width: 18px;
  }
  .donut {
        width: 68px;
        height: 68px;
  }
  .dash {
        top: 18px;
        width: min(62vw, 238px);
        min-height: 312px;
        padding: 17px;
        border-radius: 20px;
  }
  .dash-title {
        font-size: 13px;
  }
  .score-row strong {
        font-size: 24px;
  }
  .dash-list {
        gap: 8px;
        font-size: 10px;
  }
  .float-stat {
        left: 0;
        top: 214px;
        width: 92px;
        height: 70px;
  }
  .ai-chip {
        left: 44%;
        bottom: 42px;
        width: 60px;
        height: 60px;
        border-radius: 18px;
        font-size: 22px;
  }
  .quick-entry-index {
        padding-inline: 14px;
  }
  .quick-entry-index .qe-header p {
        margin-bottom: 28px;
  }
  .quick-entry-index .entry-grid {
        grid-template-columns: minmax(0, 1fr);
  }
  .quick-entry-index .dashboard {
        grid-template-columns: minmax(0, 1fr);
  }
  .quick-entry-index .radar-art {
        justify-self: center;
  }
  .quick-entry-index .core-metrics-art {
        max-width: 280px;
  }
  .quick-entry-index .scan-form {
        grid-template-columns: minmax(0, 1fr);
        height: auto;
  }
  .quick-entry-index .scan-form button {
        min-height: 34px;
  }
  .quick-entry-index .trust {
        flex-wrap: wrap;
        row-gap: 10px;
        line-height: 1.35;
  }
  .option-a-hero, .fls-board, .media-metric-grid, .publish-flow, .cta-actions, .cta-points, footer#about .footer-grid {
        grid-template-columns: minmax(0, 1fr);
  }
  .fls-card {
        padding: 18px;
  }
  .fls-title-row {
        align-items: flex-start;
  }
  .media-matrix {
        padding: 14px;
        border-radius: 18px;
  }
  .diagnosis-visual-accent, .solution-visual-accent, .media-visual-accent, .client-visual-accent, .insight-visual-accent {
        display: none;
  }
  .media-logo-panel {
        padding: 16px 14px;
  }
  .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .media-logo-tile {
        height: 58px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 84px;
  }
  .client-logo-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding: 14px;
  }
  .client-logo-tile {
        height: 78px;
  }
  .client-proof-item {
        justify-content: flex-start;
  }
  .client-proof-item strong {
        font-size: 38px;
  }
  .insight-panel-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
  }
  .insight-panel-head span {
        order: 0;
  }
  .platform-news-panel, .knowledge-panel {
        padding: 20px 18px;
  }
  .knowledge-item {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 10px;
        padding: 12px;
  }
  .knowledge-item time {
        grid-column: 2;
  }
  .cta h2 {
        font-size: 27px;
  }
  .cta .btn {
        width: 100%;
        min-width: 0;
  }
  footer#about[data-auth-footer-page="login"],
  footer#about[data-auth-footer-page="register"] {
        padding-top: 48px;
  }
  footer#about .footer-col {
        padding-left: 0;
        border-left: 0;
  }
  footer#about .qr-row {
        flex-wrap: wrap;
  }
  footer#about .contact-card {
        padding: 24px 20px;
  }
  footer#about .copyright {
        align-items: flex-start;
        flex-direction: column;
  }
}
@media (max-width: 390px) {
  :root {
        --site-content-gutter: 24px;
        --space-section-y: 42px;
        --site-title-size: 25px;
  }
  .brand {
        font-size: 17px;
        gap: 9px;
  }
  .brand small {
        font-size: 9px;
        letter-spacing: 1px;
  }
  .nav-toggle {
        width: 38px;
        height: 38px;
  }
  .hero h1 {
        font-size: 28px;
  }
  .hero-copy {
        font-size: 14px;
  }
  .hero-stat {
        padding: 10px;
  }
  .hero-visual {
        height: 310px;
  }
  .report-card {
        width: min(74vw, 248px);
        min-height: 208px;
  }
  .dash {
        width: min(64vw, 218px);
        min-height: 292px;
        padding: 15px;
  }
  .shield {
        width: 34px;
        height: 38px;
  }
  .meter {
        margin-top: 14px;
  }
  .dash-list {
        margin-top: 16px;
  }
  .float-stat {
        top: 204px;
        transform: scale(0.9);
        transform-origin: left top;
  }
  .ai-chip {
        bottom: 36px;
  }
  .quick-entry-index .brand-title {
        font-size: 20px;
  }
  .quick-entry-index .progress-row {
        grid-template-columns: minmax(0, 1fr) 54px;
        gap: 10px;
  }
  .quick-entry-index .score {
        font-size: 20px;
  }
  .media-metric-card {
        grid-template-columns: 50px minmax(0, 1fr);
        padding: 15px;
  }
  .media-metric-icon {
        width: 50px;
        height: 50px;
  }
  .media-metric-card strong {
        font-size: 28px;
  }
  .media-logo-tile, .media-logo-panel.is-platform-wall .media-logo-tile {
        border-radius: 9px;
  }
  .client-logo-tile {
        height: 70px;
  }
  footer#about .contact-line {
        align-items: flex-start;
  }
  footer#about .contact-line strong {
        font-size: 17px;
  }
}
/* Responsive visual polish layer: improve tablet/mobile rhythm without changing desktop art direction */
@media (max-width: 1200px) and (min-width: 993px) {
    .hero-inner {
        grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
  }
    .hero h1 {
        font-size: 45px;
        line-height: 1.22;
  }
    .hero-copy {
        max-width: 500px;
  }
    .hero-buttons .btn {
        min-width: 146px;
  }
    .hero-stats {
        gap: 12px;
  }
    .media-logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
  }
    .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 992px) {
  :root {
        --space-heading-content: 32px;
  }
  main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 62px;
        padding-bottom: 62px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1 {
        max-width: 760px;
        font-size: 33px;
        line-height: 1.28;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p {
        max-width: 620px;
        margin-bottom: 32px;
        font-size: 15px;
        line-height: 1.72;
  }
  .hero {
        padding-top: 54px;
        padding-bottom: 48px;
  }
  .hero-copy-column {
        max-width: 720px;
  }
  .hero h1 {
        max-width: 690px;
  }
  .hero-copy {
        max-width: 640px;
        margin-bottom: 24px;
  }
  .hero-visual {
        max-width: 600px;
        height: 360px;
  }
  .report-card {
        width: min(52vw, 322px);
        min-height: 246px;
  }
  .dash {
        width: min(42vw, 268px);
        min-height: 344px;
  }
  .quick-entry-index {
        padding-top: 62px;
  }
  .quick-entry-index .qe-header h1 {
        font-size: 34px;
        line-height: 1.3;
  }
  .quick-entry-index .qe-header p {
        margin-bottom: 32px;
  }
  .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 12px;
  }
  .media-logo-panel {
        padding: 22px;
        border-radius: 20px;
  }
  .client-logo-board {
        gap: 12px;
  }
  .platform-news-panel, .knowledge-panel {
        border-radius: 20px;
  }
}
@media (max-width: 992px) and (min-width: 769px) {
  .hero {
        padding-top: 48px;
        padding-bottom: 42px;
  }
  .hero-inner {
        gap: 24px;
  }
  .hero h1 {
        font-size: clamp(38px, 4.6vw, 42px);
  }
  .hero-copy {
        margin-bottom: 20px;
  }
  .hero-stats {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin-top: 22px;
  }
  .hero-stat {
        min-height: 66px;
        padding: 10px;
        gap: 8px;
        border-radius: 15px;
  }
  .hero-stat .stat-icon {
        width: 28px;
        height: 28px;
  }
  .hero-stat strong {
        font-size: 19px;
  }
  .hero-stat > div > span {
        margin-top: 2px;
        font-size: 10px;
        white-space: normal;
  }
  .hero-visual {
        height: 302px;
        max-width: 560px;
  }
  .report-card {
        top: 24px;
        width: min(48vw, 292px);
        min-height: 218px;
        padding: 18px;
  }
  .dash {
        width: min(36vw, 242px);
        min-height: 292px;
        padding: 18px;
  }
  .dash-list {
        gap: 8px;
        margin-top: 16px;
        font-size: 10px;
  }
}
@media (max-width: 768px) {
  main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 54px;
        padding-bottom: 54px;
  }
  .nav {
        background: rgba(255, 255, 255, 0.96);
        box-shadow: 0 10px 28px rgba(45, 83, 150, 0.06);
  }
  .nav.is-menu-open {
        border-bottom-color: rgba(199, 217, 249, 0.92);
  }
  .nav.is-menu-open .nav-links, .nav.is-menu-open .nav-actions {
        animation: mobileMenuRise 0.22s ease both;
  }
  .hero {
        padding-top: 46px;
        padding-bottom: 40px;
  }
  .hero-inner {
        gap: 26px;
  }
  .hero h1 {
        max-width: 650px;
        font-size: clamp(33px, 6.2vw, 40px);
        line-height: 1.23;
  }
  .hero-copy {
        max-width: 620px;
        margin: 16px 0 22px;
  }
  .hero-stats {
        margin-top: 24px;
  }
  .hero-stat {
        min-height: 72px;
        border-radius: 16px;
  }
  .hero-visual {
        height: 315px;
        margin-top: 0;
  }
  .quick-entry-index .entry-grid {
        gap: 14px;
  }
  .quick-entry-index .entry-card {
        border-radius: 16px;
  }
  .fls-board {
        gap: 16px;
  }
  .fls-card {
        border-radius: 20px;
        padding: 20px;
  }
  .fls-card-main {
        gap: 12px;
  }
  .media-metric-card {
        border-radius: 18px;
  }
  .media-logo-tile {
        border-radius: 10px;
  }
  .client-proof-bar {
        align-items: stretch;
  }
  .client-proof-item {
        min-height: 84px;
        justify-content: flex-start;
        padding: 12px 14px;
        border: 1px solid rgba(209, 225, 249, 0.82);
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.68);
  }
  .insight-board {
        gap: 16px;
  }
}
@media (max-width: 576px) {
  :root {
        --site-content-gutter: 24px;
        --space-section-y: 42px;
        --space-heading-content: 24px;
        --site-title-size: 26px;
        --site-subtitle-size: 14px;
  }
  .container, .fls-head, .fls-board, .exposure-shift .container, .option-a-check.diagnosis-redesign > .container, .media-resource-redesign > .container, .client-logo-section > .container, .insight-news-section > .container, .cta, footer#about > .container {
        width: calc(100% - var(--site-content-gutter));
  }
  main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 42px;
        padding-bottom: 42px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        font-size: 26px;
        line-height: 1.32;
        letter-spacing: 0;
  }
  .section-title-accent {
        width: 38px;
        margin-top: 10px;
        margin-bottom: 12px;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p, .quick-entry-index .qe-header p {
        max-width: 330px;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.7;
  }
  .brand {
        font-size: 17px;
  }
  .brand-mark {
        width: 32px;
        height: 32px;
        border-radius: 10px;
  }
  .brand small {
        margin-top: -3px;
        font-size: 9px;
        letter-spacing: 1.2px;
  }
  .nav-inner {
        min-height: 60px;
  }
  .nav-toggle {
        width: 38px;
        height: 38px;
        border-radius: 11px;
  }
  .nav.is-menu-open .nav-links {
        gap: 6px;
        padding-top: 8px;
  }
  .nav-links > a, .nav-dropdown-trigger {
        padding: 10px 11px;
        font-size: 14px;
  }
  .nav-dropdown a {
        min-height: 40px;
  }
  .hero {
        padding-top: 30px;
        padding-bottom: 28px;
  }
  .eyebrow {
        margin-bottom: 12px;
        font-size: 13px;
  }
  .hero h1 {
        max-width: 365px;
        font-size: clamp(30px, 8.4vw, 34px);
        line-height: 1.22;
  }
  .hero-copy {
        max-width: 360px;
        margin: 15px 0 18px;
        font-size: 14px;
        line-height: 1.72;
  }
  .hero-buttons {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .hero-buttons .btn {
        height: 42px;
        border-radius: 9px;
        font-size: 14px;
  }
  .hero-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 18px;
  }
  .hero-stat {
        min-height: 58px;
        padding: 9px 10px;
        gap: 8px;
        border-radius: 14px;
        box-shadow: rgba(37, 78, 155, 0.08) 0 10px 22px;
  }
  .hero-stat .stat-icon {
        width: 25px;
        height: 25px;
  }
  .hero-stat strong {
        font-size: 18px;
  }
  .hero-stat > div > span {
        margin-top: 2px;
        font-size: 10px;
        line-height: 1.2;
  }
  .hero-visual {
        height: 238px;
        max-width: 365px;
        margin-top: 2px;
        overflow: hidden;
  }
  .platform {
        left: 10px;
        right: 10px;
        bottom: 0;
        height: 76px;
  }
  .report-card {
        left: -8px;
        top: 24px;
        width: 218px;
        min-height: 176px;
        padding: 12px;
        border-radius: 16px;
        transform: rotateZ(-1deg);
  }
  .report-head {
        gap: 8px;
        font-size: 10px;
  }
  .report-number {
        margin-top: 12px;
        font-size: 18px;
  }
  .chart {
        height: 46px;
        margin-top: 12px;
        gap: 5px;
  }
  .chart b {
        width: 14px;
  }
  .donut {
        right: 12px;
        bottom: 10px;
        width: 52px;
        height: 52px;
  }
  .donut::after {
        inset: 10px;
        font-size: 14px;
  }
  .dash {
        top: 8px;
        right: -4px;
        width: 182px;
        min-height: 222px;
        padding: 13px;
        border-radius: 18px;
        transform: rotateZ(1deg);
  }
  .dash-title {
        font-size: 12px;
        line-height: 1.3;
  }
  .shield {
        width: 34px;
        height: 36px;
        border-radius: 12px 12px 15px 15px;
  }
  .score-row {
        margin-top: 14px;
  }
  .score-row strong {
        font-size: 22px;
  }
  .score-row span, .meter-label {
        font-size: 9px;
  }
  .meter {
        margin-top: 10px;
  }
  .bar {
        height: 5px;
  }
  .dash-list, .float-stat {
        display: none;
  }
  .ai-chip {
        left: 45%;
        bottom: 23px;
        width: 48px;
        height: 48px;
        border-radius: 15px;
        font-size: 18px;
  }
  .quick-entry-index {
        padding: 42px 14px 24px;
  }
  .quick-entry-index .qe-header::before {
        top: -12px;
        height: 112px;
        background-size: 100% 112px;
  }
  .quick-entry-index .qe-header .accent {
        margin-left: 6px;
  }
  .quick-entry-index .qe-header p {
        max-width: 340px;
        margin-bottom: 24px;
  }
  .quick-entry-index .entry-grid {
        gap: 14px;
  }
  .quick-entry-index .scan-card {
        padding: 18px 16px 16px;
        border-radius: 16px;
  }
  .quick-entry-index .brand-title {
        font-size: 21px;
  }
  .quick-entry-index .scan-card > p {
        font-size: 14px;
  }
  .quick-entry-index .scan-panel {
        border-radius: 12px;
  }
  .quick-entry-index .dashboard {
        gap: 8px;
  }
  .quick-entry-index .radar-art {
        width: 118px;
        height: 118px;
  }
  .quick-entry-index .core-metrics-art {
        max-width: 272px;
  }
  .quick-entry-index .entry-card {
        display: grid;
        grid-template-columns: 86px minmax(0, 1fr);
        grid-template-areas:
          "visual title"
          "visual desc"
          "visual features"
          "button button";
        align-items: start;
        column-gap: 14px;
        row-gap: 6px;
        min-height: 0;
        padding: 16px;
        border-radius: 16px;
  }
  .quick-entry-index .entry-visual {
        grid-area: visual;
        width: 86px;
        height: 86px;
        margin: 4px 0 0;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(244, 249, 255, 0.9), rgba(255, 255, 255, 0.72));
  }
  .quick-entry-index .entry-visual img {
        max-height: 82px;
  }
  .quick-entry-index .entry-title {
        grid-area: title;
        font-size: 18px;
        line-height: 1.25;
  }
  .quick-entry-index .entry-title img {
        width: 21px;
        height: 21px;
  }
  .quick-entry-index .entry-card p {
        grid-area: desc;
        margin: 0;
        font-size: 13px;
        line-height: 1.45;
  }
  .quick-entry-index .features {
        grid-area: features;
        gap: 5px;
        margin-bottom: 4px;
  }
  .quick-entry-index .features li {
        gap: 6px;
        font-size: 12px;
        line-height: 1.28;
  }
  .quick-entry-index .check {
        width: 14px;
        height: 14px;
        font-size: 10px;
  }
  .quick-entry-index .entry-button {
        grid-area: button;
        height: 38px;
        margin-top: 4px;
        border-radius: 10px;
  }
  .quick-entry-index .trust {
        margin-top: 14px;
        gap: 10px 15px;
        font-size: 12px;
        letter-spacing: 0.03em;
  }
  .option-a-hero {
        gap: 14px;
  }
  .shift-card {
        border-radius: 18px;
  }
  .shift-card h3 {
        font-size: 22px;
        line-height: 1.32;
  }
  .diagnosis-form-card {
        border-radius: 20px;
  }
  .diagnosis-form-head h3 {
        font-size: 22px;
        line-height: 1.35;
  }
  .option-a-control input, .option-a-control select {
        min-height: 46px;
  }
  .diagnosis-form-card .option-a-cta {
        min-height: 46px;
        font-size: 18px;
  }
  .fls-head {
        margin-bottom: 24px;
  }
  .fls-board {
        gap: 14px;
  }
  .fls-card {
        padding: 16px;
        border-radius: 18px;
  }
  .fls-card::after {
        right: 14px;
        top: 10px;
        font-size: 34px;
  }
  .fls-card-main {
        min-height: 0;
        gap: 10px;
  }
  .fls-title-row {
        gap: 10px;
  }
  .fls-icon-box {
        width: 44px;
        height: 44px;
        border-radius: 14px;
  }
  .fls-icon-img {
        width: 34px;
        height: 34px;
  }
  .fls-card-main h2, .fls-title-row h2 {
        font-size: 19px;
        line-height: 1.3;
  }
  .fls-card-main p {
        max-width: none;
        font-size: 13px;
        line-height: 1.65;
  }
  .fls-card-main button {
        width: 126px;
        height: 36px;
        border-radius: 11px;
  }
  .fls-card-detail {
        margin-top: 2px;
  }
  .media-command {
        gap: 18px;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .media-metric-card {
        min-height: 134px;
        grid-template-columns: minmax(0, 1fr);
        gap: 0;
        padding: 13px 12px 12px;
        border-radius: 16px;
  }
  .media-metric-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
  }
  .media-metric-card small {
        font-size: 12px;
        line-height: 1.35;
  }
  .media-metric-card strong {
        margin-top: 6px;
        font-size: 27px;
  }
  .media-metric-card span, .media-metric-card > span {
        margin-top: 7px;
        font-size: 11px !important;
        line-height: 1.38;
  }
  .media-matrix {
        padding: 12px;
        gap: 12px;
  }
  .media-logo-panel {
        padding: 15px 13px;
        border-radius: 16px;
  }
  .media-logo-head {
        align-items: flex-start;
        margin-bottom: 14px;
  }
  .media-logo-head h3 {
        font-size: 18px;
  }
  .media-logo-head span {
        font-size: 12px !important;
  }
  .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
  }
  .media-logo-tile {
        height: 56px;
        border-radius: 10px;
  }
  .media-logo-tile img {
        width: calc(100% - 16px);
        height: calc(100% - 16px);
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 78px;
        border-radius: 12px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile img {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
  }
  .publish-flow {
        gap: 10px;
        padding: 14px;
        border-radius: 16px;
  }
  .publish-step {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
        padding: 10px;
        border: 1px solid rgba(213, 228, 249, 0.78);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.74);
  }
  .publish-step b, .publish-step-icon {
        width: 42px;
        height: 42px;
  }
  .publish-step span {
        font-size: 14px;
  }
  .client-proof-bar {
        gap: 10px;
        margin-bottom: 22px;
        padding: 12px;
        border-radius: 18px;
  }
  .client-proof-item {
        min-height: 72px;
        gap: 12px;
        padding: 10px 12px;
        border-radius: 14px;
  }
  .client-proof-item strong {
        font-size: 32px;
  }
  .client-proof-item strong span {
        font-size: 16px;
        vertical-align: 11px;
  }
  .client-proof-item b {
        font-size: 14px;
  }
  .client-proof-item em {
        margin-top: 2px;
        white-space: normal;
        font-size: 12px;
        line-height: 1.35;
  }
  .client-logo-board {
        gap: 9px;
        margin-top: 20px;
        padding: 12px;
        border-radius: 18px;
  }
  .client-logo-tile {
        height: 70px;
        border-radius: 12px;
  }
  .platform-news-panel, .knowledge-panel {
        padding: 17px 15px;
        border-radius: 18px;
  }
  .insight-panel-head {
        margin-bottom: 14px;
        padding-bottom: 12px;
  }
  .insight-panel-head h3 {
        font-size: 20px;
  }
  .platform-news-list {
        gap: 10px;
  }
  .platform-news-list::before {
        left: 12px;
        top: 18px;
        bottom: 18px;
        opacity: 0.45;
  }
  .platform-news-item {
        min-height: 0;
        gap: 5px;
        padding: 11px 10px 11px 34px;
        border: 1px solid rgba(214, 228, 249, 0.82);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.68);
  }
  .platform-news-item::before {
        left: 8px;
        top: 17px;
  }
  .platform-news-item strong {
        font-size: 14px;
        line-height: 1.5;
  }
  .knowledge-list {
        gap: 10px;
  }
  .knowledge-item {
        grid-template-columns: 34px minmax(0, 1fr);
        min-height: 0;
        gap: 10px;
        padding: 11px;
        border-radius: 13px;
  }
  .knowledge-item em {
        width: 32px;
        height: 32px;
        border-radius: 10px;
        font-size: 12px;
  }
  .knowledge-item strong {
        display: -webkit-box;
        overflow: hidden;
        font-size: 14px;
        line-height: 1.5;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
  }
  .knowledge-item time {
        grid-column: 2;
        font-size: 12px;
  }
  .cta {
        margin-top: 34px;
        margin-bottom: 34px;
        padding: 26px 18px 20px;
        border-radius: 20px;
  }
  .cta h2 {
        font-size: 25px;
        line-height: 1.3;
  }
  .cta p {
        font-size: 14px;
        line-height: 1.65;
  }
  .cta-content {
        gap: 16px;
  }
  .cta-actions, .cta-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta .btn {
        height: 42px;
        border-radius: 10px;
        font-size: 14px;
  }
  .cta-points {
        gap: 9px;
        margin-top: 16px;
        font-size: 12px;
  }
  .cta-points span {
        min-height: 48px;
        padding: 8px;
        border-radius: 12px;
  }
  .cta-point-icon {
        width: 28px;
        height: 28px;
        flex-basis: 28px;
  }
  footer#about[data-auth-footer-page="login"],
  footer#about[data-auth-footer-page="register"] {
        padding-top: 42px;
  }
  footer#about .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 28px 18px;
        padding-bottom: 32px;
  }
  footer#about .footer-brand, footer#about .contact-card {
        grid-column: 1 / -1;
  }
  footer#about .footer-brand p {
        max-width: 330px;
        margin: 14px 0 18px;
        font-size: 13px;
        line-height: 1.65;
  }
  footer#about .qr-row {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 112px));
        gap: 12px;
  }
  footer#about .qr {
        width: 100%;
        padding: 10px;
        border-radius: 14px;
  }
  footer#about .qr-box {
        width: 100%;
        max-width: 86px;
        aspect-ratio: 1;
        height: auto;
        margin: 0 auto;
  }
  footer#about .footer-col {
        min-height: 0;
        padding-left: 0;
        border-left: 0;
  }
  footer#about .footer-col h4, footer#about .contact-card h3 {
        margin-bottom: 16px;
        font-size: 16px;
  }
  footer#about .footer-col h4::after, footer#about .contact-card h3::after {
        bottom: -8px;
  }
  footer#about .footer-col a {
        margin: 10px 0;
        font-size: 13px;
        line-height: 1.5;
  }
  footer#about .contact-card {
        padding: 20px 18px;
        border-radius: 18px;
  }
  footer#about .contact-card::before {
        display: none;
  }
  footer#about .contact-line {
        margin: 14px 0;
  }
  footer#about .contact-line .contact-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
  }
  footer#about .contact-line strong {
        font-size: 17px;
  }
  footer#about .contact-card .btn {
        height: 44px;
        margin-top: 14px;
        font-size: 15px;
  }
  footer#about .copyright {
        gap: 10px;
        padding-block: 18px;
        font-size: 11px;
  }
  footer#about .copyright-left {
        gap: 8px;
  }
}
@media (max-width: 390px) {
  :root {
        --site-content-gutter: 22px;
        --space-section-y: 38px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        font-size: 24px;
  }
  .hero h1 {
        font-size: 29px;
  }
  .hero-copy {
        font-size: 13px;
        line-height: 1.68;
  }
  .hero-buttons {
        gap: 8px;
  }
  .hero-buttons .btn {
        height: 40px;
        padding-inline: 8px;
        font-size: 13px;
  }
  .hero-stat {
        min-height: 56px;
        padding: 8px;
  }
  .hero-stat strong {
        font-size: 17px;
  }
  .hero-visual {
        height: 218px;
  }
  .report-card {
        width: 202px;
        min-height: 166px;
  }
  .dash {
        width: 170px;
        min-height: 208px;
        padding: 12px;
  }
  .ai-chip {
        width: 42px;
        height: 42px;
        bottom: 18px;
  }
  .quick-entry-index {
        padding-inline: 11px;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 76px minmax(0, 1fr);
        column-gap: 12px;
        padding: 14px;
  }
  .quick-entry-index .entry-visual {
        width: 76px;
        height: 76px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 72px;
  }
  .quick-entry-index .entry-title {
        font-size: 17px;
  }
  .quick-entry-index .features li {
        font-size: 11px;
  }
  .media-metric-card {
        min-height: 126px;
        padding: 12px 10px;
  }
  .media-metric-icon {
        width: 38px;
        height: 38px;
  }
  .media-metric-card strong {
        font-size: 24px;
  }
  .client-proof-item strong {
        font-size: 30px;
  }
  .client-logo-tile {
        height: 66px;
  }
  .cta-actions, .cta-points {
        grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 360px) {
  .hero h1 {
        font-size: 26px;
  }
  .hero-visual {
        height: 205px;
  }
  .report-card {
        width: 188px;
        left: 0;
  }
  .dash {
        width: 158px;
        right: 0;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: minmax(0, 1fr);
        grid-template-areas:
          "visual"
          "title"
          "desc"
          "features"
          "button";
  }
  .quick-entry-index .entry-visual {
        width: 100%;
        height: 88px;
        margin: 0;
  }
  .quick-entry-index .entry-visual img {
        max-height: 86px;
  }
  .media-metric-grid, footer#about .footer-grid {
        grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 330px) {
  .hero h1 {
        font-size: 25px;
        line-height: 1.24;
  }
}
@keyframes mobileMenuRise {
    from {
        opacity: 0;
        transform: translateY(-6px);
  }
    to {
        opacity: 1;
        transform: translateY(0);
  }
}
/* Tablet and mobile visual rebuild layer: keep desktop intact, redesign small-screen rhythm. */
@media (max-width: 1199px) {
    html,
    body {
        max-width: 100%;
        overflow-x: hidden;
  }
    body {
        background: #f7faff;
  }
    img,
    svg {
        max-width: 100%;
  }
    .container,
    .fls-head,
    .fls-board,
    .exposure-shift .container,
    .option-a-check.diagnosis-redesign > .container,
    .media-resource-redesign > .container,
    .client-logo-section > .container,
    .insight-news-section > .container,
    .cta,
    footer#about > .container {
        max-width: none;
        box-sizing: border-box;
  }
    .hero-copy-column,
    .hero-buttons,
    .hero-stats,
    .hero-stat,
    .hero-visual,
    .quick-entry-index .glass-card,
    .quick-entry-index .entry-grid,
    .quick-entry-index .scan-panel,
    .quick-entry-index .entry-card,
    .fls-card,
    .media-command,
    .media-matrix,
    .media-logo-panel,
    .media-logo-wall,
    .client-logo-board,
    .insight-board,
    .platform-news-panel,
    .knowledge-panel,
    .cta-content,
    footer#about .footer-grid {
        min-width: 0;
        max-width: 100%;
  }
    .section-title,
    .exposure-shift .section-title,
    .option-a-check .section-title,
    .media-resource-redesign .section-title,
    .client-logo-section .section-title,
    .insight-news-section .section-title,
    .fls-head h1,
    .quick-entry-index .qe-header h1 {
        text-wrap: balance;
  }
    .section-subtitle,
    .hero-copy,
    .quick-entry-index .qe-header p,
    .fls-head p,
    .media-resource-redesign .section-subtitle,
    .client-logo-section .section-subtitle,
    .insight-news-section .section-subtitle {
        text-wrap: pretty;
  }
}
@media (max-width: 992px) {
  .nav {
        height: auto;
        min-height: 64px;
        padding: 0;
        background: rgba(255, 255, 255, 0.96);
        box-shadow: rgba(37, 77, 148, 0.08) 0 8px 26px;
  }
  .nav-inner {
        min-height: 64px;
        gap: 10px;
        flex-wrap: wrap;
  }
  .brand {
        min-width: 0;
  }
  .nav-toggle {
        display: inline-grid;
        margin-left: auto;
  }
  .nav-links, .nav-actions {
        display: none;
  }
  .nav.is-menu-open {
        border-bottom-color: rgba(199, 217, 249, 0.92);
  }
  .nav.is-menu-open .nav-links {
        order: 3;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 8px 0 4px;
        overflow: visible;
  }
  .nav.is-menu-open .nav-actions {
        order: 4;
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        padding-bottom: 12px;
        margin-left: 0;
  }
  .nav-links > a, .nav-dropdown-trigger {
        width: 100%;
        padding: 11px 12px;
        border-radius: 12px;
        background: rgba(244, 248, 255, 0.94);
        white-space: nowrap;
  }
  .nav-links a.active::after, .nav-links a::after {
        display: none;
  }
  .nav-item {
        width: 100%;
        display: block;
  }
  .nav-dropdown {
        position: static;
        width: 100%;
        margin-top: 8px;
        padding: 8px;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: rgba(33, 74, 145, 0.1) 0 10px 24px;
  }
  .nav-dropdown::before {
        display: none;
  }
}
@media (max-width: 1199px) and (min-width: 769px) {
  :root {
        --site-content-gutter: clamp(40px, 5.2vw, 64px);
  }
  main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: clamp(58px, 7vw, 74px);
        padding-bottom: clamp(58px, 7vw, 74px);
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        font-size: clamp(31px, 4vw, 38px);
        line-height: 1.24;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p, .quick-entry-index .qe-header p {
        max-width: 660px;
        margin-bottom: 30px;
        font-size: 15px;
        line-height: 1.72;
  }
  .hero {
        min-height: 0;
        padding: 54px 0 50px;
        background:
          radial-gradient(circle at 86% 22%, rgba(23, 105, 255, 0.12), transparent 28%),
          linear-gradient(180deg, rgba(237, 244, 255, 0.98), rgba(247, 251, 255, 0.98));
  }
  .hero-inner {
        min-height: 0;
        grid-template-columns: minmax(0, 1.02fr) minmax(286px, 0.82fr);
        align-items: center;
        gap: clamp(24px, 4.2vw, 42px);
  }
  .hero-copy-column {
        width: 100%;
        max-width: none;
        transform: none !important;
        animation: none !important;
  }
  .hero h1 {
        max-width: 560px;
        font-size: clamp(38px, 4.4vw, 48px);
        line-height: 1.18;
        letter-spacing: 0;
  }
  .hero-copy {
        max-width: 540px;
        margin: 18px 0 24px;
        font-size: 15px;
        line-height: 1.76;
  }
  .hero-buttons {
        max-width: 330px;
  }
  .hero-buttons .btn {
        height: 46px;
        min-width: 144px;
  }
  .hero-stats {
        width: 100%;
        max-width: 540px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
        margin-top: 26px;
  }
  .hero-stat {
        min-height: 72px;
        padding: 12px 14px;
        border-radius: 18px;
  }
  .hero-stat .stat-icon {
        width: 30px;
        height: 30px;
  }
  .hero-stat strong {
        font-size: 20px;
  }
  .hero-stat > div > span {
        margin-top: 2px;
        font-size: 11px;
        white-space: normal;
  }
  .hero-visual {
        display: block;
        width: 100%;
        max-width: none;
        height: clamp(300px, 36vw, 380px);
        margin: 0;
        overflow: hidden;
        transform: none !important;
        animation: none !important;
  }
  .report-card {
        left: 0;
        top: 38px;
        width: min(54%, 304px);
        min-height: 226px;
        padding: 18px;
        border-radius: 20px;
  }
  .dash {
        right: 0;
        top: 24px;
        width: min(50%, 270px);
        min-height: 314px;
        padding: 18px;
        border-radius: 22px;
  }
  .float-stat {
        display: none;
  }
  .ai-chip {
        left: 42%;
        bottom: 72px;
        width: 56px;
        height: 56px;
        border-radius: 18px;
        font-size: 22px;
  }
  .dash-list {
        display: none;
  }
  .quick-entry-index {
        padding-top: 58px;
  }
  .quick-entry-index .entry-grid {
        gap: 16px;
  }
  .quick-entry-index .scan-card {
        padding: 22px;
        border-radius: 22px;
  }
  .quick-entry-index .entry-card {
        padding: 20px;
        border-radius: 20px;
  }
  .quick-entry-index .entry-visual {
        height: 110px;
  }
  .fls-board {
        gap: 18px;
  }
  .fls-card {
        padding: 22px;
        border-radius: 22px;
        box-shadow: rgba(42, 86, 170, 0.1) 0 18px 42px, rgba(255, 255, 255, 0.9) 0 1px 0 inset;
  }
  .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        gap: 10px;
  }
  .client-logo-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 768px) {
  :root {
        --site-content-gutter: 28px;
  }
  main > .section, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 46px;
        padding-bottom: 46px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        max-width: 100%;
        font-size: clamp(25px, 6.2vw, 32px);
        line-height: 1.27;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p, .quick-entry-index .qe-header p {
        max-width: 92%;
        margin-bottom: 24px;
        font-size: 14px;
        line-height: 1.68;
  }
  .hero {
        padding: 38px 0 34px;
        background:
          radial-gradient(circle at 82% 18%, rgba(23, 105, 255, 0.12), transparent 28%),
          linear-gradient(180deg, #eef5ff 0%, #f8fbff 100%);
  }
  .hero-inner {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 22px;
  }
  .hero-copy-column {
        width: 100%;
        max-width: 100%;
        transform: none !important;
        animation: none !important;
  }
  .eyebrow {
        margin-bottom: 10px;
        font-size: 12px;
  }
  .hero h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(29px, 7.6vw, 36px);
        line-height: 1.18;
        letter-spacing: 0;
        overflow-wrap: anywhere;
  }
  .hero h1 span {
        white-space: nowrap;
  }
  .hero h1 br {
        display: none;
  }
  .hero-copy {
        width: 100%;
        max-width: 100%;
        margin: 14px 0 18px;
        font-size: 14px;
        line-height: 1.7;
  }
  .hero-buttons {
        width: min(100%, 380px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .hero-buttons .btn {
        width: 100%;
        min-width: 0;
        height: 43px;
        padding-inline: 10px;
        border-radius: 12px;
        font-size: 14px;
  }
  .hero-stats {
        width: 100%;
        max-width: 100%;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
  }
  .hero-stat {
        min-height: 64px;
        justify-content: flex-start;
        gap: 8px;
        padding: 10px 11px;
        border-radius: 16px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(247, 251, 255, 0.9));
        box-shadow: rgba(38, 78, 155, 0.08) 0 10px 24px, rgba(255, 255, 255, 0.9) 0 1px 0 inset;
  }
  .hero-stat .stat-icon {
        width: 24px;
        height: 24px;
        flex-basis: 24px;
  }
  .hero-stat strong {
        font-size: 18px;
  }
  .hero-stat > div > span {
        margin-top: 2px;
        font-size: 10px;
        line-height: 1.22;
        white-space: normal;
  }
  .hero-visual {
        width: 100%;
        height: auto;
        max-width: 100%;
        margin: 4px 0 0;
        overflow: visible;
        transform: none !important;
        animation: none !important;
  }
  .platform, .report-card, .float-stat, .ai-chip {
        display: none;
  }
  .dash {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 0;
        padding: 18px;
        border-radius: 22px;
        transform: none;
        background: linear-gradient(145deg, #09246f 0%, #061747 100%);
        box-shadow: rgba(20, 75, 180, 0.2) 0 20px 44px, rgba(255, 255, 255, 0.14) 0 1px 0 inset;
  }
  .dash-top {
        align-items: center;
  }
  .dash-title {
        font-size: 14px;
  }
  .shield {
        width: 38px;
        height: 38px;
        border-radius: 14px;
  }
  .score-row {
        margin-top: 16px;
  }
  .score-row strong {
        font-size: 27px;
  }
  .meter {
        margin-top: 11px;
  }
  .dash-list {
        display: none;
  }
  .quick-entry-index {
        padding: 44px 14px 28px;
  }
  .quick-entry-index::before, .quick-entry-index::after, .quick-entry-index .qe-bg-arc, .quick-entry-index .qe-header::after {
        display: none;
  }
  .quick-entry-index .qe-header::before {
        top: -10px;
        height: 112px;
        background-size: 100% 112px;
        opacity: 0.7;
  }
  .quick-entry-index .qe-header {
        margin-bottom: 22px;
  }
  .quick-entry-index .qe-header p {
        max-width: 92%;
  }
  .quick-entry-index .entry-grid {
        width: 100%;
        grid-template-columns: minmax(0, 1fr);
        gap: 12px;
  }
  .quick-entry-index .scan-card {
        padding: 18px 16px 16px;
        border-radius: 20px;
        box-shadow: rgba(42, 86, 170, 0.1) 0 18px 42px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .quick-entry-index .brand-title {
        font-size: 20px;
  }
  .quick-entry-index .scan-card > p {
        font-size: 13px;
  }
  .quick-entry-index .scan-form {
        grid-template-columns: minmax(0, 1fr) 94px;
        gap: 8px;
  }
  .quick-entry-index .input-wrap {
        min-width: 0;
  }
  .quick-entry-index .scan-form button {
        min-width: 0;
        padding-inline: 8px;
        font-size: 13px;
  }
  .quick-entry-index .scan-panel {
        padding: 10px;
        border-radius: 15px;
  }
  .quick-entry-index .scan-meta {
        gap: 8px;
        font-size: 10px;
  }
  .quick-entry-index .progress-row {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 10px;
  }
  .quick-entry-index .score {
        width: auto;
        min-width: 48px;
        font-size: 21px;
  }
  .quick-entry-index .dashboard {
        grid-template-columns: minmax(0, 1fr);
        justify-items: center;
        gap: 8px;
  }
  .quick-entry-index .radar-art {
        display: none;
  }
  .quick-entry-index .core-metrics-art {
        width: min(100%, 315px);
        max-width: 100%;
        border-radius: 12px;
  }
  .quick-entry-index .entry-card {
        display: grid;
        grid-template-columns: 74px minmax(0, 1fr);
        grid-template-areas:
          "visual title"
          "visual desc"
          "visual features"
          "button button";
        column-gap: 12px;
        row-gap: 6px;
        align-items: start;
        min-height: 0;
        padding: 15px;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
        box-shadow: rgba(43, 87, 170, 0.09) 0 14px 32px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .quick-entry-index .entry-visual {
        grid-area: visual;
        width: 74px;
        height: 74px;
        margin: 2px 0 0;
        border-radius: 17px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 70px;
  }
  .quick-entry-index .entry-title {
        grid-area: title;
        font-size: 17px;
        line-height: 1.25;
  }
  .quick-entry-index .entry-title img {
        width: 20px;
        height: 20px;
  }
  .quick-entry-index .entry-card p {
        grid-area: desc;
        margin: 0;
        font-size: 12px;
        line-height: 1.45;
  }
  .quick-entry-index .features {
        grid-area: features;
        gap: 4px;
        margin: 0;
  }
  .quick-entry-index .features li {
        gap: 5px;
        font-size: 11px;
        line-height: 1.3;
  }
  .quick-entry-index .check {
        width: 13px;
        height: 13px;
        font-size: 9px;
  }
  .quick-entry-index .entry-button {
        grid-area: button;
        height: 37px;
        margin-top: 5px;
        border-radius: 12px;
        font-size: 13px;
  }
  .option-a-shift {
        padding-top: 44px;
        padding-bottom: 42px;
  }
  .option-a-hero {
        gap: 12px;
        margin-top: 22px;
  }
  .shift-card {
        padding: 18px;
        border-radius: 20px;
        box-shadow: rgba(44, 86, 170, 0.1) 0 16px 36px, rgba(255, 255, 255, 0.82) 0 1px 0 inset;
  }
  .shift-card h3 {
        font-size: 21px;
        line-height: 1.3;
  }
  .shift-card p {
        font-size: 13px;
        line-height: 1.62;
  }
  .option-a-hero .shift-card-shot {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        max-height: 152px;
        margin-top: 14px;
        object-fit: contain;
        transform: none !important;
  }
  .shift-bridge {
        width: 40px;
        height: 40px;
        margin: -2px auto;
        font-size: 20px;
  }
  .diagnosis-shell {
        gap: 16px;
  }
  .diagnosis-report, .diagnosis-form-card {
        border-radius: 20px;
  }
  .diagnosis-form-card {
        padding: 18px;
  }
  .diagnosis-form-head h3 {
        font-size: 21px;
        line-height: 1.34;
  }
  .option-a-control input, .option-a-control select {
        min-height: 44px;
  }
  .diagnosis-form-card .option-a-cta {
        min-height: 46px;
        font-size: 17px;
  }
  .fls-head {
        margin-bottom: 22px;
  }
  .fls-board {
        gap: 12px;
  }
  .fls-card {
        padding: 16px;
        border-radius: 20px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.92));
        box-shadow: rgba(44, 86, 170, 0.08) 0 14px 34px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .fls-card::after {
        right: 14px;
        top: 10px;
        font-size: 30px;
        opacity: 0.8;
  }
  .fls-title-row {
        gap: 10px;
  }
  .fls-icon-box {
        width: 42px;
        height: 42px;
        border-radius: 14px;
  }
  .fls-card-main h2, .fls-title-row h2 {
        font-size: 18px;
  }
  .fls-card-main p {
        font-size: 13px;
        line-height: 1.62;
  }
  .fls-card-main button {
        width: 116px;
        height: 35px;
        border-radius: 11px;
        font-size: 13px;
  }
  .fls-logo-cluster {
        display: none;
  }
  .fls-resource-row, .fls-geo-step, .fls-partner-item {
        border-radius: 13px;
  }
  .media-command {
        gap: 16px;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .media-metric-card {
        min-height: 122px;
        padding: 12px;
        border-radius: 18px;
        background: linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(248, 251, 255, 0.9));
        box-shadow: rgba(44, 86, 170, 0.08) 0 12px 28px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .media-metric-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 7px;
  }
  .media-metric-card small {
        font-size: 11px;
  }
  .media-metric-card strong {
        margin-top: 4px;
        font-size: 24px;
  }
  .media-metric-card span, .media-metric-card > span {
        margin-top: 5px;
        font-size: 10px !important;
        line-height: 1.35;
  }
  .media-matrix {
        padding: 10px;
        gap: 12px;
        border-radius: 20px;
  }
  .media-logo-panel {
        padding: 14px 12px;
        border-radius: 18px;
        box-shadow: rgba(44, 86, 170, 0.06) 0 12px 30px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .media-logo-head {
        margin-bottom: 12px;
  }
  .media-logo-head h3 {
        font-size: 17px;
  }
  .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
  }
  .media-logo-tile {
        height: 54px;
        border-radius: 12px;
        box-shadow: none;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 72px;
        border-radius: 13px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile img {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
  }
  .publish-flow {
        gap: 9px;
        padding: 12px;
        border-radius: 18px;
  }
  .publish-step {
        grid-template-columns: 38px minmax(0, 1fr);
        gap: 9px;
        padding: 9px;
        border-radius: 14px;
  }
  .publish-step b, .publish-step-icon {
        width: 38px;
        height: 38px;
  }
  .publish-step span {
        font-size: 13px;
  }
  .publish-step small {
        font-size: 11px;
        line-height: 1.35;
  }
  .client-proof-bar {
        gap: 9px;
        padding: 10px;
        border-radius: 20px;
  }
  .client-proof-item {
        min-height: 66px;
        padding: 10px 11px;
        border-radius: 16px;
  }
  .client-proof-item strong {
        font-size: 29px;
  }
  .client-proof-item b {
        font-size: 13px;
  }
  .client-proof-item em {
        display: -webkit-box;
        overflow: hidden;
        font-size: 11px;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
  }
  .client-logo-board {
        gap: 8px;
        margin-top: 16px;
        padding: 10px;
        border-radius: 20px;
  }
  .client-logo-tile {
        height: 58px;
        border-radius: 13px;
        box-shadow: none;
  }
  .platform-news-panel, .knowledge-panel {
        padding: 16px;
        border-radius: 20px;
        box-shadow: rgba(44, 86, 170, 0.08) 0 14px 34px, rgba(255, 255, 255, 0.92) 0 1px 0 inset;
  }
  .insight-panel-head {
        align-items: flex-start;
        margin-bottom: 10px;
        padding-bottom: 10px;
  }
  .insight-panel-head h3 {
        font-size: 19px;
  }
  .insight-panel-head span {
        height: 26px;
        padding-inline: 10px;
        font-size: 11px;
  }
  .platform-news-list, .knowledge-list {
        gap: 0;
  }
  .platform-news-list::before {
        display: none;
  }
  .platform-news-item {
        min-height: 0;
        gap: 4px;
        padding: 12px 0 12px 16px;
        border: 0;
        border-bottom: 1px solid rgba(214, 228, 249, 0.84);
        border-radius: 0;
        background: transparent;
  }
  .platform-news-item:last-child, .knowledge-item:last-child {
        border-bottom: 0;
  }
  .platform-news-item::before {
        left: 0;
        top: 19px;
        width: 7px;
        height: 7px;
        border: 0;
  }
  .platform-news-item time, .knowledge-item time {
        font-size: 11px;
  }
  .platform-news-item strong {
        font-size: 14px;
        line-height: 1.45;
  }
  .knowledge-item {
        grid-template-columns: 32px minmax(0, 1fr);
        gap: 10px;
        min-height: 0;
        padding: 12px 0;
        border: 0;
        border-bottom: 1px solid rgba(214, 228, 249, 0.84);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
  }
  .knowledge-item em {
        width: 30px;
        height: 30px;
        border-radius: 10px;
        font-size: 11px;
  }
  .knowledge-item strong {
        font-size: 14px;
        line-height: 1.45;
  }
  .knowledge-item time {
        grid-column: 2;
  }
  .cta {
        margin-top: 30px;
        margin-bottom: 30px;
        padding: 24px 18px 18px;
        border-radius: 22px;
  }
  .cta h2 {
        font-size: 24px;
        line-height: 1.3;
  }
  .cta p {
        font-size: 13px;
        line-height: 1.62;
  }
  .cta-content {
        gap: 14px;
  }
  .cta-actions, .cta-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cta .btn {
        height: 41px;
        min-width: 0;
        border-radius: 12px;
        font-size: 13px;
  }
  .cta-points {
        gap: 8px;
        margin-top: 14px;
  }
  .cta-points span {
        min-height: 46px;
        padding: 8px;
        border-radius: 13px;
        font-size: 11px;
  }
  footer#about[data-auth-footer-page="login"],
  footer#about[data-auth-footer-page="register"] {
        padding-top: 40px;
  }
  footer#about .footer-grid {
        gap: 22px 16px;
        padding-bottom: 28px;
  }
  footer#about .footer-brand p {
        max-width: 100%;
        margin: 12px 0 16px;
  }
  footer#about .footer-col h4, footer#about .contact-card h3 {
        font-size: 15px;
  }
  footer#about .footer-col a {
        margin: 8px 0;
        font-size: 12px;
  }
  footer#about .contact-card {
        padding: 18px 16px;
        border-radius: 20px;
  }
  footer#about .contact-line {
        margin: 12px 0;
  }
  footer#about .contact-line strong {
        font-size: 15px;
  }
}
@media (min-width: 390px) and (max-width: 576px) {
  .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .client-logo-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 390px) {
  :root {
        --site-content-gutter: 22px;
  }
  .hero h1 {
        font-size: 28px;
  }
  .hero-copy {
        font-size: 13px;
  }
  .hero-buttons .btn {
        height: 40px;
        font-size: 12px;
  }
  .hero-stat {
        min-height: 58px;
        padding: 9px;
  }
  .hero-stat strong {
        font-size: 16px;
  }
  .hero-stat > div > span {
        font-size: 9px;
  }
  .dash {
        padding: 16px;
        border-radius: 20px;
  }
  .quick-entry-index {
        padding-inline: 11px;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 66px minmax(0, 1fr);
        column-gap: 10px;
        padding: 14px;
  }
  .quick-entry-index .entry-visual {
        width: 66px;
        height: 66px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 62px;
  }
  .quick-entry-index .entry-title {
        font-size: 16px;
  }
  .quick-entry-index .features li {
        font-size: 10px;
  }
  .media-metric-card strong {
        font-size: 22px;
  }
  .client-logo-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 360px) {
  :root {
        --site-content-gutter: 20px;
  }
  .hero h1 {
        font-size: 26px;
        line-height: 1.22;
  }
  .hero-buttons {
        gap: 8px;
  }
  .hero-buttons .btn {
        padding-inline: 6px;
  }
  .hero-stat {
        gap: 6px;
  }
  .hero-stat .stat-icon {
        width: 22px;
        height: 22px;
        flex-basis: 22px;
  }
  .quick-entry-index .scan-form {
        grid-template-columns: minmax(0, 1fr);
  }
  .quick-entry-index .scan-form button {
        height: 38px;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 58px minmax(0, 1fr);
        grid-template-areas:
          "visual title"
          "visual desc"
          "visual features"
          "button button";
        column-gap: 9px;
  }
  .quick-entry-index .entry-visual {
        width: 58px;
        height: 58px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 55px;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer#about .footer-grid {
        grid-template-columns: minmax(0, 1fr);
  }
}
@media (max-width: 330px) {
  .hero h1 {
        font-size: 25px;
  }
  .hero-stat strong {
        font-size: 15px;
  }
  .quick-entry-index .features li {
        font-size: 9px;
  }
}
/* Mobile final pass: compact stacked sections after earlier responsive layers. */
@media (max-width: 576px) {
    .nav {
        position: sticky;
        top: 0;
  }
    .nav.is-menu-open .nav-inner {
        padding-bottom: 10px;
  }
    .nav.is-menu-open .nav-links {
        max-height: calc(100svh - 168px);
        overflow-y: auto;
        overscroll-behavior: contain;
  }
    .quick-entry-index {
        padding-top: 38px;
        padding-bottom: 20px;
  }
    .quick-entry-index .qe-header {
        margin-bottom: 18px;
  }
    .quick-entry-index .qe-header h1 {
        max-width: 10.5em;
        margin-inline: auto;
  }
    .quick-entry-index .qe-header p {
        margin-bottom: 18px;
  }
    .quick-entry-index .entry-grid {
        gap: 10px;
  }
    .quick-entry-index .scan-card {
        padding: 16px 14px 14px;
  }
    .quick-entry-index .scan-panel {
        margin-top: 12px;
  }
    .quick-entry-index .main-scan-btn {
        height: 42px;
        margin-top: 12px;
  }
    .quick-entry-index .secure-note {
        margin-top: 9px;
        font-size: 11px;
  }
    .quick-entry-index .entry-card {
        min-height: 0;
        padding: 13px;
  }
    .quick-entry-index .entry-button {
        height: 35px;
  }
    .quick-entry-index .trust {
        justify-content: center;
        margin-top: 12px;
        padding-inline: 10px;
        text-align: center;
  }
    .option-a-shift,
    .option-a-check.diagnosis-redesign,
    #solutions.full-link-solution-redesign,
    .section.media-resource-redesign,
    .section.client-logo-section,
    .section.insight-news-section {
        padding-top: 38px;
        padding-bottom: 38px;
  }
    .option-a-hero {
        gap: 10px;
        margin-top: 18px;
        margin-bottom: 16px;
  }
    .shift-card {
        padding: 16px;
  }
    .option-a-hero .shift-card-shot {
        max-height: 138px;
        margin-top: 10px;
  }
    .shift-caption {
        margin-top: 12px;
  }
    .diagnosis-shell {
        gap: 12px;
  }
    .diagnosis-report {
        padding: 10px;
  }
    .diagnosis-form-card {
        padding: 16px;
  }
    .diagnosis-flow {
        gap: 10px;
  }
    .fls-board,
    .media-command,
    .insight-board {
        gap: 10px;
  }
    .fls-card,
    .media-logo-panel,
    .platform-news-panel,
    .knowledge-panel {
        padding: 14px;
  }
    .media-matrix,
    .publish-flow,
    .client-proof-bar,
    .client-logo-board {
        padding: 10px;
  }
    .media-metric-grid {
        gap: 8px;
  }
    .media-metric-card {
        min-height: 112px;
        padding: 10px;
  }
    .media-logo-wall,
    .media-logo-panel.is-platform-wall .media-logo-wall {
        gap: 7px;
  }
    .client-logo-board {
        margin-top: 14px;
  }
    .cta {
        margin-top: 24px;
        margin-bottom: 24px;
  }
}
@media (max-width: 390px) {
  .quick-entry-index .entry-card {
        grid-template-columns: 60px minmax(0, 1fr);
        column-gap: 9px;
  }
  .quick-entry-index .entry-visual {
        width: 60px;
        height: 60px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 58px;
  }
  .quick-entry-index .features li {
        font-size: 10px;
  }
  .media-logo-tile {
        height: 50px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 68px;
  }
  .client-logo-tile {
        height: 56px;
  }
}
@media (max-width: 340px) {
  .hero-buttons {
        grid-template-columns: minmax(0, 1fr);
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 56px minmax(0, 1fr);
        grid-template-areas:
          "visual title"
          "visual desc"
          "visual features"
          "button button";
        column-gap: 8px;
  }
  .quick-entry-index .entry-visual {
        width: 56px;
        height: 56px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 54px;
  }
  .media-metric-grid, .media-logo-wall, .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .client-logo-board {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
/* Responsive visual rework: tablet/mobile are treated as dedicated layouts. */
@media (max-width: 1199px) {
    :root {
        --rvr-gutter: clamp(22px, 5vw, 56px);
        --rvr-radius-lg: 22px;
        --rvr-radius-md: 16px;
        --rvr-line: rgba(178, 205, 246, 0.62);
        --rvr-card: rgba(255, 255, 255, 0.82);
        --rvr-card-solid: #ffffff;
        --rvr-shadow-soft: 0 14px 34px rgba(41, 82, 164, 0.09), inset 0 1px 0 rgba(255, 255, 255, 0.88);
        --rvr-shadow-card: 0 18px 48px rgba(37, 80, 165, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.92);
  }
    .container,
    .fls-head,
    .fls-board,
    .exposure-shift .container,
    .option-a-check.diagnosis-redesign > .container,
    .media-resource-redesign > .container,
    .client-logo-section > .container,
    .insight-news-section > .container,
    .cta,
    footer#about > .container {
        width: min(100% - var(--rvr-gutter), 1040px);
  }
    .section-title,
    .exposure-shift .section-title,
    .option-a-check .section-title,
    .media-resource-redesign .section-title,
    .client-logo-section .section-title,
    .insight-news-section .section-title,
    .fls-head h1,
    .quick-entry-index .qe-header h1 {
        letter-spacing: 0;
  }
}
@media (min-width: 769px) and (max-width: 1199px) {
  main > .section, .option-a-shift, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 66px;
        padding-bottom: 66px;
  }
  .hero {
        min-height: 0;
        padding: 72px 0 56px;
        background:
          linear-gradient(90deg, rgba(239, 246, 255, 0.98), rgba(239, 246, 255, 0.84) 56%, rgba(239, 246, 255, 0.24)),
          url("../img/hero-banner-1920x1024.png") right center / auto 100% no-repeat;
  }
  .hero-inner {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 28px;
  }
  .hero-copy-column {
        max-width: 680px;
        transform: none !important;
  }
  .hero h1 {
        max-width: 640px;
        font-size: clamp(42px, 5.4vw, 54px);
        line-height: 1.13;
        white-space: normal;
        letter-spacing: 0;
  }
  .hero-copy {
        width: min(100%, 600px);
        margin: 20px 0 24px;
        font-size: 16px;
        line-height: 1.78;
  }
  .hero-buttons {
        width: min(100%, 386px);
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
  }
  .hero-buttons .btn {
        min-width: 0;
        border-radius: 14px;
  }
  .hero-stats {
        width: min(100%, 680px);
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 10px;
        margin-top: 26px;
  }
  .hero-stat {
        min-height: 86px;
        padding: 14px 12px;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 8px;
        border-radius: 18px;
  }
  .hero-stat .stat-icon {
        width: 28px;
        height: 28px;
  }
  .hero-stat strong {
        font-size: 21px;
  }
  .hero-visual {
        display: none;
  }
  .quick-entry-index {
        padding-top: 66px;
        padding-bottom: 38px;
  }
  .quick-entry-index .entry-grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 16px;
  }
  .quick-entry-index .scan-card {
        grid-column: 1 / -1;
  }
  .fls-card {
        grid-template-columns: minmax(0, 1fr);
        min-height: 0;
  }
  .media-logo-wall {
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .media-logo-panel.is-platform-wall .media-logo-wall, .client-logo-board {
        grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .insight-board {
        grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  }
  .knowledge-list {
        grid-template-columns: minmax(0, 1fr);
        gap: 10px;
  }
  .knowledge-item {
        grid-template-columns: 40px minmax(0, 1fr) auto;
        min-height: 72px;
        padding: 10px 14px;
  }
  .knowledge-item strong {
        font-size: 14px;
        line-height: 1.45;
  }
}
@media (max-width: 768px) {
  :root {
        --rvr-gutter: clamp(22px, 6vw, 32px);
  }
  body {
        background:
          radial-gradient(circle at 18% 0%, rgba(29, 120, 255, 0.08), transparent 34%),
          linear-gradient(180deg, #f7fbff 0%, #ffffff 42%, #f7fbff 100%);
  }
  .container, .fls-head, .fls-board, .exposure-shift .container, .option-a-check.diagnosis-redesign > .container, .media-resource-redesign > .container, .client-logo-section > .container, .insight-news-section > .container, .cta, footer#about > .container {
        width: calc(100% - var(--rvr-gutter));
  }
  .nav {
        min-height: 62px;
        background: rgba(255, 255, 255, 0.88);
        border-bottom-color: rgba(214, 227, 250, 0.7);
        backdrop-filter: blur(16px);
  }
  .nav-inner {
        min-height: 62px;
  }
  .brand {
        gap: 10px;
        font-size: 17px;
  }
  .brand-mark {
        width: 34px;
        height: 34px;
        border-radius: 12px;
  }
  .nav-toggle {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.78);
  }
  .nav.is-menu-open .nav-links, .nav.is-menu-open .nav-actions {
        padding-inline: 2px;
  }
  .nav-links > a, .nav-dropdown-trigger {
        min-height: 42px;
        border: 1px solid rgba(214, 226, 249, 0.68);
        background: rgba(247, 250, 255, 0.82);
        font-weight: 800;
  }
  .nav-dropdown {
        border: 1px solid rgba(214, 226, 249, 0.68);
        background: rgba(255, 255, 255, 0.82);
  }
  main > .section, .option-a-shift, .option-a-check.diagnosis-redesign, #solutions.full-link-solution-redesign, .section.media-resource-redesign, .section.client-logo-section, .section.insight-news-section {
        padding-top: 42px;
        padding-bottom: 42px;
  }
  .section-title, .exposure-shift .section-title, .option-a-check .section-title, .media-resource-redesign .section-title, .client-logo-section .section-title, .insight-news-section .section-title, .fls-head h1, .quick-entry-index .qe-header h1 {
        font-size: clamp(25px, 7vw, 31px);
        line-height: 1.22;
        font-weight: 900;
        text-shadow: none;
  }
  .section-title::after {
        width: 34px;
        height: 3px;
        margin-top: 12px;
  }
  .section-title-accent {
        width: 34px;
        margin: 10px auto 10px;
  }
  .section-subtitle, .exposure-shift .section-subtitle, .media-resource-redesign .section-subtitle, .client-logo-section .section-subtitle, .insight-news-section .section-subtitle, .fls-head p, .quick-entry-index .qe-header p {
        max-width: 30em;
        margin-bottom: 22px;
        color: #5b6b86;
        font-size: 13px;
        line-height: 1.68;
        font-weight: 650;
  }
  .hero {
        min-height: 0;
        padding: 30px 0 34px;
        background:
          radial-gradient(circle at 90% 10%, rgba(95, 94, 255, 0.18), transparent 28%),
          radial-gradient(circle at 8% 62%, rgba(16, 148, 255, 0.11), transparent 30%),
          linear-gradient(180deg, #eef6ff 0%, #f9fcff 58%, #ffffff 100%);
  }
  .hero-inner {
        min-height: 0;
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        gap: 18px;
  }
  .hero-copy-column {
        transform: none !important;
        text-shadow: none;
  }
  .eyebrow {
        width: max-content;
        max-width: 100%;
        margin-bottom: 12px;
        padding: 6px 10px;
        border: 1px solid rgba(129, 177, 255, 0.55);
        border-radius: 999px;
        color: #1368df;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9), 0 8px 22px rgba(32, 100, 210, 0.08);
        font-size: 12px;
        line-height: 1;
  }
  .hero h1 {
        max-width: 10.4em;
        font-size: clamp(32px, 9.2vw, 42px);
        line-height: 1.12;
        letter-spacing: 0;
        white-space: normal;
  }
  .hero h1 br {
        display: none;
  }
  .hero h1 span {
        display: inline-block;
        white-space: nowrap;
  }
  .hero-copy {
        max-width: 100%;
        margin: 14px 0 18px;
        color: #4f6079;
        font-size: 14px;
        line-height: 1.72;
  }
  .hero-buttons {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
  }
  .hero-buttons .btn {
        height: 44px;
        min-width: 0;
        padding-inline: 12px;
        border-radius: 14px;
        font-size: 14px;
        font-weight: 850;
  }
  .hero-buttons .btn:not(.primary) {
        background: rgba(255, 255, 255, 0.72);
        border-color: rgba(149, 183, 238, 0.64);
        color: #1557c6;
  }
  .hero-buttons .btn.primary {
        box-shadow: 0 14px 30px rgba(44, 82, 229, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.28);
  }
  .hero-stats {
        order: 3;
        width: 100%;
        max-width: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
        margin-top: 8px;
  }
  .hero-stat {
        min-height: 66px;
        padding: 11px;
        gap: 8px;
        border: 1px solid rgba(197, 217, 248, 0.78);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.72);
        box-shadow: var(--rvr-shadow-soft);
        backdrop-filter: blur(12px);
  }
  .hero-stat .stat-icon {
        width: 24px;
        height: 24px;
        color: #1476ff;
  }
  .hero-stat strong {
        color: #182445;
        font-size: 18px;
        font-weight: 900;
  }
  .hero-stat > div > span {
        color: #65748c;
        font-size: 10px;
        line-height: 1.2;
        font-weight: 750;
        white-space: normal;
  }
  .hero-visual {
        order: 4;
        height: auto;
        margin-top: 0;
        overflow: visible;
  }
  .platform, .report-card, .float-stat, .ai-chip {
        display: none !important;
  }
  .dash {
        position: relative;
        inset: auto;
        width: 100%;
        min-height: 0;
        padding: 16px;
        border-radius: 22px;
        transform: none;
        background:
          radial-gradient(circle at 86% 12%, rgba(31, 205, 255, 0.22), transparent 34%),
          linear-gradient(145deg, #08246f 0%, #071a54 100%);
        box-shadow: 0 24px 46px rgba(16, 54, 146, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }
  .dash-title {
        font-size: 14px;
  }
  .shield {
        width: 36px;
        height: 36px;
        border-radius: 13px;
  }
  .score-row {
        margin-top: 12px;
  }
  .score-row strong {
        font-size: 28px;
  }
  .meter {
        margin-top: 10px;
  }
  .meter-label {
        font-size: 10px;
  }
  .bar {
        height: 5px;
  }
  .dash-list {
        display: none;
  }
  .quick-entry-index {
        padding: 40px max(12px, calc(var(--rvr-gutter) / 2)) 28px;
        background:
          radial-gradient(circle at 50% 0%, rgba(29, 121, 255, 0.13), transparent 34%),
          linear-gradient(180deg, #f8fbff 0%, #eff7ff 100%);
  }
  .quick-entry-index .qe-header {
        margin-bottom: 18px;
  }
  .quick-entry-index .qe-header::before {
        opacity: 0.44;
  }
  .quick-entry-index .qe-header h1 {
        max-width: 10.6em;
        margin-inline: auto;
  }
  .quick-entry-index .qe-header p {
        margin-bottom: 0;
  }
  .quick-entry-index .entry-grid {
        width: 100%;
        gap: 12px;
  }
  .quick-entry-index .glass-card, .quick-entry-index .entry-card, .diagnosis-report, .diagnosis-form-card, .diagnosis-flow, .fls-card, .media-metric-card, .media-logo-panel, .publish-flow, .client-proof-bar, .client-logo-board, .platform-news-panel, .knowledge-panel {
        border-color: var(--rvr-line);
        box-shadow: var(--rvr-shadow-card);
  }
  .quick-entry-index .scan-card {
        padding: 17px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.82);
  }
  .quick-entry-index .recommend {
        border-radius: 14px 0 14px 0;
  }
  .quick-entry-index .brand-title {
        gap: 8px;
        font-size: 20px;
  }
  .quick-entry-index .wave-icon {
        width: 24px;
        height: 24px;
  }
  .quick-entry-index .scan-card > p {
        margin-top: 6px;
        color: #65758d;
        font-size: 13px;
  }
  .quick-entry-index .scan-form {
        height: 44px;
        grid-template-columns: minmax(0, 1fr) 96px;
        gap: 8px;
        margin-top: 14px;
  }
  .quick-entry-index .input-wrap, .quick-entry-index .scan-form button {
        border-radius: 14px;
  }
  .quick-entry-index .scan-panel {
        margin-top: 12px;
        padding: 12px;
        border-radius: 18px;
        background: linear-gradient(180deg, rgba(247, 251, 255, 0.96), rgba(255, 255, 255, 0.9));
  }
  .quick-entry-index .scan-meta {
        align-items: center;
        font-size: 10px;
  }
  .quick-entry-index .core-metrics-art {
        width: min(100%, 300px);
        border-radius: 14px;
  }
  .quick-entry-index .main-scan-btn {
        height: 42px;
        margin-top: 12px;
        border-radius: 14px;
  }
  .quick-entry-index .secure-note {
        margin-top: 9px;
        font-size: 11px;
  }
  .quick-entry-index .entry-card {
        min-height: 0;
        grid-template-columns: 70px minmax(0, 1fr);
        column-gap: 12px;
        row-gap: 5px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.82);
  }
  .quick-entry-index .entry-visual {
        width: 70px;
        height: 70px;
        border-radius: 18px;
        background: linear-gradient(145deg, rgba(243, 248, 255, 0.98), rgba(255, 255, 255, 0.78));
  }
  .quick-entry-index .entry-visual img {
        max-height: 66px;
  }
  .quick-entry-index .entry-title {
        font-size: 17px;
        line-height: 1.22;
  }
  .quick-entry-index .entry-card p {
        color: #64758e;
        font-size: 12px;
  }
  .quick-entry-index .features {
        gap: 3px;
  }
  .quick-entry-index .features li {
        color: #415371;
        font-size: 11px;
        line-height: 1.28;
  }
  .quick-entry-index .entry-button {
        height: 36px;
        margin-top: 5px;
        border-radius: 13px;
        font-size: 13px;
  }
  .quick-entry-index .trust {
        justify-content: center;
        margin-top: 13px;
        color: #66758d;
        font-size: 12px;
  }
  .option-a-shift {
        background:
          radial-gradient(circle at 50% 0%, rgba(29, 119, 255, 0.1), transparent 35%),
          linear-gradient(180deg, #f5faff 0%, #ffffff 100%);
  }
  .option-a-hero {
        gap: 12px;
        margin-top: 20px;
        margin-bottom: 12px;
  }
  .shift-card {
        min-height: 0;
        padding: 18px;
        border-radius: 24px;
        border-color: rgba(177, 205, 247, 0.76);
        box-shadow: var(--rvr-shadow-card);
  }
  .shift-label {
        padding: 7px 11px;
        font-size: 11px;
  }
  .shift-card h3 {
        margin-top: 14px;
        font-size: 22px;
        line-height: 1.26;
  }
  .shift-card p {
        font-size: 13px;
        line-height: 1.6;
  }
  .shift-tags {
        gap: 7px;
  }
  .shift-tags span {
        padding: 5px 9px;
        font-size: 11px;
  }
  .option-a-hero .shift-card-shot {
        display: none;
  }
  .shift-bridge {
        width: 38px;
        height: 38px;
        margin: -1px auto;
        border-radius: 14px;
  }
  .shift-caption {
        margin-top: 12px;
        font-size: 12px;
        line-height: 1.6;
  }
  .diagnosis-shell {
        gap: 12px;
  }
  .diagnosis-report {
        padding: 10px;
        border-radius: 22px;
  }
  .diagnosis-form-card {
        padding: 18px;
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.86);
  }
  .diagnosis-form-head h3 {
        font-size: 22px;
        line-height: 1.28;
  }
  .diagnosis-form-head p {
        font-size: 13px;
        line-height: 1.55;
  }
  .option-a-field label {
        font-size: 12px;
  }
  .option-a-control {
        border-radius: 14px;
  }
  .option-a-control input, .option-a-control select {
        min-height: 44px;
        font-size: 13px;
  }
  .diagnosis-form-card .option-a-cta {
        min-height: 46px;
        border-radius: 15px;
        font-size: 16px;
  }
  .diagnosis-safe-note {
        margin-top: 10px;
        font-size: 12px;
  }
  .diagnosis-form-card .option-a-proof {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
  }
  .diagnosis-form-card .option-a-proof span {
        min-height: 48px;
        padding: 8px;
        border-radius: 15px;
        border: 1px solid rgba(208, 224, 248, 0.78);
        background: rgba(247, 250, 255, 0.82);
        font-size: 12px;
  }
  .diagnosis-flow {
        padding: 14px;
        border-radius: 22px;
  }
  .diagnosis-flow-step {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 12px;
        padding: 10px;
        border-radius: 16px;
        background: rgba(255, 255, 255, 0.66);
  }
  .diagnosis-flow-step b {
        width: 44px;
        height: 44px;
        font-size: 17px;
  }
  .diagnosis-flow-step span {
        font-size: 14px;
  }
  .diagnosis-flow-step em {
        font-size: 12px;
  }
  .diagnosis-flow-line {
        height: 18px;
  }
  .fls-head {
        margin-bottom: 20px;
  }
  .fls-board {
        gap: 12px;
  }
  .fls-card {
        padding: 17px;
        border-radius: 24px;
        background:
          linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 251, 255, 0.78)),
          radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--accent-a) 11%, transparent), transparent 36%);
  }
  .fls-card::after {
        right: 16px;
        top: 12px;
        font-size: 30px;
        opacity: 0.58;
  }
  .fls-title-row {
        gap: 11px;
        align-items: center;
  }
  .fls-icon-box {
        width: 42px;
        height: 42px;
        border-radius: 15px;
  }
  .fls-card-main h2, .fls-title-row h2 {
        font-size: 19px;
        line-height: 1.25;
  }
  .fls-card-main p {
        margin-top: 2px;
        color: #5c6d88;
        font-size: 13px;
        line-height: 1.62;
  }
  .fls-card-main button {
        width: 112px;
        height: 36px;
        border-radius: 13px;
        font-size: 13px;
  }
  .fls-card-detail {
        gap: 8px;
        margin-top: 10px;
  }
  .fls-resource-row, .fls-geo-step, .fls-partner-item {
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.7);
  }
  .fls-logo-cluster {
        display: none;
  }
  .media-command {
        gap: 14px;
  }
  .media-metric-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
  }
  .media-metric-card {
        min-height: 118px;
        padding: 12px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.84);
  }
  .media-metric-icon {
        width: 38px;
        height: 38px;
        margin-bottom: 6px;
  }
  .media-metric-card small {
        font-size: 11px;
  }
  .media-metric-card strong {
        margin-top: 3px;
        font-size: 24px;
        line-height: 1.08;
  }
  .media-metric-card span, .media-metric-card > span {
        margin-top: 4px;
        color: #687990;
        font-size: 10px !important;
        line-height: 1.32;
  }
  .media-matrix {
        gap: 12px;
        padding: 10px;
        border-radius: 22px;
        background: rgba(241, 247, 255, 0.72);
  }
  .media-logo-panel {
        padding: 14px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.84);
  }
  .media-logo-head {
        align-items: flex-start;
        margin-bottom: 12px;
  }
  .media-logo-head h3 {
        font-size: 17px;
  }
  .media-logo-head span {
        font-size: 12px !important;
  }
  .media-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
  }
  .media-logo-panel.is-platform-wall .media-logo-wall {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 7px;
  }
  .media-logo-tile {
        height: 48px;
        padding: 6px;
        border-color: rgba(213, 226, 246, 0.72);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: none;
  }
  .media-logo-tile img {
        width: 100%;
        height: 100%;
        object-fit: contain;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 66px;
        padding: 7px 4px;
        gap: 4px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile img {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile span {
        font-size: 10px;
  }
  .publish-flow {
        gap: 8px;
        padding: 10px;
        border-radius: 20px;
  }
  .publish-step {
        grid-template-columns: 36px minmax(0, 1fr);
        gap: 9px;
        padding: 9px;
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
  }
  .publish-step b, .publish-step-icon {
        width: 36px;
        height: 36px;
  }
  .publish-step span {
        font-size: 13px;
  }
  .publish-step small {
        font-size: 11px;
  }
  .client-proof-bar {
        gap: 8px;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.82);
  }
  .client-proof-item {
        min-height: 62px;
        padding: 10px 11px;
        border-radius: 16px;
  }
  .client-proof-item strong {
        font-size: 28px;
  }
  .client-proof-item b {
        font-size: 13px;
  }
  .client-proof-item em {
        font-size: 11px;
        line-height: 1.35;
  }
  .client-logo-board {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
        padding: 10px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.82);
  }
  .client-logo-tile {
        height: 54px;
        border: 1px solid rgba(218, 229, 247, 0.72);
        border-radius: 13px;
        background: rgba(255, 255, 255, 0.78);
        box-shadow: none;
  }
  .client-logo-tile img {
        padding: 6px;
  }
  .insight-news-section {
        background:
          radial-gradient(circle at 50% 0%, rgba(23, 105, 255, 0.08), transparent 32%),
          linear-gradient(180deg, #f8fbff 0%, #f4f8ff 100%);
  }
  .insight-board {
        gap: 12px;
  }
  .platform-news-panel, .knowledge-panel {
        padding: 16px;
        border-radius: 22px;
        background: rgba(255, 255, 255, 0.84);
  }
  .insight-panel-head {
        margin-bottom: 10px;
        padding-bottom: 10px;
  }
  .insight-panel-head h3 {
        font-size: 18px;
  }
  .insight-panel-head span {
        height: 25px;
        padding-inline: 9px;
        border-radius: 999px;
        font-size: 11px;
  }
  .platform-news-list::before {
        display: none;
  }
  .platform-news-item, .knowledge-item {
        min-height: 0;
        border: 0;
        border-bottom: 1px solid rgba(218, 228, 247, 0.8);
        border-radius: 0;
        background: transparent;
        box-shadow: none;
  }
  .platform-news-item {
        gap: 4px;
        padding: 11px 0 11px 14px;
  }
  .platform-news-item::before {
        left: 0;
        top: 18px;
        width: 6px;
        height: 6px;
        border: 0;
  }
  .platform-news-item time, .knowledge-item time {
        color: #6f7f98;
        font-size: 11px;
  }
  .platform-news-item strong, .knowledge-item strong {
        color: #172344;
        font-size: 14px;
        line-height: 1.45;
  }
  .knowledge-item {
        grid-template-columns: 30px minmax(0, 1fr);
        gap: 10px;
        padding: 11px 0;
  }
  .knowledge-item em {
        width: 28px;
        height: 28px;
        border-radius: 10px;
        font-size: 11px;
  }
  .knowledge-item time {
        grid-column: 2;
  }
  .cta {
        margin-top: 26px;
        margin-bottom: 26px;
        padding: 24px 18px 18px;
        border-radius: 24px;
  }
  .cta h2 {
        font-size: 24px;
        line-height: 1.25;
  }
  .cta p {
        font-size: 13px;
        line-height: 1.58;
  }
  .cta-content {
        gap: 16px;
  }
  .cta-actions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 9px;
  }
  .cta .btn {
        height: 42px;
        border-radius: 13px;
        font-size: 13px;
  }
  .cta-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        margin-top: 14px;
  }
  .cta-points span {
        min-height: 46px;
        padding: 8px;
        border-radius: 14px;
        font-size: 11px;
  }
  footer#about[data-auth-footer-page="login"],
  footer#about[data-auth-footer-page="register"] {
        padding-top: 38px;
  }
  footer#about .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 16px;
        padding-bottom: 28px;
  }
  footer#about .footer-brand, footer#about .contact-card {
        grid-column: 1 / -1;
  }
  footer#about .footer-brand p {
        margin: 12px 0 16px;
        font-size: 13px;
  }
  footer#about .qr-row {
        grid-template-columns: repeat(2, minmax(0, 104px));
        gap: 12px;
  }
  footer#about .qr {
        width: 100%;
        padding: 10px;
        border-radius: 16px;
  }
  footer#about .qr-box {
        width: 100%;
        max-width: 80px;
        height: auto;
        aspect-ratio: 1;
        margin: 0 auto;
  }
  footer#about .footer-col h4, footer#about .contact-card h3 {
        margin-bottom: 14px;
        font-size: 15px;
  }
  footer#about .footer-col a {
        margin: 8px 0;
        font-size: 12px;
  }
  footer#about .contact-card {
        padding: 18px 16px;
        border-radius: 22px;
  }
  footer#about .contact-line {
        margin: 12px 0;
  }
  footer#about .contact-line strong {
        font-size: 15px;
  }
}
@media (max-width: 390px) {
  :root {
        --rvr-gutter: 22px;
  }
  .hero {
        padding-top: 26px;
  }
  .hero h1 {
        font-size: 30px;
  }
  .hero-copy {
        font-size: 13px;
  }
  .hero-buttons .btn {
        height: 40px;
        font-size: 12px;
  }
  .hero-stat {
        min-height: 60px;
        padding: 9px;
  }
  .hero-stat strong {
        font-size: 16px;
  }
  .dash {
        padding: 14px;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 62px minmax(0, 1fr);
        column-gap: 9px;
        padding: 13px;
  }
  .quick-entry-index .entry-visual {
        width: 62px;
        height: 62px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 58px;
  }
  .quick-entry-index .features li {
        font-size: 10px;
  }
  .diagnosis-form-card .option-a-proof span {
        min-height: 46px;
        font-size: 11px;
  }
  .media-logo-tile {
        height: 48px;
  }
  .media-logo-panel.is-platform-wall .media-logo-tile {
        height: 64px;
  }
  .client-logo-tile {
        height: 52px;
  }
  .cta-actions, .cta-points {
        grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 340px) {
  .hero-buttons {
        grid-template-columns: minmax(0, 1fr);
  }
  .hero h1 {
        font-size: 28px;
  }
  .quick-entry-index .scan-form {
        grid-template-columns: minmax(0, 1fr);
        height: auto;
  }
  .quick-entry-index .scan-form button {
        height: 38px;
  }
  .quick-entry-index .entry-card {
        grid-template-columns: 54px minmax(0, 1fr);
  }
  .quick-entry-index .entry-visual {
        width: 54px;
        height: 54px;
  }
  .quick-entry-index .entry-visual img {
        max-height: 50px;
  }
}
/* Mobile polish for the full-link solution cards. */
@media (max-width: 768px) {
    #solutions.full-link-solution-redesign {
        padding-top: 42px;
        padding-bottom: 44px;
  }
    #solutions .solution-visual-accent {
        display: none;
  }
    #solutions .fls-head {
        margin-bottom: 18px;
  }
    #solutions .fls-head p {
        max-width: 32em;
        margin-bottom: 0;
  }
    #solutions .fls-board {
        gap: 14px;
  }
    #solutions .fls-card {
        min-height: 0;
        grid-template-columns: minmax(0, 1fr);
        gap: 13px;
        padding: 16px;
        border-radius: 20px;
        background:
          linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.82)),
          radial-gradient(circle at 0% 0%, color-mix(in srgb, var(--accent-a) 10%, transparent), transparent 38%);
  }
    #solutions .fls-card::after {
        right: 14px;
        top: 10px;
        font-size: 28px;
        opacity: 0.38;
  }
    #solutions .fls-card-main {
        min-height: 0;
        gap: 10px;
  }
    #solutions .fls-title-row {
        gap: 10px;
        padding-right: 38px;
  }
    #solutions .fls-icon-box {
        width: 42px;
        height: 42px;
        flex-basis: 42px;
        border-radius: 14px;
  }
    #solutions .fls-icon-img {
        width: 32px;
        height: 32px;
  }
    #solutions .fls-card-main h2,
    #solutions .fls-title-row h2 {
        font-size: 19px;
        line-height: 1.24;
  }
    #solutions .fls-card-main p {
        max-width: none;
        margin-top: 0;
        font-size: 13px;
        line-height: 1.62;
  }
    #solutions .fls-card-main button {
        width: 100%;
        height: 44px;
        min-height: 44px;
        margin-top: 0;
        border-radius: 14px;
        font-size: 14px;
  }
    #solutions .fls-card-detail,
    #solutions .fls-resource-panel,
    #solutions .fls-partner-options {
        gap: 8px;
        margin-top: 0;
        padding-top: 0;
        min-width: 0;
  }
    #solutions .fls-resource-row,
    #solutions .fls-geo-step,
    #solutions .fls-partner-item {
        border: 1px solid rgba(189, 211, 246, 0.58);
        border-radius: 14px;
        background: rgba(255, 255, 255, 0.72);
  }
    #solutions .fls-resource-row,
    #solutions .fls-resource-row:last-child {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 10px;
        align-items: center;
        padding: 10px 11px;
        border-bottom: 1px solid rgba(189, 211, 246, 0.58);
  }
    #solutions .fls-metric {
        gap: 3px;
  }
    #solutions .fls-metric em {
        font-size: 12px;
        line-height: 1.2;
  }
    #solutions .fls-metric b {
        font-size: 21px;
  }
    #solutions .fls-platform-strip {
        min-width: 0;
        gap: 0;
  }
    #solutions .fls-logo-cluster {
        display: none;
  }
    #solutions .fls-caption {
        min-width: 0;
        white-space: normal;
        font-size: 12px;
        line-height: 1.35;
  }
    #solutions .fls-caption i {
        width: 16px;
        flex: 0 0 16px;
  }
    #solutions .fls-geo-steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding-top: 0;
  }
    #solutions .fls-geo-step {
        min-height: 58px;
        padding: 10px;
  }
    #solutions .fls-step-num {
        width: 30px;
        height: 30px;
  }
    #solutions .fls-step-copy b,
    #solutions .fls-partner-copy b {
        font-size: 14px;
        line-height: 1.25;
  }
    #solutions .fls-step-copy em,
    #solutions .fls-partner-copy em {
        font-size: 11px;
        line-height: 1.35;
  }
    #solutions .fls-partner-item,
    #solutions .fls-partner-item:last-child {
        padding: 10px;
        border-bottom: 1px solid rgba(189, 211, 246, 0.58);
  }
    #solutions .fls-partner-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 12px;
  }
}
@media (max-width: 390px) {
  #solutions .fls-card {
        gap: 12px;
        padding: 14px;
        border-radius: 18px;
  }
  #solutions .fls-title-row {
        padding-right: 30px;
  }
  #solutions .fls-icon-box {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
  }
  #solutions .fls-card-main h2, #solutions .fls-title-row h2 {
        font-size: 18px;
  }
  #solutions .fls-card-main button {
        height: 42px;
        min-height: 42px;
  }
  #solutions .fls-resource-row, #solutions .fls-resource-row:last-child {
        grid-template-columns: 76px minmax(0, 1fr);
        padding: 9px 10px;
  }
  #solutions .fls-geo-step {
        grid-template-columns: 28px minmax(0, 1fr);
        gap: 8px;
        padding: 9px;
  }
  #solutions .fls-step-num {
        width: 28px;
        height: 28px;
  }
}
@media (max-width: 340px) {
  #solutions .fls-geo-steps {
        grid-template-columns: minmax(0, 1fr);
  }
  #solutions .fls-resource-row, #solutions .fls-resource-row:last-child {
        grid-template-columns: minmax(0, 1fr);
  }
}
/* Keep the three footer navigation groups on one row on mobile. */
@media (max-width: 768px) {
    footer#about .footer-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 24px 12px;
  }
    footer#about .footer-brand,
    footer#about .contact-card {
        grid-column: 1 / -1;
  }
    footer#about .footer-col {
        min-height: 0;
        padding-left: 0;
        border-left: 0;
  }
    footer#about .footer-col h4 {
        margin-bottom: 12px;
        font-size: 14px;
        line-height: 1.25;
        white-space: nowrap;
  }
    footer#about .footer-col h4::after {
        bottom: -7px;
        width: 20px;
  }
    footer#about .footer-col a {
        width: auto;
        max-width: none;
        margin: 7px 0;
        font-size: 11px;
        line-height: 1.4;
  }
}
@media (max-width: 390px) {
  footer#about .footer-grid {
        gap: 22px 8px;
  }
  footer#about .footer-col h4 {
        font-size: 13px;
  }
  footer#about .footer-col a {
        font-size: 11px;
        line-height: 1.35;
  }
}

/* Make the article-publishing dropdown more readable and vivid. */
.nav-dropdown {
    width: 218px;
    padding: 12px;
    border-color: rgba(164, 196, 255, 0.88);
    background:
      radial-gradient(circle at 16% 0%, rgba(32, 198, 255, 0.12), transparent 36%),
      linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(244, 249, 255, 0.94));
    box-shadow: rgba(30, 74, 158, 0.2) 0 22px 52px, rgba(255, 255, 255, 0.94) 0 1px 0 inset;
}
.nav-dropdown::before {
    border-color: rgba(164, 196, 255, 0.88);
    background: rgba(255, 255, 255, 0.98);
}
.nav-dropdown a {
    gap: 12px;
    min-height: 48px;
    padding: 10px 12px;
    color: rgb(18, 32, 68);
    font-size: 15px;
    font-weight: 900;
}
.nav-dropdown a:hover, .nav-dropdown a:focus-visible {
    color: rgb(5, 96, 235);
    background:
      linear-gradient(90deg, rgba(228, 240, 255, 0.98), rgba(244, 248, 255, 0.82)),
      radial-gradient(circle at 20% 50%, rgba(32, 198, 255, 0.15), transparent 42%);
    box-shadow: rgba(39, 107, 230, 0.12) 0 10px 24px;
}
.nav-menu-icon {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    border-radius: 12px;
    background: transparent;
    box-shadow: none;
}
.nav-menu-icon img {
    width: 34px;
    height: 34px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 9px 14px rgba(38, 94, 206, 0.18));
}
@media (max-width: 768px) {
  .nav-dropdown {
        position: static;
        left: auto;
        top: auto;
        width: 100%;
        padding: 9px;
        transform: none;
  }
  .nav-item:hover .nav-dropdown,
  .nav-item:focus-within .nav-dropdown,
  .nav-item.is-open .nav-dropdown {
        transform: none;
  }
  .nav-dropdown a {
        min-height: 46px;
        font-size: 14px;
  }
  .nav-menu-icon {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
  }
  .nav-menu-icon img {
        width: 32px;
        height: 32px;
  }
}

@media (max-width: 768px) {
  .nav .nav-dropdown {
        display: none;
        opacity: 0;
        visibility: hidden;
        transform: none;
  }
  .nav .nav-item.is-open .nav-dropdown {
        display: block;
        opacity: 1;
        visibility: visible;
  }
}
.chart .chart-bar-1 {
    height: 28%;
}
.chart .chart-bar-2 {
    height: 45%;
}
.chart .chart-bar-3 {
    height: 39%;
}
.chart .chart-bar-4 {
    height: 66%;
}
.chart .chart-bar-5 {
    height: 57%;
}
.chart .chart-bar-6 {
    height: 78%;
}
.bar .bar-fill-search {
    width: 92%;
}
.bar .bar-fill-ai {
    width: 88%;
}
.bar .bar-fill-media {
    width: 84%;
}
.quick-entry-index .entry-card.entry-ai {
    --entry-color: #1769ff;
}
.quick-entry-index .entry-card.entry-media {
    --entry-color: #6d56ff;
}
.quick-entry-index .entry-card.entry-social {
    --entry-color: #20b99b;
}
/* Auth pages */
body.auth-preview-body {
  min-height: 100vh;
  color: #101a45;
  background:
    radial-gradient(circle at 16% 8%, rgba(23, 105, 255, 0.1), transparent 28%),
    radial-gradient(circle at 86% 18%, rgba(109, 86, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #eef5ff 0%, #f8fbff 38%, #ffffff 100%);
}

.auth-preview-body .nav-links a.active::after {
  display: none;
}

.auth-main {
  position: relative;
  overflow: hidden;
  background: #edf5ff;
}

.auth-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(237, 244, 255, 0.26) 0%, rgba(237, 244, 255, 0.14) 42%, rgba(247, 251, 255, 0.62) 66%, rgba(247, 251, 255, 0.92) 100%),
    linear-gradient(180deg, rgba(241, 247, 255, 0.36), rgba(241, 247, 255, 0.16) 48%, rgba(241, 247, 255, 0.54));
  pointer-events: none;
}

.auth-main::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 75% 46%, rgba(255, 255, 255, 0.58), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.28));
  pointer-events: none;
}

.auth-hero {
  min-height: 560px;
  padding: 34px 0 44px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.auth-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 450px;
  gap: 26px;
  align-items: stretch;
}

.auth-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 193, 248, 0.78);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: rgba(37, 78, 155, 0.13) 0 24px 62px, rgba(255, 255, 255, 0.9) 0 1px 0 inset;
  backdrop-filter: blur(16px);
}

.auth-panel-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(92, 151, 255, 0.28);
  border-radius: 999px;
  color: #1769ff;
  background: rgba(234, 243, 255, 0.8);
  font-size: 12px;
  font-weight: 900;
}

.auth-panel-head p,
.auth-switch {
  color: #63728e;
  font-size: 14px;
  line-height: 1.62;
}

.auth-panel {
  grid-column: 2;
  width: 100%;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  border-radius: 24px;
  padding: 24px;
}

.auth-panel-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

.auth-panel-head-centered {
  justify-content: center;
  text-align: center;
}

.auth-panel-head-centered > div {
  width: 100%;
}

.auth-panel-head h2 {
  margin: 9px 0 4px;
  color: #111c48;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 950;
}

.auth-panel-head p {
  margin: 0;
}

.auth-mode-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;
  margin-top: 16px;
  padding: 5px;
  border: 1px solid rgba(208, 224, 250, 0.96);
  border-radius: 14px;
  background: #f2f7ff;
}

.auth-login-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.auth-mode-tabs button {
  min-height: 36px;
  border: 0;
  border-radius: 10px;
  color: #657591;
  background: transparent;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  transition: color 0.22s, background 0.22s, box-shadow 0.22s;
}

.auth-mode-tabs button.is-active {
  color: #1769ff;
  background: #ffffff;
  box-shadow: rgba(48, 91, 174, 0.12) 0 8px 18px;
}

.auth-form {
  display: none;
  flex-direction: column;
  gap: 20px;
  margin-top: 14px;
}

.auth-form.is-active {
  display: flex;
}

.auth-field {
  display: grid;
  gap: 6px;
  color: #1d2c55;
  font-size: 13px;
  font-weight: 900;
}

.auth-field input {
  width: 100%;
  height: 40px;
  padding: 0 15px;
  border: 1px solid #d8e6ff;
  border-radius: 11px;
  outline: 0;
  color: #111c48;
  background: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  font-weight: 750;
  transition: border-color 0.22s, box-shadow 0.22s, background 0.22s;
}

.auth-field input:focus {
  border-color: rgba(23, 105, 255, 0.72);
  box-shadow: rgba(23, 105, 255, 0.12) 0 0 0 4px;
}

.auth-field.is-invalid input {
  border-color: rgba(230, 69, 91, 0.8);
  background: #fff9fa;
}

.auth-captcha-field {
  margin: 0;
}

.auth-captcha {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 124px;
  gap: 10px;
  align-items: stretch;
}

.auth-captcha button {
  min-height: 44px;
  padding: 0;
  overflow: hidden;
  border: 1px solid #d8e6ff;
  border-radius: 11px;
  background: #f8fafc;
  color: #334155;
  cursor: pointer;
}

.auth-captcha button:focus-visible {
  outline: 3px solid rgba(23, 105, 255, 0.28);
  outline-offset: 2px;
}

.auth-captcha button:disabled {
  cursor: wait;
  opacity: 0.58;
}

.auth-captcha img {
  display: block;
  width: 100%;
  height: 44px;
  object-fit: cover;
}

.auth-captcha-field small {
  color: #64748b;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}

@media (max-width: 420px) {
  .auth-captcha {
    grid-template-columns: minmax(0, 1fr) 108px;
  }
}

.auth-password,
.auth-code {
  position: relative;
  display: block;
  border: 1px solid #d8e6ff;
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.96);
  transition: border-color 0.22s, box-shadow 0.22s;
}

.auth-field.is-invalid .auth-password,
.auth-field.is-invalid .auth-code {
  border-color: rgba(230, 69, 91, 0.8);
  background: #fff9fa;
}

.auth-password:focus-within,
.auth-code:focus-within {
  border-color: rgba(23, 105, 255, 0.72);
  box-shadow: rgba(23, 105, 255, 0.12) 0 0 0 4px;
}

.auth-password input,
.auth-code input {
  width: 100%;
  padding-right: 128px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.auth-password input {
  padding-right: 56px;
}

.auth-password input:focus,
.auth-code input:focus {
  border: 0;
  box-shadow: none;
}

.auth-password button,
.auth-code button,
.auth-link,
.auth-switch button,
.auth-switch a {
  border: 0;
  color: #1769ff;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  text-decoration: none;
}

.auth-password button,
.auth-code button {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  min-width: 86px;
  height: 34px;
  margin-right: 0;
  border-radius: 9px;
}

.auth-password button[data-password-toggle] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  right: 8px;
  width: 34px;
  min-width: 34px;
  padding: 0;
  color: #9aa8bd;
}

.auth-password button[data-password-toggle][data-state="visible"] {
  color: #1769ff;
}

.auth-password button[data-password-toggle] svg {
  width: 18px;
  height: 18px;
  stroke-width: 2;
}

.auth-code button {
  color: #ffffff;
  background: linear-gradient(135deg, #1769ff, #6d56ff);
}

.auth-code button:disabled {
  color: #6d7892;
  background: #edf3ff;
  cursor: wait;
}

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

.auth-row-between {
  justify-content: space-between;
}

.auth-row-end {
  justify-content: flex-end;
}

.auth-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #66748f;
  font-size: 13px;
  font-weight: 800;
}

.auth-check input {
  width: 16px;
  height: 16px;
  accent-color: #1769ff;
}

.auth-policy {
  align-items: flex-start;
  line-height: 1.6;
}

.auth-submit {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(100deg, #1769ff 0%, #4c47ff 52%, #6d56ff 100%);
  box-shadow: rgba(23, 105, 255, 0.24) 0 16px 32px;
  font-size: 17px;
  font-weight: 950;
  cursor: pointer;
  transition: transform 0.22s, box-shadow 0.22s;
}

.auth-submit:hover,
.auth-submit:focus-visible {
  transform: translateY(-2px);
  box-shadow: rgba(23, 105, 255, 0.34) 0 20px 38px;
}

.auth-switch {
  margin: 0;
  text-align: center;
}

.auth-social-login {
  display: grid;
  justify-items: center;
  gap: 10px;
  color: #7b879f;
  font-size: 13px;
  font-weight: 850;
}

.auth-social-button {
  min-width: 116px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(212, 226, 249, 0.95);
  border-radius: 999px;
  color: #1f2d4f;
  background: #ffffff;
  box-shadow: rgba(34, 78, 151, 0.08) 0 10px 22px;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
  transition: transform 0.22s, border-color 0.22s, box-shadow 0.22s;
}

.auth-social-button:hover,
.auth-social-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(7, 193, 96, 0.38);
  box-shadow: rgba(7, 193, 96, 0.15) 0 14px 28px;
}

.auth-social-button img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.auth-modal[hidden] {
  display: none;
}

.auth-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.auth-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(9, 20, 46, 0.46);
  backdrop-filter: blur(8px);
}

.auth-modal-card {
  position: relative;
  width: min(360px, 100%);
  display: grid;
  justify-items: center;
  gap: 12px;
  padding: 28px 26px 24px;
  border: 1px solid rgba(222, 233, 250, 0.95);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: rgba(23, 50, 102, 0.22) 0 28px 70px;
}

.auth-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #66748f;
  background: #f2f6ff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

.auth-modal-close:hover,
.auth-modal-close:focus-visible {
  color: #1769ff;
  background: #e8f0ff;
}

.auth-modal-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(7, 193, 96, 0.1);
}

.auth-modal-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.auth-modal-card h3 {
  margin: 0;
  color: #111c48;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 950;
}

.auth-modal-card p,
.auth-modal-card small {
  margin: 0;
  color: #66748f;
  font-size: 13px;
  line-height: 1.55;
  font-weight: 800;
}

.auth-qr-frame {
  width: 184px;
  height: 184px;
  display: grid;
  place-items: center;
  margin: 4px 0 2px;
  padding: 10px;
  border: 1px solid rgba(218, 230, 249, 0.96);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: rgba(28, 69, 141, 0.08) 0 14px 28px;
}

.auth-qr-code {
  width: 160px;
  height: 160px;
  display: block;
}

.auth-feedback {
  min-height: 24px;
  display: grid;
  place-items: center;
  margin-top: auto;
  padding-top: 8px;
  color: #66748f;
  font-size: 13px;
  font-weight: 850;
}

.auth-feedback.is-error {
  color: #c72f43;
}

.auth-feedback.is-success {
  color: #1769ff;
}

@media (max-width: 992px) {
  .auth-main {
    background: #edf5ff;
  }

  .auth-main::before {
    background:
      linear-gradient(180deg, rgba(237, 244, 255, 0.62) 0%, rgba(247, 251, 255, 0.82) 44%, rgba(255, 255, 255, 0.96) 100%);
  }

  .auth-main::after {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.42) 34%, rgba(255, 255, 255, 0.78));
  }

  .auth-hero {
    padding: 32px 0 44px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-panel {
    grid-column: 1;
    width: min(450px, 100%);
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .auth-shell {
    gap: 18px;
  }

  .auth-panel {
    padding: 20px;
  }

  .auth-panel-head {
    display: flex;
    gap: 12px;
  }

  .auth-mode-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
    margin-top: 14px;
  }

  .auth-mode-tabs button {
    min-height: 36px;
    font-size: 13px;
  }

  .auth-panel-head p {
    font-size: 13px;
    line-height: 1.6;
  }

  .auth-panel-head h2 {
    margin: 8px 0 4px;
    font-size: 24px;
  }

  .auth-form {
    gap: 20px;
    margin-top: 14px;
  }

  .auth-row-between {
    align-items: center;
    flex-direction: row;
  }
}

@media (max-width: 390px) {
  .auth-hero {
    padding-top: 18px;
    padding-bottom: 30px;
  }

  .auth-panel-head h2 {
    font-size: 23px;
  }

  .auth-password,
  .auth-code {
    padding-bottom: 0;
  }

  .auth-password button,
  .auth-code button {
    width: auto;
    margin: 0;
  }

  .auth-code button {
    min-width: 76px;
    padding: 0 10px;
  }

  .auth-code input {
    padding-right: 108px;
  }

  .auth-password button[data-password-toggle] {
    width: 34px;
    min-width: 34px;
    margin: 0;
  }
}

@media (max-width: 340px) {
  .auth-mode-tabs button {
    font-size: 12px;
  }

  .auth-password,
  .auth-code {
    padding-bottom: 0;
  }

  .auth-password button,
  .auth-code button {
    width: auto;
    margin: 0;
  }

  .auth-code button {
    min-width: 72px;
    padding: 0 9px;
    font-size: 12px;
  }

  .auth-code input {
    padding-right: 98px;
  }

  .auth-password button[data-password-toggle] {
    width: 34px;
    min-width: 34px;
    margin: 0;
  }
}

/* Single visual direction for the login preview. */
body.auth-preview-body {
  background:
    radial-gradient(circle at 12% 8%, rgba(23, 105, 255, 0.08), transparent 26%),
    radial-gradient(circle at 92% 16%, rgba(109, 86, 255, 0.1), transparent 28%),
    linear-gradient(180deg, #f3f8ff 0%, #ffffff 100%);
}

.auth-main {
  background:
    radial-gradient(circle at 16% 18%, rgba(23, 105, 255, 0.12), transparent 28%),
    radial-gradient(circle at 70% 68%, rgba(32, 198, 255, 0.1), transparent 30%),
    linear-gradient(115deg, #f7fbff 0%, #edf5ff 46%, #f9fcff 100%);
}

.auth-main::before {
  inset: 0;
  width: auto;
  transform: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.18) 44%, rgba(255, 255, 255, 0.68) 100%),
    linear-gradient(rgba(122, 159, 231, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(122, 159, 231, 0.05) 1px, transparent 1px);
  background-size: auto, 44px 44px, 44px 44px;
}

.auth-main::after {
  background:
    radial-gradient(circle at 21% 78%, rgba(32, 198, 255, 0.1), transparent 26%),
    radial-gradient(circle at 72% 20%, rgba(109, 86, 255, 0.08), transparent 28%);
}

.auth-hero {
  min-height: 620px;
  padding: 44px 0 54px;
}

.auth-shell {
  grid-template-columns: minmax(0, 720px) 450px;
  gap: 30px;
  align-items: center;
}

.auth-showcase {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.auth-visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(164, 193, 248, 0.72);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: rgba(38, 84, 172, 0.12) 0 24px 64px, rgba(255, 255, 255, 0.9) 0 1px 0 inset;
  backdrop-filter: blur(12px);
}

.auth-visual-card img {
  display: block;
  width: 100%;
  height: auto;
}

.auth-feature-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.auth-feature-card {
  min-height: 118px;
  display: grid;
  gap: 7px;
  align-content: start;
  padding: 15px 13px;
  border: 1px solid rgba(178, 205, 250, 0.82);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: rgba(42, 91, 178, 0.08) 0 16px 34px, rgba(255, 255, 255, 0.9) 0 1px 0 inset;
  backdrop-filter: blur(14px);
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.auth-feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(23, 105, 255, 0.34);
  box-shadow: rgba(42, 91, 178, 0.13) 0 20px 40px;
}

.auth-feature-card img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.auth-feature-card strong {
  color: #10215b;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 950;
}

.auth-feature-card span {
  color: #6b7893;
  font-size: 11px;
  line-height: 1.55;
  font-weight: 780;
}

.auth-panel {
  align-self: center;
  min-height: 542px;
  background: rgba(255, 255, 255, 0.92);
}

@media (max-width: 992px) {
  .auth-main::before {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.82)),
      linear-gradient(rgba(122, 159, 231, 0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(122, 159, 231, 0.05) 1px, transparent 1px);
    background-size: auto, 42px 42px, 42px 42px;
  }

  .auth-shell {
    grid-template-columns: 1fr;
  }

  .auth-showcase {
    width: min(720px, 100%);
    justify-self: center;
  }
}

@media (max-width: 768px) {
  .auth-hero {
    padding: 24px 0 38px;
  }

  .auth-showcase {
    gap: 12px;
  }

  .auth-feature-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-feature-card {
    min-height: 96px;
    padding: 13px;
  }
}

@media (max-width: 460px) {
  .auth-feature-cards {
    grid-template-columns: 1fr;
  }

  .auth-feature-card {
    min-height: 76px;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
  }

  .auth-feature-card span {
    grid-column: 2;
  }
}

/* Dashboard v3 selected direction. */
.auth-hero {
  min-height: 650px;
  padding: 36px 0 46px;
}

.auth-shell {
  gap: 34px;
}

.auth-showcase-dashboard {
  position: relative;
  align-self: center;
  min-height: 646px;
  gap: 0;
}

.auth-left-copy {
  position: relative;
  z-index: 2;
  max-width: none;
  padding-left: 4px;
}

.auth-left-copy h1 {
  margin: 0;
  color: #101a45;
  font-size: 38px;
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: 0;
  white-space: nowrap;
}

.auth-left-copy h1 span {
  display: inline-block;
  margin-right: 7px;
  color: #1769ff;
}

.auth-left-copy p {
  max-width: 640px;
  margin: 16px 0 0;
  color: #5d6d8e;
  font-size: 15px;
  line-height: 1.85;
  font-weight: 760;
}

.auth-dashboard-visual {
  position: absolute;
  z-index: 0;
  inset: 168px -4px 86px -10px;
  overflow: visible;
  min-height: 390px;
  margin-top: 0;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 48% 52%, rgba(95, 166, 255, 0.14), transparent 42%),
    url("../img/dashboard-fade.png?v=bg-layer-20260617-1657") center bottom / contain no-repeat;
  box-shadow: none;
  backdrop-filter: none;
  pointer-events: none;
}

.auth-dashboard-visual img {
  display: none;
  width: 100%;
  max-height: none;
  object-fit: contain;
  filter: none;
}

.auth-stat-cards {
  position: relative;
  z-index: 2;
  gap: 10px;
  margin-top: auto;
  padding-top: 426px;
}

.auth-stat-card {
  position: relative;
  overflow: hidden;
  min-height: 78px;
  grid-template-columns: 34px minmax(0, 1fr);
  grid-template-areas:
    "icon value"
    "icon label";
  align-items: center;
  align-content: center;
  column-gap: 10px;
  row-gap: 2px;
  padding: 13px 14px;
  border-radius: 14px;
  border-color: rgba(178, 205, 250, 0.86);
  background: rgba(255, 255, 255, 0.82);
  cursor: default;
  transform: translateY(0);
  transition:
    transform 0.24s ease,
    border-color 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}

.auth-stat-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.68) 42%, transparent 72%);
  opacity: 0;
  transform: translateX(-36%);
  transition: opacity 0.24s ease, transform 0.46s ease;
  pointer-events: none;
}

.auth-stat-card:hover,
.auth-stat-card:focus-within {
  transform: translateY(-7px) scale(1.015);
  border-color: rgba(23, 105, 255, 0.32);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: rgba(42, 91, 178, 0.16) 0 22px 44px, rgba(255, 255, 255, 0.95) 0 1px 0 inset;
}

.auth-stat-card:hover::before,
.auth-stat-card:focus-within::before {
  opacity: 1;
  transform: translateX(38%);
}

.auth-stat-card img {
  grid-area: icon;
  width: 30px;
  height: 30px;
}

.auth-stat-card strong {
  grid-area: value;
  color: #10215b;
  font-size: 22px;
  line-height: 1;
}

.auth-stat-card span {
  grid-area: label;
  color: #62728f;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 850;
}

@media (max-width: 992px) {
  .auth-showcase-dashboard {
    min-height: 640px;
  }

  .auth-left-copy {
    text-align: center;
    justify-self: center;
  }

  .auth-left-copy h1 {
    font-size: 35px;
  }

  .auth-left-copy p {
    margin-right: auto;
    margin-left: auto;
  }
}

@media (max-width: 768px) {
  .auth-showcase-dashboard {
    min-height: auto;
  }

  .auth-left-copy h1 {
    font-size: 34px;
    white-space: normal;
  }

  .auth-left-copy p {
    font-size: 14px;
    line-height: 1.75;
  }

  .auth-dashboard-visual {
    position: relative;
    inset: auto;
    min-height: 264px;
    margin-top: 8px;
    background-position: center center;
  }

  .auth-stat-cards {
    padding-top: 14px;
  }

  .auth-stat-card {
    min-height: 72px;
  }
}

@media (max-width: 460px) {
  .auth-left-copy {
    text-align: left;
  }

  .auth-left-copy h1 {
    font-size: 29px;
    line-height: 1.24;
  }

  .auth-left-copy p {
    margin-top: 12px;
    font-size: 13px;
  }

  .auth-dashboard-visual {
    min-height: 210px;
  }

  .auth-stat-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .auth-stat-card {
    min-height: 68px;
    grid-template-columns: 30px minmax(0, 1fr);
    padding: 11px;
  }

  .auth-stat-card img {
    width: 26px;
    height: 26px;
  }

  .auth-stat-card strong {
    font-size: 18px;
  }

.auth-stat-card span {
    grid-column: auto;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .auth-showcase {
    display: none;
  }

  .auth-hero {
    min-height: auto;
    padding: 28px 0 36px;
  }

  .auth-shell {
    gap: 0;
  }

  .auth-panel {
    width: min(450px, 100%);
  }
}

.title-reveal-ready [data-title-reveal] {
  position: relative;
  opacity: 0;
  transform: translate3d(0, 22px, 0) scale(0.985);
  filter: blur(5px);
  transition:
    opacity 720ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--title-reveal-delay, 0ms);
  will-change: opacity, transform, filter;
}

.title-reveal-ready [data-title-reveal] .accent {
  transition:
    color 620ms ease,
    text-shadow 780ms ease;
  transition-delay: calc(var(--title-reveal-delay, 0ms) + 160ms);
}

.title-reveal-ready [data-title-reveal].is-title-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}

.title-reveal-ready [data-title-reveal].is-title-visible .accent {
  text-shadow: 0 12px 28px rgba(23, 105, 255, 0.2);
}

.title-reveal-ready [data-title-reveal] + .section-title-accent,
.title-reveal-ready [data-title-reveal] + .fls-accent {
  opacity: 0;
  transform: scaleX(0.18);
  transform-origin: center;
  transition:
    opacity 520ms ease,
    transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--title-reveal-delay, 0ms) + 220ms);
}

.title-reveal-ready [data-title-reveal].is-title-visible + .section-title-accent,
.title-reveal-ready [data-title-reveal].is-title-visible + .fls-accent {
  opacity: 1;
  transform: scaleX(1);
}

@media (prefers-reduced-motion: reduce) {
  .title-reveal-ready [data-title-reveal],
  .title-reveal-ready [data-title-reveal] + .section-title-accent,
  .title-reveal-ready [data-title-reveal] + .fls-accent {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}
