:root {
  color-scheme: dark;
  --bg: #050816;
  --bg-soft: #070b14;
  --bg-elevated: #0b1020;
  --card: rgba(255, 255, 255, 0.065);
  --card-strong: rgba(255, 255, 255, 0.105);
  --card-border: rgba(255, 255, 255, 0.14);
  --text: #f7fbff;
  --muted: #a8b3c7;
  --muted-2: #718097;
  --primary: #38bdf8;
  --primary-2: #22d3ee;
  --green: #35d07f;
  --orange: #ff7a3d;
  --purple: #a78bfa;
  --gold: #f6c65b;
  --tech: #7dd3fc;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.42);
  --glow: 0 0 42px rgba(56, 189, 248, 0.22);
  --container: 1180px;
}

/* 2026 brand refresh: lighter premium portfolio layer and app detail pages. */
:root {
  color-scheme: light;
  --bg: #f4f7fb;
  --bg-soft: #eaf1f8;
  --bg-elevated: #ffffff;
  --card: rgba(255, 255, 255, 0.88);
  --card-strong: #ffffff;
  --card-border: rgba(15, 23, 42, 0.12);
  --text: #102033;
  --muted: #526174;
  --muted-2: #728197;
  --primary: #2563eb;
  --primary-2: #0891b2;
  --green: #059669;
  --orange: #d97706;
  --purple: #7c3aed;
  --gold: #b7791f;
  --shadow: 0 22px 60px rgba(15, 23, 42, 0.12);
  --glow: 0 16px 42px rgba(37, 99, 235, 0.16);
}

body {
  background:
    radial-gradient(circle at 12% 8%, rgba(37, 99, 235, 0.11), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(8, 145, 178, 0.1), transparent 30rem),
    linear-gradient(180deg, var(--bg-soft), var(--bg) 44%, #ffffff);
}

body::before {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(15, 23, 42, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, 0.045) 1px, transparent 1px);
}

.site-header {
  border-bottom-color: rgba(15, 23, 42, 0.09);
  background: rgba(255, 255, 255, 0.82);
}

.nav-cta,
.button.secondary,
.preview-card,
.app-card,
.mini-app-card,
.detail-card,
.private-card,
.contact-shell,
.salescopilot-shell,
.app-device-frame,
.feature-grid article,
.app-gallery figure {
  border-color: var(--card-border);
  background: var(--card);
  box-shadow: 0 16px 44px rgba(15, 23, 42, 0.09);
}

.button.primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
}

.hero {
  min-height: auto;
  padding-top: clamp(54px, 8vw, 96px);
  padding-bottom: clamp(54px, 8vw, 96px);
}

.portfolio-preview .section-heading p,
.hero-description {
  max-width: 760px;
}

.preview-grid,
.app-grid,
.private-grid {
  align-items: stretch;
}

.preview-card,
.app-card,
.mini-app-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.preview-card .button,
.app-card .card-link,
.mini-app-card .card-link {
  margin-top: auto;
}

.status,
.private-status {
  color: #0f2a3f;
  border: 1px solid rgba(37, 99, 235, 0.18);
  background: rgba(37, 99, 235, 0.1);
}

.app-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 440px);
  align-items: center;
  gap: clamp(28px, 5vw, 70px);
  max-width: calc(var(--container) + 80px);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 56px);
}

.app-detail-hero h1 {
  max-width: 780px;
  margin: 12px 0;
  font-size: clamp(44px, 8vw, 88px);
  line-height: 0.96;
}

.app-detail-hero p {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.app-device-frame {
  display: grid;
  place-items: center;
  gap: 14px;
  min-height: 420px;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: 28px;
}

.app-device-frame img,
.app-gallery img {
  max-height: 460px;
  object-fit: contain;
  border-radius: 24px;
}

.app-device-frame figcaption,
.app-gallery figcaption {
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.app-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.app-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: clamp(18px, 5vw, 56px);
}

.app-gallery figure {
  display: grid;
  place-items: center;
  min-height: 320px;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: 24px;
}

@media (max-width: 860px) {
  .app-detail-hero {
    grid-template-columns: 1fr;
  }

  .nav {
    max-width: 100%;
    overflow-x: auto;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 8%, rgba(56, 189, 248, 0.16), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(167, 139, 250, 0.15), transparent 30rem),
    linear-gradient(180deg, var(--bg), #070b14 42%, #050816);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), transparent 72%);
  pointer-events: none;
}

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

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

:focus-visible {
  outline: 3px solid rgba(56, 189, 248, 0.72);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(5, 8, 22, 0.72);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 850;
  letter-spacing: 0;
}

.brand img {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.94rem;
}

.nav a {
  position: relative;
  padding: 9px 10px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
}

.nav a::after {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  content: "";
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  opacity: 0;
  transform: scaleX(0.65);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav a:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.mobile-menu,
.mobile-nav {
  display: none;
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--card-border);
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav-cta {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.button.primary {
  border-color: rgba(56, 189, 248, 0.35);
  background: linear-gradient(135deg, #38bdf8, #22d3ee 48%, #35d07f);
  color: #031018;
  box-shadow: 0 16px 46px rgba(34, 211, 238, 0.25);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.075);
  color: var(--text);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-2px);
  border-color: rgba(56, 189, 248, 0.55);
  box-shadow: var(--glow);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, 520px);
  align-items: center;
  gap: clamp(38px, 7vw, 94px);
  max-width: calc(var(--container) + 112px);
  min-height: calc(100vh - 76px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 122px) clamp(18px, 5vw, 56px);
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: -1;
  content: "";
  border-radius: 999px;
  filter: blur(20px);
}

.hero::before {
  width: 360px;
  height: 360px;
  top: 12%;
  right: 12%;
  background: rgba(56, 189, 248, 0.16);
}

.hero::after {
  width: 300px;
  height: 300px;
  left: 0;
  bottom: 10%;
  background: rgba(53, 208, 127, 0.12);
}

.hero-kicker,
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-kicker span,
.trust-row span,
.status,
.feature-tags li,
.private-tags li {
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.065);
  backdrop-filter: blur(12px);
}

.hero-kicker span {
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.82rem;
}

.eyebrow {
  margin: 24px 0 12px;
  color: var(--primary-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 900px;
  margin-bottom: 22px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #ffffff, #7dd3fc 42%, #35d07f);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.03;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.24rem;
  line-height: 1.2;
}

.hero-text {
  max-width: 760px;
  margin-bottom: 12px;
  color: #dbeafe;
  font-size: clamp(1.18rem, 2vw, 1.55rem);
  font-weight: 650;
}

.hero-description {
  max-width: 720px;
  color: var(--muted);
  font-size: 1.06rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.trust-row {
  margin-top: 24px;
}

.trust-row span {
  padding: 9px 12px;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.88rem;
}

.hero-showcase {
  position: relative;
  min-height: 580px;
}

.hero-phone {
  position: absolute;
  width: min(54vw, 260px);
  border: 8px solid #050816;
  border-radius: 30px;
  background: #050816;
  box-shadow: var(--shadow);
}

.hero-phone-main {
  right: 38%;
  top: 76px;
  z-index: 3;
  animation: floatY 7s ease-in-out infinite;
}

.hero-phone-side {
  right: 4%;
  top: 128px;
  z-index: 2;
  opacity: 0.84;
  animation: floatY 8s ease-in-out infinite reverse;
}

.float-card,
.showcase-glass {
  position: absolute;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.085);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 54px rgba(0, 0, 0, 0.26);
}

.float-card strong,
.float-card small,
.showcase-glass strong,
.showcase-glass span {
  display: block;
}

.float-card small,
.showcase-glass span {
  color: var(--muted);
  font-size: 0.86rem;
}

.float-card.plant {
  left: 0;
  top: 18px;
  animation: floatY 6.2s ease-in-out infinite;
}

.float-card.gym {
  right: 0;
  top: 18px;
  animation: floatY 7.3s ease-in-out infinite reverse;
}

.float-card.lingo {
  left: 12%;
  bottom: 96px;
  animation: floatY 7.8s ease-in-out infinite;
}

.app-mark,
.app-icon,
.benefit-grid span,
.service-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 14px;
  color: #041018;
  font-weight: 950;
}

.showcase-glass {
  right: 0;
  bottom: 26px;
  width: min(100%, 340px);
}

.section {
  position: relative;
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 56px);
}

.section-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.section-heading.compact {
  max-width: 790px;
}

.section-heading p:not(.eyebrow),
.app-card p,
.benefit-grid p,
.project-grid p,
.service-grid p,
.price-panel p,
.legal p,
.contact-shell p {
  color: var(--muted);
}

.salescopilot-promo {
  max-width: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(34, 211, 238, 0.15), transparent 32rem),
    radial-gradient(circle at 82% 12%, rgba(53, 208, 127, 0.1), transparent 28rem);
}

.salescopilot-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px);
}

.salescopilot-copy h2 {
  max-width: 760px;
}

.salescopilot-copy p {
  color: var(--muted);
}

.salescopilot-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.salescopilot-points span {
  padding: 8px 12px;
  border: 1px solid var(--card-border);
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.07);
  font-weight: 850;
}

.salescopilot-visual {
  position: relative;
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.22);
  border-radius: calc(var(--radius) + 10px);
  background:
    linear-gradient(135deg, rgba(56, 189, 248, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.045);
  box-shadow: var(--shadow);
}

.salescopilot-visual img {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  object-fit: cover;
  object-position: left top;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
}

.salescopilot-floating-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  width: min(300px, calc(100% - 68px));
  padding: 18px;
  border: 1px solid rgba(56, 189, 248, 0.24);
  border-radius: var(--radius);
  background: rgba(5, 8, 22, 0.84);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
}

.salescopilot-floating-card strong {
  display: block;
}

.salescopilot-floating-card span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

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

.app-card,
.mini-project,
.service-grid article,
.benefit-grid article,
.private-card,
.legal > div {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.app-card:hover,
.mini-project:hover,
.service-grid article:hover,
.benefit-grid article:hover,
.private-card:hover {
  transform: translateY(-6px);
  border-color: rgba(56, 189, 248, 0.34);
  box-shadow: var(--shadow), var(--glow);
}

.app-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 18px;
}

.card-glow {
  position: absolute;
  inset: -1px;
  z-index: -1;
  opacity: 0.38;
  background: radial-gradient(circle at 20% 0%, var(--accent), transparent 36%);
}

.plant {
  --accent: rgba(53, 208, 127, 0.48);
}

.gym {
  --accent: rgba(255, 122, 61, 0.48);
}

.lingo {
  --accent: rgba(167, 139, 250, 0.52);
}

.salescopilot {
  --accent: rgba(34, 211, 238, 0.5);
}

.pocketpilot {
  --accent: rgba(94, 234, 212, 0.42);
}

.plant .app-mark,
.plant .app-icon {
  background: linear-gradient(135deg, #b7ffd5, var(--green));
}

.gym .app-mark,
.gym .app-icon {
  background: linear-gradient(135deg, #ffd0ad, var(--orange));
}

.lingo .app-mark,
.lingo .app-icon {
  background: linear-gradient(135deg, #ddd6fe, var(--purple));
}

.salescopilot .app-icon {
  background: linear-gradient(135deg, #e0f2fe, #22d3ee);
}

.app-media {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  margin-bottom: 18px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
}

.app-media-wide {
  object-position: left top;
}

.mockup-screen {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text);
  background:
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(8, 13, 32, 0.92), rgba(16, 25, 48, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.mockup-screen::after {
  content: "";
  position: absolute;
  inset: auto -20% -34% 30%;
  height: 120px;
  border-radius: 999px;
  background: var(--accent);
  filter: blur(42px);
  opacity: 0.34;
}

.mockup-topbar,
.mockup-hero-row,
.mockup-stat-grid,
.mockup-list {
  position: relative;
  z-index: 1;
}

.mockup-topbar,
.mockup-hero-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mockup-topbar span,
.mockup-hero-row small,
.mockup-stat-grid small {
  color: rgba(226, 232, 240, 0.68);
}

.mockup-topbar strong {
  padding: 5px 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #f8fafc;
  font-size: 0.78rem;
}

.mockup-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.07));
  font-weight: 950;
}

.mockup-hero-row div,
.mockup-stat-grid span,
.mockup-list span {
  display: grid;
  gap: 4px;
}

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

.mockup-stat-grid span,
.mockup-list span {
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.065);
}

.mockup-chart {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  gap: 8px;
  min-height: 74px;
  padding: 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
}

.mockup-chart i {
  flex: 1;
  min-height: 20px;
  border-radius: 999px 999px 6px 6px;
  background: linear-gradient(180deg, #7dd3fc, #22d3ee);
}

.mockup-list {
  display: grid;
  gap: 8px;
}

.lingo-mockup {
  --accent: rgba(167, 139, 250, 0.52);
  background:
    radial-gradient(circle at 16% 12%, rgba(255, 255, 255, 0.24), transparent 24%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.5), rgba(124, 58, 237, 0.8));
}

.finance-mockup {
  --accent: rgba(56, 189, 248, 0.45);
}

.payroll-mockup {
  --accent: rgba(246, 198, 91, 0.5);
}

.assistant-mockup {
  --accent: rgba(94, 234, 212, 0.45);
}

.trading-mockup {
  --accent: rgba(34, 197, 94, 0.38);
}

.paper-mockup {
  --accent: rgba(125, 211, 252, 0.38);
}

.app-card .card-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-top: 18px;
  border: 1px solid rgba(56, 189, 248, 0.28);
  border-radius: 999px;
  color: var(--primary-2);
  background: rgba(56, 189, 248, 0.09);
  font-weight: 850;
}

.compact-link {
  margin-top: 14px;
  padding: 0 14px;
  min-height: 38px;
  font-size: 0.9rem;
}

.lingo-graphic {
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--text);
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.22), transparent 24%),
    linear-gradient(135deg, rgba(34, 211, 238, 0.48), rgba(167, 139, 250, 0.72));
}

.lingo-graphic span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 76px;
  margin-bottom: 10px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 1.5rem;
  font-weight: 950;
}

.lingo-graphic small {
  display: block;
  max-width: 230px;
  color: rgba(255, 255, 255, 0.82);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.status {
  display: inline-flex;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 850;
}

.category {
  margin-bottom: 8px;
  color: var(--primary-2);
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 18px 0 0;
  list-style: none;
}

.feature-tags li {
  margin: 0;
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.84rem;
}

.screenshot-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 26px;
}

.screenshot-strip .wide-shot {
  grid-column: 1 / -1;
}

.screenshot-strip figure {
  margin: 0;
  padding: 24px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 50% 10%, rgba(56, 189, 248, 0.16), transparent 38%),
    rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(18px);
}

.screenshot-strip img {
  width: min(100%, 270px);
  max-height: 520px;
  margin: 0 auto;
  border: 8px solid #030712;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.screenshot-strip .wide-shot img {
  width: 100%;
  max-height: 520px;
  border-radius: 24px;
  object-position: left top;
}

.screenshot-strip figcaption {
  margin-top: 16px;
  text-align: center;
  color: var(--muted);
}

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

.all-apps {
  margin-top: 22px;
}

.mini-project {
  display: grid;
  grid-template-columns: minmax(190px, 0.85fr) 1fr;
  gap: 18px;
  align-items: stretch;
  padding: 22px;
}

.mini-media {
  min-height: 230px;
  border-radius: var(--radius-sm);
}

.mini-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mini-project .mini-icon {
  width: 78px;
  height: 78px;
  margin-bottom: 14px;
  border-radius: 20px;
  object-fit: cover;
  flex: 0 0 auto;
}

.mini-project .status {
  margin-bottom: 8px;
}

.overview {
  --accent: rgba(56, 189, 248, 0.38);
}

.lohnpilot {
  --accent: rgba(246, 198, 91, 0.42);
}

.service {
  max-width: none;
  background:
    radial-gradient(circle at 80% 20%, rgba(34, 211, 238, 0.16), transparent 30rem),
    linear-gradient(135deg, rgba(56, 189, 248, 0.08), rgba(167, 139, 250, 0.08));
}

.app-detail-section {
  max-width: var(--container);
}

.detail-grid {
  display: grid;
  gap: 18px;
}

.detail-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) minmax(0, 1fr);
  gap: 22px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 12% 0%, rgba(56, 189, 248, 0.12), transparent 28%),
    var(--card);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.detail-card.internal {
  border-color: rgba(125, 211, 252, 0.24);
}

.detail-card img,
.detail-media {
  width: 100%;
  min-height: 250px;
  max-height: 360px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  object-position: top center;
}

.detail-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 18px;
  padding: 0;
  list-style: none;
}

.detail-card li {
  padding: 7px 10px;
  border-radius: 999px;
  color: #dbeafe;
  background: rgba(255, 255, 255, 0.07);
  font-size: 0.84rem;
}

.detail-card p {
  color: var(--muted);
}

.detail-card p strong {
  color: var(--text);
}

.service-shell,
.contact-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: clamp(26px, 5vw, 44px);
  border: 1px solid var(--card-border);
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.095), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(22px);
  box-shadow: var(--shadow);
}

.service-grid,
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-grid article,
.benefit-grid article {
  padding: 22px;
}

.service-grid span,
.benefit-grid span {
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #38bdf8, #22d3ee);
  font-size: 0.9rem;
}

.price-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: 18px;
  padding: 24px;
  border: 1px solid rgba(56, 189, 248, 0.18);
  border-radius: var(--radius);
  background: rgba(3, 16, 24, 0.52);
}

.price-panel p {
  margin-bottom: 0;
}

.private-projects {
  max-width: none;
  background:
    linear-gradient(rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 211, 252, 0.06) 1px, transparent 1px),
    #080d18;
  background-size: 42px 42px;
}

.private-projects > * {
  max-width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.private-projects .eyebrow {
  color: var(--tech);
}

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

.private-card {
  display: grid;
  grid-template-columns: minmax(190px, 0.7fr) 1fr;
  gap: 18px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.private-preview {
  display: grid;
  gap: 12px;
}

.private-card img {
  width: 76px;
  height: 76px;
  border-radius: 18px;
  object-fit: cover;
}

.private-preview .mockup-screen {
  min-height: 220px;
  border-radius: var(--radius-sm);
}

.private-card-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.private-category {
  width: 100%;
  margin-bottom: 0;
  color: var(--tech);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.private-status {
  display: inline-flex;
  padding: 6px 9px;
  border: 1px solid rgba(125, 211, 252, 0.18);
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.09);
  color: #dbeafe;
  font-size: 0.76rem;
  font-weight: 850;
}

.private-status.muted {
  color: var(--muted);
}

.private-card h3 {
  margin-top: 12px;
}

.private-card p,
.private-note {
  color: var(--muted);
}

.private-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.private-tags li {
  padding: 6px 9px;
  border-radius: 999px;
  color: #dbeafe;
  font-size: 0.82rem;
}

.private-note {
  max-width: 980px;
  margin-top: 18px;
  font-size: 0.95rem;
}

.contact-cta {
  max-width: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(53, 208, 127, 0.12), transparent 30rem),
    radial-gradient(circle at 84% 16%, rgba(56, 189, 248, 0.16), transparent 28rem);
}

.contact-shell {
  text-align: left;
}

.contact-shell h2 {
  max-width: 820px;
}

.contact-shell p {
  max-width: 760px;
}

.contact-shell a:not(.button) {
  color: var(--primary-2);
  font-weight: 850;
}

.contact-form,
.newsletter-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  max-width: 820px;
  margin: 28px 0;
}

.newsletter-form {
  grid-template-columns: minmax(0, 1fr);
  padding: 22px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.055);
}

.contact-form label,
.newsletter-form label {
  display: grid;
  gap: 7px;
  color: #dbeafe;
  font-weight: 850;
}

.contact-form .full {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.newsletter-form input {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  color: var(--text);
  background: rgba(5, 8, 22, 0.72);
  font: inherit;
  outline: none;
}

.contact-form input,
.contact-form select {
  padding: 0 14px;
}

.contact-form textarea {
  padding: 12px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.newsletter-form input:focus {
  border-color: rgba(56, 189, 248, 0.72);
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.14);
}

.checkbox {
  display: flex !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--muted) !important;
  font-weight: 600 !important;
}

.checkbox input {
  width: auto;
  min-height: 0;
  margin-top: 6px;
  flex: 0 0 auto;
}

.checkbox a {
  color: var(--primary-2);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.hidden {
  display: none;
}

.form-feedback {
  min-height: 24px;
  color: var(--muted);
  font-weight: 750;
}

.form-feedback.success {
  color: #86efac;
}

.form-feedback.error {
  color: #fca5a5;
}

.button:disabled {
  cursor: wait;
  opacity: 0.68;
  transform: none;
}

.legal {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 56px) clamp(48px, 6vw, 76px);
}

.legal > div {
  padding: 20px;
}

.legal h2 {
  font-size: 1.1rem;
}

.legal p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.legal-clean + p {
  display: none;
}

.legal a {
  color: var(--primary-2);
  font-weight: 850;
}

.legal-page {
  max-width: calc(var(--container) + 112px);
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) clamp(18px, 5vw, 56px);
}

.legal-document {
  max-width: 880px;
  padding: clamp(26px, 5vw, 48px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
}

.legal-document,
.legal-document * {
  min-width: 0;
  overflow-wrap: anywhere;
}

.legal-document h1 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.legal-document h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.legal-document p {
  color: var(--muted);
}

.legal-document a {
  color: var(--primary-2);
  font-weight: 850;
}

.contact-document {
  max-width: 980px;
}

.legal-contact-form {
  max-width: none;
}

.footer {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 34px clamp(18px, 5vw, 56px) 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(2, 6, 23, 0.64);
  color: var(--muted);
}

.footer span {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
  font-weight: 900;
}

.footer p,
.footer small {
  margin: 0;
  font-size: 0.92rem;
}

.footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.footer a:hover {
  color: var(--primary-2);
}

.footer > div:last-child {
  display: grid;
  gap: 6px;
  justify-items: end;
}

.thanks-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: clamp(24px, 6vw, 72px);
  background: var(--bg);
}

.thanks-card {
  max-width: 680px;
  padding: clamp(28px, 6vw, 56px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  background: var(--card);
  box-shadow: var(--shadow);
  text-align: center;
}

.thanks-card img {
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  border-radius: 14px;
}

.thanks-card h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
}

.thanks-card p:not(.eyebrow) {
  color: var(--muted);
}

.reveal {
  animation: revealUp 700ms ease both;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1080px) {
  .app-grid,
  .service-grid,
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .nav {
    gap: 2px;
  }
}

@media (max-width: 900px) {
  .nav {
    display: none;
  }

  .mobile-menu {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--card-border);
    border-radius: 999px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.075);
    font: inherit;
    font-weight: 850;
  }

  .mobile-nav.open {
    position: sticky;
    top: 68px;
    z-index: 45;
    display: grid;
    gap: 8px;
    width: min(100% - 32px, var(--container));
    margin: 10px auto 0;
    padding: 12px;
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    background: rgba(5, 8, 22, 0.94);
    backdrop-filter: blur(18px);
  }

  .mobile-nav a {
    padding: 10px 12px;
    border-radius: 10px;
    color: var(--muted);
  }

  .mobile-nav a:hover {
    color: var(--text);
    background: rgba(255, 255, 255, 0.07);
  }

  .hero,
  .salescopilot-shell,
  .price-panel,
  .footer,
  .detail-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
  }

  .hero-showcase {
    min-height: 500px;
  }

  .salescopilot-shell {
    padding: 0 clamp(18px, 5vw, 56px);
  }

  .salescopilot-floating-card {
    position: static;
    width: 100%;
    margin-top: 14px;
  }

  .hero-phone-main {
    left: 4%;
    right: auto;
  }

  .hero-phone-side {
    right: 4%;
  }

  .footer nav {
    justify-content: flex-start;
  }

  .footer > div:last-child {
    justify-items: start;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 12px 16px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .hero {
    padding-top: 48px;
  }

  .hero-showcase {
    display: grid;
    gap: 12px;
    min-height: auto;
  }

  .hero-phone,
  .float-card,
  .showcase-glass {
    position: static;
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
  }

  .hero-phone {
    width: min(100%, 260px);
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .trust-row span {
    width: 100%;
  }

  .app-grid,
  .service-grid,
  .benefit-grid,
  .project-grid,
  .private-grid,
  .screenshot-strip,
  .contact-form,
  .newsletter-form,
  .legal {
    grid-template-columns: 1fr;
  }

  .app-card-top,
  .mini-project,
  .private-card {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .private-card {
    grid-template-columns: 1fr;
  }

  .section {
    padding-top: 74px;
    padding-bottom: 74px;
  }
}

@media (max-width: 390px) {
  .section,
  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  .service-shell,
  .contact-shell {
    padding: 20px;
  }
}

.portfolio-preview {
  padding-top: clamp(58px, 7vw, 96px);
}

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

.preview-card,
.app-card,
.mini-project,
.private-card,
.detail-card {
  border-radius: 8px;
}

.preview-card {
  display: grid;
  gap: 12px;
  min-height: 100%;
  padding: 14px;
  border: 1px solid var(--card-border);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.2);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.preview-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.36);
  box-shadow: var(--glow), 0 22px 60px rgba(0, 0, 0, 0.28);
}

.preview-card img,
.preview-card .mockup-screen {
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 0;
  max-height: none;
  border-radius: 6px;
  object-fit: cover;
  object-position: top center;
}

.preview-card strong {
  font-size: 1.05rem;
  line-height: 1.25;
}

.preview-card small {
  color: var(--muted);
}

.section-action {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.target-line {
  margin: 14px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  font-size: 0.92rem;
}

.target-line strong {
  color: var(--text);
}

.app-grid.featured-apps,
.project-grid.all-apps,
.private-grid {
  align-items: stretch;
}

.app-card,
.mini-project,
.private-card {
  min-height: 100%;
}

.app-card,
.mini-copy,
.private-card > div:last-child,
.detail-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.app-card .card-link,
.mini-project .card-link,
.private-card .card-link {
  width: 100%;
  margin-top: auto;
}

.app-media,
.mini-media,
.private-preview .mockup-screen,
.detail-card img,
.detail-media {
  border-radius: 6px;
}

.app-card .app-media,
.app-card .mockup-screen,
.mini-media,
.private-preview .mockup-screen {
  aspect-ratio: 16 / 11;
  min-height: 0;
  max-height: none;
}

.feature-tags.compact {
  margin-top: 14px;
}

.salescopilot-promo {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0)),
    rgba(255, 255, 255, 0.015);
}

.salescopilot-shell {
  border-radius: 8px;
}

.salescopilot-points {
  margin-top: 18px;
}

.detail-card {
  min-height: 100%;
}

.detail-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.private-projects .section-heading p:not(.eyebrow) {
  max-width: 760px;
}

@media (max-width: 1080px) {
  .preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .preview-grid {
    grid-template-columns: 1fr;
  }

  .section-action .button,
  .preview-card,
  .app-card .card-link,
  .mini-project .card-link,
  .private-card .card-link {
    width: 100%;
  }

  .preview-card img,
  .preview-card .mockup-screen,
  .app-card .app-media,
  .app-card .mockup-screen,
  .mini-media,
  .private-preview .mockup-screen {
    aspect-ratio: 4 / 3;
  }

  .detail-card .button {
    align-self: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}

/* Final hardening layer: 2085 stage, overlap safety, stronger app universe */
*, *::before, *::after {
  box-sizing: border-box;
}

img,
svg,
video,
canvas {
  max-width: 100%;
}

a,
button,
strong,
h1,
h2,
h3,
p,
span {
  overflow-wrap: anywhere;
}

.site-header,
.mobile-nav {
  z-index: 100;
}

.site-header {
  top: 12px;
  width: min(1220px, calc(100% - 28px));
  border-radius: 999px;
}

.mobile-nav {
  width: min(720px, calc(100% - 28px));
  margin-inline: auto;
  border-radius: 18px;
  background: rgba(7, 17, 31, 0.94);
  border: 1px solid rgba(39, 230, 255, 0.24);
  box-shadow: 0 28px 80px rgba(0, 16, 35, 0.28);
  backdrop-filter: blur(22px);
}

.mobile-nav a {
  color: #e8faff;
}

main {
  position: relative;
  z-index: 1;
}

.section {
  position: relative;
  isolation: isolate;
}

.section::after {
  content: "";
  position: absolute;
  inset: auto 4% 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.36), rgba(143, 92, 255, 0.32), transparent);
  opacity: 0.7;
}

.hero {
  width: min(1280px, calc(100% - 28px));
  min-height: min(820px, calc(100vh - 96px));
  margin: 18px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: clamp(26px, 5vw, 72px);
  border-radius: 24px;
  padding: clamp(38px, 7vw, 88px);
  overflow: hidden;
  isolation: isolate;
}

.hero::before,
.hero::after,
.app-universe-section::before,
.identity-stage::before,
.product-detail-hero::before,
.premium-product-hero::before {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.58;
}

.hero::before {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(39, 230, 255, 0.34), transparent 65%);
  animation: slow-orbit 18s ease-in-out infinite alternate;
}

.hero::after {
  width: 420px;
  height: 420px;
  bottom: -160px;
  left: 24%;
  background: radial-gradient(circle, rgba(143, 92, 255, 0.28), transparent 64%);
  animation: slow-orbit 22s ease-in-out infinite alternate-reverse;
}

.hero h1 {
  max-width: 820px;
  font-size: clamp(3.1rem, 7.4vw, 7.25rem);
  line-height: 0.9;
}

.hero-text {
  max-width: 620px;
}

.hero-description {
  display: none;
}

.hero-actions {
  align-items: center;
}

.hero-showcase {
  min-width: 0;
  display: grid;
  grid-template-rows: auto auto auto;
  justify-items: center;
  gap: 18px;
}

.app-orbit {
  position: relative;
  width: min(100%, 430px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.orbit-ring {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  border: 1px solid rgba(39, 230, 255, 0.28);
  box-shadow:
    inset 0 0 28px rgba(39, 230, 255, 0.08),
    0 0 34px rgba(39, 230, 255, 0.14);
}

.orbit-one {
  animation: orbit-rotate 28s linear infinite;
}

.orbit-two {
  inset: 22%;
  border-color: rgba(143, 92, 255, 0.32);
  transform: rotate(18deg);
  animation: orbit-rotate 22s linear infinite reverse;
}

.brand-core {
  position: relative;
  z-index: 2;
  width: min(62%, 250px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 24px;
  border-radius: 50%;
  color: #ffffff;
  text-align: center;
  background:
    radial-gradient(circle at 35% 20%, rgba(39, 230, 255, 0.34), transparent 36%),
    linear-gradient(135deg, rgba(9, 23, 43, 0.94), rgba(23, 44, 84, 0.88));
  border: 1px solid rgba(146, 232, 255, 0.35);
  box-shadow: 0 28px 80px rgba(0, 16, 35, 0.36), inset 0 0 42px rgba(39, 230, 255, 0.08);
}

.brand-core img {
  width: 58px;
  height: 58px;
  border-radius: 16px;
}

.brand-core strong {
  font-size: clamp(1.05rem, 2.4vw, 1.45rem);
}

.brand-core span {
  color: #a9f6ff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.orbit-node {
  position: absolute;
  z-index: 3;
  min-width: 54px;
  padding: 9px 11px;
  border: 1px solid rgba(146, 232, 255, 0.32);
  border-radius: 999px;
  color: #e9fcff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  background: rgba(7, 17, 31, 0.78);
  box-shadow: 0 10px 34px rgba(39, 230, 255, 0.18);
}

.node-ai { top: 5%; left: 48%; }
.node-crm { right: 2%; top: 50%; }
.node-app { bottom: 8%; left: 18%; }
.node-web { left: 2%; top: 34%; }

.future-device-stack {
  width: min(100%, 520px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(90px, 0.34fr);
  align-items: end;
  gap: 14px;
}

.hero-showcase .hero-phone {
  position: static !important;
  width: 100%;
  max-height: 280px;
  object-fit: cover;
  object-position: top center;
  border-radius: 18px;
  transform: none;
}

.hero-showcase .hero-phone-side {
  max-height: 240px;
}

.showcase-glass {
  width: min(100%, 520px);
  border-radius: 18px;
}

.identity-stage {
  padding-block: clamp(34px, 6vw, 74px);
}

.identity-console {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.6fr) auto;
  gap: 20px;
  align-items: center;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(146, 232, 255, 0.24);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(16, 37, 66, 0.84)),
    radial-gradient(circle at 10% 0%, rgba(39, 230, 255, 0.18), transparent 34%);
  color: #ffffff;
  box-shadow: 0 28px 90px rgba(0, 16, 35, 0.24);
  overflow: hidden;
}

.identity-console::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.08) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.28;
}

.identity-console > * {
  position: relative;
  z-index: 1;
}

.identity-console h2 {
  margin: 8px 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 4vw, 3.6rem);
  line-height: 1;
}

.identity-console p {
  margin: 0;
  color: rgba(229, 242, 255, 0.78);
}

.identity-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.identity-chips span {
  padding: 9px 11px;
  border: 1px solid rgba(39, 230, 255, 0.2);
  border-radius: 999px;
  color: #dffbff;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 0.86rem;
}

.app-universe-section {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(5, 11, 23, 0.96), rgba(9, 25, 46, 0.92)),
    radial-gradient(circle at 80% 0%, rgba(143, 92, 255, 0.22), transparent 32%),
    radial-gradient(circle at 12% 42%, rgba(39, 230, 255, 0.16), transparent 28%);
  border-block: 1px solid rgba(39, 230, 255, 0.16);
  overflow: hidden;
}

.app-universe-section .section-heading h2,
.app-universe-section .section-heading p {
  color: #ffffff;
}

.app-universe-grid {
  position: relative;
}

.app-universe-grid::before {
  content: "";
  position: absolute;
  inset: 70px 4% auto;
  height: calc(100% - 140px);
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.18), transparent),
    linear-gradient(rgba(143, 92, 255, 0.12), rgba(143, 92, 255, 0.12));
  mask-image:
    repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 25%),
    linear-gradient(#000, #000);
  opacity: 0.55;
}

.app-universe-grid .brand-app-card {
  min-height: 460px;
  background:
    linear-gradient(145deg, rgba(10, 24, 44, 0.88), rgba(15, 38, 66, 0.72)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), rgba(39, 230, 255, 0.2), transparent 34%);
  color: #ffffff;
  transform-style: preserve-3d;
}

.app-universe-grid .brand-app-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), transparent 24%, rgba(39, 230, 255, 0.08));
  opacity: 0.75;
}

.brand-app-body {
  position: relative;
  z-index: 1;
}

.app-universe-grid .brand-app-body h3,
.app-universe-grid .brand-app-body p {
  color: #ffffff;
}

.app-universe-grid .brand-app-body p {
  color: rgba(229, 242, 255, 0.74);
}

.app-universe-grid .brand-app-media {
  height: 214px;
  border-bottom-color: rgba(146, 232, 255, 0.18);
}

.app-universe-grid .brand-app-media.screenshot img {
  transition: transform 280ms ease, filter 280ms ease;
}

.app-universe-grid .brand-app-card:hover .brand-app-media.screenshot img {
  transform: scale(1.045);
  filter: saturate(1.2) contrast(1.06);
}

.product-detail-hero,
.premium-product-hero,
.product-info-grid article,
.product-feature-grid article,
.product-gallery figure,
.status-panel {
  overflow: hidden;
}

.product-detail-hero::before,
.premium-product-hero::before {
  width: 320px;
  height: 320px;
  right: -110px;
  top: -110px;
  background: radial-gradient(circle, rgba(39, 230, 255, 0.22), transparent 64%);
}

.premium-product-hero {
  background:
    linear-gradient(135deg, rgba(5, 11, 23, 0.94), rgba(12, 31, 58, 0.9)),
    radial-gradient(circle at 78% 10%, rgba(39, 230, 255, 0.18), transparent 36%);
  color: #ffffff;
}

.premium-product-hero h1,
.premium-product-hero .hero-text,
.premium-product-hero .eyebrow {
  color: #ffffff;
}

.premium-product-hero .button.secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.salescopilot-page-hero .salescopilot-visual img,
.product-preview-shell .salescopilot-visual img {
  display: block;
  max-height: 520px;
  object-fit: contain;
  background: rgba(7, 17, 31, 0.8);
}

.product-feature-grid article,
.product-info-grid article {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(236, 249, 255, 0.72)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.14), transparent 36%);
}

.private-projects .private-grid {
  position: relative;
}

.private-projects .private-grid::before {
  content: "";
  position: absolute;
  inset: -18px;
  pointer-events: none;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.12) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.1) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.26;
}

.digital-business-card {
  position: relative;
  isolation: isolate;
}

.business-card-surface {
  min-height: 360px;
  transform-style: preserve-3d;
}

.business-card-surface::after {
  opacity: 0.52;
  animation: holo-sweep 8s ease-in-out infinite;
}

.business-card-meta::after {
  content: "POA-2085 / APP-WEB-AI";
  display: inline-grid;
  margin-top: 16px;
  padding: 10px 12px;
  border: 1px solid rgba(39, 230, 255, 0.28);
  border-radius: 999px;
  color: #9bedff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.footer,
.legal,
.legal-document,
.thanks-card {
  position: relative;
  z-index: 1;
}

@keyframes orbit-rotate {
  to { transform: rotate(360deg); }
}

@keyframes slow-orbit {
  from { transform: translate3d(-2%, -1%, 0) scale(1); }
  to { transform: translate3d(3%, 2%, 0) scale(1.08); }
}

@keyframes holo-sweep {
  0%, 100% { opacity: 0.18; transform: translateX(-10%); }
  50% { opacity: 0.62; transform: translateX(10%); }
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-showcase {
    width: 100%;
  }

  .app-orbit {
    width: min(100%, 360px);
  }

  .identity-console {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .site-header {
    top: 8px;
    width: min(100% - 16px, 1220px);
    border-radius: 18px;
  }

  .hero {
    width: min(100% - 16px, 1280px);
    margin-top: 10px;
    padding: 28px 18px;
    border-radius: 18px;
  }

  .hero h1 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }

  .hero-kicker,
  .trust-row {
    gap: 7px;
  }

  .app-orbit {
    width: min(100%, 310px);
  }

  .future-device-stack {
    grid-template-columns: 1fr;
  }

  .hero-showcase .hero-phone {
    max-height: 220px;
  }

  .hero-showcase .hero-phone-side {
    display: none;
  }

  .identity-console,
  .digital-business-card {
    width: min(100% - 22px, 1180px);
  }

  .app-universe-grid .brand-app-media {
    height: 190px;
  }

  .app-universe-grid .brand-app-card {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* Portal architecture refresh */
.landing-page,
.directory-page,
.service-page {
  background:
    radial-gradient(circle at 12% 8%, rgba(39, 230, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 86% 14%, rgba(143, 92, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, #eaf8ff 0%, #f8fbff 30%, #08111f 100%);
}

.landing-page .site-header,
.directory-page .site-header,
.service-page .site-header {
  max-width: 1220px;
}

.landing-hero,
.page-hero {
  position: relative;
  width: min(1220px, calc(100% - 32px));
  margin: 18px auto 0;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  min-height: min(660px, calc(100vh - 112px));
  padding: clamp(24px, 5vw, 58px);
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  color: #f8fcff;
  background:
    radial-gradient(circle at 78% 24%, rgba(39, 230, 255, 0.2), transparent 24rem),
    radial-gradient(circle at 28% 76%, rgba(143, 92, 255, 0.16), transparent 24rem),
    linear-gradient(135deg, rgba(6, 16, 31, 0.97), rgba(9, 28, 52, 0.92));
  box-shadow: 0 30px 110px rgba(2, 12, 27, 0.28);
  isolation: isolate;
}

.landing-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.12), transparent 42%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 52%);
  opacity: 0.78;
}

.landing-hero-copy,
.landing-command-card,
.page-hero-copy,
.directory-radar,
.service-console {
  position: relative;
  z-index: 1;
}

.landing-hero h1,
.page-hero h1 {
  max-width: 760px;
  margin: 12px 0 18px;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 7.4rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.landing-hero .hero-text,
.page-hero p {
  max-width: 680px;
  color: rgba(235, 249, 255, 0.78);
  font-size: clamp(1.06rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.landing-command-card,
.service-console,
.directory-radar {
  min-height: 430px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04)),
    rgba(6, 18, 34, 0.7);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05), 0 28px 80px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.landing-command-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
  padding: clamp(18px, 3vw, 28px);
}

.command-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #c9f7ff;
  font-weight: 800;
}

.compact-orbit {
  width: min(100%, 390px);
  height: 320px;
  margin: 0 auto;
}

.command-mockup-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.7fr);
  gap: 12px;
}

.command-mockup-strip img,
.mini-product-card img,
.directory-media img,
.sales-highlight-panel img {
  display: block;
  width: 100%;
  max-width: 100%;
  object-fit: cover;
}

.command-mockup-strip img {
  height: 138px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 8px;
  object-position: top center;
}

.landing-section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) 0;
}

.brand-snapshot {
  padding-bottom: clamp(22px, 4vw, 46px);
}

.landing-route-grid,
.teaser-app-grid,
.service-capability-grid,
.flow-grid,
.app-directory-grid {
  display: grid;
  gap: 16px;
}

.landing-route-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.route-card,
.mini-product-card,
.directory-card,
.service-capability-grid article,
.flow-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.9), rgba(12, 36, 62, 0.72)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.08), rgba(143, 92, 255, 0.08));
  box-shadow: 0 24px 72px rgba(5, 16, 32, 0.16);
  color: #f8fcff;
}

.route-card {
  min-height: 160px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  text-decoration: none;
}

.route-card span,
.service-capability-grid article span,
.flow-grid article strong {
  color: #8ff4ff;
  font-size: 0.85rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.route-card strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.route-card small,
.mini-product-card p,
.directory-card p,
.service-capability-grid article p {
  color: rgba(232, 247, 255, 0.72);
  line-height: 1.6;
}

.teaser-app-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.mini-product-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.mini-product-card img {
  height: 145px;
  border-radius: 8px;
  object-position: top center;
  margin-bottom: 16px;
  border: 1px solid rgba(146, 232, 255, 0.14);
}

.mini-product-card h3,
.directory-card h3,
.service-capability-grid h3 {
  margin: 12px 0 8px;
  color: #ffffff;
  letter-spacing: 0;
}

.mini-product-card .card-link,
.directory-card .card-link {
  margin-top: auto;
}

.sales-highlight-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(22px, 5vw, 54px);
  align-items: center;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 20%, rgba(39, 230, 255, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(10, 31, 56, 0.88));
  color: #f8fcff;
  box-shadow: 0 30px 90px rgba(0, 16, 35, 0.2);
}

.sales-highlight-panel h2 {
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 4.2rem);
  line-height: 1;
  margin: 10px 0 16px;
}

.sales-highlight-panel p {
  color: rgba(232, 247, 255, 0.74);
}

.sales-highlight-panel img {
  height: clamp(220px, 30vw, 340px);
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  object-position: top center;
}

.landing-final-cta {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto clamp(30px, 5vw, 58px);
}

@media (min-width: 900px) {
  .landing-page .brand-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    gap: 22px;
    align-items: stretch;
  }

  .landing-page .brand-snapshot .section-heading {
    margin: 0;
    padding: 24px;
    border: 1px solid rgba(146, 232, 255, 0.18);
    border-radius: 8px;
    background: rgba(7, 17, 31, 0.82);
    color: #f8fcff;
  }

  .landing-page .brand-snapshot .section-heading h2 {
    color: #ffffff;
    font-size: clamp(1.75rem, 2.8vw, 3rem);
  }

  .landing-page .brand-snapshot .section-heading p:not(.eyebrow) {
    color: rgba(232, 247, 255, 0.72);
  }

  .landing-page .route-card {
    min-height: 0;
    padding: 18px;
  }

  .landing-page .landing-app-teaser {
    padding-top: 28px;
  }

  .landing-page .mini-product-card {
    min-height: 310px;
  }

  .landing-page .mini-product-card img {
    height: 120px;
  }

  .landing-page .business-card-surface {
    padding: 24px;
  }

  .landing-page .business-card-meta h2 {
    font-size: clamp(2rem, 4vw, 4.2rem);
  }

  .landing-page .business-card-grid {
    margin: 18px 0;
  }

  .landing-page .contact-shell {
    padding: 28px;
  }
}

.page-hero {
  min-height: 540px;
}

.page-hero h1 {
  font-size: clamp(2.8rem, 6vw, 6.4rem);
}

.directory-radar {
  display: grid;
  place-items: center;
  min-height: 420px;
}

.directory-radar strong {
  width: 150px;
  height: 150px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(39, 230, 255, 0.24), rgba(8, 25, 47, 0.86));
  color: #ffffff;
  box-shadow: 0 0 70px rgba(39, 230, 255, 0.22);
}

.directory-radar span {
  position: absolute;
  padding: 10px 14px;
  border: 1px solid rgba(146, 232, 255, 0.26);
  border-radius: 999px;
  background: rgba(6, 18, 34, 0.78);
  color: #c9f7ff;
  font-weight: 900;
}

.directory-radar span:nth-child(1) { transform: translate(0, -155px); }
.directory-radar span:nth-child(2) { transform: translate(150px, 18px); }
.directory-radar span:nth-child(3) { transform: translate(-80px, 142px); }
.directory-radar span:nth-child(4) { transform: translate(-150px, -28px); }

.app-directory-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.directory-card {
  min-height: 500px;
  display: flex;
  flex-direction: column;
}

.directory-card.featured {
  grid-column: span 2;
}

.directory-media {
  height: 230px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(4, 13, 27, 0.92), rgba(13, 42, 70, 0.84));
}

.directory-media img {
  height: 100%;
  border-radius: 8px;
  object-position: top center;
}

.directory-media.dual-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.directory-media.dual-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

.directory-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}

.directory-badges,
.directory-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.service-console {
  min-height: 420px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: center;
  gap: 14px;
  padding: clamp(18px, 4vw, 34px);
}

.service-console span,
.service-console strong {
  min-height: 86px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: #e8fbff;
  font-weight: 900;
}

.service-console strong {
  grid-column: 1 / -1;
  color: #ffffff;
  background: linear-gradient(135deg, rgba(54, 119, 255, 0.34), rgba(39, 230, 255, 0.2));
}

.service-capability-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-capability-grid article {
  min-height: 210px;
  padding: 22px;
}

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

.flow-grid article {
  min-height: 150px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 18px;
}

.flow-grid article span {
  color: #ffffff;
  font-weight: 800;
}

@media (max-width: 1080px) {
  .landing-hero,
  .page-hero,
  .sales-highlight-panel {
    grid-template-columns: 1fr;
  }

  .teaser-app-grid,
  .app-directory-grid,
  .service-capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .directory-card.featured {
    grid-column: auto;
  }

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

@media (max-width: 760px) {
  .landing-hero,
  .page-hero {
    width: min(100% - 16px, 1220px);
    min-height: auto;
    padding: 22px 18px 26px;
  }

  .landing-hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 13vw, 4.6rem);
  }

  .landing-command-card,
  .directory-radar,
  .service-console {
    min-height: 0;
  }

  .compact-orbit {
    height: 310px;
  }

  .command-mockup-strip {
    grid-template-columns: 1fr;
  }

  .command-mockup-strip img:nth-child(2) {
    display: none;
  }

  .landing-route-grid,
  .teaser-app-grid,
  .app-directory-grid,
  .service-capability-grid,
  .flow-grid {
    grid-template-columns: 1fr;
  }

  .mini-product-card,
  .directory-card {
    min-height: 0;
  }

  .directory-media,
  .mini-product-card img {
    height: 190px;
  }

  .directory-radar {
    height: 300px;
  }

  .directory-radar span:nth-child(1) { transform: translate(0, -108px); }
  .directory-radar span:nth-child(2) { transform: translate(105px, 14px); }
  .directory-radar span:nth-child(3) { transform: translate(-58px, 100px); }
  .directory-radar span:nth-child(4) { transform: translate(-106px, -20px); }
}

/* 2085 portal homepage */
.portal-page {
  min-height: 100vh;
  overflow-x: hidden;
  color: #f8fcff;
  background:
    radial-gradient(circle at 16% 14%, rgba(39, 230, 255, 0.18), transparent 24rem),
    radial-gradient(circle at 82% 12%, rgba(143, 92, 255, 0.16), transparent 24rem),
    radial-gradient(circle at 50% 94%, rgba(32, 215, 181, 0.12), transparent 28rem),
    linear-gradient(180deg, #050816 0%, #07111f 52%, #091426 100%);
}

.portal-page::before {
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 46px 46px;
}

.portal-header {
  position: relative;
  z-index: 20;
  width: min(1220px, calc(100% - 24px));
  margin-top: 10px;
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.88), rgba(8, 18, 34, 0.72)),
    rgba(5, 12, 24, 0.82);
  border-color: rgba(146, 232, 255, 0.28);
  box-shadow: 0 20px 70px rgba(0, 8, 24, 0.28);
  backdrop-filter: blur(20px);
}

.portal-header .brand span,
.portal-header .nav a,
.portal-header .nav-cta,
.portal-header .mobile-menu {
  color: #f8fcff;
}

.portal-header .brand img {
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.34);
}

.portal-header .nav a:hover,
.portal-header .nav a.is-active {
  color: #9bedff;
}

.portal-header .nav-cta,
.portal-header .mobile-menu {
  border-color: rgba(146, 232, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.portal-main {
  width: min(1220px, calc(100% - 24px));
  margin: 10px auto 0;
}

.portal-stage {
  position: relative;
  min-height: min(780px, calc(100vh - 142px));
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 0.9fr);
  grid-template-areas:
    "copy core"
    "menu card";
  gap: clamp(16px, 2.6vw, 30px);
  align-items: stretch;
  padding: clamp(22px, 4vw, 46px);
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(9, 30, 55, 0.9)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.12), rgba(143, 92, 255, 0.12));
  box-shadow: 0 32px 110px rgba(0, 12, 30, 0.34);
  isolation: isolate;
}

.portal-grid,
.portal-light,
.portal-scanline,
.portal-ring {
  pointer-events: none;
}

.portal-grid {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 60% 42%, #000 0%, #000 46%, transparent 78%);
  animation: future-grid-drift 26s linear infinite;
}

.portal-light {
  position: absolute;
  z-index: 0;
  width: 34%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.9), transparent);
  filter: drop-shadow(0 0 14px rgba(39, 230, 255, 0.85));
  opacity: 0.68;
}

.portal-light-a {
  top: 18%;
  left: 7%;
  animation: glow-line-slide 9s ease-in-out infinite;
}

.portal-light-b {
  right: 8%;
  bottom: 20%;
  background: linear-gradient(90deg, transparent, rgba(143, 92, 255, 0.9), transparent);
  animation: glow-line-slide 11s ease-in-out infinite reverse;
}

.portal-scanline {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 51%);
  background-size: 100% 8px;
  opacity: 0.16;
}

.portal-copy,
.portal-core,
.portal-menu,
.portal-business-card {
  position: relative;
  z-index: 1;
}

.portal-copy {
  grid-area: copy;
  align-self: center;
}

.portal-copy h1 {
  max-width: 700px;
  margin: 12px 0 14px;
  color: #ffffff;
  font-size: clamp(3.35rem, 7vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: 0;
  text-shadow: 0 0 34px rgba(39, 230, 255, 0.14);
}

.portal-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(232, 247, 255, 0.76);
  font-size: clamp(1.02rem, 1.45vw, 1.2rem);
  line-height: 1.62;
}

.portal-core {
  grid-area: core;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.portal-orbit {
  position: absolute;
  width: min(100%, 430px);
  aspect-ratio: 1;
}

.portal-ring {
  position: absolute;
  inset: 8%;
  border: 1px solid rgba(39, 230, 255, 0.28);
  border-radius: 50%;
  box-shadow: inset 0 0 30px rgba(39, 230, 255, 0.08), 0 0 38px rgba(39, 230, 255, 0.08);
  animation: slow-orbit 28s linear infinite;
}

.portal-ring-two {
  inset: 25%;
  border-color: rgba(143, 92, 255, 0.28);
  animation-direction: reverse;
  animation-duration: 32s;
}

.portal-brand-core {
  position: relative;
  z-index: 2;
  width: min(230px, 60vw);
  height: min(230px, 60vw);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 28px;
  border: 1px solid rgba(146, 232, 255, 0.3);
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 25%, rgba(39, 230, 255, 0.24), transparent 40%),
    linear-gradient(135deg, rgba(8, 23, 45, 0.92), rgba(9, 31, 59, 0.72));
  box-shadow: 0 0 80px rgba(39, 230, 255, 0.17);
}

.portal-brand-core img {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  filter: drop-shadow(0 0 18px rgba(39, 230, 255, 0.45));
}

.portal-brand-core strong {
  color: #ffffff;
  font-size: 1.25rem;
}

.portal-brand-core span {
  color: #9bedff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-node {
  position: absolute;
  z-index: 3;
  padding: 10px 14px;
  border: 1px solid rgba(146, 232, 255, 0.3);
  border-radius: 999px;
  color: #e8fbff;
  background: rgba(5, 14, 27, 0.84);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 22px rgba(39, 230, 255, 0.12);
}

.portal-node-apps { left: 50%; top: 0; transform: translate(-50%, -10%); }
.portal-node-ai { right: 0; top: 44%; transform: translate(8%, -50%); }
.portal-node-lab { left: 22%; bottom: 2%; }
.portal-node-web { left: 0; top: 43%; transform: translate(-8%, -50%); }

.portal-menu {
  grid-area: menu;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.portal-tile,
.portal-business-card {
  overflow: hidden;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.78);
  box-shadow: 0 20px 60px rgba(0, 10, 25, 0.18);
  backdrop-filter: blur(18px);
}

.portal-tile {
  position: relative;
  min-height: 150px;
  display: grid;
  align-content: end;
  gap: 8px;
  padding: 16px;
  color: #f8fcff;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.portal-tile::after,
.portal-business-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent, rgba(39, 230, 255, 0.18), transparent 45%);
  translate: -120% 0;
  transition: translate 560ms ease;
}

.portal-tile:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.5);
  box-shadow: 0 26px 70px rgba(39, 230, 255, 0.14);
}

.portal-tile:hover::after,
.portal-business-card:hover::after {
  translate: 120% 0;
}

.portal-tile.featured {
  background:
    linear-gradient(135deg, rgba(54, 119, 255, 0.22), rgba(39, 230, 255, 0.1)),
    rgba(7, 20, 38, 0.78);
}

.portal-tile span,
.portal-business-card dt {
  color: #8ff4ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.portal-tile strong {
  color: #ffffff;
  font-size: clamp(1rem, 1.4vw, 1.24rem);
  line-height: 1.1;
}

.portal-tile small {
  color: rgba(232, 247, 255, 0.72);
  line-height: 1.45;
}

.portal-business-card {
  grid-area: card;
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  padding: 18px;
}

.portal-business-card h2 {
  margin: 10px 0 4px;
  color: #ffffff;
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  line-height: 0.95;
}

.portal-business-card p,
.portal-business-card dd {
  color: rgba(232, 247, 255, 0.74);
}

.portal-business-card dl {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.portal-business-card div,
.portal-business-card dl,
.portal-business-card a {
  position: relative;
  z-index: 1;
}

.portal-business-card dt,
.portal-business-card dd {
  margin: 0;
}

.portal-footer {
  width: min(1220px, calc(100% - 24px));
  margin-top: 10px;
  border: 1px solid rgba(146, 232, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.9), rgba(8, 18, 34, 0.78)),
    rgba(5, 12, 24, 0.86);
  color: rgba(236, 249, 255, 0.82);
  box-shadow: 0 20px 70px rgba(0, 8, 24, 0.24);
}

.portal-footer span,
.portal-footer a,
.portal-footer small {
  color: #f8fcff;
}

.portal-footer p {
  color: rgba(236, 249, 255, 0.74);
}

@media (max-width: 1120px) {
  .portal-stage {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "core"
      "menu"
      "card";
    min-height: auto;
  }

  .portal-menu {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .portal-business-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .portal-main,
  .portal-footer,
  .portal-header {
    width: min(100% - 16px, 1220px);
  }

  .portal-stage {
    padding: 18px;
    gap: 16px;
  }

  .portal-copy h1 {
    font-size: clamp(2.62rem, 14vw, 4.4rem);
  }

  .portal-core {
    min-height: 300px;
  }

  .portal-orbit {
    width: min(100%, 310px);
  }

  .portal-node {
    padding: 8px 11px;
    font-size: 0.7rem;
  }

  .portal-node-apps {
    top: 2%;
  }

  .portal-node-ai {
    right: 4%;
    transform: translate(0, -50%);
  }

  .portal-node-web {
    left: 4%;
    transform: translate(0, -50%);
  }

  .portal-node-lab {
    left: 24%;
    bottom: 5%;
  }

  .portal-brand-core {
    width: 180px;
    height: 180px;
  }

  .portal-menu,
  .portal-business-card dl {
    grid-template-columns: 1fr;
  }

  .portal-tile {
    min-height: 112px;
  }

  .portal-business-card .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-grid,
  .portal-ring,
  .portal-light {
    animation: none !important;
  }
}

/* Final 2026 brand layer: keep the portfolio bright even where older page rules still exist. */
body {
  background:
    radial-gradient(circle at 8% 0%, rgba(45, 108, 223, 0.1), transparent 28%),
    linear-gradient(180deg, #f7faff 0%, #eef4fb 42%, #ffffff 100%);
  color: #152033;
}

.site-header,
.hero,
.preview-card,
.app-card,
.mini-app-card,
.detail-card,
.private-card,
.salescopilot-shell,
.contact-shell,
.app-device-frame,
.app-gallery figure,
.feature-grid article {
  background-color: rgba(255, 255, 255, 0.9);
  color: #152033;
  border-color: rgba(24, 40, 72, 0.1);
}

.nav a,
.footer a,
.button.secondary {
  color: #24324b;
}

.button.primary,
.card-link,
.nav-cta {
  background: linear-gradient(135deg, #2157d8, #27a2a7);
  color: #ffffff;
}

.mockup-screen,
.private-preview,
.app-media {
  background: linear-gradient(145deg, #eef5ff, #ffffff);
}

/* Final compact homepage system. Legacy sections stay in the HTML, but the public page stays short. */
.legacy-home-section[hidden] {
  display: none !important;
}

.hero {
  min-height: calc(100vh - 84px);
  padding-block: clamp(48px, 7vw, 92px);
}

.hero-copy {
  max-width: 760px;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.75rem, 6.4vw, 5.9rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-text {
  max-width: 680px;
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.hero-description {
  max-width: 620px;
}

.compact-home-apps {
  padding-top: clamp(48px, 7vw, 78px);
}

.compact-home-apps .section-heading {
  max-width: 760px;
}

.brand-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.brand-app-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(24, 40, 72, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(18, 35, 68, 0.08);
}

.brand-app-media {
  height: 190px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-bottom: 1px solid rgba(24, 40, 72, 0.08);
  background:
    radial-gradient(circle at 20% 15%, rgba(39, 162, 167, 0.12), transparent 34%),
    linear-gradient(145deg, #f4f8ff, #ffffff);
}

.brand-app-media img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.brand-app-media.screenshot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-app-media.icon img {
  width: 92px;
  height: 92px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(16, 44, 92, 0.16);
}

.brand-app-media.mock .mockup-screen {
  width: min(82%, 220px);
  height: 132px;
  border-radius: 8px;
}

.brand-app-media.dual-icon {
  display: flex;
  gap: 14px;
}

.brand-app-media.dual-icon img {
  width: 78px;
  height: 78px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(16, 44, 92, 0.14);
}

.brand-app-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.brand-app-body .status {
  width: fit-content;
  margin-bottom: 14px;
}

.brand-app-body h3 {
  margin: 0 0 10px;
  color: #152033;
  font-size: 1.2rem;
  letter-spacing: 0;
}

.brand-app-body p {
  margin: 0;
  color: #5c6a80;
  line-height: 1.6;
}

.brand-app-body .card-link {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.brand-app-card.private {
  background:
    linear-gradient(180deg, rgba(33, 87, 216, 0.06), rgba(39, 162, 167, 0.04)),
    rgba(255, 255, 255, 0.94);
}

.brand-app-body .private-status {
  background: rgba(22, 30, 46, 0.08);
  color: #24324b;
}

.salescopilot-promo {
  padding-top: clamp(34px, 5vw, 58px);
}

.salescopilot-shell {
  gap: clamp(22px, 4vw, 44px);
}

.private-projects {
  padding-top: clamp(42px, 6vw, 70px);
}

.private-grid {
  gap: 18px;
}

.private-card {
  border-radius: 8px;
}

.legal {
  scroll-margin-top: 100px;
}

@media (max-width: 1180px) {
  .brand-app-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .brand-app-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    min-height: auto;
  }
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: clamp(2.35rem, 13vw, 3.35rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .button,
  .brand-app-body .card-link {
    width: 100%;
  }

  .brand-app-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .brand-app-card {
    min-height: 0;
  }

  .brand-app-media {
    height: 176px;
  }
}

/* Product detail system */
.nav a.is-active {
  color: #2157d8;
  background: rgba(33, 87, 216, 0.08);
}

.breadcrumb-bar {
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #66758b;
  font-size: 0.92rem;
}

.breadcrumb-bar a {
  color: #2157d8;
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb-bar strong {
  color: #152033;
}

.product-detail-hero,
.premium-product-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: auto;
  margin: 22px auto 0;
  padding: clamp(34px, 6vw, 72px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  border: 1px solid rgba(24, 40, 72, 0.1);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(18, 35, 68, 0.09);
}

.product-hero-copy h1,
.premium-product-hero h1 {
  margin: 10px 0 16px;
  color: #152033;
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: 0;
}

.product-hero-copy > p,
.premium-product-hero .hero-text {
  max-width: 680px;
  color: #526176;
  font-size: clamp(1.05rem, 1.8vw, 1.26rem);
  line-height: 1.65;
}

.detail-keypoints {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0;
}

.detail-keypoints span,
.product-benefit-list strong,
.status-grid span {
  border-radius: 999px;
}

.detail-keypoints span {
  padding: 9px 12px;
  background: rgba(33, 87, 216, 0.08);
  color: #25416f;
  font-weight: 800;
  font-size: 0.9rem;
}

.product-device-frame {
  margin: 0;
  min-height: 420px;
  display: grid;
  align-content: center;
  justify-items: center;
}

.product-device-frame img {
  width: min(100%, 360px);
  max-height: 560px;
  object-fit: contain;
}

.product-device-frame figcaption,
.product-gallery figcaption {
  color: #66758b;
  font-size: 0.9rem;
}

.detail-intro-section {
  padding-top: clamp(42px, 6vw, 72px);
}

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

.product-info-grid article,
.product-benefit-list article,
.status-panel {
  border: 1px solid rgba(24, 40, 72, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 16px 42px rgba(18, 35, 68, 0.07);
}

.product-info-grid article {
  padding: 22px;
}

.product-info-grid span,
.product-feature-grid article span {
  display: inline-flex;
  margin-bottom: 12px;
  color: #2157d8;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-info-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #152033;
  font-size: 1.24rem;
}

.product-info-grid p,
.product-feature-grid article p,
.product-benefit-list span,
.status-panel p {
  color: #5c6a80;
  line-height: 1.65;
}

.product-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.product-feature-grid article {
  min-height: 210px;
}

.product-feature-grid article h3 {
  margin-top: 0;
  color: #152033;
}

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

.gallery-grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-gallery figure {
  margin: 0;
  min-height: 360px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 14px;
  padding: 18px;
}

.product-gallery img,
.product-gallery .mockup-screen {
  max-width: 100%;
  max-height: 520px;
  object-fit: contain;
  border-radius: 8px;
}

.product-preview-shell {
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
}

.product-benefit-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.product-benefit-list article {
  padding: 18px;
}

.product-benefit-list strong {
  display: block;
  margin-bottom: 6px;
  color: #152033;
}

.status-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  padding: clamp(24px, 4vw, 40px);
}

.status-panel h2 {
  margin: 8px 0 0;
  color: #152033;
}

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

.status-grid span {
  padding: 12px 14px;
  background: rgba(39, 162, 167, 0.09);
  color: #25416f;
  font-weight: 800;
}

.product-cta-shell {
  text-align: left;
}

.product-cta-shell .hero-actions {
  justify-content: flex-start;
}

.salescopilot-page-hero .salescopilot-visual {
  margin: 0;
}

.salescopilot-page-hero .salescopilot-visual img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(18, 35, 68, 0.14);
}

@media (max-width: 1080px) {
  .product-detail-hero,
  .premium-product-hero,
  .product-preview-shell,
  .status-panel {
    grid-template-columns: 1fr;
  }

  .product-feature-grid,
  .gallery-grid.three {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .breadcrumb-bar,
  .product-detail-hero,
  .premium-product-hero {
    width: min(100% - 28px, 1180px);
  }

  .product-info-grid,
  .product-feature-grid,
  .gallery-grid,
  .gallery-grid.three,
  .status-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-hero,
  .premium-product-hero {
    padding: 24px;
  }

  .product-device-frame {
    min-height: 0;
  }

  .product-gallery figure {
    min-height: 260px;
  }
}

/* 2085 premium-tech layer */
:root {
  --future-ink: #07111f;
  --future-panel: rgba(8, 19, 35, 0.78);
  --future-glass: rgba(255, 255, 255, 0.1);
  --future-border: rgba(146, 232, 255, 0.24);
  --future-cyan: #27e6ff;
  --future-blue: #3677ff;
  --future-violet: #8f5cff;
  --future-teal: #20d7b5;
  --future-text: #f6fbff;
  --future-muted: rgba(229, 242, 255, 0.72);
  --future-shadow: 0 26px 90px rgba(0, 16, 35, 0.26);
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: hidden;
  background:
    linear-gradient(115deg, rgba(39, 230, 255, 0.12), transparent 24%),
    linear-gradient(245deg, rgba(143, 92, 255, 0.12), transparent 26%),
    linear-gradient(180deg, #f8fbff 0%, #ecf6ff 18%, #07111f 58%, #101827 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(54, 119, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(to bottom, transparent 0%, #000 18%, #000 76%, transparent 100%);
  animation: future-grid-drift 28s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(100deg, transparent 8%, rgba(39, 230, 255, 0.12) 18%, transparent 30%),
    linear-gradient(260deg, transparent 12%, rgba(143, 92, 255, 0.12) 25%, transparent 42%);
  opacity: 0.78;
  animation: future-light-sweep 18s ease-in-out infinite alternate;
}

.site-header {
  background: rgba(248, 252, 255, 0.76);
  border: 1px solid rgba(39, 230, 255, 0.18);
  box-shadow: 0 16px 50px rgba(7, 17, 31, 0.12);
  backdrop-filter: blur(22px);
}

.brand img {
  filter: drop-shadow(0 0 18px rgba(39, 230, 255, 0.42));
}

.nav a,
.mobile-nav a {
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.nav a:hover,
.nav a.is-active,
.mobile-nav a:hover,
.mobile-nav a.is-active {
  color: #031320;
  background: linear-gradient(135deg, rgba(39, 230, 255, 0.2), rgba(143, 92, 255, 0.16));
  box-shadow: inset 0 0 0 1px rgba(39, 230, 255, 0.22), 0 8px 24px rgba(39, 230, 255, 0.13);
}

.nav-cta,
.button.primary,
.card-link {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--future-blue), var(--future-cyan) 52%, var(--future-teal));
  box-shadow: 0 14px 38px rgba(39, 230, 255, 0.24);
  isolation: isolate;
}

.nav-cta::after,
.button.primary::after,
.card-link::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.52), transparent);
  translate: -120% 0;
  transition: translate 520ms ease;
}

.nav-cta:hover::after,
.button.primary:hover::after,
.card-link:hover::after {
  translate: 120% 0;
}

.button.secondary {
  border-color: rgba(39, 230, 255, 0.28);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: inset 0 0 0 1px rgba(143, 92, 255, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--future-text);
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.95), rgba(8, 27, 50, 0.88)),
    linear-gradient(120deg, rgba(39, 230, 255, 0.18), rgba(143, 92, 255, 0.16));
  border: 1px solid rgba(146, 232, 255, 0.18);
  box-shadow: var(--future-shadow);
}

.future-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
  transform: perspective(900px) rotateX(62deg) translateY(18%);
  transform-origin: 50% 100%;
  opacity: 0.7;
  animation: future-grid-drift 22s linear infinite;
}

.glow-line {
  position: absolute;
  width: 42%;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, var(--future-cyan), transparent);
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.8));
  opacity: 0.75;
}

.glow-line.line-a {
  top: 18%;
  left: 8%;
  animation: glow-line-slide 9s ease-in-out infinite;
}

.glow-line.line-b {
  right: 5%;
  bottom: 22%;
  background: linear-gradient(90deg, transparent, var(--future-violet), transparent);
  animation: glow-line-slide 11s ease-in-out infinite reverse;
}

.hero-copy,
.hero-showcase {
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  text-shadow: 0 0 34px rgba(39, 230, 255, 0.18);
}

.hero-text,
.hero-description,
.trust-row span {
  color: var(--future-muted);
}

.hero-kicker span,
.status,
.eyebrow {
  border-color: rgba(39, 230, 255, 0.28);
  background: rgba(39, 230, 255, 0.08);
  color: #1a6070;
}

.hero .eyebrow,
.hero .hero-kicker span {
  color: #bdf7ff;
}

.float-card,
.showcase-glass,
.hero-phone,
.hologram-card,
.brand-app-card,
.salescopilot-shell,
.service-shell,
.private-card,
.contact-shell,
.product-detail-hero,
.premium-product-hero,
.product-info-grid article,
.product-feature-grid article,
.product-gallery figure,
.status-panel {
  position: relative;
  border: 1px solid var(--future-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.68)),
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.18), transparent 30%);
  box-shadow: var(--future-shadow);
  backdrop-filter: blur(18px);
}

.float-card::after,
.hologram-card::after,
.brand-app-card::after,
.product-feature-grid article::after,
.product-info-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(120deg, transparent, rgba(39, 230, 255, 0.14), transparent 45%),
    linear-gradient(270deg, transparent, rgba(143, 92, 255, 0.1), transparent 54%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.float-card:hover::after,
.hologram-card:hover::after,
.brand-app-card:hover::after,
.product-feature-grid article:hover::after,
.product-info-grid article:hover::after {
  opacity: 1;
}

.hero-phone {
  animation: device-float 7s ease-in-out infinite;
}

.hero-phone-side {
  animation-delay: -2s;
}

.float-card {
  animation: card-drift 8s ease-in-out infinite;
}

.float-card.gym {
  animation-delay: -2.6s;
}

.float-card.lingo {
  animation-delay: -5.2s;
}

.brand-app-card {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.brand-app-card:hover {
  transform: translateY(-7px);
  border-color: rgba(39, 230, 255, 0.42);
  box-shadow: 0 30px 90px rgba(19, 51, 86, 0.18);
}

.brand-app-media {
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.92), rgba(19, 42, 78, 0.86)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.15), rgba(143, 92, 255, 0.14));
}

.brand-app-media img {
  filter: saturate(1.06) contrast(1.02);
}

.brand-app-media.screenshot img {
  object-fit: cover;
  object-position: top center;
}

.section-heading h2,
.salescopilot-copy h2,
.service-shell h2,
.contact-shell h2,
.product-hero-copy h1,
.premium-product-hero h1 {
  letter-spacing: 0;
}

.compact-home-apps,
.salescopilot-promo,
.service,
.private-projects,
.contact-cta,
.detail-intro-section,
.product-preview-section,
.status-section,
.product-gallery {
  position: relative;
}

.compact-home-apps::before,
.service::before,
.private-projects::before,
.product-preview-section::before {
  content: "";
  position: absolute;
  inset: 10% 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.42), transparent);
  pointer-events: none;
}

.salescopilot-shell,
.service-shell,
.contact-shell,
.product-preview-shell,
.status-panel {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(236, 249, 255, 0.74)),
    linear-gradient(100deg, rgba(39, 230, 255, 0.12), rgba(143, 92, 255, 0.1));
}

.private-projects {
  color: var(--future-text);
  background:
    linear-gradient(135deg, rgba(5, 11, 23, 0.92), rgba(11, 27, 48, 0.92)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.12), rgba(143, 92, 255, 0.1));
  border-block: 1px solid rgba(39, 230, 255, 0.18);
}

.private-projects .section-heading h2,
.private-projects .section-heading p:not(.eyebrow),
.private-card h3,
.private-card p,
.private-note {
  color: var(--future-text);
}

.private-card {
  background:
    linear-gradient(135deg, rgba(10, 22, 40, 0.9), rgba(13, 36, 58, 0.82)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.12), rgba(143, 92, 255, 0.1));
}

.private-tags li,
.private-status {
  background: rgba(39, 230, 255, 0.12);
  color: #dffbff;
  border-color: rgba(39, 230, 255, 0.2);
}

.digital-business-card {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto clamp(28px, 5vw, 54px);
}

.business-card-surface {
  overflow: hidden;
  padding: clamp(24px, 5vw, 44px);
  border-radius: 10px;
  background:
    linear-gradient(135deg, rgba(6, 16, 31, 0.96), rgba(18, 36, 66, 0.88)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.16), rgba(143, 92, 255, 0.18));
  color: var(--future-text);
}

.business-card-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.42;
}

.business-card-meta,
.business-card-grid,
.business-card-actions {
  position: relative;
  z-index: 1;
}

.business-card-meta h2 {
  margin: 14px 0 4px;
  font-size: clamp(2.4rem, 6vw, 5.6rem);
  line-height: 0.95;
  color: #ffffff;
}

.business-card-meta p {
  margin: 0;
  color: var(--future-muted);
  font-size: clamp(1.05rem, 2vw, 1.32rem);
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: clamp(22px, 4vw, 34px) 0;
}

.business-card-grid article {
  padding: 16px;
  border: 1px solid rgba(146, 232, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.business-card-grid span {
  display: block;
  margin-bottom: 8px;
  color: #9bedff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.business-card-grid strong {
  color: #ffffff;
}

.business-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.reveal,
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 620ms ease, transform 620ms ease;
}

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

.legal,
.footer {
  background: rgba(255, 255, 255, 0.92);
  color: #152033;
}

@keyframes future-grid-drift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 108px 108px, 108px 108px; }
}

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

@keyframes glow-line-slide {
  0%, 100% { transform: translateX(-6%); opacity: 0.42; }
  50% { transform: translateX(12%); opacity: 0.92; }
}

@keyframes device-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes card-drift {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 960px) {
  .business-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  body::before,
  body::after,
  .future-grid,
  .glow-line {
    animation-duration: 40s;
    opacity: 0.45;
  }

  .future-grid {
    transform: none;
    background-size: 36px 36px;
  }

  .hero {
    border-radius: 0;
  }

  .business-card-grid {
    grid-template-columns: 1fr;
  }

  .business-card-actions .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

/* Final portal overrides */
body.portal-page .portal-header,
body.portal-page .portal-footer {
  border: 1px solid rgba(146, 232, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.92), rgba(8, 18, 34, 0.8)),
    rgba(5, 12, 24, 0.9);
  color: rgba(236, 249, 255, 0.84);
  box-shadow: 0 20px 70px rgba(0, 8, 24, 0.28);
  backdrop-filter: blur(20px);
}

body.portal-page .portal-header .brand span,
body.portal-page .portal-header .nav a,
body.portal-page .portal-header .nav-cta,
body.portal-page .portal-header .mobile-menu,
body.portal-page .portal-footer span,
body.portal-page .portal-footer a,
body.portal-page .portal-footer small {
  color: #f8fcff;
}

body.portal-page .portal-header .nav a:hover,
body.portal-page .portal-header .nav a.is-active,
body.portal-page .portal-footer a:hover {
  color: #9bedff;
}

body.portal-page .portal-footer p {
  color: rgba(236, 249, 255, 0.74);
}

body.portal-page .button.secondary {
  color: #f8fcff;
  border-color: rgba(146, 232, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 20, 38, 0.78);
}

/* Final SalesCopilotAI feature-system overrides */
body:not(.portal-page) .sales-feature-system-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 7vw, 86px);
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 230, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(143, 92, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.96), rgba(8, 18, 34, 0.94));
  border-block: 1px solid rgba(146, 232, 255, 0.16);
}

body:not(.portal-page) .sales-feature-system-section::before,
body:not(.portal-page) .sales-feature-system-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body:not(.portal-page) .sales-feature-system-section::before {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 24%, #000, transparent 76%);
}

body:not(.portal-page) .sales-feature-system-section::after {
  background: linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 52%);
  background-size: 100% 9px;
  opacity: 0.34;
}

body:not(.portal-page) .sales-feature-system-section .section-heading,
body:not(.portal-page) .sales-feature-system {
  position: relative;
  z-index: 1;
}

body:not(.portal-page) .sales-feature-system-section .section-heading h2 {
  color: #ffffff;
}

body:not(.portal-page) .sales-feature-system-section .section-heading .eyebrow {
  color: #bdf7ff;
  border-color: rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.1);
}

body:not(.portal-page) .sales-feature-system {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body:not(.portal-page) .sales-feature-system article {
  position: relative;
  isolation: isolate;
  min-height: 218px;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.9);
  box-shadow:
    0 24px 74px rgba(0, 8, 24, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body:not(.portal-page) .sales-feature-system article::before,
body:not(.portal-page) .sales-feature-system article::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body:not(.portal-page) .sales-feature-system article::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%);
  translate: -110% 0;
  transition: translate 620ms ease;
}

body:not(.portal-page) .sales-feature-system article::after {
  inset: auto 16px 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.95), rgba(143, 92, 255, 0.1), transparent);
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.48));
}

body:not(.portal-page) .sales-feature-system article:hover,
body:not(.portal-page) .sales-feature-system article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.46);
  box-shadow:
    0 30px 92px rgba(0, 16, 44, 0.34),
    0 0 42px rgba(39, 230, 255, 0.1);
}

body:not(.portal-page) .sales-feature-system article:hover::before,
body:not(.portal-page) .sales-feature-system article:focus-within::before {
  translate: 110% 0;
}

body:not(.portal-page) .sales-feature-system article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  border: 1px solid rgba(39, 230, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle, rgba(39, 230, 255, 0.26), rgba(143, 92, 255, 0.1));
  color: #dffbff;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.18);
  animation: feature-index-pulse 5.5s ease-in-out infinite;
}

body:not(.portal-page) .sales-feature-system article em {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #9bedff;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.portal-page) .sales-feature-system article h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.14;
}

body:not(.portal-page) .sales-feature-system article p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.56;
}

body:not(.portal-page) .sales-feature-system article.planned {
  border-color: rgba(143, 92, 255, 0.34);
  background:
    radial-gradient(circle at var(--mx, 60%) var(--my, 0%), rgba(143, 92, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(12, 18, 42, 0.92);
}

body:not(.portal-page) .sales-feature-system article.planned::after {
  background: linear-gradient(90deg, rgba(143, 92, 255, 0.95), rgba(39, 230, 255, 0.2), transparent);
}

@media (max-width: 1180px) {
  body:not(.portal-page) .sales-feature-system {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body:not(.portal-page) .sales-feature-system {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  body:not(.portal-page) .sales-feature-system article {
    min-height: 0;
  }
}

/* PocketOfficeApps web offer refresh */
.expanded-points {
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.no-template-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(22px, 4vw, 42px);
  align-items: stretch;
  border: 1px solid rgba(146, 232, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 10%, rgba(39, 230, 255, 0.16), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.88);
  box-shadow: 0 26px 90px rgba(0, 8, 24, 0.28);
}

.no-template-copy h2 {
  max-width: 18ch;
  color: #ffffff;
  font-size: clamp(2rem, 4.8vw, 4.6rem);
  line-height: 0.98;
}

.no-template-copy p:not(.eyebrow) {
  max-width: 68ch;
  color: rgba(236, 249, 255, 0.78);
}

.no-template-proof {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-content: center;
}

.no-template-proof span,
.audience-cloud span {
  min-width: 0;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #dffbff;
  font-weight: 850;
  text-align: center;
}

.no-template-proof span {
  display: grid;
  place-items: center;
  min-height: 86px;
  padding: 14px;
}

.featured-demo-grid,
.home-demo-grid {
  align-items: stretch;
}

.demo-project-card.featured {
  display: grid;
  grid-template-rows: auto 1fr;
}

.demo-project-card.featured .demo-project-body,
.home-demo-grid .demo-project-body {
  display: grid;
  gap: 14px;
  align-content: start;
}

.demo-project-card.featured .demo-project-body p,
.home-demo-grid .demo-project-body p {
  margin: 0;
}

.demo-facts {
  display: grid;
  gap: 8px;
  margin: 0;
}

.demo-facts div {
  padding: 10px 12px;
  border: 1px solid rgba(146, 232, 255, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
}

.demo-facts dt {
  margin: 0 0 3px;
  color: #9bedff;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.demo-facts dd {
  margin: 0;
  color: rgba(236, 249, 255, 0.82);
  line-height: 1.45;
}

.restaurant-card {
  --demo-accent: #c24a2d;
}

.praxis-card {
  --demo-accent: #0d7f8f;
}

.estate-card {
  --demo-accent: #173f36;
}

.auto-card {
  --demo-accent: #e0442e;
}

.restaurant-card .demo-project-visual {
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 221, 159, 0.48), transparent 9rem),
    linear-gradient(135deg, #3a1d12, #b5482e);
}

.praxis-card .demo-project-visual {
  background:
    radial-gradient(circle at 82% 18%, rgba(223, 245, 247, 0.78), transparent 9rem),
    linear-gradient(135deg, #f7fcfd, #0d7f8f);
}

.estate-card .demo-project-visual {
  background:
    linear-gradient(90deg, rgba(244, 230, 200, 0.16) 1px, transparent 1px),
    linear-gradient(135deg, #f7f3ea, #173f36);
  background-size: 36px 36px, auto;
}

.auto-card .demo-project-visual {
  background:
    linear-gradient(120deg, transparent 0 38%, rgba(224, 68, 46, 0.8) 39% 54%, transparent 55%),
    linear-gradient(135deg, #0d1119, #151d2b);
}

.demo-project-card:is(.restaurant-card, .praxis-card, .estate-card, .auto-card) {
  border-color: color-mix(in srgb, var(--demo-accent) 48%, rgba(146, 232, 255, 0.18));
}

.demo-project-card:is(.restaurant-card, .praxis-card, .estate-card, .auto-card) .status {
  color: #ffffff;
  background: color-mix(in srgb, var(--demo-accent) 42%, rgba(39, 230, 255, 0.08));
}

.audience-cloud {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.audience-cloud span {
  padding: 9px 13px;
  text-align: left;
}

.website-price-card.support {
  border-color: rgba(39, 230, 255, 0.42);
  background:
    radial-gradient(circle at 18% 10%, rgba(39, 230, 255, 0.14), transparent 17rem),
    rgba(7, 20, 38, 0.92);
}

.website-package-limit {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(236, 249, 255, 0.76);
}

@media (max-width: 820px) {
  .no-template-section {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  .no-template-copy h2 {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .no-template-section {
    padding: 24px 16px;
  }

  .no-template-proof {
    grid-template-columns: 1fr 1fr;
  }

  .no-template-proof span {
    min-height: 62px;
    font-size: 0.9rem;
  }

  .audience-cloud {
    width: min(100% - 28px, 1180px);
  }

  .audience-cloud span,
  .demo-facts dd,
  .demo-project-body p,
  .demo-project-body h3,
  .website-price-card li,
  .website-package-limit {
    overflow-wrap: anywhere;
  }
}

/* Performance guard for core marketing pages */
body.portal-page *,
body.portal-page *::before,
body.portal-page *::after,
body.webdev-page *,
body.webdev-page *::before,
body.webdev-page *::after,
body.contact-terminal-page *,
body.contact-terminal-page *::before,
body.contact-terminal-page *::after {
  animation-duration: 0.001ms !important;
  animation-iteration-count: 1 !important;
  transition-duration: 0.001ms !important;
  scroll-behavior: auto !important;
}

/* Final mobile safeguard for Webentwicklung cards */
.webdev-page .demo-project-grid,
.webdev-page .website-price-grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.webdev-page .demo-project-card,
.webdev-page .website-price-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.webdev-page .demo-project-card *,
.webdev-page .website-price-card *,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: auto;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .website-price-card h3,
.webdev-page .demo-project-body h3,
.webdev-page .demo-project-visual span,
.webdev-page .website-price-card .status,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  hyphens: none;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  white-space: normal;
}

@media (min-width: 1025px) {
  .webdev-page .website-price-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr)) !important;
  }

  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .webdev-page .website-price-grid,
  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: min(100% - 32px, 1180px) !important;
    max-width: min(100% - 32px, 1180px) !important;
    padding-inline: clamp(16px, 5vw, 22px) !important;
  }

  .webdev-page .demo-project-grid,
  .webdev-page .website-price-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .webdev-page .demo-project-card,
  .webdev-page .website-price-card {
    min-width: min(280px, 100%);
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 20px;
  }

  .webdev-page .demo-project-visual {
    min-height: 150px;
    padding: 18px;
  }

  .webdev-page .demo-project-body h3,
  .webdev-page .website-price-card h3 {
    font-size: clamp(1.25rem, 7vw, 1.62rem);
    line-height: 1.16;
  }

  .webdev-page .website-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.95;
  }

  .webdev-page .website-price small {
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
    line-height: 1.2;
  }

  .webdev-page .demo-card-actions {
    grid-template-columns: 1fr;
  }

  .webdev-page .demo-card-actions .card-link,
  .webdev-page .website-price-card .button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: calc(100vw - 8px) !important;
    max-width: calc(100vw - 8px) !important;
    padding-inline: 8px !important;
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 16px;
  }

  .webdev-page .demo-project-visual {
    padding: 16px;
  }
}

/* Critical mobile fix for web development cards */
.webdev-page .demo-project-grid,
.webdev-page .website-price-grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.webdev-page .demo-project-card,
.webdev-page .website-price-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.webdev-page .demo-project-card *,
.webdev-page .website-price-card *,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: auto;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .website-price-card h3,
.webdev-page .demo-project-body h3,
.webdev-page .demo-project-visual span,
.webdev-page .website-price-card .status,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  hyphens: none;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  white-space: normal;
}

@media (min-width: 1025px) {
  .webdev-page .website-price-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr)) !important;
  }

  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .webdev-page .website-price-grid,
  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: min(100% - 32px, 1180px) !important;
    max-width: min(100% - 32px, 1180px) !important;
    padding-inline: clamp(16px, 5vw, 22px) !important;
  }

  .webdev-page .demo-project-grid,
  .webdev-page .website-price-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .webdev-page .demo-project-card,
  .webdev-page .website-price-card {
    min-width: min(280px, 100%);
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 20px;
  }

  .webdev-page .demo-project-visual {
    min-height: 150px;
    padding: 18px;
  }

  .webdev-page .demo-project-body h3,
  .webdev-page .website-price-card h3 {
    font-size: clamp(1.25rem, 7vw, 1.62rem);
    line-height: 1.16;
  }

  .webdev-page .website-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.95;
  }

  .webdev-page .website-price small {
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
    line-height: 1.2;
  }

  .webdev-page .demo-card-actions {
    grid-template-columns: 1fr;
  }

  .webdev-page .demo-card-actions .card-link,
  .webdev-page .website-price-card .button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: calc(100vw - 8px) !important;
    max-width: calc(100vw - 8px) !important;
    padding-inline: 8px !important;
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 16px;
  }

  .webdev-page .demo-project-visual {
    padding: 16px;
  }
}

/* Mobile webdevelopment safety overrides */
.webdev-page .demo-project-grid,
.webdev-page .website-price-grid {
  width: 100%;
  max-width: 1180px;
  margin-inline: auto;
}

.webdev-page .demo-project-card,
.webdev-page .website-price-card {
  width: 100%;
  min-width: 0;
  max-width: 100%;
}

.webdev-page .demo-project-card *,
.webdev-page .website-price-card *,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  word-break: normal;
  overflow-wrap: normal;
  hyphens: auto;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .website-price-card h3,
.webdev-page .demo-project-body h3,
.webdev-page .demo-project-visual span,
.webdev-page .website-price-card .status,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  hyphens: none;
}

.webdev-page .website-price,
.webdev-page .website-price small,
.webdev-page .demo-card-actions .card-link,
.webdev-page .website-price-card .button {
  white-space: normal;
}

@media (min-width: 1025px) {
  .webdev-page .website-price-grid {
    grid-template-columns: repeat(4, minmax(260px, 1fr)) !important;
  }

  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(3, minmax(260px, 1fr)) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .webdev-page .website-price-grid,
  .webdev-page .demo-project-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 768px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: min(100% - 32px, 1180px);
    max-width: min(100% - 32px, 1180px);
    padding-inline: clamp(16px, 5vw, 22px);
  }

  .webdev-page .demo-project-grid,
  .webdev-page .website-price-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px;
  }

  .webdev-page .demo-project-card,
  .webdev-page .website-price-card {
    min-width: min(280px, 100%);
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 20px;
  }

  .webdev-page .demo-project-visual {
    min-height: 150px;
    padding: 18px;
  }

  .webdev-page .demo-project-body h3,
  .webdev-page .website-price-card h3 {
    font-size: clamp(1.25rem, 7vw, 1.62rem);
    line-height: 1.16;
  }

  .webdev-page .website-price {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 6px;
    font-size: clamp(2.35rem, 13vw, 3.4rem);
    line-height: 0.95;
  }

  .webdev-page .website-price small {
    font-size: clamp(0.92rem, 4.6vw, 1.08rem);
    line-height: 1.2;
  }

  .webdev-page .demo-card-actions {
    grid-template-columns: 1fr;
  }

  .webdev-page .demo-card-actions .card-link,
  .webdev-page .website-price-card .button {
    width: 100%;
    min-height: 46px;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 360px) {
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    width: min(100% - 8px, 1180px);
    max-width: min(100% - 8px, 1180px);
    padding-inline: 8px;
  }

  .webdev-page .demo-project-body,
  .webdev-page .website-price-card {
    padding: 16px;
  }

  .webdev-page .demo-project-visual {
    padding: 16px;
  }
}

/* Additive homepage sections: demo projects and website packages */
.portal-page .demo-project-section,
.portal-page .website-offer-section,
.webdev-page .demo-project-section,
.webdev-page .website-offer-section {
  position: relative;
  overflow: hidden;
  max-width: min(1180px, calc(100% - 32px));
  margin: 0 auto clamp(34px, 5vw, 70px);
  padding: clamp(36px, 5vw, 68px);
  border: 1px solid rgba(146, 232, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 16% 10%, rgba(39, 230, 255, 0.12), transparent 26rem),
    radial-gradient(circle at 86% 82%, rgba(143, 92, 255, 0.12), transparent 28rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.082), rgba(255, 255, 255, 0.032));
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.portal-page .demo-project-section::before,
.portal-page .website-offer-section::before,
.webdev-page .demo-project-section::before,
.webdev-page .website-offer-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.36;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.07) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(180deg, black, transparent 86%);
}

.portal-page .demo-project-section .section-heading,
.portal-page .website-offer-section .section-heading,
.webdev-page .demo-project-section .section-heading,
.webdev-page .website-offer-section .section-heading {
  position: relative;
  z-index: 1;
  max-width: 820px;
  margin: 0 0 clamp(24px, 4vw, 36px);
}

.portal-page .demo-project-section .section-heading h2,
.portal-page .website-offer-section .section-heading h2,
.webdev-page .demo-project-section .section-heading h2,
.webdev-page .website-offer-section .section-heading h2 {
  color: #f8fcff;
}

.portal-page .demo-project-section .section-heading p:not(.eyebrow),
.portal-page .website-offer-section .section-heading p:not(.eyebrow),
.webdev-page .demo-project-section .section-heading p:not(.eyebrow),
.webdev-page .website-offer-section .section-heading p:not(.eyebrow),
.website-offer-note {
  color: rgba(236, 249, 255, 0.76);
}

.demo-project-grid,
.website-price-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
}

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

.website-price-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.demo-project-card,
.website-price-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 14px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.13), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
  box-shadow:
    0 24px 74px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.demo-project-card::after,
.website-price-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(-120%);
  transition: opacity 220ms ease, transform 520ms ease;
}

.demo-project-card:hover,
.website-price-card:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.44);
  box-shadow:
    0 32px 90px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(39, 230, 255, 0.1);
}

.demo-project-card:hover::after,
.website-price-card:hover::after {
  opacity: 1;
  transform: translateX(120%);
}

.demo-project-visual {
  min-height: 184px;
  display: grid;
  place-items: end start;
  padding: 20px;
  border-bottom: 1px solid rgba(146, 232, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.07) 1px, transparent 1px),
    radial-gradient(circle at 20% 20%, rgba(39, 230, 255, 0.2), transparent 34%),
    rgba(3, 8, 20, 0.72);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual.salon {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.09) 1px, transparent 1px),
    radial-gradient(circle at 78% 18%, rgba(199, 167, 255, 0.2), transparent 34%),
    rgba(6, 8, 24, 0.74);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual.restaurant {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 160, 88, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 20% 18%, rgba(255, 176, 96, 0.22), transparent 34%),
    rgba(12, 8, 18, 0.76);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual.praxis {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(103, 255, 217, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 76% 18%, rgba(103, 255, 217, 0.2), transparent 34%),
    rgba(4, 16, 24, 0.78);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual.realestate {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.07) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 22% 70%, rgba(143, 92, 255, 0.22), transparent 36%),
    rgba(8, 10, 24, 0.78);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual.auto {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(64, 138, 255, 0.08) 1px, transparent 1px),
    radial-gradient(circle at 72% 70%, rgba(64, 138, 255, 0.24), transparent 34%),
    rgba(4, 8, 18, 0.8);
  background-size: 28px 28px, 28px 28px, auto, auto;
}

.demo-project-visual span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(39, 230, 255, 0.3);
  border-radius: 999px;
  color: #bdf7ff;
  background: rgba(39, 230, 255, 0.1);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.demo-project-body,
.website-price-card {
  padding: 22px;
}

.demo-project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.demo-project-body h3,
.website-price-card h3 {
  margin: 14px 0 10px;
  color: #f8fcff;
  font-size: clamp(1.16rem, 2vw, 1.42rem);
  letter-spacing: 0;
}

.demo-project-body p,
.website-price-card li {
  color: rgba(236, 249, 255, 0.75);
}

.demo-project-body .card-link {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.demo-card-actions {
  display: grid;
  gap: 10px;
  margin-top: auto;
}

.demo-card-actions .card-link {
  margin-top: 0;
}

.demo-card-actions .card-link.secondary {
  color: #dffaff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(146, 232, 255, 0.18);
}

.webdev-page .demo-project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.webdev-page .website-price-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.webdev-page .website-custom-section,
.webdev-page .target-group-section {
  position: relative;
}

.webdev-page .target-group-section {
  border-block: 1px solid rgba(146, 232, 255, 0.12);
  background:
    radial-gradient(circle at 82% 18%, rgba(143, 92, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.94), rgba(10, 19, 37, 0.9));
}

.webdev-page .target-group-section .section-heading h2,
.webdev-page .target-group-section .section-heading p {
  color: #f8fcff;
}

.website-price-card.recommended {
  border-color: rgba(39, 230, 255, 0.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
  box-shadow: 0 34px 100px rgba(39, 230, 255, 0.12);
}

.website-price {
  display: block;
  margin: 0 0 18px;
  color: #f8fcff;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1;
}

.website-price small {
  display: block;
  margin-top: 6px;
  color: rgba(236, 249, 255, 0.66);
  font-size: 0.95rem;
  font-weight: 700;
}

.website-price-card ul {
  display: grid;
  gap: 10px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.website-price-card li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.website-price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #27e6ff;
  box-shadow: 0 0 16px rgba(39, 230, 255, 0.72);
}

.website-price-card .button {
  width: 100%;
  margin-top: auto;
  justify-content: center;
}

.website-offer-note {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 22px 0 0;
  font-size: 0.95rem;
}

.home-design-demo-section {
  max-width: min(980px, calc(100% - 32px)) !important;
  padding: clamp(26px, 4vw, 42px) !important;
}

.home-design-demo-section .section-heading {
  max-width: 720px !important;
  margin-bottom: 20px !important;
}

.home-design-demo-section .section-heading h2 {
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.home-design-demo-section .demo-project-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
}

.demo-project-card.compact .demo-project-visual {
  min-height: 112px;
}

.demo-project-card.compact .demo-project-body {
  padding: 18px;
}

.demo-project-card.compact h3 {
  margin-bottom: 16px;
}

.website-package-intro {
  margin: -8px 0 16px;
  color: rgba(236, 249, 255, 0.72);
  line-height: 1.55;
}

.website-package-note,
.website-package-limit {
  margin: 0 0 16px;
  color: rgba(236, 249, 255, 0.7);
  font-size: 0.92rem;
  line-height: 1.55;
}

.website-package-note {
  padding: 10px 12px;
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
}

.website-package-limit {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(146, 232, 255, 0.14);
}

.website-price-card.support {
  border-color: rgba(143, 92, 255, 0.42);
  background:
    radial-gradient(circle at 50% 0%, rgba(143, 92, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045));
}

.website-price-card.support .status {
  border-color: rgba(143, 92, 255, 0.38);
  background: rgba(143, 92, 255, 0.13);
  color: #e6d9ff;
}

.website-support-note {
  position: relative;
  z-index: 1;
  margin: 22px 0 0;
  max-width: 920px;
  padding: 18px 20px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(39, 230, 255, 0.09), rgba(143, 92, 255, 0.075)),
    rgba(255, 255, 255, 0.045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.website-support-note strong {
  display: block;
  margin-bottom: 6px;
  color: #f8fcff;
}

.website-support-note p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  line-height: 1.6;
}

.webdev-page .webdev-hero {
  border-bottom: 1px solid rgba(146, 232, 255, 0.14);
}

.webdev-page .website-value-section {
  border-block: 1px solid rgba(146, 232, 255, 0.12);
  background:
    radial-gradient(circle at 16% 16%, rgba(39, 230, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.94), rgba(10, 19, 37, 0.9));
}

.webdev-page .website-value-section .section-heading h2,
.webdev-page .website-value-section .section-heading p {
  color: #f8fcff;
}

@media (max-width: 980px) {
  .demo-project-grid,
  .website-price-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .webdev-page .website-price-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .portal-page .demo-project-section,
  .portal-page .website-offer-section,
  .webdev-page .demo-project-section,
  .webdev-page .website-offer-section {
    max-width: min(100% - 22px, 1180px);
    padding: 26px 18px;
    border-radius: 14px;
  }

  .demo-project-visual {
    min-height: 148px;
  }

  .home-design-demo-section .demo-project-grid {
    grid-template-columns: 1fr;
  }

  .demo-project-card.compact .demo-project-visual {
    min-height: 96px;
  }
}

/* Final safeguard: digital business card removed from the site. */
.portal-business-card,
.digital-business-card,
.business-card-surface,
.business-card-meta,
.business-card-grid,
.business-card-actions,
.identity-matrix,
.signature-code {
  display: none !important;
}

body.portal-page .portal-stage {
  grid-template-areas:
    "copy core"
    "menu menu" !important;
  align-content: start;
}

body.portal-page .portal-menu {
  margin-top: clamp(12px, 2vw, 24px);
}

.contact-terminal-page .contact-document {
  align-items: start;
  column-gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.contact-terminal-page .contact-document h1 {
  max-width: 9ch;
  overflow-wrap: anywhere;
  font-size: clamp(2.45rem, 4.1vw, 4.7rem);
  line-height: 0.96;
}

.contact-terminal-page .contact-form {
  min-width: 0;
}

@media (max-width: 1120px) {
  body.portal-page .portal-stage {
    grid-template-areas:
      "copy"
      "core"
      "menu" !important;
  }
}

@media (max-width: 860px) {
  .contact-terminal-page .contact-document h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }
}

/* Digital business card removed */
.portal-business-card,
.digital-business-card,
.business-card-surface,
.business-card-meta,
.business-card-grid,
.business-card-actions,
.identity-matrix,
.signature-code {
  display: none !important;
}

body.portal-page .portal-stage {
  grid-template-areas:
    "copy core"
    "menu menu" !important;
  align-content: start;
}

body.portal-page .portal-menu {
  margin-top: clamp(12px, 2vw, 24px);
}

@media (max-width: 1120px) {
  body.portal-page .portal-stage {
    grid-template-areas:
      "copy"
      "core"
      "menu" !important;
  }
}

.contact-terminal-page .contact-document {
  align-items: start;
  column-gap: clamp(28px, 5vw, 72px);
  overflow: hidden;
}

.contact-terminal-page .contact-document h1 {
  max-width: 9ch;
  overflow-wrap: anywhere;
  font-size: clamp(2.45rem, 4.1vw, 4.7rem);
  line-height: 0.96;
}

.contact-terminal-page .contact-form {
  min-width: 0;
}

@media (max-width: 860px) {
  .contact-terminal-page .contact-document h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 12vw, 4rem);
  }
}

/* Final production guards */
.private-status,
.directory-badges .status {
  min-width: 74px !important;
  justify-content: center;
  text-align: center;
}

/* Digital business card removed */
.portal-business-card,
.digital-business-card,
.business-card-surface,
.business-card-meta,
.business-card-grid,
.business-card-actions,
.identity-matrix,
.signature-code {
  display: none !important;
}

body.portal-page .portal-stage {
  grid-template-areas:
    "copy core"
    "menu menu" !important;
  align-content: start;
}

body.portal-page .portal-menu {
  margin-top: clamp(12px, 2vw, 24px);
}

@media (max-width: 1120px) {
  body.portal-page .portal-stage {
    grid-template-areas:
      "copy"
      "core"
      "menu" !important;
  }
}

/* Final chip width guard */
.private-status,
.directory-badges .status {
  min-width: 74px !important;
  justify-content: center;
  text-align: center;
}

/* Production visual hardening: full-width dark system and robust text wrapping */
:root {
  color-scheme: dark !important;
  --bg: #030611 !important;
  --bg-soft: #050b17 !important;
  --bg-elevated: #071426 !important;
  --card: rgba(255, 255, 255, 0.07) !important;
  --card-strong: rgba(255, 255, 255, 0.105) !important;
  --card-border: rgba(146, 232, 255, 0.18) !important;
  --text: #f8fcff !important;
  --muted: rgba(229, 244, 255, 0.76) !important;
  --muted-2: rgba(195, 215, 230, 0.62) !important;
}

html,
body {
  min-width: 0;
  min-height: 100%;
  overflow-x: clip;
  background:
    radial-gradient(circle at 12% 8%, rgba(39, 230, 255, 0.16), transparent 30rem),
    radial-gradient(circle at 88% 18%, rgba(143, 92, 255, 0.16), transparent 32rem),
    linear-gradient(180deg, #030611 0%, #06101f 44%, #050816 100%) !important;
  color: #f8fcff !important;
}

body,
main,
.section,
.page-hero,
.hero,
.premium-product-hero,
.product-detail-hero,
.legal-page,
.portal-main {
  background-color: transparent !important;
}

body::before,
body::after {
  max-width: 100vw;
}

.site-header,
body.portal-page .portal-header {
  left: 0;
  right: 0;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  box-sizing: border-box;
  border-radius: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  background:
    linear-gradient(135deg, rgba(6, 18, 34, 0.94), rgba(8, 20, 38, 0.86)),
    rgba(3, 8, 20, 0.92) !important;
  border-bottom: 1px solid rgba(146, 232, 255, 0.2) !important;
  color: #f8fcff !important;
}

.site-header .brand,
.site-header .nav,
.site-header .nav-cta,
.site-header .mobile-menu,
.portal-help-button {
  min-width: 0;
  flex-shrink: 0;
}

.site-header .nav {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.site-header .nav a,
.mobile-nav a,
.site-header .brand span,
.site-header .nav-cta,
.site-header .mobile-menu {
  color: #f8fcff !important;
  white-space: nowrap;
}

.footer,
body.portal-page .portal-footer {
  width: 100%;
  max-width: none !important;
  margin-inline: 0 !important;
  box-sizing: border-box;
  border-radius: 0 !important;
  border-right: 0 !important;
  border-left: 0 !important;
  background:
    linear-gradient(135deg, rgba(6, 18, 34, 0.94), rgba(8, 20, 38, 0.86)),
    rgba(3, 8, 20, 0.92) !important;
  border-top: 1px solid rgba(146, 232, 255, 0.16) !important;
}

.portal-stage,
.page-hero,
.hero,
.premium-product-hero,
.product-detail-hero,
.legal-document,
.thanks-card,
.contact-shell,
.salescopilot-shell,
.directory-card,
.product-info-grid article,
.product-feature-grid article,
.product-gallery figure,
.sales-feature-system article,
.sales-workflow-grid article,
.sales-premium-grid article,
.sales-decision-grid article,
.status-panel,
.service-shell {
  box-sizing: border-box;
  min-width: 0;
  color: #f8fcff !important;
}

.portal-stage,
.page-hero,
.hero,
.premium-product-hero,
.product-detail-hero,
.legal-document,
.contact-shell,
.salescopilot-shell,
.status-panel,
.thanks-card {
  border-color: rgba(146, 232, 255, 0.2) !important;
  background:
    radial-gradient(circle at 82% 12%, rgba(39, 230, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 14% 88%, rgba(143, 92, 255, 0.1), transparent 26rem),
    linear-gradient(135deg, rgba(4, 12, 26, 0.9), rgba(8, 22, 41, 0.78)) !important;
}

.directory-card,
.brand-app-card,
.product-info-grid article,
.product-feature-grid article,
.product-gallery figure,
.sales-feature-system article,
.sales-workflow-grid article,
.sales-premium-grid article,
.sales-decision-grid article,
.sales-explainer-grid article,
.sales-mockup-strip article,
.service-capability-grid article,
.flow-grid article {
  min-width: min(100%, 210px);
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.portal-tile strong,
.portal-tile small,
.directory-card h3,
.directory-card p,
.product-info-grid strong,
.product-info-grid p,
.product-feature-grid h3,
.product-feature-grid p,
.sales-feature-system h3,
.sales-feature-system p,
.sales-feature-system em,
.sales-hero-metrics strong,
.sales-hero-metrics span,
.status,
.detail-keypoints span,
.directory-badges span,
.button,
.card-link {
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.status,
.detail-keypoints span,
.directory-badges span,
.sales-feature-system em,
.button,
.card-link {
  white-space: normal;
  min-width: fit-content;
}

body:not(.portal-page) .sales-feature-system {
  grid-template-columns: repeat(auto-fit, minmax(218px, 1fr)) !important;
  gap: 16px !important;
}

body:not(.portal-page) .sales-hero-metrics {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
}

body:not(.portal-page) .product-feature-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
}

body:not(.portal-page) .product-info-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
}

.portal-page .portal-copy h1 {
  max-width: min(780px, 100%);
  font-size: clamp(3rem, 5.6vw, 5.7rem);
  line-height: 0.98;
}

.portal-page .portal-copy {
  max-width: min(760px, 100%);
}

.portal-menu > .portal-tile {
  min-width: 138px;
}

@media (min-width: 1180px) {
  .portal-menu {
    grid-template-columns: minmax(140px, 0.78fr) minmax(390px, 2.2fr) minmax(140px, 0.78fr) minmax(140px, 0.78fr) minmax(140px, 0.78fr) !important;
  }
}

@media (max-width: 980px) {
  .site-header {
    gap: 12px;
    padding-inline: 16px;
  }

  .site-header .nav {
    display: none;
  }

  .site-header .nav-cta,
  .portal-help-button {
    display: none;
  }
}

@media (max-width: 720px) {
  html,
  body {
    overflow-x: hidden;
  }

  .site-header {
    padding: 12px 14px;
  }

  .brand span {
    max-width: none;
    overflow: visible;
    text-overflow: clip;
    font-size: 0.94rem;
  }

  .portal-page .portal-copy h1 {
    font-size: clamp(2.25rem, 10.5vw, 3.55rem);
    line-height: 1;
  }

  .portal-menu > .portal-tile,
  .directory-card,
  .product-info-grid article,
  .product-feature-grid article,
  .sales-feature-system article {
    min-width: 0;
  }

.status,
.detail-keypoints span,
.directory-badges span,
.button,
.card-link {
  min-width: 0;
}

.private-status,
.directory-badges .status {
  min-width: 74px;
  justify-content: center;
  text-align: center;
}
}

/* SalesCopilotAI code-lab finish */
.sales-code-page {
  --app-accent: #27e6ff;
  --app-accent-2: #8f5cff;
  background:
    radial-gradient(circle at 10% 12%, rgba(39, 230, 255, 0.14), transparent 26rem),
    radial-gradient(circle at 88% 20%, rgba(143, 92, 255, 0.15), transparent 28rem),
    linear-gradient(180deg, #030611 0%, #07111f 48%, #040814 100%) !important;
  color: #f8fcff;
}

.sales-code-page .sales-explainer-section,
.sales-code-page .sales-workflow-section,
.sales-code-page .product-preview-section,
.sales-code-page .sales-feature-system-section,
.sales-code-page .detail-intro-section,
.sales-code-page .sales-premium-section,
.sales-code-page .status-section,
.sales-code-page .product-gallery,
.sales-code-page .sales-decision-section,
.sales-code-page .contact-cta {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(146, 232, 255, 0.11);
  background:
    radial-gradient(circle at 16% 18%, rgba(39, 230, 255, 0.11), transparent 24rem),
    radial-gradient(circle at 84% 82%, rgba(143, 92, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, rgba(5, 12, 28, 0.98), rgba(7, 18, 34, 0.94)) !important;
}

.sales-code-page .sales-explainer-shell,
.sales-code-page .sales-premium-grid article,
.sales-code-page .sales-mockup-strip article,
.sales-code-page .status-panel,
.sales-code-page .sales-decision-shell,
.sales-code-page .product-cta-shell,
.sales-code-page .product-preview-shell {
  border-color: rgba(146, 232, 255, 0.18) !important;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.13), transparent 40%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 16, 31, 0.84) !important;
  color: #f8fcff !important;
  box-shadow:
    0 28px 84px rgba(0, 0, 0, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sales-code-page .sales-explainer-shell h2,
.sales-code-page .sales-workflow-section .section-heading h2,
.sales-code-page .sales-premium-section .section-heading h2,
.sales-code-page .status-panel h2,
.sales-code-page .sales-decision-shell h2,
.sales-code-page .product-gallery .section-heading h2,
.sales-code-page .product-cta-shell h2,
.sales-code-page .sales-premium-grid h3,
.sales-code-page .sales-mockup-strip strong {
  color: #ffffff !important;
}

.sales-code-page .sales-explainer-grid p,
.sales-code-page .sales-premium-grid p,
.sales-code-page .sales-mockup-strip p,
.sales-code-page .status-panel span,
.sales-code-page .sales-decision-grid p,
.sales-code-page .product-cta-shell p {
  color: rgba(236, 249, 255, 0.78) !important;
}

.sales-code-page .gallery-grid figure {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
    rgba(5, 16, 31, 0.86) !important;
  border-color: rgba(146, 232, 255, 0.18) !important;
}

/* Stronger code atmosphere system */
.portal-page,
.service-page,
.tech-lab-page,
.contact-terminal-page {
  --app-accent: #27e6ff;
  --app-accent-2: #8f5cff;
  isolation: isolate;
}

.portal-page .app-code-atmosphere,
.directory-page .app-code-atmosphere,
.app-product-page .app-code-atmosphere,
.sales-code-page .app-code-atmosphere,
.service-page .app-code-atmosphere,
.tech-lab-page .app-code-atmosphere {
  opacity: 0.56;
}

.portal-page .app-code-atmosphere {
  inset: 92px 0 0;
  opacity: 0.44;
  mask-image:
    radial-gradient(ellipse at 32% 36%, transparent 0 20%, #000 38%, #000 78%, transparent 100%),
    linear-gradient(90deg, #000 0%, #000 72%, transparent 100%);
}

.service-page .app-code-atmosphere {
  opacity: 0.62;
}

.tech-lab-page .app-code-atmosphere {
  opacity: 0.6;
}

.contact-terminal-page .app-code-atmosphere {
  opacity: 0.28;
}

.portal-page .portal-header,
.portal-page .portal-main,
.portal-page .portal-footer,
.service-page .site-header,
.service-page main,
.service-page .footer,
.tech-lab-page .site-header,
.tech-lab-page main,
.tech-lab-page .footer,
.contact-terminal-page .site-header,
.contact-terminal-page main,
.contact-terminal-page .footer {
  position: relative;
  z-index: 1;
}

.app-code-atmosphere::before {
  opacity: 1.18;
}

.app-code-atmosphere::after {
  opacity: 0.9;
  animation-duration: 9s;
}

.code-panel-title {
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent, #27e6ff) 16%, transparent), rgba(8, 18, 38, 0.72)),
    rgba(3, 10, 24, 0.76);
  color: rgba(226, 253, 255, 0.84);
}

.code-layer {
  gap: clamp(8px, 1.1vw, 13px);
  color: rgba(225, 252, 255, 0.78);
  animation-duration: 28s;
}

.code-layer.layer-a {
  top: -18%;
}

.code-layer.layer-b {
  top: 8%;
  left: 34%;
  opacity: 0.62;
  animation-duration: 34s;
}

.code-layer.layer-c {
  top: 42%;
  left: 8%;
  opacity: 0.44;
  animation-duration: 24s;
  animation-direction: alternate;
}

.code-layer span {
  border-color: color-mix(in srgb, var(--app-accent, #27e6ff) 26%, transparent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent, #27e6ff) 18%, transparent), rgba(143, 92, 255, 0.08)),
    rgba(2, 8, 20, 0.7);
  box-shadow:
    0 12px 42px rgba(0, 0, 0, 0.24),
    0 0 28px color-mix(in srgb, var(--app-accent, #27e6ff) 12%, transparent);
}

.portal-page .portal-copy,
.portal-page .portal-core,
.portal-page .portal-menu,
.portal-page .portal-business-card,
.directory-page .page-hero-copy,
.directory-page .directory-radar,
.directory-page .section-heading,
.directory-page .app-directory-grid,
.service-page .page-hero-copy,
.service-page .service-console,
.service-page .studio-signal-panel,
.tech-lab-page .product-hero-copy,
.tech-lab-page .product-device-frame,
.contact-terminal-page .legal-document {
  background-color: color-mix(in srgb, #050b17 72%, transparent);
  backdrop-filter: blur(16px);
}

.portal-page .portal-copy h1 {
  max-width: 900px;
  font-size: clamp(3.45rem, 6.5vw, 6.55rem);
  line-height: 0.96;
}

.portal-page .portal-copy p:not(.eyebrow) {
  max-width: 700px;
}

.directory-page .app-directory-hero h1 {
  max-width: 760px;
  font-size: clamp(3.1rem, 6.3vw, 6rem);
  line-height: 0.96;
}

.studio-code-bg .code-rain-layer {
  animation-duration: 24s;
}

.studio-code-bg .code-rain-layer.layer-b {
  animation-duration: 30s;
  opacity: 0.55;
}

@media (max-width: 720px) {
  .portal-page .app-code-atmosphere,
  .directory-page .app-code-atmosphere,
  .app-product-page .app-code-atmosphere,
  .sales-code-page .app-code-atmosphere,
  .service-page .app-code-atmosphere,
  .tech-lab-page .app-code-atmosphere {
    opacity: 0.24;
  }

  .contact-terminal-page .app-code-atmosphere {
    opacity: 0.12;
  }

  .code-layer.layer-c {
    display: none;
  }

  .portal-page .portal-copy h1 {
    font-size: clamp(2.45rem, 12vw, 4.3rem);
    line-height: 0.98;
  }

  .directory-page .app-directory-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4.1rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .code-layer.layer-c {
    animation: none !important;
    transform: none !important;
  }
}

/* Final readability tuning for stronger code layers */
.portal-page .portal-copy,
.directory-page .page-hero-copy,
.service-page .page-hero-copy,
.tech-lab-page .product-hero-copy,
.contact-terminal-page .legal-document {
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 10%, rgba(39, 230, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(3, 8, 20, 0.78), rgba(7, 21, 39, 0.56)) !important;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.portal-page .portal-core,
.directory-page .directory-radar,
.service-page .service-console,
.service-page .studio-signal-panel {
  background-color: transparent !important;
}

.portal-page .portal-copy h1 {
  max-width: 760px;
  font-size: clamp(3.6rem, 6.2vw, 6.2rem);
}

.directory-page .app-directory-hero h1 {
  max-width: 690px;
  font-size: clamp(3.15rem, 5.8vw, 5.5rem);
}

.contact-terminal-page .legal-document h1 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

@media (max-width: 720px) {
  .portal-page .portal-copy h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .directory-page .app-directory-hero h1 {
    font-size: clamp(2.55rem, 11vw, 3.8rem);
  }

  .contact-terminal-page .legal-document h1 {
    font-size: clamp(1.95rem, 8vw, 2.55rem);
    line-height: 1.02;
  }
}

/* Premium app detail pages */
.app-product-page {
  --app-accent: #27e6ff;
  --app-accent-2: #8f5cff;
  --app-soft: rgba(39, 230, 255, 0.12);
  background:
    radial-gradient(circle at 12% 10%, color-mix(in srgb, var(--app-accent) 20%, transparent), transparent 28rem),
    radial-gradient(circle at 88% 16%, color-mix(in srgb, var(--app-accent-2) 18%, transparent), transparent 30rem),
    linear-gradient(180deg, #030611 0%, #07111f 46%, #050b17 100%) !important;
  color: #f8fcff;
}

.app-overview-page { --app-accent: #27e6ff; --app-accent-2: #3677ff; }
.app-lohnpilot-page { --app-accent: #39ffd2; --app-accent-2: #33a3ff; }
.app-gymbuddy-page { --app-accent: #ff5c8a; --app-accent-2: #ffb347; }
.app-plantbuddy-page { --app-accent: #6cff95; --app-accent-2: #27e6ff; }
.app-lingora-quest-page,
.app-lingoquest-page { --app-accent: #caa7ff; --app-accent-2: #27e6ff; }
.app-pocketpilot-page { --app-accent: #8ff4ff; --app-accent-2: #8f5cff; }

.directory-page,
.app-product-page,
.sales-code-page {
  isolation: isolate;
}

.app-code-atmosphere {
  position: fixed;
  inset: 78px 0 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.42;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 12%, #000 88%, transparent 100%),
    linear-gradient(180deg, transparent 0%, #000 13%, #000 82%, transparent 100%);
}

.app-code-atmosphere::before,
.app-code-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.app-code-atmosphere::before {
  background:
    radial-gradient(circle at 20% 24%, rgba(39, 230, 255, 0.12), transparent 22rem),
    radial-gradient(circle at 84% 20%, rgba(143, 92, 255, 0.11), transparent 24rem),
    linear-gradient(90deg, rgba(39, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.04) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
}

.app-code-atmosphere::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(39, 230, 255, 0.14) 48%, transparent 52%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.026) 0 1px, transparent 1px 12px);
  mix-blend-mode: screen;
  animation: app-code-scan 14s linear infinite;
}

.code-panel-title {
  position: absolute;
  top: clamp(22px, 5vw, 58px);
  right: clamp(18px, 6vw, 96px);
  z-index: 1;
  padding: 8px 12px;
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 999px;
  background: rgba(3, 10, 24, 0.66);
  color: rgba(219, 251, 255, 0.72);
  font: 800 0.72rem/1 Consolas, "SFMono-Regular", monospace;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 0 28px rgba(39, 230, 255, 0.08);
}

.code-layer {
  position: absolute;
  inset-inline: clamp(16px, 5vw, 80px);
  display: grid;
  gap: clamp(10px, 1.4vw, 16px);
  font-family: Consolas, "SFMono-Regular", "Liberation Mono", monospace;
  font-size: clamp(0.68rem, 0.9vw, 0.86rem);
  line-height: 1.42;
  color: rgba(225, 252, 255, 0.62);
  transform: perspective(1000px) rotateX(8deg) rotateY(-5deg);
  transform-origin: center;
  animation: app-code-drift 46s linear infinite;
}

.code-layer.layer-a {
  top: -8%;
  left: -2%;
}

.code-layer.layer-b {
  top: 18%;
  left: 42%;
  opacity: 0.5;
  animation-duration: 58s;
  animation-direction: reverse;
}

.code-layer span {
  width: fit-content;
  max-width: min(680px, 84vw);
  padding: 8px 12px;
  border: 1px solid color-mix(in srgb, var(--app-accent, #27e6ff) 18%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent, #27e6ff) 12%, transparent), rgba(143, 92, 255, 0.06)),
    rgba(2, 8, 20, 0.58);
  box-shadow:
    0 12px 38px rgba(0, 0, 0, 0.22),
    0 0 24px color-mix(in srgb, var(--app-accent, #27e6ff) 8%, transparent);
  white-space: nowrap;
}

.code-layer i {
  color: color-mix(in srgb, var(--app-accent, #39ffd2) 72%, white 14%);
  font-style: normal;
}

.code-layer b {
  color: color-mix(in srgb, var(--app-accent-2, #caa7ff) 68%, white 18%);
  font-weight: 800;
}

.directory-page .site-header,
.directory-page main,
.directory-page .footer,
.app-product-page .site-header,
.app-product-page main,
.app-product-page .footer,
.sales-code-page .site-header,
.sales-code-page main,
.sales-code-page .footer {
  position: relative;
  z-index: 1;
}

.directory-page .app-directory-hero,
.directory-page .app-universe-section,
.app-product-page .product-detail-hero,
.app-product-page .section,
.sales-code-page .page-hero,
.sales-code-page .section {
  position: relative;
  z-index: 1;
}

@keyframes app-code-drift {
  from { translate: 0 -10%; }
  to { translate: 0 44%; }
}

@keyframes app-code-scan {
  from { background-position: 0 -160px, 0 0; }
  to { background-position: 0 220px, 0 90px; }
}

.app-product-page .breadcrumb-bar,
.app-product-page .section,
.app-product-page .footer {
  position: relative;
  z-index: 1;
}

.app-product-page .breadcrumb-bar {
  border-color: color-mix(in srgb, var(--app-accent) 24%, transparent);
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent) 10%, transparent), transparent),
    rgba(5, 14, 29, 0.82);
  color: rgba(236, 249, 255, 0.74);
  backdrop-filter: blur(16px);
}

.app-product-page .product-detail-hero {
  width: min(1220px, calc(100% - 32px));
  min-height: min(720px, calc(100vh - 116px));
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.72fr);
  align-items: center;
  gap: clamp(22px, 5vw, 76px);
  border-color: color-mix(in srgb, var(--app-accent) 36%, transparent) !important;
  background:
    radial-gradient(circle at 76% 22%, color-mix(in srgb, var(--app-accent) 22%, transparent), transparent 22rem),
    radial-gradient(circle at 24% 84%, color-mix(in srgb, var(--app-accent-2) 18%, transparent), transparent 24rem),
    linear-gradient(135deg, rgba(5, 14, 31, 0.98), rgba(8, 22, 42, 0.94)) !important;
  box-shadow:
    0 34px 110px rgba(0, 6, 20, 0.38),
    0 0 0 1px color-mix(in srgb, var(--app-accent) 10%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.app-product-page .product-detail-hero::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid color-mix(in srgb, var(--app-accent) 16%, transparent);
  border-radius: 8px;
  background:
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent) 7%, transparent) 1px, transparent 1px),
    linear-gradient(color-mix(in srgb, var(--app-accent-2) 6%, transparent) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 62% 48%, #000, transparent 74%);
}

.app-product-page .product-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 8% -88px;
  z-index: 0;
  height: 180px;
  pointer-events: none;
  background: radial-gradient(ellipse, color-mix(in srgb, var(--app-accent) 24%, transparent), transparent 72%);
}

.app-product-page .product-hero-copy,
.app-product-page .product-device-frame {
  position: relative;
  z-index: 2;
}

.app-product-page .product-hero-copy {
  max-width: 680px;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid rgba(146, 232, 255, 0.13);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 8, 20, 0.78), rgba(10, 32, 54, 0.48)),
    color-mix(in srgb, var(--app-accent) 5%, rgba(5, 13, 29, 0.56));
  backdrop-filter: blur(14px);
}

.app-product-page .product-hero-copy h1 {
  color: #ffffff;
  text-shadow: 0 0 36px color-mix(in srgb, var(--app-accent) 20%, transparent);
}

.app-product-page .detail-keypoints {
  gap: 8px;
}

.app-product-page .status,
.app-product-page .detail-keypoints span,
.app-product-page .salescopilot-points span {
  border-color: color-mix(in srgb, var(--app-accent) 36%, transparent);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--app-accent) 18%, transparent), transparent 80%),
    rgba(255, 255, 255, 0.065);
  color: #eaffff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.app-product-page .product-device-frame {
  max-width: min(420px, 100%);
  justify-self: center;
  border: 1px solid color-mix(in srgb, var(--app-accent) 28%, transparent);
  background:
    radial-gradient(circle at 50% 0%, color-mix(in srgb, var(--app-accent) 18%, transparent), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(3, 8, 20, 0.86);
  box-shadow:
    0 28px 90px rgba(0, 0, 0, 0.34),
    0 0 54px color-mix(in srgb, var(--app-accent) 12%, transparent);
}

.app-product-page .product-device-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  pointer-events: none;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 10%, transparent);
}

.app-product-page .product-device-frame img,
.app-product-page .product-gallery img,
.app-product-page .product-gallery .mockup-screen {
  border-radius: 8px;
  filter: saturate(1.08) contrast(1.04);
}

.app-product-page .detail-intro-section,
.app-product-page .product-gallery,
.app-product-page .contact-cta {
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--app-accent) 11%, transparent), transparent 24rem),
    radial-gradient(circle at 82% 80%, color-mix(in srgb, var(--app-accent-2) 10%, transparent), transparent 24rem),
    linear-gradient(180deg, #050b17, #081427) !important;
  border-block: 1px solid rgba(146, 232, 255, 0.12);
}

.app-product-page .section-heading h2,
.app-product-page .section-heading p {
  color: #f8fcff;
}

.app-product-page .product-info-grid,
.app-product-page .product-feature-grid,
.app-product-page .gallery-grid {
  position: relative;
  z-index: 1;
}

.app-product-page .product-info-grid,
.app-product-page .product-feature-grid,
.app-product-page .gallery-grid {
  display: grid !important;
  gap: 18px !important;
}

.app-product-page .product-info-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
}

.app-product-page .product-feature-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.app-product-page .gallery-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
}

.app-product-page .product-info-grid article,
.app-product-page .product-feature-grid article,
.app-product-page .product-gallery figure {
  min-height: 210px;
  border-color: color-mix(in srgb, var(--app-accent) 26%, transparent) !important;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), color-mix(in srgb, var(--app-accent) 16%, transparent), transparent 38%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.035)),
    rgba(5, 16, 31, 0.82) !important;
  box-shadow:
    0 26px 78px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.11);
}

.app-product-page .product-info-grid article::before,
.app-product-page .product-feature-grid article::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 8px;
  border: 1px solid color-mix(in srgb, var(--app-accent) 9%, transparent);
  background-image:
    linear-gradient(color-mix(in srgb, var(--app-accent) 4%, transparent) 1px, transparent 1px),
    linear-gradient(90deg, color-mix(in srgb, var(--app-accent-2) 4%, transparent) 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.72;
}

.app-product-page .product-info-grid article > *,
.app-product-page .product-feature-grid article > *,
.app-product-page .product-gallery figure > * {
  position: relative;
  z-index: 1;
}

.app-product-page .product-info-grid span,
.app-product-page .product-feature-grid article span {
  color: color-mix(in srgb, var(--app-accent) 72%, white 18%);
}

.app-product-page .product-info-grid strong,
.app-product-page .product-feature-grid h3 {
  color: #ffffff;
}

.app-product-page .product-info-grid p,
.app-product-page .product-feature-grid p,
.app-product-page .product-gallery figcaption,
.app-product-page .product-cta-shell p {
  color: rgba(236, 249, 255, 0.78) !important;
}

.app-product-page .product-feature-grid article,
.app-product-page .product-gallery figure {
  color: #f8fcff !important;
}

.app-product-page .product-feature-grid article {
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.app-product-page .product-feature-grid article:hover,
.app-product-page .product-feature-grid article:focus-within {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--app-accent) 48%, transparent) !important;
  box-shadow:
    0 32px 92px rgba(0, 0, 0, 0.26),
    0 0 40px color-mix(in srgb, var(--app-accent) 10%, transparent);
}

.app-product-page .product-gallery figure {
  min-height: 100%;
  padding: 16px;
}

.app-product-page .product-cta-shell {
  border-color: color-mix(in srgb, var(--app-accent) 26%, transparent);
  background:
    radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--app-accent) 16%, transparent), transparent 24rem),
    linear-gradient(135deg, rgba(5, 16, 31, 0.94), rgba(9, 28, 52, 0.86)) !important;
  color: #f8fcff;
}

.app-product-page .button.primary {
  box-shadow:
    0 18px 44px color-mix(in srgb, var(--app-accent) 18%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.app-gymbuddy-page .product-detail-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(255, 92, 138, 0.18), transparent 22rem),
    radial-gradient(circle at 28% 84%, rgba(255, 179, 71, 0.14), transparent 24rem),
    linear-gradient(135deg, rgba(13, 9, 22, 0.98), rgba(30, 12, 28, 0.94)) !important;
}

.app-plantbuddy-page .product-detail-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(108, 255, 149, 0.16), transparent 22rem),
    radial-gradient(circle at 24% 84%, rgba(39, 230, 255, 0.11), transparent 24rem),
    linear-gradient(135deg, rgba(4, 17, 17, 0.98), rgba(7, 27, 28, 0.94)) !important;
}

@media (max-width: 1080px) {
  .app-code-atmosphere {
    top: 68px;
    opacity: 0.3;
  }

  .code-layer.layer-b {
    left: 28%;
  }

  .app-product-page .product-detail-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .app-product-page .product-device-frame {
    width: min(420px, 100%);
  }

  .app-product-page .product-info-grid,
  .app-product-page .product-feature-grid,
  .app-product-page .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .app-code-atmosphere {
    inset: 64px 0 0;
    opacity: 0.18;
    transform: none;
    mask-image: linear-gradient(180deg, transparent 0%, #000 10%, #000 56%, transparent 82%);
  }

  .code-panel-title {
    display: none;
  }

  .code-layer {
    inset-inline: 10px;
    font-size: 0.62rem;
    transform: none;
    animation-duration: 64s;
  }

  .code-layer.layer-b {
    display: none;
  }

  .code-layer span {
    max-width: calc(100vw - 24px);
    padding: 6px 9px;
  }

  .app-product-page .product-detail-hero {
    width: calc(100% - 16px);
    margin-top: 10px;
    gap: 16px;
    padding: 18px;
  }

  .app-product-page .product-hero-copy {
    padding: 16px;
  }

  .app-product-page .product-hero-copy h1 {
    font-size: clamp(2.7rem, 16vw, 4.6rem);
  }

  .app-product-page .detail-keypoints {
    display: grid;
    grid-template-columns: 1fr;
  }

  .app-product-page .product-info-grid article,
  .app-product-page .product-feature-grid article {
    min-height: 0;
  }

  .app-product-page .product-info-grid,
  .app-product-page .product-feature-grid,
  .app-product-page .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .app-product-page .product-device-frame img {
    max-height: 560px;
    object-fit: contain;
  }

  .app-product-page .product-gallery figure {
    padding: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .app-code-atmosphere,
  .app-code-atmosphere::after,
  .code-layer {
    animation: none !important;
    transform: none !important;
  }

  .app-code-atmosphere {
    opacity: 0.18;
  }

  .app-product-page .product-feature-grid article,
  .app-product-page .product-feature-grid article:hover,
  .app-product-page .product-feature-grid article:focus-within {
    transform: none !important;
  }
}

/* Final Studio-Entwicklung layer */
.dev-studio-hero .studio-code-bg {
  position: absolute !important;
  inset: 9% 3% 9% auto !important;
  z-index: 1;
  width: min(610px, 49%) !important;
  height: auto !important;
  min-height: 360px;
  opacity: 0.48;
  pointer-events: none;
}

.dev-studio-hero .page-hero-copy,
.dev-studio-hero .service-console,
.dev-studio-hero .studio-signal-panel {
  position: relative;
  z-index: 2;
}

@media (max-width: 980px) {
  .dev-studio-hero .studio-code-bg {
    inset: auto -8% 5% auto !important;
    width: 66% !important;
    height: 38% !important;
    min-height: 220px;
    opacity: 0.22;
  }
}

@media (max-width: 720px) {
  .dev-studio-hero .studio-code-bg {
    display: none;
  }
}

/* Last-mile studio code layer guard */
.dev-studio-hero .studio-code-bg {
  position: absolute !important;
  inset: 9% 3% 9% auto !important;
  width: min(610px, 49%) !important;
  height: auto !important;
  min-height: 360px;
}

@media (max-width: 980px) {
  .dev-studio-hero .studio-code-bg {
    inset: auto -8% 5% auto !important;
    width: 66% !important;
    height: 38% !important;
    min-height: 220px;
  }
}

@media (max-width: 720px) {
  .dev-studio-hero .studio-code-bg {
    display: none;
  }
}

/* Specific override because global card styling appears later in the cascade. */
.dev-studio-hero .studio-code-bg {
  position: absolute;
  inset: 9% 3% 9% auto;
  width: min(610px, 49%);
  height: auto;
  min-height: 360px;
}

/* Futuristic product studio: code atmosphere and subtle parallax */
.dev-studio-hero {
  min-height: min(720px, calc(100vh - 104px));
  background:
    radial-gradient(circle at 78% 26%, rgba(57, 255, 210, 0.16), transparent 19rem),
    radial-gradient(circle at 18% 82%, rgba(143, 92, 255, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(5, 12, 28, 0.98), rgba(7, 23, 43, 0.94)) !important;
}

.dev-studio-hero::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 0;
  pointer-events: none;
  border: 1px solid rgba(39, 230, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at 62% 44%, #000, transparent 72%);
}

.studio-code-bg {
  position: absolute;
  inset: 9% 3% 9% auto;
  z-index: 1;
  width: min(610px, 49%);
  pointer-events: none;
  overflow: hidden;
  opacity: 0.48;
  transform: perspective(920px) rotateY(-12deg) rotateX(6deg) translate3d(0, var(--parallax-y, 0px), 0);
  transform-origin: center;
  mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.studio-code-bg::before,
.studio-code-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.studio-code-bg::before {
  background:
    radial-gradient(circle at 50% 30%, rgba(39, 230, 255, 0.2), transparent 22rem),
    linear-gradient(180deg, transparent, rgba(3, 8, 20, 0.62), transparent);
}

.studio-code-bg::after {
  background:
    linear-gradient(180deg, transparent 0%, rgba(57, 255, 210, 0.16) 48%, transparent 52%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.028) 0 1px, transparent 1px 10px);
  mix-blend-mode: screen;
  animation: studio-scan 12s linear infinite;
}

.code-rain-layer {
  position: absolute;
  inset-inline: 0;
  display: grid;
  gap: 13px;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: clamp(0.72rem, 1.1vw, 0.92rem);
  line-height: 1.45;
  color: rgba(221, 251, 255, 0.82);
  animation: code-wall-drift 32s linear infinite;
}

.code-rain-layer.layer-a {
  top: -12%;
}

.code-rain-layer.layer-b {
  top: 24%;
  left: 18%;
  opacity: 0.38;
  animation-duration: 42s;
  animation-direction: reverse;
}

.code-rain-layer span {
  width: fit-content;
  max-width: 100%;
  padding: 8px 12px;
  border: 1px solid rgba(146, 232, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.13), rgba(143, 92, 255, 0.08)),
    rgba(2, 8, 20, 0.62);
  box-shadow: 0 10px 38px rgba(0, 0, 0, 0.18), 0 0 18px rgba(39, 230, 255, 0.08);
  white-space: nowrap;
}

.code-rain-layer i {
  color: #39ffd2;
  font-style: normal;
}

.code-rain-layer b {
  color: #caa7ff;
  font-weight: 800;
}

.dev-studio-hero .page-hero-copy,
.dev-studio-hero .service-console,
.dev-studio-hero .studio-signal-panel {
  z-index: 2;
}

.dev-studio-hero .page-hero-copy {
  max-width: 690px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(146, 232, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(2, 8, 20, 0.74), rgba(8, 28, 48, 0.48)),
    rgba(5, 13, 29, 0.52);
  backdrop-filter: blur(14px);
}

.dev-studio-hero .service-console {
  min-height: 360px;
  display: grid;
  align-content: center;
  gap: 12px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.055) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 15, 30, 0.5);
  background-size: 26px 26px, 26px 26px, auto, auto;
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.dev-studio-hero .service-console em {
  width: fit-content;
  margin-bottom: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(57, 255, 210, 0.24);
  border-radius: 999px;
  color: #aaffef;
  background: rgba(57, 255, 210, 0.08);
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dev-studio-hero .service-console span,
.dev-studio-hero .service-console strong {
  position: relative;
  display: block;
  padding-left: 36px;
}

.dev-studio-hero .service-console span::before,
.dev-studio-hero .service-console strong::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #39ffd2;
  box-shadow: 0 0 18px rgba(57, 255, 210, 0.68);
  transform: translateY(-50%);
}

.dev-studio-hero .studio-signal-panel {
  transform: translate3d(0, var(--parallax-y, 0px), 0);
}

.dev-studio-section,
.dev-studio-contact {
  position: relative;
  overflow: hidden;
}

.dev-studio-section::before,
.dev-studio-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    radial-gradient(circle at 84% 18%, rgba(57, 255, 210, 0.11), transparent 22rem),
    linear-gradient(90deg, rgba(39, 230, 255, 0.035) 1px, transparent 1px);
  background-size: auto, 42px 42px;
}

.dev-studio-section .service-capability-grid article {
  min-height: 210px;
  isolation: isolate;
}

.dev-studio-section .service-capability-grid article::before {
  content: "{}";
  position: absolute;
  right: 16px;
  top: 14px;
  z-index: -1;
  color: rgba(57, 255, 210, 0.13);
  font-family: Consolas, monospace;
  font-size: 2.7rem;
  font-weight: 900;
}

.dev-studio-flow {
  position: relative;
}

.studio-code-strip {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  pointer-events: none;
}

.studio-code-strip span {
  padding: 8px 11px;
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 999px;
  background: rgba(5, 16, 31, 0.72);
  color: rgba(211, 251, 255, 0.76);
  font-family: Consolas, monospace;
  font-size: 0.78rem;
}

[data-parallax] {
  will-change: transform;
}

@keyframes code-wall-drift {
  from { transform: translate3d(0, -8%, 0); }
  to { transform: translate3d(0, 42%, 0); }
}

@keyframes studio-scan {
  from { background-position: 0 -120px, 0 0; }
  to { background-position: 0 180px, 0 80px; }
}

@media (max-width: 980px) {
  .studio-code-bg {
    inset: auto -12% 3% auto;
    width: 72%;
    height: 50%;
    opacity: 0.44;
    transform: none;
  }

  .dev-studio-hero .service-console {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .dev-studio-hero {
    min-height: 0;
    gap: 14px;
    padding: 18px;
  }

  .studio-code-bg {
    display: none;
  }

  .code-rain-layer {
    gap: 9px;
    font-size: 0.68rem;
  }

  .code-rain-layer.layer-b {
    display: none;
  }

  .dev-studio-hero .page-hero-copy {
    padding: 16px;
  }

  .dev-studio-hero .service-console {
    min-height: 0;
    gap: 8px;
    padding: 14px;
  }

  .dev-studio-hero .service-console em {
    grid-column: 1 / -1;
    margin-bottom: 0;
  }

  .dev-studio-hero .service-console span,
  .dev-studio-hero .service-console strong {
    min-height: 64px;
    padding: 10px;
  }

  .dev-studio-hero .studio-signal-panel {
    padding: 10px;
  }

  .dev-studio-section .service-capability-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-code-bg,
  .code-rain-layer,
  [data-parallax] {
    animation: none !important;
    transform: none !important;
  }

  .studio-code-bg::after {
    animation: none !important;
  }
}

/* Final mobile portal cleanup */
html,
body {
  background-color: #030611;
}

body.portal-page .portal-footer {
  width: 100%;
  max-width: none;
  box-sizing: border-box;
  margin-inline: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

body.portal-page .portal-footer nav {
  width: min(1220px, 100%);
  margin-inline: auto;
  justify-content: center;
}

@media (max-width: 720px) {
  body.portal-page .portal-stage {
    gap: 14px;
    padding: 18px;
  }

  body.portal-page .portal-sales-feature {
    min-height: 0;
    padding: 18px;
  }

  body.portal-page .portal-sales-feature .sales-feature-mockup {
    display: none;
  }

  body.portal-page .portal-business-card {
    min-height: 0;
    padding: 16px;
    gap: 12px;
    align-content: start;
  }

  body.portal-page .portal-business-card .identity-matrix,
  body.portal-page .portal-business-card .signature-code {
    display: none;
  }

  body.portal-page .portal-business-card h2 {
    margin: 6px 0 4px;
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    line-height: 1.02;
  }

  body.portal-page .portal-business-card p {
    margin: 0;
  }

  body.portal-page .portal-business-card dl {
    grid-template-columns: 1fr;
    gap: 8px;
    margin: 0;
  }

  body.portal-page .portal-business-card dl div {
    min-height: 0;
    padding: 8px 10px;
  }

  body.portal-page .portal-business-card dt {
    margin-bottom: 2px;
  }

  body.portal-page .portal-business-card dd {
    line-height: 1.25;
  }

  body.portal-page .portal-business-card .button {
    width: 100%;
    min-height: 46px;
  }
}

/* Interface boot and page-transition motion */
.motion-boot body {
  --page-wipe: rgba(39, 230, 255, 0.16);
}

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

.motion-boot body::before {
  opacity: 0;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 50% 42%, rgba(39, 230, 255, 0.16), transparent 24rem);
  background-size: 54px 54px, 54px 54px, auto;
  animation: pageBootGrid 880ms ease both;
}

.motion-boot body::after {
  opacity: 0;
  transform: translateX(-115%);
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.2), rgba(255, 255, 255, 0.34), rgba(143, 92, 255, 0.16), transparent);
}

.motion-boot body.is-page-leaving::after {
  opacity: 1;
  animation: pageExitSweep 460ms ease both;
}

.motion-boot .page-enter-item {
  opacity: 0;
  filter: blur(12px);
  transform: translate3d(0, 22px, 0) scale(0.985);
  transition:
    opacity 620ms ease var(--enter-delay, 80ms),
    filter 620ms ease var(--enter-delay, 80ms),
    transform 620ms cubic-bezier(0.2, 0.9, 0.2, 1) var(--enter-delay, 80ms);
}

.motion-boot body.page-ready .page-enter-item {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-boot body.portal-page .portal-copy.page-enter-item {
  transform: translate3d(-18px, 24px, 0) scale(0.982);
}

.motion-boot body.portal-page.page-ready .portal-copy.page-enter-item {
  transform: translate3d(0, 0, 0) scale(1);
}

.motion-boot body.portal-page .portal-core.page-enter-item {
  transform: translate3d(24px, 12px, 0) scale(0.94);
}

.motion-boot body.portal-page.page-ready .portal-core.page-enter-item {
  transform: translate3d(
    calc((var(--px, 50) - 50) * var(--depth, 0.08) * 0.08px),
    calc((var(--py, 50) - 50) * var(--depth, 0.08) * 0.08px),
    0
  ) scale(1);
}

.motion-boot .portal-materialize {
  opacity: 0;
  filter: blur(14px);
  transform: translateY(28px) rotateX(10deg) scale(0.94);
  transform-origin: center;
  transition:
    opacity 600ms ease var(--enter-delay, 700ms),
    filter 600ms ease var(--enter-delay, 700ms),
    transform 600ms cubic-bezier(0.2, 0.9, 0.2, 1) var(--enter-delay, 700ms),
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.motion-boot body.page-ready .portal-materialize {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) rotateX(0) scale(1);
}

body.portal-page .portal-tile,
body.portal-page .portal-sales-feature {
  will-change: transform;
}

body.portal-page .portal-tile .tile-orb,
body.portal-page .portal-sales-feature .mockup-topbar span {
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

body.portal-page .portal-tile:hover .tile-orb,
body.portal-page .portal-tile:focus-visible .tile-orb {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.42);
}

body.portal-page .portal-tile.is-activating,
body.portal-page .portal-sales-feature.is-activating {
  animation: portalActivatePulse 420ms ease both;
}

.reveal-up,
.holo-enter,
.reveal-scale {
  opacity: 0;
  transition: opacity 620ms ease, transform 620ms ease, filter 620ms ease;
}

.reveal-up {
  transform: translateY(24px);
}

.holo-enter {
  filter: blur(10px);
  transform: translateY(18px) scale(0.985);
}

.reveal-scale {
  transform: scale(0.96);
}

.reveal-up.is-visible,
.holo-enter.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: none;
}

.reveal-delay-1 { transition-delay: 90ms; }
.reveal-delay-2 { transition-delay: 180ms; }
.reveal-delay-3 { transition-delay: 270ms; }

@keyframes pageBootGrid {
  0% {
    opacity: 0.92;
    transform: scale(1.04);
  }
  78% {
    opacity: 0.34;
  }
  100% {
    opacity: 0;
    transform: scale(1);
  }
}

@keyframes pageExitSweep {
  0% {
    opacity: 0;
    transform: translateX(-115%);
  }
  28% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(115%);
  }
}

@keyframes portalActivatePulse {
  0% {
    filter: brightness(1);
  }
  42% {
    filter: brightness(1.35);
    box-shadow: 0 0 0 1px rgba(39, 230, 255, 0.55), 0 0 42px rgba(39, 230, 255, 0.28);
  }
  100% {
    filter: brightness(1);
  }
}

@media (max-width: 720px) {
  .motion-boot .page-enter-item,
  .motion-boot .portal-materialize {
    filter: none;
    transform: translateY(14px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .motion-boot body::before,
  .motion-boot body::after {
    display: none !important;
  }

  .motion-boot .page-enter-item,
  .motion-boot .portal-materialize,
  .reveal-up,
  .holo-enter,
  .reveal-scale {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Premium 2085 visual upgrade */
body:not(.portal-page) {
  background:
    radial-gradient(circle at 12% 8%, rgba(39, 230, 255, 0.14), transparent 24rem),
    radial-gradient(circle at 86% 14%, rgba(143, 92, 255, 0.13), transparent 26rem),
    linear-gradient(180deg, #050816 0%, #081324 42%, #eef6ff 42%, #f7faff 100%);
}

body:not(.portal-page)::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 92, 255, 0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 70%);
}

body.portal-page .portal-stage {
  border-color: rgba(146, 232, 255, 0.32);
  background:
    radial-gradient(circle at 78% 28%, rgba(39, 230, 255, 0.18), transparent 18rem),
    radial-gradient(circle at 30% 82%, rgba(143, 92, 255, 0.18), transparent 24rem),
    linear-gradient(145deg, rgba(8, 22, 41, 0.92), rgba(3, 8, 20, 0.94));
  box-shadow:
    0 32px 110px rgba(0, 0, 0, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 0 1px rgba(39, 230, 255, 0.08);
}

.portal-conduits {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.portal-conduits span {
  position: absolute;
  left: 53%;
  top: 43%;
  width: min(34vw, 470px);
  height: 1px;
  transform-origin: left center;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.8), rgba(143, 92, 255, 0.18), transparent);
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.35));
  opacity: 0.42;
  animation: conduitPulse 4.8s ease-in-out infinite;
}

.portal-conduits span:nth-child(1) { rotate: -154deg; animation-delay: -0.4s; }
.portal-conduits span:nth-child(2) { rotate: -111deg; animation-delay: -1.1s; }
.portal-conduits span:nth-child(3) { rotate: -28deg; animation-delay: -1.8s; }
.portal-conduits span:nth-child(4) { rotate: 21deg; animation-delay: -2.5s; }
.portal-conduits span:nth-child(5) { rotate: 61deg; animation-delay: -3.2s; }

body.portal-page .portal-brand-core {
  border-color: rgba(57, 255, 210, 0.34);
  background:
    radial-gradient(circle at 50% 16%, rgba(57, 255, 210, 0.18), transparent 8rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035));
  box-shadow:
    0 0 52px rgba(39, 230, 255, 0.22),
    0 0 100px rgba(143, 92, 255, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

body.portal-page .portal-brand-core img {
  box-shadow:
    0 0 26px rgba(39, 230, 255, 0.45),
    0 0 54px rgba(57, 255, 210, 0.2);
}

body.portal-page .portal-tile,
body.portal-page .portal-sales-feature,
body.portal-page .portal-business-card {
  border-radius: 18px;
  border-color: rgba(146, 232, 255, 0.3);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body.portal-page .portal-tile::before {
  height: 3px;
  background:
    linear-gradient(90deg, var(--tile-accent, #27e6ff), rgba(255, 255, 255, 0.62), transparent);
  box-shadow: 0 0 18px color-mix(in srgb, var(--tile-accent, #27e6ff) 54%, transparent);
}

body.portal-page .portal-tile::after,
body.portal-page .portal-sales-feature::after,
body.portal-page .portal-business-card::after {
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.17) 44%, transparent 58%);
}

body.portal-page .portal-tile:hover,
body.portal-page .portal-tile:focus-visible {
  transform: translateY(-10px) rotateX(calc(var(--tilt-y, 0) * -1.2deg)) rotateY(calc(var(--tilt-x, 0) * 1.2deg)) scale(1.015);
}

body.portal-page .portal-sales-feature {
  position: relative;
  isolation: isolate;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.16), transparent 38%),
    radial-gradient(circle at 80% 78%, rgba(143, 92, 255, 0.22), transparent 18rem),
    linear-gradient(145deg, rgba(15, 33, 58, 0.92), rgba(8, 13, 31, 0.94));
}

body.portal-page .portal-sales-feature::before {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: -1;
  pointer-events: none;
  border-radius: 14px;
  border: 1px solid rgba(39, 230, 255, 0.12);
  background-image:
    linear-gradient(rgba(39, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.7;
}

body.portal-page .portal-business-card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(57, 255, 210, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(10, 31, 49, 0.92), rgba(8, 14, 30, 0.94));
}

body.portal-page .portal-business-card h2 {
  background: linear-gradient(120deg, #ffffff, #c8fbff 48%, #e6ddff);
  -webkit-background-clip: text;
  color: transparent;
}

body.portal-page .portal-business-card dl div {
  padding: 10px;
  border: 1px solid rgba(146, 232, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.055);
}

.page-hero,
.app-detail-hero,
.legal-document {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(146, 232, 255, 0.24);
  background:
    radial-gradient(circle at 82% 14%, rgba(39, 230, 255, 0.14), transparent 20rem),
    radial-gradient(circle at 15% 88%, rgba(143, 92, 255, 0.12), transparent 22rem),
    linear-gradient(145deg, rgba(8, 22, 41, 0.94), rgba(7, 12, 29, 0.92)) !important;
  color: #f8fcff;
  box-shadow:
    0 30px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.page-hero h1,
.app-detail-hero h1,
.legal-document h1,
.page-hero p,
.app-detail-hero p {
  color: #f8fcff;
}

.page-hero::after,
.app-detail-hero::after,
.legal-document::after {
  content: "";
  position: absolute;
  inset: auto 8% -70px;
  height: 140px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(39, 230, 255, 0.22), transparent 70%);
}

.directory-radar {
  border-color: rgba(39, 230, 255, 0.32);
  background:
    radial-gradient(circle at 50% 50%, rgba(39, 230, 255, 0.22), transparent 32%),
    radial-gradient(circle at 50% 50%, rgba(143, 92, 255, 0.16), transparent 58%);
  box-shadow: 0 0 70px rgba(39, 230, 255, 0.18);
}

.app-universe-section,
.service-flow-section,
.tech-lab-page .detail-intro-section {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(146, 232, 255, 0.14);
  background:
    radial-gradient(circle at 16% 16%, rgba(39, 230, 255, 0.11), transparent 22rem),
    radial-gradient(circle at 82% 70%, rgba(143, 92, 255, 0.11), transparent 24rem),
    linear-gradient(180deg, #050b17, #0a1325);
}

.app-universe-section .section-heading h2,
.app-universe-section .section-heading p,
.service-flow-section .section-heading h2,
.service-flow-section .section-heading p,
.tech-lab-page .detail-intro-section .section-heading h2,
.tech-lab-page .detail-intro-section .section-heading p {
  color: #f8fcff;
}

.app-directory-grid {
  position: relative;
}

.app-directory-grid::before {
  content: "";
  position: absolute;
  inset: 4% 6%;
  pointer-events: none;
  opacity: 0.5;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.22), transparent),
    linear-gradient(180deg, transparent, rgba(143, 92, 255, 0.16), transparent);
  filter: blur(1px);
}

.directory-card,
.service-capability-grid article,
.flow-grid article,
.product-info-grid article,
.product-feature-grid article,
.gallery-grid figure {
  position: relative;
  overflow: hidden;
  border-color: rgba(146, 232, 255, 0.22) !important;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.12), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)) !important;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
}

.app-universe-section .directory-card,
.service-flow-section .flow-grid article,
.tech-lab-page .product-info-grid article,
.tech-lab-page .product-feature-grid article {
  color: #f8fcff;
}

.app-universe-section .directory-card h3,
.app-universe-section .directory-card p,
.service-flow-section .flow-grid span,
.tech-lab-page .product-info-grid strong,
.tech-lab-page .product-info-grid p,
.tech-lab-page .product-feature-grid h3,
.tech-lab-page .product-feature-grid p {
  color: #f8fcff;
}

.directory-card.featured {
  border-color: rgba(39, 230, 255, 0.42) !important;
  box-shadow:
    0 28px 90px rgba(39, 230, 255, 0.12),
    0 0 0 1px rgba(39, 230, 255, 0.08);
}

.directory-card:hover,
.service-capability-grid article:hover,
.product-feature-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.44) !important;
}

.directory-media {
  border: 1px solid rgba(146, 232, 255, 0.18);
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.05) 1px, transparent 1px),
    rgba(3, 8, 20, 0.7);
  background-size: 28px 28px;
}

.status,
.directory-badges .status,
.detail-keypoints span,
.salescopilot-points span {
  border-color: rgba(39, 230, 255, 0.3);
  background: rgba(39, 230, 255, 0.1);
  color: #bdf7ff;
}

.service-console {
  border-color: rgba(39, 230, 255, 0.28);
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.06) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.05) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
  background-size: 32px 32px, 32px 32px, auto;
  box-shadow: 0 28px 80px rgba(39, 230, 255, 0.12);
}

.flow-grid article::after,
.service-capability-grid article::after,
.directory-card::after,
.product-feature-grid article::after {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.88), rgba(143, 92, 255, 0.2), transparent);
}

.contact-terminal-page {
  background:
    radial-gradient(circle at 16% 12%, rgba(39, 230, 255, 0.16), transparent 22rem),
    radial-gradient(circle at 84% 20%, rgba(143, 92, 255, 0.16), transparent 24rem),
    linear-gradient(180deg, #050816, #0a1325 100%) !important;
}

.contact-terminal-page .legal-page {
  background: transparent;
}

.contact-terminal-page .contact-document {
  width: min(980px, calc(100% - 32px));
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: start;
}

.contact-terminal-page .contact-document > p,
.contact-terminal-page .contact-document > h1,
.contact-terminal-page .contact-document > .eyebrow {
  grid-column: 1;
}

.contact-terminal-page .contact-form {
  grid-column: 2;
  grid-row: 1 / span 4;
  border: 1px solid rgba(146, 232, 255, 0.2);
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.045) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.07);
  background-size: 28px 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.contact-terminal-page label,
.contact-terminal-page .contact-document p,
.contact-terminal-page .contact-document a {
  color: rgba(236, 249, 255, 0.86) !important;
}

.contact-terminal-page input,
.contact-terminal-page textarea {
  border-color: rgba(146, 232, 255, 0.26) !important;
  background: rgba(4, 10, 24, 0.78) !important;
  color: #ffffff !important;
}

.contact-terminal-page input:focus,
.contact-terminal-page textarea:focus {
  border-color: rgba(39, 230, 255, 0.68);
  box-shadow: 0 0 0 3px rgba(39, 230, 255, 0.14);
}

.contact-terminal-page .contact-document h1,
.contact-terminal-page .contact-document .eyebrow {
  color: #f8fcff !important;
}

.contact-terminal-page .contact-document h1 {
  text-shadow: 0 0 34px rgba(39, 230, 255, 0.16);
}

.contact-terminal-page .contact-form label {
  color: rgba(236, 249, 255, 0.78) !important;
}

.contact-terminal-page .contact-form .checkbox {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(146, 232, 255, 0.14);
  border-radius: 16px;
  padding: 12px;
}

.contact-terminal-page .contact-form .checkbox input {
  width: 18px;
  height: 18px;
  accent-color: #27e6ff;
  background: transparent !important;
}

.tech-lab-page {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 107, 214, 0.1), transparent 20rem),
    radial-gradient(circle at 86% 14%, rgba(39, 230, 255, 0.14), transparent 24rem),
    linear-gradient(180deg, #050816, #0a1325 66%, #eef6ff);
}

.tech-lab-page .product-detail-hero {
  background:
    linear-gradient(90deg, rgba(57, 255, 210, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(255, 107, 214, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 214, 0.14), transparent 18rem),
    linear-gradient(145deg, rgba(8, 22, 41, 0.94), rgba(6, 8, 20, 0.94)) !important;
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.tech-lab-page .product-device-frame {
  border-color: rgba(255, 107, 214, 0.26);
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 107, 214, 0.16), transparent 10rem),
    rgba(255, 255, 255, 0.07);
}

body:not(.portal-page) .premium-product-hero {
  box-shadow:
    0 30px 100px rgba(39, 230, 255, 0.1),
    0 0 0 1px rgba(39, 230, 255, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

body:not(.portal-page) .sales-hero-metrics article,
body:not(.portal-page) .sales-decision-grid article,
body:not(.portal-page) .sales-premium-grid article,
body:not(.portal-page) .sales-workflow-grid article {
  border-color: rgba(146, 232, 255, 0.28);
  box-shadow:
    0 22px 70px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid rgba(39, 230, 255, 0.9);
  outline-offset: 3px;
}

@keyframes conduitPulse {
  0%, 100% {
    opacity: 0.18;
    transform: translateX(-2%);
  }
  50% {
    opacity: 0.74;
    transform: translateX(4%);
  }
}

@media (max-width: 980px) {
  .contact-terminal-page .contact-document {
    grid-template-columns: 1fr;
  }

  .contact-terminal-page .contact-document > p,
  .contact-terminal-page .contact-document > h1,
  .contact-terminal-page .contact-document > .eyebrow,
  .contact-terminal-page .contact-form {
    grid-column: 1;
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .portal-conduits {
    opacity: 0.42;
  }

  body.portal-page .portal-tile,
  body.portal-page .portal-sales-feature,
  body.portal-page .portal-business-card {
    border-radius: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-conduits span {
    animation: none !important;
  }
}

/* Final high-end command interface layer */
body.portal-page .portal-stage {
  min-height: min(820px, calc(100vh - 122px));
}

body.portal-page .portal-grid {
  opacity: 0.92;
  background-size: 38px 38px, 38px 38px;
  transform: perspective(900px) rotateX(58deg) translateY(-18%);
  transform-origin: center top;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.78) 56%, transparent 100%);
}

body.portal-page .portal-scanline {
  background:
    linear-gradient(180deg, transparent 0%, rgba(39, 230, 255, 0.08) 48%, transparent 52%),
    repeating-linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0 1px, transparent 1px 8px);
  animation: scanline-drift 7s linear infinite;
}

.portal-status-dock,
.signature-code,
.universe-filter-rail,
.studio-signal-panel,
.contact-intent-chips,
.lab-telemetry-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.portal-status-dock {
  margin-top: 18px;
}

.portal-status-dock span,
.signature-code,
.universe-filter-rail span,
.studio-signal-panel span,
.contact-intent-chips span,
.lab-telemetry-strip span {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.16), transparent 80%),
    rgba(255, 255, 255, 0.065);
  color: #dffaff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portal-status-dock span,
.universe-filter-rail span,
.studio-signal-panel span,
.contact-intent-chips span,
.lab-telemetry-strip span {
  padding: 8px 11px;
}

.portal-status-dock span::before,
.lab-telemetry-strip span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 7px;
  border-radius: 999px;
  background: #39ffd2;
  box-shadow: 0 0 12px rgba(57, 255, 210, 0.72);
}

.signature-code {
  width: fit-content;
  flex-direction: column;
  align-items: flex-start;
  margin: 8px 0 12px;
  padding: 10px 12px;
  border-radius: 14px;
}

.signature-code span {
  color: #8ff4ff;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.signature-code strong {
  color: #ffffff;
  font-size: 0.88rem;
}

body.portal-page .portal-copy h1 {
  text-shadow:
    0 0 32px rgba(39, 230, 255, 0.16),
    0 20px 80px rgba(143, 92, 255, 0.18);
}

body.portal-page .portal-tile,
body.portal-page .portal-sales-feature {
  transform-style: preserve-3d;
}

body.portal-page .portal-tile .tile-symbol,
body.portal-page .portal-sales-feature .mockup-topbar {
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.22));
}

body.portal-page .portal-tile:hover .tile-symbol,
body.portal-page .portal-tile:focus-visible .tile-symbol {
  animation: interfacePulse 900ms ease;
}

.universe-filter-rail {
  width: min(1180px, calc(100% - 40px));
  margin: -10px auto 26px;
  justify-content: center;
}

.app-universe-section .directory-card {
  min-height: 100%;
}

.app-universe-section .directory-card::before {
  content: "";
  position: absolute;
  inset: 12px;
  pointer-events: none;
  border-radius: 16px;
  border: 1px solid rgba(39, 230, 255, 0.08);
  background-image:
    linear-gradient(rgba(39, 230, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 92, 255, 0.035) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
}

.app-universe-section .directory-card-body,
.app-universe-section .directory-media {
  position: relative;
  z-index: 1;
}

.app-universe-section .directory-card.featured {
  transform: translateZ(0);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.22), transparent 38%),
    radial-gradient(circle at 84% 80%, rgba(143, 92, 255, 0.18), transparent 18rem),
    linear-gradient(145deg, rgba(14, 38, 66, 0.96), rgba(8, 12, 31, 0.96)) !important;
}

.studio-signal-panel {
  width: min(460px, 100%);
  justify-content: center;
  padding: 14px;
  border: 1px solid rgba(146, 232, 255, 0.18);
  border-radius: 20px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.04) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.04) 1px, transparent 1px),
    rgba(255, 255, 255, 0.055);
  background-size: 24px 24px;
  box-shadow: 0 20px 60px rgba(39, 230, 255, 0.1);
}

.service-page .service-capability-grid article,
.service-page .flow-grid article {
  color: #f8fcff;
}

.contact-intent-chips {
  margin: 18px 0 0;
}

.contact-terminal-page .contact-intent-chips span {
  text-transform: none;
  letter-spacing: 0;
}

.contact-terminal-page .contact-document {
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.34),
    0 0 0 1px rgba(39, 230, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lab-telemetry-strip {
  margin: 18px 0 0;
}

.tech-lab-page .lab-telemetry-strip span {
  border-color: rgba(255, 107, 214, 0.24);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 107, 214, 0.14), transparent 80%),
    rgba(255, 255, 255, 0.055);
}

body:not(.portal-page) .premium-product-hero::before,
body:not(.portal-page) .page-hero::before,
body:not(.portal-page) .app-detail-hero::before,
body:not(.portal-page) .legal-document::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.42;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.08) 42%, transparent 56%);
  transform: translateX(-120%);
  animation: holo-panel-sweep 8s ease-in-out infinite;
}

body:not(.portal-page) .premium-product-hero > *,
body:not(.portal-page) .page-hero > *,
body:not(.portal-page) .app-detail-hero > *,
body:not(.portal-page) .legal-document > * {
  position: relative;
  z-index: 1;
}

body:not(.portal-page) .button.primary {
  box-shadow:
    0 18px 42px rgba(39, 230, 255, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

@keyframes scanline-drift {
  from { background-position: 0 -80px, 0 0; }
  to { background-position: 0 160px, 0 80px; }
}

@keyframes interfacePulse {
  0%, 100% { transform: scale(1); }
  42% { transform: scale(1.08); filter: brightness(1.35); }
}

@keyframes holo-panel-sweep {
  0%, 54%, 100% {
    transform: translateX(-120%);
    opacity: 0;
  }
  68% {
    opacity: 0.5;
  }
  84% {
    transform: translateX(120%);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .studio-signal-panel {
    width: 100%;
  }
}

@media (max-width: 720px) {
  body.portal-page .portal-grid {
    transform: none;
    background-size: 42px 42px, 42px 42px;
  }

  .portal-status-dock,
  .universe-filter-rail,
  .contact-intent-chips,
  .lab-telemetry-strip {
    justify-content: flex-start;
  }

  .portal-status-dock span,
  .universe-filter-rail span,
  .contact-intent-chips span,
  .lab-telemetry-strip span {
    font-size: 0.72rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.portal-page .portal-scanline,
  body:not(.portal-page) .premium-product-hero::before,
  body:not(.portal-page) .page-hero::before,
  body:not(.portal-page) .app-detail-hero::before,
  body:not(.portal-page) .legal-document::before {
    animation: none !important;
  }
}

/* Interactive portal exploration */
.portal-help-button {
  width: auto;
  min-width: 58px;
  height: 44px;
  padding: 0 16px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(146, 232, 255, 0.3);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.22), transparent 78%),
    rgba(255, 255, 255, 0.08);
  color: #dffaff;
  font-size: 0.86rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 14px 34px rgba(39, 230, 255, 0.1);
}

.portal-help-button:hover,
.portal-help-button:focus-visible {
  border-color: rgba(39, 230, 255, 0.62);
  box-shadow: 0 0 0 3px rgba(39, 230, 255, 0.12), 0 18px 42px rgba(39, 230, 255, 0.18);
}

.portal-active-brief {
  width: min(520px, 100%);
  min-height: 82px;
  margin-top: 12px;
  padding: 13px 15px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 18px;
  background:
    radial-gradient(circle at 0% 0%, rgba(39, 230, 255, 0.16), transparent 70%),
    rgba(255, 255, 255, 0.055);
  color: rgba(236, 249, 255, 0.78);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.portal-active-brief span {
  display: block;
  color: #8ff4ff;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.portal-active-brief strong {
  display: block;
  margin-top: 5px;
  color: #ffffff;
  font-size: 1.05rem;
}

.portal-active-brief p {
  margin: 5px 0 0;
  color: rgba(236, 249, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.45;
}

body.portal-page .is-portal-active {
  border-color: rgba(39, 230, 255, 0.62) !important;
  box-shadow:
    0 0 0 1px rgba(39, 230, 255, 0.2),
    0 28px 80px rgba(39, 230, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
}

.portal-help-overlay[hidden] {
  display: none;
}

.portal-help-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at 50% 35%, rgba(39, 230, 255, 0.18), transparent 24rem),
    rgba(3, 8, 20, 0.78);
  backdrop-filter: blur(18px);
}

.portal-help-panel {
  position: relative;
  width: min(860px, 100%);
  overflow: hidden;
  padding: clamp(24px, 5vw, 42px);
  border: 1px solid rgba(146, 232, 255, 0.28);
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.05) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.045) 1px, transparent 1px),
    linear-gradient(145deg, rgba(9, 26, 45, 0.96), rgba(5, 10, 24, 0.96));
  background-size: 30px 30px, 30px 30px, auto;
  box-shadow:
    0 36px 120px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(39, 230, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.portal-help-panel h2 {
  max-width: 680px;
  margin: 10px 0 22px;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1.04;
}

.portal-help-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(146, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.4rem;
  cursor: pointer;
}

.portal-help-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.portal-help-grid article {
  min-height: 170px;
  padding: 14px;
  border: 1px solid rgba(146, 232, 255, 0.18);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.12), transparent 75%),
    rgba(255, 255, 255, 0.055);
}

.portal-help-grid span {
  color: #8ff4ff;
  font-weight: 900;
}

.portal-help-grid strong {
  display: block;
  margin: 16px 0 8px;
  color: #ffffff;
}

.portal-help-grid p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.45;
}

.universe-filter-rail button {
  position: relative;
  overflow: hidden;
  padding: 8px 11px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.16), transparent 80%),
    rgba(255, 255, 255, 0.065);
  color: #dffaff;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}

.universe-filter-rail button.is-active,
.universe-filter-rail button:hover,
.universe-filter-rail button:focus-visible {
  border-color: rgba(39, 230, 255, 0.62);
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.26), transparent 82%),
    rgba(39, 230, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(39, 230, 255, 0.1);
}

.directory-card[hidden] {
  display: none !important;
}

body.is-portal-opening::before {
  opacity: 1;
  animation: portalOpenFlash 520ms ease both;
}

body.is-portal-opening .portal-stage {
  animation: portalStageOpen 520ms ease both;
}

@keyframes portalOpenFlash {
  0% {
    opacity: 0;
    transform: scale(0.98);
  }
  40% {
    opacity: 0.62;
  }
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}

@keyframes portalStageOpen {
  0% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.3) saturate(1.2);
  }
  100% {
    filter: brightness(0.82);
  }
}

@media (max-width: 980px) {
  .portal-help-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .portal-help-button {
    width: 40px;
    height: 40px;
  }

  .portal-active-brief {
    min-height: 0;
  }

  .portal-help-overlay {
    padding: 14px;
  }

  .portal-help-grid {
    grid-template-columns: 1fr;
  }

  .portal-help-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.is-portal-opening::before,
  body.is-portal-opening .portal-stage {
    animation: none !important;
  }
}

/* Mobile cleanup and full-width portal footer */
body.portal-page .portal-footer {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 18px max(16px, calc((100vw - 1220px) / 2));
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}

body.portal-page .portal-footer nav {
  width: min(1220px, 100%);
  margin: 0 auto;
  justify-content: center;
}

@media (max-width: 720px) {
  body.portal-page .portal-header {
    gap: 8px;
  }

  body.portal-page .brand {
    min-width: 0;
  }

  body.portal-page .brand span {
    max-width: 118px;
    overflow-wrap: normal;
    word-break: normal;
    line-height: 1.05;
  }

  body.portal-page .nav-cta {
    display: none;
  }

  body.portal-page .portal-stage {
    gap: 14px;
    padding: 18px;
  }

  body.portal-page .portal-core {
    min-height: 214px;
  }

  body.portal-page .portal-orbit {
    width: min(100%, 250px);
  }

  body.portal-page .portal-menu {
    gap: 10px;
  }

  body.portal-page .portal-sales-feature {
    min-height: 0;
    padding: 18px;
  }

  body.portal-page .portal-sales-feature .sales-feature-mockup {
    display: none;
  }

  body.portal-page .portal-sales-feature .sales-feature-points {
    grid-template-columns: 1fr;
  }

  body.portal-page .portal-tile {
    min-height: 104px;
    padding: 14px;
  }

  body.portal-page .portal-tile strong {
    font-size: 1rem;
  }

  body.portal-page .portal-tile small {
    font-size: 0.84rem;
  }

  body.portal-page .portal-business-card {
    min-height: 0;
    padding: 18px;
  }

  body.portal-page .portal-business-card .identity-matrix {
    display: none;
  }

  body.portal-page .portal-business-card h2 {
    margin-top: 8px;
    font-size: clamp(1.8rem, 8vw, 2.35rem);
  }

  body.portal-page .portal-business-card dl {
    grid-template-columns: 1fr;
  }

  body.portal-page .portal-business-card dl div {
    padding: 9px 10px;
  }

  body.portal-page .portal-business-card .button {
    width: 100%;
  }

  body.portal-page .portal-footer {
    padding-inline: 16px;
  }
}

/* Explicit hero composition safeguards */
body:not(.portal-page) .page-hero .future-grid {
  grid-column: 1 / -1;
  grid-row: 1;
}

body:not(.portal-page) .page-hero .page-hero-copy {
  grid-column: 1;
  grid-row: 1;
}

body:not(.portal-page) .page-hero .directory-radar,
body:not(.portal-page) .page-hero .service-console,
body:not(.portal-page) .page-hero .studio-signal-panel {
  grid-column: 2;
}

body:not(.portal-page) .page-hero .directory-radar,
body:not(.portal-page) .page-hero .service-console {
  grid-row: 1;
}

body:not(.portal-page) .page-hero .studio-signal-panel {
  grid-row: 1;
  align-self: end;
  justify-self: center;
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  body:not(.portal-page) .page-hero .page-hero-copy,
  body:not(.portal-page) .page-hero .directory-radar,
  body:not(.portal-page) .page-hero .service-console,
  body:not(.portal-page) .page-hero .studio-signal-panel {
    grid-column: 1;
    grid-row: auto;
  }

  body:not(.portal-page) .page-hero .studio-signal-panel {
    justify-self: stretch;
    margin-bottom: 0;
  }
}

/* Final SalesCopilotAI preview contrast */
body:not(.portal-page) .product-preview-shell {
  border-color: rgba(146, 232, 255, 0.24);
  background:
    radial-gradient(circle at 18% 20%, rgba(39, 230, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 84% 12%, rgba(143, 92, 255, 0.1), transparent 20rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(9, 30, 55, 0.9)) !important;
  color: #f8fcff;
}

body:not(.portal-page) .product-preview-shell .salescopilot-copy h2,
body:not(.portal-page) .product-preview-shell .product-benefit-list strong {
  color: #ffffff;
}

body:not(.portal-page) .product-preview-shell .salescopilot-copy p,
body:not(.portal-page) .product-preview-shell .product-benefit-list span {
  color: rgba(236, 249, 255, 0.76);
}

body:not(.portal-page) .product-preview-shell .product-benefit-list article {
  border-color: rgba(146, 232, 255, 0.18);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.07) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

/* SalesCopilotAI premium product page modules */
.sales-product-mark {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  padding: 8px 12px;
  border: 1px solid rgba(146, 232, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-weight: 950;
  box-shadow: 0 0 28px rgba(39, 230, 255, 0.12);
}

.sales-product-mark img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  box-shadow: 0 0 18px rgba(39, 230, 255, 0.32);
}

.sales-explainer-section,
.sales-workflow-section,
.sales-premium-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 7vw, 86px);
}

.sales-explainer-section,
.sales-premium-section {
  background:
    radial-gradient(circle at 12% 12%, rgba(39, 230, 255, 0.1), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(143, 92, 255, 0.1), transparent 24rem),
    linear-gradient(180deg, #eef6ff, #f7faff);
}

.sales-workflow-section {
  border-block: 1px solid rgba(146, 232, 255, 0.16);
  background:
    radial-gradient(circle at 18% 16%, rgba(39, 230, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 82% 60%, rgba(143, 92, 255, 0.12), transparent 26rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.96), rgba(8, 18, 34, 0.94));
}

.sales-explainer-shell,
.sales-workflow-grid,
.sales-premium-grid,
.sales-mockup-strip {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sales-explainer-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
  padding: clamp(22px, 5vw, 46px);
  border: 1px solid rgba(146, 232, 255, 0.24);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 12%, rgba(39, 230, 255, 0.12), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.84));
  box-shadow: 0 24px 78px rgba(20, 50, 90, 0.13);
}

.sales-explainer-shell h2 {
  margin: 12px 0 0;
  color: #162037;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: 1.02;
}

.sales-explainer-grid,
.sales-premium-grid,
.sales-workflow-grid,
.sales-mockup-strip {
  display: grid;
  gap: 14px;
}

.sales-explainer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-explainer-grid article,
.sales-premium-grid article,
.sales-mockup-strip article {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.82);
  box-shadow: 0 16px 46px rgba(20, 50, 90, 0.09);
}

.sales-explainer-grid span,
.sales-premium-grid span,
.sales-mockup-strip span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(39, 230, 255, 0.24);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #0a8ca8;
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-explainer-grid p,
.sales-premium-grid p,
.sales-mockup-strip p {
  margin: 0;
  color: #4d5c72;
  line-height: 1.58;
}

.sales-workflow-section .section-heading h2,
.sales-workflow-section .section-heading .eyebrow {
  color: #ffffff;
}

.sales-workflow-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sales-workflow-grid article {
  position: relative;
  overflow: hidden;
  min-height: 235px;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.15), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.88);
  box-shadow: 0 24px 74px rgba(0, 8, 24, 0.24);
  transition: transform 220ms ease, border-color 220ms ease;
}

.sales-workflow-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 16px;
  height: 2px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.9), rgba(143, 92, 255, 0.2), transparent);
  pointer-events: none;
}

.sales-workflow-grid article:hover {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.46);
}

.sales-workflow-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border: 1px solid rgba(39, 230, 255, 0.38);
  border-radius: 50%;
  color: #dffbff;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.18);
}

.sales-workflow-grid h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.12rem;
}

.sales-workflow-grid p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  line-height: 1.56;
}

.sales-audience-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-premium-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sales-premium-grid article,
.sales-mockup-strip article {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.13), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.84));
}

.sales-premium-grid h3,
.sales-mockup-strip strong {
  display: block;
  margin: 0 0 10px;
  color: #162037;
  font-size: 1.18rem;
}

.sales-mockup-strip {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 18px;
}

.product-cta-shell .hero-actions {
  gap: 10px;
}

@media (max-width: 1180px) {
  .sales-workflow-grid,
  .sales-premium-grid,
  .sales-mockup-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .sales-explainer-shell,
  .sales-explainer-grid,
  .sales-workflow-grid,
  .sales-premium-grid,
  .sales-mockup-strip,
  .sales-audience-grid {
    grid-template-columns: 1fr;
  }

  .sales-explainer-shell,
  .sales-workflow-grid,
  .sales-premium-grid,
  .sales-mockup-strip {
    width: min(100% - 28px, 1180px);
  }

  .sales-workflow-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sales-workflow-grid article,
  .sales-workflow-grid article:hover {
    transform: none;
  }
}

body:not(.portal-page) .sales-workflow-section .section-heading h2,
body:not(.portal-page) .sales-workflow-section .section-heading .eyebrow {
  color: #ffffff !important;
}

body:not(.portal-page) .sales-workflow-section .section-heading .eyebrow {
  border-color: rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.1);
}

.sales-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.sales-hero-metrics article {
  position: relative;
  overflow: hidden;
  min-height: 86px;
  padding: 14px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 18px;
  background:
    radial-gradient(circle at 18% 10%, rgba(39, 230, 255, 0.18), transparent 6rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sales-hero-metrics article::after {
  content: "";
  position: absolute;
  inset: auto 12px 10px;
  height: 1px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.72), transparent);
}

.sales-hero-metrics span {
  display: inline-flex;
  margin-bottom: 10px;
  color: rgba(146, 232, 255, 0.88);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sales-hero-metrics strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  line-height: 1.25;
}

.sales-decision-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(48px, 7vw, 92px);
  border-block: 1px solid rgba(146, 232, 255, 0.16);
  background:
    radial-gradient(circle at 14% 24%, rgba(39, 230, 255, 0.13), transparent 24rem),
    radial-gradient(circle at 86% 72%, rgba(143, 92, 255, 0.13), transparent 24rem),
    linear-gradient(180deg, #050b17, #0a1325);
}

.sales-decision-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: clamp(22px, 5vw, 56px);
  align-items: start;
}

.sales-decision-shell h2 {
  margin: 12px 0 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.03;
}

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

.sales-decision-grid article {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 22px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.sales-decision-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.1) 42%, transparent 56%);
  transform: translateX(-120%);
  animation: holoSweep 8s ease-in-out infinite;
}

.sales-decision-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border: 1px solid rgba(39, 230, 255, 0.46);
  border-radius: 999px;
  color: #dffaff;
  font-weight: 900;
  background: rgba(39, 230, 255, 0.12);
}

.sales-decision-grid strong {
  display: block;
  margin-bottom: 10px;
  color: #ffffff;
  font-size: 1.16rem;
}

.sales-decision-grid p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  line-height: 1.58;
}

@media (max-width: 980px) {
  .sales-decision-shell,
  .sales-decision-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 780px) {
  .sales-hero-metrics {
    grid-template-columns: 1fr;
  }

  .sales-decision-shell {
    width: min(100% - 28px, 1180px);
  }

  .sales-decision-grid article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.portal-page) .sales-feature-system article,
  body:not(.portal-page) .sales-feature-system article span {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  body:not(.portal-page) .sales-feature-system article:hover {
    transform: none;
  }
}

body:not(.portal-page) .product-preview-shell {
  border-color: rgba(146, 232, 255, 0.24);
  background:
    radial-gradient(circle at 18% 20%, rgba(39, 230, 255, 0.12), transparent 18rem),
    radial-gradient(circle at 84% 12%, rgba(143, 92, 255, 0.1), transparent 20rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.94), rgba(9, 30, 55, 0.9));
  color: #f8fcff;
}

body:not(.portal-page) .product-preview-shell .salescopilot-copy h2 {
  color: #ffffff;
}

body:not(.portal-page) .product-preview-shell .salescopilot-copy p,
body:not(.portal-page) .product-preview-shell .product-benefit-list span {
  color: rgba(236, 249, 255, 0.76);
}

body:not(.portal-page) .product-preview-shell .product-benefit-list article {
  border-color: rgba(146, 232, 255, 0.18);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.12), transparent 34%),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

body:not(.portal-page) .product-preview-shell .product-benefit-list strong {
  color: #ffffff;
}

/* SalesCopilotAI feature system */
.sales-feature-system-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 7vw, 86px);
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 230, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(143, 92, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.96), rgba(8, 18, 34, 0.94));
  border-block: 1px solid rgba(146, 232, 255, 0.16);
}

.sales-feature-system-section::before,
.sales-feature-system-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sales-feature-system-section::before {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 24%, #000, transparent 76%);
}

.sales-feature-system-section::after {
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.18), transparent 58%),
    linear-gradient(180deg, transparent 0%, rgba(255, 255, 255, 0.04) 50%, transparent 52%);
  background-size: 100% 1px, 100% 9px;
  opacity: 0.38;
}

.sales-feature-system-section .section-heading {
  position: relative;
  z-index: 1;
}

.sales-feature-system-section .section-heading h2 {
  color: #ffffff;
}

.sales-feature-system-section .section-heading .eyebrow {
  color: #bdf7ff;
  border-color: rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.1);
}

.sales-feature-system {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body:not(.portal-page) .sales-feature-system article {
  position: relative;
  isolation: isolate;
  min-height: 218px;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.88);
  box-shadow:
    0 24px 74px rgba(0, 8, 24, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body:not(.portal-page) .sales-feature-system article::before,
body:not(.portal-page) .sales-feature-system article::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

body:not(.portal-page) .sales-feature-system article::before {
  inset: 0;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%);
  translate: -110% 0;
  transition: translate 620ms ease;
}

body:not(.portal-page) .sales-feature-system article::after {
  inset: auto 16px 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.95), rgba(143, 92, 255, 0.1), transparent);
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.48));
}

body:not(.portal-page) .sales-feature-system article:hover,
body:not(.portal-page) .sales-feature-system article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.46);
  box-shadow:
    0 30px 92px rgba(0, 16, 44, 0.34),
    0 0 42px rgba(39, 230, 255, 0.1);
}

body:not(.portal-page) .sales-feature-system article:hover::before,
body:not(.portal-page) .sales-feature-system article:focus-within::before {
  translate: 110% 0;
}

body:not(.portal-page) .sales-feature-system article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  border: 1px solid rgba(39, 230, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle, rgba(39, 230, 255, 0.26), rgba(143, 92, 255, 0.1));
  color: #dffbff;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.18);
  animation: feature-index-pulse 5.5s ease-in-out infinite;
}

body:not(.portal-page) .sales-feature-system article em {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #9bedff;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.portal-page) .sales-feature-system article h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.14;
}

body:not(.portal-page) .sales-feature-system article p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.56;
}

body:not(.portal-page) .sales-feature-system article.planned {
  border-color: rgba(143, 92, 255, 0.34);
  background:
    radial-gradient(circle at var(--mx, 60%) var(--my, 0%), rgba(143, 92, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(12, 18, 42, 0.9);
}

body:not(.portal-page) .sales-feature-system article.planned::after {
  background: linear-gradient(90deg, rgba(143, 92, 255, 0.95), rgba(39, 230, 255, 0.2), transparent);
}

@keyframes feature-index-pulse {
  0%, 100% { box-shadow: 0 0 18px rgba(39, 230, 255, 0.14); }
  50% { box-shadow: 0 0 34px rgba(39, 230, 255, 0.32); }
}

@media (max-width: 1180px) {
  .sales-feature-system {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .sales-feature-system {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  body:not(.portal-page) .sales-feature-system article {
    min-height: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body:not(.portal-page) .sales-feature-system article,
  body:not(.portal-page) .sales-feature-system article span {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

  body:not(.portal-page) .sales-feature-system article:hover {
    transform: none;
  }
}

/* SalesCopilotAI featured product card */
body.portal-page .portal-sales-feature {
  --tile-accent: #8f5cff;
  --tile-glow: rgba(143, 92, 255, 0.2);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 176px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 0.78fr);
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(158, 129, 255, 0.42);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 18%, rgba(39, 230, 255, 0.18), transparent 10rem),
    radial-gradient(circle at 20% 88%, rgba(143, 92, 255, 0.22), transparent 12rem),
    linear-gradient(135deg, rgba(12, 24, 54, 0.94), rgba(10, 18, 38, 0.9));
  box-shadow:
    0 30px 95px rgba(38, 21, 92, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.04) inset,
    0 0 46px rgba(143, 92, 255, 0.12);
  align-self: start;
}

body.portal-page .portal-menu > .portal-tile {
  align-self: start;
}

body.portal-page .portal-sales-feature::before,
body.portal-page .portal-sales-feature::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body.portal-page .portal-sales-feature::before {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.14) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.1) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: radial-gradient(circle at 70% 46%, #000, transparent 72%);
  opacity: 0.62;
}

body.portal-page .portal-sales-feature::after {
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.16) 42%, transparent 58%),
    linear-gradient(180deg, transparent, rgba(39, 230, 255, 0.1));
  translate: -110% 0;
  transition: translate 680ms ease;
}

body.portal-page .portal-sales-feature:hover::after,
body.portal-page .portal-sales-feature:focus-within::after {
  translate: 110% 0;
}

body.portal-page .sales-feature-copy,
body.portal-page .sales-feature-mockup {
  position: relative;
  z-index: 1;
}

body.portal-page .sales-feature-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

body.portal-page .sales-feature-badges span,
body.portal-page .sales-feature-index {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border: 1px solid rgba(146, 232, 255, 0.24);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #bff8ff;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body.portal-page .sales-feature-badges span {
  padding: 7px 9px;
}

body.portal-page .sales-feature-index {
  margin-bottom: 7px;
  padding: 5px 8px;
  color: #d9d2ff;
  background: rgba(143, 92, 255, 0.13);
}

body.portal-page .portal-sales-feature h2 {
  margin: 0 0 6px;
  color: #ffffff;
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.04;
  letter-spacing: 0;
}

body.portal-page .sales-feature-claim {
  max-width: 440px;
  margin: 0 0 10px;
  color: rgba(238, 250, 255, 0.86);
  font-size: 0.96rem;
  line-height: 1.42;
}

body.portal-page .sales-feature-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin: 0 0 13px;
  padding: 0;
  list-style: none;
}

body.portal-page .sales-feature-points li {
  min-width: 0;
  padding: 8px 9px;
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(240, 251, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 850;
  line-height: 1.25;
}

body.portal-page .sales-feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

body.portal-page .sales-feature-actions .button {
  min-height: 40px;
  padding: 10px 14px;
  font-size: 0.9rem;
}

body.portal-page .sales-feature-mockup {
  align-self: stretch;
  min-height: 140px;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 12px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 70% 20%, rgba(39, 230, 255, 0.2), transparent 8rem),
    rgba(3, 9, 22, 0.62);
  box-shadow: inset 0 0 34px rgba(39, 230, 255, 0.08);
}

body.portal-page .mockup-panel.follow {
  display: none;
}

body.portal-page .mockup-topbar {
  display: flex;
  align-items: center;
  gap: 5px;
  color: #9bedff;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

body.portal-page .mockup-topbar span {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #27e6ff;
  box-shadow: 0 0 12px rgba(39, 230, 255, 0.72);
}

body.portal-page .mockup-topbar span:nth-child(2) {
  background: #8f5cff;
}

body.portal-page .mockup-topbar span:nth-child(3) {
  background: #39ffd2;
}

body.portal-page .mockup-topbar strong {
  margin-left: auto;
}

body.portal-page .mockup-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
  gap: 8px;
  margin-top: 11px;
}

body.portal-page .mockup-panel {
  min-width: 0;
  padding: 9px;
  border: 1px solid rgba(146, 232, 255, 0.16);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.07);
}

body.portal-page .mockup-panel small {
  display: block;
  margin-bottom: 6px;
  color: rgba(191, 248, 255, 0.82);
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

body.portal-page .mockup-panel span,
body.portal-page .mockup-panel strong {
  color: #ffffff;
  font-size: 0.75rem;
  line-height: 1.2;
}

body.portal-page .mockup-panel.score strong {
  display: block;
  color: #39ffd2;
  font-size: 1.5rem;
}

body.portal-page .mockup-panel.wide {
  grid-row: span 2;
}

body.portal-page .pipeline-bars {
  display: grid;
  gap: 7px;
}

body.portal-page .pipeline-bars i {
  display: block;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, #27e6ff, rgba(143, 92, 255, 0.42));
  box-shadow: 0 0 14px rgba(39, 230, 255, 0.26);
}

body.portal-page .pipeline-bars i:nth-child(2) {
  width: 72%;
}

body.portal-page .pipeline-bars i:nth-child(3) {
  width: 54%;
}

@media (min-width: 1121px) {
  body.portal-page .portal-menu {
    grid-template-columns: minmax(130px, 0.7fr) minmax(560px, 2.6fr) repeat(3, minmax(130px, 0.7fr));
    align-items: start;
  }

  body.portal-page .portal-sales-feature {
    min-height: 154px;
    padding: 14px;
    grid-template-columns: minmax(0, 1fr) minmax(210px, 0.76fr);
  }

  body.portal-page .sales-feature-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.portal-page .sales-feature-points li {
    padding: 7px;
    font-size: 0.72rem;
  }

  body.portal-page .portal-sales-feature h2 {
    font-size: clamp(1.35rem, 1.7vw, 1.8rem);
  }

  body.portal-page .sales-feature-claim {
    font-size: 0.9rem;
  }

  body.portal-page .sales-feature-mockup {
    min-height: 126px;
    align-self: start;
  }

  body.portal-page .mockup-grid {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 7px;
  }

  body.portal-page .mockup-panel {
    padding: 7px;
  }
}

@media (max-width: 1120px) {
  body.portal-page .portal-sales-feature {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  body.portal-page .portal-sales-feature {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 15px;
  }

  body.portal-page .sales-feature-points {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
  }

  body.portal-page .sales-feature-points li {
    padding: 7px 6px;
    font-size: 0.68rem;
  }

  body.portal-page .sales-feature-actions .button {
    width: 100%;
  }

  body.portal-page .sales-feature-mockup {
    min-height: 126px;
  }

  body.portal-page .mockup-grid {
    grid-template-columns: 1fr 0.72fr;
  }

  body.portal-page .mockup-panel {
    padding: 7px;
  }

  body.portal-page .mockup-panel.assistant {
    display: none;
  }
}

/* 2085 clarity layer for all pages */
body:not(.portal-page) {
  color: #eaf6ff;
  background:
    radial-gradient(circle at 10% 0%, rgba(39, 230, 255, 0.15), transparent 24rem),
    radial-gradient(circle at 88% 12%, rgba(143, 92, 255, 0.15), transparent 26rem),
    linear-gradient(180deg, #050816 0%, #081426 46%, #eef4fb 46%, #f7faff 100%);
}

body:not(.portal-page)::before {
  opacity: 0.72;
  background-image:
    linear-gradient(rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
}

body:not(.portal-page) .site-header {
  border-color: rgba(146, 232, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.9), rgba(8, 18, 34, 0.78)),
    rgba(5, 12, 24, 0.86);
  color: #f8fcff;
  box-shadow: 0 20px 70px rgba(0, 8, 24, 0.24);
  backdrop-filter: blur(20px);
}

body:not(.portal-page) .brand span,
body:not(.portal-page) .nav a,
body:not(.portal-page) .nav-cta,
body:not(.portal-page) .mobile-menu {
  color: #f8fcff;
}

body:not(.portal-page) .nav a.is-active,
body:not(.portal-page) .nav a:hover {
  color: #9bedff;
}

body:not(.portal-page) .nav-cta,
body:not(.portal-page) .mobile-menu {
  border-color: rgba(146, 232, 255, 0.26);
  background: rgba(255, 255, 255, 0.08);
}

body:not(.portal-page) .page-hero,
body:not(.portal-page) .hero,
body:not(.portal-page) .product-detail-hero,
body:not(.portal-page) .premium-product-hero {
  border: 1px solid rgba(146, 232, 255, 0.24);
  background:
    radial-gradient(circle at 78% 18%, rgba(39, 230, 255, 0.15), transparent 18rem),
    radial-gradient(circle at 15% 88%, rgba(143, 92, 255, 0.12), transparent 20rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.96), rgba(9, 30, 55, 0.9));
  color: #f8fcff;
  box-shadow:
    0 34px 110px rgba(0, 8, 24, 0.36),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

body:not(.portal-page) .page-hero h1,
body:not(.portal-page) .hero h1,
body:not(.portal-page) .premium-product-hero h1,
body:not(.portal-page) .product-detail-hero h1,
body:not(.portal-page) .page-hero p,
body:not(.portal-page) .hero-text,
body:not(.portal-page) .premium-product-hero .hero-text,
body:not(.portal-page) .product-hero-copy > p {
  color: #f8fcff;
}

body:not(.portal-page) .page-hero p,
body:not(.portal-page) .hero-text,
body:not(.portal-page) .premium-product-hero .hero-text,
body:not(.portal-page) .product-hero-copy > p {
  max-width: 720px;
  color: rgba(236, 249, 255, 0.8);
}

body:not(.portal-page) .section {
  position: relative;
}

body:not(.portal-page) .section-heading h2,
body:not(.portal-page) .salescopilot-copy h2,
body:not(.portal-page) .contact-shell h2,
body:not(.portal-page) .service-shell h2,
body:not(.portal-page) .status-panel h2 {
  color: #162037;
}

body:not(.portal-page) .directory-card,
body:not(.portal-page) .brand-app-card,
body:not(.portal-page) .product-feature-grid article,
body:not(.portal-page) .product-info-grid article,
body:not(.portal-page) .salescopilot-shell,
body:not(.portal-page) .service-shell,
body:not(.portal-page) .contact-shell,
body:not(.portal-page) .status-panel,
body:not(.portal-page) .product-gallery figure,
body:not(.portal-page) .legal-document,
body:not(.portal-page) .thanks-card {
  border: 1px solid rgba(146, 232, 255, 0.24);
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(238, 248, 255, 0.84));
  box-shadow:
    0 24px 78px rgba(20, 50, 90, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.42);
}

body:not(.portal-page) .directory-card p,
body:not(.portal-page) .brand-app-card p,
body:not(.portal-page) .product-feature-grid p,
body:not(.portal-page) .product-info-grid p,
body:not(.portal-page) .salescopilot-shell p,
body:not(.portal-page) .service-shell p,
body:not(.portal-page) .contact-shell p,
body:not(.portal-page) .legal-document p,
body:not(.portal-page) .thanks-card p {
  color: #4d5c72;
  line-height: 1.65;
}

body:not(.portal-page) .button.primary {
  border-color: rgba(39, 230, 255, 0.5);
  background: linear-gradient(135deg, #2f8cff, #27dbc8);
  box-shadow: 0 18px 44px rgba(39, 230, 255, 0.18);
}

body:not(.portal-page) .button.secondary {
  color: #18243a;
  border-color: rgba(39, 77, 120, 0.16);
  background: rgba(255, 255, 255, 0.78);
}

body:not(.portal-page) .private-projects {
  color: #f8fcff;
}

body:not(.portal-page) .footer {
  border-top: 1px solid rgba(146, 232, 255, 0.18);
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.94), rgba(8, 18, 34, 0.86)),
    rgba(5, 12, 24, 0.92);
  color: rgba(236, 249, 255, 0.78);
}

body:not(.portal-page) .footer span,
body:not(.portal-page) .footer a,
body:not(.portal-page) .footer small {
  color: #f8fcff;
}

body:not(.portal-page) .footer p {
  color: rgba(236, 249, 255, 0.72);
}

body:not(.portal-page) .contact-shell h1,
body:not(.portal-page) .contact-shell h2,
body:not(.portal-page) .legal-document h1,
body:not(.portal-page) .legal-document h2,
body:not(.portal-page) .thanks-card h1,
body:not(.portal-page) .thanks-card h2 {
  color: #162037;
}

body:not(.portal-page) .contact-shell label,
body:not(.portal-page) .legal-contact-form label {
  color: #304158;
}

body:not(.portal-page) .contact-shell input,
body:not(.portal-page) .contact-shell textarea,
body:not(.portal-page) .legal-contact-form input,
body:not(.portal-page) .legal-contact-form textarea {
  color: #101827;
  border-color: rgba(38, 67, 110, 0.18);
  background: rgba(255, 255, 255, 0.82);
}

body:not(.portal-page) .contact-shell input:focus,
body:not(.portal-page) .contact-shell textarea:focus,
body:not(.portal-page) .legal-contact-form input:focus,
body:not(.portal-page) .legal-contact-form textarea:focus {
  border-color: rgba(39, 230, 255, 0.72);
  box-shadow: 0 0 0 4px rgba(39, 230, 255, 0.12);
}

@media (min-width: 1121px) {
  body.portal-page .portal-stage {
    min-height: min(620px, calc(100vh - 132px));
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.68fr);
    grid-template-areas:
      "copy core"
      "menu menu"
      "card card";
    gap: 14px;
    padding: clamp(18px, 2.4vw, 30px);
  }

  body.portal-page .portal-copy h1 {
    font-size: clamp(2.85rem, 5.2vw, 5.7rem);
  }

  body.portal-page .portal-core {
    min-height: 270px;
  }

  body.portal-page .portal-brand-core {
    width: 188px;
    height: 188px;
  }

  body.portal-page .portal-orbit {
    width: min(100%, 340px);
  }

  body.portal-page .portal-tile {
    min-height: 104px;
  }

  body.portal-page .portal-business-card {
    min-height: 94px;
    grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr) auto;
    padding: 16px;
  }

  body.portal-page .portal-business-card h2 {
    font-size: clamp(1.35rem, 2.1vw, 2.3rem);
  }
}

.tile-symbol {
  position: absolute;
  top: 24px;
  right: 25px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  pointer-events: none;
}

body.portal-page .portal-footer {
  display: flex;
  justify-content: center;
  padding: 14px 18px;
}

body.portal-page .portal-footer nav {
  justify-content: center;
}

@media (max-width: 720px) {
  body.portal-page .portal-copy p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.52;
  }

  body.portal-page .portal-core {
    min-height: 238px;
  }

  body.portal-page .portal-orbit {
    width: min(100%, 250px);
  }

  body.portal-page .portal-brand-core {
    width: 162px;
    height: 162px;
  }

  body.portal-page .portal-business-card {
    min-height: auto;
  }

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

  body.portal-page .portal-tile {
    min-height: 118px;
    padding: 14px;
  }

  body.portal-page .portal-tile:nth-child(5) {
    grid-column: 1 / -1;
    min-height: 96px;
  }

  body.portal-page .portal-tile strong {
    font-size: 0.98rem;
  }

  body.portal-page .portal-tile small {
    font-size: 0.86rem;
  }
}

body.portal-page .portal-brand-core strong,
body.portal-page .portal-business-card h2 {
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

body.portal-page .portal-brand-core strong {
  font-size: clamp(0.95rem, 1.4vw, 1.12rem);
  line-height: 1.12;
}

body.portal-page .portal-business-card h2 {
  max-width: 100%;
}

/* Premium 2085 portal atmosphere */
.portal-page {
  --portal-cyan: #27e6ff;
  --portal-mint: #39ffd2;
  --portal-violet: #8f5cff;
  --portal-rose: #ff6bd6;
  --portal-ink: #050816;
  background:
    radial-gradient(circle at 15% 12%, rgba(39, 230, 255, 0.22), transparent 22rem),
    radial-gradient(circle at 84% 18%, rgba(143, 92, 255, 0.24), transparent 25rem),
    radial-gradient(circle at 52% 105%, rgba(57, 255, 210, 0.14), transparent 30rem),
    linear-gradient(180deg, #030611 0%, #07111f 48%, #06101d 100%);
}

.portal-stage {
  min-height: min(800px, calc(100vh - 138px));
  perspective: 1300px;
  transform-style: preserve-3d;
  background:
    radial-gradient(circle at calc(var(--px, 50) * 1%) calc(var(--py, 45) * 1%), rgba(39, 230, 255, 0.16), transparent 18rem),
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(8, 28, 53, 0.92)),
    linear-gradient(90deg, rgba(39, 230, 255, 0.14), rgba(143, 92, 255, 0.14));
  box-shadow:
    0 44px 130px rgba(0, 8, 24, 0.46),
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    inset 0 0 80px rgba(39, 230, 255, 0.06);
}

.portal-stage::before,
.portal-stage::after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 0;
}

.portal-stage::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.28), transparent) top left / 100% 1px no-repeat,
    linear-gradient(180deg, transparent, rgba(143, 92, 255, 0.2), transparent) top right / 1px 100% no-repeat,
    radial-gradient(circle at 70% 28%, rgba(255, 255, 255, 0.1), transparent 20rem);
}

.portal-stage::after {
  inset: auto 9% -70px;
  height: 150px;
  background: radial-gradient(ellipse, rgba(39, 230, 255, 0.24), transparent 68%);
  filter: blur(14px);
  opacity: 0.7;
}

.portal-depth-haze,
.portal-constellation,
.portal-signal-lines {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.portal-depth-haze {
  background:
    radial-gradient(circle at 62% 36%, rgba(39, 230, 255, 0.18), transparent 12rem),
    radial-gradient(circle at 72% 52%, rgba(143, 92, 255, 0.16), transparent 16rem),
    conic-gradient(from 160deg at 58% 42%, transparent 0 16%, rgba(39, 230, 255, 0.12) 18%, transparent 22% 100%);
  mix-blend-mode: screen;
  opacity: 0.85;
  animation: portal-haze-drift 18s ease-in-out infinite alternate;
}

.portal-constellation span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #eaffff;
  box-shadow: 0 0 18px rgba(39, 230, 255, 0.9);
  opacity: 0.75;
  animation: constellation-drift 10s ease-in-out infinite alternate;
}

.portal-constellation span:nth-child(1) { left: 8%; top: 23%; }
.portal-constellation span:nth-child(2) { left: 37%; top: 12%; animation-delay: -2s; }
.portal-constellation span:nth-child(3) { right: 11%; top: 31%; animation-delay: -4s; }
.portal-constellation span:nth-child(4) { left: 56%; bottom: 18%; animation-delay: -1s; }
.portal-constellation span:nth-child(5) { right: 23%; bottom: 10%; animation-delay: -6s; }

.portal-signal-lines span {
  position: absolute;
  height: 1px;
  width: min(44vw, 520px);
  background: linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.72), rgba(143, 92, 255, 0.42), transparent);
  filter: drop-shadow(0 0 14px rgba(39, 230, 255, 0.65));
  opacity: 0.62;
  animation: signal-drift 12s ease-in-out infinite;
}

.portal-signal-lines span:nth-child(1) { left: -8%; top: 29%; rotate: -8deg; }
.portal-signal-lines span:nth-child(2) { right: -10%; top: 55%; rotate: 10deg; animation-delay: -4s; }
.portal-signal-lines span:nth-child(3) { left: 22%; bottom: 17%; rotate: 2deg; animation-delay: -7s; }

.portal-copy,
.portal-core,
.portal-menu,
.portal-business-card {
  transform: translate3d(
    calc((var(--px, 50) - 50) * var(--depth, 0.08) * 0.08px),
    calc((var(--py, 50) - 50) * var(--depth, 0.08) * 0.08px),
    0
  );
}

.portal-copy { --depth: 0.4; }
.portal-core { --depth: -0.85; }
.portal-menu { --depth: 0.68; }
.portal-business-card { --depth: 0.34; }

.portal-copy .eyebrow {
  color: #c8fbff;
  background: rgba(39, 230, 255, 0.1);
  border-color: rgba(39, 230, 255, 0.34);
  box-shadow: 0 0 30px rgba(39, 230, 255, 0.08);
}

.portal-copy h1 {
  max-width: 740px;
  background: linear-gradient(120deg, #ffffff 4%, #c8fbff 40%, #e6ddff 72%, #ffffff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 44px rgba(39, 230, 255, 0.1);
}

.portal-copy p:not(.eyebrow) {
  color: rgba(236, 249, 255, 0.82);
}

.portal-page .button.primary {
  border-color: rgba(39, 230, 255, 0.5);
  background: linear-gradient(135deg, #2f8cff, #27dbc8);
  box-shadow: 0 18px 44px rgba(39, 230, 255, 0.2);
}

.portal-page .button.secondary {
  color: #f8fcff;
  border-color: rgba(146, 232, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 20, 38, 0.78);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.portal-page .button.secondary:hover,
.portal-page .button.secondary:focus-visible {
  border-color: rgba(39, 230, 255, 0.48);
  background:
    radial-gradient(circle at 50% 0%, rgba(39, 230, 255, 0.18), transparent 70%),
    rgba(7, 20, 38, 0.82);
}

.portal-brand-core {
  isolation: isolate;
  animation: portal-core-float 8s ease-in-out infinite;
}

.portal-brand-core::before,
.portal-brand-core::after {
  content: "";
  position: absolute;
  inset: -24px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(39, 230, 255, 0.24);
  background: conic-gradient(from 90deg, transparent, rgba(39, 230, 255, 0.22), transparent, rgba(143, 92, 255, 0.18), transparent);
  filter: blur(0.2px);
  animation: slow-orbit 18s linear infinite;
}

.portal-brand-core::after {
  inset: -48px;
  border-color: rgba(143, 92, 255, 0.2);
  animation-duration: 26s;
  animation-direction: reverse;
  opacity: 0.6;
}

.portal-ring-one {
  border-style: dashed;
}

.portal-node {
  backdrop-filter: blur(16px);
  box-shadow:
    0 0 22px rgba(39, 230, 255, 0.16),
    inset 0 0 18px rgba(255, 255, 255, 0.04);
}

.portal-tile,
.portal-business-card {
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 10%), var(--tile-glow, rgba(39, 230, 255, 0.16)), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.035)),
    rgba(6, 18, 34, 0.84);
  box-shadow:
    0 24px 70px rgba(0, 8, 24, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.portal-tile {
  --tile-accent: var(--portal-cyan);
  --tile-glow: rgba(39, 230, 255, 0.18);
  isolation: isolate;
  transform: translateY(0) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  transform-style: preserve-3d;
  border-color: color-mix(in srgb, var(--tile-accent) 32%, transparent);
}

.tile-sales {
  --tile-accent: #8f5cff;
  --tile-glow: rgba(143, 92, 255, 0.2);
}

.tile-build {
  --tile-accent: #39ffd2;
  --tile-glow: rgba(57, 255, 210, 0.16);
}

.tile-lab {
  --tile-accent: #ff6bd6;
  --tile-glow: rgba(255, 107, 214, 0.16);
}

.tile-contact {
  --tile-accent: #ffd36b;
  --tile-glow: rgba(255, 211, 107, 0.15);
}

.portal-tile::before {
  content: "";
  position: absolute;
  inset: auto 16px 14px;
  height: 2px;
  pointer-events: none;
  background: linear-gradient(90deg, var(--tile-accent), transparent);
  opacity: 0.82;
  filter: drop-shadow(0 0 10px var(--tile-accent));
}

.portal-tile:hover,
.portal-tile:focus-visible {
  transform: translateY(-8px) rotateX(calc(var(--tilt-y, 0) * -1deg)) rotateY(calc(var(--tilt-x, 0) * 1deg));
  border-color: color-mix(in srgb, var(--tile-accent) 64%, white 12%);
  box-shadow:
    0 32px 90px color-mix(in srgb, var(--tile-accent) 22%, transparent),
    inset 0 0 34px rgba(255, 255, 255, 0.035);
}

.tile-orb {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 1px solid color-mix(in srgb, var(--tile-accent) 55%, transparent);
  border-radius: 50%;
  background:
    radial-gradient(circle at 36% 28%, #ffffff, transparent 24%),
    radial-gradient(circle, var(--tile-accent), transparent 64%);
  box-shadow: 0 0 26px color-mix(in srgb, var(--tile-accent) 48%, transparent);
  opacity: 0.82;
  transform: translateZ(22px);
}

.portal-tile span,
.portal-tile strong,
.portal-tile small {
  position: relative;
  z-index: 1;
}

.portal-business-card {
  border-color: rgba(57, 255, 210, 0.28);
}

.identity-matrix {
  position: absolute;
  inset: 10px;
  z-index: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  opacity: 0.38;
}

.identity-matrix span {
  min-height: 100%;
  border: 1px solid rgba(57, 255, 210, 0.18);
  background:
    linear-gradient(180deg, rgba(57, 255, 210, 0.08), transparent 42%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 10px 10px;
  animation: signature-scan 8s ease-in-out infinite;
}

.identity-matrix span:nth-child(2) { animation-delay: -1.5s; }
.identity-matrix span:nth-child(3) { animation-delay: -3s; }
.identity-matrix span:nth-child(4) { animation-delay: -4.5s; }

.portal-business-card .button {
  white-space: nowrap;
}

.page-hero,
.premium-product-hero,
.product-detail-hero,
.service-shell,
.contact-shell,
.status-panel,
.brand-app-card,
.directory-card,
.product-feature-grid article,
.product-info-grid article,
.product-gallery figure {
  border-color: rgba(146, 232, 255, 0.24);
  box-shadow:
    0 24px 80px rgba(20, 50, 90, 0.12),
    inset 0 0 0 1px rgba(255, 255, 255, 0.36);
}

.page-hero,
.premium-product-hero,
.product-detail-hero {
  overflow: hidden;
}

.page-hero::after,
.premium-product-hero::after,
.product-detail-hero::after {
  content: "";
  position: absolute;
  inset: auto 10% -60px;
  height: 130px;
  pointer-events: none;
  background: radial-gradient(ellipse, rgba(39, 230, 255, 0.16), transparent 68%);
  filter: blur(16px);
}

.button {
  position: relative;
  overflow: hidden;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.36), transparent 42%);
  translate: -130% 0;
  transition: translate 520ms ease;
}

.button:hover::after,
.button:focus-visible::after {
  translate: 130% 0;
}

@keyframes portal-haze-drift {
  from { transform: translate3d(-1%, -1%, 0) scale(1); opacity: 0.72; }
  to { transform: translate3d(1.5%, 1%, 0) scale(1.04); opacity: 0.95; }
}

@keyframes constellation-drift {
  from { transform: translate3d(-6px, 0, 0); opacity: 0.45; }
  to { transform: translate3d(8px, -10px, 0); opacity: 0.9; }
}

@keyframes signal-drift {
  0%, 100% { transform: translateX(-4%); opacity: 0.28; }
  50% { transform: translateX(8%); opacity: 0.82; }
}

@keyframes portal-core-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes signature-scan {
  0%, 100% { background-position: 0 0, 0 0; opacity: 0.2; }
  50% { background-position: 0 100%, 16px 16px; opacity: 0.55; }
}

@media (max-width: 1120px) {
  .portal-stage {
    min-height: auto;
  }

  .portal-signal-lines span {
    width: 64vw;
  }
}

@media (max-width: 720px) {
  .portal-stage {
    perspective: none;
    min-height: auto;
  }

  .portal-copy,
  .portal-core,
  .portal-menu,
  .portal-business-card {
    transform: none;
  }

  .portal-depth-haze,
  .portal-constellation,
  .portal-signal-lines {
    opacity: 0.55;
  }

  .portal-tile,
  .portal-tile:hover,
  .portal-tile:focus-visible {
    transform: none;
  }

  .tile-orb {
    width: 30px;
    height: 30px;
  }

  .identity-matrix {
    grid-template-columns: repeat(2, 1fr);
    opacity: 0.24;
  }
}

@media (prefers-reduced-motion: reduce) {
  .portal-depth-haze,
  .portal-constellation span,
  .portal-signal-lines span,
  .portal-brand-core,
  .portal-brand-core::before,
  .portal-brand-core::after,
  .identity-matrix span {
    animation: none !important;
  }

  .portal-copy,
  .portal-core,
  .portal-menu,
  .portal-business-card,
  .portal-tile,
  .portal-tile:hover,
  .portal-tile:focus-visible {
    transform: none !important;
  }
}

/* Final portal overrides */
body.portal-page .portal-header,
body.portal-page .portal-footer {
  border: 1px solid rgba(146, 232, 255, 0.2);
  background:
    linear-gradient(135deg, rgba(8, 22, 41, 0.92), rgba(8, 18, 34, 0.8)),
    rgba(5, 12, 24, 0.9);
  color: rgba(236, 249, 255, 0.84);
  box-shadow: 0 20px 70px rgba(0, 8, 24, 0.28);
  backdrop-filter: blur(20px);
}

body.portal-page .portal-header .brand span,
body.portal-page .portal-header .nav a,
body.portal-page .portal-header .nav-cta,
body.portal-page .portal-header .mobile-menu,
body.portal-page .portal-footer span,
body.portal-page .portal-footer a,
body.portal-page .portal-footer small {
  color: #f8fcff;
}

body.portal-page .portal-header .nav a:hover,
body.portal-page .portal-header .nav a.is-active,
body.portal-page .portal-footer a:hover {
  color: #9bedff;
}

body.portal-page .portal-footer p {
  color: rgba(236, 249, 255, 0.74);
}

body.portal-page .button.secondary {
  color: #f8fcff;
  border-color: rgba(146, 232, 255, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(7, 20, 38, 0.78);
}

/* Final SalesCopilotAI feature-system overrides */
body:not(.portal-page) .sales-feature-system-section {
  position: relative;
  overflow: hidden;
  padding-block: clamp(44px, 7vw, 86px);
  background:
    radial-gradient(circle at 12% 18%, rgba(39, 230, 255, 0.12), transparent 24rem),
    radial-gradient(circle at 88% 16%, rgba(143, 92, 255, 0.14), transparent 26rem),
    linear-gradient(180deg, rgba(5, 11, 23, 0.96), rgba(8, 18, 34, 0.94));
  border-block: 1px solid rgba(146, 232, 255, 0.16);
}

body:not(.portal-page) .sales-feature-system-section::before,
body:not(.portal-page) .sales-feature-system-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

body:not(.portal-page) .sales-feature-system-section::before {
  background:
    linear-gradient(90deg, rgba(39, 230, 255, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(143, 92, 255, 0.05) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: radial-gradient(circle at 50% 24%, #000, transparent 76%);
}

body:not(.portal-page) .sales-feature-system-section .section-heading,
body:not(.portal-page) .sales-feature-system {
  position: relative;
  z-index: 1;
}

body:not(.portal-page) .sales-feature-system-section .section-heading h2 {
  color: #ffffff;
}

body:not(.portal-page) .sales-feature-system-section .section-heading .eyebrow {
  color: #bdf7ff;
  border-color: rgba(39, 230, 255, 0.34);
  background: rgba(39, 230, 255, 0.1);
}

body:not(.portal-page) .sales-feature-system {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

body:not(.portal-page) .sales-feature-system article {
  position: relative;
  isolation: isolate;
  min-height: 218px;
  overflow: hidden;
  display: grid;
  align-content: start;
  padding: 18px;
  border: 1px solid rgba(146, 232, 255, 0.22);
  border-radius: 8px;
  background:
    radial-gradient(circle at var(--mx, 50%) var(--my, 0%), rgba(39, 230, 255, 0.16), transparent 35%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(7, 20, 38, 0.9) !important;
  box-shadow:
    0 24px 74px rgba(0, 8, 24, 0.26),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(18px);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

body:not(.portal-page) .sales-feature-system article::before,
body:not(.portal-page) .sales-feature-system article::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

body:not(.portal-page) .sales-feature-system article::before {
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, transparent, rgba(39, 230, 255, 0.12), transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%);
  translate: -110% 0;
  transition: translate 620ms ease;
}

body:not(.portal-page) .sales-feature-system article::after {
  inset: auto 16px 14px;
  height: 2px;
  background: linear-gradient(90deg, rgba(39, 230, 255, 0.95), rgba(143, 92, 255, 0.1), transparent);
  filter: drop-shadow(0 0 12px rgba(39, 230, 255, 0.48));
}

body:not(.portal-page) .sales-feature-system article:hover,
body:not(.portal-page) .sales-feature-system article:focus-within {
  transform: translateY(-6px);
  border-color: rgba(39, 230, 255, 0.46);
  box-shadow:
    0 30px 92px rgba(0, 16, 44, 0.34),
    0 0 42px rgba(39, 230, 255, 0.1);
}

body:not(.portal-page) .sales-feature-system article:hover::before,
body:not(.portal-page) .sales-feature-system article:focus-within::before {
  translate: 110% 0;
}

body:not(.portal-page) .sales-feature-system article span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  margin: 0 0 14px;
  border: 1px solid rgba(39, 230, 255, 0.38);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 255, 255, 0.82), transparent 22%),
    radial-gradient(circle, rgba(39, 230, 255, 0.26), rgba(143, 92, 255, 0.1));
  color: #dffbff;
  font-size: 0.82rem;
  font-weight: 950;
  box-shadow: 0 0 24px rgba(39, 230, 255, 0.18);
  animation: feature-index-pulse 5.5s ease-in-out infinite;
}

body:not(.portal-page) .sales-feature-system article em {
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(146, 232, 255, 0.2);
  border-radius: 999px;
  background: rgba(39, 230, 255, 0.08);
  color: #9bedff;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

body:not(.portal-page) .sales-feature-system article h3 {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: clamp(1.05rem, 1.5vw, 1.28rem);
  line-height: 1.14;
}

body:not(.portal-page) .sales-feature-system article p {
  margin: 0;
  color: rgba(236, 249, 255, 0.76);
  font-size: 0.94rem;
  line-height: 1.56;
}

body:not(.portal-page) .sales-feature-system article.planned {
  border-color: rgba(143, 92, 255, 0.34);
  background:
    radial-gradient(circle at var(--mx, 60%) var(--my, 0%), rgba(143, 92, 255, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.035)),
    rgba(12, 18, 42, 0.92) !important;
}

body:not(.portal-page) .sales-feature-system article.planned::after {
  background: linear-gradient(90deg, rgba(143, 92, 255, 0.95), rgba(39, 230, 255, 0.2), transparent);
}

@media (max-width: 1180px) {
  body:not(.portal-page) .sales-feature-system {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  body:not(.portal-page) .sales-feature-system {
    width: min(100% - 28px, 1180px);
    grid-template-columns: 1fr;
  }

  body:not(.portal-page) .sales-feature-system article {
    min-height: 0;
  }
}
