:root {
  --ink: #11121a;
  --muted: #666a78;
  --line: #e7e8ef;
  --paper: #f7f8fc;
  --white: #fff;
  --accent: #6264f4;
  --accent-dark: #3839b8;
  --accent-soft: #eeefff;
  --cyan: #74c8ff;
  --chat: #735cff;
  --vive: #9589ff;
  --base: #6e79ff;
  --mine: #8ca0ff;
  --shadow: 0 30px 90px rgba(28, 30, 58, .12);
  --radius-lg: 36px;
  --radius-md: 24px;
  --container: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-feature-settings: "palt" 1, "kern" 1;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.menu-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
img, svg { max-width: 100%; }
::selection { color: #fff; background: var(--accent); }

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 999;
  padding: 10px 14px;
  background: #111;
  color: #fff;
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.section { padding: 150px 0; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 86px;
  display: flex;
  align-items: center;
  transition: background .35s ease, box-shadow .35s ease, height .35s ease;
}
.site-header.is-scrolled {
  height: 72px;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(17,18,26,.08);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; }
.brand { display: inline-flex; align-items: center; gap: 11px; }
.brand-sub { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .21em; }
.global-nav { display: flex; align-items: center; gap: 36px; font-size: 13px; font-weight: 700; letter-spacing: .02em; }
.global-nav > a { position: relative; color: #353744; }
.global-nav > a:not(.nav-cta)::after { content: ""; position: absolute; left: 0; bottom: -7px; width: 100%; height: 1px; background: var(--accent); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.global-nav > a:not(.nav-cta):hover::after { transform: scaleX(1); transform-origin: left; }
.nav-cta { padding: 13px 20px; border-radius: 99px; color: #fff !important; background: var(--ink); transition: transform .25s ease, background .25s ease; }
.nav-cta:hover { transform: translateY(-2px); background: var(--accent-dark); }
.menu-button { display: none; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--ink); position: relative; }
.menu-button span { position: absolute; left: 14px; width: 18px; height: 1px; background: #fff; transition: transform .25s ease, top .25s ease; }
.menu-button span:first-child { top: 19px; }
.menu-button span:last-child { top: 27px; }
.menu-button[aria-expanded="true"] span:first-child { top: 23px; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { top: 23px; transform: rotate(-45deg); }

.hero {
  position: relative;
  min-height: 940px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fbfbfe 0%, #f6f7fb 100%);
}
.hero-grid { position: absolute; inset: 0; opacity: .26; background-image: linear-gradient(rgba(40,42,70,.05) 1px, transparent 1px), linear-gradient(90deg, rgba(40,42,70,.05) 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(to bottom, #000 0, transparent 88%); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(10px); pointer-events: none; }
.hero-glow-a { width: 640px; height: 640px; right: -190px; top: -150px; background: radial-gradient(circle, rgba(101,102,245,.24), rgba(101,102,245,0) 68%); }
.hero-glow-b { width: 520px; height: 520px; left: 28%; bottom: -330px; background: radial-gradient(circle, rgba(116,200,255,.2), rgba(116,200,255,0) 70%); }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; padding-top: 86px; }
.eyebrow { display: flex; align-items: center; gap: 12px; margin: 0 0 26px; color: #777b8b; font-size: 13px; font-weight: 800; letter-spacing: .17em; }
.eyebrow span { width: 28px; height: 1px; background: var(--accent); }
.hero h1 { margin: 0; font-size: clamp(48px, 5.1vw, 72px); font-weight: 700; letter-spacing: -.065em; line-height: 1.17; }
.hero h1 em { color: var(--accent); font-style: normal; position: relative; }
.hero h1 em::after { content: ""; position: absolute; left: 2px; bottom: 4px; z-index: -1; width: calc(100% - 2px); height: 15px; background: linear-gradient(90deg, rgba(98,100,244,.14), rgba(116,200,255,.24)); }
.hero-lead { max-width: 650px; margin: 34px 0 0; color: #555968; font-size: 17px; line-height: 2; letter-spacing: .015em; }
.hero-actions { display: flex; gap: 12px; margin-top: 42px; }
.button { min-height: 56px; display: inline-flex; justify-content: center; align-items: center; gap: 18px; padding: 0 24px; border: 1px solid transparent; border-radius: 99px; font-size: 15px; font-weight: 800; transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease; }
.button:hover { transform: translateY(-3px); }
.button-primary { color: #fff; background: var(--ink); box-shadow: 0 18px 42px rgba(17,18,26,.15); }
.button-primary:hover { background: var(--accent-dark); box-shadow: 0 22px 52px rgba(56,57,184,.24); }
.button-ghost { border-color: #d9dbe4; background: rgba(255,255,255,.7); }
.button-ghost:hover { background: #fff; }
.hero-proof { display: flex; gap: 34px; margin-top: 55px; padding-top: 28px; border-top: 1px solid var(--line); }
.hero-proof div { display: grid; gap: 7px; }
.hero-proof strong { font-size: 18px; letter-spacing: -.04em; }
.hero-proof span { color: #7b7f8d; font-size: 13px; }

.hero-visual { position: relative; min-height: 580px; display: flex; align-items: center; justify-content: center; }
.visual-shell { position: relative; width: min(100%, 620px); height: 430px; border: 1px solid rgba(255,255,255,.9); border-radius: 32px; background: rgba(23,24,38,.96); box-shadow: 0 50px 120px rgba(43,43,82,.25); transform: perspective(1400px) rotateY(-6deg) rotateX(2deg); }
.visual-shell::before { content: ""; position: absolute; inset: 1px; border-radius: 31px; background: radial-gradient(circle at 85% 0, rgba(110,112,255,.23), transparent 38%), linear-gradient(160deg, rgba(255,255,255,.06), transparent 34%); pointer-events: none; }
.visual-topbar { position: relative; height: 58px; display: flex; justify-content: space-between; align-items: center; padding: 0 24px; border-bottom: 1px solid rgba(255,255,255,.08); color: #c7c9d5; font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.live-indicator { display: flex; align-items: center; gap: 7px; color: #cfd2df; }
.live-indicator i { width: 6px; height: 6px; border-radius: 50%; background: #77f0bb; box-shadow: 0 0 0 5px rgba(119,240,187,.1); }
.visual-main { position: relative; padding: 30px 30px 24px; }
.visual-kpi { display: grid; gap: 6px; }
.visual-kpi span { color: #a8acbd; font-size: 13px; }
.visual-kpi strong { color: #fff; font-size: 45px; line-height: 1; letter-spacing: -.06em; }
.visual-kpi small { color: #7ce1b4; font-size: 13px; }
.chart { position: absolute; left: 28px; right: 28px; top: 130px; }
.chart svg { width: 100%; overflow: visible; }
.chart-grid-line { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.chart-area { fill: url(#chartFill); }
.chart-line { fill: none; stroke: #8e91ff; stroke-width: 4; stroke-linecap: round; filter: drop-shadow(0 0 8px rgba(142,145,255,.5)); }
.service-orbit { position: absolute; z-index: 4; min-width: 170px; display: flex; align-items: center; gap: 12px; padding: 12px 16px 12px 12px; border: 1px solid rgba(255,255,255,.7); border-radius: 17px; background: rgba(255,255,255,.86); backdrop-filter: blur(15px); box-shadow: 0 18px 45px rgba(29,30,58,.14); animation: float 5.4s ease-in-out infinite; }
.service-orbit strong { display: block; font-size: 14px; }
.service-orbit small { display: block; margin-top: 3px; color: #858897; font-size: 13px; }
.service-orbit-chat { left: -42px; top: 44px; }
.service-orbit-vive { right: -50px; top: 87px; animation-delay: -1s; }
.service-orbit-base { right: -26px; bottom: 62px; animation-delay: -2s; }
.service-orbit-mine { left: -58px; bottom: 52px; animation-delay: -3s; }
.mini-mark { position: relative; width: 35px; height: 35px; border-radius: 11px; flex: 0 0 auto; background: linear-gradient(145deg, #cbd0ff, #7c7fff); }
.mark-chat { clip-path: polygon(50% 0, 94% 25%, 94% 75%, 50% 100%, 6% 75%, 6% 25%); }
.mark-chat::after { content: "•••"; position: absolute; inset: 7px 0 0; color: #fff; font-size: 13px; text-align: center; letter-spacing: 2px; }
.mark-vive { background: transparent; }
.mark-vive span, .mark-vive i, .mark-vive b { position: absolute; width: 13px; height: 13px; background: #8d91ff; clip-path: polygon(25% 0,75% 0,100% 50%,75% 100%,25% 100%,0 50%); }
.mark-vive span { left: 1px; top: 2px; }.mark-vive i { right: 1px; top: 10px; }.mark-vive b { left: 4px; bottom: 1px; }
.mark-base { border-radius: 50%; overflow: hidden; background: #eef0ff; }
.mark-base::before { content: ""; position: absolute; left: 4px; right: 4px; bottom: 5px; height: 17px; border-radius: 0 0 50% 50%; background: linear-gradient(160deg,#8ea0ff,#6163ec); }
.mark-base span, .mark-base i, .mark-base b { position: absolute; border-radius: 50%; background: #929dff; }
.mark-base span { width: 6px; height: 6px; left: 7px; top: 7px; }.mark-base i { width: 4px; height: 4px; left: 18px; top: 4px; }.mark-base b { width: 5px; height: 5px; right: 6px; top: 9px; }
.mark-mine { overflow: hidden; background: #eef0ff; }
.mark-mine::after, .mark-mine::before { content: ""; position: absolute; width: 44px; height: 16px; left: -4px; border-radius: 50%; background: #7886fb; transform: rotate(8deg); }
.mark-mine::before { bottom: 3px; opacity: .95; }.mark-mine::after { bottom: 11px; opacity: .55; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.hero-scroll { position: absolute; left: 34px; bottom: 40px; display: flex; align-items: center; gap: 12px; color: #9093a0; font-size: 13px; letter-spacing: .22em; transform: rotate(-90deg); transform-origin: left center; }
.hero-scroll span { width: 42px; height: 1px; background: #b8bac3; }

.section-heading { max-width: 760px; }
.section-heading h2 { margin: 0; font-size: clamp(38px, 4.6vw, 66px); line-height: 1.22; letter-spacing: -.06em; }
.section-heading > p:last-child { margin: 28px 0 0; color: var(--muted); font-size: 16px; line-height: 2; }
.section-heading-row { max-width: none; display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: end; }
.section-heading-row > p:last-child { margin: 0 0 4px; }

.statement { background: #fff; }
.journey { position: relative; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin-top: 92px; }
.journey-line { position: absolute; top: 48px; left: 12.5%; right: 12.5%; height: 1px; background: #dfe1e9; }
.journey-step { position: relative; padding: 0 34px 0 0; }
.journey-number { display: block; margin-bottom: 17px; color: #a3a6b1; font-size: 13px; font-weight: 800; letter-spacing: .12em; }
.journey-dot { position: relative; z-index: 2; width: 14px; height: 14px; margin-bottom: 32px; border: 4px solid #fff; border-radius: 50%; background: #c7cad5; box-shadow: 0 0 0 1px #dfe1e9; }
.journey-step.is-active .journey-dot { background: var(--accent); box-shadow: 0 0 0 8px rgba(98,100,244,.1); }
.journey-stage { margin: 0 0 9px; color: #9094a3; font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.journey-step h3 { margin: 0; font-size: 22px; letter-spacing: -.04em; }
.journey-step > p:not(.journey-stage) { min-height: 53px; margin: 14px 0 18px; color: #737786; font-size: 13px; line-height: 1.8; }
.journey-step a { color: var(--accent); font-size: 13px; font-weight: 800; }
.journey-step a::after { content: " ↘"; }

.services { background: var(--paper); }
.service-panel { position: relative; min-height: 680px; display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; margin-top: 80px; padding: 74px; border: 1px solid rgba(17,18,26,.06); border-radius: var(--radius-lg); background: #fff; box-shadow: 0 24px 70px rgba(34,35,62,.06); overflow: hidden; }
.service-panel + .service-panel { margin-top: 30px; }
.service-panel::before { content: ""; position: absolute; width: 520px; height: 520px; right: -200px; top: -250px; border-radius: 50%; background: radial-gradient(circle, rgba(113,115,255,.13), transparent 69%); }
.service-copy, .service-demo { position: relative; z-index: 2; }
.service-title-row { display: flex; align-items: center; gap: 18px; }
.service-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; }
.service-icon svg { width: 39px; height: 39px; }
.service-icon svg path:first-child { fill: rgba(255,255,255,.88); }
.service-icon svg path:not(:first-child), .service-icon svg circle { fill: rgba(255,255,255,.95); }
.service-icon-chat { background: linear-gradient(145deg, #9a83ff, #5d45df); }
.service-icon-vive { background: linear-gradient(145deg, #b2a7ff, #6f6cf2); }
.service-icon-base { background: linear-gradient(145deg, #9aa8ff, #5966e6); }
.service-icon-mine { background: linear-gradient(145deg, #afbcff, #6f7df0); }
.service-kicker { display: block; margin-bottom: 2px; color: #8c90a0; font-size: 13px; font-weight: 800; letter-spacing: .16em; }
.service-title-row h3 { margin: 0; font-size: 41px; line-height: 1; letter-spacing: -.055em; }
.service-catch { margin: 44px 0 20px; font-size: clamp(30px, 3vw, 45px); font-weight: 700; line-height: 1.35; letter-spacing: -.055em; }
.service-description { margin: 0; color: #666a78; font-size: 14px; line-height: 2; }
.feature-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 18px; margin: 28px 0 0; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 20px; color: #3d404c; font-size: 13px; font-weight: 700; }
.feature-list li::before { content: ""; position: absolute; left: 0; top: 6px; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-soft); }
.service-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 0; margin-top: 36px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-stats > div { padding: 22px 20px 20px 0; }
.service-stats > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.service-stats span { display: block; color: #9295a2; font-size: 13px; font-weight: 700; }
.service-stats strong { display: block; margin-top: 5px; font-size: 37px; letter-spacing: -.055em; line-height: 1; }
.service-stats strong small { font-size: .48em; }
.service-stats p { margin: 8px 0 0; color: #4e5260; font-size: 13px; font-weight: 800; }
.service-stats-three { grid-template-columns: repeat(3,1fr); }
.service-stats-three strong { font-size: 30px; }
.service-demo { min-height: 480px; display: grid; place-items: center; border-radius: 28px; background: #f1f2f8; overflow: hidden; }
.demo-label { position: absolute; left: 22px; bottom: 18px; color: #a0a3b2; font-size: 13px; font-weight: 800; letter-spacing: .15em; }

.browser-frame { width: 88%; min-height: 390px; border-radius: 18px; background: #fff; box-shadow: 0 28px 70px rgba(34,35,60,.15); overflow: hidden; transform: rotate(-2deg); }
.browser-bar { height: 38px; display: flex; align-items: center; gap: 6px; padding: 0 14px; border-bottom: 1px solid #ececf2; }
.browser-bar i { width: 7px; height: 7px; border-radius: 50%; background: #d8dae4; }
.browser-bar span { flex: 1; margin-left: 10px; padding: 5px 12px; border-radius: 20px; color: #a0a3ad; background: #f6f6f9; font-size: 13px; text-align: center; }
.product-view { position: relative; min-height: 352px; display: grid; grid-template-columns: 43% 57%; padding: 28px; background: linear-gradient(135deg,#f4f0ff,#fbfbfd 45%,#f2f4ff); }
.product-visual { display: grid; place-items: center; }
.bottle { width: 74px; height: 166px; border-radius: 20px 20px 30px 30px; background: linear-gradient(100deg,#eceaf3,#fff 45%,#d7d7e6); box-shadow: inset 8px 0 18px rgba(255,255,255,.8), 0 22px 30px rgba(50,51,83,.1); position: relative; }
.bottle::before { content: ""; position: absolute; width: 32px; height: 25px; left: 21px; top: -19px; border-radius: 6px 6px 0 0; background: #b9bbca; }
.product-lines { padding: 30px 0 0 12px; }
.product-lines b, .product-lines span { display: block; height: 8px; margin-bottom: 13px; border-radius: 4px; background: #dfe0e9; }
.product-lines b { width: 78%; height: 18px; background: #b7b9c8; }
.product-lines span:nth-child(2) { width: 89%; }.product-lines span:nth-child(3) { width: 68%; }.product-lines span:nth-child(4) { width: 45%; }
.exit-chat { position: absolute; right: 18px; bottom: 16px; width: 68%; padding: 18px; border: 1px solid #e4e5ef; border-radius: 18px; background: rgba(255,255,255,.96); box-shadow: 0 18px 45px rgba(38,39,70,.14); }
.chat-head { display: flex; align-items: center; gap: 9px; }
.avatar { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: #fff; background: var(--chat); font-size: 13px; font-weight: 900; }
.chat-head strong { display: block; font-size: 13px; }.chat-head small { display: block; margin-top: 2px; color: #9da0aa; font-size: 13px; }
.exit-chat p { margin: 15px 0 10px; font-size: 13px; font-weight: 700; }
.choice-row { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.choice-row button { border: 1px solid #dfe0e8; border-radius: 8px; padding: 8px; color: #505360; background: #fafafd; font-size: 13px; }

.demo-vive { background: linear-gradient(145deg,#f1f2fa,#e7e9f6); }
.phone { position: absolute; width: 205px; height: 410px; padding: 10px; border: 2px solid #1b1c24; border-radius: 36px; background: #15161c; box-shadow: 0 32px 54px rgba(26,27,47,.25); }
.phone-back { left: 10%; top: 55px; transform: rotate(-8deg); }
.phone-front { right: 10%; top: 20px; transform: rotate(7deg); }
.phone-notch { position: absolute; z-index: 3; top: 14px; left: 50%; width: 70px; height: 18px; border-radius: 0 0 12px 12px; background: #14151b; transform: translateX(-50%); }
.phone-screen { height: 100%; border-radius: 27px; background: #fff; overflow: hidden; }
.phone-screen > small { display: block; padding: 52px 18px 12px; color: #8e91a0; font-size: 13px; font-weight: 800; letter-spacing: .14em; }
.message-screen { background: #f1f1f5; }
.message-bubble { width: 85%; margin: 85px auto 0; padding: 16px; border-radius: 16px 16px 16px 4px; background: #fff; color: #343743; font-size: 13px; line-height: 1.7; box-shadow: 0 6px 20px rgba(27,28,46,.08); }
.message-bubble a { color: var(--accent); text-decoration: underline; }
.email-screen { background: #f7f1f3; }
.mail-card { width: 88%; margin: 17px auto; padding: 24px 16px 18px; border-radius: 16px; background: linear-gradient(#fff,#fff7f9); text-align: center; box-shadow: 0 8px 24px rgba(55,31,43,.09); }
.mail-card b { display: block; color: #2f313d; font-size: 17px; line-height: 1.5; }
.mail-card span { display: block; margin: 15px 0; color: #777b89; font-size: 13px; line-height: 1.7; }
.mail-card button { width: 100%; border: 0; border-radius: 8px; padding: 11px; color: #fff; background: #ed6f90; font-size: 13px; font-weight: 800; }

.demo-base { background: #e9ebf4; }
.dashboard-card { width: 92%; min-height: 390px; padding: 24px; border-radius: 20px; color: #fff; background: #1b1d27; box-shadow: 0 28px 70px rgba(25,26,44,.24); transform: rotate(1.5deg); }
.dashboard-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.dashboard-head small { display: block; color: #8f93a5; font-size: 13px; }.dashboard-head strong { display: block; margin-top: 4px; font-size: 13px; }.dashboard-head > span { color: #7f8396; font-size: 13px; }
.dashboard-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; margin-top: 18px; }
.dashboard-kpis div { padding: 14px; border: 1px solid rgba(255,255,255,.06); border-radius: 10px; background: #222531; }
.dashboard-kpis small { display: block; color: #8f93a5; font-size: 13px; }.dashboard-kpis strong { display: block; margin: 5px 0; font-size: 22px; }.dashboard-kpis em { color: #7fe2b3; font-size: 13px; font-style: normal; }
.dashboard-chart { height: 155px; margin-top: 16px; border-radius: 10px; background: #20232e; }
.dashboard-chart svg { width: 100%; height: 100%; padding: 14px; }
.dash-grid { fill: none; stroke: rgba(255,255,255,.08); stroke-width: 1; }
.dash-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.dash-line-a { stroke: #67a9ff; }.dash-line-b { stroke: #6ce0d0; }
.dashboard-table { display: grid; gap: 7px; margin-top: 14px; }
.dashboard-table span { height: 7px; border-radius: 4px; background: linear-gradient(90deg,rgba(255,255,255,.1) 14%,transparent 14% 17%,rgba(255,255,255,.06) 17% 45%,transparent 45% 48%,rgba(255,255,255,.06) 48% 72%,transparent 72% 75%,rgba(255,255,255,.06) 75%); }

.demo-mine { min-height: 520px; background: radial-gradient(circle at center,#f8f9ff 0,#eef0f9 64%,#e8eaf4 100%); }
.mine-center { position: absolute; z-index: 3; width: 170px; height: 170px; display: grid; place-content: center; justify-items: center; border: 1px solid rgba(98,100,244,.2); border-radius: 50%; background: rgba(255,255,255,.82); box-shadow: 0 22px 55px rgba(50,52,88,.12), 0 0 0 18px rgba(98,100,244,.045); }
.mine-center span { color: #8e92a0; font-size: 13px; }.mine-center strong { margin: 5px 0; font-size: 32px; letter-spacing: -.05em; }.mine-center small { color: var(--accent); font-size: 13px; font-weight: 800; letter-spacing: .17em; }
.mine-node { position: absolute; z-index: 3; width: 148px; padding: 15px; border: 1px solid rgba(255,255,255,.85); border-radius: 15px; background: rgba(255,255,255,.9); box-shadow: 0 14px 35px rgba(48,49,80,.1); }
.mine-node b { display: block; font-size: 13px; }.mine-node span { display: block; margin-top: 5px; color: #8c8f9c; font-size: 13px; }
.node-sms { left: 24px; top: 48px; }.node-mail { right: 20px; top: 48px; }.node-phone { left: 15px; bottom: 92px; }.node-ads { right: 18px; bottom: 90px; }.node-chat { left: 50%; bottom: 22px; transform: translateX(-50%); }
.mine-lines { position: absolute; inset: 18px; width: calc(100% - 36px); height: calc(100% - 36px); }
.mine-lines path { fill: none; stroke: #c7cbe1; stroke-width: 1.2; stroke-dasharray: 4 6; }
.channel-strip { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 34px; }
.channel-strip span { padding: 9px 12px; border: 1px solid #e4e5ed; border-radius: 99px; color: #6f7380; background: #fafafd; font-size: 13px; font-weight: 800; letter-spacing: .08em; }

.compare { background: #fff; }
.compare-table-wrap { margin-top: 70px; overflow-x: auto; border: 1px solid var(--line); border-radius: 24px; }
.compare-table { width: 100%; min-width: 960px; border-collapse: collapse; background: #fff; }
.compare-table th, .compare-table td { padding: 25px 24px; border-bottom: 1px solid var(--line); text-align: left; font-size: 13px; }
.compare-table thead th { color: #8b8e9b; background: #f8f9fc; font-size: 13px; font-weight: 800; letter-spacing: .09em; }
.compare-table tbody th { font-size: 16px; letter-spacing: -.03em; }
.compare-table tbody tr:last-child th, .compare-table tbody tr:last-child td { border-bottom: 0; }
.table-dot { display: inline-block; width: 10px; height: 10px; margin-right: 10px; border-radius: 50%; }
.dot-chat { background: var(--chat); }.dot-vive { background: var(--vive); }.dot-base { background: var(--base); }.dot-mine { background: var(--mine); }

.strength { background: #f7f8fc; }
.strength-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 100px; align-items: start; }
.strength-cards { display: grid; gap: 16px; }
.strength-card { position: relative; min-height: 180px; padding: 40px 42px 36px 108px; border: 1px solid #e4e5ed; border-radius: 24px; background: rgba(255,255,255,.8); }
.strength-card > span { position: absolute; left: 38px; top: 39px; display: grid; place-items: center; width: 48px; height: 48px; border: 1px solid #dedfea; border-radius: 50%; color: var(--accent); font-size: 13px; font-weight: 900; }
.strength-card h3 { margin: 0 0 12px; font-size: 21px; }
.strength-card p { margin: 0; color: #707482; font-size: 13px; line-height: 1.9; }

.company { background: #fff; }
.company-table { max-width: 860px; margin: 60px auto 0; border-top: 1px solid var(--line); }
.company-table > div { display: grid; grid-template-columns: 260px 1fr; gap: 24px; padding: 22px 8px; border-bottom: 1px solid var(--line); }
.company-table dt { color: var(--muted); font-size: 13px; font-weight: 700; }
.company-table dd { margin: 0; font-size: 14px; line-height: 1.8; }

.contact { position: relative; overflow: hidden; color: #fff; background: #12131d; }
.contact::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px); background-size: 60px 60px; mask-image: radial-gradient(circle at center,#000,transparent 80%); }
.contact-orb { position: absolute; border-radius: 50%; filter: blur(20px); }
.contact-orb-a { width: 600px; height: 600px; right: -180px; top: -240px; background: radial-gradient(circle,rgba(98,100,244,.48),transparent 68%); }
.contact-orb-b { width: 480px; height: 480px; left: -220px; bottom: -250px; background: radial-gradient(circle,rgba(116,200,255,.24),transparent 69%); }
.contact-inner { position: relative; z-index: 2; text-align: center; }
.eyebrow-light { justify-content: center; color: #898d9f; }
.contact h2 { margin: 0; font-size: clamp(48px, 6vw, 82px); line-height: 1.16; letter-spacing: -.065em; }
.contact > .container > p:not(.eyebrow) { max-width: 650px; margin: 30px auto 0; color: #aeb1bf; font-size: 15px; line-height: 2; }
.contact-actions { margin-top: 44px; }
.button-white { color: #15161f; background: #fff; box-shadow: 0 20px 60px rgba(0,0,0,.26); }
.button-white:hover { color: #fff; background: var(--accent); }
.contact-actions p { margin: 14px 0 0; color: #696d7d; font-size: 13px; }
.contact-services { display: flex; justify-content: center; gap: 28px; margin-top: 90px; color: #6f7281; font-size: 18px; font-weight: 800; letter-spacing: -.03em; }
.site-footer { padding: 32px 0; color: #747785; background: #0d0e15; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; }
.footer-brand .brand-sub { color: #7478f5; }
.site-footer p, .site-footer a { font-size: 13px; letter-spacing: .08em; }

.reveal { opacity: 0; transform: translateY(26px); transition: opacity .75s cubic-bezier(.2,.7,.2,1), transform .75s cubic-bezier(.2,.7,.2,1); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }.delay-2 { transition-delay: .24s; }

@media (max-width: 1080px) {
  .hero { min-height: auto; padding: 150px 0 110px; }
  .hero-inner { grid-template-columns: 1fr; gap: 80px; }
  .hero-copy { max-width: 760px; }
  .hero-visual { min-height: 520px; }
  .visual-shell { transform: none; }
  .section-heading-row { grid-template-columns: 1fr 360px; gap: 40px; }
  .service-panel { gap: 42px; padding: 56px; }
  .feature-list { grid-template-columns: 1fr; }
  .strength-grid { gap: 60px; }
}

@media (max-width: 820px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 100px 0; }
  .site-header, .site-header.is-scrolled { height: 70px; }
  .menu-button { display: block; z-index: 102; }
  .global-nav { position: fixed; inset: 0; z-index: 101; display: flex; flex-direction: column; justify-content: center; gap: 32px; color: #fff; background: rgba(17,18,26,.98); opacity: 0; visibility: hidden; transition: opacity .25s ease, visibility .25s ease; }
  .global-nav.is-open { opacity: 1; visibility: visible; }
  .global-nav > a { color: #fff; font-size: 20px; }
  .nav-cta { padding: 16px 28px; background: var(--accent); }
  .hero { padding-top: 120px; }
  .hero-inner { padding-top: 20px; }
  .hero h1 { font-size: clamp(43px, 11.5vw, 68px); }
  .hero-lead { font-size: 15px; }
  .hero-proof { gap: 22px; }
  .hero-visual { min-height: 470px; }
  .visual-shell { width: 88%; height: 360px; }
  .visual-main { padding: 24px; }
  .chart { top: 115px; }
  .service-orbit { min-width: 150px; padding: 10px 12px 10px 9px; }
  .service-orbit-chat { left: -5px; top: 22px; }.service-orbit-vive { right: -2px; top: 60px; }.service-orbit-base { right: 4px; bottom: 36px; }.service-orbit-mine { left: -7px; bottom: 28px; }
  .section-heading-row { display: block; }
  .company-table > div { grid-template-columns: 1fr; gap: 6px; }
  .section-heading-row > p:last-child { margin-top: 24px; }
  .journey { grid-template-columns: 1fr 1fr; gap: 52px 24px; }
  .journey-line { display: none; }
  .service-panel { grid-template-columns: 1fr; padding: 48px; }
  .service-demo { min-height: 470px; order: -1; }
  .service-copy { max-width: 660px; }
  .strength-grid { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 82px 0; }
  .brand-sub { display: none; }
  .hero { padding: 108px 0 84px; }
  .hero h1 { font-size: 42px; line-height: 1.22; }
  .hero-lead { margin-top: 25px; font-size: 14px; line-height: 1.85; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-proof { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-proof div:last-child { grid-column: 1 / -1; }
  .hero-visual { min-height: 400px; margin-top: 10px; }
  .visual-shell { width: 100%; height: 300px; border-radius: 24px; }
  .visual-topbar { height: 50px; padding: 0 17px; }
  .visual-kpi strong { font-size: 34px; }
  .chart { left: 18px; right: 18px; top: 100px; }
  .service-orbit { min-width: 130px; gap: 8px; border-radius: 14px; }
  .service-orbit strong { font-size: 13px; }.service-orbit small { font-size: 13px; }
  .mini-mark { width: 29px; height: 29px; }
  .service-orbit-chat { left: -4px; top: 9px; }.service-orbit-vive { right: -4px; top: 44px; }.service-orbit-base { right: -4px; bottom: 20px; }.service-orbit-mine { left: -4px; bottom: 12px; }
  .hero-scroll { display: none; }
  .section-heading h2 { font-size: 38px; }
  .section-heading > p:last-child { font-size: 14px; line-height: 1.9; }
  .journey { grid-template-columns: 1fr; gap: 38px; margin-top: 60px; }
  .journey-step { padding: 0 0 0 38px; }
  .journey-number, .journey-dot { position: absolute; left: 0; }
  .journey-number { top: 2px; }.journey-dot { top: 30px; }
  .journey-step > p:not(.journey-stage) { min-height: 0; }
  .service-panel { min-height: 0; margin-top: 56px; padding: 22px; border-radius: 26px; }
  .service-panel + .service-panel { margin-top: 18px; }
  .service-demo { min-height: 380px; border-radius: 21px; }
  .service-title-row { gap: 13px; }
  .service-icon { width: 49px; height: 49px; border-radius: 15px; }.service-icon svg { width: 33px; height: 33px; }
  .service-title-row h3 { font-size: 34px; }
  .service-catch { margin-top: 32px; font-size: 31px; }
  .service-description { font-size: 13px; }
  .service-stats { margin-top: 28px; }.service-stats strong { font-size: 31px; }
  .service-stats-three { grid-template-columns: 1fr; }
  .service-stats-three > div + div { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .browser-frame { width: 96%; }
  .phone { width: 170px; height: 340px; border-radius: 30px; }
  .phone-back { left: 2%; top: 55px; }.phone-front { right: 2%; top: 25px; }
  .phone-notch { width: 58px; height: 15px; }
  .phone-screen { border-radius: 23px; }.phone-screen > small { padding-top: 45px; }
  .message-bubble { margin-top: 58px; }.mail-card { padding-top: 18px; }.mail-card b { font-size: 14px; }
  .dashboard-card { width: 96%; padding: 16px; }
  .dashboard-kpis div { padding: 10px; }.dashboard-kpis strong { font-size: 17px; }
  .demo-mine { min-height: 450px; }
  .mine-center { width: 140px; height: 140px; }
  .mine-node { width: 118px; padding: 11px; }.mine-node b { font-size: 13px; }.mine-node span { font-size: 13px; }
  .node-sms { left: 8px; }.node-mail { right: 8px; }.node-phone { left: 7px; }.node-ads { right: 7px; }
  .compare-table-wrap { margin-top: 44px; border-radius: 18px; }
  .strength-card { padding: 30px 24px 28px 82px; }.strength-card > span { left: 24px; top: 28px; width: 40px; height: 40px; }
  .contact h2 { font-size: 46px; }
  .contact-services { flex-wrap: wrap; gap: 13px 22px; margin-top: 64px; font-size: 15px; }
  .footer-inner { flex-direction: column; gap: 18px; }
}

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

/* Brand logo (DIGIVALUE ワードマーク) — ヘッダーは黒版・フッターは白版の画像を使用 */
.brand-logo { width: 190px; }
