:root {
  --ink: #e8fbff;
  --muted: #94aab7;
  --line: rgba(94, 249, 242, 0.16);
  --paper: #061017;
  --white: #0d1b25;
  --panel: rgba(11, 26, 36, 0.82);
  --panel-strong: rgba(15, 35, 48, 0.94);
  --aqua: #34f4e5;
  --text: var(--ink);
  --accent: var(--aqua);
  --cyan: #19c9ce;
  --blue: #4b8cff;
  --leaf: #68e9c7;
  --coral: #76f7ff;
  --amber: #c8f7ff;
  --shadow: 0 32px 90px rgba(0, 0, 0, 0.42);
  --soft-shadow: 0 20px 58px rgba(0, 0, 0, 0.28);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 8%, rgba(52, 244, 229, 0.2), transparent 26rem),
    radial-gradient(circle at 82% 18%, rgba(75, 140, 255, 0.16), transparent 28rem),
    linear-gradient(180deg, rgba(7, 20, 28, 0.94), rgba(2, 8, 12, 0.98) 46rem),
    var(--paper);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 183, 194, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 183, 194, 0.06) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), transparent 70%);
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.cursor-glow {
  position: fixed;
  width: 22rem;
  height: 22rem;
  left: var(--x, 50%);
  top: var(--y, 50%);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(52, 244, 229, 0.18), transparent 64%);
  pointer-events: none;
  z-index: 0;
  transition: opacity 0.2s ease;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(5, 13, 19, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(8, 20, 28, 0.8);
  border: 1px solid rgba(52, 244, 229, 0.26);
  box-shadow: 0 0 26px rgba(52, 244, 229, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.1;
}

.brand strong {
  white-space: nowrap;
}

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

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(232, 251, 255, 0.76);
}

.site-nav a {
  position: relative;
  padding: 10px 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 2px;
  background: var(--aqua);
  transition: width 0.25s ease;
}

.site-nav a:hover::after {
  width: 100%;
}

.site-nav .nav-cta {
  padding: 11px 16px;
  color: #031016;
  background: linear-gradient(135deg, var(--aqua), #7afaff);
  border-radius: 999px;
  box-shadow: 0 0 24px rgba(52, 244, 229, 0.2);
}

.site-nav .nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  color: var(--ink);
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: rgba(8, 21, 30, 0.86);
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-button {
  min-width: 40px;
  min-height: 34px;
  color: var(--muted);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
}

.lang-button.active {
  color: #031016;
  background: linear-gradient(135deg, var(--aqua), #7afaff);
}

.hero {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(24rem, 0.8fr);
  gap: clamp(28px, 5vw, 82px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: 7vw 5vw 5vw;
  overflow: hidden;
}

.hero-media {
  position: relative;
  min-width: 0;
  perspective: 1400px;
}

.hero-device-frame {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 14px;
  border: 1px solid rgba(31, 183, 194, 0.22);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(16, 35, 48, 0.94), rgba(5, 16, 23, 0.72)),
    linear-gradient(180deg, rgba(52, 244, 229, 0.18), transparent);
  box-shadow: var(--shadow);
  transform: perspective(1200px) rotateY(4deg) rotateX(1.4deg);
}

.hero-device-frame::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 12px;
  box-shadow: inset 0 0 40px rgba(31, 183, 194, 0.12);
}

.hero-device-frame img {
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: radial-gradient(circle at 50% 50%, rgba(52, 244, 229, 0.08), rgba(3, 12, 18, 0.92));
  box-shadow: 0 18px 50px rgba(23, 33, 43, 0.12);
}

.hero-scan-line {
  position: absolute;
  left: 8%;
  right: 8%;
  top: 12%;
  z-index: 3;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(31, 183, 194, 0.72), transparent);
  box-shadow: 0 0 24px rgba(31, 183, 194, 0.36);
  animation: scan-line 4.8s ease-in-out infinite;
}

@keyframes scan-line {
  0%, 100% { transform: translateY(0); opacity: 0.18; }
  50% { transform: translateY(420px); opacity: 0.78; }
}

.hero-chip {
  position: absolute;
  z-index: 4;
  max-width: 190px;
  padding: 10px 12px;
  color: #dffcff;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.2;
  background: rgba(6, 18, 26, 0.76);
  border: 1px solid rgba(52, 244, 229, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(23, 33, 43, 0.12);
  backdrop-filter: blur(16px);
}

.chip-force {
  top: 22px;
  right: 22px;
}

.chip-modules {
  left: 22px;
  bottom: 82px;
}

.chip-room {
  right: 22px;
  bottom: 22px;
}

.hero-orbit {
  position: absolute;
  border: 1px solid rgba(31, 183, 194, 0.34);
  border-radius: 50%;
  pointer-events: none;
}

.orbit-one {
  inset: -6% 14% 16% -6%;
  animation: float-rotate 18s linear infinite;
}

.orbit-two {
  inset: 18% -5% -8% 18%;
  border-color: rgba(95, 141, 247, 0.32);
  animation: float-rotate 24s linear infinite reverse;
}

@keyframes float-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--aqua);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 6vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 4.1rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
}

.hero-lede,
.section-heading p,
.business-copy p,
.quote-copy p,
.trust-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.hero-actions,
.product-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

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

.button.primary {
  color: #031016;
  background: linear-gradient(135deg, var(--aqua), #76f7ff);
  box-shadow: 0 18px 36px rgba(52, 244, 229, 0.18);
}

.button.secondary {
  color: var(--ink);
  background: rgba(12, 29, 40, 0.72);
  border-color: var(--line);
  backdrop-filter: blur(14px);
}

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

.metric-row div {
  padding: 16px;
  background: rgba(12, 29, 40, 0.72);
  border: 1px solid rgba(52, 244, 229, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(14px);
}

.metric-row strong {
  display: block;
  font-size: 2rem;
}

.metric-row span {
  color: var(--muted);
  font-size: 0.9rem;
}

.section,
.answer-band {
  position: relative;
  z-index: 1;
  padding: 7vw 5vw;
}

.answer-band {
  display: grid;
  grid-template-columns: 0.6fr 1fr;
  gap: 4vw;
  align-items: center;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(52, 244, 229, 0.18), transparent 34rem),
    linear-gradient(135deg, #07131d, #0e2631);
}

.answer-band p:last-child {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.25rem;
  line-height: 1.6;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 22px;
  align-items: stretch;
}

.tab-button {
  min-width: 96px;
  min-height: 44px;
  color: var(--muted);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
}

.tab-button.active {
  color: var(--white);
  background: var(--ink);
}

.product-card,
.spec-card,
.tech-card,
.solution-card,
.resource-grid article,
.lead-form,
.quote-copy,
.trust-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
  backdrop-filter: blur(18px);
}

.product-card {
  display: none;
  grid-column: 1;
  grid-template-columns: minmax(0, 0.98fr) minmax(22rem, 0.72fr);
  gap: 26px;
  align-items: center;
  padding: 18px;
}

.product-card.active {
  display: grid;
}

.product-card img,
.tech-card img,
.business-media img,
.wide-figure img,
.trust-card img {
  border-radius: var(--radius);
}

.product-card p {
  color: var(--muted);
  line-height: 1.65;
}

.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  border-top: 1px solid var(--line);
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--aqua);
}

.spec-card {
  grid-column: 2;
  grid-row: 1;
  padding: 24px;
}

.spec-card dl {
  margin: 18px 0 0;
}

.spec-card div {
  display: grid;
  grid-template-columns: 0.84fr 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
}

.spec-card dt {
  color: var(--muted);
}

.spec-card dd {
  margin: 0;
  font-weight: 700;
}

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

.tech-card {
  overflow: hidden;
}

.tech-card img {
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.tech-card img.object-contain {
  object-fit: contain;
  padding: 12px;
  background:
    radial-gradient(circle at 50% 36%, rgba(52, 244, 229, 0.12), transparent 42%),
    rgba(4, 14, 21, 0.78);
}

.tech-card h3,
.tech-card p {
  padding: 0 18px;
}

.tech-card h3 {
  margin-top: 18px;
}

.tech-card p {
  margin-bottom: 22px;
  color: var(--muted);
  line-height: 1.6;
}

.business-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 28px;
  align-items: center;
}

.business-copy {
  padding: 28px;
}

.business-media img {
  box-shadow: var(--shadow);
}

.roi-widget {
  margin-top: 26px;
  padding: 18px;
  background: rgba(52, 244, 229, 0.06);
  border-radius: var(--radius);
}

.roi-widget label {
  display: block;
  font-weight: 700;
  margin-bottom: 12px;
}

.roi-widget input {
  width: 100%;
  accent-color: var(--aqua);
}

.roi-output {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}

.roi-output span {
  padding: 12px;
  background: rgba(7, 18, 26, 0.78);
  border-radius: var(--radius);
  color: var(--muted);
}

.roi-output strong {
  display: block;
  color: var(--ink);
  font-size: 1.5rem;
}

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

.solution-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 22px;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.solution-card:hover {
  transform: translateY(-4px);
  background: rgba(17, 44, 58, 0.95);
  border-color: rgba(52, 244, 229, 0.34);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.34);
}

.solution-card span {
  display: inline-block;
  color: var(--coral);
  font-weight: 800;
  margin-bottom: 24px;
}

.solution-card p,
.resource-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.solution-card ul {
  margin: auto 0 0;
  padding: 16px 0 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.solution-card li {
  position: relative;
  padding: 7px 0 7px 20px;
  color: rgba(232, 251, 255, 0.78);
  line-height: 1.35;
}

.solution-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--leaf);
}

.scenario-panel {
  display: grid;
  grid-template-columns: minmax(250px, 0.38fr) minmax(0, 1fr);
  gap: 18px;
  margin-top: 28px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(8, 21, 30, 0.96), rgba(10, 40, 48, 0.72));
  border: 1px solid rgba(52, 244, 229, 0.2);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.scenario-intro {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(23, 33, 43, 0.9), rgba(30, 67, 78, 0.86)),
    url("assets/scenes/sports-wellness-center.jpg") center / cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.scenario-intro p:last-child {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.scenario-intro .eyebrow {
  color: var(--aqua);
}

.scenario-intro h3 {
  color: var(--ink);
}

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

.scenario-card {
  overflow: hidden;
  min-height: 0;
  background: rgba(9, 23, 32, 0.92);
  border: 1px solid rgba(52, 244, 229, 0.16);
  border-radius: 10px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.scenario-card:hover {
  transform: translateY(-4px);
  border-color: rgba(31, 183, 194, 0.34);
  box-shadow: 0 22px 48px rgba(23, 33, 43, 0.12);
}

.scenario-card img {
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.scenario-card div {
  padding: 16px;
}

.scenario-list strong,
.scenario-list span {
  display: block;
}

.scenario-list strong {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.scenario-list span {
  color: var(--muted);
  line-height: 1.55;
}

.wide-figure {
  margin: 28px 0 0;
}

.wide-figure img {
  box-shadow: var(--shadow);
}

.compare-section {
  background:
    linear-gradient(140deg, rgba(52, 244, 229, 0.08), transparent 34rem),
    #071119;
}

.compare-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
}

.table-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1.25fr;
}

.table-row > div {
  padding: 18px;
  border-top: 1px solid var(--line);
}

.table-row > div + div {
  border-left: 1px solid var(--line);
}

.table-head {
  color: #031016;
  background: linear-gradient(135deg, var(--aqua), #7afaff);
  font-weight: 800;
}

.table-head > div {
  border-top: 0;
}

.trust-section {
  display: grid;
  gap: 22px;
}

.trust-card {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 28px;
  align-items: center;
  padding: 18px;
}

.trust-card.reverse {
  grid-template-columns: 0.72fr 1fr;
}

.trust-card.reverse img {
  order: 2;
}

.service-trust-card {
  grid-template-columns: 0.72fr 1fr;
}

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

.service-proof-grid article {
  min-height: 168px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(52, 244, 229, 0.08), rgba(75, 140, 255, 0.06)),
    rgba(5, 16, 23, 0.78);
  border: 1px solid rgba(52, 244, 229, 0.18);
  border-radius: var(--radius);
}

.service-proof-grid span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--aqua);
  font-weight: 900;
}

.service-proof-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 1.02rem;
}

.service-proof-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.resource-grid article {
  padding: 22px;
}

.resource-grid article {
  display: flex;
  flex-direction: column;
  min-height: 260px;
}

.resource-grid a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  color: var(--aqua);
  font-weight: 800;
  border-bottom: 2px solid rgba(44, 143, 139, 0.24);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 18px 0;
  font-weight: 800;
}

details p {
  margin-top: 0;
  color: var(--muted);
  line-height: 1.6;
}

.quote-section {
  display: grid;
  grid-template-columns: 0.7fr 1fr;
  gap: 24px;
  align-items: start;
  background:
    linear-gradient(140deg, rgba(3, 10, 15, 0.94), rgba(6, 23, 31, 0.82)),
    url("assets/thanks.webp") center / cover;
  color: var(--white);
}

.quote-copy,
.lead-form {
  color: var(--ink);
}

.quote-copy {
  padding: 28px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding: 24px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(5, 16, 23, 0.86);
}

.span-2 {
  grid-column: span 2;
}

.form-note {
  margin: 0;
  color: var(--aqua);
  font-weight: 700;
}

.form-note[data-state="error"] {
  color: #ff9b8f;
}

.form-honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
}

.lead-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 280px) max-content minmax(220px, 280px);
  justify-content: center;
  align-items: start;
  gap: clamp(28px, 3vw, 56px);
  padding: 52px 5vw;
  color: rgba(255, 255, 255, 0.78);
  background: #030a0f;
}

.site-footer h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 1.2rem;
}

.site-footer p {
  margin: 8px 0 0;
}

.footer-brand p {
  max-width: 320px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-contact {
  display: inline-flex;
  margin-top: 12px;
  color: var(--aqua);
  font-weight: 800;
}

.footer-contact:hover {
  color: var(--ink);
}

.footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav-list {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  max-width: none;
}

.footer-links a,
.legal-links a,
.footer-cookie-settings {
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-links a {
  white-space: nowrap;
  font-size: 0.92rem;
}

.footer-links a:hover,
.legal-links a:hover,
.footer-cookie-settings:hover {
  color: var(--aqua);
}

.footer-cookie-settings {
  width: fit-content;
  padding: 0;
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-social {
  display: grid;
  align-content: start;
  gap: 18px;
}

.social-buttons {
  display: flex;
  gap: 10px;
}

.social-button {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--ink);
  font-size: 1.3rem;
  font-weight: 900;
  background: rgba(12, 29, 40, 0.72);
  border: 1px solid rgba(148, 170, 183, 0.24);
  border-radius: 12px;
  box-shadow: inset 0 0 24px rgba(52, 244, 229, 0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.social-button:hover {
  transform: translateY(-2px);
  color: var(--aqua);
  border-color: rgba(52, 244, 229, 0.38);
}

.social-button svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.social-button [data-social-icon="instagram"] rect,
.social-button [data-social-icon="instagram"] circle {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.social-button [data-social-icon="instagram"] circle:last-child {
  fill: currentColor;
  stroke: none;
}

.social-button .social-icon-cutout {
  fill: var(--paper);
}

.legal-links {
  display: grid;
  gap: 12px;
}

.legal-page {
  min-height: 100vh;
}

.legal-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 72px;
  padding: 0 5vw;
  background: rgba(5, 13, 19, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.legal-brand,
.legal-actions {
  display: flex;
  align-items: center;
}

.legal-brand {
  gap: 12px;
  font-weight: 800;
}

.legal-brand img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border: 1px solid rgba(52, 244, 229, 0.26);
  border-radius: 50%;
}

.legal-actions {
  gap: 14px;
}

.home-link {
  color: var(--ink);
  font-weight: 700;
}

.home-link:hover,
.home-link:focus-visible {
  color: var(--aqua);
}

.legal-main {
  position: relative;
  z-index: 1;
  width: min(920px, 90vw);
  margin: 0 auto;
  padding: 72px 0 80px;
}

.legal-panel {
  padding: 48px;
  background: rgba(11, 26, 36, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--soft-shadow);
}

.legal-panel h1 {
  max-width: none;
  margin: 0 0 12px;
  font-size: 3.5rem;
  line-height: 1.08;
}

.legal-panel h2 {
  margin: 36px 0 10px;
  color: var(--aqua);
  font-size: 1.15rem;
  line-height: 1.3;
}

.legal-panel p,
.legal-panel li {
  max-width: 72ch;
  color: rgba(232, 251, 255, 0.82);
  line-height: 1.72;
}

.legal-panel ul {
  padding-left: 1.25rem;
}

.legal-panel a {
  color: var(--aqua);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-kicker,
.legal-updated {
  color: var(--aqua);
  font-size: 0.82rem;
  font-weight: 800;
}

.legal-kicker {
  margin: 0 0 20px;
  text-transform: uppercase;
}

.legal-updated {
  margin: 0 0 28px;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  max-height: calc(100dvh - 16px);
  overflow-y: auto;
  padding: 18px 5vw;
  color: var(--ink);
  background: rgba(12, 23, 39, 0.98);
  border-top: 1px solid rgba(148, 170, 183, 0.22);
  box-shadow: 0 -18px 60px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(16px);
}

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

.consent-shell {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
}

.cookie-consent h2 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.cookie-consent p {
  max-width: 100%;
  margin: 0;
  color: rgba(232, 251, 255, 0.72);
  font-size: 0.84rem;
  line-height: 1.55;
}

.cookie-consent a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.consent-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  width: 100%;
}

.consent-actions .button {
  min-width: 0;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 6px;
  font-size: 0.82rem;
}

.consent-settings {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: 100%;
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  background: rgba(4, 13, 25, 0.66);
  border: 1px solid rgba(148, 170, 183, 0.22);
  border-radius: 8px;
}

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

.consent-option {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  min-width: 0;
  padding: 12px 14px;
  border-bottom: 1px solid rgba(148, 170, 183, 0.14);
}

.consent-option:last-child {
  border-bottom: 0;
}

.consent-option-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.consent-option-copy strong {
  color: var(--text);
  font-size: 0.84rem;
}

.consent-option-description {
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.45;
}

.necessary-cookie-control {
  cursor: default;
  opacity: 1;
}

.consent-switch {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 42px;
  height: 24px;
  cursor: pointer;
}

.consent-switch input {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.consent-switch-track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #405064;
  transition: background 160ms ease;
}

.consent-switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  content: "";
  background: #f4f8fb;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease;
}

.consent-switch input:checked + .consent-switch-track {
  background: var(--aqua);
}

.consent-switch input:checked + .consent-switch-track::after {
  transform: translateX(18px);
}

.consent-switch input:focus-visible + .consent-switch-track {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
}

.consent-switch.is-disabled {
  cursor: not-allowed;
}

.necessary-cookie-control input {
  cursor: not-allowed;
  pointer-events: none;
}

.necessary-cookie-control input:checked + .consent-switch-track {
  background: #5b6874;
  opacity: 0.76;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

@media (max-width: 1080px) {
  .hero,
  .product-grid,
  .business-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .spec-card {
    grid-column: auto;
    grid-row: auto;
  }

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

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

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

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

  .hero-device-frame {
    max-width: 620px;
    margin: 0 auto;
    transform: none;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .site-header {
    min-height: 64px;
    padding: 0 4vw;
  }

  .brand {
    gap: 8px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.82rem;
  }

  .language-switch {
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 64px 0 auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 5vw;
    background: rgba(5, 13, 19, 0.98);
    border-bottom: 1px solid var(--line);
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav .nav-cta {
    margin-top: 14px;
    text-align: center;
    border-bottom: 0;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-device-frame {
    padding: 10px;
  }

  .hero-device-frame::before {
    inset: 10px;
  }

  .hero-chip {
    position: static;
    display: inline-flex;
    margin: 8px 8px 0 0;
    font-size: 0.76rem;
  }

  .hero-scan-line {
    display: none;
  }

  h1 {
    max-width: 100%;
  }

  .metric-row,
  .answer-band,
  .tech-grid,
  .solution-grid,
  .resource-grid,
  .scenario-panel,
  .scenario-list,
  .service-proof-grid,
  .trust-card,
  .trust-card.reverse,
  .lead-form,
  .roi-output,
  .table-row {
    grid-template-columns: 1fr;
  }

  .trust-card.reverse img {
    order: 0;
  }

  .span-2 {
    grid-column: span 1;
  }

  .table-row > div + div {
    border-left: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-nav-list {
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .cookie-consent {
    grid-template-columns: 1fr;
    padding: 16px 4vw;
  }

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

  .consent-actions .button {
    width: 100%;
    padding-inline: 8px;
    font-size: 0.76rem;
  }
}

@media (max-width: 520px) {
  .site-header {
    gap: 6px;
    padding: 0 12px;
  }

  .brand {
    gap: 6px;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .brand strong {
    font-size: 0.68rem;
  }

  .nav-toggle {
    padding: 8px 9px;
    font-size: 0.75rem;
  }

  .language-switch {
    gap: 2px;
    padding: 2px;
  }

  .lang-button {
    min-width: 30px;
    min-height: 30px;
    font-size: 0.75rem;
  }

  html[lang="de"] .hero-copy h1 {
    font-size: 2.4rem;
    line-height: 1;
    overflow-wrap: normal;
    hyphens: none;
  }

  .legal-header {
    min-height: 64px;
    padding: 0 4vw;
  }

  .legal-brand span {
    display: none;
  }

  .legal-actions {
    gap: 8px;
  }

  .home-link {
    font-size: 0.78rem;
  }

  .legal-main {
    width: min(94vw, 920px);
    padding: 36px 0 56px;
  }

  .legal-panel {
    padding: 24px 20px;
  }

  .legal-panel h1 {
    font-size: 2.25rem;
  }

  .cookie-consent {
    max-height: calc(100dvh - 8px);
  }

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

  .consent-option {
    gap: 12px;
    padding: 12px;
  }
}

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