@font-face {
  font-family:Montserrat;
  src:url('../fonts/montserrat-regular.ttf') format('truetype');
  font-style:normal;
  font-weight:400 500;
  font-display:swap;
}
@font-face {
  font-family:Montserrat;
  src:url('../fonts/montserrat-bold.ttf') format('truetype');
  font-style:normal;
  font-weight:600 800;
  font-display:swap;
}
:root {
  --green:#1abf7d;
  --green-dark:#087b51;
  --ink:#252e2b;
  --muted:#65716c;
  --mint:#eaf8f0;
  --border:#dce5df;
  --radius:12px;
  --max:1216px;
}
* {
  box-sizing:border-box;
}
html {
  scroll-behavior:smooth;
  scroll-padding-top:105px;
}
body {
  margin:0;
  color:var(--ink);
  font:400 15px/1.75 Montserrat,Arial,sans-serif;
  background:#fff;
}
button,a {
  -webkit-tap-highlight-color:transparent;
}
button {
  font:inherit;
  cursor:pointer;
}
a {
  color:inherit;
  text-decoration:none;
}
img {
  display:block;
  max-width:100%;
  height:auto;
}
h1,h2,h3,p {
  margin:0;
}
h1,h2,h3 {
  font-weight:700;
  letter-spacing:-1.6px;
  line-height:1.16;
}
h1 {
  font-size:clamp(40px,4vw,54px);
}
h2 {
  font-size:clamp(31px,3.1vw,44px);
}
h3 {
  font-size:26px;
  letter-spacing:-.9px;
}
p {
  color:var(--muted);
}
button:focus-visible,a:focus-visible,summary:focus-visible {
  outline:3px solid var(--green-dark);
  outline-offset:6px;
}
::selection {
  background:#b5f3d8;
}
.container {
  width:min(var(--max),calc(100% - 96px));
  margin-inline:auto;
}
.section-pad {
  padding-block:110px;
}
.eyebrow {
  font-size:11px;
  line-height:1.6;
  font-weight:700;
  letter-spacing:1.7px;
  text-transform:uppercase;
  color:var(--green-dark);
  margin-bottom:20px;
}
.button {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  background:var(--green);
  color:#102d21;
  border:1px solid transparent;
  border-radius:5px;
  padding:15px 23px;
  font-size:12px;
  font-weight:700;
  line-height:1.5;
  transition:background .2s,transform .2s;
  min-height:48px;
}
.button:hover {
  background:#14a66b;
  transform:translateY(-2px);
}
.button span {
  font-size:18px;
  line-height:1;
}
.button-dark {
  background:var(--ink);
  color:white;
}
.button-dark:hover {
  background:#43534a;
}
.button-light {
  background:white;
  color:var(--ink);
}
.button-light:hover {
  background:#dcf7e9;
}
.button-outline {
  border-color:var(--border);
  background:transparent;
}
.button-outline:hover {
  background:var(--mint);
}
.button-small {
  padding:12px 16px;
  font-size:11px;
  min-height:42px;
}
.button-row {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.wordmark {
  font-size:25px;
  font-weight:700;
  letter-spacing:-1.4px;
  line-height:1.2;
  white-space:nowrap;
}
.wordmark>span:first-child {
  color:var(--green-dark);
}
.brand-dot {
  color:var(--green);
  font-size:35px;
}
.site-header {
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:blur(16px);
  border-bottom:1px solid #edf1ee;
}
.nav-shell {
  max-width:1340px;
  width:calc(100% - 80px);
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  min-height:90px;
  gap:32px;
}
.nav-shell nav {
  display:flex;
  align-items:center;
  gap:31px;
  font-size:12px;
  font-weight:600;
}
.nav-shell nav>a:not(.button):hover {
  color:var(--green-dark);
}
.nav-shell nav>.button {
  margin-left:18px;
}
.menu-toggle {
  display:none;
}
.skip-link {
  position:fixed;
  top:-80px;
  left:15px;
  padding:10px 20px;
  background:white;
  z-index:100;
}
.skip-link:focus {
  top:10px;
}
.hero {
  position:relative;
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  padding-top:84px;
  gap:30px;
}
.hero-copy {
  padding-block:20px 75px;
}
.hero .eyebrow {
  font-size:10px;
  letter-spacing:1.2px;
  display:flex;
  gap:9px;
  align-items:center;
}
.status-dot {
  height:6px;
  width:6px;
  background:var(--green);
  border-radius:50%;
  box-shadow:0 0 0 4px var(--mint);
  flex-shrink:0;
}
.hero h1 span {
  color:var(--green);
  display:block;
}
.hero .intro {
  font-size:16px;
  line-height:1.8;
  margin:26px 0 30px;
  max-width:530px;
}
.hero-note {
  font-size:10px;
  margin-top:24px;
}
.hero-note strong {
  font-weight:600;
  color:var(--green-dark);
}
.hero-visual {
  position:relative;
  width:calc(100% + 55px);
  margin-left:-15px;
  aspect-ratio:1;
}
.hero-visual img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:contain;
}
.hero-bottom {
  grid-column:1/-1;
  border-top:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px 0 28px;
  font-size:10px;
  color:var(--muted);
}
.hero-bottom>span {
  font-weight:700;
  color:var(--ink);
}
.hero-bottom div {
  display:flex;
  gap:20px;
}
.hero-bottom>a {
  font-size:20px;
  color:var(--green-dark);
}
.split {
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:70px;
  align-items:center;
}
.section-copy p:not(.eyebrow) {
  margin:24px 0;
  max-width:490px;
}
.section-copy h2 span {
  color:var(--green-dark);
}
.platform {
  background:#123b2d;
  color:white;
  overflow:hidden;
}
.platform .eyebrow {
  color:#85dcaf;
}
.platform p {
  color:#c4dacf;
}
.platform h2 span {
  color:#91eab9;
}
.platform .section-copy h2 {
  font-size:42px;
}
.platform .button {
  margin-top:12px;
}
.thin-rule {
  height:1px;
  background:#ffffff26;
  margin:28px 0;
}
.network-visual {
  position:relative;
  width:140%;
  margin-left:-24%;
}
.network-visual>img {
  width:100%;
}
.network-brand {
  position:absolute;
  left:51.5%;
  top:39%;
  transform:translate(-50%,-50%) rotate(-30deg) skewX(25deg);
  background:#191b19;
  color:#c1f7d6;
  width:15%;
  height:10%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:clamp(9px,1.4vw,18px);
  font-weight:700;
  letter-spacing:-1px;
}
.section-heading {
  text-align:center;
  max-width:720px;
  margin:0 auto 55px;
}
.section-heading .eyebrow {
  margin-bottom:15px;
}
.section-heading>p:not(.eyebrow) {
  margin:22px auto 0;
  max-width:610px;
}
.section-heading .button {
  margin-top:28px;
}
.comparison-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:28px;
}
.comparison {
  border-radius:var(--radius);
  padding:40px 34px 0;
  overflow:hidden;
}
.before {
  background:#f1f3f2;
}
.after {
  background:linear-gradient(140deg,#e6f8eb,#eff3dd);
}
.card-label {
  font-size:10px;
  letter-spacing:1.5px;
  font-weight:700;
  margin-bottom:13px;
}
.after .card-label {
  color:var(--green-dark);
}
.check-list {
  list-style:none;
  padding:0;
  margin:26px 0;
}
.check-list li {
  display:flex;
  gap:11px;
  align-items:baseline;
  margin:11px 0;
  font-size:12px;
}
.check-list li:before {
  content:'✓';
  color:var(--green-dark);
  font-size:14px;
  font-weight:700;
  flex-shrink:0;
}
.negative li:before {
  content:'×';
  color:#909992;
}
.messy-notes {
  height:240px;
  position:relative;
  margin-top:30px;
}
.note {
  position:absolute;
  background:white;
  box-shadow:0 6px 20px #00000009;
  border:1px solid #dfe3e0;
  border-radius:6px;
  padding:18px 22px;
  width:82%;
  display:grid;
  gap:6px;
}
.note small {
  font-size:9px;
  color:#929892;
}
.note b {
  font-size:12px;
}
.note span {
  font-size:10px;
  color:#8b948e;
}
.note-one {
  top:0;
  left:0;
  transform:rotate(-7deg);
}
.note-two {
  top:84px;
  right:-5px;
  transform:rotate(6deg);
}
.note-three {
  top:165px;
  left:0;
  transform:rotate(-3deg);
}
.organized-control-image {
  display:block;
  width:100%;
  height:auto;
  margin-top:28px;
  border-radius:12px;
}
.mini-dashboard {
  background:white;
  margin-top:40px;
  border:1px solid #d4e8d7;
  border-radius:9px 9px 0 0;
  box-shadow:0 15px 35px #214b2710;
  min-height:230px;
  transform:translateY(8px);
}
.dashboard-top {
  padding:15px 18px;
  border-bottom:1px solid #edf2ee;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:center;
}
.dashboard-top b {
  font-size:13px;
  letter-spacing:-.6px;
}
.dashboard-top b>span {
  color:var(--green);
}
.live-label {
  font-size:8px;
  color:var(--green-dark);
  background:var(--mint);
  padding:2px 7px;
  border-radius:20px;
}
.dashboard-body {
  display:flex;
}
.dashboard-sidebar {
  font-size:8px;
  line-height:3.4;
  padding:18px 15px;
  border-right:1px solid #edf2ee;
  color:#8a928b;
}
.dashboard-sidebar b {
  color:var(--green-dark);
}
.dashboard-content {
  flex:1;
  padding:16px;
}
.dashboard-content>b {
  font-size:10px;
}
.mini-screens {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
  margin-top:12px;
}
.mini-screens>div>div {
  background:#16432e;
  padding:12px 10px;
  color:#d9ffc2;
  font-weight:700;
  font-size:15px;
  line-height:1.15;
  border:3px solid #25352a;
}
.mini-screens>div:nth-child(2)>div {
  background:#eaf1d8;
  color:#384d2b;
}
.mini-screens span {
  display:block;
  font-size:5px;
  font-weight:400;
  margin-top:9px;
}
.mini-screens small {
  font-size:7px;
  display:flex;
  justify-content:space-between;
  margin-top:5px;
}
.mini-screens i {
  font-style:normal;
  color:var(--green);
}
.dashboard-content>p {
  font-size:7px;
  background:#f1faf3;
  padding:7px;
  margin-top:10px;
  color:var(--green-dark);
}
.solutions {
  background:#f6f8f5;
}
.industry-layout {
  display:grid;
  grid-template-columns:270px 1fr;
  gap:40px;
  align-items:center;
}
.industry-selector {
  display:flex;
  flex-direction:column;
  gap:6px;
}
.industry-button {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  border-radius:6px;
  padding:14px 18px;
  background:transparent;
  text-align:left;
  font-size:12px;
  color:var(--muted);
  min-height:48px;
}
.industry-button span {
  opacity:0;
}
.industry-button.active {
  background:var(--green-dark);
  color:white;
}
.industry-button.active span {
  opacity:1;
}
.industry-button:hover:not(.active) {
  background:#e3eae1;
  color:var(--ink);
}
.industry-stage {
  position:relative;
  aspect-ratio:1.55;
  overflow:hidden;
  border-radius:10px;
  isolation:isolate;
  background:#526455;
}
.industry-stage>img {
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.68);
  position:absolute;
  z-index:-1;
}
.industry-screen {
  background:#f1f6e9;
  border:9px solid #202823;
  width:76%;
  position:absolute;
  left:12%;
  top:14%;
  box-shadow:0 20px 35px #0004;
  aspect-ratio:1.62;
  display:flex;
  flex-direction:column;
}
.screen-topline {
  display:flex;
  justify-content:space-between;
  gap:12px;
  padding:13px 18px;
  background:#fff;
  font-size:7px;
  letter-spacing:.4px;
}
.screen-topline>span:first-child {
  font-weight:700;
}
.screen-content {
  padding:22px 26px;
  flex:1;
  display:flex;
  flex-direction:column;
  background:radial-gradient(ellipse at 95% 20%,#c7e7a8,transparent 60%);
}
.screen-tag {
  font-size:7px;
  color:var(--green-dark);
  margin-bottom:13px;
}
.screen-content h3 {
  font-size:26px;
  letter-spacing:-1px;
}
.screen-content>p {
  font-size:8px;
  max-width:275px;
  margin-top:12px;
}
.screen-bottom {
  display:flex;
  justify-content:space-between;
  border-top:1px solid #234e2422;
  padding-top:10px;
  margin-top:auto;
  font-size:6px;
  color:#496840;
}
.screen-bottom>span:last-child {
  font-size:14px;
}
.stage-caption {
  position:absolute;
  bottom:5%;
  width:100%;
  text-align:center;
  font-size:9px;
  color:white;
}
.hardware {
  background:#e9f2e9;
}
.hardware .section-heading {
  max-width:760px;
}
.hardware .section-heading>p:not(.eyebrow) {
  max-width:680px;
}
.hardware-layout {
  gap:65px;
}
.player-visual {
  position:relative;
}
.player-visual img {
  width:100%;
}
.player-brand {
  position:absolute;
  top:39%;
  left:47%;
  transform:translate(-50%,-50%) rotate(-19deg) skewX(27deg);
  background:#323431;
  color:#c2f6d7;
  padding:5px 13px;
  font-weight:700;
  font-size:12px;
}
.hardware-caption {
  display:block;
  text-align:center;
  font-size:8px;
  letter-spacing:2px;
  color:#718b72;
  margin-top:15px;
}
.hardware .section-copy h2 {
  font-size:36px;
}
.text-link {
  font-size:12px;
  font-weight:700;
  color:var(--green-dark);
  display:inline-flex;
  gap:30px;
  border-bottom:1px solid #a9c8ac;
  padding-bottom:8px;
}
.quick-start {
  margin-block:80px;
  padding:50px 65px;
  background:linear-gradient(115deg,#ecf7e8,#e1f1dd,#f1f2dc);
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:45px;
}
.quick-start .eyebrow {
  font-size:9px;
}
.quick-start h3 {
  font-size:29px;
}
.quick-start p:not(.eyebrow) {
  font-size:12px;
  margin:16px 0 23px;
}
.quick-start li {
  font-size:12px;
  margin:23px 0;
}
.pricing {
  background:#f7f8f6;
}
.pricing-meta {
  display:flex;
  justify-content:space-between;
  font-size:10px;
  margin-bottom:18px;
  color:var(--muted);
}
.pricing-meta>span:first-child {
  background:#e7f1e8;
  color:var(--green-dark);
  border-radius:4px;
  padding:3px 9px;
}
.pricing-grid {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.plan {
  position:relative;
  background:white;
  border:1px solid #e4e9e3;
  padding:30px 24px;
  border-radius:8px;
}
.plan.featured {
  border:1px solid var(--green);
}
.plan-badge {
  position:absolute;
  top:-11px;
  left:20px;
  padding:3px 12px;
  background:var(--green);
  font-size:8px;
  font-weight:700;
  border-radius:4px;
  letter-spacing:.5px;
}
.plan.enterprise {
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.plan h3 {
  font-size:23px;
}
.plan-description {
  font-size:11px;
  line-height:1.7;
  min-height:42px;
  margin-top:14px;
}
.enterprise .plan-description,.enterprise .price-note {
  color:#b8c8be;
}
.price {
  font-size:48px;
  color:inherit;
  line-height:1.2;
  font-weight:700;
  letter-spacing:-2px;
  margin:26px 0 7px;
}
.price>span {
  font-size:26px;
  vertical-align:top;
  line-height:1.6;
  letter-spacing:0;
}
.price small {
  font-size:10px;
  letter-spacing:0;
  font-weight:400;
  color:var(--muted);
  margin-left:8px;
}
.enterprise .price small {
  color:#b8c8be;
}
.price-note {
  font-size:10px;
  margin-bottom:24px;
}
.plan>.button {
  width:100%;
  font-size:10px;
  padding-inline:10px;
  gap:10px;
}
.plan.featured>.button {
  background:var(--green);
  border-color:var(--green);
}
.plan-divider {
  height:1px;
  background:#e4e9e3;
  margin:25px 0;
}
.enterprise .plan-divider {
  background:#ffffff25;
}
.features-label {
  font-weight:700;
  font-size:10px;
  color:inherit;
}
.plan .check-list {
  margin:15px 0 0;
}
.plan .check-list li {
  font-size:10px;
  line-height:1.6;
}
.enterprise .check-list li:before {
  color:#8ce4b8;
}
.pricing-note {
  font-size:10px;
  text-align:center;
  margin:22px 0 35px;
}
.enterprise-banner {
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:35px 40px;
  border-radius:8px;
  background:#123b2d;
  color:white;
}
.enterprise-banner .eyebrow {
  color:#8ee4b8;
  margin-bottom:10px;
  font-size:9px;
}
.enterprise-banner h3 {
  font-size:23px;
}
.enterprise-banner p:not(.eyebrow) {
  font-size:11px;
  color:#bdcfc4;
  margin-top:10px;
}
.showcase .section-heading h2 span {
  color:var(--green-dark);
}
.display-gallery {
  display:grid;
  grid-template-columns:.85fr 1.5fr .9fr;
  align-items:center;
  gap:25px;
  max-width:1050px;
  margin:75px auto 0;
}
.gallery-display {
  border:7px solid #242a25;
  box-shadow:4px 10px 20px #18291e15;
  padding:23px;
  position:relative;
  overflow:hidden;
}
.gallery-display>span {
  font-size:7px;
  letter-spacing:1.1px;
}
.gallery-display h3 {
  margin-top:25px;
  line-height:1.08;
  font-size:36px;
}
.gallery-display p {
  font-size:8px;
  line-height:1.7;
}
.portrait {
  background:#d9dfb6;
  aspect-ratio:.6;
  display:flex;
  flex-direction:column;
}
.portrait h3 {
  font-size:40px;
  z-index:1;
}
.portrait p {
  margin-top:auto;
  color:#384b2f;
  z-index:1;
}
.gallery-orbit {
  position:absolute;
  width:180px;
  height:180px;
  border:40px solid #879653;
  border-radius:50%;
  top:43%;
  left:25%;
  opacity:.5;
}
.gallery-middle {
  display:grid;
  gap:22px;
}
.cafe {
  background:#e8c9a3;
  min-height:235px;
}
.cafe h3 {
  font-size:32px;
}
.cafe p {
  margin-top:14px;
  color:#795c3e;
}
.cafe b {
  display:block;
  font-size:7px;
  margin-top:22px;
  border-top:1px solid #85664133;
  padding-top:10px;
  letter-spacing:1px;
}
.welcome {
  background:#133c2c;
  color:#e3f3ba;
  min-height:180px;
}
.welcome h3 {
  font-size:29px;
  margin-top:18px;
}
.welcome p {
  color:#b9d3b7;
  margin-top:16px;
}
.events {
  background:#dde8f0;
  aspect-ratio:.62;
  display:flex;
  flex-direction:column;
}
.events h3 {
  font-size:35px;
  margin-bottom:20px;
}
.events>div {
  border-top:1px solid #293d4b33;
  display:grid;
  gap:3px;
  padding:13px 0;
}
.events small {
  font-size:7px;
  color:#5b6d79;
}
.events b {
  font-size:9px;
}
.events p {
  font-size:7px;
  margin-top:auto;
}
.faq {
  background:#fafbf9;
}
.faq-inner {
  max-width:820px;
}
.faq .section-heading {
  margin-bottom:45px;
}
.faq details {
  border-bottom:1px solid var(--border);
}
.faq summary {
  padding:25px 0;
  list-style:none;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
  cursor:pointer;
  font-size:13px;
  font-weight:600;
}
.faq summary::-webkit-details-marker {
  display:none;
}
.faq summary>span {
  font-size:25px;
  line-height:1;
  color:var(--green-dark);
  font-weight:400;
  transition:transform .2s;
}
.faq details[open] summary>span {
  transform:rotate(45deg);
}
.faq details>p {
  font-size:13px;
  padding:0 40px 25px 0;
  line-height:1.9;
}
.contact-section {
  padding-block:90px;
}
.contact-card {
  padding:65px;
  position:relative;
  border-radius:12px;
  background:linear-gradient(115deg,#edf6df,#d8eddf 60%,#d0e8cb);
  overflow:hidden;
}
.contact-card>p {
  max-width:520px;
  margin-block:22px 28px;
  font-size:13px;
  position:relative;
  z-index:1;
}
.contact-card>.eyebrow {
  font-size:10px;
  margin:0 0 18px;
}
.contact-card h2,.contact-card a {
  position:relative;
  z-index:1;
}
.contact-card h2 span {
  color:var(--green-dark);
}
.contact-decoration {
  position:absolute;
  right:-18px;
  bottom:-135px;
  font-size:440px;
  line-height:1.4;
  font-weight:700;
  letter-spacing:-50px;
  color:#fff6;
  pointer-events:none;
}
.footer-top {
  display:flex;
  justify-content:space-between;
  gap:50px;
}
.footer-top>div>p {
  font-size:11px;
  margin-top:16px;
}
.footer-links {
  display:flex;
  gap:80px;
}
.footer-links h2 {
  font-size:11px;
  letter-spacing:0;
  margin-bottom:17px;
}
.footer-links>div {
  display:flex;
  flex-direction:column;
  gap:9px;
}
.footer-links a,.footer-links span {
  font-size:10px;
  color:var(--muted);
}
.footer-links a:hover {
  color:var(--green-dark);
}
.footer-wordmark {
  font-size:clamp(60px,14.8vw,204px);
  font-weight:700;
  letter-spacing:-.075em;
  line-height:1.3;
  margin:55px 0 25px;
  white-space:nowrap;
}
.footer-wordmark>span {
  color:var(--green);
}
.footer-bottom {
  border-top:1px solid var(--border);
  padding:22px 0 35px;
  font-size:9px;
  color:var(--muted);
  display:flex;
  justify-content:space-between;
  gap:20px;
}
@media(min-width:1600px) {
  .hero {
    padding-top:115px;
  }
  .hero-copy {
    padding-bottom:110px;
  }
  .hero-visual {
    width:115%;
    margin-left:-15px;
  }
  .section-pad {
    padding-block:125px;
  }
}
@media(max-width:1100px) {
  .nav-shell nav {
    gap:18px;
  }
  .nav-shell nav>.button {
    margin-left:0;
  }
  .hero h1 {
    font-size:43px;
  }
  .hero .eyebrow {
    font-size:8px;
  }
  .hero .intro {
    font-size:14px;
  }
  .button {
    padding:14px 18px;
    font-size:11px;
  }
  .hero-visual {
    width:108%;
    margin-left:-10px;
  }
  .split {
    gap:35px;
  }
  .platform .section-copy h2 {
    font-size:35px;
  }
  .network-visual {
    width:130%;
    margin-left:-23%;
  }
  .comparison {
    padding:30px 25px 0;
  }
  .industry-layout {
    grid-template-columns:220px 1fr;
    gap:25px;
  }
  .industry-screen {
    width:86%;
    left:7%;
    top:12%;
  }
  .screen-content {
    padding:16px;
  }
  .screen-content h3 {
    font-size:23px;
  }
  .screen-topline {
    padding:10px;
  }
  .screen-content>p {
    font-size:7px;
  }
  .screen-tag {
    margin-bottom:9px;
  }
  .hardware .section-copy h2 {
    font-size:31px;
  }
  .plan {
    padding:27px 18px;
  }
  .pricing-grid {
    gap:12px;
  }
  .plan .check-list li {
    font-size:9px;
  }
  .display-gallery {
    gap:17px;
  }
  .gallery-display {
    padding:16px;
  }
  .gallery-display h3 {
    font-size:29px;
  }
  .footer-links {
    gap:45px;
  }
}
@media(max-width:850px) {
  .container {
    width:calc(100% - 48px);
  }
  .nav-shell {
    width:calc(100% - 48px);
    min-height:76px;
  }
  .menu-toggle {
    display:flex;
    align-items:center;
    gap:15px;
    border:1px solid var(--border);
    background:white;
    border-radius:5px;
    padding:9px 13px;
    font-size:12px;
    min-height:44px;
  }
  .nav-shell nav {
    display:none;
    position:absolute;
    top:76px;
    left:0;
    width:100%;
    background:white;
    padding:20px 24px 28px;
    border-bottom:1px solid var(--border);
    box-shadow:0 15px 20px #00000008;
    align-items:stretch;
    gap:0;
  }
  .nav-shell nav.is-open {
    display:flex;
    flex-direction:column;
  }
  .nav-shell nav>a {
    padding:14px 10px;
  }
  .nav-shell nav>.button {
    margin-top:10px;
  }
  .hero {
    padding-top:55px;
    gap:10px;
  }
  .hero h1 {
    font-size:36px;
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:.5px;
  }
  .hero-copy {
    padding-bottom:45px;
  }
  .hero .button-row {
    gap:10px;
  }
  .hero .button {
    font-size:10px;
    padding:12px;
  }
  .hero-note {
    font-size:8px;
  }
  .hero-bottom div {
    gap:12px;
    font-size:8px;
  }
  .section-pad {
    padding-block:75px;
  }
  .section-copy p:not(.eyebrow) {
    font-size:13px;
  }
  .platform .section-copy h2 {
    font-size:30px;
  }
  .comparison {
    padding-inline:22px;
  }
  .comparison h3 {
    font-size:23px;
  }
  .comparison .check-list li {
    font-size:10px;
  }
  .mini-dashboard {
    margin-top:35px;
  }
  .dashboard-sidebar {
    display:none;
  }
  .note {
    padding:15px;
    width:92%;
  }
  .note b {
    font-size:10px;
  }
  .industry-layout {
    grid-template-columns:1fr;
  }
  .industry-selector {
    flex-direction:row;
    overflow-x:auto;
    padding-bottom:10px;
    gap:7px;
  }
  .industry-button {
    white-space:nowrap;
    gap:15px;
    font-size:11px;
    background:#e9eee7;
  }
  .industry-button span {
    display:none;
  }
  .industry-stage {
    max-width:720px;
    width:100%;
    margin:auto;
  }
  .industry-screen {
    width:76%;
    left:12%;
    top:14%;
  }
  .screen-content {
    padding:25px;
  }
  .screen-content h3 {
    font-size:32px;
  }
  .screen-topline {
    padding:14px;
    font-size:9px;
  }
  .screen-content>p {
    font-size:10px;
  }
  .screen-tag {
    font-size:9px;
  }
  .screen-bottom {
    font-size:8px;
  }
  .hardware-layout {
    gap:25px;
  }
  .hardware .section-copy h2 {
    font-size:28px;
  }
  .player-brand {
    font-size:9px;
    padding:3px 8px;
  }
  .quick-start {
    padding:35px;
    gap:30px;
  }
  .quick-start h3 {
    font-size:24px;
  }
  .quick-start .check-list li {
    font-size:10px;
  }
  .pricing-grid {
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }
  .plan .check-list li {
    font-size:12px;
  }
  .plan-description {
    min-height:0;
  }
  .plan>.button {
    font-size:12px;
  }
  .plan {
    padding:30px;
  }
  .enterprise-banner {
    padding:30px;
  }
  .display-gallery {
    gap:12px;
  }
  .gallery-display {
    border-width:5px;
    padding:14px;
  }
  .gallery-display h3 {
    font-size:26px;
  }
  .gallery-display>span {
    font-size:6px;
  }
  .portrait {
    aspect-ratio:.52;
  }
  .events {
    aspect-ratio:.53;
  }
  .events h3 {
    font-size:24px;
  }
  .events b {
    font-size:7px;
  }
  .contact-card {
    padding:45px;
  }
  .contact-decoration {
    opacity:.5;
  }
  .footer-links {
    gap:30px;
  }
}
@media(max-width:600px) {
  html {
    scroll-padding-top:90px;
  }
  .container {
    width:calc(100% - 40px);
  }
  .nav-shell {
    width:calc(100% - 40px);
  }
  .wordmark {
    font-size:23px;
  }
  .hero {
    display:flex;
    flex-direction:column;
    padding-top:38px;
    gap:0;
    overflow:hidden;
  }
  .hero-copy {
    padding:0;
    width:100%;
  }
  .hero .eyebrow {
    font-size:8px;
    letter-spacing:.7px;
    margin-bottom:19px;
  }
  .hero h1 {
    font-size:39px;
    letter-spacing:-1.5px;
    max-width:450px;
  }
  .hero .intro {
    font-size:13px;
    margin:22px 0 25px;
  }
  .hero .button {
    font-size:10px;
    gap:12px;
    padding:14px;
  }
  .hero-note {
    font-size:9px;
    margin-top:18px;
  }
  .hero-visual {
    width:110%;
    margin:-15px 0 -35px;
    max-width:470px;
    flex-shrink:0;
  }
  .hero-bottom {
    width:100%;
    padding:18px 0 23px;
    font-size:9px;
  }
  .hero-bottom div {
    display:none;
  }
  .hero-bottom>a {
    padding-inline:15px;
  }
  .section-pad {
    padding-block:65px;
  }
  .split {
    grid-template-columns:1fr;
    gap:35px;
  }
  .platform .split {
    display:flex;
    flex-direction:column-reverse;
  }
  .platform .section-copy h2 {
    font-size:35px;
  }
  .platform .section-copy {
    width:100%;
  }
  .network-visual {
    width:125%;
    margin:-10px -12.5% -15px;
  }
  .network-brand {
    font-size:13px;
  }
  .eyebrow {
    font-size:9px;
    letter-spacing:1.4px;
  }
  .section-heading {
    margin-bottom:35px;
  }
  .section-heading h2 {
    font-size:31px;
  }
  .section-heading>p:not(.eyebrow) {
    font-size:13px;
    margin-top:18px;
  }
  .comparison-grid {
    grid-template-columns:1fr;
    gap:20px;
  }
  .comparison {
    padding:30px 25px 0;
  }
  .comparison .check-list li {
    font-size:11px;
  }
  .messy-notes {
    height:210px;
  }
  .note-three {
    top:145px;
  }
  .mini-dashboard {
    margin-top:30px;
    min-height:230px;
  }
  .dashboard-sidebar {
    display:block;
  }
  .dashboard-content {
    padding:15px;
  }
  .mini-screens>div>div {
    font-size:16px;
  }
  .industry-selector {
    margin-inline:-20px;
    padding-inline:20px;
  }
  .industry-stage {
    aspect-ratio:1.18;
  }
  .industry-screen {
    width:88%;
    left:6%;
    top:13%;
    border-width:6px;
    aspect-ratio:1.45;
  }
  .screen-topline {
    font-size:6px;
    padding:9px 10px;
  }
  .screen-content {
    padding:15px;
  }
  .screen-content h3 {
    font-size:23px;
    letter-spacing:-.7px;
  }
  .screen-tag {
    font-size:6px;
    margin-bottom:10px;
  }
  .screen-content>p {
    font-size:7px;
    line-height:1.6;
    margin-top:10px;
  }
  .screen-bottom {
    font-size:5px;
    margin-top:12px;
    padding-top:7px;
  }
  .screen-bottom>span:last-child {
    font-size:10px;
  }
  .stage-caption {
    font-size:7px;
    bottom:5%;
  }
  .hardware-layout {
    gap:30px;
  }
  .hardware .section-heading {
    margin-bottom:20px;
  }
  .player-visual {
    max-width:430px;
    margin:auto;
  }
  .player-brand {
    font-size:12px;
    padding:5px 12px;
  }
  .hardware .section-copy h2 {
    font-size:32px;
  }
  .quick-start {
    margin-block:50px;
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
    gap:8px;
  }
  .quick-start .eyebrow {
    font-size:8px;
  }
  .quick-start h3 {
    font-size:26px;
  }
  .quick-start .check-list {
    margin-bottom:0;
  }
  .quick-start .check-list li {
    font-size:11px;
  }
  .pricing-grid {
    grid-template-columns:1fr;
    gap:25px;
  }
  .plan {
    padding:30px;
  }
  .plan-description {
    font-size:12px;
  }
  .plan .check-list li {
    font-size:12px;
  }
  .plan h3 {
    font-size:26px;
  }
  .plan>.button {
    font-size:12px;
  }
  .pricing-meta {
    font-size:8px;
  }
  .price {
    margin-top:20px;
  }
  .enterprise-banner {
    flex-direction:column;
    align-items:flex-start;
    padding:30px;
  }
  .enterprise-banner h3 {
    font-size:26px;
  }
  .enterprise-banner p:not(.eyebrow) {
    font-size:12px;
  }
  .pricing-note {
    font-size:9px;
  }
  .display-gallery {
    margin-top:45px;
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
  .gallery-middle {
    display:contents;
  }
  .gallery-display {
    min-height:0;
    aspect-ratio:auto;
    height:240px;
    padding:17px;
  }
  .gallery-display h3 {
    font-size:27px;
  }
  .gallery-display>span {
    font-size:5px;
  }
  .gallery-display p {
    font-size:6px;
  }
  .portrait {
    height:285px;
  }
  .welcome {
    height:245px;
  }
  .events {
    margin-top:-40px;
    height:285px;
  }
  .events h3 {
    font-size:28px;
  }
  .events>div {
    padding:9px 0;
  }
  .events b {
    font-size:7px;
  }
  .gallery-orbit {
    width:135px;
    height:135px;
    border-width:30px;
    top:40%;
    left:25%;
  }
  .cafe h3 {
    font-size:25px;
  }
  .cafe b {
    font-size:5px;
  }
  .faq summary {
    font-size:12px;
    padding-block:22px;
  }
  .faq details>p {
    font-size:12px;
    padding-right:15px;
  }
  .contact-section {
    padding-block:50px;
  }
  .contact-card {
    padding:35px 26px;
  }
  .contact-card h2 {
    font-size:29px;
  }
  .contact-card>p {
    font-size:12px;
  }
  .contact-decoration {
    font-size:260px;
    right:-20px;
    bottom:-85px;
    letter-spacing:-25px;
  }
  .footer-top {
    flex-direction:column;
    gap:35px;
  }
  .footer-links {
    justify-content:space-between;
    gap:15px;
  }
  .footer-links a,.footer-links span {
    font-size:9px;
  }
  .footer-wordmark {
    font-size:15vw;
    margin:40px 0 22px;
  }
  .footer-bottom {
    flex-wrap:wrap;
    gap:10px;
    font-size:8px;
  }
  .footer-bottom>span:nth-child(2) {
    display:none;
  }
  .footer-bottom>span:last-child {
    margin-left:auto;
  }
}
@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }
  *,*:before,*:after {
    transition:none!important;
  }
}
#industry-title {
  white-space:pre-line;
}
.dashboard-content {
  min-width:0;
}
.mini-screens {
  min-width:0;
}
.mini-screens>div {
  min-width:0;
}
@media(max-width:360px) {
  .dashboard-sidebar {
    display:none;
  }
  .comparison {
    padding-inline:20px;
  }
  .mini-screens>div>div {
    font-size:14px;
  }
  .mini-screens {
    gap:8px;
  }
  .hero h1 {
    font-size:35px;
  }
  .hero .button {
    padding:12px 10px;
    font-size:9px;
    gap:8px;
  }
  .screen-content h3 {
    font-size:20px;
  }
  .screen-content {
    padding:11px;
  }
  .screen-tag {
    margin-bottom:6px;
  }
  .screen-content>p {
    font-size:6px;
  }
  .screen-bottom {
    margin-top:8px;
  }
  .gallery-display {
    padding:11px;
  }
  .gallery-display h3 {
    font-size:22px;
  }
  .events h3 {
    font-size:24px;
  }
}
.player-brand {
  left:58.7%;
  top:calc(36.8% - 10px);
  width:23%;
  height:8%;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#525452;
  transform:translate(-50%,-50%) rotate(-16deg) skewX(27deg);
}
@media(max-width:600px) {
  .mini-screens>div>div {
    font-size:12px;
  }
}

/* Product details, with the original palette and section sequence retained. */
.nav-shell nav { gap:22px; }
.nav-shell nav .login-button { margin-left:0; }
.workflow-strip { list-style:none; padding:0; margin:28px 0; display:grid; grid-template-columns:1fr 1fr; gap:14px 20px; }
.workflow-strip li { font-size:11px; color:#deeee5; }
.workflow-strip b { display:inline-block; color:#91eab9; margin-right:9px; font-size:10px; }
.illustration-note { text-align:center; font-size:10px; margin-top:22px; }
.hardware-options { display:grid; grid-template-columns:1fr 1fr; gap:18px; align-items:start; }
.hardware-device { margin:0; padding:20px 16px; background:#fff; border:1px solid #dce5df; border-radius:12px; }
.hardware-device img { width:100%; height:180px; object-fit:contain; }
.hardware-device figcaption { margin-top:22px; }
.hardware-device b { display:block; font-size:15px; }
.hardware-device figcaption span { display:block; color:var(--muted); font-size:10px; line-height:1.7; margin-top:7px; }
.hardware-options .hardware-caption { grid-column:1/-1; line-height:1.8; }
.hardware .section-copy .hardware-note { font-size:11px; }
.image-credits { font-size:9px; color:var(--muted); margin-top:35px; }
.image-credits summary { cursor:pointer; width:fit-content; }
.image-credits p { margin-top:10px; max-width:750px; }
.image-credits a { text-decoration:underline; }
.pricing-grid { grid-template-columns:repeat(3,minmax(0,1fr)); gap:22px; }
.plan h3 { font-size:23px; }
.price { font-size:42px; }
.price small { display:inline-block; font-size:10px; }
.plan-charges { min-height:42px; font-size:10px; margin-bottom:22px; }
.enterprise .plan-charges { color:#b8c8be; }
.enterprise-banner>div { max-width:720px; }
.enterprise-banner>.button { flex-shrink:0; }
#action-dialog { width:min(520px,calc(100% - 40px)); border:1px solid var(--border); border-radius:12px; padding:40px; color:var(--ink); font:inherit; box-shadow:0 25px 90px #102d2130; }
#action-dialog::backdrop { background:#102d2199; backdrop-filter:blur(5px); }
#action-dialog h2 { font-size:30px; margin-bottom:22px; }
#action-dialog p:not(.eyebrow) { font-size:13px; margin-bottom:22px; }
#action-dialog .dialog-detail { padding:15px; background:var(--mint); border-radius:6px; font-size:11px; }
.dialog-close { position:absolute; right:12px; top:8px; width:40px; height:40px; border:0; border-radius:5px; background:transparent; color:var(--muted); font-size:26px; }
.dialog-close:hover { background:var(--mint); }
@media (max-width:1100px) {
  .nav-shell nav { gap:12px; }
  .nav-shell { gap:20px; }
  .nav-shell nav>.button { padding-inline:12px; }
  .hardware-options { gap:10px; }
  .hardware-device { padding:14px; }
  .hardware-device img { height:145px; }
  .price { font-size:36px; }
}
@media (max-width:950px) and (min-width:851px) {
  .nav-shell { width:calc(100% - 40px); }
  .nav-shell nav { font-size:10px; gap:10px; }
  .nav-shell .wordmark { font-size:22px; }
  .nav-shell nav>.button { font-size:9px; gap:8px; }
}
@media (max-width:850px) {
  .nav-shell nav { gap:0; }
  .nav-shell nav .login-button { margin-top:10px; }
  .hardware-options { grid-template-columns:1fr; }
  .hardware-device img { height:140px; }
  .hardware-device figcaption { margin-top:10px; }
  .pricing-grid { grid-template-columns:1fr; gap:25px; max-width:550px; margin-inline:auto; }
  .price { font-size:44px; }
  .plan-charges { min-height:0; }
  .enterprise-banner { flex-direction:column; align-items:flex-start; }
}
@media (max-width:600px) {
  .hardware-options { grid-template-columns:1fr 1fr; }
  .hardware-device { padding:12px; }
  .hardware-device img { height:120px; }
  .hardware-device b { font-size:13px; }
  .hardware-device figcaption span { font-size:9px; }
  .workflow-strip li { font-size:10px; }
  .illustration-note { font-size:9px; }
  #action-dialog { padding:32px 24px; }
}

/* Keep the complete four-tile illustration visible in its existing column. */
.network-visual.network-visual-cast { width:120%; margin-left:-12%; }
@media (max-width:600px) {
  .network-visual.network-visual-cast { width:100%; margin:0; }
}

/* Generated GlücksCast campaign collage, shown in full without cropping. */
.showcase-artwork { margin:60px auto 0; width:100%; }
.showcase-artwork img { display:block; width:100%; height:auto; border-radius:10px; }
@media (max-width:600px) { .showcase-artwork { margin-top:35px; } }

/* Retail image contains its own advertisement and branding. Keep it uncropped. */
.industry-stage.industry-stage-photo { aspect-ratio:3/2; background:#f6f8f5; }
.industry-stage-photo>img { position:relative; height:auto; object-fit:contain; filter:none; z-index:0; }
.industry-stage-photo .industry-screen, .industry-stage-photo .stage-caption { display:none; }

/* The industry stage rotates on its own and cross-fades between photos: the
   outgoing shot stays on top as a ghost layer and dissolves away. */
.industry-stage>img.stage-ghost { position:absolute; inset:0; width:100%; height:100%; object-fit:contain; z-index:1; opacity:1; pointer-events:none; transition:opacity .7s ease; }
.industry-button { transition:background-color .35s ease, color .35s ease; }
.industry-button span { transition:opacity .35s ease; }

/* Shared casting signature replaces the dot in the live wordmarks. */
.brand-cast { display:inline-block; width:.66em; height:.66em; max-width:none; margin-left:.12em; vertical-align:baseline; }
.wordmark .brand-cast { width:17px; height:17px; }
.dashboard-top b .brand-cast { width:9px; height:9px; }
.footer-wordmark .brand-cast { width:.53em; height:.53em; margin-left:.08em; }
@media (max-width:600px) { .footer-wordmark { font-size:14vw; } }
