/* Kapsiva Atelier: richer material, restrained motion, accessible interaction. */
:root {
  --petrol: #153e3e;
  --petrol-light: #276363;
  --coral: #ce6245;
  --apricot: #efb18f;
  --sage: #dce8d7;
  --butter: #f1e8cd;
  --accent: #b84c32;
}
html {
  scroll-padding-top: 116px;
}
body {
  background:
    radial-gradient(ellipse at 0 12%, #dfe8de66, transparent 28%),
    radial-gradient(ellipse at 100% 43%, #f2d9cb55, transparent 25%), #f8f7f3;
}
.app-shell {
  width: min(1360px, calc(100% - 80px));
}
.topbar {
  position: sticky;
  top: 12px;
  z-index: 30;
  height: 76px;
  margin-top: 14px;
  padding: 0 23px;
  border: 1px solid #d8dfd1b3;
  border-radius: 15px;
  background: #fafaf4ed;
  backdrop-filter: blur(18px);
  box-shadow: 0 6px 25px #173c2e05;
  transition:
    box-shadow 250ms,
    background 250ms;
  gap: 20px;
}
.topbar.is-scrolled {
  box-shadow: 0 12px 34px #153e3e14;
  background: #fafaf4f5;
}
.brand-mark {
  background: #f0dfd2;
  border-radius: 8px;
  width: 36px;
  height: 38px;
}
.brand-mark svg {
  width: 26px;
  height: 26px;
}
.main-nav {
  gap: 28px;
  margin-left: auto;
}
.main-nav a::before {
  content: "";
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms;
}
.main-nav a:hover::before {
  transform: scaleX(1);
}
.header-cta {
  background: var(--petrol);
  color: #fff9ed;
  border-color: var(--petrol);
  box-shadow: 0 5px 14px #153e3e14;
  border-radius: 9px;
}
.header-cta:hover {
  background: #286363;
  box-shadow: 0 8px 24px #153e3e25;
}
.motion-toggle {
  background: transparent;
  border: 1px solid #dce0d5;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  min-height: 40px;
  font-size: 10px;
  color: #526357;
}
.motion-toggle > span:first-child {
  font-size: 15px;
  width: 14px;
}
.motion-toggle:hover {
  background: #e5ecde;
}
.skip-link {
  z-index: 50;
}
.hero-copy {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 30px;
  padding: 46px 0 40px;
  isolation: isolate;
}
.hero-copy::before {
  content: "";
  position: absolute;
  inset: 0 -15px;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(ellipse at 17% 75%, #eac4a736, transparent 48%),
    radial-gradient(ellipse at 55% 0%, #c9e0cd35, transparent 50%);
}
.hero-main {
  padding: 15px 12px 15px 20px;
  min-width: 0;
}
.hero-main > .eyebrow {
  font-size: 9px;
  letter-spacing: 1.2px;
  padding: 10px 13px;
  border: 1px solid #ceddcb;
  background: #eaf0e4;
  border-radius: 30px;
  width: fit-content;
  color: #42634f;
}
.hero-copy h1 {
  font-size: clamp(57px, 5.6vw, 83px);
  line-height: 1.04;
  letter-spacing: -3.8px;
  margin-top: 28px;
}
.hero-copy h1 em {
  background: linear-gradient(115deg, #99412e, #d9784e 55%, #b54d36);
  color: #b84c32;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-star {
  font-size: 41px;
  margin-left: 16px;
  margin-top: 7px;
  animation: atelier-star 22s linear infinite;
}
.hero-aside {
  display: block;
  max-width: 470px;
  justify-self: auto;
  margin: 26px 0 0;
  padding: 0;
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: -0.25px;
  margin-bottom: 12px;
  max-width: 430px;
}
.hero-detail {
  font-size: 12px;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #667265;
}
.hero-aside > .hero-link {
  background: var(--petrol);
  color: #f9f6e9;
  padding: 17px 22px;
  gap: 32px;
  border: 1px solid var(--petrol);
  border-radius: 9px;
  box-shadow: 0 7px 20px #153e3e17;
}
.hero-aside > .hero-link:hover {
  background: #275b54;
}
.hero-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  padding: 18px 0 18px 15px;
  color: #657261;
}
.hero-secondary:hover {
  color: var(--accent);
}
.hero-assurances {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 25px;
  color: #6b7669;
  font-size: 9px;
}
.hero-assurances span::before {
  content: "✓";
  margin-right: 6px;
  color: #54856b;
}
.hero-art {
  min-width: 0;
  height: 578px;
  position: relative;
  border-radius: 22px;
  background: #092325;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 24px 65px #183b3425,
    inset 0 0 0 1px #fff2;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition:
    transform 350ms ease-out,
    box-shadow 350ms;
}
.intelligence-image {
  position: absolute;
  inset: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  opacity: 0.94;
  transform: scale(1.02);
  animation: art-breathe 12s ease-in-out infinite;
}
.art-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(#b5dfcf06 1px, transparent 1px),
    linear-gradient(90deg, #b5dfcf06 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(#000, transparent 80%);
  pointer-events: none;
}
.art-caption {
  position: absolute;
  top: 29px;
  left: 28px;
  right: 28px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.6px;
  color: #cad9cd;
}
.signal-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #a6c59d;
  box-shadow: 0 0 0 4px #a6c59d18;
  animation: signal-pulse 3s ease-in-out infinite;
}
.art-orbit {
  position: absolute;
  inset: 95px 45px;
  border: 1px solid #d8dcc314;
  border-radius: 50%;
  pointer-events: none;
  animation: atelier-star 30s linear infinite;
}
.art-orbit::after {
  content: "";
  height: 5px;
  width: 5px;
  background: #e7c7a5;
  border-radius: 50%;
  position: absolute;
  top: 19%;
  left: 9%;
  box-shadow: 0 0 15px #f2d3a4;
}
.orbit-b {
  inset: 60px 75px;
  transform: rotate(35deg);
  animation-direction: reverse;
  animation-duration: 39s;
  border-style: dashed;
  opacity: 0.5;
}
.hero-glass {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 12px;
  align-items: center;
  background: #edf5e915;
  border: 1px solid #f9f1db30;
  color: #fff7e7;
  padding: 16px 18px;
  border-radius: 12px;
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 32px #0002;
}
.glass-question {
  top: 100px;
  left: 22px;
  right: 58px;
  animation: glass-drift 7s ease-in-out infinite;
}
.glass-action {
  bottom: 100px;
  right: 22px;
  left: 70px;
  background: #f7efe5ed;
  color: #204941;
  border-color: #fff8;
  animation: glass-drift 8s ease-in-out infinite reverse;
}
.glass-symbol {
  height: 33px;
  width: 33px;
  border-radius: 9px;
  background: #ffffff13;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex-shrink: 0;
}
.glass-action .glass-symbol {
  background: #dbe8d8;
}
.hero-glass small,
.hero-glass strong {
  display: block;
}
.hero-glass small {
  font-size: 7px;
  letter-spacing: 1.4px;
  margin-bottom: 7px;
  opacity: 0.75;
}
.hero-glass strong {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.5;
}
.mini-wave {
  display: flex;
  height: 24px;
  align-items: center;
  gap: 3px;
  margin-left: auto;
}
.mini-wave i {
  display: block;
  height: 7px;
  width: 2px;
  background: #e9c29e;
  border-radius: 3px;
  animation: mini-wave 900ms ease-in-out infinite alternate;
}
.mini-wave i:nth-child(2) {
  animation-delay: -200ms;
}
.mini-wave i:nth-child(3) {
  animation-delay: -500ms;
}
.mini-wave i:nth-child(4) {
  animation-delay: -350ms;
}
.glass-check {
  margin-left: auto;
  border: 1px solid #b9cdb5;
  height: 24px;
  width: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #537c58;
}
.art-bottom {
  position: absolute;
  bottom: 26px;
  left: 28px;
  right: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #b8c9bd;
  font-size: 8px;
  letter-spacing: 1.7px;
}
.art-bottom i {
  font-style: normal;
  color: #d5a482;
  margin: 0 8px;
}
.art-bottom a {
  display: grid;
  place-items: center;
  border: 1px solid #9daea33d;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  font-size: 20px;
  transition:
    background 220ms,
    transform 220ms;
}
.art-bottom a:hover {
  background: #daae8233;
  transform: rotate(45deg);
}
[data-spotlight] {
  --spot-x: 50%;
  --spot-y: 50%;
}
.hero-art::after,
.setup-grid li::after,
.connection-column article::after,
.closing-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    350px circle at var(--spot-x) var(--spot-y),
    #e6b48124,
    transparent 70%
  );
  opacity: 0;
  pointer-events: none;
  border-radius: inherit;
  transition: opacity 300ms;
  z-index: 3;
}
[data-spotlight]:hover::after {
  opacity: 1;
}
.capability-strip {
  border: 0;
  padding: 0;
  gap: 16px;
  margin: 0 0 30px;
}
.capability-strip article,
.capability-strip article:first-child,
.capability-strip article:last-child {
  min-height: 126px;
  border: 1px solid #dbdfd2;
  border-radius: 13px;
  padding: 24px 17px;
  background: #e9efdf;
  gap: 13px;
  transition:
    transform 280ms,
    box-shadow 280ms,
    border-color 280ms;
}
.capability-strip article:nth-child(2) {
  background: #f3e5d8;
  border-color: #e8d6c6;
}
.capability-strip article:nth-child(3) {
  background: #e1ece8;
  border-color: #cddfd9;
}
.capability-strip article:nth-child(4) {
  background: #efe8d2;
  border-color: #e3d9bc;
}
.cap-icon {
  background: #ffffff80;
  color: var(--petrol);
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  flex-shrink: 0;
  transition:
    transform 300ms,
    background 300ms;
}
.capability-strip strong {
  white-space: normal;
  font-size: 12px;
  line-height: 1.6;
}
.capability-strip small {
  font-size: 10px;
  line-height: 1.6;
}
.cap-number {
  position: absolute;
  right: 12px;
  top: 9px;
  color: #69775e;
  font-size: 8px;
}
.experience {
  padding-top: 60px;
}
.experience-heading {
  padding-inline: 8px;
}
.workspace-frame {
  border-radius: 19px;
  border-color: #c9d7c6;
  box-shadow:
    0 24px 70px #2849320d,
    0 3px 8px #26392e05;
}
.workspace-bar {
  background: linear-gradient(110deg, #eef3e8, #fbf7ef);
}
.voice-panel {
  background:
    radial-gradient(ellipse at 48% 43%, #345948, transparent 65%),
    linear-gradient(135deg, #173b35, #182d2a);
}
.operations-panel {
  background: linear-gradient(160deg, #fffdf6, #edf3e9);
}
.metric-grid article {
  border-radius: 9px;
  transition:
    background 250ms,
    transform 250ms;
}
.metric-grid article:hover {
  background: #fff9e9;
  transform: translateY(-3px);
}
.try-row {
  background: #f1f1e7;
}
.prompt-chips button {
  border-radius: 8px;
  transition:
    background 250ms,
    transform 250ms,
    box-shadow 250ms;
}
.prompt-chips button:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 17px #2b492b12;
}
.transcript-panel {
  border: 1px solid #dce2d4;
  border-radius: 14px;
  background: #fafbf5;
  box-shadow: 0 8px 22px #3b492505;
}
.how-it-works {
  position: relative;
  padding: 55px;
  background: linear-gradient(110deg, #e7eddc, #f5eddb);
  border-radius: 17px;
  margin: 60px 0 80px;
  border: 1px solid #e0e3d1;
}
.how-it-works li {
  align-items: center;
  padding: 10px 0;
  transition: transform 220ms;
}
.how-it-works li > span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  background: #fffaf0;
  border: 1px solid #d9dfcb;
  border-radius: 50%;
  padding: 0;
}
.how-it-works li:hover {
  transform: translateX(5px);
}
.story-section {
  padding: 90px 0;
}
.story-heading .eyebrow {
  color: #537c68;
  padding-left: 24px;
  position: relative;
  margin-bottom: 18px;
}
.story-heading .eyebrow::before {
  content: "";
  width: 13px;
  height: 6px;
  border: 1px solid #80a189;
  border-radius: 6px;
  position: absolute;
  left: 0;
}
.centered .eyebrow {
  display: flex;
  justify-content: center;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.sector-section {
  border-top: 0;
  padding-top: 0;
}
.sector-tabs {
  gap: 14px;
  border: 0;
  margin-bottom: 34px;
}
.sector-tabs button {
  position: relative;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 0 0 16px;
  gap: 0;
  border: 1px solid #d8dfd2;
  border-radius: 13px;
  overflow: hidden;
  background: #f9faf4;
  color: #3c5146;
  box-shadow: 0 4px 13px #203d2c05;
  transition:
    transform 280ms,
    background 280ms,
    border-color 280ms,
    box-shadow 280ms;
}
.sector-thumb {
  display: block;
  width: 100%;
  height: 108px;
  object-fit: cover;
  margin-bottom: 15px;
  transition:
    transform 600ms cubic-bezier(0.2, 0.7, 0.3, 1),
    filter 500ms;
}
.sector-tabs button .sector-tab-name {
  color: inherit;
  font-size: 11px;
  padding-left: 12px;
  font-weight: 600;
}
.sector-tabs button .sector-tab-number {
  position: absolute;
  top: 9px;
  left: 9px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff7e9eb;
  color: #415140;
  font-size: 8px;
  z-index: 1;
}
.sector-tabs button .sector-tab-arrow {
  color: inherit;
  margin-left: auto;
  padding-right: 12px;
  font-size: 16px;
  transition: transform 240ms;
}
.sector-tabs button[aria-selected="true"] {
  background: var(--petrol);
  border-color: var(--petrol);
  color: #fbf4e5;
  box-shadow: 0 8px 23px #153e3e21;
}
.sector-panel {
  border: 1px solid #dce2d5;
  padding: 20px;
  gap: 45px;
  border-radius: 20px;
  background: linear-gradient(115deg, #edf2e7, #fbf8f0 65%);
  box-shadow: 0 15px 50px #29473307;
}
.sector-panel:nth-of-type(3n) {
  background: linear-gradient(115deg, #f1e0d5, #fbf8f0 65%);
}
.sector-copy {
  padding: 24px 20px 24px 0;
}
.sector-copy h3 {
  font-size: clamp(30px, 2.8vw, 42px);
}
.sector-visual {
  border-radius: 13px;
  min-height: 540px;
  transform: perspective(1200px) rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
  transition: transform 300ms;
}
.sector-visual > img,
.editorial-image img {
  transition:
    transform 850ms cubic-bezier(0.2, 0.7, 0.3, 1),
    filter 650ms;
}
.photo-label {
  border-radius: 6px;
  background: #faf6eae8;
  backdrop-filter: blur(10px);
  color: #28483a;
  box-shadow: 0 5px 18px #17302112;
}
.floating-note {
  border-radius: 10px;
  backdrop-filter: blur(15px);
  background: #fff8ecef;
  transform: translateZ(20px);
  transition:
    transform 400ms,
    box-shadow 400ms;
}
.note-symbol {
  background: #dce9d0;
  color: #33634b;
}
.graphic-visual {
  display: block;
  padding: 0;
}
.graphic-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, #12292566);
  pointer-events: none;
}
.calendar-art,
.ticket-art,
.property-art,
.brief-art {
  position: absolute;
  bottom: 23px;
  left: 23px;
  right: 23px;
  width: auto;
  max-width: none;
  z-index: 1;
  padding: 20px 23px;
  border-radius: 12px;
  background: #fff9eef0;
  backdrop-filter: blur(16px);
  transform: none;
  border: 1px solid #fff8;
  box-shadow: 0 14px 35px #14292022;
  transition:
    transform 400ms,
    box-shadow 400ms;
}
.graphic-visual h4 {
  font-size: 26px;
  margin: 10px 0 15px;
  letter-spacing: -0.7px;
}
.calendar-days {
  display: none;
}
.calendar-slots {
  margin-top: 12px;
  gap: 8px;
}
.calendar-slots span {
  padding: 9px 4px;
  background: #fff7e7;
  border-color: #d2decc;
}
.calendar-art > p {
  margin-top: 13px;
}
.ticket-art > div {
  padding: 10px 0;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.ticket-art > div:nth-of-type(2) {
  display: none;
}
.ticket-art > div strong {
  font-size: 10px;
  text-align: right;
}
.ticket-art h4 br {
  display: none;
}
.building-art {
  display: none;
}
.property-card {
  transform: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.property-card h4 {
  font-size: 28px;
}
.property-card h4 br {
  display: none;
}
.brief-art h4 {
  font-size: 26px;
}
.brief-art h4 br {
  display: none;
}
.brief-art > div {
  padding: 11px 0;
  font-size: 11px;
}
.brief-art > div:nth-of-type(2) {
  display: none;
}
.conversation-story {
  gap: 65px;
}
.conversation-demo {
  background:
    radial-gradient(ellipse at 100% 0%, #eff0d9, transparent 65%), #e1ebe0;
  border: 1px solid #ccdac5;
  border-radius: 18px;
  box-shadow: 0 20px 45px #2d563c10;
  position: relative;
}
.conversation-top {
  border-color: #c9d6bf;
}
.message-customer {
  box-shadow: 0 7px 20px #3c563209;
  border-color: #f7f3dc;
}
.story-result {
  background: linear-gradient(115deg, #c7ddbb, #dfe9cc);
  border-color: #b6d0a8;
  border-radius: 10px;
}
.story-button {
  border-radius: 9px;
  background: var(--petrol);
  border-color: var(--petrol);
  box-shadow: 0 8px 20px #24453916;
}
.story-button:hover {
  background: #2c6358;
  box-shadow: 0 12px 25px #24453928;
}
.story-steps button {
  transition:
    background 250ms,
    color 250ms;
  border-radius: 0 0 6px 6px;
  padding: 15px 8px 8px;
}
.story-steps button:hover {
  background: #f8fae9;
}
.editorial-band {
  border-radius: 20px;
  background: #173e3b;
  color: #fbf2e0;
  box-shadow: 0 20px 60px #244d3414;
}
.editorial-image {
  overflow: hidden;
}
.editorial-copy {
  padding: 55px 45px;
}
.editorial-copy .eyebrow {
  color: #adc9b4;
  margin-bottom: 20px;
}
.editorial-copy h2 em {
  color: #efb597;
}
.editorial-copy > p:not(.eyebrow) {
  color: #c5d7cb;
}
.editorial-copy .hero-link {
  color: #eee5cc;
  border-color: #84a18a;
}
.connections-section {
  position: relative;
  margin-top: 35px;
  background-image: radial-gradient(#72866b20 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  border-radius: 20px;
  padding: 80px 30px 50px;
  margin-bottom: 80px;
  border: 1px solid #e1e5d6;
  background-color: #eff2e6;
}
.connection-map {
  gap: 32px;
}
.connection-center {
  background: radial-gradient(circle, #d3e4ca 20%, #edf0de 70%);
  border-color: #c4d6b6;
}
.connection-orbit {
  border-color: #a9c095;
}
.connection-monogram {
  background: linear-gradient(145deg, #28624e, #183e36);
  box-shadow:
    0 12px 30px #294d332b,
    inset 0 1px 0 #fff3;
}
.connection-column article {
  border-radius: 12px;
  border-color: #d7dfcc;
  background: #fcfbf0eb;
  padding: 24px 18px;
  transition:
    transform 250ms,
    box-shadow 250ms,
    border-color 250ms;
  overflow: hidden;
}
.connection-column:first-child article::after,
.connection-column:last-child article::before {
  display: none;
}
.connection-icon {
  background: #e8eedb;
  width: 37px;
  height: 39px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.connection-status {
  background: #dce9cc;
}
.setup-section {
  border: 0;
  padding-top: 0;
}
.setup-grid {
  gap: 20px;
}
.setup-grid li {
  position: relative;
  overflow: hidden;
  padding: 25px;
  border: 1px solid #dae1d0;
  border-radius: 15px;
  background: #e8efdf;
  transition:
    transform 280ms,
    box-shadow 280ms,
    border-color 280ms;
}
.setup-grid li:nth-child(2) {
  background: #f5e3d7;
  border-color: #edd3c1;
}
.setup-grid li:nth-child(3) {
  background: #deece8;
  border-color: #cce0d8;
}
.setup-grid li:nth-child(4) {
  background: #f0e9ce;
  border-color: #e4dbb8;
}
.setup-number {
  display: inline-flex;
  border: 1px solid #647a5530;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  align-items: center;
  justify-content: center;
  color: #536248;
}
.setup-symbol svg {
  width: 40px;
  height: 40px;
  stroke-width: 1.2;
}
.setup-symbol {
  width: 84px;
  height: 84px;
  margin: 26px auto 27px;
  border: 1px solid #ffffffa6;
  border-radius: 21px;
  background: linear-gradient(135deg, #ffffffe6, #ffffff40);
  color: #345745;
  justify-content: center;
  font-size: 44px;
  box-shadow:
    8px 11px 0 #3756310b,
    0 15px 26px #3756310c;
  transform: rotate(-7deg);
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
.setup-grid li:nth-child(even) .setup-symbol {
  transform: rotate(7deg);
  color: #9e5b37;
}
.setup-grid h3 {
  font-size: 26px;
}
.setup-grid p {
  font-size: 12px;
  min-height: 140px;
  color: #57644f;
}
.setup-grid small {
  color: #5b674f;
  line-height: 1.8;
  display: block;
}
.control-band {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 10% 100%, #35796888, transparent 55%),
    linear-gradient(120deg, #113b38, #233a2d);
  box-shadow: 0 25px 65px #24473616;
  padding: 60px;
}
.control-band::before {
  content: "";
  position: absolute;
  left: -130px;
  bottom: -210px;
  height: 450px;
  width: 450px;
  border: 1px solid #c6e5c116;
  border-radius: 50%;
  box-shadow:
    0 0 0 35px #c6e5c107,
    0 0 0 70px #c6e5c105;
  pointer-events: none;
}
.control-band h2 em {
  color: #eebb97;
}
.control-principles article {
  padding: 23px 16px;
  border-radius: 8px;
  transition:
    background 250ms,
    transform 250ms;
}
.control-principles article:first-child {
  padding-top: 18px;
}
.control-principles article:last-child {
  padding-bottom: 18px;
}
.control-principles article:hover {
  background: #d8e7d20c;
  transform: translateX(4px);
}
.control-principles p {
  color: #c0d0c1;
}
.control-seal {
  position: relative;
  width: 170px;
  height: 145px;
  margin-top: 22px;
  display: grid;
  place-items: center;
}
.control-seal svg {
  width: 78px;
  height: 88px;
  stroke: #badaaf;
  stroke-width: 1;
  filter: drop-shadow(0 6px 15px #0003);
}
.control-seal::before,
.control-seal::after {
  content: "";
  position: absolute;
  height: 130px;
  width: 130px;
  border: 1px solid #abc5a42b;
  border-radius: 50%;
}
.control-seal::after {
  height: 150px;
  width: 150px;
  border-style: dashed;
  animation: atelier-star 40s linear infinite;
}
.faq-list details {
  background: #fbfbf5;
  padding: 21px 24px;
  border: 1px solid #dfe3d7;
  border-radius: 10px;
  margin-bottom: 12px;
  transition:
    background 250ms,
    box-shadow 250ms,
    border-color 250ms;
}
.faq-list details:first-child {
  padding-top: 21px;
}
.faq-list details:hover {
  border-color: #adc3a8;
  box-shadow: 0 5px 15px #29482808;
}
.faq-list details[open] {
  background: #eaf0e3;
  border-color: #c3d4b8;
}
.faq-list summary::after {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #edf1e3;
}
.faq-list details[open] summary::after {
  background: #d8e5cd;
}
.faq-list p {
  color: #52624f;
}
.closing-section {
  background:
    radial-gradient(ellipse at 20% 0%, #41807166, transparent 55%),
    linear-gradient(135deg, #133d3b, #172f2e);
  color: #fbf3e4;
  border: 1px solid #285148;
  border-radius: 23px;
  padding: 78px 35px 40px;
  box-shadow: 0 25px 70px #153e3e20;
  isolation: isolate;
}
.closing-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/images/intelligence-hero.webp") no-repeat 120% 40% / 600px;
  opacity: 0.14;
  mask-image: linear-gradient(90deg, transparent 25%, #000);
  pointer-events: none;
}
.closing-section .eyebrow {
  justify-content: center;
  color: #b5cfb9;
}
.closing-section h2 em {
  color: #eeb191;
}
.closing-section > p:not(.eyebrow) {
  color: #c3d7c8;
}
.closing-star {
  color: #ecb18c;
  font-size: 55px;
  animation: atelier-star 35s linear infinite;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
.closing-section .story-button {
  background: #edb68e;
  border-color: #edb68e;
  color: #21382e;
  box-shadow: 0 8px 25px #0002;
}
.closing-section .story-button:hover {
  background: #ffd2ad;
}
.closing-secondary {
  color: #c6d5c5;
}
.closing-signature {
  color: #9bb7a4;
}
.magnetic {
  translate: var(--magnet-x, 0px) var(--magnet-y, 0px);
  transition:
    translate 230ms ease-out,
    background 220ms,
    box-shadow 220ms,
    transform 220ms;
}
.reading-progress {
  position: fixed;
  z-index: 45;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #477c62, #ddb48b, #bf6546);
  transform: scaleX(var(--read-progress, 0));
  transform-origin: left;
  pointer-events: none;
}
.sector-panel.panel-enter {
  animation: panel-enter 480ms cubic-bezier(0.2, 0.7, 0.3, 1);
}
@keyframes panel-enter {
  from {
    opacity: 0.3;
    translate: 0 12px;
  }
  to {
    opacity: 1;
    translate: 0 0;
  }
}
@keyframes atelier-star {
  to {
    rotate: 360deg;
  }
}
@keyframes art-breathe {
  0%,
  100% {
    transform: scale(1.02) translateY(0);
  }
  50% {
    transform: scale(1.07) translateY(-5px);
  }
}
@keyframes glass-drift {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -7px;
  }
}
@keyframes mini-wave {
  to {
    height: 21px;
  }
}
@keyframes signal-pulse {
  50% {
    box-shadow: 0 0 0 7px #a6c59d08;
  }
}
@media (hover: hover) and (pointer: fine) {
  .capability-strip article:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 30px #23472f13;
    border-color: #abc39c;
  }
  .capability-strip article:hover .cap-icon {
    transform: rotate(-8deg) scale(1.08);
    background: #fffbed;
  }
  .sector-tabs button:hover {
    transform: translateY(-5px);
    border-color: #7da087;
    box-shadow: 0 10px 25px #26463116;
    background: #e5edde;
  }
  .sector-tabs button[aria-selected="true"]:hover {
    background: #27574e;
  }
  .sector-tabs button:hover .sector-thumb {
    transform: scale(1.07);
  }
  .sector-tabs button:hover .sector-tab-arrow {
    transform: translate(2px, -2px);
  }
  .sector-visual:hover > img,
  .editorial-image:hover img {
    transform: scale(1.045);
  }
  .sector-visual:hover .floating-note,
  .sector-visual:hover .calendar-art,
  .sector-visual:hover .ticket-art,
  .sector-visual:hover .property-art,
  .sector-visual:hover .brief-art {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px #1735292d;
  }
  .setup-grid li:hover {
    transform: translateY(-7px);
    border-color: #a9bda0;
    box-shadow: 0 17px 30px #28472f12;
  }
  .setup-grid li:hover .setup-symbol {
    transform: rotate(0) translateY(-4px) scale(1.05);
  }
  .connection-column article:hover {
    transform: translateY(-4px);
    box-shadow: 0 9px 25px #314f3214;
    border-color: #a3ba8e;
  }
}
@media (max-width: 1150px) {
  .app-shell {
    width: calc(100% - 48px);
  }
  .topbar {
    gap: 15px;
    padding-inline: 18px;
  }
  .main-nav {
    gap: 19px;
    font-size: 10px;
  }
  .motion-label {
    display: none;
  }
  .hero-copy {
    gap: 20px;
  }
  .hero-main {
    padding-left: 8px;
  }
  .hero-copy h1 {
    font-size: 65px;
    letter-spacing: -3px;
  }
  .hero-star {
    font-size: 34px;
    margin-left: 10px;
  }
  .hero-art {
    height: 555px;
  }
  .hero-glass {
    padding: 14px 12px;
    gap: 8px;
  }
  .hero-glass strong {
    font-size: 11px;
  }
  .glass-question {
    right: 25px;
  }
  .glass-action {
    left: 35px;
  }
  .hero-secondary {
    display: flex;
    padding-left: 0;
    padding-bottom: 0;
  }
  .hero-assurances {
    gap: 12px;
    margin-top: 22px;
  }
  .capability-strip {
    gap: 10px;
  }
  .capability-strip article,
  .capability-strip article:first-child,
  .capability-strip article:last-child {
    padding: 21px 12px;
    gap: 10px;
  }
  .cap-icon {
    width: 32px;
    height: 37px;
    font-size: 23px;
  }
  .capability-strip strong {
    font-size: 10px;
  }
  .sector-tabs {
    gap: 10px;
  }
  .sector-thumb {
    height: 95px;
  }
  .sector-tabs button .sector-tab-name {
    font-size: 10px;
    padding-left: 9px;
  }
  .sector-tabs button .sector-tab-arrow {
    padding-right: 9px;
    font-size: 14px;
  }
  .sector-panel {
    gap: 28px;
    padding: 17px;
  }
  .sector-copy {
    padding-right: 5px;
  }
  .sector-visual {
    min-height: 590px;
  }
  .sector-copy h3 {
    font-size: 34px;
  }
  .calendar-art,
  .ticket-art,
  .property-art,
  .brief-art {
    left: 16px;
    right: 16px;
    bottom: 20px;
    padding: 17px;
  }
  .setup-grid {
    gap: 14px;
  }
  .setup-grid li {
    padding: 22px 18px;
  }
  .setup-grid h3 {
    font-size: 23px;
  }
  .setup-grid p {
    min-height: 155px;
  }
  .connection-map {
    gap: 22px;
  }
  .connection-column article {
    padding: 20px 13px;
  }
}
@media (max-width: 900px) {
  .topbar {
    height: 70px;
  }
  .main-nav {
    gap: 15px;
  }
  .header-cta {
    font-size: 10px;
    padding: 10px 12px;
  }
  .brand {
    font-size: 25px;
  }
  .hero-copy h1 {
    font-size: 54px;
    letter-spacing: -2.8px;
  }
  .hero-star {
    font-size: 29px;
  }
  .hero-main > .eyebrow {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-detail {
    font-size: 11px;
  }
  .hero-art {
    height: 530px;
  }
  .hero-assurances {
    font-size: 8px;
    gap: 10px;
  }
  .hero-glass strong {
    font-size: 10px;
  }
  .mini-wave {
    display: none;
  }
  .art-caption {
    font-size: 6px;
    letter-spacing: 1px;
    left: 20px;
  }
  .glass-question {
    left: 15px;
    right: 20px;
    top: 90px;
  }
  .glass-action {
    left: 20px;
    right: 15px;
  }
  .art-bottom {
    left: 20px;
    right: 20px;
    font-size: 6px;
    letter-spacing: 1px;
  }
  .capability-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .capability-strip article,
  .capability-strip article:first-child,
  .capability-strip article:last-child {
    padding: 22px;
    min-height: 105px;
  }
  .capability-strip strong {
    font-size: 12px;
  }
  .sector-tabs {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .sector-thumb {
    height: 115px;
  }
  .sector-tabs button .sector-tab-name {
    font-size: 12px;
    padding-left: 14px;
  }
  .sector-tabs button .sector-tab-arrow {
    padding-right: 14px;
    font-size: 17px;
  }
  .how-it-works {
    padding: 38px;
  }
  .setup-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .setup-grid p {
    min-height: 95px;
  }
  .setup-grid h3 {
    font-size: 27px;
  }
  .setup-symbol {
    margin-left: 8px;
  }
}
@media (max-width: 800px) {
  .main-nav {
    display: none;
  }
  .motion-toggle {
    margin-left: auto;
  }
  .hero-copy {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-top: 32px;
  }
  .hero-main {
    padding: 15px 15px 0;
  }
  .hero-copy h1 {
    font-size: 74px;
    letter-spacing: -3px;
  }
  .hero-main > .eyebrow {
    font-size: 9px;
  }
  .hero-aside {
    max-width: 550px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-detail {
    font-size: 12px;
  }
  .hero-secondary {
    display: inline-flex;
    padding-left: 17px;
  }
  .hero-assurances {
    font-size: 10px;
    gap: 20px;
  }
  .hero-star {
    font-size: 41px;
  }
  .hero-art {
    height: 520px;
  }
  .intelligence-image {
    object-position: center 53%;
  }
  .hero-glass strong {
    font-size: 13px;
  }
  .hero-glass small {
    font-size: 8px;
  }
  .hero-glass {
    padding: 17px;
  }
  .glass-question {
    top: 75px;
    left: 25px;
    right: 95px;
  }
  .glass-action {
    bottom: 85px;
    left: 130px;
    right: 25px;
  }
  .mini-wave {
    display: flex;
  }
  .art-caption {
    font-size: 8px;
    left: 28px;
  }
  .art-bottom {
    font-size: 8px;
    left: 28px;
    right: 28px;
  }
  .sector-panel {
    gap: 10px;
    padding: 15px;
  }
  .sector-visual {
    min-height: 0;
    height: 440px;
  }
  .sector-copy {
    padding: 23px 15px;
  }
  .graphic-visual {
    padding: 0;
  }
  .calendar-art,
  .ticket-art,
  .property-art,
  .brief-art {
    padding: 20px;
    left: 22px;
    right: 22px;
    bottom: 22px;
    max-width: none;
  }
  .calendar-art h4,
  .ticket-art h4,
  .property-card h4,
  .brief-art h4 {
    font-size: 28px;
  }
  .connections-section {
    padding: 55px 25px 40px;
    margin-bottom: 65px;
  }
  .connection-column {
    gap: 15px;
  }
  .control-band {
    padding: 42px;
  }
  .control-seal {
    display: none;
  }
  .conversation-story {
    gap: 35px;
  }
  .story-section {
    padding-top: 65px;
    padding-bottom: 65px;
  }
  .sector-section,
  .setup-section {
    padding-top: 0;
  }
  .closing-section h2 {
    font-size: 52px;
  }
  .editorial-copy {
    padding: 42px 35px;
  }
}
@media (max-width: 480px) {
  html {
    scroll-padding-top: 96px;
  }
  .app-shell {
    width: calc(100% - 30px);
  }
  .topbar {
    top: 8px;
    margin-top: 8px;
    padding: 0 12px;
    gap: 10px;
    height: 64px;
    border-radius: 12px;
  }
  .brand {
    font-size: 23px;
    gap: 6px;
  }
  .brand-mark {
    width: 27px;
    height: 31px;
  }
  .brand-mark svg {
    width: 23px;
    height: 23px;
  }
  .header-cta {
    gap: 9px;
    font-size: 9px;
    padding: 9px 10px;
  }
  .header-cta span {
    font-size: 15px;
  }
  .motion-toggle {
    padding: 8px;
    min-height: 34px;
  }
  .hero-copy {
    gap: 25px;
    padding-top: 22px;
  }
  .hero-copy::before {
    inset-inline: -10px;
  }
  .hero-main {
    padding: 10px 5px 0;
  }
  .hero-main > .eyebrow {
    font-size: 7px;
    letter-spacing: 0.65px;
    padding: 9px 11px;
  }
  .hero-copy h1 {
    font-size: clamp(49px, 13.5vw, 64px);
    letter-spacing: -2.8px;
    margin-top: 26px;
  }
  .hero-star {
    font-size: 30px;
    margin-left: 11px;
  }
  .hero-aside {
    margin-top: 22px;
  }
  .hero-description {
    font-size: 14px;
  }
  .hero-detail {
    font-size: 11px;
    margin-bottom: 22px;
  }
  .hero-aside > .hero-link {
    font-size: 11px;
    padding: 15px 18px;
    gap: 24px;
  }
  .hero-secondary {
    font-size: 10px;
    padding: 16px 0 0;
    display: flex;
  }
  .hero-assurances {
    gap: 12px;
    font-size: 8px;
    margin-top: 21px;
  }
  .hero-art {
    height: 405px;
    border-radius: 17px;
  }
  .art-caption {
    top: 22px;
    left: 21px;
    font-size: 6px;
    letter-spacing: 1px;
  }
  .hero-glass {
    padding: 12px;
    border-radius: 9px;
    gap: 9px;
  }
  .hero-glass small {
    font-size: 6px;
    letter-spacing: 1px;
  }
  .hero-glass strong {
    font-size: 10px;
  }
  .glass-question {
    top: 68px;
    left: 14px;
    right: 35px;
  }
  .glass-action {
    bottom: 76px;
    left: 38px;
    right: 14px;
  }
  .glass-symbol {
    width: 29px;
    height: 29px;
    font-size: 21px;
  }
  .mini-wave {
    gap: 2px;
  }
  .mini-wave i {
    width: 2px;
  }
  .glass-check {
    height: 21px;
    width: 21px;
    font-size: 11px;
    flex-shrink: 0;
  }
  .art-bottom {
    left: 21px;
    right: 21px;
    bottom: 22px;
    font-size: 6px;
    letter-spacing: 1px;
  }
  .art-bottom a {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }
  .art-orbit {
    inset: 75px 35px;
  }
  .capability-strip {
    gap: 10px;
  }
  .capability-strip article,
  .capability-strip article:first-child,
  .capability-strip article:last-child {
    padding: 21px 13px;
    flex-wrap: wrap;
    min-height: 151px;
    gap: 12px;
    align-content: center;
  }
  .capability-strip strong {
    font-size: 11px;
  }
  .capability-strip small {
    font-size: 9px;
  }
  .cap-icon {
    width: 34px;
    height: 35px;
    font-size: 23px;
  }
  .cap-number {
    display: block;
  }
  .experience {
    padding-top: 32px;
  }
  .experience-heading {
    padding-inline: 0;
  }
  .workspace-frame {
    border-radius: 13px;
  }
  .how-it-works {
    padding: 32px 25px;
    margin: 45px 0 60px;
  }
  .how-it-works h2 {
    font-size: 35px;
  }
  .story-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .sector-section,
  .setup-section {
    padding-top: 0;
  }
  .story-heading h2 {
    font-size: 38px;
  }
  .story-heading .eyebrow {
    font-size: 8px;
  }
  .sector-tabs {
    gap: 10px;
  }
  .sector-thumb {
    height: 82px;
    margin-bottom: 12px;
  }
  .sector-tabs button {
    padding-bottom: 13px;
    border-radius: 9px;
  }
  .sector-tabs button .sector-tab-name {
    font-size: 9px;
    padding-left: 8px;
  }
  .sector-tabs button .sector-tab-arrow {
    padding-right: 7px;
    font-size: 13px;
  }
  .sector-tabs button .sector-tab-number {
    width: 18px;
    height: 18px;
    font-size: 7px;
    top: 6px;
    left: 6px;
  }
  .sector-panel {
    padding: 10px;
    border-radius: 15px;
  }
  .sector-visual {
    height: 360px;
    border-radius: 9px;
  }
  .sector-copy {
    padding: 18px 9px;
  }
  .sector-copy h3 {
    font-size: 31px;
  }
  .sector-copy > .story-kicker {
    font-size: 8px;
    letter-spacing: 1px;
  }
  .sector-copy > p {
    font-size: 12px;
  }
  .sector-copy dd {
    font-size: 11px;
  }
  .calendar-art,
  .ticket-art,
  .property-art,
  .brief-art {
    left: 13px;
    right: 13px;
    bottom: 16px;
    padding: 15px;
    border-radius: 10px;
  }
  .graphic-visual h4,
  .calendar-art h4,
  .ticket-art h4,
  .property-card h4,
  .brief-art h4 {
    font-size: 22px;
  }
  .graphic-visual .story-kicker {
    font-size: 7px;
    letter-spacing: 1px;
  }
  .ticket-art > div strong {
    font-size: 9px;
  }
  .ticket-art > div > span {
    font-size: 8px;
  }
  .brief-art > div {
    padding: 9px 0;
    font-size: 10px;
  }
  .photo-label {
    left: 15px;
    top: 15px;
    font-size: 7px;
  }
  .property-card > span {
    font-size: 9px;
  }
  .floating-note {
    left: 13px;
    right: 13px;
    bottom: 16px;
    padding: 16px 12px;
  }
  .floating-note strong {
    font-size: 18px;
  }
  .section-footnote {
    font-size: 9px;
  }
  .conversation-demo {
    padding: 20px 17px;
    border-radius: 13px;
  }
  .story-messages {
    min-height: 245px;
  }
  .editorial-band {
    border-radius: 15px;
  }
  .editorial-copy {
    padding: 36px 25px;
  }
  .editorial-copy h2 {
    font-size: 33px;
  }
  .connections-section {
    padding: 45px 18px 32px;
    margin-top: 15px;
    margin-bottom: 60px;
    border-radius: 15px;
  }
  .connections-section h2 {
    font-size: 33px;
  }
  .connection-column {
    grid-template-columns: 1fr;
  }
  .connection-center {
    width: 210px;
    min-height: 210px;
  }
  .connection-map {
    gap: 32px;
  }
  .connection-column article {
    padding: 20px 14px;
  }
  .connection-column strong {
    font-size: 11px;
  }
  .connection-column small {
    font-size: 9px;
  }
  .setup-grid {
    gap: 13px;
  }
  .setup-grid li {
    padding: 18px 14px;
    border-radius: 11px;
  }
  .setup-symbol {
    width: 60px;
    height: 62px;
    font-size: 35px;
    border-radius: 16px;
    margin: 25px 0;
  }
  .setup-grid h3 {
    font-size: 23px;
  }
  .setup-grid p {
    font-size: 10px;
    min-height: 145px;
  }
  .setup-grid small {
    font-size: 7px;
    letter-spacing: 0.2px;
  }
  .control-band {
    padding: 33px 23px;
    border-radius: 15px;
  }
  .control-principles article {
    padding-inline: 3px;
  }
  .control-principles h3 {
    font-size: 14px;
  }
  .control-principles p {
    font-size: 11px;
  }
  .faq-list details {
    padding: 18px;
  }
  .faq-list details:first-child {
    padding-top: 18px;
  }
  .faq-list summary {
    font-size: 12px;
    gap: 14px;
  }
  .faq-list p {
    font-size: 11px;
    margin-right: 0;
  }
  .closing-section {
    padding: 55px 20px 35px;
    border-radius: 17px;
  }
  .closing-section h2 {
    font-size: 37px;
  }
  .closing-star {
    font-size: 48px;
  }
  .closing-section > p:not(.eyebrow) {
    font-size: 12px;
  }
  .closing-section .eyebrow {
    font-size: 7px;
  }
}
@media (max-width: 350px) {
  .header-cta {
    font-size: 8px;
    padding: 9px 8px;
  }
  .topbar {
    gap: 7px;
    padding-inline: 10px;
  }
  .brand {
    font-size: 21px;
  }
  .brand-mark {
    display: none;
  }
  .hero-assurances {
    font-size: 7px;
    gap: 9px;
  }
  .hero-art {
    height: 380px;
  }
  .hero-glass strong {
    font-size: 9px;
  }
  .hero-glass {
    gap: 7px;
  }
  .mini-wave {
    display: none;
  }
  .sector-tabs {
    gap: 7px;
  }
  .sector-tabs button .sector-tab-name {
    font-size: 8px;
    padding-left: 6px;
  }
  .sector-tabs button .sector-tab-arrow {
    padding-right: 6px;
    font-size: 11px;
  }
  .sector-thumb {
    height: 70px;
  }
  .setup-grid h3 {
    font-size: 21px;
  }
  .setup-grid p {
    min-height: 170px;
  }
  .connections-section h2 {
    font-size: 29px;
  }
  .closing-section h2 {
    font-size: 33px;
  }
}
.motion-paused *,
.motion-paused *::before,
.motion-paused *::after {
  animation-play-state: paused !important;
  transition: none !important;
}
.motion-paused .reveal-pending {
  opacity: 1;
  transform: none;
}
.motion-paused [data-tilt] {
  --tilt-x: 0deg !important;
  --tilt-y: 0deg !important;
}
.motion-paused .magnetic {
  translate: none;
}
.motion-paused .sector-panel.panel-enter {
  animation: none;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal-pending {
    opacity: 1;
    transform: none;
  }
  [data-tilt] {
    transform: none;
  }
  .magnetic {
    translate: none;
  }
}
