.ecounit-site {
  --eco-ink: #101513;
  --eco-paper: #f1f1ea;
  --eco-white: #ffffff;
  --eco-green: #075c49;
  --eco-green-light: #9ed1bc;
  --eco-orange: #ef6b2e;
  --eco-yellow: #f0c84b;
  --eco-blue: #2453a6;
  --eco-red: #c74335;
  --eco-line: rgba(16, 21, 19, 0.2);
  --eco-line-light: rgba(255, 255, 255, 0.28);
  --eco-muted: #626863;
  --eco-max: 1380px;
  --eco-reading: 850px;
  --eco-header: 70px;
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--eco-ink);
  background: var(--eco-paper);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Hiragino Sans", "Yu Gothic", Meiryo, sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

.ecounit-site.menu-open {
  overflow: hidden;
}

.ecounit-site *,
.ecounit-site *::before,
.ecounit-site *::after {
  box-sizing: border-box;
}

.ecounit-site [hidden] {
  display: none !important;
}

.ecounit-site img {
  display: block;
  max-width: 100%;
}

.ecounit-site a {
  color: inherit;
  text-decoration: none;
}

.ecounit-site button,
.ecounit-site input,
.ecounit-site textarea,
.ecounit-site select {
  font: inherit;
  letter-spacing: 0;
}

.ecounit-site button {
  color: inherit;
}

.ecounit-site h1,
.ecounit-site h2,
.ecounit-site h3,
.ecounit-site p,
.ecounit-site figure {
  margin-top: 0;
}

.ecounit-site h1,
.ecounit-site h2,
.ecounit-site h3 {
  letter-spacing: 0;
}

.ecounit-site a:focus-visible,
.ecounit-site button:focus-visible {
  outline: 3px solid var(--eco-yellow);
  outline-offset: 4px;
}

.ecounit-site .skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 1000;
  padding: 11px 15px;
  color: var(--eco-ink);
  background: var(--eco-yellow);
  font-size: 13px;
  font-weight: 800;
  transform: translateY(-160%);
}

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

.ecounit-site .eyebrow,
.ecounit-site .chapter-mark {
  margin: 0;
  font-size: 11px;
  line-height: 1.4;
  font-weight: 820;
  text-transform: uppercase;
}

.ecounit-site .site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--eco-header);
  color: var(--eco-white);
  background: var(--eco-ink);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.ecounit-site .site-header-inner {
  width: min(calc(100% - 48px), var(--eco-max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.ecounit-site .site-brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1;
  font-weight: 820;
}

.ecounit-site .site-brand img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.ecounit-site .site-brand small {
  padding-left: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

.ecounit-site .site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 26px;
  font-size: 12px;
  font-weight: 720;
  white-space: nowrap;
}

.ecounit-site .site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.ecounit-site .site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0);
  transform-origin: left;
  transition: opacity 180ms ease, transform 180ms ease;
}

.ecounit-site .site-nav a:hover::after,
.ecounit-site .site-nav a[aria-current="page"]::after {
  opacity: 1;
  transform: scaleX(1);
}

.ecounit-site .site-nav .site-nav-store {
  min-height: 38px;
  padding: 0 13px;
  color: var(--eco-ink);
  background: var(--eco-yellow);
}

.ecounit-site .site-nav .site-nav-store::after {
  display: none;
}

.ecounit-site .site-menu-toggle {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: none;
  border: 0;
  padding: 0;
  color: var(--eco-white);
  background: transparent;
  cursor: pointer;
}

.ecounit-site .site-menu-toggle span,
.ecounit-site .site-menu-toggle span::before,
.ecounit-site .site-menu-toggle span::after {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, top 180ms ease, opacity 180ms ease;
}

.ecounit-site .site-menu-toggle span {
  top: 21px;
}

.ecounit-site .site-menu-toggle span::before {
  top: -7px;
  left: 0;
}

.ecounit-site .site-menu-toggle span::after {
  top: 7px;
  left: 0;
}

.ecounit-site .site-menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.ecounit-site .site-menu-toggle[aria-expanded="true"] span::before {
  top: 0;
  transform: rotate(45deg);
}

.ecounit-site .site-menu-toggle[aria-expanded="true"] span::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Product hero */
.ecounit-site .product-hero {
  position: relative;
  height: calc(100svh - var(--eco-header) - 48px);
  min-height: 640px;
  max-height: 900px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.78fr);
  align-items: center;
  gap: 48px;
  padding: 46px max(24px, calc((100% - var(--eco-max)) / 2)) 76px;
  background: var(--eco-paper);
}

.ecounit-site .hero-copy {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.ecounit-site .hero-copy .eyebrow {
  margin-bottom: 20px;
  color: var(--eco-green);
}

.ecounit-site .hero-copy h1 {
  margin-bottom: 24px;
  font-size: 150px;
  line-height: 0.78;
  font-weight: 900;
}

.ecounit-site .hero-copy h1 span {
  display: block;
}

.ecounit-site .hero-statement {
  margin-bottom: 14px;
  font-size: 31px;
  line-height: 1.28;
  font-weight: 820;
}

.ecounit-site .hero-lead {
  max-width: 580px;
  margin-bottom: 24px;
  color: var(--eco-muted);
  font-size: 16px;
  line-height: 1.78;
}

.ecounit-site .app-store-badge {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
}

.ecounit-site .app-store-badge img {
  width: auto;
  height: 48px;
}

.ecounit-site .hero-device {
  position: relative;
  z-index: 1;
  width: min(100%, 510px);
  align-self: end;
  justify-self: end;
  margin: 0 0 -225px;
}

.ecounit-site .hero-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 26px rgba(16, 21, 19, 0.17));
}

.ecounit-site .hero-device figcaption {
  position: absolute;
  top: 74px;
  left: -102px;
  display: grid;
  gap: 5px;
  color: var(--eco-muted);
  font-size: 9px;
  font-weight: 780;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.ecounit-site .hero-device figcaption span {
  color: var(--eco-green);
  font-size: 18px;
}

.ecounit-site .hero-index {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3;
  height: 48px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--eco-paper);
  border-top: 1px solid var(--eco-line);
}

.ecounit-site .hero-index span {
  min-width: 0;
  display: flex;
  align-items: center;
  padding: 0 22px;
  border-left: 1px solid var(--eco-line);
  color: var(--eco-muted);
  font-size: 10px;
  font-weight: 760;
  text-transform: uppercase;
}

.ecounit-site .hero-index span:first-child {
  border-left: 0;
  color: var(--eco-green);
}

/* Editorial statement */
.ecounit-site .editorial-intro {
  color: var(--eco-white);
  background: var(--eco-green);
}

.ecounit-site .editorial-intro-inner {
  width: min(calc(100% - 48px), var(--eco-max));
  min-height: 78svh;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  grid-template-rows: auto 1fr;
  align-items: start;
  gap: 56px 72px;
  padding: 104px 0 96px;
}

.ecounit-site .editorial-intro .chapter-mark {
  color: var(--eco-green-light);
}

.ecounit-site .editorial-intro h2 {
  grid-column: 1 / -1;
  align-self: end;
  max-width: 1120px;
  margin-bottom: 0;
  font-size: 92px;
  line-height: 1.02;
  font-weight: 880;
}

.ecounit-site .editorial-intro-copy {
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.ecounit-site .editorial-intro-copy p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.82;
}

/* Four-part flow */
.ecounit-site .flow-section {
  padding: 112px max(24px, calc((100% - var(--eco-max)) / 2)) 124px;
  color: var(--eco-white);
  background: var(--eco-ink);
}

.ecounit-site .flow-heading {
  display: grid;
  grid-template-columns: 0.58fr 1fr 0.72fr;
  align-items: end;
  gap: 48px;
  margin-bottom: 86px;
}

.ecounit-site .flow-heading .chapter-mark {
  align-self: start;
  color: var(--eco-orange);
}

.ecounit-site .flow-heading h2 {
  margin-bottom: 0;
  font-size: 72px;
  line-height: 1.04;
  font-weight: 860;
}

.ecounit-site .flow-heading > p:last-child {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.75;
}

.ecounit-site .flow-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--eco-line-light);
  list-style: none;
}

.ecounit-site .flow-list li {
  min-height: 144px;
  display: grid;
  grid-template-columns: 72px 150px minmax(240px, 0.9fr) minmax(260px, 1fr);
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--eco-line-light);
  transition: color 180ms ease, background-color 180ms ease;
}

.ecounit-site .flow-list li:hover {
  color: var(--eco-ink);
  background: var(--eco-yellow);
}

.ecounit-site .flow-number {
  color: var(--eco-orange);
  font-size: 12px;
  font-weight: 820;
}

.ecounit-site .flow-list li:hover .flow-number,
.ecounit-site .flow-list li:hover .flow-name,
.ecounit-site .flow-list li:hover .flow-detail {
  color: inherit;
}

.ecounit-site .flow-name {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  font-weight: 760;
  text-transform: uppercase;
}

.ecounit-site .flow-list h3 {
  margin-bottom: 0;
  font-size: 25px;
  line-height: 1.35;
  font-weight: 820;
}

.ecounit-site .flow-detail {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.72;
}

/* Full-screen interface */
.ecounit-site .interface-heading {
  min-height: 54svh;
  display: grid;
  grid-template-columns: 0.55fr 1.25fr 0.65fr;
  align-items: end;
  gap: 48px;
  padding: 96px max(24px, calc((100% - var(--eco-max)) / 2)) 84px;
  background: var(--eco-paper);
}

.ecounit-site .interface-heading .chapter-mark {
  align-self: start;
  color: var(--eco-green);
}

.ecounit-site .interface-heading h2 {
  margin-bottom: 0;
  font-size: 86px;
  line-height: 1.02;
  font-weight: 880;
}

.ecounit-site .interface-heading > p:last-child {
  margin-bottom: 6px;
  color: var(--eco-muted);
  font-size: 15px;
  line-height: 1.75;
}

.ecounit-site .screen-tabs {
  position: sticky;
  top: var(--eco-header);
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  color: var(--eco-white);
  background: var(--eco-ink);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.ecounit-site .screen-tabs button {
  position: relative;
  min-width: 0;
  min-height: 72px;
  border: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
  padding: 0 24px;
  background: transparent;
  text-align: left;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.ecounit-site .screen-tabs button:first-child {
  border-left: 0;
}

.ecounit-site .screen-tabs button::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  background: var(--eco-orange);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.ecounit-site .screen-tabs button[aria-selected="true"]::after {
  transform: scaleX(1);
}

.ecounit-site .screen-tabs button span {
  display: block;
  margin-bottom: 4px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
}

.ecounit-site .screen-panel {
  position: relative;
  min-height: calc(100svh - var(--eco-header) - 72px);
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(420px, 1.2fr);
  align-items: center;
  gap: 64px;
  padding: 58px max(24px, calc((100% - var(--eco-max)) / 2)) 0;
}

.ecounit-site .screen-showcase[data-enhanced="true"] .screen-panel:not([hidden]) {
  animation: ecounit-screen-in 420ms ease both;
}

.ecounit-site .screen-panel-today {
  color: var(--eco-white);
  background: var(--eco-green);
}

.ecounit-site .screen-panel-timetable {
  color: var(--eco-ink);
  background: var(--eco-orange);
}

.ecounit-site .screen-panel-courses {
  color: var(--eco-ink);
  background: var(--eco-yellow);
}

.ecounit-site .screen-panel-profile {
  color: var(--eco-white);
  background: var(--eco-blue);
}

.ecounit-site .screen-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 560px;
  padding-bottom: 48px;
}

.ecounit-site .screen-count {
  margin: 0 0 -42px;
  font-size: 180px;
  line-height: 0.82;
  font-weight: 900;
  opacity: 0.14;
}

.ecounit-site .screen-name {
  margin-bottom: 18px;
  font-size: 12px;
  font-weight: 840;
  text-transform: uppercase;
}

.ecounit-site .screen-copy h3 {
  margin-bottom: 22px;
  font-size: 58px;
  line-height: 1.06;
  font-weight: 870;
}

.ecounit-site .screen-copy > p:last-child {
  max-width: 500px;
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.78;
  opacity: 0.76;
}

.ecounit-site .screen-device {
  width: min(100%, 430px);
  max-height: calc(100svh - var(--eco-header) - 80px);
  align-self: end;
  justify-self: center;
  margin: 0;
  overflow: hidden;
}

.ecounit-site .screen-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 30px rgba(16, 21, 19, 0.2));
}

.ecounit-site .screen-note {
  position: absolute;
  right: 20px;
  bottom: 24px;
  margin: 0;
  font-size: 9px;
  font-weight: 800;
  opacity: 0.56;
  writing-mode: vertical-rl;
}

@keyframes ecounit-screen-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Privacy statement */
.ecounit-site .privacy-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
  padding: 118px max(24px, calc((100% - var(--eco-max)) / 2));
  color: var(--eco-ink);
  background: #dedfd5;
}

.ecounit-site .privacy-heading .chapter-mark {
  margin-bottom: 54px;
  color: var(--eco-red);
}

.ecounit-site .privacy-heading h2 {
  margin-bottom: 32px;
  font-size: 68px;
  line-height: 1.08;
  font-weight: 880;
}

.ecounit-site .privacy-heading h2 span {
  display: block;
}

.ecounit-site .privacy-heading > p:last-child {
  max-width: 570px;
  margin-bottom: 0;
  color: var(--eco-muted);
  font-size: 16px;
  line-height: 1.82;
}

.ecounit-site .privacy-proof {
  border-bottom: 1px solid var(--eco-line);
}

.ecounit-site .privacy-proof article {
  display: grid;
  grid-template-columns: 48px minmax(170px, 0.62fr) minmax(220px, 1fr);
  gap: 22px;
  align-items: start;
  padding: 29px 0;
  border-top: 1px solid var(--eco-line);
}

.ecounit-site .privacy-proof article > span {
  color: var(--eco-red);
  font-size: 11px;
  font-weight: 820;
}

.ecounit-site .privacy-proof h3 {
  margin-bottom: 0;
  font-size: 18px;
  line-height: 1.42;
  font-weight: 820;
}

.ecounit-site .privacy-proof p {
  margin-bottom: 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.72;
}

.ecounit-site .privacy-links {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 38px;
  padding-top: 12px;
  border-top: 1px solid var(--eco-line);
}

.ecounit-site .privacy-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid currentColor;
  font-size: 14px;
  font-weight: 800;
}

/* Download */
.ecounit-site .download-section {
  min-height: 72svh;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  align-items: end;
  gap: 72px;
  padding: 96px max(24px, calc((100% - var(--eco-max)) / 2));
  color: var(--eco-ink);
  background: var(--eco-orange);
}

.ecounit-site .download-title .chapter-mark {
  margin-bottom: 60px;
}

.ecounit-site .download-title h2 {
  margin-bottom: 0;
  font-size: 148px;
  line-height: 0.86;
  font-weight: 920;
}

.ecounit-site .download-copy {
  align-self: end;
}

.ecounit-site .download-copy > p {
  margin-bottom: 28px;
  font-size: 18px;
  line-height: 1.65;
  font-weight: 680;
}

/* Footer */
.ecounit-site .site-footer {
  overflow: hidden;
  padding: 80px max(24px, calc((100% - var(--eco-max)) / 2)) 34px;
  color: var(--eco-white);
  background: var(--eco-ink);
}

.ecounit-site .footer-wordmark {
  margin-bottom: 70px;
  font-size: 142px;
  line-height: 0.8;
  font-weight: 920;
  white-space: nowrap;
}

.ecounit-site .site-footer-inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 42px;
  padding-top: 26px;
  border-top: 1px solid var(--eco-line-light);
}

.ecounit-site .site-footer-inner > p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
}

.ecounit-site .footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 24px;
  font-size: 11px;
  font-weight: 700;
}

.ecounit-site .footer-links a:hover {
  color: var(--eco-yellow);
}

/* Legal heroes */
.ecounit-site .legal-main {
  background: var(--eco-paper);
}

.ecounit-site .legal-hero {
  position: relative;
  height: calc(100svh - var(--eco-header) - 48px);
  min-height: 650px;
  max-height: 900px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  align-items: center;
  gap: 52px;
  padding: 54px max(24px, calc((100% - var(--eco-max)) / 2)) 62px;
}

.ecounit-site[data-page="privacy"] .legal-hero {
  color: var(--eco-white);
  background: var(--eco-green);
}

.ecounit-site[data-page="terms"] .legal-hero {
  color: var(--eco-ink);
  background: var(--eco-orange);
}

.ecounit-site .legal-hero-copy {
  position: relative;
  z-index: 2;
}

.ecounit-site .legal-hero-copy .eyebrow {
  margin-bottom: 34px;
  opacity: 0.68;
}

.ecounit-site .legal-hero h1 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: 92px;
  line-height: 0.96;
  font-weight: 900;
}

.ecounit-site .legal-hero h1 span {
  display: block;
}

.ecounit-site .legal-intro {
  max-width: 620px;
  margin-bottom: 22px;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.78;
}

.ecounit-site .legal-date {
  margin-bottom: 0;
  font-size: 11px;
  line-height: 1.7;
  opacity: 0.58;
}

.ecounit-site .legal-hero-device {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  align-self: end;
  justify-self: end;
  margin: 0 0 -205px;
}

.ecounit-site .legal-hero-device img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 32px 28px rgba(16, 21, 19, 0.24));
}

.ecounit-site .legal-hero-device figcaption {
  position: absolute;
  top: 76px;
  left: -76px;
  margin: 0;
  font-size: 8px;
  font-weight: 800;
  opacity: 0.62;
  writing-mode: vertical-rl;
}

.ecounit-site .legal-hero-index {
  position: absolute;
  right: max(24px, calc((100% - var(--eco-max)) / 2));
  top: 34px;
  margin: 0;
  font-size: 11px;
  font-weight: 820;
  opacity: 0.58;
}

.ecounit-site .legal-summary-band {
  min-height: 350px;
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(340px, 0.94fr);
  align-items: end;
  gap: 80px;
  padding: 76px max(24px, calc((100% - var(--eco-max)) / 2));
}

.ecounit-site[data-page="privacy"] .legal-summary-band {
  color: var(--eco-ink);
  background: var(--eco-yellow);
}

.ecounit-site[data-page="terms"] .legal-summary-band {
  color: var(--eco-white);
  background: var(--eco-blue);
}

.ecounit-site .legal-summary-band .chapter-mark {
  margin-bottom: 28px;
  opacity: 0.68;
}

.ecounit-site .legal-summary-band h2 {
  margin-bottom: 0;
  font-size: 52px;
  line-height: 1.08;
  font-weight: 870;
}

.ecounit-site .legal-summary-band > p {
  max-width: 620px;
  margin-bottom: 2px;
  font-size: 16px;
  line-height: 1.82;
  opacity: 0.76;
}

/* Legal reading layout */
.ecounit-site .legal-layout {
  width: min(calc(100% - 48px), 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px minmax(0, var(--eco-reading));
  justify-content: space-between;
  gap: 76px;
  padding: 96px 0 140px;
}

.ecounit-site .legal-toc {
  position: sticky;
  top: calc(var(--eco-header) + 34px);
  align-self: start;
}

.ecounit-site .legal-toc-title {
  margin: 0 0 18px;
  color: var(--eco-muted);
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
}

.ecounit-site .legal-toc ol {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--eco-line);
  list-style: none;
  counter-reset: ecounit-toc;
}

.ecounit-site .legal-toc li {
  counter-increment: ecounit-toc;
  border-top: 1px solid var(--eco-line);
}

.ecounit-site .legal-toc a {
  position: relative;
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 8px;
  padding: 12px 0;
  color: var(--eco-muted);
  font-size: 12px;
  line-height: 1.48;
  transition: color 160ms ease, padding-left 160ms ease;
}

.ecounit-site .legal-toc a::before {
  color: var(--eco-green);
  font-weight: 820;
  content: counter(ecounit-toc, decimal-leading-zero);
}

.ecounit-site .legal-toc a:hover,
.ecounit-site .legal-toc a[aria-current="location"] {
  padding-left: 8px;
  color: var(--eco-ink);
}

.ecounit-site .legal-content {
  min-width: 0;
}

.ecounit-site .data-commitments {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-bottom: 92px;
  border-top: 1px solid var(--eco-line);
  border-left: 1px solid var(--eco-line);
}

.ecounit-site .data-commitments article {
  min-width: 0;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-right: 1px solid var(--eco-line);
  border-bottom: 1px solid var(--eco-line);
}

.ecounit-site .data-commitments article > span {
  margin-bottom: 42px;
  color: var(--eco-green);
  font-size: 10px;
  font-weight: 820;
}

.ecounit-site .data-commitments strong {
  margin-bottom: 9px;
  font-size: 15px;
  line-height: 1.4;
}

.ecounit-site .data-commitments p {
  margin-bottom: 0;
  color: var(--eco-muted);
  font-size: 13px;
  line-height: 1.7;
}

.ecounit-site .legal-section {
  padding: 74px 0 0;
  border-top: 1px solid var(--eco-line);
  scroll-margin-top: calc(var(--eco-header) + 32px);
}

.ecounit-site .legal-section + .legal-section {
  margin-top: 76px;
}

.ecounit-site .legal-section h2 {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  margin-bottom: 38px;
  font-size: 40px;
  line-height: 1.18;
  font-weight: 850;
}

.ecounit-site .legal-section .section-number {
  padding-top: 9px;
  color: var(--eco-green);
  font-size: 11px;
  line-height: 1;
  font-weight: 840;
}

.ecounit-site[data-page="terms"] .legal-section .section-number,
.ecounit-site[data-page="terms"] .legal-toc a::before {
  color: var(--eco-orange);
}

.ecounit-site .legal-section h3 {
  margin: 28px 0 10px;
  font-size: 17px;
  line-height: 1.48;
  font-weight: 820;
}

.ecounit-site .legal-section p,
.ecounit-site .legal-section li {
  color: #4f5551;
  font-size: 15px;
  line-height: 1.92;
}

.ecounit-site .legal-section p {
  margin-bottom: 18px;
}

.ecounit-site .legal-section ul,
.ecounit-site .legal-section ol {
  margin: 0 0 22px;
  padding-left: 1.4em;
}

.ecounit-site .legal-section li {
  margin-bottom: 9px;
  padding-left: 5px;
}

.ecounit-site .legal-section strong {
  color: var(--eco-ink);
}

.ecounit-site .legal-section a,
.ecounit-site .legal-contact a {
  color: var(--eco-green);
  font-weight: 720;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.ecounit-site[data-page="terms"] .legal-section a,
.ecounit-site[data-page="terms"] .legal-contact a {
  color: #a44319;
}

.ecounit-site .legal-callout {
  margin: 30px 0;
  padding: 24px 0 24px 24px;
  border-left: 5px solid var(--eco-green);
}

.ecounit-site[data-page="terms"] .legal-callout {
  border-left-color: var(--eco-orange);
}

.ecounit-site .legal-callout p {
  margin: 0;
  color: var(--eco-ink);
  font-size: 15px;
  line-height: 1.82;
  font-weight: 680;
}

.ecounit-site .service-list {
  margin: 30px 0;
  border-bottom: 1px solid var(--eco-line);
}

.ecounit-site .service-list article {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  padding: 22px 0;
  border-top: 1px solid var(--eco-line);
}

.ecounit-site .service-list h3 {
  margin: 0;
  font-size: 15px;
}

.ecounit-site .service-list p {
  margin: 0;
  font-size: 13px;
  line-height: 1.75;
}

.ecounit-site .legal-contact {
  margin: 30px 0;
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--eco-line);
  border-bottom: 1px solid var(--eco-line);
}

.ecounit-site .legal-contact span {
  color: var(--eco-muted);
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
}

.ecounit-site .legal-contact a {
  font-size: 18px;
}

/* Reveal remains progressive enhancement: content is visible without JS. */
.ecounit-site.motion-ready [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 620ms ease, transform 620ms ease;
}

.ecounit-site.motion-ready [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 1500px) {
  .ecounit-site .hero-copy h1 {
    font-size: 168px;
  }

  .ecounit-site .download-title h2 {
    font-size: 166px;
  }
}

@media (max-width: 1180px) {
  .ecounit-site .site-nav {
    gap: 18px;
  }

  .ecounit-site .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
    gap: 32px;
  }

  .ecounit-site .hero-copy h1 {
    font-size: 120px;
  }

  .ecounit-site .hero-device {
    width: 430px;
  }

  .ecounit-site .editorial-intro h2 {
    font-size: 78px;
  }

  .ecounit-site .flow-heading h2,
  .ecounit-site .privacy-heading h2 {
    font-size: 60px;
  }

  .ecounit-site .interface-heading h2 {
    font-size: 72px;
  }

  .ecounit-site .screen-copy h3 {
    font-size: 50px;
  }

  .ecounit-site .download-title h2 {
    font-size: 118px;
  }

  .ecounit-site .legal-hero h1 {
    font-size: 78px;
  }
}

@media (max-width: 980px) {
  .ecounit-site {
    --eco-header: 62px;
  }

  .ecounit-site .site-header-inner {
    position: relative;
    width: min(calc(100% - 32px), var(--eco-max));
  }

  .ecounit-site .site-menu-toggle {
    display: block;
    color: var(--eco-ink);
    background: var(--eco-yellow);
  }

  .ecounit-site .site-nav {
    position: absolute;
    top: 100%;
    right: -16px;
    left: -16px;
    min-height: calc(100svh - var(--eco-header));
    display: none;
    align-items: stretch;
    flex-direction: column;
    justify-content: flex-start;
    gap: 0;
    padding: 14px 20px 30px;
    color: var(--eco-white);
    background: var(--eco-ink);
    white-space: normal;
  }

  .ecounit-site .site-nav[data-open="true"],
  .ecounit-site .site-nav.is-open,
  .ecounit-site .site-menu-toggle[aria-expanded="true"] + .site-nav {
    display: flex;
  }

  .ecounit-site .site-nav a,
  .ecounit-site .site-nav .site-nav-store {
    width: 100%;
    min-height: 58px;
    padding: 0;
    border-bottom: 1px solid var(--eco-line-light);
    color: var(--eco-white);
    background: transparent;
    font-size: 16px;
  }

  .ecounit-site .site-nav .site-nav-store {
    color: var(--eco-yellow);
  }

  .ecounit-site .site-nav a::after {
    display: none;
  }

  .ecounit-site .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.7fr);
  }

  .ecounit-site .hero-copy h1 {
    font-size: 102px;
  }

  .ecounit-site .hero-statement {
    font-size: 26px;
  }

  .ecounit-site .hero-device {
    width: 370px;
    margin-bottom: -170px;
  }

  .ecounit-site .editorial-intro-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .ecounit-site .editorial-intro h2 {
    grid-column: auto;
  }

  .ecounit-site .flow-heading,
  .ecounit-site .interface-heading {
    grid-template-columns: 0.45fr 1fr;
  }

  .ecounit-site .flow-heading > p:last-child,
  .ecounit-site .interface-heading > p:last-child {
    grid-column: 2;
  }

  .ecounit-site .flow-list li {
    grid-template-columns: 54px 120px minmax(0, 1fr);
    gap: 22px;
    padding: 24px 0;
  }

  .ecounit-site .flow-detail {
    grid-column: 3;
  }

  .ecounit-site .screen-panel {
    grid-template-columns: minmax(260px, 0.8fr) minmax(330px, 1.2fr);
    gap: 30px;
  }

  .ecounit-site .screen-count {
    font-size: 130px;
  }

  .ecounit-site .screen-copy h3 {
    font-size: 42px;
  }

  .ecounit-site .screen-device {
    width: 350px;
  }

  .ecounit-site .privacy-section {
    grid-template-columns: 1fr;
  }

  .ecounit-site .privacy-links {
    grid-column: auto;
  }

  .ecounit-site .download-section {
    grid-template-columns: 1fr;
  }

  .ecounit-site .legal-hero {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  }

  .ecounit-site .legal-hero-device {
    width: 320px;
  }

  .ecounit-site .legal-summary-band {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ecounit-site .legal-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .ecounit-site .legal-toc {
    position: static;
  }

  .ecounit-site .legal-toc ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .ecounit-site {
    --eco-header: 58px;
  }

  .ecounit-site .site-brand {
    font-size: 14px;
  }

  .ecounit-site .site-brand img {
    width: 28px;
    height: 28px;
  }

  .ecounit-site .site-brand small {
    display: none;
  }

  .ecounit-site .product-hero {
    height: calc(100svh - var(--eco-header) - 42px);
    min-height: 560px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 30px 16px 62px;
  }

  .ecounit-site .hero-copy {
    max-width: none;
  }

  .ecounit-site .hero-copy .eyebrow {
    margin-bottom: 15px;
  }

  .ecounit-site .hero-copy h1 {
    margin-bottom: 18px;
    font-size: 76px;
    line-height: 0.8;
  }

  .ecounit-site .hero-statement {
    max-width: 230px;
    margin-bottom: 10px;
    font-size: 22px;
  }

  .ecounit-site .hero-lead {
    max-width: 205px;
    margin-bottom: 17px;
    font-size: 12px;
    line-height: 1.62;
  }

  .ecounit-site .app-store-badge,
  .ecounit-site .app-store-badge img {
    min-height: 42px;
    height: 42px;
  }

  .ecounit-site .hero-device {
    position: absolute;
    right: -42px;
    bottom: -110px;
    width: 250px;
    margin: 0;
  }

  .ecounit-site .hero-device figcaption {
    display: none;
  }

  .ecounit-site .hero-index {
    height: 42px;
  }

  .ecounit-site .hero-index span {
    padding: 0 8px;
    font-size: 8px;
  }

  .ecounit-site .editorial-intro-inner {
    width: min(calc(100% - 32px), var(--eco-max));
    min-height: 0;
    gap: 42px;
    padding: 82px 0;
  }

  .ecounit-site .editorial-intro h2 {
    font-size: 48px;
    line-height: 1.07;
  }

  .ecounit-site .editorial-intro-copy {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .ecounit-site .editorial-intro-copy p {
    font-size: 14px;
  }

  .ecounit-site .flow-section {
    padding: 82px 16px 94px;
  }

  .ecounit-site .flow-heading,
  .ecounit-site .interface-heading {
    display: block;
  }

  .ecounit-site .flow-heading {
    margin-bottom: 54px;
  }

  .ecounit-site .flow-heading .chapter-mark,
  .ecounit-site .interface-heading .chapter-mark {
    margin-bottom: 38px;
  }

  .ecounit-site .flow-heading h2 {
    margin-bottom: 26px;
    font-size: 47px;
  }

  .ecounit-site .flow-heading > p:last-child {
    font-size: 14px;
  }

  .ecounit-site .flow-list li {
    min-height: 0;
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 12px 10px;
    padding: 26px 0;
  }

  .ecounit-site .flow-name {
    align-self: center;
  }

  .ecounit-site .flow-list h3,
  .ecounit-site .flow-detail {
    grid-column: 2;
  }

  .ecounit-site .flow-list h3 {
    margin-top: 9px;
    font-size: 22px;
  }

  .ecounit-site .flow-detail {
    font-size: 13px;
  }

  .ecounit-site .interface-heading {
    min-height: 0;
    padding: 82px 16px 68px;
  }

  .ecounit-site .interface-heading h2 {
    margin-bottom: 24px;
    font-size: 51px;
  }

  .ecounit-site .interface-heading > p:last-child {
    font-size: 14px;
  }

  .ecounit-site .screen-tabs {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ecounit-site .screen-tabs button {
    min-height: 58px;
    padding: 0 14px;
    font-size: 12px;
  }

  .ecounit-site .screen-tabs button:nth-child(3) {
    border-left: 0;
  }

  .ecounit-site .screen-tabs button:nth-child(n + 3) {
    border-top: 1px solid rgba(255, 255, 255, 0.18);
  }

  .ecounit-site .screen-panel {
    min-height: max(690px, calc(100svh - var(--eco-header)));
    grid-template-columns: 1fr;
    grid-template-rows: auto minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    padding: 36px 16px 0;
  }

  .ecounit-site .screen-copy {
    max-width: none;
    padding-bottom: 0;
  }

  .ecounit-site .screen-count {
    position: absolute;
    right: 0;
    top: 6px;
    margin: 0;
    font-size: 92px;
  }

  .ecounit-site .screen-name {
    margin-bottom: 12px;
  }

  .ecounit-site .screen-copy h3 {
    max-width: 310px;
    margin-bottom: 12px;
    font-size: 34px;
    line-height: 1.1;
  }

  .ecounit-site .screen-copy > p:last-child {
    max-width: 340px;
    font-size: 13px;
    line-height: 1.65;
  }

  .ecounit-site .screen-device {
    width: 270px;
    max-height: 455px;
  }

  .ecounit-site .screen-note {
    display: none;
  }

  .ecounit-site .privacy-section {
    gap: 58px;
    padding: 84px 16px;
  }

  .ecounit-site .privacy-heading .chapter-mark {
    margin-bottom: 38px;
  }

  .ecounit-site .privacy-heading h2 {
    margin-bottom: 24px;
    font-size: 43px;
    line-height: 1.1;
  }

  .ecounit-site .privacy-heading > p:last-child {
    font-size: 14px;
  }

  .ecounit-site .privacy-proof article {
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    padding: 24px 0;
  }

  .ecounit-site .privacy-proof p {
    grid-column: 2;
  }

  .ecounit-site .privacy-links {
    flex-direction: column;
    gap: 0;
  }

  .ecounit-site .download-section {
    min-height: 560px;
    gap: 52px;
    padding: 82px 16px 70px;
  }

  .ecounit-site .download-title .chapter-mark {
    margin-bottom: 44px;
  }

  .ecounit-site .download-title h2 {
    font-size: 70px;
  }

  .ecounit-site .download-copy > p {
    font-size: 16px;
  }

  .ecounit-site .site-footer {
    padding: 62px 16px 28px;
  }

  .ecounit-site .footer-wordmark {
    margin-bottom: 52px;
    font-size: 70px;
  }

  .ecounit-site .site-footer-inner {
    align-items: flex-start;
    flex-direction: column-reverse;
  }

  .ecounit-site .footer-links {
    justify-content: flex-start;
    gap: 14px 20px;
  }

  .ecounit-site .legal-hero {
    height: calc(100svh - var(--eco-header) - 42px);
    min-height: 580px;
    grid-template-columns: 1fr;
    align-items: start;
    padding: 34px 16px 58px;
  }

  .ecounit-site .legal-hero-copy .eyebrow {
    margin-bottom: 28px;
  }

  .ecounit-site .legal-hero h1 {
    max-width: 360px;
    margin-bottom: 25px;
    font-size: 51px;
    line-height: 1;
  }

  .ecounit-site .legal-intro {
    position: relative;
    z-index: 2;
    max-width: 225px;
    margin-bottom: 18px;
    font-size: 12px;
    line-height: 1.68;
  }

  .ecounit-site .legal-date {
    position: relative;
    z-index: 2;
    font-size: 9px;
  }

  .ecounit-site .legal-hero-device {
    position: absolute;
    right: -40px;
    bottom: -110px;
    width: 245px;
    margin: 0;
  }

  .ecounit-site .legal-hero-device figcaption {
    display: none;
  }

  .ecounit-site .legal-hero-index {
    right: 16px;
    top: auto;
    bottom: 16px;
  }

  .ecounit-site .legal-summary-band {
    min-height: 0;
    gap: 32px;
    padding: 68px 16px;
  }

  .ecounit-site .legal-summary-band .chapter-mark {
    margin-bottom: 24px;
  }

  .ecounit-site .legal-summary-band h2 {
    font-size: 37px;
  }

  .ecounit-site .legal-summary-band > p {
    font-size: 14px;
  }

  .ecounit-site .legal-layout {
    width: min(calc(100% - 32px), 1280px);
    gap: 54px;
    padding: 68px 0 100px;
  }

  .ecounit-site .legal-toc ol {
    grid-template-columns: 1fr;
  }

  .ecounit-site .legal-toc a {
    font-size: 13px;
  }

  .ecounit-site .data-commitments {
    grid-template-columns: 1fr;
    margin-bottom: 70px;
  }

  .ecounit-site .data-commitments article {
    min-height: 0;
  }

  .ecounit-site .data-commitments article > span {
    margin-bottom: 24px;
  }

  .ecounit-site .legal-section {
    padding-top: 48px;
  }

  .ecounit-site .legal-section + .legal-section {
    margin-top: 52px;
  }

  .ecounit-site .legal-section h2 {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 8px;
    margin-bottom: 28px;
    font-size: 28px;
    line-height: 1.24;
  }

  .ecounit-site .legal-section .section-number {
    padding-top: 7px;
    font-size: 9px;
  }

  .ecounit-site .legal-section p,
  .ecounit-site .legal-section li {
    font-size: 14px;
    line-height: 1.86;
  }

  .ecounit-site .service-list article {
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .ecounit-site .legal-contact {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ecounit-site .legal-contact a {
    font-size: 16px;
    overflow-wrap: anywhere;
  }
}

@media (max-height: 700px) and (min-width: 701px) {
  .ecounit-site .product-hero,
  .ecounit-site .legal-hero {
    min-height: 560px;
  }

  .ecounit-site .hero-copy h1 {
    font-size: 100px;
  }

  .ecounit-site .legal-hero h1 {
    font-size: 68px;
  }
}

@media (max-height: 620px) and (max-width: 700px) {
  .ecounit-site .product-hero,
  .ecounit-site .legal-hero {
    min-height: 500px;
  }

  .ecounit-site .hero-copy h1 {
    font-size: 66px;
  }

  .ecounit-site .hero-lead {
    display: none;
  }

  .ecounit-site .hero-device {
    width: 220px;
  }

  .ecounit-site .legal-hero h1 {
    font-size: 45px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecounit-site {
    scroll-behavior: auto;
  }

  .ecounit-site *,
  .ecounit-site *::before,
  .ecounit-site *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .ecounit-site.motion-ready [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 700px) {
  .ecounit-site .hero-lead { width: 150px !important; max-width: 150px !important; }
  .ecounit-site .hero-device { right: -64px !important; bottom: -102px !important; }
}

/* ESC product directory shared with the other product sites. */
.ecounit-site .esc-product-directory {
  color: #10261f;
  background: var(--eco-yellow);
  border-top: 1px solid rgba(16, 38, 31, 0.25);
}
.ecounit-site .esc-product-directory-heading,
.ecounit-site .esc-product-directory-list,
.ecounit-site .esc-product-directory-current {
  width: min(calc(100% - 48px), var(--eco-max));
  margin-inline: auto;
}
.ecounit-site .esc-product-directory-heading {
  min-height: 390px;
  padding: 76px 0 58px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.ecounit-site .esc-product-directory-heading > p,
.ecounit-site .esc-product-directory-current,
.ecounit-site .esc-product-directory-list small,
.ecounit-site .esc-product-directory-number,
.ecounit-site .esc-product-directory-state {
  margin: 0;
  color: rgba(16, 38, 31, .64);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, monospace;
  font-size: 10px;
  font-weight: 760;
  letter-spacing: .08em;
}
.ecounit-site .esc-product-directory-heading h2 {
  max-width: 920px;
  margin: 22px 0 32px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .9;
  font-weight: 880;
}
.ecounit-site .esc-product-directory-heading a {
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  font-size: 14px;
  font-weight: 820;
}
.ecounit-site .esc-product-directory-list {
  margin-block: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(16, 38, 31, .25);
}
.ecounit-site .esc-product-directory-list li {
  min-height: 154px;
  display: grid;
  grid-template-columns: 70px minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid rgba(16, 38, 31, .2);
}
.ecounit-site .esc-product-directory-list div { min-width: 0; }
.ecounit-site .esc-product-directory-list small { display: block; margin-bottom: 7px; }
.ecounit-site .esc-product-directory-list strong { display: block; font-size: 27px; line-height: 1.1; font-weight: 880; }
.ecounit-site .esc-product-directory-list p { max-width: 620px; margin: 9px 0 0; color: rgba(16, 38, 31, .72); font-size: 14px; line-height: 1.65; }
.ecounit-site .esc-product-directory-list a,
.ecounit-site .esc-product-directory-state { min-width: 110px; display: inline-flex; justify-content: space-between; gap: 14px; padding: 9px 0; border-bottom: 1px solid currentColor; color: inherit; font-size: 13px; font-weight: 780; }
.ecounit-site .esc-product-directory-state { color: rgba(16, 38, 31, .64); border-bottom-color: transparent; }
.ecounit-site .esc-product-directory-current { padding: 18px 0 22px; }

@media (max-width: 700px) {
  .ecounit-site .esc-product-directory-heading,
  .ecounit-site .esc-product-directory-list,
  .ecounit-site .esc-product-directory-current { width: calc(100% - 32px); }
  .ecounit-site .esc-product-directory-heading { min-height: 330px; padding: 62px 0 46px; }
  .ecounit-site .esc-product-directory-heading h2 { font-size: 43px; }
  .ecounit-site .esc-product-directory-list li { min-height: 0; padding: 26px 0 0; grid-template-columns: 46px minmax(0, 1fr); gap: 14px; }
  .ecounit-site .esc-product-directory-list strong { font-size: 23px; }
  .ecounit-site .esc-product-directory-list p { font-size: 13px; }
  .ecounit-site .esc-product-directory-list a,
  .ecounit-site .esc-product-directory-state { grid-column: 2; width: max-content; margin-bottom: 26px; }
}

@media (max-width: 390px) {
  .ecounit-site .hero-device {
    right: -18px !important;
    bottom: -74px !important;
    width: 258px !important;
  }
}

@media (max-width: 700px) {
  .ecounit-site .site-menu-toggle {
    position: absolute;
    top: 7px;
    right: 0;
  }
  .ecounit-site .site-menu-toggle span,
  .ecounit-site .site-menu-toggle span::before,
  .ecounit-site .site-menu-toggle span::after { display: none; }
  .ecounit-site .site-menu-toggle::after { content: "+"; font-size: 25px; font-weight: 500; line-height: 1; }
  .ecounit-site .site-menu-toggle[aria-expanded="true"]::after { content: "x"; font-size: 20px; }
}

/* Scene system and interactive course detail. */
.ecounit-site .scene-loader {
  position: fixed;
  inset: 0;
  z-index: 900;
  display: none;
  place-items: center;
  color: var(--eco-white);
  background: var(--eco-night);
  transition: opacity 520ms ease, visibility 520ms ease;
}

.ecounit-site.js-scene-loading .scene-loader {
  display: grid;
}

.ecounit-site .scene-loader.is-complete {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ecounit-site .locale-control { display: inline-flex; align-items: center; min-height: 30px; margin-left: 6px; padding-left: 10px; border-left: 1px solid var(--eco-line); }
.ecounit-site .locale-control select { min-width: 52px; border: 0; color: inherit; background: transparent; font: 800 10px/1 inherit; letter-spacing: .08em; cursor: pointer; }
.ecounit-site .locale-control select:focus-visible { outline: 2px solid var(--eco-green-light); outline-offset: 4px; }
@media (max-width: 980px) { .ecounit-site .site-nav .locale-control { width: 100%; min-height: 54px; margin: 0; padding-left: 0; border-left: 0; border-bottom: 1px solid var(--eco-line); } .ecounit-site .site-nav .locale-control select { width: 100%; font-size: 18px; } }

.ecounit-site .scene-loader-inner {
  width: min(calc(100% - 48px), 390px);
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.ecounit-site .scene-loader img {
  width: 68px;
  height: 68px;
  border: 1px solid rgba(189, 216, 205, 0.4);
}

.ecounit-site .scene-loader p,
.ecounit-site .scene-loader small {
  margin: 0;
  color: var(--eco-mint);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.ecounit-site .scene-loader-track {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(189, 216, 205, 0.23);
}

.ecounit-site .scene-loader-track span {
  width: 34%;
  height: 100%;
  display: block;
  background: var(--eco-yellow);
  animation: eco-loader-travel 860ms cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

.ecounit-site .scene-rail {
  position: absolute;
  z-index: 5;
  top: 28px;
  right: max(24px, calc((100% - var(--eco-max)) / 2));
  display: flex;
  align-items: center;
  gap: 12px;
}

.ecounit-site .scene-rail a {
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(189, 216, 205, 0.68);
  font-size: 9px;
  font-weight: 820;
  text-transform: uppercase;
  transition: color 180ms ease, transform 180ms ease;
}

.ecounit-site .scene-rail a span {
  color: var(--eco-yellow);
  font-size: 8px;
}

.ecounit-site .scene-rail a:hover,
.ecounit-site .scene-rail a:focus-visible,
.ecounit-site .scene-rail a.is-current {
  color: var(--eco-white);
  transform: translateY(-2px);
}

.ecounit-site .scene-advance {
  position: absolute;
  right: max(24px, calc((100% - var(--eco-max)) / 2));
  bottom: 82px;
  z-index: 6;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 0;
  padding: 0;
  color: var(--eco-white);
  background: transparent;
  font-size: 10px;
  font-weight: 820;
  text-transform: uppercase;
  cursor: pointer;
}

.ecounit-site .scene-advance span {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: var(--eco-night);
  background: var(--eco-yellow);
  font-size: 18px;
  transition: transform 180ms ease, background 180ms ease;
}

.ecounit-site .scene-advance:hover span,
.ecounit-site .scene-advance:focus-visible span {
  background: var(--eco-white);
  transform: translateY(4px);
}

.ecounit-site [data-cinematic-scroll].is-focused {
  z-index: 2;
}

.ecounit-site .interface-section.is-focused .screen-panel::after {
  height: 46%;
}

.ecounit-site .lecture-lab.is-focused .lecture-detail {
  box-shadow: 20px 20px 0 var(--eco-signal);
}

.ecounit-site .flow-section.is-focused .flow-list {
  border-color: var(--eco-green);
}

.ecounit-site .flow-list li:focus-within,
.ecounit-site .privacy-proof article:focus-within {
  outline: 2px solid var(--eco-yellow);
  outline-offset: -2px;
}

.ecounit-site .lecture-lab {
  position: relative;
  overflow: hidden;
  padding: 124px max(24px, calc((100% - var(--eco-max)) / 2));
  color: var(--eco-white);
  background: #101b17;
}

.ecounit-site .lecture-lab::before {
  position: absolute;
  top: 0;
  right: 14%;
  width: 1px;
  height: 100%;
  background: rgba(189, 216, 205, 0.16);
  content: "";
}

.ecounit-site .lecture-lab-heading {
  width: min(100%, 850px);
  margin-bottom: 76px;
}

.ecounit-site .lecture-lab-heading .chapter-mark {
  margin-bottom: 32px;
  color: var(--eco-yellow);
}

.ecounit-site .lecture-lab-heading h2 {
  margin-bottom: 26px;
  font-size: 76px;
  line-height: 1.02;
  font-weight: 900;
}

.ecounit-site .lecture-lab-heading > p:last-child {
  max-width: 580px;
  margin: 0;
  color: var(--eco-mint);
  font-size: 16px;
  line-height: 1.8;
}

.ecounit-site .lecture-lab-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  gap: 72px;
  align-items: start;
}

.ecounit-site .lecture-list {
  border-top: 1px solid rgba(189, 216, 205, 0.28);
}

.ecounit-site .lecture-card {
  width: 100%;
  min-height: 116px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 16px;
  border: 0;
  border-bottom: 1px solid rgba(189, 216, 205, 0.28);
  padding: 18px 0;
  color: var(--eco-white);
  background: transparent;
  text-align: left;
  cursor: pointer;
  transition: color 220ms ease, padding 220ms ease, background 220ms ease;
}

.ecounit-site .lecture-card:hover,
.ecounit-site .lecture-card[aria-pressed="true"] {
  padding-right: 18px;
  padding-left: 18px;
  color: var(--eco-night);
  background: var(--eco-yellow);
}

.ecounit-site .lecture-card-index {
  color: var(--eco-yellow);
  font-size: 10px;
  font-weight: 820;
}

.ecounit-site .lecture-card[aria-pressed="true"] .lecture-card-index {
  color: var(--eco-green);
}

.ecounit-site .lecture-card-main {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.ecounit-site .lecture-card-main strong {
  overflow-wrap: anywhere;
  font-size: 19px;
  line-height: 1.25;
  font-weight: 820;
}

.ecounit-site .lecture-card-main small {
  color: rgba(189, 216, 205, 0.68);
  font-size: 12px;
  line-height: 1.4;
}

.ecounit-site .lecture-card[aria-pressed="true"] .lecture-card-main small {
  color: rgba(7, 19, 16, 0.65);
}

.ecounit-site .lecture-card-status {
  min-width: 58px;
  color: var(--eco-mint);
  font-size: 10px;
  font-weight: 820;
  text-align: right;
}

.ecounit-site .status-next,
.ecounit-site .status-watch {
  color: var(--eco-yellow);
}

.ecounit-site .lecture-card[aria-pressed="true"] .lecture-card-status {
  color: var(--eco-green);
}

.ecounit-site .lecture-detail {
  position: sticky;
  top: calc(var(--eco-header) + 28px);
  min-height: 510px;
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid rgba(189, 216, 205, 0.35);
  background: #071310;
  box-shadow: 14px 14px 0 var(--eco-signal);
  transition: transform 340ms cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 340ms ease;
}

.ecounit-site .lecture-lab.is-changing .lecture-detail {
  transform: translate3d(10px, 6px, 0);
  box-shadow: 6px 6px 0 var(--eco-signal);
}

.ecounit-site .lecture-detail-eyebrow {
  margin: 0 0 50px;
  color: var(--eco-yellow);
  font-size: 10px;
  font-weight: 820;
}

.ecounit-site .lecture-detail h3 {
  margin-bottom: 12px;
  font-size: 45px;
  line-height: 1.08;
  font-weight: 880;
}

.ecounit-site .lecture-detail-meta {
  margin: 0 0 36px;
  color: var(--eco-mint);
  font-size: 14px;
  line-height: 1.65;
}

.ecounit-site .lecture-detail-data {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: auto;
  border-top: 1px solid rgba(189, 216, 205, 0.27);
  border-left: 1px solid rgba(189, 216, 205, 0.27);
}

.ecounit-site .lecture-detail-data div {
  min-width: 0;
  display: grid;
  gap: 8px;
  padding: 16px 12px;
  border-right: 1px solid rgba(189, 216, 205, 0.27);
  border-bottom: 1px solid rgba(189, 216, 205, 0.27);
}

.ecounit-site .lecture-detail-data span {
  color: rgba(189, 216, 205, 0.68);
  font-size: 10px;
  font-weight: 760;
}

.ecounit-site .lecture-detail-data strong {
  overflow-wrap: anywhere;
  font-size: 18px;
  line-height: 1.1;
}

.ecounit-site .lecture-detail-action {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(189, 216, 205, 0.27);
}

.ecounit-site .lecture-action-mark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: var(--eco-night);
  background: var(--eco-yellow);
  font-size: 17px;
}

.ecounit-site .lecture-detail-action p {
  margin: 0;
  display: grid;
  gap: 5px;
}

.ecounit-site .lecture-detail-action strong {
  font-size: 13px;
}

.ecounit-site .lecture-detail-action span:last-child {
  color: var(--eco-mint);
  font-size: 12px;
  line-height: 1.6;
}

.ecounit-site .lecture-detail-hint {
  margin: 26px 0 0;
  color: rgba(189, 216, 205, 0.55);
  font-size: 10px;
}

@keyframes eco-loader-travel {
  0% { transform: translateX(-110%); }
  100% { transform: translateX(330%); }
}

@media (max-width: 980px) {
  .ecounit-site .scene-rail { display: none; }
  .ecounit-site .lecture-lab-heading h2 { font-size: 62px; }
  .ecounit-site .lecture-lab-layout { grid-template-columns: minmax(0, 0.86fr) minmax(350px, 1.14fr); gap: 42px; }
  .ecounit-site .lecture-detail h3 { font-size: 38px; }
}

@media (max-width: 700px) {
  .ecounit-site .scene-loader-inner { width: min(calc(100% - 32px), 360px); }
  .ecounit-site .scene-advance { right: 16px; bottom: 58px; }
  .ecounit-site .lecture-lab { padding: 82px 16px; }
  .ecounit-site .lecture-lab::before { right: 24px; }
  .ecounit-site .lecture-lab-heading { margin-bottom: 48px; }
  .ecounit-site .lecture-lab-heading .chapter-mark { margin-bottom: 24px; }
  .ecounit-site .lecture-lab-heading h2 { margin-bottom: 20px; font-size: 45px; line-height: 1.08; }
  .ecounit-site .lecture-lab-heading > p:last-child { font-size: 14px; }
  .ecounit-site .lecture-lab-layout { grid-template-columns: 1fr; gap: 42px; }
  .ecounit-site .lecture-card { grid-template-columns: 32px minmax(0, 1fr); gap: 9px; min-height: 100px; }
  .ecounit-site .lecture-card:hover,
  .ecounit-site .lecture-card[aria-pressed="true"] { padding-right: 10px; padding-left: 10px; }
  .ecounit-site .lecture-card-main strong { font-size: 16px; }
  .ecounit-site .lecture-card-main small { font-size: 11px; }
  .ecounit-site .lecture-card-status { grid-column: 2; min-width: 0; text-align: left; }
  .ecounit-site .lecture-detail { position: relative; top: auto; min-height: 0; padding: 26px 20px; box-shadow: 8px 8px 0 var(--eco-signal); }
  .ecounit-site .lecture-detail-eyebrow { margin-bottom: 36px; }
  .ecounit-site .lecture-detail h3 { font-size: 34px; }
  .ecounit-site .lecture-detail-meta { margin-bottom: 28px; font-size: 13px; }
  .ecounit-site .lecture-detail-data { grid-template-columns: 1fr; }
  .ecounit-site .lecture-detail-data div { grid-template-columns: minmax(0, 1fr) auto; align-items: center; }
  .ecounit-site .lecture-detail-action { margin-top: 18px; padding-top: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  .ecounit-site .scene-loader { display: none; }
  .ecounit-site .scene-loader-track span { animation: none; }
}

@media (max-width: 360px) {
  .ecounit-site .hero-lead {
    width: 128px !important;
    max-width: 128px !important;
  }

  .ecounit-site .hero-device {
    right: -84px !important;
    bottom: -168px !important;
  }
}

/* Cinematic product pass. This sits after the original product system so legal
   pages retain their text-first structure while the product page becomes a film-like sequence. */
.ecounit-site {
  --eco-night: #071310;
  --eco-night-soft: #10231d;
  --eco-mint: #bdd8cd;
  --eco-signal: #f17736;
}

.ecounit-site .site-brand-mark {
  width: 31px;
  height: 31px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.58);
  color: var(--eco-yellow);
  font-size: 15px;
  font-weight: 900;
  line-height: 1;
}

.ecounit-site .site-brand-mark + span {
  font-size: 15px;
}

.ecounit-site .product-hero {
  min-height: 720px;
  grid-template-columns: minmax(0, 0.94fr) minmax(430px, 0.86fr);
  gap: 0;
  padding: 0 max(24px, calc((100% - var(--eco-max)) / 2));
  color: var(--eco-ink);
  background: #e9e8df;
  isolation: isolate;
}

.ecounit-site .product-hero::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 43%;
  z-index: -2;
  background: var(--eco-night);
  content: "";
}

.ecounit-site .product-hero::after {
  position: absolute;
  right: 42%;
  bottom: 0;
  width: 26px;
  height: 72%;
  z-index: -1;
  background: var(--eco-signal);
  content: "";
  transform: translateY(var(--scroll-shift, 0px));
  transition: transform 180ms linear;
}

.ecounit-site.motion-ready .product-hero [data-reveal] {
  opacity: 1;
  transform: none;
}

.ecounit-site .hero-copy {
  align-self: center;
  max-width: 660px;
  padding: 104px 0 108px;
}

.ecounit-site .hero-copy .eyebrow {
  position: relative;
  width: max-content;
  margin: 0 0 28px;
  padding: 8px 11px;
  color: var(--eco-night);
  background: var(--eco-yellow);
}

.ecounit-site .hero-wordmark {
  width: min(100%, 580px);
  min-height: 126px;
  margin: 0 0 26px;
  color: var(--eco-ink);
  font-size: 146px;
  line-height: 0.78;
  font-weight: 900;
  white-space: nowrap;
}

.ecounit-site .hero-wordmark span:first-child {
  text-shadow: 7px 8px 0 var(--eco-signal);
}

.ecounit-site .hero-statement {
  max-width: 610px;
  margin-bottom: 18px;
  font-size: 37px;
  line-height: 1.08;
  font-weight: 870;
}

.ecounit-site .hero-lead {
  max-width: 510px;
  margin-bottom: 28px;
  color: #535954;
  font-size: 15px;
  line-height: 1.8;
}

.ecounit-site .hero-device {
  width: min(100%, 530px);
  align-self: center;
  justify-self: end;
  margin: 180px 5% -274px 0;
  transform: translate3d(var(--pointer-shift-x, 0px), var(--scroll-shift, 0px), 0);
  transition: transform 180ms linear;
}

.ecounit-site .hero-device::before {
  position: absolute;
  top: 16%;
  right: -13%;
  bottom: 6%;
  left: 18%;
  z-index: -1;
  border: 1px solid rgba(189, 216, 205, 0.38);
  content: "";
  transform: translate3d(var(--pointer-inverse-x, 0px), var(--pointer-inverse-y, 0px), 0);
}

.ecounit-site .hero-device img {
  filter: drop-shadow(0 36px 42px rgba(0, 0, 0, 0.34));
}

.ecounit-site .device-orbit {
  position: absolute;
  top: 18%;
  right: 13%;
  width: 66%;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(189, 216, 205, 0.28);
  border-radius: 50%;
  content: "";
  transform: translate3d(var(--pointer-inverse-x, 0px), var(--pointer-inverse-y, 0px), 0);
}

.ecounit-site .hero-device figcaption {
  top: 18px;
  left: -38px;
  color: var(--eco-mint);
}

.ecounit-site .hero-device figcaption span {
  color: var(--eco-yellow);
}

.ecounit-site .hero-index {
  height: 58px;
  color: var(--eco-mint);
  background: var(--eco-night);
  border-color: rgba(189, 216, 205, 0.28);
}

.ecounit-site .hero-index span {
  color: rgba(189, 216, 205, 0.7);
  border-left-color: rgba(189, 216, 205, 0.22);
}

.ecounit-site .hero-index span:first-child {
  color: var(--eco-yellow);
}

.ecounit-site .editorial-intro {
  position: relative;
  background: var(--eco-night);
}

.ecounit-site .editorial-intro::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 12px;
  background: var(--eco-signal);
  content: "";
}

.ecounit-site .flow-section {
  position: relative;
  overflow: clip;
  background: #e9e8df;
}

.ecounit-site .flow-list li {
  transition: color 240ms ease, border-color 240ms ease, transform 240ms ease;
}

.ecounit-site .flow-list li:hover {
  color: var(--eco-green);
  border-color: var(--eco-green);
  transform: translateX(12px);
}

.ecounit-site .interface-section {
  position: relative;
  background: var(--eco-night);
}

.ecounit-site .interface-heading {
  color: var(--eco-white);
  background: var(--eco-night);
}

.ecounit-site .interface-heading .chapter-mark,
.ecounit-site .interface-heading > p:last-child {
  color: var(--eco-mint);
}

.ecounit-site .screen-showcase {
  --screen-tone: #0f231d;
  position: relative;
  color: var(--eco-white);
  background: var(--eco-night);
}

.ecounit-site .screen-showcase[data-active-screen="timetable"] { --screen-tone: #142019; }
.ecounit-site .screen-showcase[data-active-screen="courses"] { --screen-tone: #151d18; }
.ecounit-site .screen-showcase[data-active-screen="profile"] { --screen-tone: #17201e; }

.ecounit-site .screen-tabs {
  background: var(--eco-night);
  border-color: rgba(189, 216, 205, 0.24);
}

.ecounit-site .screen-tabs button {
  color: rgba(189, 216, 205, 0.68);
  border-color: rgba(189, 216, 205, 0.24);
  transition: color 220ms ease, background 220ms ease, padding 220ms ease;
}

.ecounit-site .screen-tabs button[aria-selected="true"] {
  padding-left: 30px;
  color: var(--eco-night);
  background: var(--eco-yellow);
}

.ecounit-site .screen-stage {
  min-height: 800px;
  background: var(--screen-tone);
  transition: background 380ms ease;
}

.ecounit-site .screen-panel {
  min-height: 800px;
  background: var(--screen-tone);
  transition: background 380ms ease;
}

.ecounit-site .screen-panel::before {
  position: absolute;
  right: 6%;
  bottom: 11%;
  width: min(48%, 650px);
  aspect-ratio: 1;
  border: 1px solid rgba(189, 216, 205, 0.17);
  border-radius: 50%;
  content: "";
  transform: translate3d(var(--pointer-shift-x, 0px), var(--pointer-shift-y, 0px), 0);
}

.ecounit-site .screen-panel::after {
  position: absolute;
  top: 0;
  right: 10%;
  width: 8px;
  height: 36%;
  background: var(--eco-signal);
  content: "";
}

.ecounit-site .screen-copy,
.ecounit-site .screen-copy > p:last-child,
.ecounit-site .screen-name {
  color: var(--eco-mint);
}

.ecounit-site .screen-copy h3 {
  color: var(--eco-white);
}

.ecounit-site .screen-count {
  color: rgba(189, 216, 205, 0.2);
}

.ecounit-site .screen-device {
  position: relative;
  z-index: 2;
  width: min(100%, 420px);
  transform: translate3d(var(--pointer-shift-x, 0px), var(--scroll-shift, 0px), 0) rotate(-2deg);
  transform-origin: center bottom;
  transition: transform 220ms linear;
}

.ecounit-site .screen-device img {
  filter: drop-shadow(0 34px 38px rgba(0, 0, 0, 0.42));
}

.ecounit-site .screen-showcase.is-switching .screen-device {
  animation: eco-screen-arrive 620ms cubic-bezier(0.18, 0.84, 0.22, 1) both;
}

.ecounit-site .screen-note {
  color: rgba(189, 216, 205, 0.58);
}

.ecounit-site .privacy-section {
  background: var(--eco-paper);
}

.ecounit-site .privacy-proof article {
  transition: background 220ms ease, color 220ms ease, transform 220ms ease;
}

.ecounit-site .privacy-proof article:hover {
  color: var(--eco-white);
  background: var(--eco-night);
  transform: translateY(-6px);
}

.ecounit-site .privacy-proof article:hover p {
  color: rgba(255, 255, 255, 0.72);
}

.ecounit-site .download-section {
  position: relative;
  overflow: hidden;
  color: var(--eco-white);
  background: var(--eco-green);
}

.ecounit-site .download-section::after {
  position: absolute;
  right: 7%;
  bottom: -22%;
  width: 430px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 50%;
  content: "";
}

.ecounit-site .download-copy > p,
.ecounit-site .download-title .chapter-mark {
  color: rgba(255, 255, 255, 0.76);
}

@keyframes eco-screen-arrive {
  0% { opacity: 0; transform: translate3d(54px, 22px, 0) rotate(3deg) scale(0.94); }
  100% { opacity: 1; transform: translate3d(0, var(--scroll-shift, 0px), 0) rotate(-2deg) scale(1); }
}

@media (max-width: 980px) {
  .ecounit-site .product-hero {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.7fr);
  }

  .ecounit-site .hero-wordmark { min-height: 110px; font-size: 124px; }
  .ecounit-site .hero-statement { font-size: 31px; }
  .ecounit-site .hero-device { width: 420px; margin-right: 0; }
}

@media (max-width: 700px) {
  .ecounit-site .site-brand-mark { width: 27px; height: 27px; font-size: 13px; }
  .ecounit-site .site-menu-toggle {
    position: fixed;
    top: 7px;
    right: 16px;
    z-index: 260;
    display: grid !important;
    place-items: center;
    color: var(--eco-ink);
    background: var(--eco-yellow);
  }

  .ecounit-site .product-hero {
    min-height: 680px;
    height: calc(100svh - var(--eco-header) - 42px);
    display: block;
    padding: 0 16px;
  }

  .ecounit-site .product-hero::before { top: 54%; width: 100%; }
  .ecounit-site .product-hero::after { top: 54%; right: 18%; width: 9px; height: 46%; }

  .ecounit-site .hero-copy { z-index: 4; padding: 44px 0 0; }
  .ecounit-site .hero-copy .eyebrow { margin-bottom: 18px; font-size: 9px; }
  .ecounit-site .hero-wordmark { width: min(100%, 320px); min-height: 59px; margin-bottom: 20px; font-size: 71px; }
  .ecounit-site .hero-statement { max-width: 290px; font-size: 25px; line-height: 1.12; }
  .ecounit-site .hero-lead { width: 158px; max-width: 158px; font-size: 12px; line-height: 1.64; }
  .ecounit-site .hero-device { right: -56px; bottom: -88px; width: 274px; margin: 0; }
  .ecounit-site .hero-device::before { right: -8%; left: 15%; }
  .ecounit-site .device-orbit { top: 24%; right: 4%; width: 72%; }
  .ecounit-site .hero-index { height: 42px; }

  .ecounit-site .screen-stage,
  .ecounit-site .screen-panel { min-height: 720px; }

  .ecounit-site .screen-panel { padding-top: 46px; }
  .ecounit-site .screen-panel::before { right: -14%; bottom: 5%; width: 95%; }
  .ecounit-site .screen-panel::after { top: 0; right: 8%; width: 6px; height: 18%; }
  .ecounit-site .screen-tabs button[aria-selected="true"] { padding-left: 14px; }
  .ecounit-site .screen-device { width: 278px; max-height: none; transform: translate3d(var(--pointer-shift-x, 0px), var(--scroll-shift, 0px), 0) rotate(-1deg); }

  .ecounit-site .flow-list li:hover { transform: none; }
  .ecounit-site .privacy-proof article:hover { transform: none; }
}

@media (max-width: 360px) {
  .ecounit-site .site-header-inner { width: calc(100% - 24px); }
  .ecounit-site .product-hero { min-height: 610px; padding: 0 12px; }
  .ecounit-site .hero-copy { padding-top: 30px; }
  .ecounit-site .hero-statement { font-size: 22px; }
  .ecounit-site .hero-lead { width: 188px; max-width: 188px; font-size: 11px; }
  .ecounit-site .hero-device { right: -54px; width: 248px; }
  .ecounit-site .hero-index span { padding: 0 5px; font-size: 7px; }
  .ecounit-site .screen-device { width: 248px; }
}

@media (prefers-reduced-motion: reduce) {
  .ecounit-site .hero-device,
  .ecounit-site .screen-device,
  .ecounit-site .product-hero::after,
  .ecounit-site .flow-list li,
  .ecounit-site .privacy-proof article {
    transform: none;
    transition: none;
    animation: none;
  }
}

@media (max-width: 700px) {
  .ecounit-site .hero-lead { width: 150px !important; max-width: 150px !important; }
  .ecounit-site .hero-device { right: -64px !important; bottom: -102px !important; }
}
