:root {
  --green: #8dd43f;
  --green-deep: #3f7600;
  --green-soft: #eef9e4;
  --blue: #315cff;
  --ink: #111511;
  --muted: #657066;
  --line: rgba(20, 28, 20, 0.11);
  --surface: #f5f7f3;
  --white: #fff;
  --radius: 28px;
  --shadow: 0 30px 80px rgba(19, 30, 17, 0.13);
  --max: 1180px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }
[data-shared-header], [data-shared-footer] { display: contents; }
.fallback-nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  font-size: 14px;
  font-weight: 700;
}
.fallback-nav a { text-decoration: none; }

img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
.honeypot-field { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
  transform: translateY(-160%);
}

.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.scrolled {
  background: rgba(255, 255, 255, .84);
  border-color: var(--line);
  box-shadow: 0 10px 35px rgba(22, 30, 20, .07);
  backdrop-filter: blur(18px) saturate(150%);
}

.nav-shell {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 4px 7px rgba(36, 74, 17, .16));
}

.brand__name {
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -.02em;
  line-height: 1;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  position: relative;
  color: #3e463f;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--green-deep);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s ease;
}

.main-nav > a:hover::after,
.main-nav > a[aria-current="page"]::after { transform: scaleX(1); transform-origin: left; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255,255,255,.75);
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--ink);
  transition: transform .25s, opacity .25s;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 23px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: .025em;
  line-height: 1;
  text-decoration: none;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.button:hover { transform: translateY(-2px); box-shadow: 0 13px 28px rgba(17,21,17,.18); }
.button--green { background: var(--green); color: var(--ink); }
.button--green:hover { background: #9adf50; }
.button--ghost { border-color: rgba(17,21,17,.18); background: rgba(255,255,255,.7); color: var(--ink); backdrop-filter: blur(12px); }
.button--small { min-height: 42px; padding-inline: 18px; font-size: 12px; }
.button svg { width: 17px; height: 17px; }

.eyebrow {
  margin: 0 0 15px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.section-heading {
  max-width: 730px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading h2,
.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  letter-spacing: -.045em;
  line-height: 1.02;
}

.section-heading p { margin: 20px auto 0; color: var(--muted); font-size: 19px; }

.hero-art {
  position: relative;
  padding-top: 84px;
  overflow: hidden;
  background: #ececea;
}

.hero-art img {
  width: 100%;
  height: auto;
  margin: 0 auto;
}

.hero-message {
  position: absolute;
  top: calc(84px + 1vw);
  right: 0;
  left: 0;
  z-index: 2;
  padding-inline: 20px;
  color: #050505;
  text-align: center;
  pointer-events: none;
}

.hero-message h1 {
  margin: 0;
  font-size: clamp(46px, 5.15vw, 108px);
  font-weight: 750;
  letter-spacing: -.055em;
  line-height: .98;
}

.hero-message > p {
  margin: 3px 0 0;
  font-size: clamp(23px, 2.15vw, 45px);
  letter-spacing: -.035em;
  line-height: 1.1;
}

.hero-capabilities {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 62px);
  margin-top: clamp(14px, 1.3vw, 27px);
}

.hero-capability {
  display: grid;
  width: clamp(72px, 5vw, 102px);
  height: clamp(72px, 5vw, 102px);
  place-items: center;
  align-content: center;
  gap: 3px;
  border: 1px solid rgba(25,25,25,.12);
  border-radius: clamp(15px, 1.15vw, 23px);
  background: rgba(255,255,255,.88);
  box-shadow: 0 8px 20px rgba(25,25,25,.13), inset 0 1px 0 rgba(255,255,255,.9);
  backdrop-filter: blur(12px);
}

.hero-capability svg {
  width: clamp(30px, 2.15vw, 44px);
  height: clamp(30px, 2.15vw, 44px);
  color: #3d5cf4;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-capability span {
  font-size: clamp(11px, .78vw, 16px);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1;
}

.hero-connections {
  position: absolute;
  right: clamp(20px, 2.3vw, 48px);
  top: 52%;
  bottom: auto;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #3d5cf4;
  transform: translateY(-20%);
}

.hero-connection {
  display: grid;
  width: clamp(82px, 5.3vw, 108px);
  min-width: 0;
  place-items: center;
  gap: 5px;
  padding: clamp(9px, .8vw, 16px) clamp(8px, .9vw, 18px);
  border-right: 0;
  border-bottom: 1px solid rgba(61,92,244,.22);
}

.hero-connection:last-child { border-bottom: 0; }
.hero-connection svg { width: clamp(31px, 2.35vw, 48px); height: clamp(31px, 2.35vw, 48px); stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.hero-connection span { color: #111; font-size: clamp(12px, 1vw, 20px); line-height: 1; }

.hero-app-store {
  position: absolute;
  right: clamp(20px, 2.3vw, 48px);
  bottom: clamp(20px, 2.3vw, 48px);
  z-index: 3;
  width: clamp(136px, 10.5vw, 190px);
  border-radius: 9px;
  transition: transform .25s ease;
}
.hero-app-store:hover { transform: translateY(-3px); }
.hero-app-store img { width: 100%; height: auto; }

.connection-chooser { padding: 32px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: #fff; }
.connection-chooser__layout { display: grid; grid-template-columns: 270px minmax(0, 1fr); gap: 46px; align-items: stretch; }
.connection-chooser__header { align-self: center; }
.connection-chooser__header .eyebrow { margin-bottom: 10px; font-size: 11px; }
.connection-chooser__header h2 { margin: 0; font-size: clamp(34px, 3.5vw, 46px); letter-spacing: -.05em; line-height: .98; }
.connection-chooser__header > p:not(.eyebrow) { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.5; }
.connection-options { display: grid; grid-template-columns: repeat(3, 1fr); }
.connection-option { display: flex; min-width: 0; padding: 24px 25px 22px; flex-direction: column; border-left: 1px solid var(--line); transition: background .25s ease; }
.connection-option:first-child { border-left: 0; }
.connection-option:hover { background: rgba(255,255,255,.72); }
.connection-option__title { display: flex; align-items: center; gap: 10px; }
.connection-option__title svg { width: 23px; height: 23px; flex: 0 0 auto; color: var(--green-deep); stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.connection-option h3 { margin: 0; font-size: 20px; letter-spacing: -.035em; line-height: 1.1; }
.connection-option > p { min-height: 66px; margin: 15px 0 12px; color: var(--muted); font-size: 13px; line-height: 1.5; }
.connection-option__meta { color: #4d584e; font-size: 11px; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; }
.connection-option__link { display: inline-flex; width: fit-content; min-height: 38px; padding: 9px 14px; align-items: center; gap: 8px; margin-top: 21px; border: 1px solid rgba(17,21,17,.16); border-radius: 999px; background: #fff; color: var(--ink); font-size: 12px; font-weight: 800; text-decoration: none; transition: border-color .2s ease, background .2s ease, transform .2s ease; }
.connection-option__link span { transition: transform .2s ease; }
.connection-option__link:hover { border-color: rgba(141,212,63,.45); background: var(--green-soft); transform: translateY(-1px); }
.connection-option__link:hover span { transform: translateX(4px); }

.web-remote-highlight { padding: 54px 0; background: #fff; }
.web-remote-highlight__card { position: relative; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: #e9e9e8; box-shadow: var(--shadow); }
.web-remote-highlight__media img { width: 100%; height: auto; }
.web-remote-highlight__copy { position: absolute; top: 5.4%; left: 6%; z-index: 1; width: 48%; color: #080a08; }
.web-remote-highlight__copy .eyebrow { margin-bottom: 8px; color: var(--blue); font-size: 11px; }
.web-remote-highlight__copy h2 { margin: 0; font-size: clamp(34px, 4vw, 50px); letter-spacing: -.052em; line-height: .98; }
.web-remote-highlight__copy > p:not(.eyebrow) { max-width: 500px; margin: 11px 0 0; color: #303730; font-size: clamp(13px, 1.25vw, 17px); line-height: 1.45; }

.section { padding: 118px 0; }
.section--soft { background: var(--surface); }
.section--dark { overflow: hidden; background: #0d100e; color: white; }

.controls-showcase { padding: 58px 0 52px; background: #f1f4ee; }
.controls-showcase__header { display: grid; grid-template-columns: minmax(0, .9fr) minmax(320px, .7fr); gap: 70px; align-items: end; }
.controls-showcase__header .eyebrow { margin-bottom: 10px; font-size: 11px; }
.controls-showcase__header h2 { max-width: 720px; margin: 0; font-size: clamp(40px, 5vw, 66px); letter-spacing: -.052em; line-height: .96; }
.controls-showcase__header > p { max-width: 580px; margin: 0 0 3px; color: var(--muted); font-size: 16px; line-height: 1.55; }
.controls-gallery { margin-top: 36px; }
.controls-rail {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
}
.controls-rail::-webkit-scrollbar { display: none; }
.controls-rail:focus-visible { outline: 2px solid var(--green-deep); outline-offset: 6px; }
.control-slide {
  display: grid;
  min-width: 0;
  flex: 0 0 calc(100% / 3);
  padding: 22px 20px 20px;
  scroll-snap-align: start;
  border-left: 1px solid rgba(27,39,25,.13);
}
.control-slide:first-child,
.control-slide.is-rail-start { border-left: 0; }
.control-slide figure { display: flex; height: auto; margin: 0; padding: 8px 18px 0; align-items: flex-end; justify-content: center; overflow: visible; background: transparent; }
.control-slide figure img { width: min(76%, 400px); height: auto; max-width: 100%; object-fit: initial; transition: transform .45s cubic-bezier(.2,.8,.2,1); }
.control-slide:hover figure img { transform: translateY(-6px); }
.control-slide__copy { display: grid; grid-template-columns: 30px 1fr; column-gap: 12px; margin-top: 17px; align-items: baseline; }
.control-slide__copy > span { grid-row: 1 / 3; color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; }
.control-slide__copy h3 { margin: 0; font-size: 20px; letter-spacing: -.035em; line-height: 1.15; }
.control-slide__copy p { margin: 7px 0 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.controls-gallery__controls { margin-top: 18px; }


#reviews { padding-block: 60px; }
#reviews .section-heading { margin-bottom: 32px; }
.review-carousel { margin: 0 auto; }
.review-viewport {
  overflow: hidden;
  padding: 4px;
}
.review-track {
  display: flex;
  gap: 16px;
  transition: transform .58s cubic-bezier(.2,.8,.2,1);
  will-change: transform;
}
.review-slide {
  position: relative;
  display: flex;
  min-height: 270px;
  flex: 0 0 calc((100% - 32px) / 3);
  padding: 24px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
}
.review-slide:nth-child(3n + 1) { border-color: transparent; background: var(--green); box-shadow: 0 22px 55px rgba(74,125,28,.14); }
.stars { color: #315316; font-size: 14px; letter-spacing: .1em; }
.review-title { margin: 12px 0 2px; color: #315316; font-size: 10px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.review-slide--press .review-title { margin-top: 0; }
.review-slide blockquote { margin: 8px 0 16px; font-size: clamp(17px, 1.55vw, 21px); font-weight: 670; letter-spacing: -.025em; line-height: 1.25; }
.review-slide cite { color: #486a2a; font-size: 12px; font-style: normal; font-weight: 650; }
.review-controls { display: grid; grid-template-columns: 44px 1fr 44px; align-items: center; gap: 18px; max-width: 400px; margin: 17px auto 0; }
.review-arrow { display: grid; width: 44px; height: 44px; padding: 0; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: white; color: var(--ink); cursor: pointer; transition: transform .2s, background .2s; }
.review-arrow:hover { background: var(--green-soft); transform: scale(1.06); }
.review-arrow svg { width: 21px; height: 21px; }
.review-dots { display: flex; align-items: center; justify-content: center; gap: 9px; }
.review-dots button { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; background: #c9cec8; cursor: pointer; transition: width .25s, border-radius .25s, background .25s; }
.review-dots button.is-active { width: 27px; border-radius: 999px; background: var(--green-deep); }

.press-logos { display: grid; grid-template-columns: repeat(6, 1fr); align-items: center; gap: 34px; margin: 38px 0 0; padding: 35px; border: 1px solid var(--line); border-radius: 24px; }
.press-logos img { width: auto; height: auto; max-width: 140px; max-height: 38px; margin: auto; filter: grayscale(1); opacity: .55; mix-blend-mode: multiply; }

.download-wrap { position: relative; padding-block: 68px; overflow: hidden; background: #142011; color: white; }
.download-wrap::before { position: absolute; width: 520px; height: 520px; top: -240px; right: -120px; border-radius: 50%; background: var(--green); filter: blur(130px); opacity: .18; content: ""; }
.download-grid { position: relative; display: grid; grid-template-columns: .76fr 1.24fr; gap: 82px; align-items: center; }
.download-copy h2 { margin: 0 0 20px; font-size: clamp(38px, 4.5vw, 60px); letter-spacing: -.05em; line-height: 1; }
.download-copy > p:not(.eyebrow) { max-width: 540px; color: #bdc7bc; }
.download-choice { min-width: 0; }
.download-choice__prompt { margin: 0 0 12px; color: #c6cec6; font-size: 13px; font-weight: 750; letter-spacing: .02em; }
.download-tabs { display: grid; width: min(100%, 600px); grid-template-columns: repeat(3, 1fr); border-bottom: 1px solid rgba(255,255,255,.17); }
.download-tabs button { position: relative; display: flex; min-height: 50px; padding: 0 14px; align-items: center; justify-content: center; gap: 9px; border: 0; background: transparent; color: #aeb8ae; cursor: pointer; font: inherit; font-size: 14px; font-weight: 750; transition: color .2s ease; }
.download-tabs button svg { width: 19px; height: 19px; flex: 0 0 auto; stroke: currentColor; stroke-width: 1.9; stroke-linecap: round; stroke-linejoin: round; }
.download-tabs button::after { position: absolute; right: 18px; bottom: -1px; left: 18px; height: 3px; background: transparent; content: ""; }
.download-tabs button:hover { color: white; }
.download-tabs button[aria-selected="true"] { color: white; }
.download-tabs button[aria-selected="true"]::after { background: var(--green); }
.download-tabs button:focus-visible { z-index: 1; outline: 2px solid var(--green); outline-offset: -2px; }
.download-panels { border-bottom: 0; }
.download-panel { min-height: 258px; }
.download-panel[hidden] { display: none; }
.download-panel__row { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 28px; padding: 23px 4px; align-items: center; }
.download-panel__row + .download-panel__row { border-top: 1px solid rgba(255,255,255,.12); }
.download-panel__row h3, .download-panel__single h3 { margin: 3px 0 3px; font-size: 20px; letter-spacing: -.025em; }
.download-panel__row p, .download-panel__single p { margin: 0; color: #aeb8ae; font-size: 13px; line-height: 1.5; }
.download-panel__row > div:first-child > span, .download-panel__single > span { color: var(--green); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.download-panel__single { display: flex; min-height: 258px; padding: 34px 4px; align-items: flex-start; justify-content: center; flex-direction: column; }
.download-panel__single p { max-width: 560px; }
.download-panel__single .download-link { margin-top: 22px; }
.download-links { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 19px; }
.download-panel__row .download-links { justify-content: flex-end; margin-top: 0; }
.download-link { display: inline-flex; align-items: center; gap: 8px; padding: 9px 13px; border-radius: 10px; background: white; color: var(--ink); font-size: 13px; font-weight: 750; text-decoration: none; transition: transform .2s, background .2s; }
.download-link:hover { transform: translateY(-2px); background: var(--green); }
.download-link__icon { width: 15px; height: 18px; object-fit: contain; }
.download-link__icon--windows { width: 16px; height: 16px; }
.download-legacy { margin-top: 10px; color: #8f9a90; font-size: 11px; text-align: right; }
.download-legacy span { margin: 0 6px; }
.download-legacy a { color: #c7cec7; text-underline-offset: 3px; }

.newsletter { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; padding: 58px 0; }
.newsletter h2 { margin: 0; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; }
.newsletter p { margin: 7px 0 0; color: var(--muted); }
.newsletter-form { display: flex; gap: 9px; }
.newsletter-form input { width: min(340px, 45vw); min-height: 52px; padding: 0 18px; border: 1px solid var(--line); border-radius: 999px; background: var(--surface); outline: none; }
.newsletter-form input:focus { border-color: var(--green-deep); box-shadow: 0 0 0 4px rgba(141,212,63,.15); }
.form-status { margin-top: 9px; font-size: 13px; }

.site-footer { padding: 58px 0 32px; background: #0d100e; color: white; }
.footer-grid { display: grid; grid-template-columns: 1.3fr repeat(2, .6fr); gap: 50px; }
.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: white;
  text-decoration: none;
}
.footer-logo img { width: 76px; height: 76px; filter: drop-shadow(0 8px 20px rgba(126,211,48,.18)); }
.footer-logo span { font-size: 30px; font-weight: 600; letter-spacing: -.02em; line-height: 1; }
.footer-brand p { max-width: 430px; color: #9ea89f; }
.footer-brand__contact { display: inline-block; margin-top: 2px; color: var(--green); font-size: 14px; font-weight: 750; text-decoration: none; }
.footer-brand__contact:hover { text-decoration: underline; text-underline-offset: 4px; }
.footer-column h3 { margin: 0 0 14px; font-size: 14px; }
.footer-column a { display: block; margin: 8px 0; color: #aeb7af; font-size: 14px; text-decoration: none; }
.footer-column a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 48px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.1); color: #7d877e; font-size: 12px; }

.page-hero { padding: 170px 0 90px; background: linear-gradient(150deg, #f8faf6 0, #edf6e7 100%); text-align: center; }
.page-hero p { max-width: 680px; margin: 22px auto 0; color: var(--muted); font-size: 19px; }
.page-hero--compact { padding: 122px 0 42px; }
.page-hero--compact h1 { font-size: clamp(34px, 4.2vw, 52px); }
.page-hero--slim { padding: 116px 0 42px; }
.page-hero--split { text-align: left; }
.page-hero__grid { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 70px; align-items: end; }
.page-hero--split p { margin-inline: 0; }
.page-hero__actions { display: flex; align-items: center; flex-direction: column; gap: 16px; }
.text-link { color: var(--ink); font-size: 14px; font-weight: 750; text-decoration: none; }
.text-link:hover { color: var(--green-deep); }
.section--interior { padding-block: 76px; }
.content-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 64px; align-items: start; }
.side-nav { position: sticky; top: 112px; display: grid; gap: 6px; padding: 15px; border: 1px solid var(--line); border-radius: 18px; background: white; }
.side-nav a { padding: 9px 11px; border-radius: 9px; color: var(--muted); font-size: 14px; text-decoration: none; }
.side-nav a:hover { background: var(--green-soft); color: var(--ink); }
.prose { max-width: 800px; }
.prose section { padding: 0 0 68px; }
.prose h2 { margin: 0 0 17px; font-size: clamp(30px, 4vw, 46px); letter-spacing: -.04em; line-height: 1.08; }
.prose h3 { margin: 32px 0 8px; font-size: 22px; }
.prose p, .prose li { color: #4f5a50; }
.prose img { margin: 28px auto; max-height: 600px; border-radius: 22px; box-shadow: var(--shadow); }
.notice { padding: 20px 22px; border-left: 4px solid var(--green-deep); border-radius: 0 14px 14px 0; background: var(--green-soft); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 20px 0; cursor: pointer; font-weight: 700; list-style: none; }
.faq-list summary::after { float: right; color: var(--green-deep); content: "+"; font-size: 24px; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list details p { margin-top: 0; padding: 0 30px 20px 0; }

.setup-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 30px 0; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: var(--line); }
.setup-steps article { padding: 25px; background: white; }
.setup-steps article > span { color: var(--green-deep); font-size: 11px; font-weight: 850; letter-spacing: .12em; }
.setup-steps h3 { margin: 9px 0 7px; font-size: 20px; }
.setup-steps p { margin: 0 0 12px; font-size: 14px; line-height: 1.55; }
.setup-steps a { color: var(--green-deep); font-size: 13px; font-weight: 750; text-decoration: none; }
.instruction-list { display: grid; gap: 13px; padding-left: 24px; }
.download-links--light { justify-content: flex-start; margin: 25px 0; }
.download-links--light .download-link { border: 1px solid var(--line); background: var(--surface); }
.download-links--light .download-link:hover { background: var(--green); }
.setup-images { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 32px; }
.setup-images figure { margin: 0; padding: 15px; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.setup-images img { width: 100%; height: 360px; margin: 0; object-fit: contain; border-radius: 12px; box-shadow: none; }
.setup-images figcaption { padding: 12px 3px 2px; color: var(--muted); font-size: 12px; line-height: 1.5; }
.legacy-reference { display: grid; grid-template-columns: minmax(120px, 240px) 1fr; gap: 25px; margin-top: 25px; padding: 22px; align-items: center; border: 1px solid var(--line); border-radius: 18px; }
.legacy-reference img { width: 100%; height: auto; margin: 0; border-radius: 7px; box-shadow: none; }
.legacy-reference p { margin: 0; font-size: 14px; }
.connection-methods { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 27px 0; }
.connection-methods article { padding: 22px; border: 1px solid var(--line); border-radius: 18px; background: var(--surface); }
.connection-methods article:last-child:nth-child(odd) { grid-column: 1 / -1; }
.connection-methods h3 { margin: 0 0 7px; font-size: 19px; }
.connection-methods p { margin: 0; font-size: 14px; }
.setup-details { margin-top: 28px; }
.setup-details details > ul { margin: 0; padding: 0 30px 22px 22px; }
.setup-details details > p + ul { margin-top: -8px; }
.setup-details--after-grid { margin-top: 8px; }
.control-guide { display: grid; gap: 18px; margin-top: 28px; }
.control-guide article { display: grid; grid-template-columns: 210px 1fr; gap: 26px; padding: 22px; align-items: start; border: 1px solid var(--line); border-radius: 20px; background: var(--surface); }
.control-guide article > img { width: 100%; height: 240px; margin: 0; object-fit: contain; border-radius: 13px; box-shadow: none; }
.control-guide h3 { margin: 0 0 8px; font-size: 20px; }
.control-guide h3:not(:first-child) { margin-top: 22px; }
.control-guide p { margin: 0; }
.control-guide ol { margin: 0; padding-left: 20px; }
.control-guide--watch { grid-template-columns: 1fr 1fr; }
.control-guide--watch article { display: block; }
.control-guide--watch article:first-child { display: grid; grid-template-columns: 180px 1fr; grid-column: 1 / -1; }
.support-cta { padding: 36px !important; border-radius: 24px; background: #142011; color: white; }
.support-cta p:not(.eyebrow) { color: #bdc7bc; }
.support-cta > div { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.support-cta .button:not(.button--green) { border-color: rgba(255,255,255,.25); background: transparent; }
.faq-help { margin-top: 30px; padding: 28px; border-radius: 22px; background: var(--green-soft); }
.faq-help p { margin-top: 0; font-weight: 700; }
.faq-help .button { margin: 8px 7px 0 0; }

.contact-layout { display: grid; grid-template-columns: .72fr 1.28fr; gap: 64px; align-items: start; }
.contact-aside { padding: 30px; border-radius: 24px; background: #172016; color: white; }
.contact-aside h2 { margin: 0 0 12px; font-size: clamp(30px, 4vw, 44px); letter-spacing: -.04em; line-height: 1; }
.contact-aside p { color: #bbc4bb; }
.contact-aside__links { display: grid; gap: 10px; margin: 26px 0; }
.contact-aside__links a { display: grid; gap: 4px; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 14px; text-decoration: none; transition: border-color .2s, background .2s; }
.contact-aside__links a:hover { border-color: rgba(141,212,63,.5); background: rgba(141,212,63,.07); }
.contact-aside__links strong { font-size: 15px; }
.contact-aside__links span { color: #aab4aa; font-size: 12px; line-height: 1.5; }
.contact-aside__note { margin: 0; padding-top: 23px; border-top: 1px solid rgba(255,255,255,.11); font-size: 13px; }
.contact-form { display: grid; grid-template-columns: 1fr 1fr; gap: 19px; }
.field { display: grid; gap: 7px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 13px; font-weight: 750; }
.field__requirement { margin-left: 5px; color: var(--muted); font-size: 11px; font-weight: 500; }
.field input, .field select, .field textarea { width: 100%; padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; background: #fafbf9; outline: none; }
.field input { min-height: 50px; }
.field select { height: 50px !important; min-height: 50px; padding-block: 0; }
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--green-deep); box-shadow: 0 0 0 4px rgba(141,212,63,.14); }
.support-fields { display: contents; }
.contact-actions { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 18px; }
.contact-actions small { display: block; margin-top: 4px; color: var(--muted); }

.press-list { display: grid; gap: 13px; }
.press-item { display: grid; grid-template-columns: 160px 1fr auto; gap: 24px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 17px; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.press-item:hover { transform: translateY(-3px); box-shadow: 0 18px 50px rgba(20,30,18,.08); }
.press-item strong { font-size: 18px; }
.press-item span { color: var(--muted); font-size: 14px; }
.press-item time { color: var(--muted); font-size: 13px; }

.page-hero--news { background: linear-gradient(145deg, #f8faf6 10%, #e9f5df 100%); }
.news-page { background: #fbfcfa; }
.achievement-page { background: #fbfcfa; }
.achievement-timeline { display: grid; gap: 70px; }
.achievement-year { display: grid; grid-template-columns: 120px minmax(0, 1fr); gap: 32px; padding-top: 34px; align-items: start; border-top: 1px solid var(--line); }
.achievement-year > h2 { position: sticky; top: 112px; margin: 0; color: var(--green-deep); font-size: clamp(30px, 3.5vw, 44px); letter-spacing: -.045em; line-height: 1; }
.achievement-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; align-items: start; }
.achievement-year--featured .achievement-grid { grid-template-columns: 1fr; }
.achievement-card { overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; }
.achievement-media { display: grid; width: 100%; padding: 18px; place-items: center; background: #f5f7f3; }
.achievement-media img { display: block; width: 100%; height: auto; max-height: none; object-fit: contain; }
.achievement-media--pair { grid-template-columns: 1fr 1fr; gap: 16px; }
.achievement-media--pair img { max-height: 360px; }
.achievement-copy { padding: 20px 22px 23px; border-top: 1px solid var(--line); }
.achievement-copy time { color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.achievement-copy h3 { margin: 7px 0 8px; font-size: 22px; letter-spacing: -.03em; line-height: 1.1; }
.achievement-copy p { margin: 0; color: var(--muted); font-size: 14px; line-height: 1.55; }
.achievement-copy a { display: inline-block; margin-top: 13px; color: var(--green-deep); font-size: 12px; font-weight: 750; text-decoration: none; }
.achievement-copy a:hover { text-decoration: underline; }
.news-feature-grid { display: grid; grid-template-columns: 1.15fr .85fr; gap: 18px; }
.news-card { display: grid; grid-template-columns: 180px 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: 22px; background: white; color: inherit; text-decoration: none; transition: transform .25s, box-shadow .25s; }
.news-card:hover { transform: translateY(-3px); box-shadow: 0 22px 60px rgba(20,30,18,.09); }
.news-card--large { grid-row: span 2; grid-template-columns: 1fr; }
.news-card figure { min-height: 190px; margin: 0; overflow: hidden; background: var(--surface); }
.news-card--large figure { min-height: 320px; }
.news-card img { width: 100%; height: 100%; object-fit: cover; }
.news-card > div { padding: 24px; }
.news-card time { color: var(--green-deep); font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.news-card h2 { margin: 8px 0; font-size: clamp(21px, 2.4vw, 32px); letter-spacing: -.035em; line-height: 1.08; }
.news-card p { margin: 8px 0; color: var(--muted); font-size: 14px; }
.news-card div > span { color: var(--green-deep); font-size: 12px; font-weight: 750; }
.archive-heading { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin: 78px 0 30px; align-items: end; }
.archive-heading .eyebrow { grid-column: 1 / -1; margin-bottom: -15px; }
.archive-heading h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.045em; line-height: 1; }
.archive-heading > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.news-archive { border-top: 1px solid var(--line); }
.archive-year { display: grid; grid-template-columns: 130px 1fr; border-bottom: 1px solid var(--line); }
.archive-year > h3 { margin: 0; padding: 25px 0; color: var(--green-deep); font-size: 28px; letter-spacing: -.04em; }
.archive-items > article, .archive-items > a { display: grid; grid-template-columns: 85px 1fr auto; gap: 18px; padding: 22px 0; align-items: center; border-bottom: 1px solid var(--line); color: inherit; text-decoration: none; }
.archive-items > :last-child { border-bottom: 0; }
.archive-items time { color: var(--muted); font-size: 12px; }
.archive-items p { display: grid; gap: 2px; margin: 0; }
.archive-items strong { font-size: 15px; }
.archive-items p span { color: var(--muted); font-size: 13px; }
.archive-items > a > span { color: var(--green-deep); font-weight: 750; }
.legacy-news-gallery { margin-top: 78px; }
.legacy-news-gallery > header { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; align-items: end; }
.legacy-news-gallery > header .eyebrow { grid-column: 1 / -1; margin-bottom: -15px; }
.legacy-news-gallery > header h2 { margin: 0; font-size: clamp(34px, 5vw, 58px); letter-spacing: -.045em; line-height: 1; }
.legacy-news-gallery > header > p:not(.eyebrow) { margin: 0; color: var(--muted); }
.legacy-news-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.legacy-news-grid figure { margin: 0; overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: white; }
.legacy-news-grid figure > div { display: grid; height: 230px; padding: 14px; place-items: center; background: #f6f7f4; }
.legacy-news-grid img { width: 100%; height: 100%; object-fit: contain; }
.legacy-news-grid figcaption { display: flex; gap: 10px; padding: 14px 16px; align-items: baseline; justify-content: space-between; }
.legacy-news-grid strong { font-size: 13px; line-height: 1.35; }
.legacy-news-grid span { color: var(--muted); font-size: 11px; }
.press-contact { display: flex; gap: 40px; margin-top: 60px; padding: 38px; align-items: center; justify-content: space-between; border-radius: 24px; background: #142011; color: white; }
.press-contact h2 { margin: 0; font-size: clamp(28px, 4vw, 44px); letter-spacing: -.04em; }
.press-contact p:not(.eyebrow) { margin: 8px 0 0; color: #bdc7bc; }

[data-reveal] { opacity: 1; transform: none; }
.js [data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .8s cubic-bezier(.2,.8,.2,1); }
[data-reveal].is-visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
  .main-nav { gap: 18px; }
  .hero-message { top: calc(84px + 10px); }
  .hero-capabilities { gap: 18px; margin-top: 12px; }
  .hero-capability { width: 66px; height: 66px; border-radius: 15px; }
  .hero-capability svg { width: 28px; height: 28px; }
  .hero-connection { width: 82px; min-width: 0; padding: 8px 5px; }
  .main-nav a:not(.button) { display: none; }
  .connection-chooser__layout { grid-template-columns: 1fr; gap: 26px; }
  .connection-chooser__header { display: grid; grid-template-columns: .8fr 1.2fr; gap: 32px; align-items: end; }
  .connection-chooser__header .eyebrow { grid-column: 1 / -1; margin-bottom: -20px; }
  .connection-chooser__header > p:not(.eyebrow) { margin: 0; }
  .web-remote-highlight__copy { top: 4.6%; left: 5%; width: 55%; }
  .web-remote-highlight__copy h2 { font-size: clamp(30px, 4.5vw, 42px); }
  .controls-showcase__header { grid-template-columns: 1fr; gap: 18px; }
  .controls-showcase__header > p { max-width: 720px; }
  .control-slide { flex-basis: 50%; }
  .download-grid { grid-template-columns: 1fr; }
  .review-slide { flex-basis: calc((100% - 16px) / 2); }
  .press-logos { grid-template-columns: repeat(4, 1fr); }
  .page-hero__grid { grid-template-columns: 1fr; gap: 30px; }
  .page-hero__actions { align-items: flex-start; }
  .setup-steps { grid-template-columns: 1fr; }
  .achievement-year { grid-template-columns: 100px minmax(0, 1fr); gap: 24px; }
  .achievement-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .achievement-year--featured .achievement-grid { grid-template-columns: 1fr; }
  .news-feature-grid { grid-template-columns: 1fr; }
  .news-card--large { grid-row: auto; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .container { width: min(calc(100% - 28px), var(--max)); }
  .nav-shell { min-height: 72px; }
  .brand img { width: 43px; height: 43px; }
  .brand__name { font-size: 18px; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 72px 12px auto;
    display: grid;
    gap: 3px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255,255,255,.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-14px);
    transition: opacity .25s, transform .25s;
    backdrop-filter: blur(20px);
  }
  .main-nav.is-open { opacity: 1; pointer-events: auto; transform: none; }
  .main-nav a:not(.button) { display: block; padding: 11px; }
  .main-nav .button { margin-top: 5px; }
  .hero-art { padding-top: 72px; background: #f3f3f2; }
  .hero-message { position: relative; top: auto; padding: 25px 14px 20px; background: linear-gradient(#ececea, #f6f6f4); }
  .hero-message h1 { font-size: clamp(33px, 10vw, 44px); }
  .hero-message > p { margin-top: 7px; font-size: clamp(17px, 5.3vw, 22px); }
  .hero-capabilities { gap: 9px; margin-top: 19px; }
  .hero-capability { width: min(21vw, 75px); height: min(21vw, 75px); }
  .hero-capability svg { width: 30px; height: 30px; }
  .hero-capability span { font-size: 11px; }
  .hero-art img { width: 100%; }
  .hero-connections { position: relative; top: auto; right: auto; bottom: auto; display: grid; grid-template-columns: repeat(4, 1fr); padding: 15px 8px 18px; background: white; transform: none; }
  .hero-connection { width: auto; min-width: 0; padding: 0 4px; border-right: 1px solid rgba(61,92,244,.22); border-bottom: 0; }
  .hero-connection:last-child { border-right: 0; }
  .hero-connection svg { width: 30px; height: 30px; }
  .hero-connection span { font-size: 11px; }
  .hero-app-store { right: 14px; bottom: 93px; width: 132px; }
  .connection-chooser { padding: 26px 0; }
  .connection-chooser__header { display: block; }
  .connection-chooser__header .eyebrow { margin-bottom: 9px; }
  .connection-chooser__header > p:not(.eyebrow) { margin-top: 13px; }
  .connection-options { grid-template-columns: 1fr; }
  .connection-option { padding: 21px 4px; border-top: 1px solid var(--line); border-left: 0; }
  .connection-option:first-child { border-top: 0; }
  .connection-option > p { min-height: 0; margin: 11px 0 9px; }
  .connection-option__link { margin-top: 14px; }
  .web-remote-highlight { padding: 28px 0; }
  .web-remote-highlight__card { display: flex; flex-direction: column; border-radius: 22px; }
  .web-remote-highlight__copy { position: static; order: -1; width: auto; padding: 27px 24px 21px; }
  .web-remote-highlight__copy .eyebrow { margin-bottom: 8px; }
  .web-remote-highlight__copy h2 { font-size: clamp(35px, 10.5vw, 48px); }
  .web-remote-highlight__copy > p:not(.eyebrow) { margin-top: 12px; font-size: 15px; }
  .section { padding: 82px 0; }
  .controls-showcase { padding: 42px 0 36px; }
  .controls-showcase__header h2 { font-size: clamp(38px, 12vw, 54px); }
  .controls-gallery { margin-top: 28px; }
  .control-slide { flex-basis: 86%; padding: 17px 14px 17px; }
  .control-slide figure { height: auto; padding: 8px 8px 0; }
  .control-slide figure img { width: min(86%, 360px); }
  .control-slide__copy { grid-template-columns: 26px 1fr; column-gap: 8px; }
  .section-heading { margin-bottom: 38px; }
  #reviews { padding-block: 46px; }
  #reviews .section-heading { margin-bottom: 26px; }
  .review-slide { min-height: 250px; flex-basis: 100%; padding: 20px; }
  .review-slide blockquote { font-size: clamp(17px, 4.8vw, 20px); }
  .review-controls { grid-template-columns: 44px 1fr 44px; gap: 12px; }
  .review-arrow { width: 44px; height: 44px; }
  .press-logos { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .download-wrap { padding-block: 50px; }
  .download-grid { gap: 42px; }
  .download-panel__row { grid-template-columns: 1fr; gap: 15px; padding-block: 21px; }
  .download-panel__row .download-links { justify-content: flex-start; }
  .download-legacy { text-align: left; }
  .newsletter { grid-template-columns: 1fr; gap: 20px; }
  .newsletter-form { display: grid; }
  .newsletter-form input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; }
  .page-hero { padding: 132px 0 68px; }
  .page-hero--compact { padding: 102px 0 32px; }
  .page-hero--slim { padding: 98px 0 34px; }
  .section--interior { padding-block: 54px; }
  .content-shell, .contact-layout { grid-template-columns: 1fr; gap: 35px; }
  .side-nav { position: static; grid-template-columns: repeat(2, 1fr); }
  .setup-images, .connection-methods, .control-guide--watch { grid-template-columns: 1fr; }
  .connection-methods article:last-child:nth-child(odd) { grid-column: auto; }
  .setup-images img { height: 300px; }
  .legacy-reference { grid-template-columns: 1fr; }
  .control-guide article, .control-guide--watch article:first-child { grid-template-columns: 1fr; }
  .control-guide article > img { height: 280px; }
  .contact-form { grid-template-columns: 1fr; }
  .field--full, .contact-actions { grid-column: auto; }
  .contact-actions { align-items: stretch; flex-direction: column; }
  .press-item { grid-template-columns: 1fr; gap: 5px; }
  .achievement-timeline { gap: 48px; }
  .achievement-year { grid-template-columns: 1fr; gap: 18px; padding-top: 26px; }
  .achievement-year > h2 { position: static; }
  .achievement-grid { grid-template-columns: 1fr; }
  .achievement-media { padding: 12px; }
  .news-card { grid-template-columns: 1fr; }
  .news-card figure, .news-card--large figure { min-height: 230px; }
  .archive-heading { grid-template-columns: 1fr; }
  .archive-heading .eyebrow { grid-column: auto; margin-bottom: 0; }
  .archive-year { grid-template-columns: 1fr; }
  .archive-year > h3 { padding-bottom: 4px; }
  .archive-items > article, .archive-items > a { grid-template-columns: 65px 1fr auto; }
  .legacy-news-gallery > header { grid-template-columns: 1fr; }
  .legacy-news-gallery > header .eyebrow { grid-column: auto; margin-bottom: 0; }
  .legacy-news-grid { grid-template-columns: 1fr; }
  .legacy-news-grid figure > div { height: 280px; }
  .press-contact { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition-duration: .01ms !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
