* {
  box-sizing: border-box;
}

:root {
  color-scheme: dark;
  --bg: #07121c;
  --bg-deep: #0b1f31;
  --sea-abyss: #0a2940;
  --sea-deep: #103854;
  --sea-mid: #1b5373;
  --sea-surface: #7cb9d1;
  --surface: rgba(8, 28, 43, 0.54);
  --surface-strong: rgba(7, 24, 39, 0.78);
  --surface-soft: rgba(255, 255, 255, 0.05);
  --surface-line: rgba(255, 255, 255, 0.11);
  --text: #f5f8fc;
  --muted: rgba(225, 236, 246, 0.76);
  --accent: #88d9f7;
  --accent-strong: #afefff;
  --sand: #ffdca5;
  --sunset: #ffbf81;
  --sunset-soft: rgba(255, 190, 129, 0.36);
  --marina-light: rgba(248, 221, 170, 0.24);
  --success: #8ef0c4;
  --shadow: 0 30px 100px rgba(2, 11, 20, 0.46);
  --shadow-lux: 0 42px 128px rgba(2, 10, 18, 0.48);
  --shadow-lift: 0 18px 48px rgba(2, 10, 18, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content-width: 1180px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 225, 185, 0.06), transparent 16%),
    radial-gradient(circle at 50% -8%, rgba(255, 198, 139, 0.14), transparent 26%),
    radial-gradient(circle at 18% 10%, rgba(116, 191, 223, 0.1), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(109, 174, 204, 0.07), transparent 20%),
    linear-gradient(180deg, #06111a 0%, #091b2a 26%, #0b2538 58%, #0f3954 100%);
  color: var(--text);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(circle at 32% 14%, rgba(255, 255, 255, 0.014), transparent 0.9%),
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.012), transparent 0.8%),
    radial-gradient(circle at 58% 46%, rgba(255, 255, 255, 0.01), transparent 0.7%),
    radial-gradient(circle at 18% 22%, rgba(173, 219, 236, 0.04), transparent 22%),
    radial-gradient(circle at 82% 18%, rgba(255, 215, 168, 0.036), transparent 18%),
    radial-gradient(circle at 76% 36%, rgba(141, 206, 232, 0.034), transparent 20%),
    radial-gradient(circle at 50% 70%, rgba(86, 141, 170, 0.055), transparent 30%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.012) 48%, transparent 100%);
  filter: blur(30px);
  opacity: 0.82;
  animation: bodyDrift 46s ease-in-out infinite;
}

body::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 14%, transparent 84%, rgba(255, 255, 255, 0.014)),
    radial-gradient(ellipse at 50% 8%, rgba(255, 221, 175, 0.035), transparent 24%),
    linear-gradient(90deg, rgba(7, 18, 28, 0.14), transparent 18%, transparent 82%, rgba(7, 18, 28, 0.18));
  opacity: 0.66;
  mix-blend-mode: screen;
}

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

.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  padding: 24px 24px 188px;
  background:
    radial-gradient(circle at 50% 18%, rgba(247, 210, 158, 0.1), transparent 14%),
    radial-gradient(circle at 50% 11%, rgba(255, 191, 126, 0.16), transparent 18%),
    linear-gradient(180deg, rgba(4, 11, 18, 0.98) 0%, rgba(8, 20, 31, 0.93) 24%, rgba(9, 28, 44, 0.84) 52%, rgba(11, 46, 69, 0.98) 100%);
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__backdrop::before {
  content: "";
  position: absolute;
  inset: auto 0 17% 0;
  height: 16%;
  background:
    linear-gradient(180deg, rgba(255, 222, 177, 0.045), rgba(118, 181, 209, 0.024) 38%, transparent 100%),
    radial-gradient(ellipse at center, rgba(176, 218, 235, 0.036), transparent 74%),
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.012) 52%, transparent 100%);
  filter: blur(34px);
  opacity: 0.62;
}

.hero__backdrop::after {
  content: "";
  position: absolute;
  left: 10%;
  right: 10%;
  bottom: 23%;
  height: 14%;
  background: radial-gradient(ellipse at center, rgba(255, 231, 198, 0.065) 0%, rgba(129, 194, 224, 0.034) 42%, transparent 74%);
  filter: blur(40px);
  opacity: 0.64;
  animation: oceanGlow 32s ease-in-out infinite;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 62%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 18%, transparent 92%, rgba(6, 14, 22, 0.12)),
    radial-gradient(circle at 50% 18%, rgba(255, 225, 188, 0.038), transparent 26%),
    linear-gradient(90deg, rgba(5, 12, 19, 0.28), transparent 20%, transparent 78%, rgba(5, 12, 19, 0.3));
  pointer-events: none;
  z-index: 1;
}

.hero__glow,
.hero__horizon,
.hero__reflection,
.hero__rays,
.hero__harbor-lights {
  position: absolute;
}

.hero__glow--sunset {
  top: 8%;
  left: 50%;
  width: 68vw;
  height: 34vw;
  min-width: 620px;
  min-height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255, 193, 128, 0.2) 0%, rgba(255, 193, 128, 0.1) 34%, rgba(255, 209, 164, 0.05) 52%, transparent 80%);
  filter: blur(38px);
  animation: ambientFloat 22s ease-in-out infinite;
}

.hero__glow--sea {
  right: -6%;
  bottom: 22%;
  width: 48vw;
  height: 34vw;
  background: radial-gradient(circle, rgba(88, 168, 211, 0.24) 0%, rgba(88, 168, 211, 0.09) 32%, transparent 72%);
  filter: blur(38px);
  animation: ambientPulse 34s ease-in-out infinite;
}

.hero__glow--mist {
  left: 4%;
  bottom: 18%;
  width: 40vw;
  height: 24vw;
  background: radial-gradient(circle, rgba(213, 237, 247, 0.08) 0%, transparent 70%);
  filter: blur(42px);
  animation: ambientDrift 38s linear infinite;
}

.hero__rays {
  top: -8%;
  width: 36vw;
  height: 54%;
  opacity: 0.28;
  filter: blur(10px);
  background:
    linear-gradient(112deg, transparent 0%, rgba(255, 222, 179, 0.09) 36%, transparent 64%),
    linear-gradient(120deg, transparent 0%, rgba(180, 228, 246, 0.08) 40%, transparent 72%);
  animation: rayShift 26s ease-in-out infinite;
}

.hero__rays--left {
  left: -6%;
  transform: rotate(4deg);
}

.hero__rays--right {
  right: -10%;
  transform: rotate(-8deg);
  animation-direction: reverse;
}

.hero__horizon {
  left: -4%;
  right: -4%;
  bottom: 26%;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 220, 167, 0.12) 18%, rgba(151, 216, 241, 0.32) 50%, rgba(255, 220, 167, 0.12) 82%, transparent 100%);
  box-shadow:
    0 0 24px rgba(141, 224, 255, 0.08),
    0 0 44px rgba(255, 191, 126, 0.04);
  opacity: 0.56;
}

.hero__horizon::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -18px;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(189, 224, 239, 0.05), transparent 74%);
  filter: blur(16px);
  opacity: 0.58;
}

.hero__reflection {
  left: 50%;
  bottom: 2%;
  width: 46vw;
  min-width: 360px;
  height: 42%;
  transform: translateX(-50%);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 214, 164, 0.11) 0%, rgba(141, 211, 239, 0.05) 34%, rgba(24, 77, 106, 0.025) 58%, transparent 78%);
  clip-path: ellipse(34% 62% at 50% 38%);
  filter: blur(28px);
  opacity: 0.42;
  animation: shimmer 30s ease-in-out infinite;
}

.hero__reflection::before {
  content: "";
  position: absolute;
  inset: 10% 24% 12% 24%;
  background:
    repeating-linear-gradient(
      180deg,
      rgba(255, 241, 218, 0.045) 0,
      rgba(255, 241, 218, 0.045) 1px,
      rgba(126, 205, 239, 0.02) 7px,
      transparent 16px
    );
  filter: blur(10px);
  opacity: 0.2;
  animation: shimmerLines 26s ease-in-out infinite;
}

.hero__harbor-lights {
  left: 16%;
  right: 16%;
  bottom: 27%;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  opacity: 0.28;
}

.hero__harbor-lights span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 227, 183, 0.95);
  box-shadow:
    0 0 12px rgba(255, 227, 183, 0.8),
    0 0 28px rgba(125, 210, 240, 0.12);
  animation: harborBlink 6s ease-in-out infinite;
}

.hero__harbor-lights span:nth-child(2) {
  animation-delay: 0.7s;
}

.hero__harbor-lights span:nth-child(3) {
  animation-delay: 1.4s;
}

.hero__harbor-lights span:nth-child(4) {
  animation-delay: 2.1s;
}

.hero__harbor-lights span:nth-child(5) {
  animation-delay: 2.8s;
}

.topbar,
.hero__content,
.features,
.product-preview,
.guest-portal,
.trust-layer,
.cta-panel {
  position: relative;
  z-index: 2;
  max-width: var(--content-width);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.092);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.078), rgba(255, 255, 255, 0.028)),
    rgba(8, 24, 36, 0.34);
  backdrop-filter: blur(24px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.22);
  transition: background 600ms ease, border-color 600ms ease, box-shadow 600ms ease, transform 600ms ease;
}

.topbar:hover {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.034)),
    rgba(9, 27, 40, 0.39);
  border-color: rgba(255, 255, 255, 0.118);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.24);
}

.brand {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.topbar__actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar__portal {
  white-space: nowrap;
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(18px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: background 500ms ease, border-color 500ms ease;
}

.language-switcher:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
}

.language-switcher__button {
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(245, 248, 252, 0.72);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.language-switcher__button:hover,
.language-switcher__button:focus-visible,
.language-switcher__button.is-active {
  color: var(--text);
  text-shadow: 0 0 18px rgba(141, 224, 255, 0.35);
}

.language-switcher__divider {
  color: rgba(255, 255, 255, 0.3);
}

.hero__content {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 450px);
  gap: 54px;
  align-items: center;
  padding-top: 92px;
}

.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero__content::before {
  top: 6%;
  right: -1%;
  width: 42%;
  height: 74%;
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 16%, transparent 84%, rgba(255, 255, 255, 0.01)),
    repeating-linear-gradient(
      90deg,
      rgba(162, 214, 233, 0.024) 0,
      rgba(162, 214, 233, 0.024) 1px,
      transparent 1px,
      transparent 56px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 222, 177, 0.012) 0,
      rgba(255, 222, 177, 0.012) 1px,
      transparent 1px,
      transparent 52px
    ),
    linear-gradient(180deg, rgba(8, 20, 31, 0.16), rgba(4, 10, 16, 0.22));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.022),
    inset 0 -22px 48px rgba(3, 11, 19, 0.24);
  filter: blur(22px);
  opacity: 0.28;
}

.hero__content::after {
  right: 4%;
  bottom: 12%;
  width: 36%;
  height: 34%;
  background:
    radial-gradient(ellipse at center, rgba(255, 217, 168, 0.072) 0%, rgba(145, 211, 237, 0.038) 38%, transparent 76%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.012) 44%, transparent 100%);
  filter: blur(32px);
  opacity: 0.5;
}

.hero__copy {
  max-width: 660px;
  position: relative;
  z-index: 1;
  animation: sectionReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.eyebrow,
.section-heading__eyebrow,
.preview-card__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 220, 170, 0.88);
}

.eyebrow::before,
.section-heading__eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: rgba(255, 216, 156, 0.76);
}

.hero h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2rem, 3.08vw, 2.92rem);
  line-height: 1.12;
  letter-spacing: -0.052em;
  text-wrap: balance;
  text-wrap: pretty;
}

.hero__text,
.feature-card p,
.cta-panel p,
.status-list dd,
.status-list dt,
.preview-stat__label {
  color: var(--muted);
}

.hero__text {
  max-width: 560px;
  margin: 36px 0 0;
  font-size: 0.985rem;
  line-height: 1.96;
  letter-spacing: 0.002em;
  color: rgba(230, 239, 247, 0.78);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 40px;
}

.hero__flow {
  max-width: 44ch;
  margin: 18px 0 0;
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(228, 237, 245, 0.7);
  font-size: 0.84rem;
  line-height: 1.6;
  letter-spacing: 0.01em;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 520ms ease, background 520ms ease, box-shadow 520ms ease, opacity 520ms ease, color 520ms ease, filter 520ms ease;
  will-change: transform;
}

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

.button--primary {
  background: linear-gradient(135deg, #ffd8a0 0%, #98e6ff 56%, #65bee8 100%);
  color: #082236;
  box-shadow:
    0 14px 34px rgba(117, 198, 235, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button--primary:hover,
.button--primary:focus-visible {
  box-shadow:
    0 18px 38px rgba(117, 198, 235, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  filter: saturate(1.03);
}

.button--secondary,
.button--ghost {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.032);
  color: rgba(245, 248, 252, 0.92);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.024);
}

.button--secondary:hover,
.button--ghost:hover,
.button--secondary:focus-visible,
.button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.044);
}

.button--tertiary {
  border-color: rgba(255, 255, 255, 0.075);
  background: transparent;
  color: rgba(245, 248, 252, 0.8);
}

.button--tertiary:hover,
.button--tertiary:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.022);
  color: rgba(255, 248, 241, 0.92);
}

.preview-card {
  position: relative;
  padding: 29px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.062), rgba(255, 255, 255, 0.014)),
    linear-gradient(160deg, rgba(10, 34, 52, 0.86), rgba(7, 24, 39, 0.7));
  backdrop-filter: blur(34px) saturate(118%);
  box-shadow:
    var(--shadow-lux),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 42px rgba(76, 131, 160, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.01);
  overflow: hidden;
  transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1), border-color 760ms ease, box-shadow 760ms ease, background 760ms ease;
  animation: sectionReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both 80ms;
}

.preview-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(142deg, rgba(255, 217, 155, 0.09), transparent 28%),
    radial-gradient(circle at 82% 14%, rgba(169, 235, 255, 0.072), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), transparent 20%, rgba(255, 255, 255, 0.01) 100%);
  pointer-events: none;
}

.preview-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 36px 110px rgba(2, 11, 20, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    inset 0 -18px 42px rgba(76, 131, 160, 0.058);
}

.preview-card::after {
  content: "";
  position: absolute;
  inset: auto -10% -20% 34%;
  height: 62%;
  background: radial-gradient(circle, rgba(255, 201, 134, 0.15) 0%, rgba(104, 190, 227, 0.08) 28%, transparent 70%);
  filter: blur(28px);
  pointer-events: none;
  animation: panelGlow 30s ease-in-out infinite;
}

.preview-card__topline,
.preview-card__header,
.preview-card__meta,
.status-list {
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.08);
}

.preview-card__topline,
.preview-card__header,
.preview-card__meta,
.status-list {
  position: relative;
  z-index: 1;
}

.preview-card__topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.preview-card__topline::after {
  content: "";
  flex: 1 1 100%;
  height: 1px;
  margin-top: 6px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 82%);
  opacity: 0.42;
}

.preview-card__signal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.026);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.026);
  font-size: 0.78rem;
  color: rgba(242, 247, 252, 0.84);
  animation: signalGlow 9s ease-in-out infinite;
}

.preview-card__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8ef0c4;
  box-shadow: 0 0 12px rgba(142, 240, 196, 0.5);
}

.preview-card__dot--warm {
  background: #ffd28d;
  box-shadow: 0 0 12px rgba(255, 210, 141, 0.45);
}

.preview-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.preview-card__label {
  margin-bottom: 9px;
  color: rgba(175, 239, 255, 0.9);
}

.preview-card h2 {
  margin: 0;
  font-size: 1.64rem;
  line-height: 1.08;
  letter-spacing: -0.026em;
}

.status-pill {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.036);
  font-size: 0.82rem;
  color: rgba(255, 220, 170, 0.92);
}

.preview-card__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 24px;
}

.preview-stat {
  padding: 14px 15px 13px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.013)),
    rgba(255, 255, 255, 0.017);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -10px 24px rgba(90, 147, 177, 0.03);
}

.preview-stat__label {
  display: block;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.preview-stat__value {
  display: block;
  margin-top: 7px;
  font-size: 0.95rem;
  color: var(--text);
}

.status-list {
  margin: 0;
}

.status-list__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.status-list__row:first-child {
  border-top: 0;
  padding-top: 0;
}

.status-list dt,
.status-list dd {
  margin: 0;
  font-size: 0.98rem;
}

.status-list dd {
  text-align: right;
  color: var(--text);
}

.status-list__value--ready,
.status-list__value--clear {
  color: var(--success);
}

.hero__waves {
  position: absolute;
  inset: auto 0 0;
  height: 154px;
  overflow: hidden;
  z-index: 1;
  opacity: 0.34;
}

.wave {
  position: absolute;
  left: -7%;
  width: 114%;
  border-radius: 50% 50% 0 0;
  transform-origin: center bottom;
}

.wave--far {
  bottom: -10px;
  height: 48px;
  background:
    linear-gradient(180deg, rgba(202, 230, 238, 0.018), rgba(57, 125, 156, 0.028));
  opacity: 0.1;
  filter: blur(18px);
  animation: swellFar 40s ease-in-out infinite;
}

.wave--back {
  bottom: -44px;
  height: 78px;
  background:
    radial-gradient(ellipse at 48% 22%, rgba(255, 209, 144, 0.025), transparent 42%),
    linear-gradient(180deg, rgba(53, 115, 151, 0.035), rgba(9, 42, 66, 0.08));
  opacity: 0.12;
  filter: blur(20px);
  animation: swellBack 34s ease-in-out infinite;
}

.wave--mid {
  bottom: -58px;
  height: 90px;
  background:
    linear-gradient(180deg, rgba(124, 191, 218, 0.032), rgba(13, 56, 84, 0.09));
  opacity: 0.13;
  filter: blur(22px);
  animation: swellMid 28s ease-in-out infinite;
}

.wave--front {
  bottom: -72px;
  height: 104px;
  background:
    linear-gradient(180deg, rgba(255, 226, 181, 0.022), rgba(8, 35, 54, 0.1));
  opacity: 0.11;
  filter: blur(24px);
  animation: swellFront 22s ease-in-out infinite;
}

.wave--foam {
  bottom: 18px;
  left: -4%;
  width: 108%;
  height: 34px;
  background:
    radial-gradient(ellipse at 12% 55%, rgba(255, 255, 255, 0.05), transparent 34%),
    radial-gradient(ellipse at 34% 42%, rgba(255, 255, 255, 0.04), transparent 28%),
    radial-gradient(ellipse at 62% 50%, rgba(255, 234, 205, 0.05), transparent 30%),
    radial-gradient(ellipse at 84% 44%, rgba(255, 255, 255, 0.04), transparent 28%);
  filter: blur(10px);
  opacity: 0.04;
  animation: foamDrift 22s ease-in-out infinite;
}

.wave-haze {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 34px;
  height: 42px;
  background: linear-gradient(180deg, rgba(160, 210, 230, 0.028), rgba(77, 134, 164, 0.016) 48%, transparent 88%);
  filter: blur(24px);
  opacity: 0.34;
}

main {
  position: relative;
  z-index: 2;
  margin-top: 18px;
  padding: 0 24px 32px;
}

main::before {
  content: "";
  position: absolute;
  left: 4%;
  right: 4%;
  top: -28px;
  height: 54px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(162, 214, 233, 0.11) 0%, rgba(90, 143, 171, 0.06) 42%, transparent 76%);
  filter: blur(22px);
  opacity: 0.66;
  pointer-events: none;
}

main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -2px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(174, 214, 231, 0.18) 18%, rgba(255, 223, 179, 0.14) 50%, rgba(174, 214, 231, 0.18) 82%, transparent 100%);
  opacity: 0.48;
  pointer-events: none;
}

.features {
  position: relative;
  padding: 48px 0 0;
}

.features::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: -18px;
  height: 40px;
  background: radial-gradient(ellipse at center, rgba(146, 204, 226, 0.07), transparent 74%);
  filter: blur(24px);
  opacity: 0.58;
  pointer-events: none;
}

.features::after {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: -44px;
  height: 88px;
  background:
    linear-gradient(180deg, rgba(8, 18, 28, 0.02), rgba(8, 18, 28, 0.14) 58%, transparent 100%),
    radial-gradient(ellipse at center, rgba(137, 202, 229, 0.04), transparent 72%);
  filter: blur(26px);
  opacity: 0.62;
  pointer-events: none;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 30px;
}

.section-heading--trust {
  margin-top: 72px;
  margin-bottom: 30px;
}

.section-heading h2,
.cta-panel h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(1.9rem, 3.15vw, 2.85rem);
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-bottom: 22px;
}

.feature-card,
.cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.016)),
    var(--surface-strong);
  box-shadow:
    var(--shadow-lux),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -14px 34px rgba(84, 139, 168, 0.04);
}

.feature-card {
  position: relative;
  padding: 30px 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), border-color 700ms ease, box-shadow 700ms ease, background 700ms ease;
  animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 214, 150, 0.06), transparent 24%),
    radial-gradient(circle at 80% 0%, rgba(159, 230, 255, 0.06), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 26%);
  pointer-events: none;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: auto -12% -18% 30%;
  height: 56%;
  background: radial-gradient(circle, rgba(255, 215, 164, 0.08) 0%, rgba(111, 190, 224, 0.05) 30%, transparent 72%);
  filter: blur(24px);
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.09);
  box-shadow:
    0 38px 120px rgba(2, 11, 20, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.034),
    inset 0 -14px 34px rgba(84, 139, 168, 0.045);
}

.feature-card:hover::after {
  opacity: 0.46;
  transform: translateX(4px);
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(141, 224, 255, 0.25), rgba(255, 226, 173, 0.14));
  color: var(--accent-strong);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.feature-card h3,
.feature-card p {
  position: relative;
  z-index: 1;
}

.feature-card h3 {
  margin: 0 0 18px;
  font-size: 1.16rem;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.feature-card p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.88;
  color: rgba(229, 238, 246, 0.76);
}

.trust-layer {
  position: relative;
  padding-top: 14px;
}

.product-preview {
  position: relative;
  padding-top: 88px;
}

.product-preview::before {
  content: "";
  position: absolute;
  left: 6%;
  right: 6%;
  top: 24px;
  height: 112px;
  background:
    radial-gradient(ellipse at center, rgba(154, 214, 236, 0.06), transparent 68%),
    linear-gradient(180deg, rgba(255, 232, 194, 0.03), transparent 58%);
  filter: blur(26px);
  opacity: 0.64;
  pointer-events: none;
}

.section-heading--product {
  max-width: 860px;
  margin-top: 74px;
  margin-bottom: 34px;
}

.section-heading--product h2 {
  max-width: 16ch;
}

.product-preview__stage {
  position: relative;
}

.product-preview__stage::before {
  content: "";
  position: absolute;
  inset: 2% 8% auto;
  height: 28%;
  background:
    radial-gradient(ellipse at center, rgba(255, 223, 180, 0.045) 0%, rgba(143, 210, 236, 0.035) 42%, transparent 76%);
  filter: blur(34px);
  opacity: 0.62;
  pointer-events: none;
}

.showcase-console {
  position: relative;
  padding: 30px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.012)),
    linear-gradient(160deg, rgba(9, 29, 44, 0.84), rgba(7, 22, 34, 0.72));
  backdrop-filter: blur(28px) saturate(118%);
  box-shadow:
    var(--shadow-lux),
    inset 0 1px 0 rgba(255, 255, 255, 0.032),
    inset 0 -18px 38px rgba(88, 144, 171, 0.035);
  overflow: hidden;
  animation: sectionReveal 920ms cubic-bezier(0.22, 1, 0.36, 1) both 120ms;
}

.showcase-console::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 220, 174, 0.055), transparent 22%),
    radial-gradient(circle at 86% 12%, rgba(156, 228, 250, 0.06), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 22%);
  pointer-events: none;
}

.showcase-console::after {
  content: "";
  position: absolute;
  left: 16%;
  right: 14%;
  bottom: -8%;
  height: 24%;
  background:
    radial-gradient(ellipse at center, rgba(255, 226, 185, 0.055) 0%, rgba(122, 194, 226, 0.038) 44%, transparent 78%);
  filter: blur(28px);
  opacity: 0.58;
  pointer-events: none;
}

.showcase-console__body::before {
  content: "";
  position: absolute;
  left: 34%;
  right: 23%;
  bottom: 8%;
  height: 34%;
  border-radius: 32px;
  background:
    radial-gradient(ellipse at center, rgba(143, 207, 231, 0.032) 0%, transparent 72%),
    repeating-linear-gradient(
      90deg,
      rgba(171, 223, 243, 0.014) 0,
      rgba(171, 223, 243, 0.014) 1px,
      transparent 1px,
      transparent 54px
    ),
    repeating-linear-gradient(
      180deg,
      rgba(255, 225, 182, 0.01) 0,
      rgba(255, 225, 182, 0.01) 1px,
      transparent 1px,
      transparent 48px
    );
  filter: blur(16px);
  opacity: 0.34;
  pointer-events: none;
}

.showcase-console__body::after {
  content: "";
  position: absolute;
  left: 41%;
  bottom: 11%;
  width: 25%;
  height: 24%;
  border-radius: 999px;
  background:
    linear-gradient(124deg, transparent 0%, rgba(183, 229, 246, 0.038) 41%, transparent 58%),
    linear-gradient(144deg, transparent 0%, rgba(255, 221, 172, 0.028) 48%, transparent 66%);
  filter: blur(14px);
  opacity: 0.28;
  pointer-events: none;
}

.showcase-console__header,
.showcase-console__body {
  position: relative;
  z-index: 1;
}

.showcase-console__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}

.showcase-console__eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(175, 238, 255, 0.84);
}

.showcase-console__header h3 {
  margin: 0;
  font-size: 1.28rem;
  line-height: 1.18;
  letter-spacing: -0.026em;
}

.showcase-console__signals {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.showcase-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(241, 246, 251, 0.86);
  font-size: 0.79rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.026);
}

.showcase-pill--live {
  color: rgba(212, 248, 231, 0.94);
}

.showcase-console__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.18fr) minmax(280px, 0.98fr);
  gap: 20px;
  align-items: start;
}

.showcase-column {
  display: grid;
  gap: 20px;
}

.showcase-panel {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.01)),
    linear-gradient(160deg, rgba(11, 31, 46, 0.78), rgba(8, 24, 36, 0.66));
  box-shadow:
    var(--shadow-lift),
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    inset 0 -12px 30px rgba(83, 137, 164, 0.024);
  backdrop-filter: blur(22px) saturate(114%);
  overflow: hidden;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1), border-color 520ms ease, box-shadow 520ms ease;
}

.showcase-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(152deg, rgba(255, 220, 176, 0.045), transparent 24%),
    radial-gradient(circle at 88% 10%, rgba(159, 228, 249, 0.042), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 20%);
  pointer-events: none;
}

.showcase-panel:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 22px 64px rgba(2, 11, 20, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -12px 30px rgba(83, 137, 164, 0.028);
}

.showcase-panel--compact {
  min-height: 164px;
}

.showcase-panel--hero {
  min-height: 100%;
  padding: 24px;
}

.showcase-panel__topline,
.property-hero,
.status-chip-grid,
.ops-rows,
.timeline-list,
.portal-preview,
.mini-list,
.partner-grid {
  position: relative;
  z-index: 1;
}

.showcase-panel__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.showcase-panel__label,
.showcase-panel__meta {
  margin: 0;
}

.showcase-panel__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 221, 173, 0.8);
}

.showcase-panel__meta {
  color: rgba(226, 236, 245, 0.62);
  font-size: 0.74rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.timeline-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.timeline-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 15px;
  align-items: start;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.timeline-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.timeline-item__time {
  min-width: 50px;
  color: rgba(171, 235, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.timeline-item__body strong {
  display: block;
  margin-bottom: 7px;
  font-size: 0.93rem;
  line-height: 1.38;
  letter-spacing: -0.012em;
}

.timeline-item__body p {
  margin: 0;
  color: rgba(231, 240, 248, 0.8);
  font-size: 0.85rem;
  line-height: 1.76;
}

.timeline-tag {
  grid-column: 2;
  justify-self: start;
  padding: 5px 10px 4px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.022);
  color: rgba(241, 246, 251, 0.8);
  font-size: 0.7rem;
  font-weight: 600;
}

.timeline-tag--active {
  color: rgba(211, 247, 228, 0.94);
}

.timeline-tag--soft {
  color: rgba(182, 236, 255, 0.9);
}

.timeline-tag--attention {
  color: rgba(255, 221, 176, 0.92);
}

.portal-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 96px;
  gap: 18px;
  align-items: center;
}

.portal-preview__card {
  display: grid;
  gap: 9px;
}

.portal-preview__card strong {
  font-size: 0.93rem;
  letter-spacing: -0.012em;
}

.portal-preview__card span {
  color: rgba(231, 240, 247, 0.8);
  font-size: 0.84rem;
  line-height: 1.78;
}

.portal-preview__qr {
  position: relative;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    linear-gradient(145deg, rgba(11, 28, 42, 0.96), rgba(15, 36, 52, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 22px rgba(86, 146, 174, 0.05),
    0 14px 28px rgba(4, 12, 19, 0.22);
  opacity: 0.92;
}

.portal-preview__qr::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(
      90deg,
      transparent 0 7%,
      rgba(219, 238, 248, 0.92) 7% 15%,
      transparent 15% 21%,
      rgba(219, 238, 248, 0.92) 21% 28%,
      transparent 28% 36%,
      rgba(219, 238, 248, 0.92) 36% 43%,
      transparent 43% 52%,
      rgba(219, 238, 248, 0.92) 52% 59%,
      transparent 59% 67%,
      rgba(219, 238, 248, 0.92) 67% 74%,
      transparent 74% 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 6%,
      rgba(219, 238, 248, 0.92) 6% 14%,
      transparent 14% 22%,
      rgba(219, 238, 248, 0.92) 22% 29%,
      transparent 29% 38%,
      rgba(219, 238, 248, 0.92) 38% 45%,
      transparent 45% 55%,
      rgba(219, 238, 248, 0.92) 55% 62%,
      transparent 62% 71%,
      rgba(219, 238, 248, 0.92) 71% 78%,
      transparent 78% 100%
    );
  mix-blend-mode: screen;
  opacity: 0.88;
}

.portal-preview__qr::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 100% 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 0 100%, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 26% 54%, rgba(10, 27, 40, 0.92) 0 6px, transparent 6px),
    radial-gradient(circle at 64% 36%, rgba(10, 27, 40, 0.92) 0 5px, transparent 5px),
    radial-gradient(circle at 78% 74%, rgba(10, 27, 40, 0.92) 0 7px, transparent 7px),
    radial-gradient(circle at 46% 78%, rgba(10, 27, 40, 0.92) 0 4px, transparent 4px);
  box-shadow: inset 0 0 0 1px rgba(219, 238, 248, 0.1);
}

.property-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.property-hero__name {
  margin: 0;
  font-size: 1.42rem;
  font-weight: 680;
  line-height: 1.1;
  letter-spacing: -0.026em;
}

.property-hero__sub {
  margin: 12px 0 0;
  color: rgba(226, 236, 245, 0.72);
  font-size: 0.84rem;
  line-height: 1.76;
}

.status-pill--soft {
  color: rgba(255, 227, 184, 0.86);
  background: rgba(255, 255, 255, 0.026);
}

.status-chip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-bottom: 22px;
}

.status-chip {
  padding: 15px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.048);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.016);
}

.status-chip span,
.mini-list__row span,
.partner-card span,
.ops-row span {
  display: block;
  color: rgba(224, 234, 243, 0.67);
  font-size: 0.72rem;
  line-height: 1.58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-chip strong,
.mini-list__row strong,
.partner-card strong,
.ops-row strong {
  display: block;
  margin-top: 8px;
  font-size: 0.89rem;
  line-height: 1.54;
  letter-spacing: -0.012em;
}

.ops-rows,
.mini-list {
  display: grid;
  gap: 0;
}

.ops-row,
.mini-list__row {
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ops-row:first-child,
.mini-list__row:first-child {
  padding-top: 0;
  border-top: 0;
}

.ops-row:last-child,
.mini-list__row:last-child {
  padding-bottom: 0;
}

.partner-grid {
  display: grid;
  gap: 13px;
}

.partner-card {
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.046);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.014);
}

.guest-portal {
  position: relative;
  padding-top: 100px;
}

.guest-portal::before {
  content: "";
  position: absolute;
  left: 7%;
  right: 7%;
  top: 30px;
  height: 96px;
  background:
    radial-gradient(ellipse at center, rgba(154, 214, 236, 0.05), transparent 68%),
    linear-gradient(180deg, rgba(255, 232, 194, 0.026), transparent 58%);
  filter: blur(26px);
  opacity: 0.58;
  pointer-events: none;
}

.section-heading--guest-portal {
  max-width: 820px;
  margin-top: 78px;
  margin-bottom: 34px;
}

.section-heading--guest-portal h2 {
  max-width: 16ch;
}

.guest-portal__stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.98fr) minmax(280px, 0.82fr);
  gap: 22px;
  align-items: start;
}

.guest-portal__stage::before {
  content: "";
  position: absolute;
  left: 14%;
  right: 18%;
  top: 8%;
  bottom: 8%;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.012), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.012)),
    radial-gradient(ellipse at center, rgba(255, 221, 176, 0.035) 0%, rgba(144, 212, 236, 0.026) 42%, transparent 76%);
  filter: blur(30px);
  opacity: 0.48;
  pointer-events: none;
}

.guest-device,
.guest-sidecard {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.054);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
    linear-gradient(160deg, rgba(10, 30, 45, 0.8), rgba(7, 22, 34, 0.68));
  box-shadow:
    var(--shadow-lux),
    inset 0 1px 0 rgba(255, 255, 255, 0.028),
    inset 0 -16px 34px rgba(84, 139, 168, 0.024);
  backdrop-filter: blur(26px) saturate(116%);
  overflow: hidden;
}

.guest-device::before,
.guest-sidecard::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 219, 170, 0.05), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(156, 226, 248, 0.048), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 22%);
  pointer-events: none;
}

.guest-device {
  border-radius: 34px;
  padding: 17px;
}

.guest-device__frame {
  position: relative;
  z-index: 1;
  max-width: 430px;
  margin: 0 auto;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.028), rgba(255, 255, 255, 0.01)),
    rgba(6, 19, 29, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -12px 28px rgba(84, 139, 168, 0.02);
}

.guest-device__topbar,
.guest-block,
.guest-access-card,
.guest-sidecard {
  position: relative;
  z-index: 1;
}

.guest-device__topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.guest-device__eyebrow {
  margin: 0 0 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 221, 173, 0.78);
}

.guest-device__topbar h3 {
  margin: 0;
  font-size: 1.12rem;
  line-height: 1.18;
  letter-spacing: -0.022em;
}

.guest-device__screen {
  display: grid;
  gap: 12px;
}

.guest-block,
.guest-access-card,
.guest-sidecard {
  border: 1px solid rgba(255, 255, 255, 0.046);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.014);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    inset 0 -10px 24px rgba(85, 142, 170, 0.018);
}

.guest-block {
  padding: 17px;
}

.guest-block__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}

.guest-welcome__title {
  margin: 0 0 14px;
  font-size: 0.95rem;
  line-height: 1.52;
  letter-spacing: -0.016em;
}

.guest-arrival-grid,
.guest-status-grid,
.guest-action-grid {
  display: grid;
  gap: 10px;
}

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

.guest-arrival-item,
.guest-status-chip,
.guest-service-item {
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
}

.guest-arrival-item span,
.guest-status-chip span,
.guest-support-row span {
  display: block;
  color: rgba(224, 234, 243, 0.68);
  font-size: 0.7rem;
  line-height: 1.56;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-arrival-item strong,
.guest-status-chip strong,
.guest-service-item strong,
.guest-support-row strong {
  display: block;
  margin-top: 7px;
  font-size: 0.85rem;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

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

.guest-action {
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.016);
  color: rgba(241, 246, 251, 0.9);
  font: inherit;
  font-size: 0.81rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: left;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease, background 420ms ease, box-shadow 420ms ease;
}

.guest-action:hover,
.guest-action:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 10px 24px rgba(2, 11, 20, 0.16);
}

.guest-access-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 104px;
  gap: 16px;
  align-items: center;
  padding: 16px 17px;
}

.guest-access-card__content strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  line-height: 1.4;
  letter-spacing: -0.012em;
}

.guest-access-card__content p {
  margin: 0;
  color: rgba(231, 240, 247, 0.8);
  font-size: 0.8rem;
  line-height: 1.68;
}

.guest-access-card__qr {
  position: relative;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    linear-gradient(145deg, rgba(11, 28, 42, 0.96), rgba(15, 36, 52, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 22px rgba(86, 146, 174, 0.05);
}

.guest-access-card__qr::before {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(
      90deg,
      transparent 0 8%,
      rgba(219, 238, 248, 0.92) 8% 15%,
      transparent 15% 22%,
      rgba(219, 238, 248, 0.92) 22% 29%,
      transparent 29% 37%,
      rgba(219, 238, 248, 0.92) 37% 44%,
      transparent 44% 53%,
      rgba(219, 238, 248, 0.92) 53% 60%,
      transparent 60% 69%,
      rgba(219, 238, 248, 0.92) 69% 76%,
      transparent 76% 100%
    ),
    linear-gradient(
      180deg,
      transparent 0 7%,
      rgba(219, 238, 248, 0.92) 7% 14%,
      transparent 14% 23%,
      rgba(219, 238, 248, 0.92) 23% 30%,
      transparent 30% 39%,
      rgba(219, 238, 248, 0.92) 39% 46%,
      transparent 46% 56%,
      rgba(219, 238, 248, 0.92) 56% 63%,
      transparent 63% 72%,
      rgba(219, 238, 248, 0.92) 72% 79%,
      transparent 79% 100%
    );
  mix-blend-mode: screen;
  opacity: 0.88;
}

.guest-access-card__qr::after {
  content: "";
  position: absolute;
  inset: 13px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 100% 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 0 100%, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 26% 56%, rgba(10, 27, 40, 0.92) 0 6px, transparent 6px),
    radial-gradient(circle at 62% 38%, rgba(10, 27, 40, 0.92) 0 5px, transparent 5px),
    radial-gradient(circle at 76% 74%, rgba(10, 27, 40, 0.92) 0 7px, transparent 7px),
    radial-gradient(circle at 46% 80%, rgba(10, 27, 40, 0.92) 0 4px, transparent 4px);
  box-shadow: inset 0 0 0 1px rgba(219, 238, 248, 0.1);
}

.guest-portal__rail {
  display: grid;
  gap: 16px;
}

.guest-sidecard {
  border-radius: 28px;
  padding: 20px;
}

.guest-service-list,
.guest-support-list {
  display: grid;
  gap: 10px;
}

.guest-service-item span {
  display: block;
  margin-top: 6px;
  color: rgba(231, 240, 247, 0.78);
  font-size: 0.79rem;
  line-height: 1.66;
}

.guest-support-row {
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.guest-support-row:first-child {
  padding-top: 0;
  border-top: 0;
}

.guest-support-row:last-child {
  padding-bottom: 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.trust-card {
  position: relative;
  min-height: 184px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.036), rgba(255, 255, 255, 0.01)),
    linear-gradient(160deg, rgba(8, 27, 41, 0.78), rgba(7, 21, 33, 0.62));
  backdrop-filter: blur(20px);
  box-shadow:
    var(--shadow-lux),
    inset 0 1px 0 rgba(255, 255, 255, 0.026),
    inset 0 -14px 28px rgba(84, 139, 168, 0.028);
  overflow: hidden;
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), border-color 700ms ease, box-shadow 700ms ease, background 700ms ease;
  animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.trust-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(155deg, rgba(255, 219, 169, 0.05), transparent 24%),
    radial-gradient(circle at 84% 12%, rgba(157, 227, 248, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.015), transparent 22%);
  pointer-events: none;
}

.trust-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -20% 35%;
  height: 50%;
  background: radial-gradient(circle, rgba(255, 214, 160, 0.06) 0%, rgba(110, 193, 228, 0.035) 32%, transparent 72%);
  filter: blur(24px);
  opacity: 0.34;
  pointer-events: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.trust-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.084);
  box-shadow:
    0 34px 110px rgba(2, 11, 20, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -14px 28px rgba(84, 139, 168, 0.032);
}

.trust-card:hover::after {
  opacity: 0.46;
  transform: translateX(4px);
}

.trust-card h3,
.trust-card p {
  position: relative;
  z-index: 1;
}

.trust-card h3 {
  margin: 0 0 16px;
  max-width: 15ch;
  font-size: 1.08rem;
  line-height: 1.24;
  letter-spacing: -0.02em;
}

.trust-card p {
  margin: 0;
  color: rgba(229, 238, 246, 0.75);
  font-size: 0.95rem;
  line-height: 1.86;
}

.cta-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 56px auto 72px;
  padding: 32px;
  max-width: calc(var(--content-width) - 48px);
  border-radius: var(--radius-xl);
  position: relative;
  overflow: hidden;
  transition: border-color 700ms ease, box-shadow 700ms ease, transform 700ms ease;
  animation: sectionReveal 900ms cubic-bezier(0.22, 1, 0.36, 1) both 140ms;
}

.cta-panel--pilot {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  align-items: start;
}

.cta-panel__content {
  max-width: 760px;
}

.cta-panel__copy {
  margin: 18px 0 0;
  color: rgba(230, 239, 247, 0.78);
  font-size: 0.98rem;
  line-height: 1.85;
}

.cta-panel__trust {
  margin: 14px 0 0;
  color: rgba(255, 220, 170, 0.82);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-form {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-left: auto;
}

.pilot-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.pilot-form__field {
  display: grid;
  gap: 8px;
}

.pilot-form__field--full {
  grid-column: 1 / -1;
}

.pilot-form__field span {
  color: rgba(244, 248, 252, 0.72);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pilot-form input,
.pilot-form select,
.pilot-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 13px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.pilot-form textarea {
  min-height: 120px;
  resize: vertical;
}

.pilot-form__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.pilot-form__hint {
  margin: 0;
  color: rgba(160, 240, 198, 0.94);
  font-size: 0.9rem;
  line-height: 1.5;
}

.cta-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(255, 219, 169, 0.07), transparent 24%),
    radial-gradient(circle at 88% 18%, rgba(156, 226, 248, 0.07), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.016), transparent 24%);
  pointer-events: none;
}

.cta-panel::after {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 50%;
  height: 34%;
  transform: translateY(-50%);
  background:
    radial-gradient(ellipse at center, rgba(255, 223, 180, 0.08) 0%, rgba(137, 205, 233, 0.05) 40%, transparent 78%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.024), transparent);
  filter: blur(30px);
  opacity: 0.56;
  pointer-events: none;
}

.cta-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 255, 255, 0.104);
  box-shadow: 0 40px 122px rgba(2, 11, 20, 0.4);
}

.cta-panel__content,
.cta-panel > .button {
  position: relative;
  z-index: 1;
}

@keyframes signalGlow {
  0%,
  100% {
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
    opacity: 0.96;
  }

  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.04),
      0 0 0 1px rgba(143, 224, 255, 0.03);
    opacity: 1;
  }
}

@keyframes ambientFloat {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-49%) translateY(10px);
  }
}

@keyframes ambientPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.94;
  }

  50% {
    transform: scale(1.04);
    opacity: 0.72;
  }
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(12px, 8px, 0);
  }

  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes bodyDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.76;
  }

  50% {
    transform: translate3d(0, -10px, 0) scale(1.02);
    opacity: 0.92;
  }
}

@keyframes rayShift {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(0) rotate(0deg);
  }

  50% {
    opacity: 0.32;
    transform: translateX(8px) rotate(2deg);
  }
}

@keyframes shimmer {
  0%,
  100% {
    opacity: 0.76;
    transform: translateX(-50%) scaleY(1);
  }

  50% {
    opacity: 0.96;
    transform: translateX(-49%) scaleY(1.05);
  }
}

@keyframes shimmerLines {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.4;
  }

  50% {
    transform: translateY(6px);
    opacity: 0.62;
  }
}

@keyframes oceanGlow {
  0%,
  100% {
    opacity: 0.66;
    transform: scaleX(1);
  }

  50% {
    opacity: 0.9;
    transform: scaleX(1.04);
  }
}

@keyframes harborBlink {
  0%,
  100% {
    opacity: 0.5;
  }

  50% {
    opacity: 1;
  }
}

@keyframes panelGlow {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.58;
  }

  50% {
    transform: translateX(10px);
    opacity: 0.8;
  }
}

@keyframes swellFar {
  0%,
  100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }

  50% {
    transform: translateX(-0.6%) translateY(2px) scaleX(1.008);
  }
}

@keyframes swellBack {
  0%,
  100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }

  50% {
    transform: translateX(-0.9%) translateY(4px) scaleX(1.01);
  }
}

@keyframes swellMid {
  0%,
  100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }

  50% {
    transform: translateX(0.9%) translateY(5px) scaleX(1.012);
  }
}

@keyframes swellFront {
  0%,
  100% {
    transform: translateX(0) translateY(0) scaleX(1);
  }

  50% {
    transform: translateX(-0.6%) translateY(5px) scaleX(1.01);
  }
}

@keyframes foamDrift {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.38;
  }

  50% {
    transform: translateX(0.8%);
    opacity: 0.34;
  }
}

@keyframes sectionReveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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

  body::before,
  body::after,
  .hero__backdrop::after,
  .hero__glow,
  .hero__rays,
  .hero__reflection::before,
  .hero__harbor-lights span,
  .preview-card::after,
  .feature-card::after,
  .trust-card::after {
    animation: none !important;
  }
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
    padding-bottom: 136px;
  }

  .hero__content,
  .feature-grid,
  .trust-grid,
  .showcase-console__body,
  .guest-portal__stage,
  .preview-card__meta {
    grid-template-columns: 1fr;
  }

  .hero__content {
    gap: 40px;
    padding-top: 56px;
  }

  .hero__flow {
    max-width: 100%;
  }

  .hero h1 {
    max-width: 12ch;
  }

  .section-heading h2,
  .cta-panel h2 {
    max-width: 16ch;
  }

  .preview-card__header,
  .showcase-console__header,
  .showcase-panel__topline,
  .guest-device__topbar,
  .guest-block__topline,
  .guest-access-card,
  .property-hero,
  .cta-panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .guest-device__frame {
    max-width: none;
  }

  .guest-access-card {
    display: grid;
    grid-template-columns: 1fr;
  }

  .guest-portal__rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .showcase-console {
    padding: 22px;
  }

  .showcase-console__signals {
    justify-content: flex-start;
  }

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

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

  .showcase-panel__meta {
    white-space: normal;
  }

  .trust-card {
    min-height: 0;
  }

  .hero__horizon {
    bottom: 24%;
  }
}

@media (max-width: 640px) {
  .hero,
  main {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    padding-bottom: 118px;
  }

  .topbar {
    padding: 12px 14px;
    border-radius: 26px;
  }

  .brand {
    font-size: 0.88rem;
    letter-spacing: 0.06em;
  }

  .topbar__actions {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
  }

  .topbar__portal {
    min-height: 44px;
    width: auto;
    padding-left: 16px;
    padding-right: 16px;
    font-size: 0.9rem;
  }

  .language-switcher {
    padding: 8px 10px;
    gap: 6px;
  }

  .hero__content {
    padding-top: 34px;
    gap: 30px;
  }

  .hero__cta {
    gap: 12px;
  }

  .hero__flow {
    margin-top: 14px;
    padding-left: 14px;
    font-size: 0.8rem;
  }

  .hero__text {
    font-size: 1rem;
    margin-top: 24px;
  }

  .hero h1 {
    max-width: 12ch;
    font-size: clamp(2.1rem, 11vw, 3rem);
    line-height: 1.06;
  }

  .section-heading h2,
  .cta-panel h2 {
    max-width: none;
    font-size: clamp(1.75rem, 8.6vw, 2.35rem);
  }

  .hero__cta .button,
  .cta-panel > .button {
    width: 100%;
  }

  .cta-panel--pilot {
    grid-template-columns: 1fr;
  }

  .pilot-form__grid {
    grid-template-columns: 1fr;
  }

  .pilot-form__footer {
    align-items: stretch;
  }

  .pilot-form__footer .button {
    width: 100%;
  }

  .preview-card,
  .feature-card,
  .trust-card,
  .showcase-console,
  .showcase-panel,
  .guest-device,
  .guest-sidecard,
  .cta-panel {
    padding: 22px;
  }

  .preview-card__topline {
    gap: 8px;
  }

  .preview-card__signal {
    width: 100%;
    justify-content: flex-start;
  }

  .status-list__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .portal-preview,
  .status-chip-grid,
  .guest-arrival-grid,
  .guest-status-grid,
  .guest-action-grid,
  .guest-access-card {
    grid-template-columns: 1fr;
  }

  .guest-portal {
    padding-top: 78px;
  }

  .section-heading--guest-portal {
    margin-top: 62px;
    margin-bottom: 28px;
  }

  .guest-portal__stage,
  .guest-portal__rail {
    gap: 14px;
    grid-template-columns: 1fr;
  }

  .portal-preview__qr {
    width: 80px;
    height: 80px;
  }

  .guest-device {
    padding: 12px;
  }

  .guest-device__frame,
  .guest-block,
  .guest-sidecard,
  .guest-access-card {
    padding: 15px;
  }

  .guest-device__topbar {
    margin-bottom: 12px;
    gap: 10px;
  }

  .guest-device__topbar h3 {
    font-size: 1.04rem;
  }

  .guest-welcome__title {
    font-size: 0.92rem;
    margin-bottom: 12px;
  }

  .guest-action {
    min-height: 54px;
    font-size: 0.8rem;
  }

  .guest-access-card__qr {
    width: 84px;
    height: 84px;
  }

  .status-list dd {
    text-align: left;
  }

  .wave--foam {
    bottom: 18px;
  }
}

.guest-portal-page {
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 222, 176, 0.06), transparent 20%),
    radial-gradient(circle at 18% 12%, rgba(120, 194, 225, 0.08), transparent 24%),
    linear-gradient(180deg, #07111b 0%, #0a1b2a 28%, #0c2c43 72%, #103650 100%);
}

.guest-portal-page .guest-portal-app {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  padding: 18px 14px 32px;
}

.guest-portal-page .guest-portal-shell {
  max-width: 520px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.guest-portal-topbar {
  margin-bottom: 10px;
}

.guest-portal-page .guest-portal-header,
.guest-portal-page .guest-portal-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012)),
    linear-gradient(160deg, rgba(9, 29, 44, 0.82), rgba(7, 22, 34, 0.7));
  box-shadow:
    0 24px 80px rgba(2, 11, 20, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.028),
    inset 0 -14px 30px rgba(84, 139, 168, 0.024);
  backdrop-filter: blur(22px);
}

.guest-portal-page .guest-portal-header::before,
.guest-portal-page .guest-portal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(150deg, rgba(255, 219, 170, 0.05), transparent 24%),
    radial-gradient(circle at 84% 10%, rgba(156, 226, 248, 0.042), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.014), transparent 22%);
  pointer-events: none;
}

.guest-portal-page .guest-portal-header,
.guest-portal-page .guest-portal-card > * {
  position: relative;
  z-index: 1;
}

.guest-portal-page .guest-portal-header {
  padding: 20px 18px 18px;
  border-radius: 28px;
  display: grid;
  gap: 14px;
}

.guest-portal-page .guest-portal-header__eyebrow,
.guest-portal-page .guest-portal-card__label {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 221, 173, 0.8);
}

.guest-portal-page .guest-portal-header h1,
.guest-portal-page .guest-portal-card h2 {
  margin: 0;
  letter-spacing: -0.028em;
}

.guest-portal-page .guest-portal-header h1 {
  font-size: 1.48rem;
  line-height: 1.08;
}

.guest-portal-page .guest-portal-header__text,
.guest-portal-page .guest-portal-card p {
  color: rgba(231, 240, 247, 0.8);
}

.guest-portal-page .guest-portal-header__text {
  margin: 10px 0 0;
  font-size: 0.92rem;
  line-height: 1.72;
}

.guest-portal-page .guest-portal-badge,
.guest-portal-page .guest-portal-timeline__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.028);
  color: rgba(212, 248, 231, 0.94);
  font-size: 0.76rem;
  font-weight: 600;
}

.guest-portal-page .guest-portal-card {
  padding: 18px;
  border-radius: 24px;
}

.guest-portal-page .guest-portal-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.guest-portal-page .guest-portal-card__meta {
  color: rgba(226, 236, 245, 0.64);
  font-size: 0.74rem;
  white-space: nowrap;
}

.guest-portal-page .guest-portal-card h2 {
  font-size: 1.02rem;
  line-height: 1.34;
}

.guest-portal-page .guest-portal-status-grid,
.guest-portal-page .guest-portal-actions,
.guest-portal-page .guest-portal-services {
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.guest-portal-page .guest-portal-status-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guest-portal-page .guest-portal-status,
.guest-portal-page .guest-portal-info,
.guest-portal-page .guest-portal-service {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.022), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.012);
}

.guest-portal-page .guest-portal-status span,
.guest-portal-page .guest-portal-info span,
.guest-portal-page .guest-portal-service span {
  display: block;
  color: rgba(224, 234, 243, 0.68);
  font-size: 0.7rem;
  line-height: 1.58;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.guest-portal-page .guest-portal-status strong,
.guest-portal-page .guest-portal-info strong,
.guest-portal-page .guest-portal-service strong,
.guest-portal-page .guest-portal-timeline__body strong {
  display: block;
  margin-top: 7px;
  font-size: 0.88rem;
  line-height: 1.5;
  letter-spacing: -0.012em;
}

.guest-portal-page .guest-portal-access {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.guest-portal-page .guest-portal-access__details {
  display: grid;
  gap: 10px;
}

.guest-portal-page .guest-portal-instructions {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.012);
}

.guest-portal-page .guest-portal-instructions p {
  margin: 0 0 8px;
  font-size: 0.85rem;
  line-height: 1.7;
}

.guest-portal-page .guest-portal-instructions p:last-child {
  margin-bottom: 0;
}

.guest-portal-page .guest-portal-qr {
  display: grid;
  justify-items: start;
  gap: 10px;
}

.guest-portal-page .guest-portal-qr p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(231, 240, 247, 0.74);
}

.guest-portal-page .guest-portal-qr__code {
  position: relative;
  width: 104px;
  height: 104px;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.016)),
    linear-gradient(145deg, rgba(11, 28, 42, 0.96), rgba(15, 36, 52, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    inset 0 -10px 22px rgba(86, 146, 174, 0.05);
}

.guest-portal-page .guest-portal-qr__code::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    linear-gradient(90deg, transparent 0 8%, rgba(219, 238, 248, 0.92) 8% 15%, transparent 15% 22%, rgba(219, 238, 248, 0.92) 22% 29%, transparent 29% 37%, rgba(219, 238, 248, 0.92) 37% 44%, transparent 44% 53%, rgba(219, 238, 248, 0.92) 53% 60%, transparent 60% 69%, rgba(219, 238, 248, 0.92) 69% 76%, transparent 76% 100%),
    linear-gradient(180deg, transparent 0 7%, rgba(219, 238, 248, 0.92) 7% 14%, transparent 14% 23%, rgba(219, 238, 248, 0.92) 23% 30%, transparent 30% 39%, rgba(219, 238, 248, 0.92) 39% 46%, transparent 46% 56%, rgba(219, 238, 248, 0.92) 56% 63%, transparent 63% 72%, rgba(219, 238, 248, 0.92) 72% 79%, transparent 79% 100%);
  mix-blend-mode: screen;
  opacity: 0.88;
}

.guest-portal-page .guest-portal-qr__code::after {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 12px;
  background:
    radial-gradient(circle at 0 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 100% 0, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 0 100%, rgba(10, 27, 40, 0.98) 0 18px, transparent 18px),
    radial-gradient(circle at 26% 56%, rgba(10, 27, 40, 0.92) 0 6px, transparent 6px),
    radial-gradient(circle at 62% 38%, rgba(10, 27, 40, 0.92) 0 5px, transparent 5px),
    radial-gradient(circle at 76% 74%, rgba(10, 27, 40, 0.92) 0 7px, transparent 7px),
    radial-gradient(circle at 46% 80%, rgba(10, 27, 40, 0.92) 0 4px, transparent 4px);
  box-shadow: inset 0 0 0 1px rgba(219, 238, 248, 0.1);
}

.guest-portal-page .guest-portal-actions {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.guest-portal-page .guest-portal-action {
  min-height: 56px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.026), rgba(255, 255, 255, 0.008)),
    rgba(255, 255, 255, 0.016);
  color: rgba(241, 246, 251, 0.92);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-align: left;
  letter-spacing: -0.01em;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), border-color 420ms ease, background 420ms ease;
}

.guest-portal-page .guest-portal-action:hover,
.guest-portal-page .guest-portal-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.08);
}

.guest-portal-page .guest-portal-timeline {
  display: grid;
  gap: 14px;
  margin-top: 16px;
}

.guest-portal-page .guest-portal-timeline__item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 10px 14px;
  align-items: start;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.guest-portal-page .guest-portal-timeline__item:first-child {
  padding-top: 0;
  border-top: 0;
}

.guest-portal-page .guest-portal-timeline__time {
  min-width: 48px;
  color: rgba(171, 235, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.guest-portal-page .guest-portal-timeline__body p {
  margin: 7px 0 0;
  font-size: 0.84rem;
  line-height: 1.72;
}

.guest-portal-page .guest-portal-timeline__tag {
  grid-column: 2;
  justify-self: start;
  color: rgba(241, 246, 251, 0.82);
}

@media (min-width: 700px) {
  .guest-portal-page .guest-portal-app {
    padding-top: 28px;
    padding-bottom: 44px;
  }

  .guest-portal-page .guest-portal-shell {
    max-width: 760px;
  }

  .guest-portal-page .guest-portal-access {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
}

/* Guest Portal micro-polish pass */
.guest-portal-page .guest-hero,
.guest-portal-page .portal-hero,
.guest-portal-page .guest-portal-hero {
  padding-top: clamp(24px, 4vw, 42px) !important;
  padding-bottom: clamp(24px, 4vw, 42px) !important;
}

.guest-portal-page .guest-hero p,
.guest-portal-page .portal-hero p,
.guest-portal-page .guest-portal-hero p {
  opacity: .72 !important;
  max-width: 760px !important;
  line-height: 1.65 !important;
}

.guest-portal-page .status-pill,
.guest-portal-page .arrival-pill,
.guest-portal-page .portal-pill {
  min-height: 38px !important;
  padding: 10px 18px !important;
  opacity: .9 !important;
}

.guest-portal-page .portal-card,
.guest-portal-page .guest-card,
.guest-portal-page .access-card,
.guest-portal-page .concierge-card {
  border-color: rgba(255,255,255,.075) !important;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.055),
    0 24px 70px rgba(0,0,0,.18) !important;
}

.guest-portal-page .portal-card::before,
.guest-portal-page .guest-card::before,
.guest-portal-page .access-card::before,
.guest-portal-page .concierge-card::before {
  opacity: .45 !important;
}

.guest-portal-page .portal-label,
.guest-portal-page .card-label,
.guest-portal-page .section-label {
  opacity: .68 !important;
  letter-spacing: .12em !important;
  font-weight: 700 !important;
}

.guest-portal-page .portal-value,
.guest-portal-page .card-value,
.guest-portal-page strong {
  color: rgba(255,255,255,.94) !important;
}

.guest-portal-page::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255,255,255,.025) 42%, transparent 68%),
    radial-gradient(circle at 70% 30%, rgba(139,210,255,.035), transparent 38%);
  mix-blend-mode: screen;
  opacity: .55;
}

@media (max-width: 720px) {
  .guest-portal-page .guest-hero,
  .guest-portal-page .portal-hero,
  .guest-portal-page .guest-portal-hero {
    padding: 22px !important;
  }

  .guest-portal-page .portal-card,
  .guest-portal-page .guest-card,
  .guest-portal-page .access-card,
  .guest-portal-page .concierge-card {
    padding: 20px !important;
  }
}


.guest-portal-page{
    scroll-behavior:smooth;
}

.guest-portal-page::before{
    content:"";
    position:fixed;
    inset:-20%;
    background:
        radial-gradient(circle at 20% 20%, rgba(88,140,255,.06), transparent 30%),
        radial-gradient(circle at 80% 30%, rgba(255,210,140,.05), transparent 28%),
        radial-gradient(circle at 50% 80%, rgba(74,163,255,.04), transparent 34%);
    animation:portalAmbientDrift 28s ease-in-out infinite alternate;
    pointer-events:none;
    z-index:0;
}

@keyframes portalAmbientDrift{
    from{
        transform:translate3d(0,0,0) scale(1);
    }
    to{
        transform:translate3d(-2%, -1%, 0) scale(1.04);
    }
}

.guest-portal-shell,
.guest-portal-card{
    position:relative;
    z-index:1;
}

.guest-portal-card{
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease,
        box-shadow .35s ease;
}

.guest-portal-card:hover{
    transform:translateY(-2px);
    border-color:rgba(255,255,255,.08);
    box-shadow:0 18px 50px rgba(0,0,0,.24);
}

.guest-portal-action{
    min-height:58px;
    border-radius:18px;
    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.guest-portal-action:hover{
    transform:translateY(-1px);
    background:rgba(255,255,255,.05);
}

.guest-portal-status-dot{
    width:10px;
    height:10px;
    border-radius:999px;
    background:#8ff0c8;
    box-shadow:0 0 18px rgba(143,240,200,.45);
    animation:statusPulse 2.8s ease-in-out infinite;
}

@keyframes statusPulse{
    0%,100%{
        opacity:.7;
        transform:scale(1);
    }
    50%{
        opacity:1;
        transform:scale(1.18);
    }
}

@media (max-width:768px){

    .guest-portal-shell{
        padding-bottom:120px;
    }

    .guest-portal-card{
        border-radius:26px;
    }

    .guest-portal-action{
        min-height:64px;
        font-size:.95rem;
    }
}


.guest-mobile-dock{
    position:fixed;
    left:50%;
    bottom:22px;
    transform:translateX(-50%);
    width:min(92%, 540px);
    padding:12px;
    display:flex;
    justify-content:space-between;
    gap:10px;
    border-radius:28px;
    background:rgba(7,18,33,.72);
    border:1px solid rgba(255,255,255,.06);
    backdrop-filter:blur(26px);
    -webkit-backdrop-filter:blur(26px);
    box-shadow:
        0 10px 40px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.04);
    z-index:999;
}

.guest-mobile-dock::before{
    content:"";
    position:absolute;
    inset:0;
    border-radius:inherit;
    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.05),
            transparent 38%
        );
    pointer-events:none;
}

.guest-mobile-dock-button{
    flex:1;
    min-height:58px;
    border-radius:18px;
    border:1px solid rgba(255,255,255,.05);
    background:rgba(255,255,255,.03);
    color:#f4f7fb;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.84rem;
    font-weight:600;
    letter-spacing:.02em;
    transition:
        transform .22s ease,
        background .22s ease,
        border-color .22s ease;
}

.guest-mobile-dock-button:hover{
    transform:translateY(-2px);
    background:rgba(255,255,255,.06);
    border-color:rgba(255,255,255,.1);
}

@media (min-width:992px){

    .guest-mobile-dock{
        width:460px;
    }
}


/* Emergency compatibility styling for rebuilt guest_portal.html */
.guest-portal-page {
    min-height: 100vh;
    margin: 0;
    background:
        radial-gradient(circle at 50% 20%, rgba(214, 176, 120, .16), transparent 34%),
        radial-gradient(circle at 20% 70%, rgba(67, 150, 205, .12), transparent 36%),
        #071522;
    color: #f6f8fb;
    font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.guest-portal-shell {
    width: min(92vw, 1120px);
    margin: 0 auto;
    padding: 72px 0 140px;
}

.guest-portal-hero,
.guest-card {
    background: rgba(15, 36, 52, .72);
    border: 1px solid rgba(255,255,255,.075);
    border-radius: 30px;
    padding: clamp(26px, 4vw, 42px);
    margin-bottom: 26px;
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.055),
        0 24px 70px rgba(0,0,0,.2);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.guest-eyebrow,
.guest-card-top span:first-child {
    display: inline-block;
    color: #f1d6a1;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.guest-portal-hero h1 {
    margin: 14px 0 12px;
    font-size: clamp(2.1rem, 5vw, 3.6rem);
    line-height: 1;
}

.guest-portal-hero p,
.guest-card p,
.guest-service-item span {
    color: rgba(235,244,250,.72);
    line-height: 1.65;
}

.guest-arrival-pill {
    margin-top: 22px;
    padding: 14px 18px;
    border-radius: 999px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.06);
    color: #c8f7df;
    font-weight: 800;
    text-align: center;
}

.guest-card-top {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
    color: rgba(235,244,250,.64);
}

.guest-card h2 {
    margin: 0 0 22px;
    font-size: clamp(1.35rem, 3vw, 2rem);
    line-height: 1.15;
}

.guest-status-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.guest-status-item,
.guest-access-box,
.guest-service-item {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.035);
    border: 1px solid rgba(255,255,255,.055);
}

.guest-status-item label,
.guest-access-box label {
    display: block;
    margin-bottom: 10px;
    color: rgba(235,244,250,.58);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: .8rem;
}

.guest-status-item strong,
.guest-access-box strong,
.guest-service-item strong {
    color: rgba(255,255,255,.96);
    font-size: 1.02rem;
}

.guest-access-layout {
    display: grid;
    grid-template-columns: 1fr 220px;
    gap: 22px;
    align-items: start;
}

.guest-access-left {
    display: grid;
    gap: 16px;
}

.guest-instructions {
    padding: 20px;
    border-radius: 22px;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.045);
}

.guest-qr-block {
    display: grid;
    justify-items: center;
    gap: 14px;
    color: rgba(235,244,250,.7);
    text-align: center;
}

.guest-qr-visual {
    width: 118px;
    height: 118px;
    border-radius: 24px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.9) 10%, transparent 10% 20%, rgba(255,255,255,.9) 20% 30%, transparent 30% 40%, rgba(255,255,255,.9) 40% 50%, transparent 50% 60%, rgba(255,255,255,.9) 60% 70%, transparent 70%),
        linear-gradient(rgba(255,255,255,.9) 10%, transparent 10% 20%, rgba(255,255,255,.9) 20% 30%, transparent 30% 40%, rgba(255,255,255,.9) 40% 50%, transparent 50% 60%, rgba(255,255,255,.9) 60% 70%, transparent 70%),
        #0b1b2b;
    opacity: .86;
}

.guest-service-list {
    display: grid;
    gap: 14px;
}

.guest-floating-actions {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    width: min(92%, 540px);
    padding: 12px;
    display: flex;
    gap: 10px;
    border-radius: 28px;
    background: rgba(7,18,33,.78);
    border: 1px solid rgba(255,255,255,.07);
    backdrop-filter: blur(26px);
    -webkit-backdrop-filter: blur(26px);
    box-shadow: 0 16px 48px rgba(0,0,0,.38);
    z-index: 999;
}

.guest-action {
    flex: 1;
    min-height: 58px;
    border: 1px solid rgba(255,255,255,.06);
    border-radius: 18px;
    background: rgba(255,255,255,.035);
    color: #f6f8fb;
    font-weight: 800;
    cursor: pointer;
}

.guest-action-danger {
    color: #ffe4e4;
}

@media (max-width: 760px) {
    .guest-portal-shell {
        padding-top: 28px;
    }

    .guest-status-grid,
    .guest-access-layout {
        grid-template-columns: 1fr;
    }

    .guest-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .guest-floating-actions {
        width: calc(100% - 24px);
        bottom: 12px;
    }

    .guest-action {
        min-height: 54px;
        font-size: .82rem;
    }
}


/* Guest dock correction */
.guest-floating-actions {
    bottom: 14px !important;
    width: min(88%, 460px) !important;
    padding: 9px !important;
    border-radius: 24px !important;
}

.guest-action {
    min-height: 48px !important;
    border-radius: 15px !important;
    font-size: .8rem !important;
}

.guest-portal-shell {
    padding-bottom: 180px !important;
}

@media (min-width: 900px) {
    .guest-floating-actions {
        width: 430px !important;
        opacity: .96;
    }
}


/* Guest dock: mobile only */
@media (min-width: 769px) {
    .guest-floating-actions,
    .guest-mobile-dock {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .guest-floating-actions,
    .guest-mobile-dock {
        display: flex !important;
    }
}

.guest-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        background 180ms ease,
        box-shadow 180ms ease,
        color 180ms ease;
}

.guest-action:hover,
.guest-action:focus-visible {
    transform: translateY(-1px);
}

.guest-action-danger {
    border-color: rgba(255, 214, 176, 0.18) !important;
    background:
        linear-gradient(180deg, rgba(255, 214, 176, 0.08), rgba(255, 255, 255, 0.02)),
        rgba(16, 28, 40, 0.96);
    color: #fff2eb;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(255, 214, 176, 0.06);
}

.guest-action-danger:hover,
.guest-action-danger:focus-visible {
    border-color: rgba(255, 221, 187, 0.26) !important;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.06),
        0 12px 28px rgba(2, 11, 20, 0.2);
}

.guest-action-helper {
    margin: 16px 0 0;
    padding: 0 2px;
    color: rgba(231, 240, 247, 0.72);
    font-size: 0.84rem;
    line-height: 1.5;
    text-align: center;
}

@media (max-width: 768px) {
    .guest-floating-actions {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
    }

    .guest-action {
        min-height: 50px !important;
        border-radius: 16px !important;
        font-size: 0.82rem !important;
        padding-inline: 10px;
    }

    .guest-action-helper {
        margin-top: 14px;
        padding: 0 4px;
        font-size: 0.8rem;
    }
}

.hero__signal-row,
.trust-strip,
.guest-live-strip,
.guest-trust-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero__signal-row {
    margin-top: 18px;
}

.hero__signal-chip,
.trust-strip__chip,
.guest-live-chip,
.guest-trust-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.075);
    border-radius: 999px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.012)),
        rgba(255, 255, 255, 0.022);
    color: rgba(240, 246, 251, 0.84);
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.03),
        0 8px 22px rgba(2, 11, 20, 0.12);
}

.hero__signal-chip--live,
.guest-live-chip--live,
.preview-card__signal--live,
.status-pill--live,
.showcase-pill--live {
    border-color: rgba(143, 224, 255, 0.14);
    background:
        linear-gradient(135deg, rgba(143, 224, 255, 0.1), rgba(255, 255, 255, 0.015)),
        rgba(255, 255, 255, 0.025);
    color: rgba(224, 247, 255, 0.95);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.05),
        0 0 0 1px rgba(143, 224, 255, 0.06),
        0 10px 26px rgba(2, 11, 20, 0.12);
    animation: liveGlow 6.5s ease-in-out infinite;
}

.preview-card__signal--soft {
    color: rgba(241, 246, 251, 0.8);
}

.preview-card__signal--live {
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.preview-stat--wide {
    grid-column: 1 / -1;
}

.trust-strip {
    margin-top: 18px;
}

.trust-strip__chip {
    letter-spacing: 0.09em;
}

.guest-live-strip {
    margin-top: 16px;
}

.guest-live-chip,
.guest-trust-chip {
    min-height: 32px;
    font-size: 0.74rem;
    letter-spacing: 0.07em;
}

.guest-trust-strip {
    margin: 20px 0 0;
    justify-content: center;
}

.guest-trust-chip {
    border-color: rgba(255, 255, 255, 0.065);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.032), rgba(255, 255, 255, 0.01)),
        rgba(255, 255, 255, 0.016);
}

.guest-portal-shell .guest-portal-hero {
    animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.guest-portal-shell > #wifi-access {
    animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both 60ms;
}

.guest-portal-shell > .guest-card:nth-of-type(3) {
    animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both 120ms;
}

.guest-portal-shell > .guest-card:nth-of-type(5) {
    animation: sectionReveal 860ms cubic-bezier(0.22, 1, 0.36, 1) both 180ms;
}

.guest-floating-actions {
    padding: max(12px, env(safe-area-inset-bottom)) 12px 12px;
    bottom: max(12px, env(safe-area-inset-bottom)) !important;
    width: min(92%, 560px) !important;
    border-radius: 26px !important;
    background: rgba(7, 18, 33, 0.8);
}

.guest-action {
    will-change: transform;
}

.guest-action:active {
    transform: translateY(0) scale(0.98);
}

.guest-portal-shell {
    padding-bottom: 210px !important;
}

.guest-action-danger {
    position: relative;
    overflow: hidden;
}

.guest-action-danger::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    opacity: 0.32;
    pointer-events: none;
}

@keyframes liveGlow {
    0%,
    100% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.05),
            0 0 0 1px rgba(143, 224, 255, 0.06),
            0 10px 26px rgba(2, 11, 20, 0.12);
        filter: brightness(1);
    }

    50% {
        box-shadow:
            inset 0 1px 0 rgba(255, 255, 255, 0.06),
            0 0 0 1px rgba(143, 224, 255, 0.08),
            0 12px 30px rgba(2, 11, 20, 0.14);
        filter: brightness(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero__signal-chip--live,
    .guest-live-chip--live,
    .preview-card__signal--live,
    .status-pill--live,
    .showcase-pill--live {
        animation: none !important;
    }

    .guest-portal-shell .guest-card,
    .guest-portal-shell .guest-portal-hero,
    .feature-card,
    .trust-card,
    .preview-card,
    .showcase-console {
        animation: none !important;
    }
}

@media (max-width: 768px) {
    .hero__signal-row {
        margin-top: 14px;
    }

    .hero__signal-chip,
    .trust-strip__chip,
    .guest-live-chip,
    .guest-trust-chip {
        min-height: 32px;
        padding-inline: 10px;
        font-size: 0.7rem;
    }

    .trust-strip,
    .guest-live-strip,
    .guest-trust-strip {
        gap: 8px;
    }

    .guest-floating-actions {
        display: grid !important;
        width: calc(100% - 16px) !important;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        padding: 10px !important;
        border-radius: 24px !important;
    }

    .guest-portal-shell {
        padding-bottom: 235px !important;
    }

    .guest-action {
        min-height: 52px !important;
        font-size: 0.8rem !important;
    }
}

/* Demo operations page */
body.operations-demo-page {
    font-family: "Segoe UI", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
    background:
        radial-gradient(circle at 15% 12%, rgba(242, 213, 171, 0.18), transparent 18%),
        radial-gradient(circle at 84% 14%, rgba(122, 183, 214, 0.16), transparent 20%),
        radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.04), transparent 18%),
        linear-gradient(180deg, #07131d 0%, #081a27 34%, #0a2434 62%, #0d3348 100%);
}

body.operations-demo-page.operations-modal-open {
    overflow: hidden;
}

.operations-demo-page__ambient {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.operations-demo-page__orb,
.operations-demo-page__marina-blur,
.operations-demo-page__grain {
    position: absolute;
}

.operations-demo-page__orb {
    border-radius: 50%;
    filter: blur(18px);
    opacity: 0.85;
}

.operations-demo-page__orb--gold {
    top: 6%;
    left: -8%;
    width: 34vw;
    height: 34vw;
    min-width: 280px;
    min-height: 280px;
    background: radial-gradient(circle, rgba(255, 214, 162, 0.24), rgba(255, 214, 162, 0.04) 58%, transparent 76%);
}

.operations-demo-page__orb--sea {
    right: -10%;
    top: 18%;
    width: 36vw;
    height: 32vw;
    min-width: 300px;
    min-height: 260px;
    background: radial-gradient(circle, rgba(126, 195, 223, 0.24), rgba(126, 195, 223, 0.06) 58%, transparent 78%);
}

.operations-demo-page__marina-blur {
    inset: auto 10% 12% 10%;
    height: 30vh;
    background:
        radial-gradient(ellipse at 50% 10%, rgba(247, 222, 181, 0.08), transparent 36%),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent 24%, transparent 76%, rgba(255, 255, 255, 0.02));
    filter: blur(38px);
    opacity: 0.82;
}

.operations-demo-page__grain {
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 32px 32px;
    opacity: 0.07;
    mix-blend-mode: soft-light;
}

.operations-hero,
.operations-shell {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
}

.operations-hero {
    padding: 22px 0 36px;
}

.operations-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background: rgba(8, 20, 31, 0.44);
    backdrop-filter: blur(24px);
    box-shadow: 0 18px 42px rgba(2, 8, 14, 0.24);
}

.operations-brand {
    color: var(--text);
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.operations-topbar__status {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.operations-chip,
.operations-status-pill,
.operations-button {
    border-radius: 999px;
}

.operations-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(245, 248, 252, 0.82);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-chip--live {
    border-color: rgba(144, 225, 255, 0.16);
    background: linear-gradient(135deg, rgba(144, 225, 255, 0.12), rgba(255, 255, 255, 0.02));
    color: rgba(232, 250, 255, 0.96);
}

.operations-chip--soft {
    color: rgba(241, 247, 251, 0.72);
}

.operations-topbar .operations-button {
    padding-inline: 16px;
}

.operations-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid transparent;
    color: var(--text);
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

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

.operations-button--primary {
    background: linear-gradient(135deg, rgba(255, 225, 179, 0.94), rgba(148, 221, 246, 0.82));
    color: #0a1b25;
    box-shadow: 0 18px 34px rgba(4, 10, 16, 0.26);
}

.operations-button--secondary,
.operations-button--ghost {
    border-color: rgba(255, 255, 255, 0.09);
    background: rgba(255, 255, 255, 0.03);
}

.operations-button--ghost {
    color: rgba(245, 248, 252, 0.88);
}

.operations-button--full {
    width: 100%;
}

.operations-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.92fr);
    gap: 28px;
    align-items: center;
    padding: 54px 0 12px;
}

.operations-hero__copy {
    max-width: 660px;
}

.operations-eyebrow,
.operations-panel__eyebrow,
.operations-modal__eyebrow,
.operations-preview-card__label {
    margin: 0 0 16px;
    color: rgba(255, 223, 173, 0.9);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.operations-hero h1,
.operations-preview-card h2,
.operations-panel h2,
.operations-panel h3,
.operations-modal h2 {
    margin: 0;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.operations-hero h1 {
    max-width: 640px;
    font-size: clamp(2.4rem, 4.5vw, 4.8rem);
    line-height: 0.96;
}

.operations-hero__text,
.operations-panel__copy,
.operations-modal__copy,
.operations-notification p,
.operations-list__item p,
.operations-kpi p,
.operations-overview__item strong + time,
.operations-workflow__step span {
    color: rgba(230, 239, 247, 0.72);
}

.operations-hero__text {
    max-width: 640px;
    margin: 24px 0 0;
    font-size: 1rem;
    line-height: 1.9;
}

.operations-hero__cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.operations-signal-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.operations-hero__preview,
.operations-panel,
.operations-modal__dialog {
    border: 1px solid rgba(255, 255, 255, 0.08);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
        rgba(8, 20, 31, 0.62);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow-lux);
}

.operations-hero__preview {
    border-radius: 34px;
    padding: 20px;
}

.operations-preview-card__topline,
.operations-preview-card__headline,
.operations-panel__header,
.operations-list__item,
.operations-overview {
    display: flex;
    gap: 12px;
}

.operations-preview-card__topline,
.operations-panel__header {
    align-items: center;
    justify-content: space-between;
}

.operations-preview-card__time {
    color: rgba(244, 248, 252, 0.64);
    font-size: 0.84rem;
}

.operations-preview-card__headline {
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.operations-preview-card h2 {
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1.06;
}

.operations-status-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border: 1px solid rgba(144, 225, 255, 0.14);
    background: rgba(144, 225, 255, 0.09);
    color: rgba(228, 248, 255, 0.95);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.operations-status-pill--soft {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: rgba(244, 248, 252, 0.78);
}

.operations-status-pill--warning {
    border-color: rgba(255, 206, 151, 0.18);
    background: rgba(255, 206, 151, 0.08);
    color: rgba(255, 237, 214, 0.95);
}

.operations-preview-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.operations-preview-stat,
.operations-kpi,
.operations-panel,
.operations-workflow__step,
.operations-sla__item,
.operations-notification,
.operations-list__item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
}

.operations-preview-stat {
    padding: 16px;
    border-radius: 22px;
}

.operations-preview-stat span,
.operations-kpi__label,
.operations-sla__item span {
    display: block;
    color: rgba(244, 248, 252, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-preview-stat strong,
.operations-kpi__value,
.operations-sla__item strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 1.25rem;
}

.operations-preview-card__notes {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.operations-preview-card__notes > div {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.operations-preview-card__notes span,
.operations-list__time,
.operations-notification time {
    color: rgba(255, 223, 173, 0.94);
    font-size: 0.78rem;
    letter-spacing: 0.04em;
    white-space: nowrap;
}

.operations-preview-card__notes strong,
.operations-panel h2,
.operations-panel h3,
.operations-workflow__step strong,
.operations-list__item strong,
.operations-notification p {
    margin: 0;
}

.operations-shell {
    padding: 12px 0 120px;
}

.operations-kpis {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.operations-kpi {
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow-lift);
}

.operations-kpi p {
    margin: 12px 0 0;
    line-height: 1.6;
    font-size: 0.92rem;
}

.operations-dashboard {
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(300px, 0.7fr);
    gap: 18px;
    margin-top: 18px;
}

.operations-dashboard__main {
    display: grid;
    gap: 18px;
}

.operations-panel {
    border-radius: 28px;
    padding: 20px;
}

.operations-panel--wide {
    padding: 24px;
}

.operations-panel--ambient {
    background:
        radial-gradient(circle at 84% 14%, rgba(143, 224, 255, 0.08), transparent 26%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.022)),
        rgba(8, 20, 31, 0.58);
}

.operations-overview {
    align-items: center;
    gap: 18px;
    margin-top: 20px;
}

.operations-overview__ring {
    position: relative;
    width: 220px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at center, rgba(7, 18, 28, 0.92) 0 54%, transparent 55%),
        conic-gradient(from 210deg, rgba(255, 221, 174, 0.96) 0 316deg, rgba(255, 255, 255, 0.06) 316deg 360deg);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.operations-overview__ring-core {
    position: absolute;
    inset: 22px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(10, 26, 39, 0.88);
    text-align: center;
}

.operations-overview__ring-core span,
.operations-overview__ring-core small {
    color: rgba(244, 248, 252, 0.62);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-overview__ring-core strong {
    margin: 8px 0;
    font-size: 2.8rem;
    line-height: 1;
}

.operations-overview__list {
    flex: 1;
    display: grid;
    gap: 12px;
}

.operations-overview__item {
    padding: 16px 18px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.operations-overview__item span,
.operations-workflow__step strong,
.operations-list__badge,
.operations-list__badge--soft,
.operations-list__badge--warning {
    display: inline-flex;
    align-items: center;
}

.operations-overview__item span,
.operations-list__item p,
.operations-overview__item time,
.operations-panel__copy {
    font-size: 0.9rem;
}

.operations-overview__item strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
}

.operations-overview__item time {
    display: block;
    margin-top: 8px;
}

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

.operations-list,
.operations-workflow,
.operations-notifications,
.operations-sla {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.operations-list__item {
    align-items: flex-start;
    padding: 16px;
    border-radius: 20px;
}

.operations-list__item p {
    margin: 8px 0 0;
    line-height: 1.6;
}

.operations-list__time {
    min-width: 58px;
}

.operations-list__badge {
    min-height: 28px;
    padding: 0 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    color: rgba(244, 248, 252, 0.82);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-list__badge--soft {
    background: rgba(143, 224, 255, 0.08);
    color: rgba(224, 247, 255, 0.96);
}

.operations-list__badge--warning {
    background: rgba(255, 206, 151, 0.12);
    color: rgba(255, 229, 196, 0.96);
}

.operations-list--compact .operations-list__item {
    gap: 12px;
}

.operations-workflow__step {
    padding: 16px 18px;
    border-radius: 22px;
}

.operations-workflow__step--done {
    border-color: rgba(143, 224, 255, 0.14);
    background: rgba(143, 224, 255, 0.05);
}

.operations-notification {
    padding: 16px 18px;
    border-radius: 22px;
}

.operations-notification time {
    display: block;
    margin-bottom: 8px;
}

.operations-sla__item {
    padding: 16px 18px;
    border-radius: 22px;
}

.operations-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 20;
}

.operations-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.operations-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 12, 18, 0.64);
    backdrop-filter: blur(14px);
}

.operations-modal__dialog {
    position: relative;
    width: min(680px, 100%);
    border-radius: 30px;
    padding: 26px;
    z-index: 1;
}

.operations-modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.3rem;
    cursor: pointer;
}

.operations-form {
    display: grid;
    gap: 14px;
    margin-top: 22px;
}

.operations-form label {
    display: grid;
    gap: 8px;
}

.operations-form span {
    color: rgba(244, 248, 252, 0.72);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-form input,
.operations-form select,
.operations-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 13px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text);
    font: inherit;
}

.operations-form textarea {
    min-height: 124px;
    resize: vertical;
}

.operations-form__response {
    min-height: 1.4em;
    margin: 0;
    color: rgba(160, 240, 198, 0.96);
    font-size: 0.92rem;
}

.operations-form__trust {
    margin: 4px 0 0;
    color: rgba(255, 220, 170, 0.82);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.operations-mobile-dock,
.operations-floating-cta {
    position: fixed;
    z-index: 12;
}

.operations-floating-cta {
    right: 18px;
    bottom: 18px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    background:
        linear-gradient(135deg, rgba(255, 223, 173, 0.96), rgba(143, 224, 255, 0.84));
    color: #07131d;
    font-weight: 800;
    box-shadow: 0 18px 36px rgba(4, 12, 18, 0.28);
}

.operations-mobile-dock {
    left: 50%;
    bottom: max(14px, env(safe-area-inset-bottom));
    transform: translateX(-50%);
    width: min(94vw, 560px);
    display: flex;
    gap: 10px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 26px;
    background: rgba(7, 18, 27, 0.84);
    backdrop-filter: blur(22px);
    box-shadow: 0 16px 42px rgba(2, 10, 16, 0.32);
}

.operations-mobile-dock__button {
    flex: 1;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.035);
    color: var(--text);
    font-weight: 700;
}

.operations-mobile-dock__button--secondary {
    color: rgba(245, 248, 252, 0.82);
}

@media (min-width: 900px) {
    .operations-mobile-dock {
        display: none;
    }
}

@media (max-width: 1080px) {
    .operations-hero__grid,
    .operations-dashboard {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 760px) {
    .operations-hero {
        padding-top: 16px;
    }

    .operations-topbar {
        padding: 12px 14px;
        border-radius: 28px;
        flex-wrap: wrap;
    }

    .operations-topbar__status {
        width: 100%;
        justify-content: flex-start;
    }

    .operations-hero__grid {
        padding-top: 28px;
        gap: 20px;
    }

    .operations-hero__text {
        margin-top: 18px;
    }

    .operations-hero__cta-row {
        margin-top: 22px;
    }

    .operations-kpis,
    .operations-grid {
        grid-template-columns: 1fr;
    }

    .operations-overview {
        flex-direction: column;
        align-items: stretch;
    }

    .operations-overview__ring {
        width: min(100%, 250px);
        margin-inline: auto;
    }

    .operations-panel {
        padding: 18px;
    }

    .operations-panel--wide {
        padding: 18px;
    }

    .operations-modal {
        padding: 12px;
    }

    .operations-modal__dialog {
        padding: 20px;
        border-radius: 24px;
    }

    .operations-floating-cta {
        right: 12px;
        bottom: 90px;
        min-height: 50px;
    }
}

