:root {
  --ink: #0b2a3f;
  --muted: #627a87;
  --paper: #f5fafb;
  --line: #dcebee;
  --navy: #061f31;
  --navy-2: #0a3850;
  --teal: #19a99e;
  --cyan: #28c5d5;
  --blue: #3e62ba;
  --warm: #ef776f;
  --white: #fff;
  --container: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 78px; }
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: Inter, "SF Pro Display", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
h1, h2, h3, p { margin-top: 0; }
.container { width: var(--container); margin: 0 auto; }
.section { position: relative; padding: 110px 0; }
.skip-link { position: fixed; z-index: 100; left: 18px; top: 12px; padding: 10px 15px; border-radius: 10px; color: #fff; background: var(--navy); box-shadow: 0 10px 28px rgba(0, 24, 38, .22); transform: translateY(-160%); transition: transform .2s ease; }
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  height: 76px;
  border-bottom: 1px solid rgba(8, 96, 133, .12);
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
}
.nav-shell { width: min(1240px, calc(100% - 48px)); height: 100%; margin: auto; display: flex; align-items: center; gap: 31px; }
.brand img { width: 122px; height: auto; }
.site-nav { display: flex; align-items: center; gap: 28px; margin-left: auto; }
.site-nav a { color: #426171; font-size: 13px; transition: color .22s ease; }
.site-nav a:hover { color: var(--teal); }
.language-toggle {
  appearance: none;
  min-height: 38px;
  padding: 7px 2px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 0;
  color: #6a818d;
  background: transparent;
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease;
}
.language-toggle:hover { color: var(--teal); }
.language-toggle:focus-visible { outline: 2px solid var(--teal); outline-offset: 4px; border-radius: 6px; }
.language-toggle i { width: 1px; height: 14px; background: #c8d8df; }
.language-current { color: var(--ink); font-weight: 800; }
.nav-cta { padding: 10px 21px; border-radius: 999px; color: #fff; background: linear-gradient(135deg, var(--blue), var(--teal)); box-shadow: 0 10px 26px rgba(20, 146, 159, .22); font-size: 13px; font-weight: 700; }

html[data-language="en"] body { font-family: Inter, "SF Pro Display", "Segoe UI", system-ui, -apple-system, sans-serif; }
html[data-language="en"] h1,
html[data-language="en"] h2,
html[data-language="en"] h3 { letter-spacing: -.032em; }
html[data-language="en"] .site-nav { gap: 22px; }
html[data-language="en"] .site-nav a { white-space: nowrap; font-size: 12px; }
html[data-language="en"] .nav-cta { white-space: nowrap; }
html[data-language="en"] .eyebrow { letter-spacing: .14em; }
html[data-language="en"] .hero h1 { max-width: 720px; font-size: clamp(47px, 5vw, 70px); line-height: 1.02; }
html[data-language="en"] .hero h1 small { margin-top: 16px; font-size: .35em; line-height: 1.24; }
html[data-language="en"] .capability-card { min-height: 300px; }
html[data-language="en"] .capability-card h3 { line-height: 1.25; }
html[data-language="en"] .suite-feature-grid h3 { line-height: 1.28; }

.hero {
  position: relative;
  min-height: 900px;
  padding: 152px 0 46px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 84% 19%, rgba(63, 215, 218, .25), transparent 30%),
    radial-gradient(circle at 64% 92%, rgba(72, 94, 192, .22), transparent 32%),
    linear-gradient(118deg, #051d2e 0%, #08394f 56%, #0b747b 100%);
}
.hero::before { content: ""; position: absolute; inset: 0; opacity: .18; background-image: radial-gradient(circle, rgba(255,255,255,.78) 1px, transparent 1px); background-size: 30px 30px; mask-image: linear-gradient(to bottom, #000, transparent 87%); }
.hero::after { content: ""; position: absolute; width: 650px; height: 650px; right: -250px; bottom: -390px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 82px rgba(255,255,255,.025), 0 0 0 164px rgba(255,255,255,.017); }
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.eyebrow { display: flex; align-items: center; gap: 10px; color: #8de9e0; font-size: 12px; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow::before { content: ""; width: 25px; height: 2px; border-radius: 2px; background: var(--warm); }
.eyebrow.dark { color: var(--teal); }
.hero h1 { margin: 22px 0 25px; font-size: clamp(50px, 5.15vw, 74px); line-height: 1.08; letter-spacing: -.052em; font-weight: 740; }
.hero h1 small { display: block; max-width: 680px; margin-top: 13px; color: #b9f1ef; font-size: .41em; line-height: 1.3; letter-spacing: -.025em; font-weight: 610; text-wrap: balance; }
.hero-lead { max-width: 620px; margin-bottom: 31px; color: rgba(225, 246, 248, .79); font-size: 17px; line-height: 1.9; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; }
.button { min-height: 50px; padding: 0 24px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; border-radius: 12px; font-size: 14px; font-weight: 750; transition: transform .23s ease, box-shadow .23s ease, border-color .23s ease; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: #097f8d; background: #fff; box-shadow: 0 15px 38px rgba(0,0,0,.17); }
.button-secondary { color: #fff; border: 1px solid rgba(255,255,255,.25); background: rgba(255,255,255,.06); }
.hero-points { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 33px; color: rgba(232, 250, 251, .84); font-size: 12px; }
.hero-points span::before { content: "✓"; margin-right: 7px; color: #75e6dc; font-weight: 900; }

.hero-visual { position: relative; min-height: 590px; display: grid; place-items: center; }
.hero-orbit { position: absolute; width: 505px; height: 505px; right: 3%; top: 8%; border: 1px solid rgba(145, 229, 231, .2); border-radius: 50%; box-shadow: 0 0 0 57px rgba(255,255,255,.018); }
.hero-orbit::after { content: ""; position: absolute; inset: 54px; border: 1px dashed rgba(149, 229, 232, .2); border-radius: inherit; animation: orbit 38s linear infinite; }
.robot-welcome { position: absolute; z-index: 6; left: -2px; top: 16px; width: 190px; height: 205px; padding: 15px 18px 35px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 29px; background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(230,250,249,.9)); box-shadow: 0 26px 62px rgba(0, 23, 36, .3); animation: companionEnter .8s cubic-bezier(.2,.7,.2,1) both, companionBreathe 5s 1s ease-in-out infinite; }
.robot-welcome img { position: relative; z-index: 2; width: 116px; height: 135px; object-fit: contain; filter: drop-shadow(0 13px 14px rgba(19, 100, 105, .2)); }
.robot-halo { position: absolute; width: 128px; height: 32px; left: 31px; bottom: 29px; border-radius: 50%; background: rgba(43, 206, 197, .13); filter: blur(2px); animation: haloPulse 3.5s ease-in-out infinite; }
.wave-mark { position: absolute; z-index: 3; right: 29px; top: 23px; color: #1eaaa2; font-size: 21px; animation: waveMark 1.6s .7s ease-in-out 3; }
.robot-status { position: absolute; z-index: 4; left: 19px; right: 19px; bottom: 13px; display: flex; align-items: center; justify-content: center; gap: 7px; color: #315b66; font-size: 11px; font-weight: 700; }
.robot-status i { width: 7px; height: 7px; border-radius: 50%; background: #27c882; box-shadow: 0 0 0 4px rgba(39,200,130,.12); }
.chat-panel { position: relative; z-index: 4; width: 87%; margin: 72px 0 0 auto; padding: 24px; overflow: hidden; border: 1px solid rgba(255,255,255,.32); border-radius: 28px; color: var(--ink); background: rgba(248, 253, 253, .97); box-shadow: 0 38px 85px rgba(0, 20, 33, .42); transform: perspective(1200px) rotateY(-4deg); }
.chat-panel::before { content: ""; position: absolute; width: 300px; height: 300px; right: -130px; top: -180px; border-radius: 50%; background: radial-gradient(circle, rgba(33, 198, 194, .17), transparent 66%); }
.chat-panel-head { position: relative; display: flex; align-items: start; justify-content: space-between; gap: 15px; padding-bottom: 18px; border-bottom: 1px solid #dfedef; }
.chat-panel-head strong, .chat-panel-head small { display: block; }
.chat-panel-head strong { color: #0a3044; font-size: 15px; }
.chat-panel-head small { margin-top: 4px; color: #536f7b; font-size: 11px; }
.chat-panel-head > span { width: 35px; height: 35px; display: grid; place-items: center; border-radius: 12px; color: #fff; background: linear-gradient(145deg, var(--blue), var(--teal)); font-size: 11px; font-weight: 850; }
.chat-bubble { max-width: 79%; margin: 19px 0; padding: 13px 15px; border-radius: 18px; font-size: 12px; line-height: 1.7; }
.user-bubble { margin-left: auto; border-bottom-right-radius: 6px; color: #fff; background: linear-gradient(135deg, #425bb1, #167f91); box-shadow: 0 10px 24px rgba(42, 86, 147, .18); }
.typing-row { display: flex; align-items: center; gap: 4px; margin: 4px 0 12px; color: #526d78; font-size: 11px; }
.typing-row i { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); animation: typing 1.35s ease-in-out infinite; }
.typing-row i:nth-child(2) { animation-delay: .17s; }.typing-row i:nth-child(3) { animation-delay: .34s; }
.typing-row span { margin-left: 5px; }
.response-card { padding: 17px; border: 1px solid #ddebed; border-radius: 19px; background: #fff; box-shadow: 0 13px 34px rgba(15, 76, 91, .06); }
.response-label { display: flex; align-items: center; justify-content: space-between; }
.response-label b { color: #087e7b; font-size: 11px; letter-spacing: .06em; }
.response-label span { padding: 3px 7px; border-radius: 999px; color: #1d7774; background: #eef9f7; font-size: 11px; }
.response-card p { margin: 12px 0 15px; color: #314f5b; font-size: 12px; line-height: 1.8; }
.response-choice { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border: 1px solid #dce9eb; border-radius: 10px; text-align: center; font-size: 11px; }
.response-choice span, .response-choice strong { padding: 9px; }
.response-choice span { color: #77909a; background: #f3f8f9; }
.response-choice strong { color: #fff; background: linear-gradient(120deg, #435bb4, #17a096); }
.composer-demo { min-height: 44px; margin-top: 14px; padding: 0 12px; display: flex; align-items: center; gap: 8px; border: 1px solid #dce8ea; border-radius: 13px; color: #536f7b; background: #f7fafb; font-size: 11px; }
.composer-demo b { margin-left: auto; color: #168c8b; }
.voice-dot { width: 22px; height: 22px; border-radius: 8px; background: radial-gradient(circle, #fff 0 15%, transparent 17%), linear-gradient(145deg, #4a65bd, #1aa79c); box-shadow: 0 0 0 4px rgba(27,167,156,.08); }
.hero-metrics { position: relative; z-index: 3; display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 40px; border-top: 1px solid rgba(255,255,255,.15); }
.hero-metrics div { padding: 25px 34px 2px; border-right: 1px solid rgba(255,255,255,.13); }
.hero-metrics div:first-child { padding-left: 0; }.hero-metrics div:last-child { border-right: 0; }
.hero-metrics strong, .hero-metrics span { display: block; }
.hero-metrics strong { font-size: 16px; }.hero-metrics span { color: rgba(232, 249, 250, .8); font-size: 12px; }

.overview { background: #fff; }
.overview-grid { display: grid; grid-template-columns: .83fr 1.17fr; gap: 72px; align-items: center; }
.overview-copy h2 { margin: 18px 0 22px; font-size: clamp(38px, 4vw, 53px); line-height: 1.18; letter-spacing: -.045em; }
.overview-copy > p { color: var(--muted); font-size: 16px; line-height: 1.95; }
.boundary-note { margin-top: 27px; padding: 17px 19px; border-left: 3px solid var(--warm); border-radius: 0 11px 11px 0; color: #4a6775; background: var(--paper); font-size: 12px; }
.principle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.principle-grid article { min-height: 226px; padding: 29px; border: 1px solid var(--line); border-radius: 22px; background: linear-gradient(145deg, #f3fbfb, #fff); box-shadow: 0 15px 40px rgba(16, 76, 99, .05); }
.principle-grid article:nth-child(2), .principle-grid article:nth-child(3) { background: linear-gradient(145deg, #f1f4fb, #fff); }
.principle-grid span { color: var(--teal); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 800; }
.principle-grid h3 { margin: 39px 0 11px; font-size: 21px; }
.principle-grid p { margin: 0; color: var(--muted); font-size: 13px; }

.suite {
  overflow: hidden;
  background:
    radial-gradient(circle at 4% 19%, rgba(40, 197, 213, .11), transparent 25%),
    radial-gradient(circle at 94% 76%, rgba(62, 98, 186, .09), transparent 26%),
    #eef8f8;
}
.suite::before { content: ""; position: absolute; inset: 0; opacity: .34; background-image: radial-gradient(circle, rgba(30, 139, 149, .19) 1px, transparent 1px); background-size: 32px 32px; mask-image: linear-gradient(90deg, transparent, #000 24%, #000 76%, transparent); }
.suite .container { position: relative; z-index: 2; }
.suite-layout { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 42px; align-items: center; }
.wellbeing-console { min-width: 0; padding: 24px; border: 1px solid rgba(14, 112, 132, .16); border-radius: 31px; background: rgba(255,255,255,.94); box-shadow: 0 31px 74px rgba(9, 76, 95, .13); }
.console-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; padding: 2px 2px 19px; }
.console-head small, .console-head strong { display: block; }
.console-head small { color: #536f7b; font-size: 11px; }
.console-head strong { margin-top: 2px; color: #0b3447; font-size: 18px; }
.console-head > span { display: flex; gap: 4px; }
.console-head > span i { width: 5px; height: 5px; border-radius: 50%; background: #9db8be; }
.checkin-card { position: relative; min-height: 144px; padding: 25px; display: flex; align-items: center; justify-content: space-between; gap: 20px; overflow: hidden; border-radius: 23px; color: #fff; background: linear-gradient(128deg, #0b3448, #16667a 58%, #1aa69d); }
.checkin-card::before { content: ""; position: absolute; width: 170px; aspect-ratio: 1; right: 4%; border: 1px solid rgba(255,255,255,.16); border-radius: 50%; box-shadow: 0 0 0 26px rgba(255,255,255,.035); }
.checkin-copy { position: relative; z-index: 2; min-width: 0; }
.checkin-copy span, .checkin-copy strong, .checkin-copy small { display: block; }
.checkin-copy span { color: #a7f0eb; font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.checkin-copy strong { margin-top: 7px; font-size: 18px; line-height: 1.35; }
.checkin-copy small { margin-top: 8px; color: rgba(240, 252, 252, .84); font-size: 11px; }
.mood-orbit { position: relative; z-index: 2; flex: 0 0 86px; width: 86px; height: 86px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; }
.mood-orbit::before { content: ""; width: 30px; height: 30px; border: 6px solid #ffd98a; border-left-color: rgba(255,255,255,.48); border-radius: 50%; transform: rotate(-24deg); }
.mood-orbit b { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: #9ce7df; }
.mood-orbit b:nth-child(1) { top: 5px; }.mood-orbit b:nth-child(2) { right: 5px; }.mood-orbit b:nth-child(3) { bottom: 5px; }.mood-orbit b:nth-child(4) { left: 5px; }.mood-orbit b:nth-child(5) { right: 14px; bottom: 13px; background: var(--warm); }
.record-shortcuts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; margin-top: 12px; }
.shortcut-card { min-width: 0; min-height: 86px; padding: 15px; display: flex; align-items: center; gap: 12px; border: 1px solid #dcebec; border-radius: 18px; background: #f9fcfc; }
.shortcut-card > div { min-width: 0; }
.shortcut-card strong, .shortcut-card small { display: block; }
.shortcut-card strong { color: #153d4f; font-size: 13px; }
.shortcut-card small { margin-top: 2px; overflow-wrap: anywhere; color: #536f7b; font-size: 11px; }
.shortcut-card > i { margin-left: auto; color: #4e8691; font-size: 13px; font-style: normal; }
.shortcut-icon { position: relative; flex: 0 0 39px; width: 39px; height: 39px; display: flex; align-items: center; justify-content: center; gap: 2px; border-radius: 13px; background: linear-gradient(145deg, #e2f7f3, #e9f0fa); }
.mood-shortcut .shortcut-icon::before { content: ""; width: 16px; height: 16px; border: 2px solid #179b94; border-radius: 50%; }
.mood-shortcut .shortcut-icon::after { content: ""; position: absolute; width: 7px; height: 3px; bottom: 12px; border-bottom: 2px solid #179b94; border-radius: 50%; }
.voice-shortcut .shortcut-icon { background: linear-gradient(145deg, #edf0fb, #e4f7f5); }
.voice-shortcut .shortcut-icon b { width: 2px; border-radius: 2px; background: #4564b9; animation: consoleWave 1.5s ease-in-out infinite; }
.voice-shortcut .shortcut-icon b:nth-child(1), .voice-shortcut .shortcut-icon b:nth-child(5) { height: 8px; }.voice-shortcut .shortcut-icon b:nth-child(2), .voice-shortcut .shortcut-icon b:nth-child(4) { height: 16px; animation-delay: .16s; }.voice-shortcut .shortcut-icon b:nth-child(3) { height: 23px; animation-delay: .3s; }
.console-insight { min-height: 105px; margin-top: 12px; padding: 18px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border: 1px solid #dce9ee; border-radius: 19px; background: linear-gradient(120deg, #f5f8fd, #f2fbfa); }
.console-insight span, .console-insight strong, .console-insight small { display: block; }
.console-insight span { color: #42616e; font-size: 11px; font-weight: 800; }
.console-insight strong { margin-top: 4px; color: #173d51; font-size: 14px; }
.console-insight small { margin-top: 3px; color: #5a747f; font-size: 11px; }
.assessment-ring { position: relative; flex: 0 0 59px; width: 59px; height: 59px; display: grid; place-items: center; border: 7px solid #dcecef; border-top-color: #22aaa1; border-right-color: #4966bc; border-radius: 50%; transform: rotate(15deg); }
.assessment-ring span { color: #194156; font-size: 17px; font-weight: 850; transform: rotate(-15deg); }
.assessment-ring i { position: absolute; inset: -7px; border: 1px solid rgba(34,170,161,.12); border-radius: inherit; }
.practice-dock { margin-top: 12px; padding: 9px; display: flex; flex-wrap: wrap; gap: 7px; border: 1px solid #dcebec; border-radius: 16px; background: #f6fafb; }
.practice-dock span { flex: 1 1 auto; padding: 7px 8px; border-radius: 10px; color: #486570; background: #fff; text-align: center; font-size: 11px; white-space: nowrap; }
.practice-dock .active { color: #fff; background: linear-gradient(120deg, #4662b9, #16a096); }
.suite-feature-grid { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 15px; }
.suite-feature-grid article { position: relative; min-width: 0; min-height: 196px; padding: 25px; overflow: hidden; border: 1px solid rgba(14, 112, 132, .13); border-radius: 22px; background: rgba(255,255,255,.9); box-shadow: 0 14px 40px rgba(15, 77, 95, .055); }
.suite-feature-grid article::after { content: ""; position: absolute; width: 82px; height: 82px; right: 0; bottom: 0; border-radius: 82px 0 0; background: linear-gradient(145deg, transparent, rgba(28,169,159,.08)); }
.suite-feature-grid article:nth-child(3n + 2)::after { background: linear-gradient(145deg, transparent, rgba(70,98,185,.08)); }
.suite-feature-grid article:nth-child(3)::after { background: linear-gradient(145deg, transparent, rgba(239,119,111,.09)); }
.suite-feature-grid article > span { color: #087e7b; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 850; }
.suite-feature-grid h3 { margin: 27px 0 9px; color: #0c3548; font-size: 17px; }
.suite-feature-grid p { position: relative; z-index: 2; margin: 0; color: var(--muted); font-size: 11px; line-height: 1.85; }

.native-experience {
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 8%, rgba(40, 197, 213, .1), transparent 28%),
    radial-gradient(circle at 3% 88%, rgba(62, 98, 186, .08), transparent 25%),
    #fff;
}
.native-experience::before { content: ""; position: absolute; width: 540px; height: 540px; right: -310px; top: 18%; border: 1px solid rgba(25,169,158,.1); border-radius: 50%; box-shadow: 0 0 0 64px rgba(25,169,158,.025), 0 0 0 128px rgba(62,98,186,.018); }
.native-experience .container { position: relative; z-index: 2; }
.native-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(0, 1.08fr); gap: 56px; align-items: center; }
.assessment-device { width: min(100%, 520px); margin: 0 auto; padding: 13px; min-width: 0; border: 1px solid rgba(8, 43, 61, .28); border-radius: 38px; color: var(--ink); background: linear-gradient(145deg, #071e2d, #0b4358); box-shadow: 0 34px 82px rgba(7, 45, 61, .2); }
.miniapp-bar { min-height: 58px; padding: 0 15px; display: grid; grid-template-columns: 28px 1fr 34px; align-items: center; color: #e9fafb; }
.miniapp-bar span { font-size: 29px; font-weight: 300; line-height: 1; }
.miniapp-bar strong { text-align: center; font-size: 14px; }
.miniapp-bar i { font-size: 12px; font-style: normal; letter-spacing: 2px; }
.assessment-screen { padding: 27px; border-radius: 28px; background: linear-gradient(155deg, #f8fcfc, #eef8f8); }
.assessment-meta { display: flex; align-items: center; justify-content: space-between; gap: 14px; }
.assessment-meta span { color: #118d87; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; font-weight: 850; letter-spacing: .08em; }
.assessment-meta b { padding: 4px 9px; border-radius: 999px; color: #496575; background: #fff; box-shadow: 0 4px 15px rgba(18, 73, 89, .06); font-size: 10px; }
.assessment-screen > h3 { margin: 20px 0 18px; color: #0b3044; font-size: 20px; line-height: 1.55; letter-spacing: -.02em; }
.voice-assist-row { min-height: 69px; padding: 12px 13px; display: flex; align-items: center; gap: 11px; border: 1px solid rgba(42, 180, 172, .17); border-radius: 16px; background: #fff; box-shadow: 0 9px 28px rgba(11, 78, 94, .055); }
.voice-assist-row > div { min-width: 0; }
.voice-assist-row strong, .voice-assist-row small { display: block; }
.voice-assist-row strong { color: #173d50; font-size: 12px; }
.voice-assist-row small { margin-top: 2px; color: #68808b; font-size: 10px; }
.voice-assist-row > b { margin-left: auto; padding: 4px 8px; border-radius: 7px; color: #167e7a; background: #eaf8f6; font-size: 9px; white-space: nowrap; }
.voice-assist-icon { flex: 0 0 37px; width: 37px; height: 37px; display: flex; align-items: center; justify-content: center; gap: 2px; border-radius: 12px; background: linear-gradient(145deg, #edf0fb, #e4f8f5); }
.voice-assist-icon i { width: 2px; border-radius: 3px; background: #3e64ba; }
.voice-assist-icon i:nth-child(1), .voice-assist-icon i:nth-child(5) { height: 8px; }
.voice-assist-icon i:nth-child(2), .voice-assist-icon i:nth-child(4) { height: 16px; }
.voice-assist-icon i:nth-child(3) { height: 23px; background: #18a59c; }
.assessment-options { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 9px; margin-top: 13px; }
.assessment-options > span { min-width: 0; min-height: 52px; padding: 11px 13px; display: flex; align-items: center; border: 1px solid #dbe9eb; border-radius: 13px; color: #4c6874; background: rgba(255,255,255,.84); font-size: 11px; }
.assessment-options .candidate { position: relative; padding-left: 34px; display: grid; grid-template-columns: 1fr; border-color: rgba(27, 163, 155, .45); color: #0e6f70; background: linear-gradient(130deg, #eaf9f6, #f5f8fd); box-shadow: 0 0 0 2px rgba(27, 163, 155, .07); }
.assessment-options .candidate i { position: absolute; left: 12px; top: 50%; width: 13px; height: 13px; border: 4px solid #1aa49c; border-radius: 50%; transform: translateY(-50%); }
.assessment-options .candidate b { font-size: 11px; }
.assessment-options .candidate small { color: #5f7d83; font-size: 9px; }
.voice-confirm { margin-top: 13px; padding: 13px; display: flex; align-items: center; justify-content: space-between; gap: 14px; border: 1px solid rgba(62, 98, 186, .13); border-radius: 15px; background: #fff; }
.voice-confirm span, .voice-confirm strong { display: block; }
.voice-confirm span { color: #718791; font-size: 9px; }
.voice-confirm strong { color: #193f53; font-size: 12px; }
.voice-confirm > b { padding: 9px 12px; border-radius: 9px; color: #fff; background: linear-gradient(120deg, #4561b8, #18a097); box-shadow: 0 8px 18px rgba(39, 112, 147, .15); font-size: 10px; text-align: center; }
.assessment-footnote { margin: 11px 1px 0; color: #6c818b; font-size: 9px; line-height: 1.7; }
.native-feature-list { min-width: 0; display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.native-feature-list article { min-width: 0; min-height: 210px; padding: 24px; display: grid; grid-template-columns: 33px 1fr; gap: 14px; border: 1px solid var(--line); border-radius: 21px; background: rgba(255,255,255,.9); box-shadow: 0 13px 38px rgba(13, 69, 92, .045); }
.native-feature-list article > span { width: 31px; height: 31px; display: grid; place-items: center; border-radius: 10px; color: #108d88; background: #eaf8f6; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 10px; font-weight: 850; }
.native-feature-list h3 { margin: 2px 0 10px; color: #0c3548; font-size: 17px; line-height: 1.42; }
.native-feature-list p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.85; }
.native-privacy-note { grid-column: 1 / -1; padding: 18px 21px; border: 1px solid rgba(239,119,111,.2); border-left: 3px solid var(--warm); border-radius: 15px; background: linear-gradient(120deg, rgba(255,247,245,.95), #fff); }
.native-privacy-note b { display: block; margin-bottom: 5px; color: #9c534f; font-size: 12px; }
.native-privacy-note p { color: #667c86; font-size: 10px; }

.section-heading { max-width: 820px; margin-bottom: 52px; }
.section-heading.center { margin-right: auto; margin-left: auto; text-align: center; }
.section-heading.center .eyebrow { justify-content: center; }
.section-heading h2 { margin: 17px 0; font-size: clamp(36px, 4vw, 52px); line-height: 1.2; letter-spacing: -.042em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.9; }
.capabilities { background: var(--paper); }
.capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.capability-card { position: relative; min-height: 285px; padding: 30px; border: 1px solid var(--line); border-radius: 21px; background: #fff; box-shadow: 0 13px 38px rgba(13, 69, 92, .045); }
.capability-card .num { color: var(--teal); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 800; }
.capability-card h3 { margin: 47px 0 12px; font-size: 20px; }
.capability-card p { margin: 0; color: var(--muted); font-size: 13px; }
.capability-card::after { content: "↗"; position: absolute; right: 23px; top: 23px; width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--teal); background: rgba(25,169,158,.1); }
.capability-card:nth-child(3n + 2)::after { color: var(--blue); background: rgba(62,98,186,.1); }
.capability-card:last-child::after { content: "!"; color: var(--warm); background: rgba(239,119,111,.1); font-weight: 850; }

.experience { overflow: hidden; color: #fff; background: linear-gradient(122deg, #061e2f, #083f55 62%, #0a7d7d); }
.experience::before { content: ""; position: absolute; inset: 0; opacity: .14; background-image: linear-gradient(rgba(87,217,217,.15) 1px, transparent 1px), linear-gradient(90deg, rgba(87,217,217,.15) 1px, transparent 1px); background-size: 55px 55px; mask-image: linear-gradient(90deg, transparent, #000 40%, #000); }
.experience-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .75fr 1.25fr; gap: 70px; align-items: center; }
.experience-copy h2 { margin: 18px 0 21px; font-size: clamp(37px, 4vw, 52px); line-height: 1.18; letter-spacing: -.044em; }
.experience-copy > p { color: rgba(222, 245, 246, .69); font-size: 15px; line-height: 1.9; }
.experience-list { display: grid; gap: 10px; margin-top: 27px; }
.experience-list div { padding: 14px 16px; border: 1px solid rgba(255,255,255,.13); border-radius: 12px; background: rgba(255,255,255,.055); }
.experience-list b, .experience-list span { display: block; }
.experience-list b { color: #a0eee7; font-size: 13px; }.experience-list span { color: rgba(235,250,251,.8); font-size: 12px; }
.state-stage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; padding: 24px; border: 1px solid rgba(255,255,255,.17); border-radius: 31px; background: rgba(2, 24, 36, .28); box-shadow: 0 30px 70px rgba(0,18,28,.26); backdrop-filter: blur(12px); }
.state-card { position: relative; min-height: 255px; padding: 19px; overflow: hidden; border: 1px solid rgba(255,255,255,.2); border-radius: 21px; color: var(--ink); background: linear-gradient(145deg, rgba(255,255,255,.97), rgba(233,248,247,.94)); }
.state-card > span { position: absolute; left: 17px; top: 15px; color: #1e7f7b; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-weight: 850; }
.state-robot { position: relative; width: 120px; height: 140px; margin: 3px auto 0; display: grid; place-items: center; }
.state-robot::after { content: ""; position: absolute; left: 11px; right: 11px; bottom: 4px; height: 22px; border-radius: 50%; background: rgba(25,169,158,.12); filter: blur(2px); }
.state-robot img { position: relative; z-index: 2; width: 103px; height: 125px; object-fit: contain; filter: drop-shadow(0 12px 10px rgba(16, 89, 93, .18)); }
.state-card h3 { margin: 3px 0 2px; text-align: center; font-size: 17px; }
.state-card p { margin: 0; color: #526d78; text-align: center; font-size: 12px; }
.state-enter .state-robot img { transform-origin: 50% 88%; animation: greet 4.8s ease-in-out infinite; }
.state-listen .state-robot img { transform-origin: 50% 85%; animation: listen 3.4s ease-in-out infinite; }
.state-listen .state-robot::before { content: ""; position: absolute; z-index: 3; right: -1px; top: 41px; width: 6px; height: 6px; border: 2px solid #25b8b0; border-left: 0; border-bottom: 0; border-radius: 0 100% 0 0; box-shadow: 5px -5px 0 -2px rgba(37,184,176,.45); animation: listenSignal 2.1s ease-out infinite; }
.state-think .state-robot img { animation: think 3s ease-in-out infinite; }
.state-think .state-robot::before { content: "•••"; position: absolute; z-index: 4; right: -10px; top: 17px; padding: 1px 7px 5px; border-radius: 10px; color: #4563b8; background: #edf0fb; font-size: 12px; letter-spacing: 2px; animation: thought 2.2s ease-in-out infinite; }
.state-reply .state-robot { animation: responseGlow 3.6s ease-in-out infinite; }
.state-reply .state-robot img { animation: reply 3.6s ease-in-out infinite; }

.how { color: #fff; background: var(--navy); }
.how .section-heading h2 { color: #fff; }.how .section-heading p { color: rgba(219,241,245,.64); }
.workflow-steps { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.workflow-steps article { padding-right: 29px; }
.workflow-steps .num { color: #75e1d9; font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; }
.step-line { position: relative; height: 1px; margin: 19px 0 27px; background: rgba(255,255,255,.17); }
.step-line::before { content: ""; position: absolute; left: 0; top: -4px; width: 8px; height: 8px; border-radius: 50%; background: var(--warm); box-shadow: 0 0 0 6px rgba(239,119,111,.13); }
.workflow-steps h3 { margin-bottom: 9px; font-size: 17px; }
.workflow-steps p { margin: 0; color: rgba(231,248,250,.78); font-size: 13px; }

.trust { background: #fff; }
.trust-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 72px; align-items: center; }
.trust-copy h2 { margin: 18px 0 21px; font-size: clamp(37px, 4vw, 52px); line-height: 1.18; letter-spacing: -.043em; }
.trust-copy p { color: var(--muted); font-size: 15px; line-height: 1.9; }
.text-link { min-height: 44px; margin-top: 15px; display: inline-flex; align-items: center; color: var(--teal); font-size: 12px; font-weight: 800; }
.trust-cards { display: grid; gap: 13px; }
.trust-cards article { min-height: 130px; padding: 22px 24px; display: grid; grid-template-columns: 43px 1fr; gap: 18px; border: 1px solid var(--line); border-radius: 18px; background: linear-gradient(145deg, #f7fbfc, #fff); box-shadow: 0 12px 34px rgba(12,75,91,.045); }
.trust-cards i { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; color: #168e89; background: rgba(25,169,158,.1); font-family: ui-monospace, SFMono-Regular, Consolas, monospace; font-size: 11px; font-style: normal; font-weight: 850; }
.trust-cards h3 { margin: 0 0 6px; font-size: 17px; }.trust-cards p { margin: 0; color: var(--muted); font-size: 12px; }
.trust-cards article:last-child { border-color: rgba(239,119,111,.23); background: linear-gradient(145deg, rgba(255,246,244,.94), #fff); }
.trust-cards article:last-child i { color: #d35e58; background: rgba(239,119,111,.11); }

.boundary { padding: 38px 0; color: #dff4f6; background: #081b27; }
.boundary-shell { display: grid; grid-template-columns: .72fr 1.28fr; gap: 70px; align-items: center; }
.boundary-shell > div:first-child > span { color: #8ce7e0; font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.boundary-shell h2 { margin: 9px 0 0; color: #fff; font-size: 25px; line-height: 1.35; letter-spacing: -.025em; }
.boundary-copy p { margin: 0; color: rgba(235,249,250,.82); font-size: 12px; line-height: 1.8; }
.boundary-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.boundary-tags span { padding: 5px 9px; border: 1px solid rgba(239,119,111,.3); border-radius: 7px; color: #ffd0cb; background: rgba(239,119,111,.09); font-size: 11px; }

.final-cta { padding: 84px 0; background: #eef8f8; }
.cta-shell { padding: 53px 59px; display: flex; align-items: center; justify-content: space-between; gap: 52px; border-radius: 29px; color: #fff; background: linear-gradient(124deg, #061f30, #154a68 58%, #15938d); box-shadow: 0 25px 65px rgba(10,75,84,.13); }
.cta-shell h2 { max-width: 750px; margin: 15px 0 11px; font-size: clamp(30px, 3.4vw, 44px); line-height: 1.23; letter-spacing: -.04em; }
.cta-shell p { max-width: 760px; margin: 0; color: rgba(224,245,246,.68); }
.cta-actions { flex: 0 0 auto; display: grid; gap: 10px; }
.cta-button { color: #117e82; background: #fff; }
.cta-secondary { color: #fff; border: 1px solid rgba(255,255,255,.23); background: rgba(255,255,255,.06); }
footer { padding: 34px 0; border-top: 1px solid var(--line); background: #fff; }
.footer-inner { display: flex; align-items: center; gap: 23px; }
.footer-inner img { width: 105px; }.footer-inner p { margin: 0; color: #536f7b; font-size: 12px; }
.footer-inner > a:last-child { min-height: 44px; margin-left: auto; display: inline-flex; align-items: center; color: #486570; font-size: 12px; }

@keyframes orbit { to { transform: rotate(360deg); } }
@keyframes companionEnter { from { opacity: 0; transform: translateY(25px) rotate(-4deg) scale(.92); } to { opacity: 1; transform: translateY(0) rotate(0) scale(1); } }
@keyframes companionBreathe { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-5px); } }
@keyframes haloPulse { 0%,100% { opacity: .65; transform: scale(.92); } 50% { opacity: 1; transform: scale(1.08); } }
@keyframes waveMark { 0%,100% { opacity: .45; transform: rotate(-12deg) scale(.82); } 45% { opacity: 1; transform: rotate(15deg) scale(1.12); } }
@keyframes typing { 0%,65%,100% { opacity: .3; transform: translateY(0); } 30% { opacity: 1; transform: translateY(-3px); } }
@keyframes greet { 0%,78%,100% { transform: translateY(0) rotate(0); } 84% { transform: translateY(-3px) rotate(-4deg); } 90% { transform: translateY(-3px) rotate(4deg); } 96% { transform: translateY(0) rotate(-2deg); } }
@keyframes listen { 0%,100% { transform: rotate(0) translateY(0); } 50% { transform: rotate(-2.5deg) translateY(-3px); } }
@keyframes listenSignal { 0% { opacity: 0; transform: scale(.55); } 35% { opacity: 1; } 100% { opacity: 0; transform: scale(1.5); } }
@keyframes think { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }
@keyframes thought { 0%,100% { opacity: .55; transform: translateY(2px); } 50% { opacity: 1; transform: translateY(-3px); } }
@keyframes responseGlow { 0%,100% { filter: drop-shadow(0 0 0 rgba(41,190,181,0)); } 50% { filter: drop-shadow(0 0 9px rgba(41,190,181,.24)); } }
@keyframes reply { 0%,100% { transform: scale(1); } 45% { transform: scale(1.035); } }
@keyframes consoleWave { 0%,100% { transform: scaleY(.7); opacity: .62; } 50% { transform: scaleY(1.08); opacity: 1; } }

@media (max-width: 1060px) {
  .site-nav { display: none; }
  .language-toggle { margin-left: auto; }
  .hero { min-height: auto; padding-top: 132px; }
  .hero-grid, .overview-grid, .suite-layout, .native-grid, .experience-grid, .trust-grid { grid-template-columns: 1fr; }
  .hero-copy { max-width: 790px; }
  .hero-visual { width: min(780px, 100%); margin: 0 auto; }
  .capability-grid { grid-template-columns: repeat(2, 1fr); }
  .wellbeing-console { width: min(720px, 100%); margin: 0 auto; }
  .assessment-device { width: min(620px, 100%); }
  .native-feature-list { width: min(780px, 100%); margin: 0 auto; }
  .experience-copy, .trust-copy { max-width: 780px; }
  .state-stage { max-width: 780px; }
  .workflow-steps { grid-template-columns: repeat(2, 1fr); gap: 42px 0; }
  .cta-shell { align-items: flex-start; flex-direction: column; }
  .cta-actions { grid-template-columns: repeat(2, auto); }
}

@media (max-width: 700px) {
  :root { --container: min(100% - 32px, 1180px); }
  .nav-shell { width: min(100% - 32px, 1240px); gap: 11px; }
  .site-header { height: 66px; }
  .brand img { width: 105px; }
  .language-toggle { min-height: 34px; gap: 5px; font-size: 11px; }
  .language-toggle i { height: 12px; }
  .nav-cta { padding: 8px 13px; font-size: 11px; }
  .section { padding: 76px 0; }
  .hero { padding: 107px 0 33px; }
  .hero h1 { font-size: 43px; }
  html[data-language="en"] .hero h1 { font-size: clamp(39px, 11.6vw, 51px); line-height: 1.06; }
  .hero-lead { font-size: 15px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .hero-visual { min-height: 590px; }
  .hero-orbit { width: min(350px, 100%); height: auto; aspect-ratio: 1; right: 0; top: 105px; }
  .robot-welcome { left: 0; top: 15px; width: 148px; height: 169px; padding: 11px 13px 30px; border-radius: 23px; }
  .robot-welcome img { width: 91px; height: 105px; }
  .robot-halo { width: 95px; left: 26px; bottom: 27px; }
  .wave-mark { right: 19px; top: 16px; }
  .robot-status { left: 10px; right: 10px; bottom: 10px; font-size: 11px; }
  .chat-panel { width: 94%; margin-top: 115px; padding: 17px; border-radius: 23px; transform: none; }
  .chat-panel-head strong { font-size: 13px; }.chat-panel-head small { font-size: 11px; }
  .chat-bubble, .response-card p { font-size: 11px; }
  .response-choice { grid-template-columns: 1fr; }
  .response-choice span, .response-choice strong { padding: 8px; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div, .hero-metrics div:first-child { padding: 15px 0; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.11); }
  .overview-copy h2, .experience-copy h2, .trust-copy h2 { font-size: 37px; }
  .principle-grid, .capability-grid, .state-stage { grid-template-columns: 1fr; }
  .suite-layout { gap: 28px; }
  .wellbeing-console { padding: 17px; border-radius: 24px; }
  .suite-feature-grid { grid-template-columns: 1fr; }
  .suite-feature-grid article { min-height: 170px; }
  .native-grid { gap: 35px; }
  .native-feature-list { grid-template-columns: 1fr; }
  .native-feature-list article { min-height: auto; }
  .native-privacy-note { grid-column: auto; }
  .principle-grid article { min-height: 205px; }
  .state-stage { padding: 15px; }
  .state-card { min-height: 235px; }
  .workflow-steps { grid-template-columns: 1fr; gap: 28px; }
  .workflow-steps article { padding-right: 0; }
  .step-line { margin-bottom: 17px; }
  .trust-cards article { grid-template-columns: 38px 1fr; gap: 13px; padding: 20px 18px; }
  .boundary-shell { grid-template-columns: 1fr; gap: 18px; }
  .boundary { padding: 44px 0; }
  .cta-shell { padding: 40px 27px; }
  .cta-actions { width: 100%; grid-template-columns: 1fr; }
  .cta-actions .button { width: 100%; }
  .footer-inner { align-items: flex-start; flex-direction: column; gap: 9px; }
  .footer-inner > a:last-child { margin-left: 0; }
}

@media (max-width: 420px) {
  :root { --container: min(100% - 24px, 1180px); }
  .nav-shell { width: min(100% - 24px, 1240px); }
  .nav-cta { display: none; }
  .hero h1 { font-size: 39px; }
  .hero-visual { min-height: 610px; }
  .hero-orbit { width: 100%; height: auto; aspect-ratio: 1; right: 0; }
  .robot-welcome { width: 138px; }
  .chat-panel { width: 100%; }
  .checkin-card { padding: 20px 17px; }
  .mood-orbit { flex-basis: 68px; width: 68px; height: 68px; }
  .record-shortcuts { grid-template-columns: 1fr; }
  .console-insight { align-items: flex-start; }
  .practice-dock span { flex-basis: calc(50% - 4px); }
  .suite-feature-grid article { padding: 22px; }
  .assessment-device { padding: 10px; border-radius: 30px; }
  .assessment-screen { padding: 20px 16px; border-radius: 22px; }
  .assessment-screen > h3 { font-size: 18px; }
  .assessment-options { grid-template-columns: 1fr; }
  .voice-confirm { align-items: stretch; flex-direction: column; }
  .voice-confirm > b { width: 100%; }
  .native-feature-list article { padding: 21px 18px; grid-template-columns: 31px 1fr; gap: 11px; }
  .cta-shell { padding: 36px 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
