:root {
  --ink: #242d38;
  --ink-soft: #65717c;
  --paper: #f5f7f9;
  --paper-deep: #eef1f4;
  --white: #ffffff;
  --navy: #173750;
  --navy-deep: #102a3d;
  --navy-black: #0c2232;
  --blue: #3f7cb1;
  --blue-light: #8fc1e7;
  --coral: #f2644b;
  --green: #3c8a69;
  --line: rgba(36, 45, 56, 0.12);
  --dark-line: rgba(255, 255, 255, 0.15);
  --shadow: 0 32px 90px rgba(5, 23, 36, 0.34);
  --page-gutter: clamp(22px, 5vw, 76px);
  --content-wide: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; overflow-x: clip; background: var(--white); color: var(--ink); font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
button { font: inherit; }
.skip-link { position: fixed; left: 1rem; top: -4rem; z-index: 100; padding: 0.75rem 1rem; background: white; color: var(--ink); border-radius: 0.4rem; }
.skip-link:focus { top: 1rem; }
.hero-shell { position: relative; overflow: hidden; background: var(--navy); color: white; }
.hero-shell::before { content: ""; position: absolute; width: 60vw; height: 60vw; min-width: 680px; min-height: 680px; right: -22vw; top: -35vw; border: 1px solid rgba(143, 193, 231, 0.11); border-radius: 50%; box-shadow: 0 0 0 9vw rgba(143, 193, 231, 0.025), 0 0 0 18vw rgba(143, 193, 231, 0.02); }

.site-header { position: relative; z-index: 10; width: min(var(--content-wide), calc(100% - (var(--page-gutter) * 2))); min-height: 96px; margin: auto; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid var(--dark-line); }
.brand { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.brand img { display: block; width: 132px; height: auto; }
.brand span { padding-left: 1rem; border-left: 1px solid rgba(255,255,255,0.22); color: #aac0cf; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.08em; line-height: 1.35; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: 1.9rem; color: #c5d4de; font-size: 0.78rem; font-weight: 700; }
.site-nav a { text-decoration: none; }
.site-nav a:not(.nav-login):hover { color: white; }
.nav-login { padding: 0.72rem 1rem; border: 1px solid rgba(255,255,255,0.38); border-radius: 999px; color: white; }
.nav-login:hover { border-color: white; background: white; color: var(--navy); }

.hero { position: relative; z-index: 2; width: min(var(--content-wide), calc(100% - (var(--page-gutter) * 2))); min-height: 760px; margin: auto; display: grid; grid-template-columns: minmax(410px, 0.88fr) minmax(570px, 1.12fr); align-items: center; gap: clamp(2.5rem, 4vw, 4.5rem); padding: 72px 0 88px; }
.hero-copy { position: relative; z-index: 4; }
.eyebrow { margin: 0 0 1.4rem; color: var(--blue); font-size: 0.7rem; line-height: 1.2; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; }
.eyebrow span { display: inline-block; width: 28px; height: 1px; margin: 0 0.6rem 0.24rem 0; background: currentColor; }
.eyebrow.light { color: var(--blue-light); }
.hero h1, .section-heading h2, .dashboard-story h2, .service h2, .pilot h2 { margin: 0; font-family: Manrope, Inter, sans-serif; font-weight: 700; letter-spacing: -0.055em; }
.hero h1 { max-width: 650px; font-size: clamp(3.75rem, 5.2vw, 6rem); line-height: 0.98; }
.hero h1 em, .section-heading h2 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 560px; margin: 1.8rem 0 0; color: #c4d2dc; font-size: 1.05rem; line-height: 1.65; }
.hero-actions { display: flex; align-items: center; gap: 1.5rem; margin-top: 2rem; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 1.2rem; min-height: 54px; padding: 0.86rem 1.25rem; border-radius: 0.55rem; text-decoration: none; font-size: 0.82rem; font-weight: 800; transition: transform 160ms ease, background 160ms ease, color 160ms ease; }
.button:hover { transform: translateY(-2px); }
.button-coral { background: var(--coral); color: white; box-shadow: 0 12px 34px rgba(242, 100, 75, 0.24); }
.button-coral:hover { background: #ff735b; }
.text-link { padding: 0.72rem 0; font-size: 0.8rem; font-weight: 800; text-decoration: none; border-bottom: 1px solid currentColor; }
.light-link { color: #b7cad7; border-color: rgba(183,202,215,0.35); }
.hero-loop { max-width: 570px; margin-top: 2.1rem; padding-top: 1.4rem; display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: center; gap: 0.65rem; border-top: 1px solid var(--dark-line); }
.hero-loop div { display: grid; grid-template-columns: auto 1fr; gap: 0.13rem 0.45rem; }
.hero-loop div > span { grid-row: 1 / span 2; color: #6f91a9; font-size: 0.58rem; font-weight: 800; }
.hero-loop strong { font-size: 0.72rem; }
.hero-loop small { color: #8fa8b9; font-size: 0.62rem; }
.hero-loop > i { color: var(--coral); font-style: normal; font-size: 0.8rem; }

.operating-scene { position: relative; min-height: 650px; display: grid; align-items: center; }
.brand-orbit { position: absolute; z-index: -1; border: 1px solid rgba(143,193,231,0.16); border-radius: 50%; }
.orbit-one { width: 490px; height: 490px; right: -60px; top: 50px; }
.orbit-two { width: 280px; height: 280px; left: 35px; bottom: 18px; }
.orbit-two::after { content: ""; position: absolute; width: 22px; height: 22px; right: 22px; bottom: 24px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 10px rgba(242,100,75,0.12); }
.dashboard-preview { position: relative; z-index: 2; width: min(100%, 720px); min-height: 536px; margin-left: auto; overflow: hidden; border: 1px solid rgba(255,255,255,0.18); border-radius: 1.15rem; background: #f7f9fa; color: var(--ink); box-shadow: var(--shadow); transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); transform-origin: center; }
.preview-header { min-height: 62px; padding: 0 1rem; display: flex; align-items: center; justify-content: space-between; background: #142f44; color: white; }
.preview-brand { display: flex; align-items: center; gap: 0.65rem; }
.preview-brand img { border-radius: 0.42rem; }
.preview-brand div { display: grid; }
.preview-brand strong { font-size: 0.72rem; letter-spacing: 0.08em; }
.preview-brand small { color: #92aabc; font-size: 0.57rem; }
.live-chip { display: flex; align-items: center; gap: 0.4rem; padding: 0.34rem 0.5rem; border: 1px solid rgba(255,255,255,0.15); border-radius: 99px; color: #b9cbd7; font-size: 0.56rem; font-weight: 700; }
.live-chip span { width: 6px; height: 6px; border-radius: 50%; background: #67c69a; box-shadow: 0 0 0 4px rgba(103,198,154,0.12); }
.preview-toolbar { min-height: 67px; padding: 0.75rem 1.05rem 0.65rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dce2e6; background: white; }
.preview-toolbar > div:first-child { display: grid; gap: 0.2rem; }
.preview-toolbar span { color: #7c8993; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.12em; }
.preview-toolbar strong { font-size: 0.82rem; }
.range-pills { display: flex; gap: 0.25rem; }
.range-pills span { padding: 0.32rem 0.48rem; border-radius: 0.32rem; color: #74818b; letter-spacing: 0; }
.range-pills span.active { background: #e0edf6; color: #2e6b97; }
.metric-grid { padding: 0.8rem 0.9rem 0; display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 0.55rem; }
.metric-grid article { min-height: 100px; padding: 0.75rem; display: grid; align-content: start; border: 1px solid #dce2e6; border-radius: 0.65rem; background: white; }
.metric-grid article > span { color: #7a8790; font-size: 0.52rem; font-weight: 700; }
.metric-grid strong { margin-top: 0.5rem; font-family: Manrope, sans-serif; font-size: 1.35rem; letter-spacing: -0.04em; }
.metric-grid small { margin-top: 0.2rem; color: #8a949b; font-size: 0.5rem; }
.metric-grid small.up, .metric-grid small.steady { color: var(--green); }
.dashboard-lower { padding: 0.7rem 0.9rem 0.95rem; display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(190px, 0.85fr); gap: 0.6rem; }
.trend-card, .activity-card { min-height: 256px; padding: 0.8rem; border: 1px solid #dce2e6; border-radius: 0.65rem; background: white; }
.trend-card > div:first-child, .activity-title { display: flex; align-items: center; justify-content: space-between; }
.trend-card span, .activity-title span { color: #74828c; font-size: 0.5rem; font-weight: 800; letter-spacing: 0.1em; }
.trend-card small, .activity-title small { color: #8e999f; font-size: 0.48rem; }
.trend-card svg { width: 100%; height: 150px; margin-top: 0.5rem; overflow: visible; }
.chart-grid { fill: none; stroke: #e7ebee; stroke-width: 1; }
.chart-area { fill: url(#chart-fill); }
.chart-line { fill: none; stroke: var(--blue); stroke-width: 4; stroke-linecap: round; }
.cost-line { fill: none; stroke: var(--coral); stroke-width: 2; stroke-dasharray: 4 5; stroke-linecap: round; }
.chart-key { display: flex; gap: 1rem; }
.chart-key span { display: flex; align-items: center; gap: 0.3rem; color: #7f8b94; letter-spacing: 0; }
.chart-key i { width: 12px; height: 2px; }
.sales-key { background: var(--blue); }
.cost-key { border-top: 2px dashed var(--coral); }
.activity-card { padding-inline: 0.75rem; }
.activity-item { min-height: 57px; display: grid; grid-template-columns: 24px 1fr; align-items: center; gap: 0.5rem; border-top: 1px solid #e6eaed; }
.activity-title + .activity-item { margin-top: 0.55rem; }
.activity-item > i { width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; font-size: 0.52rem; font-style: normal; font-weight: 900; }
.activity-item i.done { background: #e2f0e9; color: var(--green); }
.activity-item i.ready { background: #e3eef6; color: var(--blue); }
.activity-item div { display: grid; gap: 0.12rem; }
.activity-item strong { font-size: 0.57rem; }
.activity-item small { color: #87929a; font-size: 0.48rem; }
.mobile-ops-preview { position: absolute; z-index: 4; width: 198px; height: 429px; left: -34px; bottom: -16px; overflow: hidden; border: 7px solid #102433; border-radius: 31px; background: #f8fafb; color: var(--ink); box-shadow: 0 22px 50px rgba(5,23,36,0.38); transform: rotate(-2deg); transform-origin: bottom left; }
.mobile-ops-preview::before { content: ""; position: absolute; z-index: 6; width: 58px; height: 16px; left: 50%; top: 7px; border-radius: 99px; background: #091923; transform: translateX(-50%); }
.mobile-ops-preview::after { content: ""; position: absolute; z-index: 7; width: 62px; height: 3px; left: 50%; bottom: 5px; border-radius: 99px; background: #1c2f3d; transform: translateX(-50%); }
.phone-status { height: 35px; padding: 7px 12px 0; display: grid; grid-template-columns: 1fr 58px 1fr; align-items: start; color: #263945; font-size: 0.4rem; font-weight: 800; }
.phone-status span:last-child { text-align: right; }
.mobile-brief-head { min-height: 50px; padding: 0.45rem 0.65rem 0.55rem; display: flex; align-items: center; gap: 0.5rem; border-bottom: 1px solid #dce3e7; background: white; }
.mobile-brief-head img { border-radius: 0.35rem; }
.mobile-brief-head div { display: grid; gap: 0.08rem; }
.mobile-brief-head small { color: var(--blue); font-size: 0.38rem; font-weight: 900; letter-spacing: 0.09em; }
.mobile-brief-head strong { font-size: 0.62rem; }
.mobile-brief-summary { margin: 0.55rem 0.6rem 0.45rem; padding: 0.65rem; display: grid; grid-template-columns: 1fr auto; gap: 0.2rem; border-radius: 0.75rem; background: var(--navy); color: white; }
.mobile-brief-summary small { color: #9fb8c8; font-size: 0.38rem; font-weight: 900; letter-spacing: 0.1em; }
.mobile-brief-summary strong { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-family: Manrope, sans-serif; font-size: 1.8rem; line-height: 1; }
.mobile-brief-summary span { color: #b7cad6; font-size: 0.43rem; }
.mobile-brief-list { margin: 0 0.6rem; border-top: 1px solid #dce3e7; }
.mobile-brief-list article { min-height: 59px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 0.45rem; border-bottom: 1px solid #dce3e7; }
.mobile-brief-list article > i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; font-size: 0.44rem; font-style: normal; font-weight: 900; }
.mobile-brief-list i.price { background: #fff0ec; color: var(--coral); }
.mobile-brief-list i.order { background: #e2f0e9; color: var(--green); }
.mobile-brief-list i.count { background: #e3eef6; color: var(--blue); }
.mobile-brief-list article div { display: grid; gap: 0.12rem; }
.mobile-brief-list strong { font-size: 0.53rem; }
.mobile-brief-list small { color: #7b8992; font-size: 0.42rem; }
.mobile-brief-list b { color: #97a3aa; font-size: 0.8rem; }
.mobile-brief-nav { position: absolute; left: 0; right: 0; bottom: 10px; min-height: 40px; padding: 0 0.65rem 0.25rem; display: flex; align-items: center; justify-content: space-between; border-top: 1px solid #dce3e7; background: white; color: #8b969d; font-size: 0.4rem; font-weight: 800; }
.mobile-brief-nav span.active { color: var(--blue); }
.scene-tag { position: absolute; z-index: 5; display: flex; align-items: center; gap: 0.48rem; padding: 0.62rem 0.78rem; border: 1px solid rgba(255,255,255,0.18); border-radius: 99px; background: rgba(12,34,50,0.9); color: #d0dde5; box-shadow: 0 12px 30px rgba(5,23,36,0.22); backdrop-filter: blur(8px); font-size: 0.58rem; font-weight: 800; }
.scene-tag-top { right: -12px; top: 30px; }
.scene-tag-bottom { right: 20px; bottom: 8px; }
.scene-tag > span { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(242,100,75,0.12); }
.scene-tag b { width: 18px; height: 18px; display: grid; place-items: center; border-radius: 50%; background: rgba(78,177,133,0.2); color: #72d3a7; font-size: 0.55rem; }

.signal-bar { min-height: 112px; padding: 1.5rem max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); display: flex; align-items: center; justify-content: space-between; gap: 2rem; border-bottom: 1px solid var(--line); background: var(--white); }
.signal-bar > div { display: flex; align-items: center; gap: clamp(0.65rem, 1.7vw, 1.7rem); color: #65717b; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; }
.signal-bar i { color: #b4bbc0; font-style: normal; font-weight: 400; }
.signal-bar > strong { display: flex; align-items: center; gap: 0.7rem; color: var(--navy); font-family: Manrope, sans-serif; font-size: 0.83rem; }
.signal-bar img { border-radius: 0.38rem; }

.platform { padding: 100px max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); background: var(--white); }
.section-heading { max-width: 870px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow span { display: none; }
.section-heading h2 { font-size: clamp(2.9rem, 4.7vw, 4.9rem); line-height: 1.02; }
.section-heading > p:last-child { max-width: 630px; margin: 1.35rem 0 0; color: var(--ink-soft); font-size: 0.98rem; line-height: 1.65; }
.section-heading.centered > p:last-child { margin-inline: auto; }
.loop-grid { margin-top: 4rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.loop-grid article { position: relative; min-height: 470px; padding: 2rem 2.4rem 2.5rem 0; }
.loop-grid article + article { padding-left: 2.4rem; border-left: 1px solid var(--line); }
.step-number { color: #8c979f; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.11em; }
.loop-icon { width: 70px; height: 70px; margin: 2.7rem 0 1.9rem; display: flex; align-items: center; justify-content: center; gap: 0.28rem; border: 1px solid var(--line); border-radius: 1rem; color: var(--coral); }
.capture-icon i { width: 9px; height: 9px; border: 2px solid var(--blue); border-radius: 50%; }
.capture-icon i:nth-child(2) { width: 14px; height: 14px; border-color: var(--coral); }
.understand-icon { align-items: end; padding-bottom: 1.25rem; }
.understand-icon i { width: 7px; height: 17px; border-radius: 5px 5px 0 0; background: #a9c8de; }
.understand-icon i:nth-child(2) { height: 30px; background: var(--blue); }
.understand-icon i:nth-child(3) { height: 24px; background: var(--coral); }
.understand-icon i:nth-child(4) { height: 39px; background: var(--navy); }
.act-icon { font-size: 1.8rem; }
.loop-grid h3 { max-width: 320px; margin: 0; font-family: Manrope, sans-serif; font-size: 1.5rem; line-height: 1.25; letter-spacing: -0.03em; }
.loop-grid p { max-width: 350px; margin: 1.1rem 0 0; color: var(--ink-soft); font-size: 0.88rem; line-height: 1.75; }
.loop-grid ul { margin: 1.6rem 0 0; padding: 1.2rem 0 0; display: grid; gap: 0.65rem; border-top: 1px solid var(--line); list-style: none; color: #56636d; font-size: 0.72rem; font-weight: 700; }
.loop-grid li::before { content: "·"; margin-right: 0.55rem; color: var(--coral); }

.dashboard-story { padding: 100px max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: center; gap: min(8vw, 7rem); background: var(--navy); color: white; }
.dashboard-story h2 { max-width: 610px; font-size: clamp(2.9rem, 4.4vw, 4.7rem); line-height: 1.02; }
.dashboard-lede { max-width: 560px; margin: 1.45rem 0 0; color: #bdccd6; font-size: 0.98rem; line-height: 1.65; }
.dashboard-points { margin-top: 2.2rem; border-top: 1px solid var(--dark-line); }
.dashboard-points > div { min-height: 100px; padding: 1.1rem 0; display: grid; grid-template-columns: 42px 1fr; align-items: start; gap: 0.8rem; border-bottom: 1px solid var(--dark-line); }
.dashboard-points > div > span { color: #7695aa; font-size: 0.62rem; font-weight: 800; }
.dashboard-points p { margin: 0; display: grid; gap: 0.35rem; }
.dashboard-points strong { font-family: Manrope, sans-serif; font-size: 0.92rem; }
.dashboard-points small { max-width: 510px; color: #aabdc9; font-size: 0.75rem; line-height: 1.6; }
.focus-card { overflow: hidden; border: 1px solid rgba(255,255,255,0.16); border-radius: 1rem; background: #f8fafb; color: var(--ink); box-shadow: 0 34px 80px rgba(5,23,36,0.35); }
.focus-head { min-height: 62px; padding: 0 1.1rem; display: flex; align-items: center; justify-content: space-between; background: var(--navy-black); color: white; }
.focus-head span { color: #9bb2c1; font-size: 0.58rem; font-weight: 800; letter-spacing: 0.12em; }
.focus-head strong { font-size: 0.62rem; }
.focus-score { min-height: 190px; padding: 1.4rem 1.6rem; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid #dce3e7; background: white; }
.focus-score > div:first-child { display: grid; gap: 0.55rem; }
.focus-score small { color: #76838d; font-size: 0.57rem; font-weight: 800; letter-spacing: 0.1em; }
.focus-score > div:first-child > strong { font-family: Manrope, sans-serif; font-size: 4.2rem; line-height: 1; letter-spacing: -0.07em; }
.focus-score > div:first-child > strong span { color: var(--coral); font-size: 1.5rem; }
.focus-current { max-width: 205px; padding: 0.8rem 0.9rem; display: grid; grid-template-columns: 30px 1fr; align-items: center; gap: 0.65rem; border: 1px solid #dce3e7; border-radius: 0.7rem; background: #f5f8f9; }
.focus-current > i { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #e2f0e9; color: var(--green); font-size: 0.7rem; font-style: normal; font-weight: 900; }
.focus-current > span { display: grid; gap: 0.18rem; }
.focus-current strong { font-family: Inter, sans-serif; font-size: 0.65rem; line-height: 1.25; letter-spacing: 0; }
.focus-current small { color: #7d8991; font-size: 0.52rem; line-height: 1.35; letter-spacing: 0; }
.focus-list { padding: 0 1.1rem 0.7rem; }
.focus-list article { min-height: 82px; display: grid; grid-template-columns: 10px 1fr auto; align-items: center; gap: 0.75rem; border-bottom: 1px solid #e0e5e8; }
.focus-list article:last-child { border-bottom: 0; }
.focus-status { width: 8px; height: 8px; border-radius: 50%; }
.focus-status.ready { background: var(--green); box-shadow: 0 0 0 5px rgba(60,138,105,0.1); }
.focus-list div { display: grid; gap: 0.2rem; }
.focus-list strong { font-size: 0.78rem; }
.focus-list small { color: #7c8891; font-size: 0.62rem; }
.focus-list b { color: var(--blue); font-size: 0.62rem; }

.system-map { padding: 100px max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); background: var(--paper); }
.module-grid { margin-top: 3.8rem; display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.module-card { min-height: 330px; padding: 1.4rem; display: grid; grid-template-rows: auto 1fr auto auto; border: 1px solid var(--line); border-radius: 0.9rem; background: var(--white); }
.module-card.module-large { grid-column: span 2; }
.module-card > span { color: #929ba2; font-size: 0.62rem; font-weight: 900; }
.module-card h3 { margin: 1.5rem 0 0; font-family: Manrope, sans-serif; font-size: 1.25rem; letter-spacing: -0.03em; }
.module-card p { max-width: 470px; margin: 0.7rem 0 0; color: var(--ink-soft); font-size: 0.8rem; line-height: 1.65; }
.module-art { align-self: center; }
.price-history-art { width: min(100%, 470px); display: grid; grid-template-columns: 1fr auto; gap: 0.45rem 1rem; }
.price-history-art > div { display: grid; gap: 0.15rem; }
.price-history-art > div small, .price-history-art > b { color: #7c8992; font-size: 0.54rem; letter-spacing: 0.08em; }
.price-history-art > div strong { font-family: Manrope, sans-serif; font-size: 1.7rem; letter-spacing: -0.04em; }
.price-history-art > b { align-self: end; color: var(--green); }
.price-history-art > span { grid-column: 1 / -1; height: 72px; display: flex; align-items: end; gap: 0.55rem; padding: 0 0.7rem; border-bottom: 1px solid #dce3e7; background: linear-gradient(to bottom, transparent 49%, #edf1f3 50%, transparent 51%); }
.price-history-art > span i { width: 14%; height: 34%; border-radius: 0.25rem 0.25rem 0 0; background: #bdd7e8; }
.price-history-art > span i:nth-child(2) { height: 48%; background: #8fbad6; }
.price-history-art > span i:nth-child(3) { height: 43%; background: var(--blue); }
.price-history-art > span i:nth-child(4) { height: 66%; background: var(--coral); }
.price-history-art > span i:nth-child(5) { height: 64%; background: var(--navy); }
.recipe-art, .count-art, .task-art { width: min(100%, 250px); padding: 0.9rem; border: 1px solid #dce3e7; border-radius: 0.7rem; background: #f8fafb; }
.recipe-art > span { display: flex; align-items: center; justify-content: space-between; color: #6f7c85; font-size: 0.52rem; font-weight: 800; letter-spacing: 0.08em; }
.recipe-art > span b { padding: 0.2rem 0.35rem; border-radius: 99px; background: #e2f0e9; color: var(--green); font-size: 0.43rem; }
.recipe-art > strong { display: block; margin-top: 0.85rem; font-family: Manrope, sans-serif; font-size: 2.1rem; letter-spacing: -0.05em; }
.recipe-art > strong small { color: #87929a; font: 600 0.58rem Inter, sans-serif; letter-spacing: 0; }
.recipe-art > div { height: 7px; margin: 0.8rem 0 0.45rem; display: flex; overflow: hidden; border-radius: 99px; }
.recipe-art > div i:nth-child(1) { width: 58%; background: var(--blue); }
.recipe-art > div i:nth-child(2) { width: 24%; background: var(--coral); }
.recipe-art > div i:nth-child(3) { width: 18%; background: #b8cbd8; }
.recipe-art > small { color: #78858e; font-size: 0.55rem; }
.par-art { width: min(100%, 280px); padding: 0.9rem; display: grid; grid-template-columns: 1fr auto 1fr; align-items: end; gap: 0.7rem; border: 1px solid #dce3e7; border-radius: 0.7rem; background: #f8fafb; }
.par-art > span { grid-column: 1 / -1; color: #6f7c85; font-size: 0.52rem; font-weight: 800; letter-spacing: 0.08em; }
.par-art > div { display: grid; gap: 0.25rem; }
.par-art > div small { color: #87929a; font-size: 0.46rem; font-weight: 800; }
.par-art > div strong { font-family: Manrope, sans-serif; font-size: 1.7rem; }
.par-art > i { padding-bottom: 0.25rem; color: var(--coral); font-style: normal; }
.count-art { display: grid; gap: 0.8rem; }
.count-art > span { display: flex; align-items: center; justify-content: space-between; }
.count-art > span b { font-size: 0.72rem; }
.count-art > span small { color: var(--green); font-size: 0.5rem; font-weight: 800; }
.count-art > strong { font-family: Manrope, sans-serif; font-size: 2rem; letter-spacing: -0.04em; }
.count-art > strong small { color: #7e8991; font: 600 0.56rem Inter, sans-serif; letter-spacing: 0; }
.count-art > i { height: 7px; overflow: hidden; border-radius: 99px; background: #dae3e8; }
.count-art > i b { display: block; width: 76%; height: 100%; border-radius: inherit; background: var(--blue); }
.order-preview-art { width: min(100%, 430px); padding: 1rem; display: grid; gap: 0.7rem; border: 1px solid rgba(255,255,255,0.17); border-radius: 0.75rem; background: rgba(255,255,255,0.06); }
.order-preview-art header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 0.7rem; border-bottom: 1px solid rgba(255,255,255,0.13); }
.order-preview-art header strong { font-size: 0.75rem; }
.order-preview-art header b { padding: 0.2rem 0.38rem; border-radius: 99px; background: rgba(103,198,154,0.16); color: #7ed4ad; font-size: 0.46rem; letter-spacing: 0.08em; }
.order-preview-art > div { display: flex; align-items: center; justify-content: space-between; color: #b7c7d1; font-size: 0.62rem; }
.order-preview-art > div strong { color: white; font-size: 0.63rem; }
.order-preview-art > small { color: #7f9bad; font-size: 0.52rem; }
.task-art { display: grid; gap: 0.3rem; }
.task-art > div { min-height: 48px; display: grid; grid-template-columns: 25px 1fr; align-items: center; gap: 0.55rem; border-bottom: 1px solid #dce3e7; }
.task-art > div:last-child { border-bottom: 0; }
.task-art i { width: 22px; height: 22px; display: grid; place-items: center; border-radius: 50%; background: #e2f0e9; color: var(--green); font-size: 0.5rem; font-style: normal; font-weight: 900; }
.task-art span { display: grid; gap: 0.1rem; }
.task-art strong { font-size: 0.6rem; }
.task-art small { color: #849099; font-size: 0.5rem; }
.automation-module { background: var(--navy); color: white; }
.automation-module > span { color: #819eaf; }
.automation-module p { color: #adbfca; }

.service { padding: 100px max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); display: grid; grid-template-columns: 0.9fr 1.1fr; gap: min(8vw, 7rem); background: var(--navy-black); color: white; }
.service h2 { max-width: 660px; font-size: clamp(2.9rem, 4.4vw, 4.7rem); line-height: 1.03; }
.service-copy > p:not(.eyebrow) { max-width: 570px; color: #b3c5d0; font-size: 0.95rem; line-height: 1.7; }
.service-copy > p:nth-of-type(2) { margin-top: 1.8rem; }
.service-list { border-top: 1px solid var(--dark-line); }
.service-list div { min-height: 112px; display: grid; grid-template-columns: 48px 1fr; align-content: center; gap: 0.35rem 1rem; border-bottom: 1px solid var(--dark-line); }
.service-list span { grid-row: 1 / span 2; color: #6f8ea2; font-size: 0.62rem; font-weight: 900; letter-spacing: 0.1em; }
.service-list strong { font-family: Manrope, sans-serif; font-size: 1.15rem; }
.service-list small { max-width: 540px; color: #9fb3c0; font-size: 0.75rem; line-height: 1.55; }

.pilot { padding: 92px max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: end; gap: 6vw; background: var(--coral); color: white; }
.pilot h2 { font-size: clamp(3.1rem, 5vw, 5.2rem); line-height: 1; }
.pilot > div:last-child { max-width: 470px; }
.pilot > div:last-child p { margin: 0 0 1.7rem; color: #fff1ed; font-size: 0.96rem; line-height: 1.75; }
.button-light { background: white; color: var(--ink); }

.site-footer { min-height: 150px; padding: 2.2rem max(var(--page-gutter), calc((100vw - var(--content-wide)) / 2)); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 3rem; background: var(--white); color: var(--ink-soft); font-size: 0.72rem; }
.footer-brand { display: flex; align-items: center; gap: 1.2rem; }
.footer-brand img { width: 120px; height: auto; }
.footer-brand span { padding-left: 1.2rem; border-left: 1px solid var(--line); font-weight: 700; }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { text-decoration: none; font-weight: 700; }
.site-footer small { white-space: nowrap; }

@media (max-width: 1180px) {
  .hero { grid-template-columns: minmax(380px, 0.85fr) minmax(530px, 1.15fr); gap: 2.8rem; }
  .hero h1 { font-size: clamp(3.5rem, 5vw, 5rem); }
  .dashboard-preview { min-height: 510px; }
  .mobile-ops-preview { left: -10px; scale: .86; }
  .scene-tag-top { right: 0; }
}

@media (max-width: 960px) {
  .site-nav > a:not(.nav-login) { display: none; }
  .hero { grid-template-columns: 1fr; padding-top: 70px; }
  .hero-copy { max-width: 720px; }
  .hero h1 { font-size: clamp(4rem, 9vw, 6rem); }
  .operating-scene { width: min(100%, 760px); min-height: 690px; margin: 0 auto; }
  .dashboard-preview { width: calc(100% - 28px); }
  .mobile-ops-preview { left: -4px; bottom: 0; scale: .9; }
  .signal-bar { align-items: flex-start; flex-direction: column; }
  .loop-grid { grid-template-columns: 1fr; }
  .loop-grid article { min-height: auto; padding: 2.4rem 0 3rem; }
  .loop-grid article + article { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .loop-icon { margin: 2.5rem 0 1.8rem; }
  .dashboard-story, .service { grid-template-columns: 1fr; }
  .focus-card { width: min(100%, 680px); }
  .module-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .module-card.module-large { grid-column: span 2; }
  .pilot { grid-template-columns: 1fr; align-items: start; }
  .site-footer { grid-template-columns: 1fr auto; gap: 1.5rem; }
  .footer-links { grid-column: 1 / -1; grid-row: 2; }
}

@media (max-width: 640px) {
  .site-header, .hero { width: calc(100% - (var(--page-gutter) * 2)); }
  .site-header { min-height: 78px; }
  .brand img { width: 106px; }
  .brand span { display: none; }
  .nav-login { padding: 0.62rem 0.78rem; font-size: 0.7rem; }
  .hero { min-height: auto; gap: 2rem; padding: 54px 0 70px; }
  .hero h1 { font-size: clamp(3.25rem, 14.5vw, 4.7rem); }
  .hero-lede { font-size: 0.95rem; line-height: 1.7; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 0.7rem; }
  .button { width: 100%; }
  .text-link { width: fit-content; }
  .hero-loop { display: none; }
  .operating-scene { min-height: 540px; margin-inline: 0; }
  .dashboard-preview { width: 100%; min-height: 438px; border-radius: 0.9rem; transform: none; }
  .preview-header { min-height: 52px; }
  .preview-toolbar { min-height: 56px; }
  .metric-grid { grid-template-columns: repeat(2, 1fr); }
  .metric-grid article { min-height: 82px; }
  .metric-grid article:nth-child(n+3) { display: none; }
  .dashboard-lower { grid-template-columns: 1fr; }
  .trend-card { min-height: 222px; }
  .trend-card svg { height: 125px; }
  .activity-card { display: none; }
  .mobile-ops-preview { left: 0; bottom: -24px; scale: .78; }
  .scene-tag { font-size: 0.5rem; }
  .scene-tag-top { top: 22px; right: -5px; }
  .scene-tag-bottom { right: -3px; bottom: 12px; }
  .signal-bar { min-height: 150px; padding-inline: var(--page-gutter); }
  .signal-bar > div { flex-wrap: wrap; gap: 0.55rem 0.8rem; font-size: 0.62rem; }
  .signal-bar > strong { font-size: 0.72rem; }
  .platform, .dashboard-story, .system-map, .service { padding-top: 80px; padding-bottom: 80px; }
  .section-heading h2, .dashboard-story h2, .service h2 { font-size: clamp(2.8rem, 12vw, 4rem); }
  .loop-grid { margin-top: 3.5rem; }
  .loop-grid article { padding-right: 0; }
  .focus-score { min-height: 160px; }
  .focus-score > div:first-child > strong { font-size: 3.5rem; }
  .focus-current { max-width: 165px; padding: 0.65rem; grid-template-columns: 26px 1fr; }
  .focus-current > i { width: 25px; height: 25px; }
  .focus-list article { grid-template-columns: 10px 1fr; }
  .focus-list article b { display: none; }
  .module-grid { grid-template-columns: 1fr; }
  .module-card, .module-card.module-large { min-height: 310px; grid-column: 1; }
  .pilot { padding-top: 70px; padding-bottom: 70px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .footer-brand span { padding: 0; border-left: 0; }
  .footer-links { grid-column: 1; grid-row: auto; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
