:root {
  --navy-950: #061828;
  --navy-900: #0a2135;
  --navy-800: #10324d;
  --teal-700: #087f7a;
  --teal-600: #0b9c94;
  --cyan-400: #41c9d4;
  --ink: #102536;
  --muted: #5d7080;
  --line: #d9e5e9;
  --soft: #f2f7f8;
  --white: #ffffff;
  --success: #087a5b;
  --warning: #9a6110;
  --danger: #a32b3d;
  --shadow: 0 24px 70px rgba(6, 24, 40, 0.12);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  animation: page-enter .48s cubic-bezier(.2,.7,.2,1) both;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button, .button { cursor: pointer; }
:focus-visible { outline: 3px solid var(--cyan-400); outline-offset: 3px; }
.skip-link { position: fixed; left: 1rem; top: -100px; z-index: 1000; background: var(--white); padding: .75rem 1rem; border-radius: 8px; }
.skip-link:focus { top: 1rem; }
.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 820px); margin-inline: auto; }
.section { padding: 5.75rem 0; }
.section-sm { padding: 3.5rem 0; }
.soft { background: var(--soft); }
.dark { background: var(--navy-950); color: var(--white); }
.eyebrow { display: inline-flex; align-items: center; gap: .5rem; margin: 0 0 1rem; color: var(--teal-700); font-size: .78rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.dark .eyebrow, .hero .eyebrow { color: #78e4df; }
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
h1, h2, h3, h4 { margin: 0 0 1rem; color: var(--navy-950); font-weight: 750; line-height: 1.12; letter-spacing: -.035em; }
h1, h2 { text-wrap: balance; overflow-wrap: anywhere; }
h1 { font-size: clamp(2.55rem, 6vw, 5.1rem); }
h2 { font-size: clamp(2rem, 4vw, 3.35rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
h4 { font-size: 1.05rem; }
.dark h1, .dark h2, .dark h3, .dark h4, .hero h1 { color: var(--white); }
p { margin: 0 0 1.25rem; }
.lead { color: var(--muted); font-size: clamp(1.05rem, 2vw, 1.24rem); max-width: 750px; }
.dark .lead, .hero .lead { color: #c8dbe3; }
.tiny { font-size: .82rem; color: var(--muted); }
.muted { color: var(--muted); }
.kicker { color: var(--teal-700); font-weight: 750; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 2rem; margin-bottom: 2.6rem; }
.section-head > div { max-width: 760px; }
.section-head p:last-child { margin-bottom: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; gap: .5rem; border: 1px solid transparent; border-radius: 999px; padding: .78rem 1.15rem; background: var(--teal-600); color: var(--white); font-weight: 750; transition: transform .2s ease, background .2s ease, box-shadow .2s ease; }
.button:hover { transform: translateY(-2px); background: var(--teal-700); box-shadow: 0 12px 28px rgba(11, 156, 148, .22); }
.button.secondary { border-color: var(--line); background: var(--white); color: var(--navy-900); }
.button.secondary:hover { border-color: var(--teal-600); background: #f8ffff; }
.dark .button.secondary, .hero .button.secondary { border-color: rgba(255,255,255,.26); background: transparent; color: var(--white); }
.text-link { color: var(--teal-700); font-weight: 750; }
.text-link::after { content: " →"; }

.site-header { position: sticky; top: 0; z-index: 50; border-bottom: 1px solid rgba(217,229,233,.82); background: rgba(255,255,255,.94); backdrop-filter: blur(14px); }
.nav-wrap { display: flex; min-height: 76px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: .72rem; color: var(--navy-950); font-size: 1.16rem; font-weight: 850; letter-spacing: -.02em; }
.brand-mark { display: grid; width: 36px; height: 36px; place-items: center; border-radius: 10px; background: linear-gradient(145deg, var(--navy-900), var(--teal-600)); color: var(--white); font-size: .85rem; box-shadow: 0 8px 20px rgba(6,24,40,.14); }
.nav { display: flex; align-items: center; gap: 1.2rem; }
.nav a { color: #334e60; font-size: .9rem; font-weight: 650; }
.nav > a:not(.button) { position: relative; }
.nav > a:not(.button)::after { position: absolute; right: .75rem; bottom: .45rem; left: .75rem; height: 2px; transform: scaleX(0); transform-origin: right; background: var(--teal-600); content: ""; transition: transform .24s ease; }
.nav a:hover, .nav a[aria-current="page"] { color: var(--teal-700); }
.nav > a:not(.button):hover::after, .nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }
.nav .button { color: var(--white); font-size: .84rem; }
.nav-toggle { display: none; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 10px; background: var(--white); color: var(--navy-950); }
.nav-toggle span, .nav-toggle::before, .nav-toggle::after { display: block; width: 20px; height: 2px; margin: 4px auto; background: currentColor; content: ""; transition: .2s ease; }

.hero { position: relative; overflow: hidden; padding: 6.6rem 0 5.6rem; background: var(--navy-950); color: var(--white); }
.hero::before { position: absolute; inset: -40% -15% auto 40%; width: 720px; height: 720px; border-radius: 50%; background: radial-gradient(circle, rgba(65,201,212,.18), rgba(65,201,212,0) 68%); content: ""; }
.hero-grid { position: relative; display: grid; grid-template-columns: 1.1fr .9fr; align-items: center; gap: clamp(2.5rem, 7vw, 6rem); }
.hero h1 { max-width: 780px; }
.hero .lead { max-width: 700px; }
.hero-note { margin-top: 1.8rem; color: #99b8c5; font-size: .88rem; }
.hero-visual { position: relative; min-height: 480px; margin: 0; overflow: hidden; border: 1px solid rgba(120,228,223,.22); border-radius: 30px; background: #082136; box-shadow: 0 32px 90px rgba(0,0,0,.38); isolation: isolate; }
.hero-visual::after { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(6,24,40,.3), transparent 40%), linear-gradient(0deg, rgba(6,24,40,.34), transparent 42%); content: ""; pointer-events: none; }
.hero-visual img { --media-shift: 0px; --media-scale: 1.045; width: 100%; height: 100%; min-height: 480px; object-fit: cover; object-position: 62% center; transform: translate3d(0,var(--media-shift),0) scale(var(--media-scale)); transition: transform .24s linear; will-change: transform; }
.hero-visual:hover img { --media-scale: 1.075; }
.visual-badge { position: absolute; z-index: 2; display: flex; align-items: center; gap: .55rem; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: .55rem .8rem; background: rgba(6,24,40,.76); color: #e8fbfa; box-shadow: 0 10px 24px rgba(0,0,0,.24); font-size: .76rem; font-weight: 750; backdrop-filter: blur(10px); }
.visual-badge::before { width: 8px; height: 8px; border-radius: 50%; background: #78e4df; box-shadow: 0 0 0 5px rgba(120,228,223,.12); content: ""; }
.visual-badge.one { right: 1rem; top: 1rem; }
.visual-badge.two { left: 1rem; bottom: 1rem; }
.system-map { position: relative; min-height: 460px; }
.orbit { position: absolute; inset: 6% 4%; border: 1px solid rgba(120,228,223,.2); border-radius: 50%; animation: drift 14s ease-in-out infinite alternate; }
.orbit.two { inset: 19% 16%; border-style: dashed; animation-delay: -5s; }
.core { position: absolute; inset: 50% auto auto 50%; display: grid; width: 154px; height: 154px; place-items: center; transform: translate(-50%,-50%); border: 1px solid rgba(255,255,255,.25); border-radius: 35%; background: linear-gradient(145deg, rgba(11,156,148,.94), rgba(16,50,77,.96)); box-shadow: 0 22px 70px rgba(0,0,0,.35); text-align: center; font-weight: 800; }
.node { position: absolute; display: grid; width: 104px; min-height: 70px; place-items: center; border: 1px solid rgba(255,255,255,.16); border-radius: 14px; background: rgba(14,45,68,.82); color: #d9f5f4; font-size: .76rem; font-weight: 700; text-align: center; backdrop-filter: blur(9px); }
.node.n1 { left: 0; top: 16%; }.node.n2 { right: 0; top: 10%; }.node.n3 { right: 2%; bottom: 10%; }.node.n4 { left: 3%; bottom: 8%; }
.connector { position: absolute; left: 50%; top: 50%; width: 66%; height: 1px; transform-origin: left; background: linear-gradient(90deg, rgba(65,201,212,.65), transparent); }
.connector.c1 { transform: rotate(-157deg); }.connector.c2 { transform: rotate(-32deg); }.connector.c3 { transform: rotate(34deg); }.connector.c4 { transform: rotate(151deg); }
@keyframes drift { to { transform: rotate(4deg) scale(1.03); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation: none !important; transition: none !important; } }

.trust-bar { border-bottom: 1px solid var(--line); background: #fbfdfd; }
.trust-inner { display: grid; grid-template-columns: .7fr 1.3fr; gap: 2rem; align-items: center; padding: 2rem 0; }
.trust-quote { color: var(--navy-900); font-size: 1.16rem; font-weight: 800; line-height: 1.35; }
.trust-inner p { margin: 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.35rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1.35rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 1.1rem; }
.card { position: relative; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.55rem; background: var(--white); transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.card:hover { transform: translateY(-4px); border-color: #acd3d4; box-shadow: var(--shadow); }
.card p:last-child { margin-bottom: 0; }
.icon { display: grid; width: 44px; height: 44px; margin-bottom: 1.25rem; place-items: center; border-radius: 12px; background: #def4f2; color: var(--teal-700); font-weight: 850; }
.card-label { margin-bottom: .7rem; color: var(--teal-700); font-size: .76rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.card ul, .check-list { padding: 0; margin: 1rem 0 1.25rem; list-style: none; }
.card li, .check-list li { position: relative; margin: .5rem 0; padding-left: 1.35rem; color: #405969; }
.card li::before, .check-list li::before { position: absolute; left: 0; color: var(--teal-600); content: "✓"; font-weight: 900; }
.problem { color: #536b7a; font-size: .92rem; }
.result { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--navy-900); font-weight: 700; }
.pill-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.pill { display: inline-flex; border: 1px solid var(--line); border-radius: 999px; padding: .48rem .72rem; background: var(--white); color: #405969; font-size: .84rem; font-weight: 650; }
.pill.quick { border-color: #a4d8c9; background: #effaf6; color: var(--success); }
.pill.medium { border-color: #efd6a6; background: #fff8eb; color: var(--warning); }
.pill.strategic { border-color: #bdcee0; background: #f1f6fb; color: var(--navy-800); }
.steps { counter-reset: step; display: grid; grid-template-columns: repeat(5,1fr); gap: 1rem; }
.step { position: relative; padding: 1.4rem 1rem 1rem; border-top: 3px solid var(--teal-600); }
.step::before { counter-increment: step; content: "0" counter(step); display: block; margin-bottom: 1.1rem; color: var(--teal-700); font-size: .78rem; font-weight: 850; letter-spacing: .1em; }
.step p { color: var(--muted); font-size: .88rem; }
.principles { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; overflow: hidden; border: 1px solid #24455d; border-radius: var(--radius); background: #24455d; }
.principle { min-height: 160px; padding: 1.4rem; background: var(--navy-900); }
.principle strong { display: block; margin-bottom: .6rem; color: #78e4df; }
.principle p { margin: 0; color: #b9ced8; font-size: .88rem; }
.split { display: grid; grid-template-columns: .95fr 1.05fr; align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.media-panel { position: relative; min-height: 440px; overflow: hidden; border-radius: 28px; background: var(--navy-900); box-shadow: var(--shadow); }
.media-panel img { --media-shift: 0px; --media-scale: 1.055; width: 100%; height: 100%; min-height: 440px; object-fit: cover; transform: translate3d(0,var(--media-shift),0) scale(var(--media-scale)); transition: transform .24s linear; will-change: transform; }
.media-panel:hover img { --media-scale: 1.085; }
.media-panel::after { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(6,24,40,.5), transparent 55%); content: ""; pointer-events: none; }
.media-caption { position: absolute; z-index: 2; right: 1.2rem; bottom: 1.2rem; left: 1.2rem; margin: 0; color: var(--white); font-size: .85rem; font-weight: 700; }
.page-hero { --hero-image: url('../images/healthcare-ai-hero.webp'); --hero-shift: 0px; position: relative; overflow: hidden; padding: 5.5rem 0 4rem; background: var(--navy-950); color: var(--white); isolation: isolate; }
.page-hero::before { position: absolute; z-index: -2; inset: -5%; background: linear-gradient(90deg, rgba(6,24,40,.99) 0%, rgba(6,24,40,.94) 45%, rgba(6,24,40,.56) 100%), var(--hero-image) 82% center / cover no-repeat; content: ""; transform: translate3d(0,var(--hero-shift),0) scale(1.045); will-change: transform; }
.page-hero::after { position: absolute; z-index: -1; right: -80px; bottom: -180px; width: 480px; height: 480px; border: 1px solid rgba(120,228,223,.18); border-radius: 50%; box-shadow: 0 0 100px rgba(65,201,212,.08); content: ""; }
body:has(.nav a[href="solutions.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-solutions-indonesia.webp'); }
body:has(.nav a[href="industries.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-industries-indonesia.webp'); }
body:has(.nav a[href="services.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-services-indonesia.webp'); }
body:has(.nav a[href="products.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-products.webp'); }
body:has(.nav a[href="use-cases.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-use-cases-indonesia.webp'); }
body:has(.nav a[href="insights.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-insights-indonesia.webp'); }
body:has(.nav a[href="about.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-about-indonesia.webp'); }
body:has(.nav a[href="contact.html"][aria-current="page"]) .page-hero { --hero-image: url('../images/menu-contact-indonesia.webp'); }
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.5rem, 5vw, 4.5rem); text-shadow: 0 2px 18px rgba(0, 0, 0, .18); }
.page-hero .lead { max-width: 820px; color: #d5e4ea; }
.page-hero .eyebrow { color: #78e4df; }
.page-hero .breadcrumbs { color: #b7cdd6; }
.page-hero .breadcrumbs a { color: #78e4df; }
.breadcrumbs { margin-bottom: 2rem; color: #9fc1cc; font-size: .85rem; }
.breadcrumbs a { color: #78e4df; }
.stat-row { display: grid; grid-template-columns: repeat(4,1fr); margin-top: 2.4rem; border-top: 1px solid rgba(255,255,255,.15); }
.stat { padding: 1.3rem 1rem 0 0; }
.stat strong { display: block; color: var(--white); font-size: 1.4rem; }
.stat span { color: #a9c4cf; font-size: .82rem; }
.feature-band { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; overflow: hidden; border-radius: var(--radius); background: #2a495e; }
.feature-band > div { padding: 2rem; background: var(--navy-900); }
.feature-band p { color: #bdd0d8; }
.service-card { display: flex; min-height: 100%; flex-direction: column; }
.service-card .button { align-self: flex-start; margin-top: auto; }
.price-note { display: inline-flex; margin: .3rem 0 1rem; border-radius: 999px; padding: .4rem .7rem; background: var(--soft); color: var(--muted); font-size: .78rem; font-weight: 750; }
.filter-bar { display: flex; flex-wrap: wrap; align-items: center; gap: .65rem; margin-bottom: 2rem; }
.filter-button { border: 1px solid var(--line); border-radius: 999px; padding: .55rem .8rem; background: var(--white); color: var(--ink); font-size: .84rem; font-weight: 700; }
.filter-button.active { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.search { min-width: min(100%, 320px); margin-left: auto; border: 1px solid var(--line); border-radius: 999px; padding: .65rem 1rem; background: var(--white); }
.product-card[hidden] { display: none; }
.industry-card { display: block; min-height: 260px; color: var(--ink); text-decoration: none; }
.industry-card::after { position: absolute; right: 1.4rem; bottom: 1.25rem; color: var(--teal-700); content: "Explore →"; font-size: .78rem; font-weight: 800; opacity: 0; transform: translateX(-8px); transition: opacity .22s ease, transform .22s ease; }
.industry-card:hover::after { opacity: 1; transform: none; }
.industry-number { display: block; margin-bottom: 2rem; color: var(--teal-700); font-size: .78rem; font-weight: 850; letter-spacing: .12em; }
.industry-grid .industry-card { padding-bottom: 3rem; }
.product-thumb { display: grid; height: 160px; margin: -1.55rem -1.55rem 1.4rem; place-items: center; border-radius: var(--radius) var(--radius) 0 0; background: linear-gradient(145deg, #0c2c44, #0b8883); color: var(--white); font-size: 2rem; font-weight: 850; }
.meta { display: flex; flex-wrap: wrap; gap: 1rem; color: var(--muted); font-size: .8rem; }
.usecase-row { display: grid; grid-template-columns: .7fr 1.3fr auto; align-items: center; gap: 1.5rem; border-bottom: 1px solid var(--line); padding: 1.4rem 0; }
.usecase-row h3, .usecase-row p { margin-bottom: .35rem; }
.article-card time { color: var(--muted); font-size: .8rem; }
.article-card h3 { margin-top: .75rem; }
.article-body h2 { margin-top: 3rem; font-size: 2rem; }
.article-body h3 { margin-top: 2rem; }
.article-body blockquote { margin: 2rem 0; border-left: 4px solid var(--teal-600); padding: 1rem 1.5rem; background: var(--soft); color: var(--navy-900); font-size: 1.15rem; font-weight: 650; }
.callout { border: 1px solid #b7dcdc; border-radius: var(--radius-sm); padding: 1.25rem; background: #f3fbfa; }
.cta-panel { display: grid; grid-template-columns: 1.3fr auto; align-items: center; gap: 2rem; border-radius: 28px; padding: clamp(2rem,5vw,4.2rem); background: linear-gradient(135deg, var(--navy-950), #0e5264); color: var(--white); box-shadow: var(--shadow); }
.cta-panel h2 { color: var(--white); }
.cta-panel p { margin-bottom: 0; color: #c7dbe2; }
.form-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1rem; }
.field { display: flex; flex-direction: column; gap: .42rem; }
.field.full { grid-column: 1 / -1; }
.field label { color: var(--navy-900); font-size: .86rem; font-weight: 750; }
.field input, .field select, .field textarea { width: 100%; border: 1px solid #bdced5; border-radius: 10px; padding: .78rem .85rem; background: var(--white); color: var(--ink); }
.field textarea { min-height: 140px; resize: vertical; }
.field small { color: var(--muted); }
.checkbox { display: flex; gap: .7rem; align-items: flex-start; }
.checkbox input { width: 18px; height: 18px; margin-top: .2rem; }
.form-status { display: none; margin-bottom: 1rem; border-radius: 10px; padding: .8rem 1rem; }
.form-status.show { display: block; }
.form-status.success { background: #eaf8f3; color: var(--success); }
.form-status.error { background: #fff0f2; color: var(--danger); }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.notice { border-left: 4px solid var(--warning); padding: 1rem 1.2rem; background: #fff9ee; color: #654a1c; }
.legal h2 { margin-top: 2.7rem; font-size: 1.75rem; }
.legal h3 { margin-top: 2rem; }
.legal ul { padding-left: 1.25rem; }
.footer { padding: 4rem 0 1.5rem; background: var(--navy-950); color: #b6cad4; }
.footer-grid { display: grid; grid-template-columns: 1.25fr repeat(3,.75fr); gap: 2rem; }
.footer .brand { color: var(--white); }
.footer h3 { color: var(--white); font-size: .9rem; letter-spacing: .04em; }
.footer a { display: block; margin: .45rem 0; color: #c3d3da; font-size: .88rem; }
.footer a:hover { color: #78e4df; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 3rem; border-top: 1px solid #244156; padding-top: 1.3rem; font-size: .78rem; }
.whatsapp {
  position: fixed !important;
  right: max(1rem, env(safe-area-inset-right, 0px));
  bottom: calc(1.25rem + env(safe-area-inset-bottom, 0px));
  z-index: 9999;

  display: flex !important;
  width: 58px;
  height: 58px;
  align-items: center;
  justify-content: center;

  border: 3px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  background: #168b67;
  color: #ffffff;

  box-shadow: 0 14px 30px rgba(6, 24, 40, 0.28);
  font-size: 0.73rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;

  opacity: 1 !important;
  visibility: visible !important;
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
  touch-action: manipulation;
}

.whatsapp::before {
  content: "";
  position: absolute;
  inset: -7px;
  z-index: -1;

  border: 2px solid rgba(22, 139, 103, 0.32);
  border-radius: inherit;
  animation: whatsapp-pulse 2.2s ease-out infinite;
}

@keyframes whatsapp-pulse {
  0% {
    opacity: 0.8;
    transform: scale(0.88);
  }

  70%,
  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* Posisi khusus HP agar tidak tertutup toolbar Samsung/Android */
@media (max-width: 760px) {
  .whatsapp {
    right: max(1rem, env(safe-area-inset-right, 0px));
    bottom: calc(4.75rem + env(safe-area-inset-bottom, 0px));
    width: 60px;
    height: 60px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp::before {
    animation: none;
  }
}
.reveal { opacity: 0; transform: translateY(34px) scale(.985); filter: blur(3px); transition: opacity .72s cubic-bezier(.2,.7,.2,1), transform .72s cubic-bezier(.2,.7,.2,1), filter .6s ease; transition-delay: var(--reveal-delay, 0ms); }
.reveal.reveal-left { transform: translateX(-42px) scale(.985); }
.reveal.reveal-right { transform: translateX(42px) scale(.985); }
.reveal.reveal-zoom { transform: translateY(18px) scale(.94); }
.reveal.visible { opacity: 1; transform: none; }
.reveal.visible { filter: none; }
.scroll-progress { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; height: 3px; transform: scaleX(var(--scroll-progress,0)); transform-origin: left; background: linear-gradient(90deg,#37d4cc,#78e4df); box-shadow: 0 0 14px rgba(55,212,204,.65); pointer-events: none; }

@keyframes page-enter { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@view-transition { navigation: auto; }
::view-transition-old(root) { animation: .24s ease both fade-out; }
::view-transition-new(root) { animation: .4s cubic-bezier(.2,.7,.2,1) both fade-in; }
@keyframes fade-out { to { opacity: 0; transform: scale(.995); } }
@keyframes fade-in { from { opacity: 0; transform: translateY(8px); } }

@media (max-width: 1040px) {
  .nav-toggle { display: block; }
  .nav { position: fixed; inset: 77px 0 auto; display: none; max-height: calc(100vh - 77px); overflow-y: auto; flex-direction: column; align-items: stretch; gap: 0; border-bottom: 1px solid var(--line); padding: 1rem; background: var(--white); }
  .nav.open { display: flex; }
  .nav a { padding: .75rem; }
  .nav .button { margin-top: .5rem; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 860px; }
  .hero-visual { width: min(100%, 760px); min-height: 410px; margin-inline: auto; }
  .hero-visual img { min-height: 410px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .steps { grid-template-columns: repeat(3,1fr); }
  .principles { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1.4fr repeat(3,1fr); }
}
@media (max-width: 760px) {
  .section { padding: 4.2rem 0; }
  .hero { padding: 4.5rem 0 4rem; }
  .hero-visual { min-height: 330px; border-radius: 22px; }
  .hero-visual img { min-height: 330px; object-position: 67% center; }
  .page-hero { padding: 4.2rem 0 3.2rem; }
  .page-hero::before { background-position: 70% center; }
  .section-head, .trust-inner, .split, .cta-panel { display: block; }
  .section-head .button, .cta-panel .button { margin-top: 1rem; }
  .grid-2, .grid-3, .grid-4, .form-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .feature-band { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2,1fr); }
  .usecase-row { grid-template-columns: 1fr; gap: .5rem; }
  .search { width: 100%; margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; }
  .media-panel, .media-panel img { min-height: 340px; }
}
@media (max-width: 480px) {
  .container, .narrow { width: min(calc(100% - 1.3rem), var(--max)); }
  .hero h1 { font-size: 2.45rem; }
  .hero-visual, .hero-visual img { min-height: 280px; }
  .visual-badge { font-size: .68rem; }
  .page-hero { padding: 3.5rem 0 2.7rem; }
  .page-hero h1 { font-size: clamp(2.1rem, 11vw, 3rem); }
  .button-row .button { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 360px) {
  .brand { font-size: 1rem; }
  .brand-mark { width: 34px; height: 34px; }
  .hero h1 { font-size: 2.15rem; }
  .card { padding: 1.25rem; }
  .product-thumb { margin: -1.25rem -1.25rem 1.25rem; }
}

@media (hover: none) {
  .card:hover, .button:hover { transform: none; }
  .hero-visual:hover img { --media-scale: 1.045; }
  .media-panel:hover img { --media-scale: 1.055; }
}

@media (prefers-reduced-motion: reduce) {
  body { animation: none; }
  .reveal { opacity: 1; transform: none; filter: none; transition: none; }
  .hero-visual img, .media-panel img, .page-hero::before { transform: none; }
  .scroll-progress { display: none; }
  ::view-transition-old(root), ::view-transition-new(root) { animation: none; }
}
