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

:root {
  --bg: #fffaf6;
  --bg-soft: #fff1e9;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --line: rgba(35, 32, 31, 0.09);
  --text: #23201f;
  --muted: #665d59;
  --brand-orange: #ff5800;
  --brand-pink: #fa93ab;
  --brand-earth: #e0684b;
  --brand-dark: #23201f;
  --radius-xl: 36px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --shadow-soft: 0 18px 50px rgba(35, 32, 31, 0.08);
  --shadow-strong: 0 24px 70px rgba(35, 32, 31, 0.12);
  --max-width: 1400px;
  --nav-height: 6.4rem;
  --font-body: "Montserrat", "Segoe UI", Arial, sans-serif;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-height) + 0.6rem);
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 8% 8%, rgba(255, 88, 0, 0.12), transparent 16%),
    radial-gradient(circle at 88% 10%, rgba(250, 147, 171, 0.16), transparent 20%),
    linear-gradient(180deg, #fffdfb 0%, #fff8f3 52%, #f8efe8 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  overflow: hidden;
}

.topbar,
.viewport-section,
.footer {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}

.topbar {
  position: fixed;
  inset: 1rem auto auto 50%;
  transform: translateX(-50%);
  z-index: 40;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.78);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 36px rgba(35, 32, 31, 0.06);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-horizontal {
  width: auto;
  height: 2.35rem;
  object-fit: contain;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
  margin-left: auto;
}

.nav a {
  padding: 0.72rem 0.9rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.nav a:hover,
.nav a:focus-visible,
.nav a.is-current {
  color: #000;
  background: rgba(255, 255, 255, 0.95);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  border: 0;
  border-radius: 999px;
  background: #111;
  color: #fff;
  padding: 0.74rem 1rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-main {
  display: grid;
  gap: 0.35rem;
  padding-top: calc(var(--nav-height) + 0.05rem);
}

.viewport-section {
  min-height: calc(100svh - var(--nav-height));
  padding-block: 0.55rem 1rem;
  display: grid;
  align-items: stretch;
  scroll-margin-top: calc(var(--nav-height) + 0.5rem);
  isolation: isolate;
}

.hero-section {
  width: 100%;
  max-width: none;
  padding-inline: 0;
  padding-top: 0;
}

.panel {
  min-height: calc(100svh - var(--nav-height) - 2rem);
  border: 1px solid rgba(35, 32, 31, 0.06);
  border-radius: var(--radius-xl);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.hero-panel,
.solutions-panel,
.detail-panel,
.camera-panel,
.partnership-panel,
.contact-panel {
  display: grid;
  gap: 1.15rem;
  padding: 1.15rem;
}

.hero-panel {
  grid-template-columns: minmax(0, 1.24fr) minmax(18rem, 0.76fr);
  align-content: start;
  align-items: end;
  margin-top: -0.35rem;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 88, 0, 0.14), transparent 16%),
    radial-gradient(circle at 86% 14%, rgba(250, 147, 171, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 238, 231, 0.92));
}

.hero-media {
  position: relative;
  display: grid;
  align-items: stretch;
  align-self: center;
}

.hero-aside {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 0.8rem;
  min-width: 0;
  align-self: end;
}

.hero-graphic-stage {
  position: relative;
  min-height: min(58vh, 31rem);
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: #f3ece7;
}

.hero-graphic-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 16, 15, 0.1) 0%, rgba(20, 16, 15, 0.02) 28%, rgba(20, 16, 15, 0.34) 100%),
    linear-gradient(90deg, rgba(255, 88, 0, 0.12), transparent 24%, transparent 76%, rgba(250, 147, 171, 0.12));
  pointer-events: none;
  z-index: 1;
}

.graphic-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 580ms ease,
    transform 580ms ease;
}

.graphic-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.graphic-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.graphic-frame.is-active img {
  animation: hero-drift 7.4s ease-in-out both;
}

.hero-graphic-indicators {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  z-index: 3;
  display: flex;
  gap: 0.45rem;
}

.hero-graphic-indicators span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(35, 32, 31, 0.18);
  transition:
    width 220ms ease,
    background 220ms ease;
}

.hero-graphic-indicators span.is-active {
  width: 1.7rem;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-earth));
}

.hero-copy,
.detail-copy,
.partnership-copy,
.contact-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}

.hero-copy {
  gap: 0.75rem;
  padding: 0.2rem 0.15rem 0.1rem;
  max-width: none;
}

.eyebrow {
  margin: 0;
  color: var(--brand-orange);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-header h2,
.detail-copy h2,
.partnership-copy h2,
.contact-copy h2,
.solution-card h3,
.camera-card-copy h3,
.pmv-card h2,
.faq-dialog h2 {
  margin: 0;
  color: #000;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.hero-copy h1 {
  max-width: 13ch;
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 0.95;
}

.section-header h2,
.detail-copy h2,
.partnership-copy h2,
.contact-copy h2,
.faq-dialog h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.35rem);
  line-height: 1.02;
}

.solution-card h3,
.camera-card-copy h3,
.pmv-card h2 {
  font-size: clamp(1.15rem, 1.4vw, 1.45rem);
  line-height: 1.05;
}

.hero-intro,
.section-header p,
.detail-copy p,
.partnership-copy p,
.contact-copy p,
.solution-card p,
.camera-card-copy p,
.form-note,
.pmv-card p,
.faq-list p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.hero-intro {
  max-width: 30rem;
}

.hero-actions,
.detail-links,
.contact-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 9.6rem;
  min-height: 2.8rem;
  padding: 0.72rem 1.05rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand-orange), var(--brand-earth));
  box-shadow: 0 12px 24px rgba(255, 88, 0, 0.18);
}

.button-secondary,
.button-ghost {
  color: #000;
  border-color: rgba(35, 32, 31, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.pmv-widget {
  align-self: end;
  padding: 0.78rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 40px rgba(35, 32, 31, 0.08);
}

.pmv-label {
  margin: 0 0 0.5rem;
  color: #000;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pmv-panels {
  position: relative;
  min-height: 8.6rem;
}

.pmv-card {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 320ms ease,
    transform 320ms ease;
  pointer-events: none;
}

.pmv-card.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.solutions-panel {
  background:
    radial-gradient(circle at 14% 14%, rgba(255, 88, 0, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.section-header {
  display: grid;
  gap: 0.55rem;
  max-width: 37rem;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.solution-card {
  display: grid;
  grid-template-rows: auto auto;
  min-height: 0;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(35, 32, 31, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.solution-card-media {
  position: relative;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
}

.solution-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.04), rgba(20, 16, 15, 0.24));
}

.solution-card-room .solution-card-media::after {
  background: linear-gradient(180deg, rgba(20, 16, 15, 0.02), rgba(20, 16, 15, 0.18));
}

.solution-card-environment .solution-card-media::after {
  background: linear-gradient(180deg, rgba(250, 147, 171, 0.1), rgba(35, 32, 31, 0.2));
}

.solution-card-equine .solution-card-media::after {
  background: linear-gradient(180deg, rgba(255, 88, 0, 0.06), rgba(35, 32, 31, 0.26));
}

.solution-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.solution-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.42rem;
  padding: 0.86rem 0.9rem 0.92rem;
  color: var(--brand-dark);
}

.solution-card-body p,
.solution-card-body h3,
.solution-card-body a,
.solution-card-body .solution-tag {
  color: inherit;
}

.solution-tag,
.camera-card-tag,
.contact-form span {
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.solution-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--brand-orange);
}

.solution-link::after {
  content: ">";
  font-size: 0.95rem;
}

.detail-panel {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  background:
    radial-gradient(circle at 86% 14%, rgba(255, 88, 0, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.detail-panel-cloud {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 88, 0, 0.12), transparent 20%),
    radial-gradient(circle at 88% 16%, rgba(24, 50, 77, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.detail-panel-cameras {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 16% 18%, rgba(24, 50, 77, 0.12), transparent 22%),
    radial-gradient(circle at 86% 18%, rgba(255, 88, 0, 0.11), transparent 22%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(237, 244, 249, 0.94));
}

.detail-panel-room {
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
}

.detail-copy-cloud {
  align-content: center;
}

.detail-copy-cameras {
  align-content: center;
}

.detail-copy-equine {
  align-content: center;
}

.cloud9-stat-grid {
  margin-top: 0.15rem;
}

.camera-stat-grid {
  margin-top: 0.15rem;
}

.cloud9-visual {
  display: grid;
  min-width: 0;
}

.camera-visual {
  display: grid;
  min-width: 0;
}

.cloud9-stage {
  position: relative;
  min-height: min(66vh, 33.5rem);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 88, 0, 0.18), transparent 26%),
    radial-gradient(circle at 84% 22%, rgba(250, 147, 171, 0.18), transparent 24%),
    linear-gradient(145deg, #f8fbff 0%, #e6f1fa 46%, #f6eee9 100%);
  box-shadow: 0 22px 46px rgba(16, 24, 38, 0.12);
}

.camera-stage {
  position: relative;
  min-height: min(66vh, 33.5rem);
  display: grid;
  place-items: center;
  padding: 1.2rem;
  border-radius: 30px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 16%, rgba(24, 50, 77, 0.14), transparent 26%),
    radial-gradient(circle at 84% 18%, rgba(255, 88, 0, 0.12), transparent 24%),
    linear-gradient(145deg, #f5f9fd 0%, #e8f1f8 48%, #f8efea 100%);
  box-shadow: 0 22px 46px rgba(16, 24, 38, 0.12);
}

.cloud9-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.62) 0%, transparent 42%),
    linear-gradient(0deg, rgba(255, 88, 0, 0.04), transparent 40%);
  pointer-events: none;
  z-index: 1;
}

.camera-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(255, 255, 255, 0.62) 0%, transparent 42%),
    linear-gradient(0deg, rgba(24, 50, 77, 0.03), transparent 42%);
  pointer-events: none;
  z-index: 1;
}

.cloud9-photo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 30rem);
  height: min(100%, 29rem);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(24, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 24px 50px rgba(16, 24, 38, 0.16);
  animation: cloud9-float 7.2s ease-in-out infinite;
}

.camera-photo-card {
  position: relative;
  z-index: 2;
  width: min(100%, 30rem);
  height: min(100%, 29rem);
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(24, 50, 77, 0.08);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 24px 50px rgba(16, 24, 38, 0.14);
  animation: cloud9-float 7.2s ease-in-out infinite;
}

.cloud9-photo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.camera-photo-carousel {
  position: relative;
  width: 100%;
  height: 100%;
}

.cloud9-page-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 560ms ease, transform 760ms ease;
}

.cloud9-page-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.camera-page-frame {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 560ms ease, transform 760ms ease;
}

.camera-page-frame.is-active {
  opacity: 1;
  transform: scale(1);
}

.cloud9-page-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: linear-gradient(180deg, #eff6fc, #dcecf7);
}

.camera-page-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-copy,
.partnership-copy,
.contact-copy {
  gap: 0.8rem;
  padding: 0.2rem;
  max-width: 34rem;
}

.detail-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.62;
}

.detail-visual {
  display: grid;
  gap: 0.85rem;
  min-width: 0;
}

.detail-side-card,
.room-photo-card,
.room-graphic-card,
.partnership-brand,
.contact-form {
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  overflow: hidden;
}

.detail-side-card img,
.room-photo-card img,
.room-graphic-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail-side-card img {
  aspect-ratio: 4 / 3;
}

.detail-visual-room {
  grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
  align-items: stretch;
}

.room-photo-card img {
  aspect-ratio: 16 / 11.5;
}

.room-graphic-card img {
  aspect-ratio: 5 / 6;
  object-fit: contain;
  background: linear-gradient(180deg, #fffdfc, #f6ece7);
}

.detail-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}

.detail-stat-grid article {
  padding: 0.95rem;
  border-radius: 22px;
  border: 1px solid rgba(35, 32, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.detail-stat-grid span {
  display: inline-block;
  margin-bottom: 0.5rem;
  color: var(--brand-orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.detail-stat-grid h3 {
  margin: 0 0 0.35rem;
  color: #000;
  font-size: 0.96rem;
  font-weight: 800;
  line-height: 1.15;
}

.room-stat-grid h3 {
  color: var(--brand-orange);
}

.detail-stat-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.52;
}

.camera-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(250, 147, 171, 0.15), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(249, 240, 234, 0.92));
}

.camera-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 1rem;
  align-items: stretch;
}

.camera-overview {
  display: grid;
  gap: 0.7rem;
  align-content: start;
  padding: 1rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: var(--shadow-soft);
}

.camera-overview h3,
.camera-application-strip h4 {
  margin: 0;
  color: #000;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.camera-overview h3 {
  font-size: clamp(1.3rem, 1.9vw, 1.85rem);
  line-height: 1.05;
}

.camera-feature-list {
  margin: 0.15rem 0 0;
  padding-left: 1.05rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.camera-media-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.camera-media-card {
  display: grid;
  grid-template-rows: auto auto;
  overflow: hidden;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 30px;
  box-shadow: var(--shadow-soft);
}

.camera-media-card-dark {
  background: linear-gradient(180deg, #26211f, #3b302d);
  color: #fff;
}

.camera-media-card-light {
  background: linear-gradient(180deg, #fff0ea, #f8d1db);
  color: var(--brand-dark);
}

.camera-media-copy {
  display: grid;
  gap: 0.45rem;
  padding: 0.9rem 0.95rem 1rem;
}

.camera-media-copy p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.56;
}

.camera-media-card-dark .camera-media-copy p,
.camera-media-card-dark .camera-card-tag {
  color: #fff;
}

.camera-application-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
}

.camera-application-strip article {
  padding: 0.9rem 0.95rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
}

.camera-application-strip span {
  display: inline-block;
  margin-bottom: 0.42rem;
  color: var(--brand-orange);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.camera-application-strip h4 {
  font-size: 1rem;
  line-height: 1.1;
}

.camera-application-strip p {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.5;
}

.camera-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.camera-card {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  min-height: 100%;
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(35, 32, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.camera-card-hypoxic {
  background: linear-gradient(180deg, #26211f, #3b302d);
  color: #fff;
}

.camera-card-environmental {
  background: linear-gradient(180deg, #fff0ea, #f8d1db);
  color: var(--brand-dark);
}

.camera-card-media {
  min-width: 0;
}

.camera-card-copy {
  display: grid;
  gap: 0.65rem;
  padding: 1rem 1.05rem 1.1rem;
}

.camera-card-hypoxic .camera-card-copy p,
.camera-card-hypoxic .camera-card-copy h3,
.camera-card-hypoxic .camera-card-tag {
  color: #fff;
}

.detail-panel-equine {
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: stretch;
  padding: 1.1rem;
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 88, 0, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.equine-stat-grid {
  margin-top: 0.15rem;
}

.detail-stat-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.video-frame {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.84);
}

.video-frame-wide,
.detail-side-card {
  border-radius: var(--radius-lg);
}

.video-frame-wide {
  aspect-ratio: 16 / 8.6;
  border: 1px solid rgba(35, 32, 31, 0.08);
}

.video-frame-background {
  position: absolute;
  inset: 0;
  border: 0;
  border-radius: 0;
  background: #1a1717;
}

.video-frame-compact {
  aspect-ratio: 16 / 9.3;
  border-radius: 0;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.partnership-panel {
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  background:
    radial-gradient(circle at 86% 20%, rgba(255, 88, 0, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.partnership-brand {
  display: grid;
  place-items: center;
  min-height: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 235, 228, 0.88));
}

.partnership-brand img {
  max-width: min(100%, 23rem);
  width: 100%;
  object-fit: contain;
}

.contact-panel {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  background:
    radial-gradient(circle at 12% 12%, rgba(250, 147, 171, 0.14), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.contact-badges {
  gap: 0.55rem;
}

.contact-direct {
  display: grid;
  gap: 0.45rem;
}

.contact-direct a {
  color: var(--brand-dark);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
}

.contact-direct a:hover {
  color: var(--brand-orange);
}

.contact-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 2.2rem;
  padding: 0.54rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(35, 32, 31, 0.08);
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 0.8rem;
  padding: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.42rem;
}

.contact-form .form-check {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.6rem;
  padding: 0.85rem 0.9rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.form-check input {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  accent-color: var(--brand-orange);
}

.form-check span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: none;
}

.form-check a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.16rem;
}

.form-legal {
  margin: -0.1rem 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.hero-copy > .form-check,
.hero-copy > .form-legal {
  display: none;
}

.contact-form .form-check-inline,
.contact-form .form-legal-inline {
  display: grid;
}

.legacy-copy,
.privacy-content.legacy-copy {
  display: none !important;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.82rem 0.92rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text);
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(255, 88, 0, 0.18);
  outline-offset: 2px;
}

.form-note {
  font-size: 0.84rem;
}

.thank-you-main,
.privacy-main {
  min-height: 100svh;
}

.thank-you-section,
.privacy-section {
  min-height: calc(100svh - var(--nav-height));
}

.thank-you-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 1rem;
  align-items: center;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 14% 16%, rgba(255, 88, 0, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.thank-you-copy {
  display: grid;
  gap: 0.8rem;
  max-width: 35rem;
}

.thank-you-copy h1,
.privacy-panel h1 {
  margin: 0;
  color: #000;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 800;
  line-height: 0.98;
}

.thank-you-copy p,
.privacy-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.62;
}

.thank-you-media {
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(35, 32, 31, 0.08);
  box-shadow: var(--shadow-soft);
}

.thank-you-media img {
  width: 100%;
  height: 100%;
  min-height: min(48vh, 30rem);
  object-fit: cover;
}

.privacy-panel {
  display: grid;
  gap: 1rem;
  padding: 1.15rem;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 88, 0, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 239, 233, 0.92));
}

.privacy-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.privacy-content section {
  display: grid;
  gap: 0.45rem;
  padding: 1rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}

.privacy-content h2 {
  margin: 0;
  color: #000;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
}

.privacy-content a {
  color: var(--brand-orange);
  font-weight: 700;
}

.footer {
  display: none;
  padding: 0 0 2.2rem;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer a {
  color: var(--brand-dark);
}

.footer a:hover {
  color: var(--brand-orange);
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  gap: 0.8rem;
  width: min(calc(100% - 2rem), 62rem);
  padding: 0.85rem;
  border: 1px solid rgba(35, 32, 31, 0.1);
  border-radius: 28px;
  background: rgba(255, 249, 245, 0.94);
  box-shadow: 0 18px 48px rgba(35, 32, 31, 0.16);
  backdrop-filter: blur(18px);
  transform: translateX(-50%);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent-copy {
  display: grid;
  gap: 0.28rem;
  align-content: center;
}

.cookie-consent-title {
  margin: 0;
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.cookie-consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.cookie-consent-copy a {
  color: #000;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.18rem;
}

.cookie-consent-options {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  align-items: center;
  gap: 0.55rem;
}

.cookie-consent-options label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 2.2rem;
  padding: 0.5rem 0.72rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  color: #000;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cookie-consent-options input {
  accent-color: var(--brand-orange);
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  gap: 0.5rem;
}

.cookie-consent-actions .button {
  min-width: auto;
  min-height: 2.35rem;
  padding: 0.58rem 0.78rem;
  font-size: 0.64rem;
}

.social-banner {
  position: fixed;
  right: 1rem;
  top: calc(50% - 3cm);
  z-index: 45;
  display: grid;
  gap: 0.48rem;
  padding: 0.46rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 249, 245, 0.78);
  box-shadow: 0 14px 36px rgba(35, 32, 31, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.social-banner-link {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  color: #000;
  background: rgba(255, 255, 255, 0.88);
  transition:
    transform 180ms ease,
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.social-banner-link:hover,
.social-banner-link:focus-visible {
  color: var(--brand-orange);
  background: #fff;
  box-shadow: 0 10px 22px rgba(255, 88, 0, 0.16);
  transform: translateY(-1px);
}

.social-banner-link svg {
  width: 1.22rem;
  height: 1.22rem;
  fill: currentColor;
}

.social-banner-link:nth-child(2) svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.faq-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1rem;
}

.faq-modal[hidden] {
  display: none;
}

.faq-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(35, 32, 31, 0.46);
  backdrop-filter: blur(8px);
}

.faq-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 50rem);
  max-height: min(86svh, 44rem);
  overflow: auto;
  padding: 1.2rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 30px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 88, 0, 0.12), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 236, 229, 0.94));
  box-shadow: var(--shadow-strong);
}

.faq-close {
  position: sticky;
  top: 0;
  z-index: 2;
  display: inline-flex;
  margin-left: auto;
  margin-bottom: 1rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #000;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-list details {
  padding: 0.95rem 1rem;
  border: 1px solid rgba(35, 32, 31, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
}

.faq-list summary {
  cursor: pointer;
  color: #000;
  font-size: 0.9rem;
  font-weight: 700;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list p {
  margin-top: 0.7rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 650ms ease,
    transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes hero-drift {
  0% {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  50% {
    transform: scale(1.07) translate3d(-1.2%, 0.8%, 0);
  }

  100% {
    transform: scale(1.04) translate3d(1.2%, -0.8%, 0);
  }
}

@keyframes cloud9-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@media (min-width: 981px) {
  .site-main {
    scroll-snap-type: y proximity;
  }

  .viewport-section {
    scroll-snap-align: start;
  }
}

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

  .reveal,
  .graphic-frame,
  .graphic-frame img,
  .cloud9-page-frame,
  .camera-page-frame,
  .pmv-card,
  .cloud9-photo-card,
  .camera-photo-card,
  .nav a,
  .button,
  .social-banner-link {
    animation: none !important;
    transition: none !important;
  }
}

@media (max-width: 1240px) {
  .hero-panel,
  .solutions-panel,
  .detail-panel,
  .camera-panel,
  .partnership-panel,
  .contact-panel {
    padding: 1rem;
    gap: 1rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.9rem, 3vw, 2.7rem);
  }

  .hero-graphic-stage {
    min-height: min(50vh, 24rem);
  }

  .cloud9-stage {
    min-height: min(60vh, 29.5rem);
  }

  .camera-stage {
    min-height: min(60vh, 29.5rem);
  }

  .solution-grid,
  .camera-grid,
  .camera-layout,
  .camera-media-stack,
  .camera-application-strip {
    gap: 0.85rem;
  }

  .solution-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .solution-card-body {
    padding: 0.78rem 0.82rem 0.84rem;
  }

  .cloud9-photo-card {
    width: min(100%, 27rem);
    height: min(100%, 26rem);
  }

  .camera-photo-card {
    width: min(100%, 27rem);
    height: min(100%, 26rem);
  }
}

@media (max-width: 980px) {
  .viewport-section {
    min-height: auto;
    padding-block: 1.2rem;
  }

  .panel {
    min-height: auto;
  }

  .hero-panel,
  .detail-panel,
  .partnership-panel,
  .contact-panel,
  .thank-you-panel {
    grid-template-columns: 1fr;
    align-items: stretch;
  }

  .hero-aside {
    grid-template-rows: auto auto;
    align-self: stretch;
  }

  .hero-copy,
  .detail-copy,
  .partnership-copy,
  .contact-copy {
    max-width: none;
  }

  .pmv-widget {
    max-width: none;
  }

  .solution-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .camera-layout,
  .camera-media-stack,
  .camera-application-strip {
    grid-template-columns: 1fr;
  }

  .camera-grid,
  .detail-visual-room,
  .detail-stat-grid,
  .detail-stat-grid-two,
  .privacy-content {
    grid-template-columns: 1fr;
  }

  .hero-graphic-stage {
    min-height: 22rem;
  }

  .detail-panel-cloud {
    grid-template-columns: 1fr;
  }

  .detail-panel-cameras {
    grid-template-columns: 1fr;
  }

  .cloud9-stage {
    min-height: 24.5rem;
  }

  .camera-stage {
    min-height: 24.5rem;
  }

  .cloud9-photo-card {
    width: min(100%, 24rem);
    height: 22.5rem;
  }

  .camera-photo-card {
    width: min(100%, 24rem);
    height: 22.5rem;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
  }

  .cookie-consent-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  html {
    scroll-padding-top: 6.15rem;
  }

  .site-shell {
    padding-bottom: 4.9rem;
  }

  .topbar {
    top: 0.7rem;
    padding: 0.92rem 1rem;
    border-radius: 28px;
    flex-wrap: wrap;
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .brand-horizontal {
    height: 2.1rem;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    padding-top: 0.4rem;
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    width: 100%;
    padding-inline: 0.2rem;
  }

  .site-main {
    padding-top: 5.95rem;
  }

  .topbar,
  .viewport-section,
  .footer {
    width: min(calc(100% - 1rem), var(--max-width));
  }

  .viewport-section {
    padding-block: 0.8rem 1.3rem;
  }

  .hero-panel,
  .solutions-panel,
  .detail-panel,
  .camera-panel,
  .partnership-panel,
  .contact-panel {
    padding: 0.9rem;
  }

  .hero-panel {
    margin-top: -0.2rem;
  }

  .hero-graphic-stage {
    min-height: 16.5rem;
    border-radius: 26px;
  }

  .cloud9-stage {
    min-height: 22rem;
    border-radius: 26px;
    padding: 0.9rem;
  }

  .camera-stage {
    min-height: 22rem;
    border-radius: 26px;
    padding: 0.9rem;
  }

  .cloud9-photo-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .camera-photo-card {
    width: 100%;
    height: 100%;
    border-radius: 20px;
  }

  .equine-visual {
    display: grid;
    min-width: 0;
  }

  .equine-stage {
    min-height: 21rem;
  }

  .equine-photo-card {
    width: 100%;
    height: 20rem;
  }

  .hero-graphic-indicators {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .section-header h2,
  .detail-copy h2,
  .partnership-copy h2,
  .contact-copy h2,
  .faq-dialog h2 {
    font-size: clamp(1.45rem, 7vw, 1.95rem);
  }

  .hero-intro,
  .section-header p,
  .detail-copy p,
  .partnership-copy p,
  .contact-copy p,
  .contact-direct a,
  .solution-card p,
  .camera-card-copy p,
  .form-note,
  .pmv-card p,
  .faq-list p {
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .hero-actions,
  .detail-links,
  .contact-badges {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .button,
  .detail-links .button {
    width: 100%;
    min-width: 0;
  }

  .pmv-panels {
    min-height: 9rem;
  }

  .solution-grid {
    grid-template-columns: 1fr;
  }

  .camera-layout,
  .camera-media-stack,
  .camera-application-strip {
    grid-template-columns: 1fr;
  }

  .detail-side-card img {
    aspect-ratio: 16 / 11;
  }

  .contact-form {
    padding: 0.9rem;
  }

  .contact-form .form-check {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .form-check input {
    margin-top: 0;
  }

  .thank-you-panel,
  .privacy-panel {
    padding: 0.9rem;
  }

  .thank-you-copy h1,
  .privacy-panel h1 {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .thank-you-media img {
    min-height: 16.5rem;
  }

  .cookie-consent {
    width: min(calc(100% - 1rem), 28rem);
    max-height: calc(100svh - 1.5rem);
    overflow: auto;
    padding: 0.78rem;
    border-radius: 24px;
  }

  .cookie-consent-options,
  .cookie-consent-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-consent-options label,
  .cookie-consent-actions .button {
    width: 100%;
  }

  .social-banner {
    top: auto;
    right: auto;
    bottom: calc(0.75rem + 3cm);
    left: 50%;
    display: flex;
    transform: translateX(-50%);
  }

  .social-banner-link {
    width: 2.55rem;
    height: 2.55rem;
  }

  .social-banner-link svg {
    width: 1.12rem;
    height: 1.12rem;
  }

  .faq-dialog {
    padding: 1rem;
  }

  .footer {
    display: flex;
    flex-direction: column;
  }
}
